@itcase/ui-react-native 1.10.91 → 1.10.94

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 (156) hide show
  1. package/.storybook-react-native/preview.tsx +68 -32
  2. package/.storybook-react-native-web/main.ts +9 -2
  3. package/.storybook-react-native-web/preview.tsx +63 -55
  4. package/package.json +16 -16
  5. package/src/components/Avatar/Avatar.interface.ts +5 -5
  6. package/src/components/Avatar/index.ts +4 -4
  7. package/src/components/Avatar/stories/AvatarStories.config.ts +1 -4
  8. package/src/components/Avatar/styles/avatarShape.ts +2 -2
  9. package/src/components/Avatar/styles/avatarSize.ts +2 -2
  10. package/src/components/AvatarStack/AvatarStack.interface.ts +4 -4
  11. package/src/components/AvatarStack/index.ts +2 -2
  12. package/src/components/AvatarStack/stories/AvatarStackDemo.stories.tsx +2 -3
  13. package/src/components/AvatarStack/stories/AvatarStackStories.config.ts +20 -7
  14. package/src/components/AvatarStack/styles/avatarStackDirection.ts +2 -2
  15. package/src/components/Badge/Badge.interface.ts +6 -6
  16. package/src/components/Badge/index.ts +6 -6
  17. package/src/components/Badge/stories/BadgeStories.config.ts +1 -1
  18. package/src/components/Badge/styles/badgeShape.ts +2 -2
  19. package/src/components/Badge/styles/badgeSize.ts +2 -2
  20. package/src/components/Badge/styles/badgeType.ts +2 -2
  21. package/src/components/Breadcrumbs/Breadcrumbs.interface.ts +2 -2
  22. package/src/components/Breadcrumbs/index.ts +2 -2
  23. package/src/components/Breadcrumbs/styles/breadcrumbsSize.ts +2 -2
  24. package/src/components/Button/Button.interface.ts +5 -5
  25. package/src/components/Button/index.ts +4 -4
  26. package/src/components/Button/stories/ButtonStories.config.ts +4 -4
  27. package/src/components/Button/styles/buttonShape.ts +2 -2
  28. package/src/components/Button/styles/buttonSize.ts +2 -2
  29. package/src/components/Button/styles/buttonText.ts +2 -2
  30. package/src/components/Cell/Cell.interface.ts +6 -6
  31. package/src/components/Cell/index.ts +6 -6
  32. package/src/components/Cell/styles/cellDirection.ts +2 -2
  33. package/src/components/Cell/styles/cellShape.ts +2 -2
  34. package/src/components/Cell/styles/cellSize.ts +2 -2
  35. package/src/components/Checkbox/Checkbox.interface.ts +8 -8
  36. package/src/components/Checkbox/index.ts +4 -4
  37. package/src/components/Checkbox/styles/checkboxAlign.ts +2 -2
  38. package/src/components/Checkbox/styles/checkboxShape.ts +2 -2
  39. package/src/components/Checkbox/styles/checkboxSize.ts +2 -2
  40. package/src/components/Checkmark/Checkmark.interface.ts +4 -4
  41. package/src/components/Checkmark/index.ts +2 -2
  42. package/src/components/Checkmark/stories/CheckmarkStories.config.ts +3 -4
  43. package/src/components/Checkmark/styles/checkmarkSize.ts +2 -2
  44. package/src/components/Chips/Chips.interface.ts +4 -4
  45. package/src/components/Chips/index.ts +4 -4
  46. package/src/components/Chips/stories/ChipsStories.config.ts +1 -1
  47. package/src/components/Chips/styles/chipsShape.ts +2 -2
  48. package/src/components/Chips/styles/chipsSize.ts +2 -2
  49. package/src/components/Choice/Choice.interface.ts +6 -6
  50. package/src/components/Choice/index.ts +2 -2
  51. package/src/components/Choice/stories/ChoiceStories.config.tsx +3 -4
  52. package/src/components/Choice/styles/choiceSize.ts +2 -2
  53. package/src/components/Code/index.ts +4 -4
  54. package/src/components/Code/stories/CodeStories.config.ts +3 -4
  55. package/src/components/Code/styles/codeSize.ts +2 -2
  56. package/src/components/Code/styles/codeVariant.ts +2 -2
  57. package/src/components/ColorInput/ColorInput.interface.ts +2 -2
  58. package/src/components/ColorInput/index.ts +2 -2
  59. package/src/components/ColorInput/stories/ColorInputStories.config.tsx +3 -4
  60. package/src/components/ColorInput/styles/colorInputSize.ts +2 -2
  61. package/src/components/Divider/Divider.interface.ts +4 -4
  62. package/src/components/Divider/index.ts +4 -4
  63. package/src/components/Divider/styles/dividerDirection.ts +2 -2
  64. package/src/components/Divider/styles/dividerSize.ts +2 -2
  65. package/src/components/Dot/Dot.interface.ts +4 -4
  66. package/src/components/Dot/index.ts +3 -3
  67. package/src/components/Dot/styles/dotShape.ts +2 -2
  68. package/src/components/Dot/styles/dotSize.ts +2 -2
  69. package/src/components/Drawer/Drawer.interface.ts +2 -2
  70. package/src/components/Dropdown/Dropdown.interface.ts +6 -6
  71. package/src/components/Dropdown/index.ts +3 -3
  72. package/src/components/Dropdown/styles/dropdownItemSize.ts +2 -2
  73. package/src/components/Group/Group.interface.ts +8 -8
  74. package/src/components/Group/index.ts +8 -8
  75. package/src/components/Group/styles/groupAlign.ts +2 -2
  76. package/src/components/Group/styles/groupDirection.ts +2 -2
  77. package/src/components/Group/styles/groupJustify.ts +2 -2
  78. package/src/components/Group/styles/groupWrap.ts +2 -2
  79. package/src/components/Icon/Icon.interface.ts +10 -10
  80. package/src/components/Icon/index.ts +4 -4
  81. package/src/components/Icon/stories/IconStories.config.ts +1 -1
  82. package/src/components/Icon/styles/iconShape.ts +2 -2
  83. package/src/components/Icon/styles/iconSize.ts +5 -5
  84. package/src/components/Input/Input.interface.ts +4 -4
  85. package/src/components/Input/index.ts +4 -4
  86. package/src/components/Input/stories/InputStories.config.tsx +3 -4
  87. package/src/components/Input/styles/inputShape.ts +2 -2
  88. package/src/components/Input/styles/inputSize.ts +2 -2
  89. package/src/components/InputNumber/InputNumber.interface.ts +8 -8
  90. package/src/components/InputNumber/index.ts +4 -4
  91. package/src/components/InputNumber/styles/inputNumberShape.ts +2 -2
  92. package/src/components/InputNumber/styles/inputNumberSize.ts +2 -2
  93. package/src/components/InputPassword/InputPassword.interface.ts +6 -6
  94. package/src/components/InputPassword/index.ts +4 -4
  95. package/src/components/InputPassword/styles/inputPasswordShape.ts +2 -2
  96. package/src/components/InputPassword/styles/inputPasswordSize.ts +2 -2
  97. package/src/components/Label/Label.interface.ts +2 -2
  98. package/src/components/Label/index.ts +2 -2
  99. package/src/components/Label/stories/LabelStories.config.ts +1 -1
  100. package/src/components/Label/styles/labelShape.ts +2 -2
  101. package/src/components/List/List.interface.ts +2 -2
  102. package/src/components/List/index.ts +4 -4
  103. package/src/components/List/styles/listDirection.ts +2 -2
  104. package/src/components/List/styles/listSize.ts +2 -2
  105. package/src/components/Loader/Loader.interface.ts +4 -4
  106. package/src/components/Loader/index.ts +4 -4
  107. package/src/components/Loader/stories/LoaderStories.config.ts +3 -4
  108. package/src/components/Loader/styles/loaderShape.ts +2 -2
  109. package/src/components/Loader/styles/loaderSize.ts +2 -2
  110. package/src/components/Logo/Logo.interface.ts +4 -4
  111. package/src/components/Logo/index.ts +3 -3
  112. package/src/components/Logo/styles/logoAlign.ts +2 -2
  113. package/src/components/Logo/styles/logoSize.ts +2 -2
  114. package/src/components/MenuItem/MenuItem.interface.ts +4 -4
  115. package/src/components/MenuItem/index.ts +4 -4
  116. package/src/components/MenuItem/styles/menuItemShape.ts +2 -2
  117. package/src/components/MenuItem/styles/menuItemSize.ts +2 -2
  118. package/src/components/Modal/Modal.interface.ts +2 -2
  119. package/src/components/Pagination/Pagination.interface.ts +3 -3
  120. package/src/components/Pagination/index.ts +2 -2
  121. package/src/components/Pagination/styles/paginationSize.ts +2 -2
  122. package/src/components/Radio/Radio.interface.ts +2 -2
  123. package/src/components/Radio/index.ts +2 -2
  124. package/src/components/Radio/styles/radioSize.ts +2 -2
  125. package/src/components/Search/stories/SearchStories.config.ts +3 -4
  126. package/src/components/Search/styles/searchShape.ts +2 -2
  127. package/src/components/Search/styles/searchSize.ts +2 -2
  128. package/src/components/Segmented/Segmented.interface.ts +6 -6
  129. package/src/components/Segmented/index.ts +4 -4
  130. package/src/components/Segmented/styles/segmentedShape.ts +2 -2
  131. package/src/components/Segmented/styles/segmentedSize.ts +2 -2
  132. package/src/components/Select/Select.interface.ts +2 -2
  133. package/src/components/Select/index.ts +2 -2
  134. package/src/components/Select/stories/SelectStories.config.ts +1 -4
  135. package/src/components/Select/styles/selectSize.ts +2 -2
  136. package/src/components/Switch/Switch.interface.ts +4 -4
  137. package/src/components/Switch/index.ts +4 -4
  138. package/src/components/Switch/stories/SwitchStories.config.tsx +3 -4
  139. package/src/components/Switch/styles/switchAlign.ts +2 -2
  140. package/src/components/Switch/styles/switchSize.ts +2 -2
  141. package/src/components/Tab/Tab.interface.ts +2 -2
  142. package/src/components/Tab/index.ts +2 -2
  143. package/src/components/Tab/styles/tabSize.ts +2 -2
  144. package/src/components/Textarea/Textarea.interface.ts +4 -4
  145. package/src/components/Textarea/index.ts +4 -4
  146. package/src/components/Textarea/styles/textareaShape.ts +2 -2
  147. package/src/components/Textarea/styles/textareaSize.ts +2 -2
  148. package/src/components/Tile/Tile.interface.ts +4 -4
  149. package/src/components/Tile/index.ts +4 -4
  150. package/src/components/Tile/styles/tileShape.ts +2 -2
  151. package/src/components/Tile/styles/tileSize.ts +2 -2
  152. package/src/components/Warning/Warning.interface.ts +4 -4
  153. package/src/components/Warning/index.ts +4 -4
  154. package/src/components/Warning/styles/warningShape.ts +2 -2
  155. package/src/components/Warning/styles/warningSize.ts +2 -2
  156. package/src/index.tsx +118 -118
package/src/index.tsx CHANGED
@@ -20,13 +20,13 @@ import type {
20
20
  AvatarAppearanceKey,
21
21
  AvatarConfig,
22
22
  AvatarProps,
23
- avatarShapePropsType,
24
- avatarSizesPropsType,
23
+ AvatarShapePropsType,
24
+ AvatarSizesPropsType,
25
25
  } from './components/Avatar'
26
26
  import { AvatarStack, avatarStackDirectionList } from './components/AvatarStack'
27
27
  import type {
28
28
  AvatarsItem,
29
- avatarStackDirectionPropsType,
29
+ AvatarStackDirectionPropsType,
30
30
  AvatarStackProps,
31
31
  } from './components/AvatarStack'
32
32
  import {
@@ -42,9 +42,9 @@ import type {
42
42
  BadgeAppearanceKey,
43
43
  BadgeConfig,
44
44
  BadgeProps,
45
- badgeShapePropsType,
46
- badgeSizePropsType,
47
- badgeTypePropsType,
45
+ BadgeShapePropsType,
46
+ BadgeSizePropsType,
47
+ BadgeTypePropsType,
48
48
  } from './components/Badge'
49
49
  import {
50
50
  Breadcrumbs,
@@ -58,7 +58,7 @@ import type {
58
58
  BreadcrumbsConfig,
59
59
  BreadcrumbsItem,
60
60
  BreadcrumbsProps,
61
- breadcrumbsSizePropsType,
61
+ BreadcrumbsSizePropsType,
62
62
  } from './components/Breadcrumbs'
63
63
  import {
64
64
  Button,
@@ -73,8 +73,8 @@ import type {
73
73
  ButtonAppearanceStyle,
74
74
  ButtonConfig,
75
75
  ButtonProps,
76
- buttonSizePropsType,
77
- buttonTextSizePropsType,
76
+ ButtonSizePropsType,
77
+ ButtonTextSizePropsType,
78
78
  } from './components/Button'
79
79
  import {
80
80
  Cell,
@@ -83,10 +83,10 @@ import {
83
83
  cellSizeList,
84
84
  } from './components/Cell'
85
85
  import type {
86
- cellDirectionPropsType,
86
+ CellDirectionPropsType,
87
87
  CellProps,
88
- cellShapePropsType,
89
- cellSizePropsType,
88
+ CellShapePropsType,
89
+ CellSizePropsType,
90
90
  URLTextProps,
91
91
  } from './components/Cell'
92
92
  import {
@@ -97,12 +97,12 @@ import {
97
97
  checkboxSizeList,
98
98
  } from './components/Checkbox'
99
99
  import type {
100
- checkboxAlignPropsType,
100
+ CheckboxAlignPropsType,
101
101
  CheckboxAppearance,
102
102
  CheckboxAppearanceKey,
103
103
  CheckboxConfig,
104
104
  CheckboxProps,
105
- checkboxSizePropsType,
105
+ CheckboxSizePropsType,
106
106
  } from './components/Checkbox'
107
107
  import { Checkmark } from './components/Checkmark'
108
108
  import type { CheckmarkProps } from './components/Checkmark'
@@ -118,8 +118,8 @@ import type {
118
118
  ChipsAppearanceKey,
119
119
  ChipsConfig,
120
120
  ChipsProps,
121
- chipsShapePropsType,
122
- chipsSizePropsType,
121
+ ChipsShapePropsType,
122
+ ChipsSizePropsType,
123
123
  } from './components/Chips'
124
124
  import {
125
125
  Choice,
@@ -134,7 +134,7 @@ import type {
134
134
  ChoiceConfig,
135
135
  ChoiceOptionsItem,
136
136
  ChoiceProps,
137
- choiceSizePropsType,
137
+ ChoiceSizePropsType,
138
138
  } from './components/Choice'
139
139
  import {
140
140
  Code,
@@ -148,8 +148,8 @@ import type {
148
148
  CodeAppearanceKey,
149
149
  CodeConfig,
150
150
  CodeProps,
151
- codeSizePropsType,
152
- codeVariantPropsType,
151
+ CodeSizePropsType,
152
+ CodeVariantPropsType,
153
153
  } from './components/Code'
154
154
  import {
155
155
  ColorInput,
@@ -163,7 +163,7 @@ import type {
163
163
  ColorInputAppearanceKey,
164
164
  ColorInputConfig,
165
165
  ColorInputProps,
166
- colorInputSizePropsType,
166
+ ColorInputSizePropsType,
167
167
  } from './components/ColorInput'
168
168
  import {
169
169
  DatePicker,
@@ -187,15 +187,15 @@ import type {
187
187
  DividerAppearance,
188
188
  DividerAppearanceKey,
189
189
  DividerConfig,
190
- dividerDirectionPropsType,
190
+ DividerDirectionPropsType,
191
191
  DividerProps,
192
- dividerSizePropsType,
192
+ DividerSizePropsType,
193
193
  } from './components/Divider'
194
194
  import { Dot, dotShapeList, dotSizeList } from './components/Dot'
195
195
  import type {
196
196
  DotProps,
197
- dotShapePropsType,
198
- dotSizePropsType,
197
+ DotShapePropsType,
198
+ DotSizePropsType,
199
199
  } from './components/Dot'
200
200
  import { Drawer, drawerAppearance, drawerConfig } from './components/Drawer'
201
201
  import type {
@@ -221,7 +221,7 @@ import type {
221
221
  DropdownItemProps,
222
222
  DropdownListItem,
223
223
  DropdownProps,
224
- dropdownSizePropsType,
224
+ DropdownSizePropsType,
225
225
  } from './components/Dropdown'
226
226
  import {
227
227
  Group,
@@ -233,14 +233,14 @@ import {
233
233
  groupWrapList,
234
234
  } from './components/Group'
235
235
  import type {
236
- groupAlignItemsPropsType,
236
+ GroupAlignItemsPropsType,
237
237
  GroupAppearance,
238
238
  GroupAppearanceKey,
239
239
  GroupConfig,
240
- groupDirectionPropsType,
241
- groupJustifyContentPropsType,
240
+ GroupDirectionPropsType,
241
+ GroupJustifyContentPropsType,
242
242
  GroupProps,
243
- groupWrapPropsType,
243
+ GroupWrapPropsType,
244
244
  } from './components/Group'
245
245
  import {
246
246
  HeroTitle,
@@ -266,8 +266,8 @@ import type {
266
266
  IconAppearanceProps,
267
267
  IconConfig,
268
268
  IconProps,
269
- iconShapePropsType,
270
- iconSizePropsType,
269
+ IconShapePropsType,
270
+ IconSizePropsType,
271
271
  } from './components/Icon'
272
272
  import { Image } from './components/Image'
273
273
  import type { ImageProps } from './components/Image'
@@ -283,8 +283,8 @@ import type {
283
283
  InputAppearanceKey,
284
284
  InputConfig,
285
285
  InputProps,
286
- inputShapePropsType,
287
- inputSizePropsType,
286
+ InputShapePropsType,
287
+ InputSizePropsType,
288
288
  } from './components/Input'
289
289
  import {
290
290
  InputNumber,
@@ -298,8 +298,8 @@ import type {
298
298
  InputNumberAppearanceKey,
299
299
  InputNumberConfig,
300
300
  InputNumberProps,
301
- inputNumberShapePropsType,
302
- inputNumberSizePropsType,
301
+ InputNumberShapePropsType,
302
+ InputNumberSizePropsType,
303
303
  } from './components/InputNumber'
304
304
  import {
305
305
  InputPassword,
@@ -313,8 +313,8 @@ import type {
313
313
  InputPasswordAppearanceKey,
314
314
  InputPasswordConfig,
315
315
  InputPasswordProps,
316
- inputPasswordShapePropsType,
317
- inputPasswordSizePropsType,
316
+ InputPasswordShapePropsType,
317
+ InputPasswordSizePropsType,
318
318
  } from './components/InputPassword'
319
319
  import {
320
320
  Label,
@@ -327,7 +327,7 @@ import type {
327
327
  LabelAppearanceKey,
328
328
  LabelConfig,
329
329
  LabelProps,
330
- labelShapePropsType,
330
+ LabelShapePropsType,
331
331
  } from './components/Label'
332
332
  import { Link, linkAppearance, linkConfig } from './components/Link'
333
333
  import type {
@@ -348,10 +348,10 @@ import type {
348
348
  ListAppearance,
349
349
  ListAppearanceKey,
350
350
  ListConfig,
351
- listDirectionPropsType,
351
+ ListDirectionPropsType,
352
352
  ListItemProps,
353
353
  ListProps,
354
- listSizePropsType,
354
+ ListSizePropsType,
355
355
  ListStyle,
356
356
  } from './components/List'
357
357
  import {
@@ -366,14 +366,14 @@ import type {
366
366
  LoaderAppearanceKey,
367
367
  LoaderConfig,
368
368
  LoaderProps,
369
- loaderShapePropsType,
370
- loaderSizePropsType,
369
+ LoaderShapePropsType,
370
+ LoaderSizePropsType,
371
371
  } from './components/Loader'
372
372
  import { Logo, logoAlignItemsList, logoSizeList } from './components/Logo'
373
373
  import type {
374
- logoAlignItemsPropsType,
374
+ LogoAlignItemsPropsType,
375
375
  LogoProps,
376
- logoSizePropsType,
376
+ LogoSizePropsType,
377
377
  } from './components/Logo'
378
378
  import {
379
379
  MenuItem,
@@ -387,8 +387,8 @@ import type {
387
387
  MenuItemAppearanceKey,
388
388
  MenuItemConfig,
389
389
  MenuItemProps,
390
- menuItemShapePropsType,
391
- menuItemSizePropsType,
390
+ MenuItemShapePropsType,
391
+ MenuItemSizePropsType,
392
392
  } from './components/MenuItem'
393
393
  import { Modal } from './components/Modal'
394
394
  import type { ModalProps } from './components/Modal'
@@ -410,7 +410,7 @@ import type {
410
410
  PaginationAppearanceKey,
411
411
  PaginationConfig,
412
412
  PaginationProps,
413
- paginationSizePropsType,
413
+ PaginationSizePropsType,
414
414
  } from './components/Pagination'
415
415
  import {
416
416
  Pressable,
@@ -434,7 +434,7 @@ import type {
434
434
  RadioAppearanceKey,
435
435
  RadioConfig,
436
436
  RadioProps,
437
- radioSizePropsType,
437
+ RadioSizePropsType,
438
438
  } from './components/Radio'
439
439
  import { RangeSlider, THUMB_SIZE } from './components/RangeSlider'
440
440
  import type {
@@ -465,8 +465,8 @@ import type {
465
465
  SegmentedAppearanceKey,
466
466
  SegmentedConfig,
467
467
  SegmentedProps,
468
- segmentedShapePropsType,
469
- segmentedSizePropsType,
468
+ SegmentedShapePropsType,
469
+ SegmentedSizePropsType,
470
470
  } from './components/Segmented'
471
471
  import {
472
472
  Select,
@@ -481,7 +481,7 @@ import type {
481
481
  SelectMenu,
482
482
  SelectOptionItem,
483
483
  SelectProps,
484
- selectSizePropsType,
484
+ SelectSizePropsType,
485
485
  } from './components/Select'
486
486
  import {
487
487
  Switch,
@@ -491,15 +491,15 @@ import {
491
491
  switchSizeList,
492
492
  } from './components/Switch'
493
493
  import type {
494
- switchAlignPropsType,
494
+ SwitchAlignPropsType,
495
495
  SwitchAppearance,
496
496
  SwitchAppearanceKey,
497
497
  SwitchConfig,
498
498
  SwitchProps,
499
- switchSizePropsType,
499
+ SwitchSizePropsType,
500
500
  } from './components/Switch'
501
501
  import { Tab, tabSizeList } from './components/Tab'
502
- import type { TabProps, tabSizePropsType } from './components/Tab'
502
+ import type { TabProps, TabSizePropsType } from './components/Tab'
503
503
  import { Text } from './components/Text'
504
504
  import type { TextProps } from './components/Text'
505
505
  import {
@@ -514,8 +514,8 @@ import type {
514
514
  TextareaAppearanceKey,
515
515
  TextareaConfig,
516
516
  TextareaProps,
517
- textareaShapePropsType,
518
- textareaSizePropsType,
517
+ TextareaShapePropsType,
518
+ TextareaSizePropsType,
519
519
  } from './components/Textarea'
520
520
  import {
521
521
  Tile,
@@ -529,8 +529,8 @@ import type {
529
529
  TileAppearanceKey,
530
530
  TileConfig,
531
531
  TileProps,
532
- tileShapePropsType,
533
- tileSizePropsType,
532
+ TileShapePropsType,
533
+ TileSizePropsType,
534
534
  } from './components/Tile'
535
535
  import { Title } from './components/Title'
536
536
  import type { TitleProps } from './components/Title'
@@ -553,7 +553,7 @@ import type {
553
553
  WarningAppearanceKey,
554
554
  WarningConfig,
555
555
  WarningProps,
556
- warningSizePropsType,
556
+ WarningSizePropsType,
557
557
  } from './components/Warning'
558
558
  import { gapList } from './styles/gap'
559
559
  import type { GapProps } from './styles/gap'
@@ -767,66 +767,66 @@ export type {
767
767
  AvatarAppearanceKey,
768
768
  AvatarConfig,
769
769
  AvatarProps,
770
- avatarShapePropsType,
770
+ AvatarShapePropsType,
771
771
  AvatarsItem,
772
- avatarSizesPropsType,
773
- avatarStackDirectionPropsType,
772
+ AvatarSizesPropsType,
773
+ AvatarStackDirectionPropsType,
774
774
  AvatarStackProps,
775
775
  BadgeAppearance,
776
776
  BadgeAppearanceKey,
777
777
  BadgeConfig,
778
778
  BadgeProps,
779
- badgeShapePropsType,
780
- badgeSizePropsType,
781
- badgeTypePropsType,
779
+ BadgeShapePropsType,
780
+ BadgeSizePropsType,
781
+ BadgeTypePropsType,
782
782
  BreadcrumbsAppearance,
783
783
  BreadcrumbsAppearanceKey,
784
784
  BreadcrumbsConfig,
785
785
  BreadcrumbsItem,
786
786
  BreadcrumbsProps,
787
- breadcrumbsSizePropsType,
787
+ BreadcrumbsSizePropsType,
788
788
  ButtonAppearance,
789
789
  ButtonAppearanceKey,
790
790
  ButtonAppearanceStyle,
791
791
  ButtonConfig,
792
792
  ButtonProps,
793
- buttonSizePropsType,
794
- buttonTextSizePropsType,
795
- cellDirectionPropsType,
793
+ ButtonSizePropsType,
794
+ ButtonTextSizePropsType,
795
+ CellDirectionPropsType,
796
796
  CellProps,
797
- cellShapePropsType,
798
- cellSizePropsType,
799
- checkboxAlignPropsType,
797
+ CellShapePropsType,
798
+ CellSizePropsType,
799
+ CheckboxAlignPropsType,
800
800
  CheckboxAppearance,
801
801
  CheckboxAppearanceKey,
802
802
  CheckboxConfig,
803
803
  CheckboxProps,
804
- checkboxSizePropsType,
804
+ CheckboxSizePropsType,
805
805
  CheckmarkProps,
806
806
  ChipsAppearance,
807
807
  ChipsAppearanceKey,
808
808
  ChipsConfig,
809
809
  ChipsProps,
810
- chipsShapePropsType,
811
- chipsSizePropsType,
810
+ ChipsShapePropsType,
811
+ ChipsSizePropsType,
812
812
  ChoiceActive,
813
813
  ChoiceAppearance,
814
814
  ChoiceAppearanceKey,
815
815
  ChoiceConfig,
816
816
  ChoiceOptionsItem,
817
817
  ChoiceProps,
818
- choiceSizePropsType,
818
+ ChoiceSizePropsType,
819
819
  CodeAppearance,
820
820
  CodeAppearanceKey,
821
821
  CodeConfig,
822
822
  CodeProps,
823
- codeSizePropsType,
824
- codeVariantPropsType,
823
+ CodeSizePropsType,
824
+ CodeVariantPropsType,
825
825
  ColorInputAppearance,
826
826
  ColorInputAppearanceKey,
827
827
  ColorInputConfig,
828
828
  ColorInputProps,
829
- colorInputSizePropsType,
829
+ ColorInputSizePropsType,
830
830
  DatePickerAppearance,
831
831
  DatePickerAppearanceKey,
832
832
  DatePickerConfig,
@@ -835,12 +835,12 @@ export type {
835
835
  DividerAppearance,
836
836
  DividerAppearanceKey,
837
837
  DividerConfig,
838
- dividerDirectionPropsType,
838
+ DividerDirectionPropsType,
839
839
  DividerProps,
840
- dividerSizePropsType,
840
+ DividerSizePropsType,
841
841
  DotProps,
842
- dotShapePropsType,
843
- dotSizePropsType,
842
+ DotShapePropsType,
843
+ DotSizePropsType,
844
844
  DrawerAppearance,
845
845
  DrawerAppearanceKey,
846
846
  DrawerConfig,
@@ -852,16 +852,16 @@ export type {
852
852
  DropdownItemProps,
853
853
  DropdownListItem,
854
854
  DropdownProps,
855
- dropdownSizePropsType,
855
+ DropdownSizePropsType,
856
856
  GapProps,
857
- groupAlignItemsPropsType,
857
+ GroupAlignItemsPropsType,
858
858
  GroupAppearance,
859
859
  GroupAppearanceKey,
860
860
  GroupConfig,
861
- groupDirectionPropsType,
862
- groupJustifyContentPropsType,
861
+ GroupDirectionPropsType,
862
+ GroupJustifyContentPropsType,
863
863
  GroupProps,
864
- groupWrapPropsType,
864
+ GroupWrapPropsType,
865
865
  HeroTitleAppearance,
866
866
  HeroTitleAppearanceKey,
867
867
  HeroTitleConfig,
@@ -871,8 +871,8 @@ export type {
871
871
  IconAppearanceProps,
872
872
  IconConfig,
873
873
  IconProps,
874
- iconShapePropsType,
875
- iconSizePropsType,
874
+ IconShapePropsType,
875
+ IconSizePropsType,
876
876
  ImageProps,
877
877
  InputAppearance,
878
878
  InputAppearanceKey,
@@ -881,22 +881,22 @@ export type {
881
881
  InputNumberAppearanceKey,
882
882
  InputNumberConfig,
883
883
  InputNumberProps,
884
- inputNumberShapePropsType,
885
- inputNumberSizePropsType,
884
+ InputNumberShapePropsType,
885
+ InputNumberSizePropsType,
886
886
  InputPasswordAppearance,
887
887
  InputPasswordAppearanceKey,
888
888
  InputPasswordConfig,
889
889
  InputPasswordProps,
890
- inputPasswordShapePropsType,
891
- inputPasswordSizePropsType,
890
+ InputPasswordShapePropsType,
891
+ InputPasswordSizePropsType,
892
892
  InputProps,
893
- inputShapePropsType,
894
- inputSizePropsType,
893
+ InputShapePropsType,
894
+ InputSizePropsType,
895
895
  LabelAppearance,
896
896
  LabelAppearanceKey,
897
897
  LabelConfig,
898
898
  LabelProps,
899
- labelShapePropsType,
899
+ LabelShapePropsType,
900
900
  LinkAppearance,
901
901
  LinkAppearanceKey,
902
902
  LinkConfig,
@@ -904,26 +904,26 @@ export type {
904
904
  ListAppearance,
905
905
  ListAppearanceKey,
906
906
  ListConfig,
907
- listDirectionPropsType,
907
+ ListDirectionPropsType,
908
908
  ListItemProps,
909
909
  ListProps,
910
- listSizePropsType,
910
+ ListSizePropsType,
911
911
  ListStyle,
912
912
  LoaderAppearance,
913
913
  LoaderAppearanceKey,
914
914
  LoaderConfig,
915
915
  LoaderProps,
916
- loaderShapePropsType,
917
- loaderSizePropsType,
918
- logoAlignItemsPropsType,
916
+ LoaderShapePropsType,
917
+ LoaderSizePropsType,
918
+ LogoAlignItemsPropsType,
919
919
  LogoProps,
920
- logoSizePropsType,
920
+ LogoSizePropsType,
921
921
  MenuItemAppearance,
922
922
  MenuItemAppearanceKey,
923
923
  MenuItemConfig,
924
924
  MenuItemProps,
925
- menuItemShapePropsType,
926
- menuItemSizePropsType,
925
+ MenuItemShapePropsType,
926
+ MenuItemSizePropsType,
927
927
  ModalProps,
928
928
  OverlayAppearance,
929
929
  OverlayAppearanceKey,
@@ -933,7 +933,7 @@ export type {
933
933
  PaginationAppearanceKey,
934
934
  PaginationConfig,
935
935
  PaginationProps,
936
- paginationSizePropsType,
936
+ PaginationSizePropsType,
937
937
  PressableAppearance,
938
938
  PressableAppearanceKey,
939
939
  PressableConfig,
@@ -942,7 +942,7 @@ export type {
942
942
  RadioAppearanceKey,
943
943
  RadioConfig,
944
944
  RadioProps,
945
- radioSizePropsType,
945
+ RadioSizePropsType,
946
946
  RangeSliderProps,
947
947
  RangeSliderValue,
948
948
  ResponseProps,
@@ -956,36 +956,36 @@ export type {
956
956
  SegmentedAppearanceKey,
957
957
  SegmentedConfig,
958
958
  SegmentedProps,
959
- segmentedShapePropsType,
960
- segmentedSizePropsType,
959
+ SegmentedShapePropsType,
960
+ SegmentedSizePropsType,
961
961
  SelectAppearance,
962
962
  SelectAppearanceKey,
963
963
  SelectConfig,
964
964
  SelectMenu,
965
965
  SelectOptionItem,
966
966
  SelectProps,
967
- selectSizePropsType,
968
- switchAlignPropsType,
967
+ SelectSizePropsType,
968
+ SwitchAlignPropsType,
969
969
  SwitchAppearance,
970
970
  SwitchAppearanceKey,
971
971
  SwitchConfig,
972
972
  SwitchProps,
973
- switchSizePropsType,
973
+ SwitchSizePropsType,
974
974
  TabProps,
975
- tabSizePropsType,
975
+ TabSizePropsType,
976
976
  TextareaAppearance,
977
977
  TextareaAppearanceKey,
978
978
  TextareaConfig,
979
979
  TextareaProps,
980
- textareaShapePropsType,
981
- textareaSizePropsType,
980
+ TextareaShapePropsType,
981
+ TextareaSizePropsType,
982
982
  TextProps,
983
983
  TileAppearance,
984
984
  TileAppearanceKey,
985
985
  TileConfig,
986
986
  TileProps,
987
- tileShapePropsType,
988
- tileSizePropsType,
987
+ TileShapePropsType,
988
+ TileSizePropsType,
989
989
  TitleProps,
990
990
  TooltipAppearance,
991
991
  TooltipAppearanceKey,
@@ -999,5 +999,5 @@ export type {
999
999
  WarningAppearanceKey,
1000
1000
  WarningConfig,
1001
1001
  WarningProps,
1002
- warningSizePropsType,
1002
+ WarningSizePropsType,
1003
1003
  }