@nativescript/core 9.0.21-next.14 → 9.0.21-next.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,9 +35,9 @@ export declare namespace CoreTypes {
35
35
  readonly unit: '%';
36
36
  readonly value: percent;
37
37
  };
38
- export type FixedLengthType = dip | LengthDipUnit | LengthPxUnit | CSSWideKeywords;
38
+ export type FixedLengthType = dip | LengthDipUnit | LengthPxUnit | `${number}dip` | `${number}px` | CSSWideKeywords;
39
39
  export type LengthType = 'auto' | FixedLengthType;
40
- export type PercentLengthType = 'auto' | FixedLengthType | LengthPercentUnit;
40
+ export type PercentLengthType = 'auto' | FixedLengthType | LengthPercentUnit | `${number}%`;
41
41
  export const zeroLength: LengthType;
42
42
  export type KeyboardInputType = 'datetime' | 'phone' | 'number' | 'decimal' | 'url' | 'email' | 'integer';
43
43
  export namespace KeyboardType {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript/core",
3
- "version": "9.0.21-next.14",
3
+ "version": "9.0.21-next.15",
4
4
  "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.",
5
5
  "type": "module",
6
6
  "main": "index",