@lets-events/react 12.2.9 → 12.2.11

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 (90) hide show
  1. package/.eslintrc.json +2 -2
  2. package/.turbo/turbo-build.log +19 -21
  3. package/CHANGELOG.md +12 -0
  4. package/dist/index.css +171 -0
  5. package/dist/index.d.mts +375 -3
  6. package/dist/index.d.ts +375 -3
  7. package/dist/index.js +43 -22
  8. package/dist/index.mjs +42 -22
  9. package/package.json +1 -1
  10. package/src/components/Alert.tsx +303 -303
  11. package/src/components/Avatar.tsx +55 -55
  12. package/src/components/Badge.tsx +125 -125
  13. package/src/components/Box.tsx +3 -3
  14. package/src/components/Button/index.tsx +16 -16
  15. package/src/components/Button/styledComponents.ts +300 -300
  16. package/src/components/ButtonGroup.tsx +484 -484
  17. package/src/components/Calendar/index.tsx +148 -148
  18. package/src/components/Calendar/styledComponents.ts +250 -250
  19. package/src/components/Card.tsx +48 -48
  20. package/src/components/CheckboxGroup.tsx +176 -176
  21. package/src/components/Container.tsx +39 -39
  22. package/src/components/Divider.tsx +7 -0
  23. package/src/components/Drawer/index.tsx +148 -138
  24. package/src/components/Drawer/styledComponents.ts +52 -52
  25. package/src/components/Dropdown.tsx +302 -302
  26. package/src/components/Filter.tsx +164 -164
  27. package/src/components/Flex.tsx +118 -118
  28. package/src/components/FormFields/AddressFormFields/CityFormField.tsx +111 -111
  29. package/src/components/FormFields/AddressFormFields/CountryFormField.tsx +33 -33
  30. package/src/components/FormFields/AddressFormFields/PostalCodeFormField.tsx +39 -39
  31. package/src/components/FormFields/AddressFormFields/StateFormField.tsx +32 -32
  32. package/src/components/FormFields/AddressFormFields/index.tsx +141 -141
  33. package/src/components/FormFields/BirthDateFormField.tsx +84 -84
  34. package/src/components/FormFields/CNPJFormField.tsx +87 -87
  35. package/src/components/FormFields/CPFFormField.tsx +78 -78
  36. package/src/components/FormFields/CalendarFormField.tsx +95 -95
  37. package/src/components/FormFields/CheckboxGroupFormField.tsx +91 -91
  38. package/src/components/FormFields/EmailFormField.tsx +27 -27
  39. package/src/components/FormFields/Form.tsx +39 -39
  40. package/src/components/FormFields/IdentityDocumentNumberFormField.tsx +32 -32
  41. package/src/components/FormFields/MultiSelectFormField.tsx +64 -64
  42. package/src/components/FormFields/PhoneFormField.tsx +40 -40
  43. package/src/components/FormFields/RadioGroupFormField.tsx +84 -84
  44. package/src/components/FormFields/RichEditorFormField.tsx +103 -102
  45. package/src/components/FormFields/SelectFormField.tsx +93 -93
  46. package/src/components/FormFields/SwitchFormField.tsx +46 -46
  47. package/src/components/FormFields/TextAreaFormField.tsx +57 -57
  48. package/src/components/FormFields/TextFormField.tsx +112 -112
  49. package/src/components/FormFields/TimePickerFormField.tsx +88 -88
  50. package/src/components/FormFields/subComponents/ErrorFormMessage.tsx +36 -36
  51. package/src/components/FormFields/subComponents/FormLabel.tsx +29 -29
  52. package/src/components/FormFields/utils/validation.ts +23 -23
  53. package/src/components/Grid.tsx +137 -137
  54. package/src/components/Icon.tsx +47 -47
  55. package/src/components/MenuDropdown/index.tsx +38 -38
  56. package/src/components/MenuDropdown/styledComponents.ts +31 -31
  57. package/src/components/Modal.tsx +90 -90
  58. package/src/components/MultiSelect/index.tsx +243 -243
  59. package/src/components/MultiSelect/styledComponents.ts +160 -160
  60. package/src/components/RadioGroup.tsx +210 -210
  61. package/src/components/RichEditor/QuillComponent.tsx +457 -455
  62. package/src/components/RichEditor/RichEditor.tsx +49 -49
  63. package/src/components/RichEditor/index.ts +2 -2
  64. package/src/components/RichEditor/styledComponents.ts +1151 -1151
  65. package/src/components/Section.tsx +33 -33
  66. package/src/components/Step.tsx +164 -164
  67. package/src/components/Switch.tsx +108 -108
  68. package/src/components/Text.tsx +38 -38
  69. package/src/components/TextField.tsx +372 -372
  70. package/src/components/TextareaField.tsx +127 -127
  71. package/src/components/TimePicker.tsx +328 -328
  72. package/src/components/Toast/components/ToastItem.tsx +41 -41
  73. package/src/components/Toast/components/ToastProvider.tsx +63 -63
  74. package/src/components/Toast/hooks/useToast.ts +12 -12
  75. package/src/components/Toast/index.tsx +5 -5
  76. package/src/components/Toast/styles/index.ts +135 -135
  77. package/src/components/Toast/types/index.ts +46 -46
  78. package/src/components/Tooltip/index.tsx +66 -66
  79. package/src/components/Tooltip/styles.ts +77 -77
  80. package/src/hooks/useCountries.ts +41 -41
  81. package/src/hooks/useImageUpload.ts +139 -139
  82. package/src/hooks/useOnClickOutside.tsx +42 -42
  83. package/src/index.tsx +69 -68
  84. package/src/styles/index.ts +38 -38
  85. package/src/types/typographyValues.ts +178 -178
  86. package/src/utils/getNestedValue.ts +3 -3
  87. package/src/utils/states.ts +29 -29
  88. package/src/utils/uploadService.ts +180 -180
  89. package/tsconfig.json +3 -3
  90. package/tsup.config.ts +38 -38
package/.eslintrc.json CHANGED
@@ -1,3 +1,3 @@
1
- {
2
- "extends": "@lets-events/eslint-config"
1
+ {
2
+ "extends": "@lets-events/eslint-config"
3
3
  }
@@ -1,21 +1,19 @@
1
-
2
-
3
- > @lets-events/react@12.2.9 build
4
- > tsup src/index.tsx --format esm,cjs --dts --external react
5
-
6
- CLI Building entry: src/index.tsx
7
- CLI Using tsconfig: tsconfig.json
8
- CLI tsup v8.5.0
9
- CLI Using tsup config: /home/bia3003/Lets/design-system/packages/react/tsup.config.ts
10
- CLI Target: es6
11
- ESM Build start
12
- CJS Build start
13
- CJS dist/index.js 393.79 KB
14
- CJS ⚡️ Build success in 326ms
15
- ESM dist/index.mjs 379.85 KB
16
- ESM ⚡️ Build success in 327ms
17
- DTS Build start
18
- DTS ⚡️ Build success in 6004ms
19
- DTS dist/index.d.mts 389.25 KB
20
- DTS dist/index.d.ts 389.25 KB
21
- ⠙
1
+
2
+ > @lets-events/react@12.2.11 build
3
+ > tsup src/index.tsx --format esm,cjs --dts --external react
4
+
5
+ CLI Building entry: src/index.tsx
6
+ CLI Using tsconfig: tsconfig.json
7
+ CLI tsup v8.5.0
8
+ CLI Using tsup config: C:\Users\cazuz\OneDrive\Desktop\Web\design-system\packages\react\tsup.config.ts
9
+ CLI Target: es6
10
+ ESM Build start
11
+ CJS Build start
12
+ ESM dist\index.mjs 380.26 KB
13
+ ESM ⚡️ Build success in 222ms
14
+ CJS dist\index.js 394.23 KB
15
+ CJS ⚡️ Build success in 223ms
16
+ DTS Build start
17
+ DTS ⚡️ Build success in 4608ms
18
+ DTS dist\index.d.mts 398.55 KB
19
+ DTS dist\index.d.ts 398.55 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 12.2.11
4
+
5
+ ### Patch Changes
6
+
7
+ - divider component
8
+
9
+ ## 12.2.10
10
+
11
+ ### Patch Changes
12
+
13
+ - Simple Version RichEditor
14
+
3
15
  ## 12.2.9
4
16
 
5
17
  ### Patch Changes
package/dist/index.css ADDED
@@ -0,0 +1,171 @@
1
+ /* ../../node_modules/react-international-phone/dist/index.css */
2
+ .react-international-phone-country-selector {
3
+ position: relative;
4
+ }
5
+ .react-international-phone-country-selector-button {
6
+ display: flex;
7
+ height: var(--react-international-phone-height, 36px);
8
+ box-sizing: border-box;
9
+ align-items: center;
10
+ justify-content: center;
11
+ padding: 0;
12
+ border: 1px solid var(--react-international-phone-country-selector-border-color, var(--react-international-phone-border-color, gainsboro));
13
+ margin: 0;
14
+ appearance: button;
15
+ -webkit-appearance: button;
16
+ background-color: var(--react-international-phone-country-selector-background-color, var(--react-international-phone-background-color, white));
17
+ cursor: pointer;
18
+ text-transform: none;
19
+ user-select: none;
20
+ }
21
+ .react-international-phone-country-selector-button:hover {
22
+ background-color: var(--react-international-phone-country-selector-background-color-hover, whitesmoke);
23
+ }
24
+ .react-international-phone-country-selector-button--hide-dropdown {
25
+ cursor: auto;
26
+ }
27
+ .react-international-phone-country-selector-button--hide-dropdown:hover {
28
+ background-color: transparent;
29
+ }
30
+ .react-international-phone-country-selector-button__button-content {
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ }
35
+ .react-international-phone-country-selector-button__flag-emoji {
36
+ margin: 0 4px;
37
+ }
38
+ .react-international-phone-country-selector-button__flag-emoji--disabled {
39
+ opacity: .75;
40
+ }
41
+ .react-international-phone-country-selector-button__dropdown-arrow {
42
+ border-top: var(--react-international-phone-country-selector-arrow-size, 4px) solid var(--react-international-phone-country-selector-arrow-color, #777);
43
+ border-right: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
44
+ border-left: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
45
+ margin-right: 4px;
46
+ transition: all .1s ease-out;
47
+ }
48
+ .react-international-phone-country-selector-button__dropdown-arrow--active {
49
+ transform: rotateX(180deg);
50
+ }
51
+ .react-international-phone-country-selector-button__dropdown-arrow--disabled {
52
+ border-top-color: var(--react-international-phone-disabled-country-selector-arrow-color, #999);
53
+ }
54
+ .react-international-phone-country-selector-button--disabled {
55
+ background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
56
+ cursor: auto;
57
+ }
58
+ .react-international-phone-country-selector-button--disabled:hover {
59
+ background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
60
+ }
61
+ .react-international-phone-flag-emoji {
62
+ width: var(--react-international-phone-flag-width, 24px);
63
+ height: var(--react-international-phone-flag-height, 24px);
64
+ box-sizing: border-box;
65
+ }
66
+ .react-international-phone-country-selector-dropdown {
67
+ position: absolute;
68
+ z-index: 1;
69
+ top: var(--react-international-phone-dropdown-top, 44px);
70
+ left: var(--react-international-phone-dropdown-left, 0);
71
+ display: flex;
72
+ width: 300px;
73
+ max-height: 200px;
74
+ flex-direction: column;
75
+ padding: 4px 0;
76
+ margin: 0;
77
+ background-color: var(--react-international-phone-dropdown-item-background-color, var(--react-international-phone-background-color, white));
78
+ box-shadow: var(--react-international-phone-dropdown-shadow, 2px 2px 16px rgba(0, 0, 0, .25));
79
+ color: var(--react-international-phone-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
80
+ list-style: none;
81
+ overflow-y: scroll;
82
+ }
83
+ .react-international-phone-country-selector-dropdown__preferred-list-divider {
84
+ height: 1px;
85
+ border: none;
86
+ margin: var(--react-international-phone-dropdown-preferred-list-divider-margin, 0);
87
+ background: var(--react-international-phone-dropdown-preferred-list-divider-color, var(--react-international-phone-border-color, gainsboro));
88
+ }
89
+ .react-international-phone-country-selector-dropdown__list-item {
90
+ display: flex;
91
+ min-height: var(--react-international-phone-dropdown-item-height, 28px);
92
+ box-sizing: border-box;
93
+ align-items: center;
94
+ padding: 2px 8px;
95
+ }
96
+ .react-international-phone-country-selector-dropdown__list-item-flag-emoji {
97
+ margin-right: 8px;
98
+ }
99
+ .react-international-phone-country-selector-dropdown__list-item-country-name {
100
+ overflow: hidden;
101
+ margin-right: 8px;
102
+ font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
103
+ text-overflow: ellipsis;
104
+ white-space: nowrap;
105
+ }
106
+ .react-international-phone-country-selector-dropdown__list-item-dial-code {
107
+ color: var(--react-international-phone-dropdown-item-dial-code-color, gray);
108
+ font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
109
+ }
110
+ .react-international-phone-country-selector-dropdown__list-item:hover {
111
+ background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke));
112
+ cursor: pointer;
113
+ }
114
+ .react-international-phone-country-selector-dropdown__list-item--selected,
115
+ .react-international-phone-country-selector-dropdown__list-item--focused {
116
+ background-color: var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke);
117
+ color: var(--react-international-phone-selected-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
118
+ }
119
+ .react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code,
120
+ .react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code {
121
+ color: var(--react-international-phone-selected-dropdown-item-dial-code-color, var(--react-international-phone-dropdown-item-dial-code-color, gray));
122
+ }
123
+ .react-international-phone-country-selector-dropdown__list-item--focused {
124
+ background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke));
125
+ }
126
+ .react-international-phone-dial-code-preview {
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: center;
130
+ padding: 0 8px;
131
+ border: 1px solid var(--react-international-phone-dial-code-preview-border-color, var(--react-international-phone-border-color, gainsboro));
132
+ margin-right: -1px;
133
+ background-color: var(--react-international-phone-dial-code-preview-background-color, var(--react-international-phone-background-color, white));
134
+ color: var(--react-international-phone-dial-code-preview-text-color, var(--react-international-phone-text-color, #222));
135
+ font-size: var(--react-international-phone-dial-code-preview-font-size, var(--react-international-phone-font-size, 13px));
136
+ }
137
+ .react-international-phone-dial-code-preview--disabled {
138
+ background-color: var(--react-international-phone-dial-code-preview-disabled-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
139
+ color: var(--react-international-phone-dial-code-preview-disabled-text-color, var(--react-international-phone-disabled-text-color, #666));
140
+ }
141
+ .react-international-phone-input-container {
142
+ display: flex;
143
+ }
144
+ .react-international-phone-input-container .react-international-phone-country-selector-button {
145
+ border-radius: var(--react-international-phone-border-radius, 4px);
146
+ margin-right: -1px;
147
+ border-bottom-right-radius: 0;
148
+ border-top-right-radius: 0;
149
+ }
150
+ .react-international-phone-input-container .react-international-phone-input {
151
+ overflow: visible;
152
+ height: var(--react-international-phone-height, 36px);
153
+ box-sizing: border-box;
154
+ padding: 0 8px;
155
+ border: 1px solid var(--react-international-phone-border-color, gainsboro);
156
+ border-radius: var(--react-international-phone-border-radius, 4px);
157
+ margin: 0;
158
+ background-color: var(--react-international-phone-background-color, white);
159
+ border-bottom-left-radius: 0;
160
+ border-top-left-radius: 0;
161
+ color: var(--react-international-phone-text-color, #222);
162
+ font-family: inherit;
163
+ font-size: var(--react-international-phone-font-size, 13px);
164
+ }
165
+ .react-international-phone-input-container .react-international-phone-input:focus {
166
+ outline: none;
167
+ }
168
+ .react-international-phone-input-container .react-international-phone-input--disabled {
169
+ background-color: var(--react-international-phone-disabled-background-color, whitesmoke);
170
+ color: var(--react-international-phone-disabled-text-color, #666);
171
+ }
package/dist/index.d.mts CHANGED
@@ -5057,8 +5057,9 @@ type DrawerProps = ComponentProps<typeof DrawerOverlayStyled> & {
5057
5057
  children?: ReactNode;
5058
5058
  goBackIcon?: ReactNode;
5059
5059
  goBackAction?: () => void;
5060
+ zIndex?: number;
5060
5061
  };
5061
- declare function Drawer({ isOpen, onClose, width, backgroundColor, title, children, goBackIcon, goBackAction }: DrawerProps): react_jsx_runtime.JSX.Element | null;
5062
+ declare function Drawer({ isOpen, onClose, width, backgroundColor, title, children, goBackIcon, goBackAction, zIndex, }: DrawerProps): react_jsx_runtime.JSX.Element | null;
5062
5063
 
5063
5064
  declare const TimePickerStyled: _stitches_react_types_styled_component.StyledComponent<"div", {
5064
5065
  expand?: boolean | "true" | undefined;
@@ -13377,6 +13378,377 @@ type MultiSelectProps = ComponentProps<typeof StyledTrigger> & {
13377
13378
  };
13378
13379
  declare const MultiSelect: React__default.ForwardRefExoticComponent<Omit<MultiSelectProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
13379
13380
 
13381
+ declare const Divider: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
13382
+ colors: {
13383
+ brand50: string;
13384
+ brand100: string;
13385
+ brand200: string;
13386
+ brand300: string;
13387
+ brand400: string;
13388
+ brand500: string;
13389
+ brand600: string;
13390
+ brand700: string;
13391
+ brand800: string;
13392
+ brand900: string;
13393
+ brand950: string;
13394
+ blue50: string;
13395
+ blue100: string;
13396
+ blue200: string;
13397
+ blue300: string;
13398
+ blue400: string;
13399
+ blue500: string;
13400
+ blue600: string;
13401
+ blue700: string;
13402
+ blue800: string;
13403
+ blue900: string;
13404
+ blue950: string;
13405
+ red50: string;
13406
+ red100: string;
13407
+ red200: string;
13408
+ red300: string;
13409
+ red400: string;
13410
+ red500: string;
13411
+ red600: string;
13412
+ red700: string;
13413
+ red800: string;
13414
+ red900: string;
13415
+ red950: string;
13416
+ purple50: string;
13417
+ purple100: string;
13418
+ purple200: string;
13419
+ purple300: string;
13420
+ purple400: string;
13421
+ purple500: string;
13422
+ purple600: string;
13423
+ purple700: string;
13424
+ purple800: string;
13425
+ purple900: string;
13426
+ purple950: string;
13427
+ yellow50: string;
13428
+ yellow100: string;
13429
+ yellow200: string;
13430
+ yellow300: string;
13431
+ yellow400: string;
13432
+ yellow500: string;
13433
+ yellow600: string;
13434
+ yellow700: string;
13435
+ yellow800: string;
13436
+ yellow900: string;
13437
+ yellow950: string;
13438
+ dark50: string;
13439
+ dark100: string;
13440
+ dark200: string;
13441
+ dark300: string;
13442
+ dark400: string;
13443
+ dark500: string;
13444
+ dark600: string;
13445
+ dark700: string;
13446
+ dark800: string;
13447
+ dark900: string;
13448
+ dark950: string;
13449
+ neutral50: string;
13450
+ neutral100: string;
13451
+ neutral200: string;
13452
+ neutral300: string;
13453
+ neutral400: string;
13454
+ neutral500: string;
13455
+ neutral600: string;
13456
+ neutral700: string;
13457
+ neutral800: string;
13458
+ neutral900: string;
13459
+ neutral950: string;
13460
+ green50: string;
13461
+ green100: string;
13462
+ green200: string;
13463
+ green300: string;
13464
+ green400: string;
13465
+ green500: string;
13466
+ green600: string;
13467
+ green700: string;
13468
+ green800: string;
13469
+ green900: string;
13470
+ green950: string;
13471
+ grey50: string;
13472
+ grey100: string;
13473
+ grey200: string;
13474
+ grey300: string;
13475
+ grey400: string;
13476
+ grey500: string;
13477
+ grey600: string;
13478
+ grey700: string;
13479
+ grey800: string;
13480
+ grey900: string;
13481
+ grey950: string;
13482
+ error50: string;
13483
+ error100: string;
13484
+ error200: string;
13485
+ error300: string;
13486
+ error400: string;
13487
+ error500: string;
13488
+ error600: string;
13489
+ error700: string;
13490
+ error800: string;
13491
+ error900: string;
13492
+ error950: string;
13493
+ success50: string;
13494
+ success100: string;
13495
+ success200: string;
13496
+ success300: string;
13497
+ success400: string;
13498
+ success500: string;
13499
+ success600: string;
13500
+ success700: string;
13501
+ success800: string;
13502
+ success900: string;
13503
+ success950: string;
13504
+ warning50: string;
13505
+ warning100: string;
13506
+ warning200: string;
13507
+ warning300: string;
13508
+ warning400: string;
13509
+ warning500: string;
13510
+ warning600: string;
13511
+ warning700: string;
13512
+ warning800: string;
13513
+ warning900: string;
13514
+ warning950: string;
13515
+ info50: string;
13516
+ info100: string;
13517
+ info200: string;
13518
+ info300: string;
13519
+ info400: string;
13520
+ info500: string;
13521
+ info600: string;
13522
+ info700: string;
13523
+ info800: string;
13524
+ info900: string;
13525
+ info950: string;
13526
+ };
13527
+ fontSizes: {
13528
+ 2: string;
13529
+ 4: string;
13530
+ 6: string;
13531
+ 8: string;
13532
+ 10: string;
13533
+ 12: string;
13534
+ 13: string;
13535
+ 14: string;
13536
+ 16: string;
13537
+ 18: string;
13538
+ 20: string;
13539
+ 22: string;
13540
+ 24: string;
13541
+ 32: string;
13542
+ 36: string;
13543
+ 40: string;
13544
+ 48: string;
13545
+ 56: string;
13546
+ 64: string;
13547
+ 72: string;
13548
+ 80: string;
13549
+ xs: string;
13550
+ sm: string;
13551
+ md: string;
13552
+ lg: string;
13553
+ '2xl': string;
13554
+ '3xl': string;
13555
+ '4xl': string;
13556
+ full: string;
13557
+ };
13558
+ fonts: {
13559
+ default: string;
13560
+ };
13561
+ fontWeights: {
13562
+ regular: string;
13563
+ medium: string;
13564
+ semibold: string;
13565
+ bold: string;
13566
+ };
13567
+ lineHeights: {
13568
+ smaller: string;
13569
+ shorter: string;
13570
+ short: string;
13571
+ base: string;
13572
+ tall: string;
13573
+ };
13574
+ radii: {
13575
+ '3xs': string;
13576
+ '2xs': string;
13577
+ xs: string;
13578
+ sm: string;
13579
+ md: string;
13580
+ lg: string;
13581
+ xl: string;
13582
+ '2xl': string;
13583
+ '3xl': string;
13584
+ '4xl': string;
13585
+ '5xl': string;
13586
+ '6xl': string;
13587
+ '7xl': string;
13588
+ '8xl': string;
13589
+ '9xl': string;
13590
+ '10xl': string;
13591
+ '11xl': string;
13592
+ '12xl': string;
13593
+ '13xl': string;
13594
+ '14xl': string;
13595
+ full: string;
13596
+ };
13597
+ space: {
13598
+ 2: string;
13599
+ 4: string;
13600
+ 6: string;
13601
+ 8: string;
13602
+ 10: string;
13603
+ 12: string;
13604
+ 13: string;
13605
+ 14: string;
13606
+ 16: string;
13607
+ 18: string;
13608
+ 20: string;
13609
+ 22: string;
13610
+ 24: string;
13611
+ 32: string;
13612
+ 36: string;
13613
+ 40: string;
13614
+ 48: string;
13615
+ 56: string;
13616
+ 64: string;
13617
+ 72: string;
13618
+ 80: string;
13619
+ full: string;
13620
+ };
13621
+ }, {
13622
+ height: "space";
13623
+ width: "space";
13624
+ gap: "space";
13625
+ gridGap: "space";
13626
+ columnGap: "space";
13627
+ gridColumnGap: "space";
13628
+ rowGap: "space";
13629
+ gridRowGap: "space";
13630
+ inset: "space";
13631
+ insetBlock: "space";
13632
+ insetBlockEnd: "space";
13633
+ insetBlockStart: "space";
13634
+ insetInline: "space";
13635
+ insetInlineEnd: "space";
13636
+ insetInlineStart: "space";
13637
+ margin: "space";
13638
+ marginTop: "space";
13639
+ marginRight: "space";
13640
+ marginBottom: "space";
13641
+ marginLeft: "space";
13642
+ marginBlock: "space";
13643
+ marginBlockEnd: "space";
13644
+ marginBlockStart: "space";
13645
+ marginInline: "space";
13646
+ marginInlineEnd: "space";
13647
+ marginInlineStart: "space";
13648
+ padding: "space";
13649
+ paddingTop: "space";
13650
+ paddingRight: "space";
13651
+ paddingBottom: "space";
13652
+ paddingLeft: "space";
13653
+ paddingBlock: "space";
13654
+ paddingBlockEnd: "space";
13655
+ paddingBlockStart: "space";
13656
+ paddingInline: "space";
13657
+ paddingInlineEnd: "space";
13658
+ paddingInlineStart: "space";
13659
+ scrollMargin: "space";
13660
+ scrollMarginTop: "space";
13661
+ scrollMarginRight: "space";
13662
+ scrollMarginBottom: "space";
13663
+ scrollMarginLeft: "space";
13664
+ scrollMarginBlock: "space";
13665
+ scrollMarginBlockEnd: "space";
13666
+ scrollMarginBlockStart: "space";
13667
+ scrollMarginInline: "space";
13668
+ scrollMarginInlineEnd: "space";
13669
+ scrollMarginInlineStart: "space";
13670
+ scrollPadding: "space";
13671
+ scrollPaddingTop: "space";
13672
+ scrollPaddingRight: "space";
13673
+ scrollPaddingBottom: "space";
13674
+ scrollPaddingLeft: "space";
13675
+ scrollPaddingBlock: "space";
13676
+ scrollPaddingBlockEnd: "space";
13677
+ scrollPaddingBlockStart: "space";
13678
+ scrollPaddingInline: "space";
13679
+ scrollPaddingInlineEnd: "space";
13680
+ scrollPaddingInlineStart: "space";
13681
+ top: "space";
13682
+ right: "space";
13683
+ bottom: "space";
13684
+ left: "space";
13685
+ fontSize: "fontSizes";
13686
+ background: "colors";
13687
+ backgroundColor: "colors";
13688
+ backgroundImage: "colors";
13689
+ borderImage: "colors";
13690
+ border: "colors";
13691
+ borderBlock: "colors";
13692
+ borderBlockEnd: "colors";
13693
+ borderBlockStart: "colors";
13694
+ borderBottom: "colors";
13695
+ borderBottomColor: "colors";
13696
+ borderColor: "colors";
13697
+ borderInline: "colors";
13698
+ borderInlineEnd: "colors";
13699
+ borderInlineStart: "colors";
13700
+ borderLeft: "colors";
13701
+ borderLeftColor: "colors";
13702
+ borderRight: "colors";
13703
+ borderRightColor: "colors";
13704
+ borderTop: "colors";
13705
+ borderTopColor: "colors";
13706
+ caretColor: "colors";
13707
+ color: "colors";
13708
+ columnRuleColor: "colors";
13709
+ outline: "colors";
13710
+ outlineColor: "colors";
13711
+ fill: "colors";
13712
+ stroke: "colors";
13713
+ textDecorationColor: "colors";
13714
+ fontFamily: "fonts";
13715
+ fontWeight: "fontWeights";
13716
+ lineHeight: "lineHeights";
13717
+ letterSpacing: "letterSpacings";
13718
+ blockSize: "sizes";
13719
+ minBlockSize: "sizes";
13720
+ maxBlockSize: "sizes";
13721
+ inlineSize: "sizes";
13722
+ minInlineSize: "sizes";
13723
+ maxInlineSize: "sizes";
13724
+ minWidth: "sizes";
13725
+ maxWidth: "sizes";
13726
+ minHeight: "sizes";
13727
+ maxHeight: "sizes";
13728
+ flexBasis: "sizes";
13729
+ gridTemplateColumns: "sizes";
13730
+ gridTemplateRows: "sizes";
13731
+ borderWidth: "borderWidths";
13732
+ borderTopWidth: "borderWidths";
13733
+ borderLeftWidth: "borderWidths";
13734
+ borderRightWidth: "borderWidths";
13735
+ borderBottomWidth: "borderWidths";
13736
+ borderStyle: "borderStyles";
13737
+ borderTopStyle: "borderStyles";
13738
+ borderLeftStyle: "borderStyles";
13739
+ borderRightStyle: "borderStyles";
13740
+ borderBottomStyle: "borderStyles";
13741
+ borderRadius: "radii";
13742
+ borderTopLeftRadius: "radii";
13743
+ borderTopRightRadius: "radii";
13744
+ borderBottomRightRadius: "radii";
13745
+ borderBottomLeftRadius: "radii";
13746
+ boxShadow: "shadows";
13747
+ textShadow: "shadows";
13748
+ transition: "transitions";
13749
+ zIndex: "zIndices";
13750
+ }, {}>>;
13751
+
13380
13752
  declare const Box: React$1.ForwardRefExoticComponent<_radix_ui_themes.BoxProps & React$1.RefAttributes<HTMLDivElement>>;
13381
13753
 
13382
13754
  declare const GridStyled: _stitches_react_types_styled_component.StyledComponent<React$1.ForwardRefExoticComponent<_radix_ui_themes.GridProps & React$1.RefAttributes<HTMLDivElement>>, {
@@ -14747,7 +15119,7 @@ type RichEditorFormFieldProps = Omit<RichEditorProps, "value" | "onChange"> & {
14747
15119
  maxLength?: number;
14748
15120
  validationErrorMessage?: string;
14749
15121
  simpleVersion?: boolean;
14750
- uploadConfig: RichEditorProps["uploadConfig"];
15122
+ uploadConfig?: RichEditorProps["uploadConfig"];
14751
15123
  disableVideo?: boolean;
14752
15124
  };
14753
15125
  declare const RichEditorFormField: ({ name, label, required, validate, validationErrorMessage, maxLength, simpleVersion, disableVideo, ...props }: RichEditorFormFieldProps) => react_jsx_runtime.JSX.Element;
@@ -14828,4 +15200,4 @@ declare const useImageUpload: (options: UseImageUploadOptions) => {
14828
15200
  reset: () => void;
14829
15201
  };
14830
15202
 
14831
- export { AddressFormFields, Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, BirthDateFormField, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, CNPJFormField, CPFFormField, Calendar, CalendarFormField, type CalendarFormFieldProps, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, CheckboxGroupFormField, type CheckboxGroupFormFieldProps, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, CountryFormField, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, EmailFormField, type EmailFormFieldProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, IdentityDocumentNumberFormField, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, MultiSelect, MultiSelectFormField, type MultiSelectFormFieldProps, type MultiSelectProps, PhoneFormField, type PhoneFormFieldProps, RadioGroup, RadioGroupFormField, type RadioGroupFormFieldProps, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, RichEditor, RichEditorFormField, type RichEditorFormFieldProps, type RichEditorProps, Section, type SectionProps, SectionStyled, SelectFormField, type SelectFormFieldProps, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, SwitchFormField, type SwitchFormFieldProps, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, TimePickerFormField, type TimePickerFormFieldProps, TimePickerIconButton, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, type UploadConfig, UploadService, isValidCNPJ, maskFormat, maskUnformat, useImageUpload, useToast };
15203
+ export { AddressFormFields, Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, BirthDateFormField, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, CNPJFormField, CPFFormField, Calendar, CalendarFormField, type CalendarFormFieldProps, type CalendarProps, Card, type CardProps, CardStyled, CheckboxGroup, CheckboxGroupFormField, type CheckboxGroupFormFieldProps, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, CountryFormField, Divider, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, EmailFormField, type EmailFormFieldProps, ErrorFormMessage, type ErrorFormMessageProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Form, FormLabel, type FormLabelProps, type FormProps, Grid, type GridProps, GridStyled, Icon, IdentityDocumentNumberFormField, InputStyled, MenuDropdown, type MenuDropdownProps, Modal, type ModalProps, MultiSelect, MultiSelectFormField, type MultiSelectFormFieldProps, type MultiSelectProps, PhoneFormField, type PhoneFormFieldProps, RadioGroup, RadioGroupFormField, type RadioGroupFormFieldProps, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, RichEditor, RichEditorFormField, type RichEditorFormFieldProps, type RichEditorProps, Section, type SectionProps, SectionStyled, SelectFormField, type SelectFormFieldProps, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, SwitchFormField, type SwitchFormFieldProps, type SwitchProps, SwitchStyled, Text, TextAreaFormField, type TextAreaFormFieldProps, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, TextFormField, type TextFormFieldProps, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerButtonStyled, TimePickerDropdownStyled, TimePickerFooterStyled, TimePickerFormField, type TimePickerFormFieldProps, TimePickerIconButton, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, type Toast, type ToastComponentProps, type ToastConfig, type ToastContextType, ToastItem, type ToastOptions, ToastProvider, type ToastProviderProps, type ToastType, type ToasterShowOptions, Tooltip, TooltipContent, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, type UploadConfig, UploadService, isValidCNPJ, maskFormat, maskUnformat, useImageUpload, useToast };