17 Commits

Author SHA1 Message Date
c23695c477 fix(core): box-shadow 'none' handling (#10405) 2023-10-14 14:22:15 -07:00
b6a5250511 feat: leading support for debounce (#10388) 2023-09-27 19:06:36 -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
6779cdcb55 fix(android): native-helper utils types are now correct (#10231) 2023-03-07 19:22:37 -08:00
82d60ae057 fix(core): circular imports of SDK_VERSION 2022-11-30 09:14:10 -08:00
b147612e06 test: standardized jest unit testing (#10047) 2022-11-28 14:32:25 -08:00
2e1d2c175b feat(utils): dismissKeyboard, copyToClipboard, setWindowBackgroundColor, getCurrentActivity and getResource (#10089) 2022-11-17 21:05:54 -08:00
abd722cd3d perf(core): android sdk check (#10084) 2022-11-12 10:09:45 -08:00
36a55dac7f feat: added Utils.executeOnUIThread 2022-04-25 08:36:20 -07:00
40c5984966 feat: Utils for queueGC, debounce and throttle 2022-03-01 12:32:39 -08:00
988f372788 perf(ios): UIImage memory leaks (#9783) 2022-03-01 12:32:39 -08:00
77d2533798 feat: android openFile dialog title (#9600)
* feat: android openFile dialog title

* types: update openFile types
2021-10-06 17:48:52 +02:00
6cf4c5981b feat(Utils): add dismissSoftInput helper (#9392)
closes #4594

Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2021-05-13 08:43:59 -07:00
266ae2a71d chore: fix types 2021-04-06 11:18:36 -07:00
e3dc89fbfc feat(core): queueMacroTask (#8904) 2020-11-11 19:52:29 -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