octicon-git-branch(16/) Commit Graph

8 Commits

Author SHA1 Message Date
Nathan Walker
c2ff8c1ae7 refactor(core): zero circulars + esm ready (#10770) 2025-09-18 17:03:23 -07:00 octicon-file-diff(16/) octicon-file-code(16/)
Juan de Dios Martínez Vallejo
d34a4395ec chore: InitRootViewEventData description (#10479) 2024-01-21 10:32:36 -08:00 octicon-file-diff(16/) octicon-file-code(16/)
farfromrefuge
82e9c67d33 feat(core): initRootView event (#10442)
launchEvent is not triggered at the same moment on iOS and Android. 
iOS is firing after setting the rootView while Android is firing before.
Consequently if you need an event for when the rootView is set (to read/write root css variables) you need this event.

[skip ci]
2023-11-25 11:04:01 -08:00 octicon-file-diff(16/) octicon-file-code(16/)
Jason Cassidy
c278430240 fix(core): unhandled error typings (#10320)
NativeScriptError type def used to come from packages/core/global-types.d.ts now comes from packages/core/application/application-interfaces.ts, so fixed there now.
2023-06-22 12:19:56 -07:00 octicon-file-diff(16/) octicon-file-code(16/)
Igor Randjelovic
f64355ba7a refactor: improved core barrel exports and Application class (#10286)
BREAKING CHANGES:

`Application.orientation` is no longer a function.

Migration: Remove `()` from the `Application.orientation()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.orientation());
+console.log(Application.orientation);
```


`Application.systemAppearance` is no longer a function.

Migration: Remove `()` from the `Application.systemAppearance()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.systemAppearance());
+console.log(Application.systemAppearance);
```
2023-05-25 07:45:39 -07:00 octicon-file-diff(16/) octicon-file-code(16/)
Jamie Birch
485fb61947 fix(core): Observable event types consistency (#10181) 2023-01-31 07:42:09 -08:00 octicon-file-diff(16/) octicon-file-code(16/)
Eduardo Speroni
bd7c686aaf feat(core): allow app to start without a root view (#9056) 2020-11-19 17:02:32 -08:00 octicon-file-diff(16/) octicon-file-code(16/)
Nathan Walker
020ad4da37 chore(core): monorepo, esm targeting, improved management (#8707) 2020-08-25 20:00:59 -07:00 octicon-file-diff(16/) octicon-file-code(16/)