All Versions
179
Latest Version
Avg Release Cycle
61 days
Latest Release
22 days ago
Changelog History
Page 5
Changelog History
Page 5
-
v8.0.7 Changes
June 02, 2021๐ Bug Fixes
- animations: stop keyframe animations after View unloaded (#9421) (04381fa)
- box-shadow: support for 'none' (#9418) (263c920)
- core: guard unstable page/frame init contexts under async conditions (#9428) (d3bc4d5)
- core: typings for Utils.queueMacrotask and static methods on Observable (#9425) (d589ac6)
๐ Features
-
v8.0.6 Changes
May 20, 2021๐ Bug Fixes
- a11y: add missing application event for fontScaleChanged (#9396) (dac36c6)
- a11y: font size (#9395) (7a92c16)
- Device: don't cache device language & region (#9394) (95596e8), closes #6082
- ios: image with alpha resize (#9386) (f380782), closes #9385
- RootLayout: prevent android touch event to pass through views underneath (#9389) (0b2c190)
๐ Features
-
v8.0.5 Changes
May 10, 2021 -
v8.0.4 Changes
May 05, 2021 -
v8.0.3 Changes
April 24, 2021 -
v8.0.0 Changes
April 06, 2021๐ Bug Fixes
- color: support web standard #rrggbbaa format (aaeab99), closes #ff00ff00 #ff00ff00 #00ff00 #00ff00
- core: stack layout padding (#9183) (a12c188), closes #8810
- core: trace instead of throw (cc592b6)
- layouts: rootlayout not closing when no shadecover transition specified (#9278) (3c569ef)
- ๐ move BottomNavigation and Tabs to @nativescript-community (e62acba)
- safeguards against invalid values (f5db584)
- core: type collisions with namespace (#8809) (7330509)
- ios: gesture touch event coordinates improvements (#8998) (d46f956)
๐ Features
- observable-array: findIndex now supported (770030e)
- view: "hidden" property binding is now supported (f00144e)
- implement BoxShadowDrawable (9a7d3ec)
- implement spreadRadius (fca3466)
- ๐ improved css-shadow parser (d2f50e5)
- core: box shadow demo (#9182) (3bd2d96)
- core: box-shadow support (#9161) (67e2fe4)
- core: convenient color utilities (#9066) (304633d)
- core: first class a11y support (#8909) (d5a8a25)
- core: reusable views (#9163) (6cc130f)
- core: RootLayout with api to fluidly handle dynamic layers (#8980) (a90609a)
- core: text-shadow support (#8991) (a6b1bde)
๐ฅ BREAKING CHANGES
- core:
BottomNavigationandTabsmoved to@nativescript-community
โก๏ธ If using
BottomNavigation, just install@nativescript-community/ui-material-bottom-navigationand update your imports to use it.โก๏ธ If using
Tabs, just install@nativescript-community/ui-material-tabsand update your imports to use it.- core: support web standard #rrggbbaa format
BEFORE:
// #aarrggbb const color = new Color('#ff00ff00'); Label { background-color: #ff00ff00; }AFTER:
// #rrggbbaa const color = new Color('#00ff00ff'); Label { background-color: #00ff00ff; } -
v7.3.0 Changes
February 27, 2021๐ Bug Fixes
๐ Features
๐ฅ BREAKING CHANGES
- core: AndroidTransitionType is now a static member of the Transition class.
BEFORE:
import { AndroidTransitionType } from '@nativescript/core/ui/transition';AFTER:
import { Transition } from '@nativescript/core'; Transition.AndroidTransitionType.enter; // etc.- android: If you were using
native.Arrayfor any of your own custom plugin typings, you can switch them toandroidNative.Array
BEFORE:
public writeAsync(path: string, bytes: native.Array<number>) ...AFTER:
public writeAsync(path: string, bytes: androidNative.Array<number>) ...