@ornikar/kitt-universal 27.0.0 → 27.0.1-canary.01819bc93ab006bfbaa4e1335cd8afa2380068a0.0
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.
- package/CHANGELOG.md +24 -0
- package/dist/definitions/typography/Typography.d.ts +18 -6
- package/dist/definitions/typography/Typography.d.ts.map +1 -1
- package/dist/index.es.js +92 -92
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +63 -63
- package/dist/index.es.web.js.map +1 -1
- package/dist/linaria-themes.es.js +1 -1
- package/dist/linaria-themes.es.js.map +1 -1
- package/dist/linaria-themes.es.web.js +1 -1
- package/dist/linaria-themes.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +28 -28
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [27.0.1-canary.01819bc93ab006bfbaa4e1335cd8afa2380068a0.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@27.0.0...@ornikar/kitt-universal@27.0.1-canary.01819bc93ab006bfbaa4e1335cd8afa2380068a0.0) (2025-08-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* expo 51 package.json ([915f9a5](https://github.com/ornikar/kitt/commit/915f9a59978711b16c3b0820d7abe962eab492ed))
|
|
12
|
+
* expo 51 package.json ([7da4090](https://github.com/ornikar/kitt/commit/7da4090c190b5a5873ac73af0ec73b762a489676))
|
|
13
|
+
* expo 52 package.json ([2078e30](https://github.com/ornikar/kitt/commit/2078e30635581a375ab12577817e617c9f2ad2f4))
|
|
14
|
+
* fix expo deps ([b60918b](https://github.com/ornikar/kitt/commit/b60918b88272aeab0cc52310e97a3593480243f4))
|
|
15
|
+
* fix expo install ([01819bc](https://github.com/ornikar/kitt/commit/01819bc93ab006bfbaa4e1335cd8afa2380068a0))
|
|
16
|
+
* fix react & reanimated versions ([7c01e6b](https://github.com/ornikar/kitt/commit/7c01e6b24a3cd0eb0644012d535e710fb3e0ab31))
|
|
17
|
+
* upgrade babel ([7ed7647](https://github.com/ornikar/kitt/commit/7ed7647881e76cf67d55a7dfea16b7623db99e81))
|
|
18
|
+
* upgrade canary versions from shared-configs ([b6f0cad](https://github.com/ornikar/kitt/commit/b6f0cadb9dfa95237176e0cd59a645f00d5572af))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* deps ([b7ed1ae](https://github.com/ornikar/kitt/commit/b7ed1ae1566bc1b1466f43d334cad79ee1700702))
|
|
24
|
+
* test setup, babel versions, new arch disabled ([625ec38](https://github.com/ornikar/kitt/commit/625ec38130caa0c83a53b7ba86e5ae4fee7c4172))
|
|
25
|
+
* tsc error ([6d73d8a](https://github.com/ornikar/kitt/commit/6d73d8a76a6364e060d8a4e91e80ce20b2ae2335))
|
|
26
|
+
* tsc error ([542d18b](https://github.com/ornikar/kitt/commit/542d18be94f1aee3a3ceaaf6ec0b6da6eaf796e0))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [27.0.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@26.3.0...@ornikar/kitt-universal@27.0.0) (2025-08-11)
|
|
7
31
|
|
|
8
32
|
|
|
@@ -79,13 +79,13 @@ export declare namespace Typography {
|
|
|
79
79
|
onMouseOut?: import("react").MouseEventHandler<any> | undefined;
|
|
80
80
|
onMouseUp?: import("react").MouseEventHandler<any> | undefined;
|
|
81
81
|
collapsable?: boolean | undefined;
|
|
82
|
+
collapsableChildren?: boolean | undefined;
|
|
82
83
|
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
83
84
|
focusable?: boolean | undefined;
|
|
84
85
|
tabIndex?: 0 | -1 | undefined;
|
|
85
86
|
shouldRasterizeIOS?: boolean | undefined;
|
|
86
87
|
isTVSelectable?: boolean | undefined;
|
|
87
88
|
hasTVPreferredFocus?: boolean | undefined;
|
|
88
|
-
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
89
89
|
tvParallaxShiftDistanceX?: number | undefined;
|
|
90
90
|
tvParallaxShiftDistanceY?: number | undefined;
|
|
91
91
|
tvParallaxTiltAngle?: number | undefined;
|
|
@@ -186,6 +186,8 @@ export declare namespace Typography {
|
|
|
186
186
|
onMagicTap?: (() => void) | undefined;
|
|
187
187
|
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
188
188
|
accessibilityLanguage?: string | undefined;
|
|
189
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
190
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
189
191
|
textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
|
|
190
192
|
textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
|
|
191
193
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
@@ -263,13 +265,13 @@ export declare namespace Typography {
|
|
|
263
265
|
onMouseOut?: import("react").MouseEventHandler<any> | undefined;
|
|
264
266
|
onMouseUp?: import("react").MouseEventHandler<any> | undefined;
|
|
265
267
|
collapsable?: boolean | undefined;
|
|
268
|
+
collapsableChildren?: boolean | undefined;
|
|
266
269
|
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
267
270
|
focusable?: boolean | undefined;
|
|
268
271
|
tabIndex?: 0 | -1 | undefined;
|
|
269
272
|
shouldRasterizeIOS?: boolean | undefined;
|
|
270
273
|
isTVSelectable?: boolean | undefined;
|
|
271
274
|
hasTVPreferredFocus?: boolean | undefined;
|
|
272
|
-
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
273
275
|
tvParallaxShiftDistanceX?: number | undefined;
|
|
274
276
|
tvParallaxShiftDistanceY?: number | undefined;
|
|
275
277
|
tvParallaxTiltAngle?: number | undefined;
|
|
@@ -370,6 +372,8 @@ export declare namespace Typography {
|
|
|
370
372
|
onMagicTap?: (() => void) | undefined;
|
|
371
373
|
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
372
374
|
accessibilityLanguage?: string | undefined;
|
|
375
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
376
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
373
377
|
textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
|
|
374
378
|
textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
|
|
375
379
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
@@ -447,13 +451,13 @@ export declare namespace Typography {
|
|
|
447
451
|
onMouseOut?: import("react").MouseEventHandler<any> | undefined;
|
|
448
452
|
onMouseUp?: import("react").MouseEventHandler<any> | undefined;
|
|
449
453
|
collapsable?: boolean | undefined;
|
|
454
|
+
collapsableChildren?: boolean | undefined;
|
|
450
455
|
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
451
456
|
focusable?: boolean | undefined;
|
|
452
457
|
tabIndex?: 0 | -1 | undefined;
|
|
453
458
|
shouldRasterizeIOS?: boolean | undefined;
|
|
454
459
|
isTVSelectable?: boolean | undefined;
|
|
455
460
|
hasTVPreferredFocus?: boolean | undefined;
|
|
456
|
-
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
457
461
|
tvParallaxShiftDistanceX?: number | undefined;
|
|
458
462
|
tvParallaxShiftDistanceY?: number | undefined;
|
|
459
463
|
tvParallaxTiltAngle?: number | undefined;
|
|
@@ -554,6 +558,8 @@ export declare namespace Typography {
|
|
|
554
558
|
onMagicTap?: (() => void) | undefined;
|
|
555
559
|
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
556
560
|
accessibilityLanguage?: string | undefined;
|
|
561
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
562
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
557
563
|
textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
|
|
558
564
|
textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
|
|
559
565
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
@@ -631,13 +637,13 @@ export declare namespace Typography {
|
|
|
631
637
|
onMouseOut?: import("react").MouseEventHandler<any> | undefined;
|
|
632
638
|
onMouseUp?: import("react").MouseEventHandler<any> | undefined;
|
|
633
639
|
collapsable?: boolean | undefined;
|
|
640
|
+
collapsableChildren?: boolean | undefined;
|
|
634
641
|
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
635
642
|
focusable?: boolean | undefined;
|
|
636
643
|
tabIndex?: 0 | -1 | undefined;
|
|
637
644
|
shouldRasterizeIOS?: boolean | undefined;
|
|
638
645
|
isTVSelectable?: boolean | undefined;
|
|
639
646
|
hasTVPreferredFocus?: boolean | undefined;
|
|
640
|
-
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
641
647
|
tvParallaxShiftDistanceX?: number | undefined;
|
|
642
648
|
tvParallaxShiftDistanceY?: number | undefined;
|
|
643
649
|
tvParallaxTiltAngle?: number | undefined;
|
|
@@ -738,6 +744,8 @@ export declare namespace Typography {
|
|
|
738
744
|
onMagicTap?: (() => void) | undefined;
|
|
739
745
|
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
740
746
|
accessibilityLanguage?: string | undefined;
|
|
747
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
748
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
741
749
|
textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
|
|
742
750
|
textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
|
|
743
751
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
@@ -815,13 +823,13 @@ export declare namespace Typography {
|
|
|
815
823
|
onMouseOut?: import("react").MouseEventHandler<any> | undefined;
|
|
816
824
|
onMouseUp?: import("react").MouseEventHandler<any> | undefined;
|
|
817
825
|
collapsable?: boolean | undefined;
|
|
826
|
+
collapsableChildren?: boolean | undefined;
|
|
818
827
|
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
819
828
|
focusable?: boolean | undefined;
|
|
820
829
|
tabIndex?: 0 | -1 | undefined;
|
|
821
830
|
shouldRasterizeIOS?: boolean | undefined;
|
|
822
831
|
isTVSelectable?: boolean | undefined;
|
|
823
832
|
hasTVPreferredFocus?: boolean | undefined;
|
|
824
|
-
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
825
833
|
tvParallaxShiftDistanceX?: number | undefined;
|
|
826
834
|
tvParallaxShiftDistanceY?: number | undefined;
|
|
827
835
|
tvParallaxTiltAngle?: number | undefined;
|
|
@@ -922,6 +930,8 @@ export declare namespace Typography {
|
|
|
922
930
|
onMagicTap?: (() => void) | undefined;
|
|
923
931
|
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
924
932
|
accessibilityLanguage?: string | undefined;
|
|
933
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
934
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
925
935
|
textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
|
|
926
936
|
textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
|
|
927
937
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
@@ -999,13 +1009,13 @@ export declare namespace Typography {
|
|
|
999
1009
|
onMouseOut?: import("react").MouseEventHandler<any> | undefined;
|
|
1000
1010
|
onMouseUp?: import("react").MouseEventHandler<any> | undefined;
|
|
1001
1011
|
collapsable?: boolean | undefined;
|
|
1012
|
+
collapsableChildren?: boolean | undefined;
|
|
1002
1013
|
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
1003
1014
|
focusable?: boolean | undefined;
|
|
1004
1015
|
tabIndex?: 0 | -1 | undefined;
|
|
1005
1016
|
shouldRasterizeIOS?: boolean | undefined;
|
|
1006
1017
|
isTVSelectable?: boolean | undefined;
|
|
1007
1018
|
hasTVPreferredFocus?: boolean | undefined;
|
|
1008
|
-
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
1009
1019
|
tvParallaxShiftDistanceX?: number | undefined;
|
|
1010
1020
|
tvParallaxShiftDistanceY?: number | undefined;
|
|
1011
1021
|
tvParallaxTiltAngle?: number | undefined;
|
|
@@ -1106,6 +1116,8 @@ export declare namespace Typography {
|
|
|
1106
1116
|
onMagicTap?: (() => void) | undefined;
|
|
1107
1117
|
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
1108
1118
|
accessibilityLanguage?: string | undefined;
|
|
1119
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
1120
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
1109
1121
|
textAlign?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextAlign | undefined>;
|
|
1110
1122
|
textTransform?: import("native-base/lib/typescript/components/types").ResponsiveValue<import("csstype").Property.TextTransform | undefined>;
|
|
1111
1123
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../src/typography/Typography.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../src/typography/Typography.tsx"],"names":[],"mappings":"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"}
|