10 Commits

Author SHA1 Message Date
579a25d583 refactor: circular deps part 13 2025-07-09 20:07:56 -07:00
50cfd6fb25 refactor: circular deps part 8 2025-07-08 22:55:03 -07:00
18e75b66ec refactor: circular deps part 6 2025-07-08 11:55:45 -07:00
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
0632215793 chore: eslint cleanup (#10160) 2023-01-09 09:40:20 -08:00
2e1d2c175b feat(utils): dismissKeyboard, copyToClipboard, setWindowBackgroundColor, getCurrentActivity and getResource (#10089) 2022-11-17 21:05:54 -08:00
cab59473f3 feat(Utils): dataSerialize, dataDeserialize, numberHasDecimals, numberIs64Bit 2022-07-09 09:02:45 -07:00
b78996a569 fix(android): when hiding the keyboard make view lose focus to match ios behavior (#9786)
Hiding the keyboard on iOS loses focus; this makes Android match when no view argument is provided.
2022-03-01 12:32:39 -08:00
c1f231d88e chore: fix eslint issues (#9017) 2020-11-11 08:46:36 -08:00
020ad4da37 chore(core): monorepo, esm targeting, improved management (#8707) 2020-08-25 20:00:59 -07:00