@ornikar/kitt-universal 16.5.0 → 16.6.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.
@@ -17,7 +17,7 @@ type TypographyVariant = 'regular' | 'bold';
17
17
  export declare function useTypographyColor(): ExtendedTypographyColor;
18
18
  export declare function getTypographyTypeConfigKeyFromTypeName(breakpointName: KittBreakpointNameEnum): keyof TypographyTypeConfig;
19
19
  export type TypographyBreakpointType = Partial<KittResponsiveProp<TypographyType>>;
20
- type NativeBaseTextPropsAcceptedProps = Pick<ITextProps, keyof Except<TextProps, 'accessibilityRole'> | 'textAlign' | 'textTransform' | 'underline' | NativeBaseAcceptedFlexboxProps> & Pick<TextStyle, 'cursor' | 'transitionProperty' | 'transitionDuration' | 'transitionTimingFunction'>;
20
+ type NativeBaseTextPropsAcceptedProps = Pick<ITextProps, keyof Except<TextProps, 'accessibilityRole'> | 'textAlign' | 'textTransform' | 'underline' | 'strikeThrough' | NativeBaseAcceptedFlexboxProps> & Pick<TextStyle, 'cursor' | 'transitionProperty' | 'transitionDuration' | 'transitionTimingFunction'>;
21
21
  export interface TypographyProps extends TypographyBreakpointType, NativeBaseTextPropsAcceptedProps, Pick<PlatformProps<NativeBaseTextPropsAcceptedProps>, '_android' | '_ios' | '_web'> {
22
22
  type?: TypographyBreakpointType;
23
23
  accessibilityRole: NonNullable<TextProps['accessibilityRole']> | 'paragraph' | null;
@@ -178,6 +178,7 @@ export declare namespace Typography {
178
178
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
179
179
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
180
180
  underline?: boolean | undefined;
181
+ strikeThrough?: boolean | undefined;
181
182
  cursor?: import("react-native").CursorValue | undefined;
182
183
  transitionDuration?: string | string[] | undefined;
183
184
  transitionProperty?: string | string[] | undefined;
@@ -330,6 +331,7 @@ export declare namespace Typography {
330
331
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
331
332
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
332
333
  underline?: boolean | undefined;
334
+ strikeThrough?: boolean | undefined;
333
335
  cursor?: import("react-native").CursorValue | undefined;
334
336
  transitionDuration?: string | string[] | undefined;
335
337
  transitionProperty?: string | string[] | undefined;
@@ -482,6 +484,7 @@ export declare namespace Typography {
482
484
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
483
485
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
484
486
  underline?: boolean | undefined;
487
+ strikeThrough?: boolean | undefined;
485
488
  cursor?: import("react-native").CursorValue | undefined;
486
489
  transitionDuration?: string | string[] | undefined;
487
490
  transitionProperty?: string | string[] | undefined;
@@ -634,6 +637,7 @@ export declare namespace Typography {
634
637
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
635
638
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
636
639
  underline?: boolean | undefined;
640
+ strikeThrough?: boolean | undefined;
637
641
  cursor?: import("react-native").CursorValue | undefined;
638
642
  transitionDuration?: string | string[] | undefined;
639
643
  transitionProperty?: string | string[] | undefined;
@@ -786,6 +790,7 @@ export declare namespace Typography {
786
790
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
787
791
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
788
792
  underline?: boolean | undefined;
793
+ strikeThrough?: boolean | undefined;
789
794
  cursor?: import("react-native").CursorValue | undefined;
790
795
  transitionDuration?: string | string[] | undefined;
791
796
  transitionProperty?: string | string[] | undefined;
@@ -938,6 +943,7 @@ export declare namespace Typography {
938
943
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
939
944
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
940
945
  underline?: boolean | undefined;
946
+ strikeThrough?: boolean | undefined;
941
947
  cursor?: import("react-native").CursorValue | undefined;
942
948
  transitionDuration?: string | string[] | undefined;
943
949
  transitionProperty?: string | string[] | undefined;
@@ -1090,6 +1096,7 @@ export declare namespace Typography {
1090
1096
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1091
1097
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1092
1098
  underline?: boolean | undefined;
1099
+ strikeThrough?: boolean | undefined;
1093
1100
  cursor?: import("react-native").CursorValue | undefined;
1094
1101
  transitionDuration?: string | string[] | undefined;
1095
1102
  transitionProperty?: string | string[] | undefined;
@@ -1242,6 +1249,7 @@ export declare namespace Typography {
1242
1249
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1243
1250
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1244
1251
  underline?: boolean | undefined;
1252
+ strikeThrough?: boolean | undefined;
1245
1253
  cursor?: import("react-native").CursorValue | undefined;
1246
1254
  transitionDuration?: string | string[] | undefined;
1247
1255
  transitionProperty?: string | string[] | undefined;
@@ -1394,6 +1402,7 @@ export declare namespace Typography {
1394
1402
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1395
1403
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1396
1404
  underline?: boolean | undefined;
1405
+ strikeThrough?: boolean | undefined;
1397
1406
  cursor?: import("react-native").CursorValue | undefined;
1398
1407
  transitionDuration?: string | string[] | undefined;
1399
1408
  transitionProperty?: string | string[] | undefined;
@@ -1546,6 +1555,7 @@ export declare namespace Typography {
1546
1555
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1547
1556
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1548
1557
  underline?: boolean | undefined;
1558
+ strikeThrough?: boolean | undefined;
1549
1559
  cursor?: import("react-native").CursorValue | undefined;
1550
1560
  transitionDuration?: string | string[] | undefined;
1551
1561
  transitionProperty?: string | string[] | undefined;
@@ -1698,6 +1708,7 @@ export declare namespace Typography {
1698
1708
  dataDetectorType?: "all" | "none" | "link" | "email" | "phoneNumber" | null | undefined;
1699
1709
  android_hyphenationFrequency?: "normal" | "none" | "full" | undefined;
1700
1710
  underline?: boolean | undefined;
1711
+ strikeThrough?: boolean | undefined;
1701
1712
  cursor?: import("react-native").CursorValue | undefined;
1702
1713
  transitionDuration?: string | string[] | undefined;
1703
1714
  transitionProperty?: string | string[] | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../src/typography/Typography.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6CAA6C,CAAC;AACjF,OAAO,KAAK,EAAE,EAAE,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEzD,OAAO,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEzD,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,6CAA6C,CAAC;AAClG,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,iCAAiC,CAAC;AAC5E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAK3D,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAC;AAGhE,MAAM,MAAM,uBAAuB,GAAG,eAAe,GAAG,WAAW,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,GAAG,MAAM,CAAC;AAElG,MAAM,MAAM,oBAAoB,GAAG,SAAS,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC;AAC1E,MAAM,MAAM,kBAAkB,GAAG,MAAM,GAAG,QAAQ,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,EAAE,CAAC;AAC5F,MAAM,MAAM,cAAc,GAAG,oBAAoB,GAAG,kBAAkB,CAAC;AACvE,KAAK,iBAAiB,GAAG,SAAS,GAAG,MAAM,CAAC;AAK5C,wBAAgB,kBAAkB,IAAI,uBAAuB,CAE5D;AAQD,wBAAgB,sCAAsC,CACpD,cAAc,EAAE,sBAAsB,GACrC,MAAM,oBAAoB,CAI5B;AAED,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,kBAAkB,CAAC,cAAc,CAAC,CAAC,CAAC;AAEnF,KAAK,gCAAgC,GAAG,IAAI,CAC1C,UAAU,EACR,MAAM,MAAM,CAAC,SAAS,EAAE,mBAAmB,CAAC,GAC5C,WAAW,GACX,eAAe,GACf,WAAW,GACX,8BAA8B,CACjC,GACC,IAAI,CAAC,SAAS,EAAE,QAAQ,GAAG,oBAAoB,GAAG,oBAAoB,GAAG,0BAA0B,CAAC,CAAC;AAOvG,MAAM,WAAW,eACf,SAAQ,wBAAwB,EAC9B,gCAAgC,EAChC,IAAI,CAAC,aAAa,CAAC,gCAAgC,CAAC,EAAE,UAAU,GAAG,MAAM,GAAG,MAAM,CAAC;IACrF,IAAI,CAAC,EAAE,wBAAwB,CAAC;IAEhC,iBAAiB,EAAE,WAAW,CAAC,SAAS,CAAC,mBAAmB,CAAC,CAAC,GAAG,WAAW,GAAG,IAAI,CAAC;IACpF,2EAA2E;IAC3E,OAAO,CAAC,EAAE,iBAAiB,CAAC;IAC5B,iGAAiG;IACjG,KAAK,CAAC,EAAE,uBAAuB,CAAC;IAChC,QAAQ,EAAE,SAAS,CAAC;CACrB;AACD,MAAM,MAAM,0BAA0B,GAAG,MAAM,CAAC,eAAe,EAAE,mBAAmB,CAAC,CAAC;AAEtF,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,wBAAwB,GAAG,UAAU,CAAC,UAAU,CAAC,CAqB/F;AAED,wBAAgB,UAAU,CAAC,EACzB,iBAAiB,EACjB,IAAI,EAAE,UAAU,EAChB,KAAK,EAAE,WAAW,EAClB,MAAM,EAAE,YAAY,EACpB,KAAK,EAAE,WAAW,EAClB,IAAI,EAAE,UAAU,EAChB,IAA2G,EAC3G,OAAO,EACP,KAAK,EACL,GAAG,UAAU,EACd,EAAE,eAAe,GAAG,YAAY,GAAG,IAAI,CAmDvC;yBA9De,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgE1B,MAAM,MAAM,mBAAmB,GAAG,WAAW,CAAC,eAAe,EAAE,mBAAmB,CAAC,CAAC;AACpF,iBAAS,cAAc,CAAC,KAAK,EAAE,mBAAmB,GAAG,YAAY,CAEhE;AAED,iBAAS,mBAAmB,CAAC,KAAK,EAAE,mBAAmB,GAAG,YAAY,CAGrE;AAED,MAAM,MAAM,sBAAsB,GAAG,0BAA0B,CAAC"}
1
+ {"version":3,"file":"Typography.d.ts","sourceRoot":"","sources":["../../../src/typography/Typography.tsx"],"names":[],"mappings":"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"}