@itcase/types 1.0.6 → 1.0.8

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.
Files changed (84) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +9 -9
  3. package/types/appearance/index.ts +110 -0
  4. package/types/border/borderColor.ts +34 -23
  5. package/types/border/index.ts +0 -1
  6. package/types/colors/active.ts +57 -0
  7. package/types/colors/colorsSvg.ts +7 -0
  8. package/types/colors/disabled.ts +57 -0
  9. package/types/colors/focus.ts +57 -0
  10. package/types/colors/hover.ts +57 -0
  11. package/types/colors/index.ts +4 -0
  12. package/types/common/index.ts +1 -0
  13. package/types/direction/index.ts +1 -0
  14. package/types/elevation/index.ts +1 -0
  15. package/types/fill/fill.ts +34 -16
  16. package/types/fill/fillGradient.ts +4 -7
  17. package/types/fill/fillSize.ts +17 -0
  18. package/types/fill/index.ts +1 -2
  19. package/types/height/index.ts +1 -0
  20. package/types/index.ts +8 -22
  21. package/types/item/index.ts +1 -0
  22. package/types/item/item.ts +57 -0
  23. package/types/justifyContent/index.ts +1 -0
  24. package/types/option/index.ts +1 -0
  25. package/types/position/index.ts +1 -0
  26. package/types/resizeMode/index.ts +1 -0
  27. package/types/{resizeMode.ts → resizeMode/resizeMode.ts} +1 -7
  28. package/types/shape/index.ts +1 -0
  29. package/types/shape/shape.ts +13 -0
  30. package/types/size/index.ts +1 -1
  31. package/types/stacking/index.ts +1 -0
  32. package/types/style/index.ts +1 -0
  33. package/types/style/style.ts +6 -0
  34. package/types/text/index.ts +0 -5
  35. package/types/text/textColor.ts +31 -16
  36. package/types/underline/index.ts +1 -0
  37. package/types/width/index.ts +1 -0
  38. package/types/wrap/index.ts +1 -0
  39. package/types/appearanceKeys.ts +0 -43
  40. package/types/border/borderColorHover.ts +0 -18
  41. package/types/fill/fillHover.ts +0 -20
  42. package/types/fill/fillType.ts +0 -5
  43. package/types/flex/flexAlign.ts +0 -12
  44. package/types/flex/flexGrow.ts +0 -5
  45. package/types/flex/flexJustifyContent.ts +0 -12
  46. package/types/flex/flexWrap.ts +0 -5
  47. package/types/flex/index.ts +0 -4
  48. package/types/grid/gridAlign.ts +0 -23
  49. package/types/grid/gridAlignSelf.ts +0 -23
  50. package/types/grid/gridJustifyItems.ts +0 -24
  51. package/types/grid/gridJustifySelf.ts +0 -28
  52. package/types/grid/index.ts +0 -4
  53. package/types/horizontal/horizontalContentAlign.ts +0 -6
  54. package/types/horizontal/horizontalResizeMode.ts +0 -6
  55. package/types/horizontal/index.ts +0 -2
  56. package/types/icon/iconFillSize.ts +0 -16
  57. package/types/icon/iconSize.ts +0 -17
  58. package/types/icon/index.ts +0 -2
  59. package/types/itemColor.ts +0 -39
  60. package/types/overflow.ts +0 -5
  61. package/types/shape.ts +0 -5
  62. package/types/size/sizeOption.ts +0 -18
  63. package/types/svgFill.ts +0 -33
  64. package/types/text/textAlign.ts +0 -5
  65. package/types/text/textGradient.ts +0 -13
  66. package/types/text/textStyle.ts +0 -5
  67. package/types/text/textWeight.ts +0 -21
  68. package/types/text/textWrap.ts +0 -5
  69. package/types/type.ts +0 -13
  70. package/types/vertical/index.ts +0 -2
  71. package/types/vertical/verticalContentAlign.ts +0 -6
  72. package/types/vertical/verticalResizeMode.ts +0 -5
  73. /package/types/{common.ts → common/common.ts} +0 -0
  74. /package/types/{direction.ts → direction/direction.ts} +0 -0
  75. /package/types/{elevation.ts → elevation/elevation.ts} +0 -0
  76. /package/types/{height.ts → height/height.ts} +0 -0
  77. /package/types/{justifyContent.ts → justifyContent/justifyContent.ts} +0 -0
  78. /package/types/{option.ts → option/option.ts} +0 -0
  79. /package/types/{position.ts → position/position.ts} +0 -0
  80. /package/types/{titleSize.ts → size/titleSize.ts} +0 -0
  81. /package/types/{stacking.ts → stacking/stacking.ts} +0 -0
  82. /package/types/{underline.ts → underline/underline.ts} +0 -0
  83. /package/types/{width.ts → width/width.ts} +0 -0
  84. /package/types/{wrap.ts → wrap/wrap.ts} +0 -0
@@ -0,0 +1,57 @@
1
+ const itemProps = [
2
+ 'accentItemPrimary',
3
+ 'accentItemSecondary',
4
+ 'accentItemTertiary',
5
+ 'accentItemQuaternary',
6
+
7
+ 'specialItemPrimary',
8
+ 'specialItemSecondary',
9
+ 'specialItemTertiary',
10
+ 'specialItemQuaternary',
11
+
12
+ 'extraItemPrimary',
13
+ 'extraItemSecondary',
14
+ 'extraItemTertiary',
15
+ 'extraItemQuaternary',
16
+
17
+ 'surfaceItemPrimary',
18
+ 'surfaceItemSecondary',
19
+ 'surfaceItemTertiary',
20
+ 'surfaceItemQuaternary',
21
+
22
+ 'errorItemPrimary',
23
+ 'errorItemSecondary',
24
+ 'errorItemTertiary',
25
+ 'errorItemQuaternary',
26
+
27
+ 'warningItemPrimary',
28
+ 'warningItemSecondary',
29
+ 'warningItemTertiary',
30
+ 'warningItemQuaternary',
31
+
32
+ 'successItemPrimary',
33
+ 'successItemSecondary',
34
+ 'successItemTertiary',
35
+ 'successItemQuaternary',
36
+
37
+ 'infoItemPrimary',
38
+ 'infoItemSecondary',
39
+ 'infoItemTertiary',
40
+ 'infoItemQuaternary',
41
+
42
+ 'dangerItemPrimary',
43
+ 'dangerItemSecondary',
44
+ 'dangerItemTertiary',
45
+ 'dangerItemQuaternary',
46
+
47
+ 'disabledItemPrimary',
48
+ 'disabledItemSecondary',
49
+ 'disabledItemTertiary',
50
+ 'disabledItemQuaternary',
51
+
52
+ 'none',
53
+ ] as const
54
+
55
+ export type ItemProps = (typeof itemProps)[number]
56
+
57
+ export { itemProps }
@@ -0,0 +1 @@
1
+ export * from './justifyContent'
@@ -0,0 +1 @@
1
+ export * from './option'
@@ -0,0 +1 @@
1
+ export * from './position'
@@ -0,0 +1 @@
1
+ export * from './resizeMode'
@@ -1,10 +1,4 @@
1
- const resizeModeProps = [
2
- 'cover',
3
- 'contain',
4
- 'stretch',
5
- 'center',
6
- 'caption-back',
7
- ] as const
1
+ const resizeModeProps = ['cover', 'contain', 'stretch', 'center'] as const
8
2
 
9
3
  export type ResizeModeProps = (typeof resizeModeProps)[number]
10
4
 
@@ -0,0 +1 @@
1
+ export * from './shape'
@@ -0,0 +1,13 @@
1
+ const shapeProps = [
2
+ 'circular',
3
+ 'rounded',
4
+ 'roundedS',
5
+ 'roundedM',
6
+ 'roundedL',
7
+ 'roundedXL',
8
+ ] as const
9
+
10
+ type ShapeProps = (typeof shapeProps)[number]
11
+
12
+ export { shapeProps }
13
+ export type { ShapeProps }
@@ -1,3 +1,3 @@
1
1
  export * from './size'
2
- export * from './sizeOption'
3
2
  export * from './sizePX'
3
+ export * from './titleSize'
@@ -0,0 +1 @@
1
+ export * from './stacking'
@@ -0,0 +1 @@
1
+ export * from './style'
@@ -0,0 +1,6 @@
1
+ const styleProps = ['solid', 'outlined', 'full', 'ghost'] as const
2
+
3
+ type StyleProps = (typeof styleProps)[number]
4
+
5
+ export { styleProps }
6
+ export type { StyleProps }
@@ -1,10 +1,5 @@
1
- export * from './textAlign'
2
1
  export * from './textColor'
3
2
  export * from './textColorActive'
4
3
  export * from './textColorHover'
5
- export * from './textGradient'
6
4
  export * from './textSize'
7
- export * from './textStyle'
8
5
  export * from './textTag'
9
- export * from './textWeight'
10
- export * from './textWrap'
@@ -2,37 +2,52 @@ const textColorProps = [
2
2
  'accentTextPrimary',
3
3
  'accentTextSecondary',
4
4
  'accentTextTertiary',
5
+ 'accentTextQuaternary',
5
6
 
6
- 'primaryTextPrimary',
7
- 'primaryTextSecondary',
8
- 'primaryTextTertiary',
7
+ 'specialTextPrimary',
8
+ 'specialTextSecondary',
9
+ 'specialTextTertiary',
10
+ 'specialTextQuaternary',
9
11
 
10
- 'secondaryTextPrimary',
11
- 'secondaryTextSecondary',
12
- 'secondaryTextTertiary',
12
+ 'extraTextPrimary',
13
+ 'extraTextSecondary',
14
+ 'extraTextTertiary',
15
+ 'extraTextQuaternary',
13
16
 
14
- 'tertiaryTextPrimary',
15
- 'tertiaryTextSecondary',
16
-
17
- 'surfaceTextAccent',
18
- 'surfaceTextActive',
19
- 'surfaceTextDisabled',
20
- 'surfaceTextFocus',
21
- 'surfaceTextHover',
22
- 'surfaceTextInverse',
23
17
  'surfaceTextPrimary',
24
- 'surfaceTextQuaternary',
25
18
  'surfaceTextSecondary',
26
19
  'surfaceTextTertiary',
20
+ 'surfaceTextQuaternary',
27
21
 
28
22
  'errorTextPrimary',
29
23
  'errorTextSecondary',
24
+ 'errorTextTertiary',
25
+ 'errorTextQuaternary',
26
+
27
+ 'warningTextPrimary',
28
+ 'warningTextSecondary',
29
+ 'warningTextTertiary',
30
+ 'warningTextQuaternary',
30
31
 
31
32
  'successTextPrimary',
32
33
  'successTextSecondary',
34
+ 'successTextTertiary',
35
+ 'successTextQuaternary',
36
+
37
+ 'infoTextPrimary',
38
+ 'infoTextSecondary',
39
+ 'infoTextTertiary',
40
+ 'infoTextQuaternary',
33
41
 
34
42
  'dangerTextPrimary',
35
43
  'dangerTextSecondary',
44
+ 'dangerTextTertiary',
45
+ 'dangerTextQuaternary',
46
+
47
+ 'disabledTextPrimary',
48
+ 'disabledTextSecondary',
49
+ 'disabledTextTertiary',
50
+ 'disabledTextQuaternary',
36
51
  ] as const
37
52
 
38
53
  export type TextColorProps = (typeof textColorProps)[number]
@@ -0,0 +1 @@
1
+ export * from './underline'
@@ -0,0 +1 @@
1
+ export * from './width'
@@ -0,0 +1 @@
1
+ export * from './wrap'
@@ -1,43 +0,0 @@
1
- import type { SizeProps } from './size'
2
-
3
- type AppearanceKeysDefault =
4
- | 'accent'
5
- | 'accentPrimary'
6
- | 'accentQuaternary'
7
- | 'accentSecondary'
8
- | 'accentTertiary'
9
- | 'any'
10
- | 'cantLoadData'
11
- | 'confirm'
12
- | 'custom'
13
- | 'default'
14
- | 'disabled'
15
- | 'error'
16
- | 'fail'
17
- | 'full'
18
- | 'ghost'
19
- | 'gradientPrimary'
20
- | 'nothingFound'
21
- | 'outlined'
22
- | 'primary'
23
- | 'refresh'
24
- | 'search'
25
- | 'secondary'
26
- | 'solid'
27
- | 'success'
28
- | 'surface'
29
- | 'surfaceDisabled'
30
- | 'surfacePrimary'
31
- | 'surfaceQuaternary'
32
- | 'surfaceSecondary'
33
- | 'surfaceTertiary'
34
- | 'unableLoadData'
35
- | 'warning'
36
-
37
- type SizeAppearanceKey = `size${Uppercase<SizeProps>}`
38
-
39
- type CompositeAppearanceKey =
40
- | `${AppearanceKeysDefault} ${SizeAppearanceKey}`
41
- | AppearanceKeysDefault
42
-
43
- export type { AppearanceKeysDefault, CompositeAppearanceKey, SizeAppearanceKey }
@@ -1,18 +0,0 @@
1
- const borderColorHoverProps = [
2
- 'accentBorderPrimary',
3
- 'accentBorderPrimaryHover',
4
- 'primaryBorderPrimary',
5
- 'secondaryBorderPrimary',
6
- 'tertiaryBorderPrimary',
7
- 'surfaceBorderPrimary',
8
- 'surfaceBorderSecondary',
9
- 'surfaceBorderTertiary',
10
- 'errorBorderPrimary',
11
- 'errorBorderPrimaryHover',
12
- 'successBorderPrimary',
13
- 'surfaceBorderQuaternary',
14
- ] as const
15
-
16
- export type BorderColorHoverProps = (typeof borderColorHoverProps)[number]
17
-
18
- export { borderColorHoverProps }
@@ -1,20 +0,0 @@
1
- const fillHoverProps = [
2
- 'accentPrimaryHover',
3
- 'accentSecondary',
4
- 'accentSecondaryHover',
5
- 'accentTertiary',
6
-
7
- 'primaryPrimaryHover',
8
-
9
- 'secondaryPrimaryHover',
10
-
11
- 'surfaceItemTertiary',
12
- 'surfacePrimaryHover',
13
- 'surfaceSecondaryHover',
14
- 'surfaceTertiary',
15
- 'surfaceTertiaryHover',
16
- ] as const
17
-
18
- export type FillHoverProps = (typeof fillHoverProps)[number]
19
-
20
- export { fillHoverProps }
@@ -1,5 +0,0 @@
1
- const fillTypeProps = ['full', 'solid', 'outlined', 'ghost'] as const
2
-
3
- export type FillTypeProps = (typeof fillTypeProps)[number]
4
-
5
- export { fillTypeProps }
@@ -1,12 +0,0 @@
1
- const flexAlignProps = [
2
- 'stretch',
3
- 'flex-start',
4
- 'flex-end',
5
- 'center',
6
- 'baseline',
7
- 'auto',
8
- ] as const
9
-
10
- export type FlexAlignProps = (typeof flexAlignProps)[number]
11
-
12
- export { flexAlignProps }
@@ -1,5 +0,0 @@
1
- const flexGrowProps = ['0', '1'] as const
2
-
3
- export type FlexGrowProps = (typeof flexGrowProps)[number]
4
-
5
- export { flexGrowProps }
@@ -1,12 +0,0 @@
1
- const flexJustifyContentProps = [
2
- 'flex-start',
3
- 'flex-end',
4
- 'center',
5
- 'space-between',
6
- 'space-around',
7
- 'space-evenly',
8
- ] as const
9
-
10
- export type FlexJustifyContentProps = (typeof flexJustifyContentProps)[number]
11
-
12
- export { flexJustifyContentProps }
@@ -1,5 +0,0 @@
1
- const flexWrapProps = ['wrap', 'nowrap', 'wrap-reverse'] as const
2
-
3
- export type FlexWrapProps = (typeof flexWrapProps)[number]
4
-
5
- export { flexWrapProps }
@@ -1,4 +0,0 @@
1
- export * from './flexAlign'
2
- export * from './flexGrow'
3
- export * from './flexJustifyContent'
4
- export * from './flexWrap'
@@ -1,23 +0,0 @@
1
- const gridAlignProps = [
2
- 'auto',
3
- 'normal',
4
- 'stretch',
5
- 'center',
6
- 'start',
7
- 'end',
8
- 'space-around',
9
- 'space-between',
10
- 'space-evenly',
11
- 'safe center',
12
- 'unsafe center',
13
- 'self-start',
14
- 'self-end',
15
- 'first',
16
- 'baseline',
17
- 'first baseline',
18
- 'last baseline',
19
- ] as const
20
-
21
- export type GridAlignProps = (typeof gridAlignProps)[number]
22
-
23
- export { gridAlignProps }
@@ -1,23 +0,0 @@
1
- const gridAlignSelfProps = [
2
- 'auto',
3
- 'normal',
4
- 'stretch',
5
- 'center',
6
- 'start',
7
- 'end',
8
- 'space-around',
9
- 'space-between',
10
- 'space-evenly',
11
- 'safe center',
12
- 'unsafe center',
13
- 'self-start',
14
- 'self-end',
15
- 'first',
16
- 'baseline',
17
- 'first baseline',
18
- 'last baseline',
19
- ] as const
20
-
21
- export type GridAlignSelfProps = (typeof gridAlignSelfProps)[number]
22
-
23
- export { gridAlignSelfProps }
@@ -1,24 +0,0 @@
1
- const gridJustifyItemsProps = [
2
- 'legacy',
3
- 'normal',
4
- 'stretch',
5
- 'center',
6
- 'safe',
7
- 'center',
8
- 'unsafe',
9
- 'center',
10
- 'start',
11
- 'end',
12
- 'self-start',
13
- 'self-end',
14
- 'left',
15
- 'right',
16
- 'first',
17
- 'baseline',
18
- 'first baseline',
19
- 'last baseline',
20
- ] as const
21
-
22
- export type GridJustifyItemsProps = (typeof gridJustifyItemsProps)[number]
23
-
24
- export { gridJustifyItemsProps }
@@ -1,28 +0,0 @@
1
- const gridJustifySelfProps = [
2
- 'auto',
3
- 'legacy',
4
- 'normal',
5
- 'stretch',
6
- 'center',
7
- 'start',
8
- 'end',
9
- 'left',
10
- 'right',
11
- 'space-around',
12
- 'space-between',
13
- 'space-evenly',
14
- 'safe',
15
- 'center',
16
- 'unsafe center',
17
- 'self-start',
18
- 'self-end',
19
- 'left',
20
- 'right',
21
- 'baseline',
22
- 'first baseline',
23
- 'last baseline',
24
- ] as const
25
-
26
- export type GridJustifySelfProps = (typeof gridJustifySelfProps)[number]
27
-
28
- export { gridJustifySelfProps }
@@ -1,4 +0,0 @@
1
- export * from './gridAlign'
2
- export * from './gridAlignSelf'
3
- export * from './gridJustifyItems'
4
- export * from './gridJustifySelf'
@@ -1,6 +0,0 @@
1
- const horizontalContentAlignProps = ['center'] as const
2
-
3
- export type HorizontalContentAlignProps =
4
- (typeof horizontalContentAlignProps)[number]
5
-
6
- export { horizontalContentAlignProps }
@@ -1,6 +0,0 @@
1
- const horizontalResizeModeProps = ['fixed', 'hug', 'fill'] as const
2
-
3
- export type HorizontalResizeModeProps =
4
- (typeof horizontalResizeModeProps)[number]
5
-
6
- export { horizontalResizeModeProps }
@@ -1,2 +0,0 @@
1
- export * from './horizontalResizeMode'
2
- export * from './horizontalContentAlign'
@@ -1,16 +0,0 @@
1
- const iconFillSizeProps = [
2
- '10',
3
- '14',
4
- '16',
5
- '24',
6
- '32',
7
- '36',
8
- '40',
9
- '60',
10
- '64',
11
- '144',
12
- ] as const
13
-
14
- export type IconFillSizeProps = (typeof iconFillSizeProps)[number]
15
-
16
- export { iconFillSizeProps }
@@ -1,17 +0,0 @@
1
- const iconSizeProps = [
2
- '10',
3
- '12',
4
- '14',
5
- '16',
6
- '20',
7
- '24',
8
- '32',
9
- '40',
10
- '60',
11
- '64',
12
- '144',
13
- ] as const
14
-
15
- export type IconSizeProps = (typeof iconSizeProps)[number]
16
-
17
- export { iconSizeProps }
@@ -1,2 +0,0 @@
1
- export * from './iconFillSize'
2
- export * from './iconSize'
@@ -1,39 +0,0 @@
1
- const itemColorProps = [
2
- 'accentItemPrimary',
3
- 'accentItemSecondary',
4
- 'accentItemTertiary',
5
- 'accentItemDisabled',
6
-
7
- 'primaryItemPrimary',
8
- 'primaryItemSecondary',
9
- 'primaryItemTertiary',
10
- 'primaryItemDisabled',
11
-
12
- 'secondaryItemPrimary',
13
- 'secondaryItemSecondary',
14
- 'secondaryItemTertiary',
15
- 'secondaryItemDisabled',
16
-
17
- 'tertiaryItemPrimary',
18
- 'tertiaryItemSecondary',
19
- 'tertiaryItemTertiary',
20
-
21
- 'surfaceItemPrimary',
22
- 'surfaceItemSecondary',
23
- 'surfaceItemTertiary',
24
- 'surfaceItemQuaternary',
25
- 'surfaceItemQuinary',
26
- 'surfaceItemDisabled',
27
- 'surfaceItemInverse',
28
- 'surfaceItemAccent',
29
-
30
- 'errorItemPrimary',
31
- 'errorItemSecondary',
32
-
33
- 'successItemPrimary',
34
- 'successItemSecondary',
35
- ] as const
36
-
37
- export type ItemColorProps = (typeof itemColorProps)[number]
38
-
39
- export { itemColorProps }
package/types/overflow.ts DELETED
@@ -1,5 +0,0 @@
1
- const overflowProps = ['hidden', 'scroll', 'visible'] as const
2
-
3
- export type OverflowProps = (typeof overflowProps)[number]
4
-
5
- export { overflowProps }
package/types/shape.ts DELETED
@@ -1,5 +0,0 @@
1
- const shapeProps = ['rectangle', 'geometric', 'rounded', 'circular'] as const
2
-
3
- export type ShapeProps = (typeof shapeProps)[number]
4
-
5
- export { shapeProps }
@@ -1,18 +0,0 @@
1
- const sizeOptionProps = [
2
- 'any',
3
- 'compact',
4
- 'l',
5
- 'large',
6
- 'm',
7
- 'normal',
8
- 'regular',
9
- 's',
10
- 'tiny',
11
- 'xl',
12
- 'xs',
13
- 'xxl',
14
- ] as const
15
-
16
- export type SizeOptionProps = (typeof sizeOptionProps)[number]
17
-
18
- export { sizeOptionProps }
package/types/svgFill.ts DELETED
@@ -1,33 +0,0 @@
1
- const svgFillProps = [
2
- 'accentItemPrimary',
3
- 'accentItemSecondary',
4
- 'accentItemTertiary',
5
- 'accentItemDisabled',
6
- 'primaryItemPrimary',
7
- 'primaryItemSecondary',
8
- 'primaryItemTertiary',
9
- 'primaryItemDisabled',
10
- 'secondaryItemPrimary',
11
- 'secondaryItemSecondary',
12
- 'secondaryItemTertiary',
13
- 'secondaryItemDisabled',
14
- 'tertiaryItemPrimary',
15
- 'tertiaryItemSecondary',
16
- 'tertiaryItemTertiary',
17
- 'surfaceItemAccent',
18
- 'surfaceItemDisabled',
19
- 'surfaceItemInverse',
20
- 'surfaceItemPrimary',
21
- 'surfaceItemQuaternary',
22
- 'surfaceItemQuinary',
23
- 'surfaceItemSecondary',
24
- 'surfaceItemTertiary',
25
- 'errorItemPrimary',
26
- 'errorItemSecondary',
27
- 'successItemPrimary',
28
- 'successItemSecondary',
29
- ] as const
30
-
31
- export type SvgFillProps = (typeof svgFillProps)[number]
32
-
33
- export { svgFillProps }
@@ -1,5 +0,0 @@
1
- const textAlignProps = ['left', 'center', 'right'] as const
2
-
3
- export type TextAlignProps = (typeof textAlignProps)[number]
4
-
5
- export { textAlignProps }
@@ -1,13 +0,0 @@
1
- const textGradientProps = [
2
- 'accent',
3
- 'primary',
4
- 'secondary',
5
- 'tertiary',
6
- 'surface',
7
- 'error',
8
- 'success',
9
- ] as const
10
-
11
- export type TextGradientProps = (typeof textGradientProps)[number]
12
-
13
- export { textGradientProps }
@@ -1,5 +0,0 @@
1
- const textStyleProps = ['normal', 'italic'] as const
2
-
3
- export type TextStyleProps = (typeof textStyleProps)[number]
4
-
5
- export { textStyleProps }