Skip to content

Commit 3a724fa

Browse files
committed
chore: fixes after merge
1 parent 08167fb commit 3a724fa

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

packages/core/application/application-common.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

packages/core/file-system/file-system-access.ios.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { encoding as textEncoding } from '../text';
22
import { 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);

packages/core/ui/page/page-common.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ import { KeyframeAnimationInfo } from '../animation/keyframe-animation';
1515
import { profile } from '../../profiling';
1616
import { 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+
1821
interface NavigatedData extends EventData<PageDefinition> {
1922
context: any;
2023
isBackNavigation: boolean;

0 commit comments

Comments
 (0)