@itcase/types 1.0.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.
Files changed (87) hide show
  1. package/.editorconfig +35 -0
  2. package/.github/workflows/publish.yaml +33 -0
  3. package/.husky/check_message +5 -0
  4. package/.husky/post-commit +14 -0
  5. package/.husky/post-merge +14 -0
  6. package/.husky/pre-commit +6 -0
  7. package/.husky/pre-push +14 -0
  8. package/.husky/set_release_message +43 -0
  9. package/CHANGELOG.md +13 -0
  10. package/README.md +7 -0
  11. package/commitlint.config.mjs +3 -0
  12. package/eslint.config.mjs +3 -0
  13. package/index.ts +1 -0
  14. package/lint-staged.config.mjs +3 -0
  15. package/package.json +45 -0
  16. package/prettier.config.mjs +3 -0
  17. package/release.config.mjs +3 -0
  18. package/tsconfig.json +23 -0
  19. package/types/align/align.ts +15 -0
  20. package/types/align/alignDirection.ts +14 -0
  21. package/types/align/alignment.ts +14 -0
  22. package/types/align/index.ts +3 -0
  23. package/types/appearanceKeys.ts +33 -0
  24. package/types/border/borderColor.ts +46 -0
  25. package/types/border/borderColorHover.ts +18 -0
  26. package/types/border/borderType.ts +5 -0
  27. package/types/border/borderWidth.ts +16 -0
  28. package/types/border/index.ts +4 -0
  29. package/types/direction.ts +12 -0
  30. package/types/elevation.ts +5 -0
  31. package/types/fill/fill.ts +39 -0
  32. package/types/fill/fillGradient.ts +13 -0
  33. package/types/fill/fillHover.ts +20 -0
  34. package/types/fill/fillType.ts +5 -0
  35. package/types/fill/index.ts +4 -0
  36. package/types/flex/flexAlign.ts +12 -0
  37. package/types/flex/flexGrow.ts +5 -0
  38. package/types/flex/flexJustifyContent.ts +12 -0
  39. package/types/flex/flexWrap.ts +5 -0
  40. package/types/flex/index.ts +4 -0
  41. package/types/grid/gridAlign.ts +23 -0
  42. package/types/grid/gridAlignSelf.ts +23 -0
  43. package/types/grid/gridJustifyItems.ts +24 -0
  44. package/types/grid/gridJustifySelf.ts +28 -0
  45. package/types/grid/index.ts +4 -0
  46. package/types/height.ts +5 -0
  47. package/types/horizontal/horizontalContentAlign.ts +6 -0
  48. package/types/horizontal/horizontalResizeMode.ts +6 -0
  49. package/types/horizontal/index.ts +2 -0
  50. package/types/icon/iconFillSize.ts +16 -0
  51. package/types/icon/iconSize.ts +17 -0
  52. package/types/icon/index.ts +2 -0
  53. package/types/index.ts +33 -0
  54. package/types/itemColor.ts +39 -0
  55. package/types/justifyContent.ts +17 -0
  56. package/types/overflow.ts +5 -0
  57. package/types/position.ts +11 -0
  58. package/types/resizeMode.ts +11 -0
  59. package/types/shape.ts +5 -0
  60. package/types/size/index.ts +3 -0
  61. package/types/size/size.ts +5 -0
  62. package/types/size/sizeOption.ts +18 -0
  63. package/types/size/sizePX.ts +22 -0
  64. package/types/stacking.ts +5 -0
  65. package/types/state/index.ts +2 -0
  66. package/types/state/state.ts +12 -0
  67. package/types/state/stateKeys.ts +11 -0
  68. package/types/svgFill.ts +33 -0
  69. package/types/text/index.ts +10 -0
  70. package/types/text/textAlign.ts +5 -0
  71. package/types/text/textColor.ts +40 -0
  72. package/types/text/textColorActive.ts +40 -0
  73. package/types/text/textColorHover.ts +40 -0
  74. package/types/text/textGradient.ts +13 -0
  75. package/types/text/textSize.ts +5 -0
  76. package/types/text/textStyle.ts +5 -0
  77. package/types/text/textTag.ts +5 -0
  78. package/types/text/textWeight.ts +21 -0
  79. package/types/text/textWrap.ts +5 -0
  80. package/types/titleSize.ts +7 -0
  81. package/types/type.ts +13 -0
  82. package/types/underline.ts +5 -0
  83. package/types/vertical/index.ts +2 -0
  84. package/types/vertical/verticalContentAlign.ts +6 -0
  85. package/types/vertical/verticalResizeMode.ts +5 -0
  86. package/types/width.ts +5 -0
  87. package/types/wrap.ts +5 -0
@@ -0,0 +1,23 @@
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 tGridAlignSelfProps = (typeof gridAlignSelfProps)[number]
22
+
23
+ export { gridAlignSelfProps }
@@ -0,0 +1,24 @@
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 tGridJustifyItemsProps = (typeof gridJustifyItemsProps)[number]
23
+
24
+ export { gridJustifyItemsProps }
@@ -0,0 +1,28 @@
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 tGridJustifySelfProps = (typeof gridJustifySelfProps)[number]
27
+
28
+ export { gridJustifySelfProps }
@@ -0,0 +1,4 @@
1
+ export * from './gridAlign'
2
+ export * from './gridAlignSelf'
3
+ export * from './gridJustifyItems'
4
+ export * from './gridJustifySelf'
@@ -0,0 +1,5 @@
1
+ const heightProps = ['fixed', 'hug', 'fill'] as const
2
+
3
+ export type tHeightProps = (typeof heightProps)[number]
4
+
5
+ export { heightProps }
@@ -0,0 +1,6 @@
1
+ const horizontalContentAlignProps = ['center'] as const
2
+
3
+ export type tHorizontalContentAlignProps =
4
+ (typeof horizontalContentAlignProps)[number]
5
+
6
+ export { horizontalContentAlignProps }
@@ -0,0 +1,6 @@
1
+ const horizontalResizeModeProps = ['fixed', 'hug', 'fill'] as const
2
+
3
+ export type tHorizontalResizeModeProps =
4
+ (typeof horizontalResizeModeProps)[number]
5
+
6
+ export { horizontalResizeModeProps }
@@ -0,0 +1,2 @@
1
+ export * from './horizontalResizeMode'
2
+ export * from './horizontalContentAlign'
@@ -0,0 +1,16 @@
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 tIconFillSizeProps = (typeof iconFillSizeProps)[number]
15
+
16
+ export { iconFillSizeProps }
@@ -0,0 +1,17 @@
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 tIconSizeProps = (typeof iconSizeProps)[number]
16
+
17
+ export { iconSizeProps }
@@ -0,0 +1,2 @@
1
+ export * from './iconFillSize'
2
+ export * from './iconSize'
package/types/index.ts ADDED
@@ -0,0 +1,33 @@
1
+ /**
2
+ * directories
3
+ */
4
+ export * from './align'
5
+ export * from './border'
6
+ export * from './fill'
7
+ export * from './grid'
8
+ export * from './text'
9
+ export * from './horizontal'
10
+ export * from './icon'
11
+ export * from './size'
12
+ export * from './state'
13
+
14
+ /**
15
+ * files
16
+ */
17
+ export * from './appearanceKeys'
18
+ export * from './direction'
19
+ export * from './elevation'
20
+ export * from './height'
21
+ export * from './itemColor'
22
+ export * from './justifyContent'
23
+ export * from './overflow'
24
+ export * from './position'
25
+ export * from './resizeMode'
26
+ export * from './shape'
27
+ export * from './stacking'
28
+ export * from './svgFill'
29
+ export * from './titleSize'
30
+ export * from './type'
31
+ export * from './underline'
32
+ export * from './width'
33
+ export * from './wrap'
@@ -0,0 +1,39 @@
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 tItemColorProps = (typeof itemColorProps)[number]
38
+
39
+ export { itemColorProps }
@@ -0,0 +1,17 @@
1
+ const justifyContentProps = [
2
+ 'center',
3
+ 'flex-end',
4
+ 'flex-start',
5
+ 'flexEnd',
6
+ 'flexStart',
7
+ 'space-around',
8
+ 'space-between',
9
+ 'space-evenly',
10
+ 'spaceAround',
11
+ 'spaceBetween',
12
+ 'spaceEvenly',
13
+ ] as const
14
+
15
+ export type tJustifyContentProps = (typeof justifyContentProps)[number]
16
+
17
+ export { justifyContentProps }
@@ -0,0 +1,5 @@
1
+ const overflowProps = ['hidden', 'scroll', 'visible'] as const
2
+
3
+ export type tOverflowProps = (typeof overflowProps)[number]
4
+
5
+ export { overflowProps }
@@ -0,0 +1,11 @@
1
+ const positionProps = [
2
+ 'static',
3
+ 'absolute',
4
+ 'relative',
5
+ 'fixed',
6
+ 'inherit',
7
+ ] as const
8
+
9
+ export type tPositionProps = (typeof positionProps)[number]
10
+
11
+ export { positionProps }
@@ -0,0 +1,11 @@
1
+ const resizeModeProps = [
2
+ 'cover',
3
+ 'contain',
4
+ 'stretch',
5
+ 'center',
6
+ 'caption-back',
7
+ ] as const
8
+
9
+ export type tResizeModeProps = (typeof resizeModeProps)[number]
10
+
11
+ export { resizeModeProps }
package/types/shape.ts ADDED
@@ -0,0 +1,5 @@
1
+ const shapeProps = ['rectangle', 'geometric', 'rounded', 'circular'] as const
2
+
3
+ export type tShapeProps = (typeof shapeProps)[number]
4
+
5
+ export { shapeProps }
@@ -0,0 +1,3 @@
1
+ export * from './size'
2
+ export * from './sizeOption'
3
+ export * from './sizePX'
@@ -0,0 +1,5 @@
1
+ const sizeProps = ['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl'] as const
2
+
3
+ export type tSizeProps = (typeof sizeProps)[number]
4
+
5
+ export { sizeProps }
@@ -0,0 +1,18 @@
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 tSizeOptionProps = (typeof sizeOptionProps)[number]
17
+
18
+ export { sizeOptionProps }
@@ -0,0 +1,22 @@
1
+ const sizePXProps = [
2
+ '14',
3
+ '16',
4
+ '20',
5
+ '24',
6
+ '32',
7
+ '40',
8
+ '48',
9
+ '56',
10
+ '60',
11
+ '64',
12
+ '72',
13
+ '80',
14
+ '96',
15
+ '112',
16
+ '144',
17
+ '240',
18
+ ] as const
19
+
20
+ export type tSizePXProps = (typeof sizePXProps)[number]
21
+
22
+ export { sizePXProps }
@@ -0,0 +1,5 @@
1
+ const stackingProps = ['firstOnTop', 'lastOnTop'] as const
2
+
3
+ export type tStackingProps = (typeof stackingProps)[number]
4
+
5
+ export { stackingProps }
@@ -0,0 +1,2 @@
1
+ export * from './state'
2
+ export * from './stateKeys'
@@ -0,0 +1,12 @@
1
+ const stateProps = [
2
+ 'active',
3
+ 'checked',
4
+ 'disabled',
5
+ 'focus',
6
+ 'hover',
7
+ 'normal',
8
+ ] as const
9
+
10
+ export type tStateProps = (typeof stateProps)[number]
11
+
12
+ export { stateProps }
@@ -0,0 +1,11 @@
1
+ export type tStateKeysDefault =
2
+ | 'active'
3
+ | 'activeFilled'
4
+ | 'disabled'
5
+ | 'error'
6
+ | 'errorFilled'
7
+ | 'filled'
8
+ | 'normal'
9
+ | 'readonly'
10
+ | 'require'
11
+ | 'success'
@@ -0,0 +1,33 @@
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 tSvgFillProps = (typeof svgFillProps)[number]
32
+
33
+ export { svgFillProps }
@@ -0,0 +1,10 @@
1
+ export * from './textAlign'
2
+ export * from './textColor'
3
+ export * from './textColorActive'
4
+ export * from './textColorHover'
5
+ export * from './textGradient'
6
+ export * from './textSize'
7
+ export * from './textStyle'
8
+ export * from './textTag'
9
+ export * from './textWeight'
10
+ export * from './textWrap'
@@ -0,0 +1,5 @@
1
+ const textAlignProps = ['left', 'center', 'right'] as const
2
+
3
+ export type tTextAlignProps = (typeof textAlignProps)[number]
4
+
5
+ export { textAlignProps }
@@ -0,0 +1,40 @@
1
+ const textColorProps = [
2
+ 'accentTextPrimary',
3
+ 'accentTextSecondary',
4
+ 'accentTextTertiary',
5
+
6
+ 'primaryTextPrimary',
7
+ 'primaryTextSecondary',
8
+ 'primaryTextTertiary',
9
+
10
+ 'secondaryTextPrimary',
11
+ 'secondaryTextSecondary',
12
+ 'secondaryTextTertiary',
13
+
14
+ 'tertiaryTextPrimary',
15
+ 'tertiaryTextSecondary',
16
+
17
+ 'surfaceTextAccent',
18
+ 'surfaceTextActive',
19
+ 'surfaceTextDisabled',
20
+ 'surfaceTextFocus',
21
+ 'surfaceTextHover',
22
+ 'surfaceTextInverse',
23
+ 'surfaceTextPrimary',
24
+ 'surfaceTextQuaternary',
25
+ 'surfaceTextSecondary',
26
+ 'surfaceTextTertiary',
27
+
28
+ 'errorTextPrimary',
29
+ 'errorTextSecondary',
30
+
31
+ 'successTextPrimary',
32
+ 'successTextSecondary',
33
+
34
+ 'dangerTextPrimary',
35
+ 'dangerTextSecondary',
36
+ ] as const
37
+
38
+ export type tTextColorProps = (typeof textColorProps)[number]
39
+
40
+ export { textColorProps }
@@ -0,0 +1,40 @@
1
+ const textColorActiveProps = [
2
+ 'accentTextPrimary',
3
+ 'accentTextSecondary',
4
+ 'accentTextTertiary',
5
+
6
+ 'primaryTextPrimary',
7
+ 'primaryTextSecondary',
8
+ 'primaryTextTertiary',
9
+
10
+ 'secondaryTextPrimary',
11
+ 'secondaryTextSecondary',
12
+ 'secondaryTextTertiary',
13
+
14
+ 'tertiaryTextPrimary',
15
+ 'tertiaryTextSecondary',
16
+
17
+ 'surfaceTextAccent',
18
+ 'surfaceTextActive',
19
+ 'surfaceTextDisabled',
20
+ 'surfaceTextFocus',
21
+ 'surfaceTextHover',
22
+ 'surfaceTextInverse',
23
+ 'surfaceTextPrimary',
24
+ 'surfaceTextQuaternary',
25
+ 'surfaceTextSecondary',
26
+ 'surfaceTextTertiary',
27
+
28
+ 'errorTextPrimary',
29
+ 'errorTextSecondary',
30
+
31
+ 'successTextPrimary',
32
+ 'successTextSecondary',
33
+
34
+ 'dangerTextPrimary',
35
+ 'dangerTextSecondary',
36
+ ] as const
37
+
38
+ export type tTextColorActiveProps = (typeof textColorActiveProps)[number]
39
+
40
+ export { textColorActiveProps }
@@ -0,0 +1,40 @@
1
+ const textColorHoverProps = [
2
+ 'accentTextPrimary',
3
+ 'accentTextSecondary',
4
+ 'accentTextTertiary',
5
+
6
+ 'primaryTextPrimary',
7
+ 'primaryTextSecondary',
8
+ 'primaryTextTertiary',
9
+
10
+ 'secondaryTextPrimary',
11
+ 'secondaryTextSecondary',
12
+ 'secondaryTextTertiary',
13
+
14
+ 'tertiaryTextPrimary',
15
+ 'tertiaryTextSecondary',
16
+
17
+ 'surfaceTextAccent',
18
+ 'surfaceTextActive',
19
+ 'surfaceTextDisabled',
20
+ 'surfaceTextFocus',
21
+ 'surfaceTextHover',
22
+ 'surfaceTextInverse',
23
+ 'surfaceTextPrimary',
24
+ 'surfaceTextQuaternary',
25
+ 'surfaceTextSecondary',
26
+ 'surfaceTextTertiary',
27
+
28
+ 'errorTextPrimary',
29
+ 'errorTextSecondary',
30
+
31
+ 'successTextPrimary',
32
+ 'successTextSecondary',
33
+
34
+ 'dangerTextPrimary',
35
+ 'dangerTextSecondary',
36
+ ] as const
37
+
38
+ export type tTextColorHoverProps = (typeof textColorHoverProps)[number]
39
+
40
+ export { textColorHoverProps }
@@ -0,0 +1,13 @@
1
+ const textGradientProps = [
2
+ 'accent',
3
+ 'primary',
4
+ 'secondary',
5
+ 'tertiary',
6
+ 'surface',
7
+ 'error',
8
+ 'success',
9
+ ] as const
10
+
11
+ export type tTextGradientProps = (typeof textGradientProps)[number]
12
+
13
+ export { textGradientProps }
@@ -0,0 +1,5 @@
1
+ const textSizeProps = ['xxs', 'xs', 's', 'm', 'l', 'xl', 'xxl'] as const
2
+
3
+ export type tTextSizeProps = (typeof textSizeProps)[number]
4
+
5
+ export { textSizeProps }
@@ -0,0 +1,5 @@
1
+ const textStyleProps = ['normal', 'italic'] as const
2
+
3
+ export type tTextStyleProps = (typeof textStyleProps)[number]
4
+
5
+ export { textStyleProps }
@@ -0,0 +1,5 @@
1
+ const textTagProps = ['p', 'span'] as const
2
+
3
+ export type tTextTagProps = (typeof textTagProps)[number]
4
+
5
+ export { textTagProps }
@@ -0,0 +1,21 @@
1
+ const textWeightProps = [
2
+ 'normal',
3
+ 'bold',
4
+ 'light',
5
+ 'lighter',
6
+ 'bolder',
7
+ '100',
8
+ '200',
9
+ '300',
10
+ '400',
11
+ '500',
12
+ '600',
13
+ '700',
14
+ '800',
15
+ '900',
16
+ '950',
17
+ ] as const
18
+
19
+ export type tTextWeightProps = (typeof textWeightProps)[number]
20
+
21
+ export { textWeightProps }
@@ -0,0 +1,5 @@
1
+ const textWrapProps = ['wrap', 'nowrap'] as const
2
+
3
+ export type tTextWrapProps = (typeof textWrapProps)[number]
4
+
5
+ export { textWrapProps }
@@ -0,0 +1,7 @@
1
+ const titleSizeHeadingProps = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] as const
2
+ const titleSizeProps = ['xxl', 'xl', 'l', 'm', 's', 'xs', 'xxs'] as const
3
+
4
+ export type tTitleSizeProps = (typeof titleSizeProps)[number]
5
+ export type tTitleSizeHeadingProps = (typeof titleSizeHeadingProps)[number]
6
+
7
+ export { titleSizeProps, titleSizeHeadingProps }
package/types/type.ts ADDED
@@ -0,0 +1,13 @@
1
+ const typeProps = [
2
+ 'accent',
3
+ 'primary',
4
+ 'secondary',
5
+ 'tertiary',
6
+ 'surface',
7
+ 'error',
8
+ 'success',
9
+ ] as const
10
+
11
+ export type tTypeProps = (typeof typeProps)[number]
12
+
13
+ export { typeProps }
@@ -0,0 +1,5 @@
1
+ const underlineProps = ['none', 'underline'] as const
2
+
3
+ export type tUnderlineProps = (typeof underlineProps)[number]
4
+
5
+ export { underlineProps }
@@ -0,0 +1,2 @@
1
+ export * from './verticalContentAlign'
2
+ export * from './verticalResizeMode'
@@ -0,0 +1,6 @@
1
+ const verticalContentAlignProps = ['center'] as const
2
+
3
+ export type tVerticalContentAlignProps =
4
+ (typeof verticalContentAlignProps)[number]
5
+
6
+ export { verticalContentAlignProps }
@@ -0,0 +1,5 @@
1
+ const verticalResizeModeProps = ['fixed', 'hug', 'fill'] as const
2
+
3
+ export type tVerticalResizeModeProps = (typeof verticalResizeModeProps)[number]
4
+
5
+ export { verticalResizeModeProps }