File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -370,12 +370,13 @@ export class ApplicationCommon {
370370 if ( layoutDirection ) {
371371 CSSUtils . pushToSystemCssClasses ( `${ CSSUtils . CLASS_PREFIX } ${ layoutDirection } ` ) ;
372372 }
373- initializeSdkVersionClass ( ) ;
374373
375374 rootView . cssClasses . add ( CSSUtils . ROOT_VIEW_CSS_CLASS ) ;
376375 const rootViewCssClasses = CSSUtils . getSystemCssClasses ( ) ;
377376 rootViewCssClasses . forEach ( ( c ) => rootView . cssClasses . add ( c ) ) ;
377+
378378 initializeSdkVersionClass ( rootView ) ;
379+
379380 this . increaseStyleScopeApplicationCssSelectorVersion ( rootView ) ;
380381 rootView . _onCssStateChange ( ) ;
381382
Original file line number Diff line number Diff line change 11import { encoding as textEncoding } from '../text' ;
22import { getFileExtension , ios as IOSUtils } from '../utils' ;
3- import { getCurrentAppPath } from '../utils/ios' ;
43
54// TODO: Implement all the APIs receiving callback using async blocks
65// TODO: Check whether we need try/catch blocks for the iOS implementation
@@ -258,7 +257,7 @@ export class FileSystemAccess {
258257 }
259258
260259 public getCurrentAppPath ( ) : string {
261- return getCurrentAppPath ( ) ;
260+ return IOSUtils . getCurrentAppPath ( ) ;
262261 }
263262
264263 public copy = this . copySync . bind ( this ) ;
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ import { KeyframeAnimationInfo } from '../animation/keyframe-animation';
1515import { profile } from '../../profiling' ;
1616import { PageEvents } from './events' ;
1717
18+ // was defined here before, some plugins depend on it right now
19+ export { statusBarStyleProperty } from '../core/view/view-common'
20+
1821interface NavigatedData extends EventData < PageDefinition > {
1922 context : any ;
2023 isBackNavigation : boolean ;
You can’t perform that action at this time.
0 commit comments