@lets-events/react 12.5.0 → 12.5.1

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 (91) hide show
  1. package/.eslintrc.json +2 -2
  2. package/.turbo/turbo-build.log +24 -0
  3. package/CHANGELOG.md +584 -578
  4. package/dist/index.d.mts +15402 -0
  5. package/dist/index.d.ts +15402 -0
  6. package/dist/index.js +13384 -0
  7. package/dist/index.mjs +13278 -0
  8. package/package.json +49 -49
  9. package/src/components/Alert.tsx +303 -303
  10. package/src/components/Avatar.tsx +55 -55
  11. package/src/components/Badge.tsx +125 -125
  12. package/src/components/Box.tsx +3 -3
  13. package/src/components/Button/index.tsx +45 -45
  14. package/src/components/Button/styledComponents.ts +313 -313
  15. package/src/components/ButtonGroup.tsx +484 -484
  16. package/src/components/Calendar/index.tsx +148 -148
  17. package/src/components/Calendar/styledComponents.ts +259 -259
  18. package/src/components/Card.tsx +67 -67
  19. package/src/components/CheckboxGroup.tsx +176 -176
  20. package/src/components/Container.tsx +39 -39
  21. package/src/components/Divider.tsx +7 -7
  22. package/src/components/DoubleCalendar/index.tsx +170 -170
  23. package/src/components/Drawer/index.tsx +100 -100
  24. package/src/components/Drawer/styledComponents.ts +103 -103
  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/DoubleCalendarFormField.tsx +93 -93
  39. package/src/components/FormFields/EmailFormField.tsx +27 -27
  40. package/src/components/FormFields/Form.tsx +39 -39
  41. package/src/components/FormFields/IdentityDocumentNumberFormField.tsx +32 -32
  42. package/src/components/FormFields/MultiSelectFormField.tsx +64 -64
  43. package/src/components/FormFields/PhoneFormField.tsx +40 -40
  44. package/src/components/FormFields/RadioGroupFormField.tsx +84 -84
  45. package/src/components/FormFields/RichEditorFormField.tsx +103 -103
  46. package/src/components/FormFields/SelectFormField.tsx +93 -93
  47. package/src/components/FormFields/SwitchFormField.tsx +46 -46
  48. package/src/components/FormFields/TextAreaFormField.tsx +61 -59
  49. package/src/components/FormFields/TextFormField.tsx +112 -112
  50. package/src/components/FormFields/TimePickerFormField.tsx +88 -88
  51. package/src/components/FormFields/subComponents/ErrorFormMessage.tsx +36 -36
  52. package/src/components/FormFields/subComponents/FormLabel.tsx +29 -29
  53. package/src/components/FormFields/utils/validation.ts +23 -23
  54. package/src/components/Grid.tsx +137 -137
  55. package/src/components/Icon.tsx +47 -47
  56. package/src/components/MenuDropdown/index.tsx +38 -38
  57. package/src/components/MenuDropdown/styledComponents.ts +31 -31
  58. package/src/components/Modal.tsx +110 -110
  59. package/src/components/MultiSelect/index.tsx +243 -243
  60. package/src/components/MultiSelect/styledComponents.ts +160 -160
  61. package/src/components/RadioGroup.tsx +210 -210
  62. package/src/components/RichEditor/QuillComponent.tsx +457 -457
  63. package/src/components/RichEditor/RichEditor.tsx +49 -49
  64. package/src/components/RichEditor/index.ts +2 -2
  65. package/src/components/RichEditor/styledComponents.ts +1151 -1151
  66. package/src/components/Section.tsx +33 -33
  67. package/src/components/Step.tsx +164 -164
  68. package/src/components/Switch.tsx +108 -108
  69. package/src/components/Text.tsx +38 -38
  70. package/src/components/TextField.tsx +372 -372
  71. package/src/components/TextareaField.tsx +116 -138
  72. package/src/components/TimePicker.tsx +328 -328
  73. package/src/components/Toast/components/ToastItem.tsx +41 -41
  74. package/src/components/Toast/components/ToastProvider.tsx +63 -63
  75. package/src/components/Toast/hooks/useToast.ts +12 -12
  76. package/src/components/Toast/index.tsx +5 -5
  77. package/src/components/Toast/styles/index.ts +135 -135
  78. package/src/components/Toast/types/index.ts +46 -46
  79. package/src/components/Tooltip/index.tsx +66 -66
  80. package/src/components/Tooltip/styles.ts +77 -77
  81. package/src/hooks/useCountries.ts +41 -41
  82. package/src/hooks/useImageUpload.ts +139 -139
  83. package/src/hooks/useOnClickOutside.tsx +42 -42
  84. package/src/index.tsx +71 -71
  85. package/src/styles/index.ts +41 -41
  86. package/src/types/typographyValues.ts +178 -178
  87. package/src/utils/getNestedValue.ts +3 -3
  88. package/src/utils/states.ts +29 -29
  89. package/src/utils/uploadService.ts +180 -180
  90. package/tsconfig.json +3 -3
  91. package/tsup.config.ts +38 -38
package/CHANGELOG.md CHANGED
@@ -1,578 +1,584 @@
1
- # @lets-events/react
2
-
3
- ## 12.5.0
4
-
5
- ### Minor Changes
6
-
7
- - Drawer and DoubleCalendar Props
8
-
9
- ## 12.4.1
10
-
11
- ### Patch Changes
12
-
13
- - test
14
-
15
- ## 12.4.0
16
-
17
- ### Minor Changes
18
-
19
- - DoubleCalendar
20
-
21
- ## 12.3.10
22
-
23
- ### Patch Changes
24
-
25
- - Drawer mobile width
26
-
27
- ## 12.3.9
28
-
29
- ### Patch Changes
30
-
31
- - fix: card
32
-
33
- ## 12.3.8
34
-
35
- ### Patch Changes
36
-
37
- - fix: drawer scroll
38
-
39
- ## 12.3.7
40
-
41
- ### Patch Changes
42
-
43
- - fix drawer scroll
44
-
45
- ## 12.3.6
46
-
47
- ### Patch Changes
48
-
49
- - fix
50
-
51
- ## 12.3.5
52
-
53
- ### Patch Changes
54
-
55
- - fix drawer
56
-
57
- ## 12.3.4
58
-
59
- ### Patch Changes
60
-
61
- - fix: drawer animation
62
-
63
- ## 12.3.3
64
-
65
- ### Patch Changes
66
-
67
- - fix: drawer click outside
68
-
69
- ## 12.3.2
70
-
71
- ### Patch Changes
72
-
73
- - fix button loading state
74
-
75
- ## 12.3.1
76
-
77
- ### Patch Changes
78
-
79
- - fix button loading state
80
-
81
- ## 12.3.0
82
-
83
- ### Minor Changes
84
-
85
- - button loadding state
86
-
87
- ## 12.2.14
88
-
89
- ### Patch Changes
90
-
91
- - add warning color to card
92
-
93
- ## 12.2.13
94
-
95
- ### Patch Changes
96
-
97
- - new modal props
98
-
99
- ## 12.2.12
100
-
101
- ### Patch Changes
102
-
103
- - add extra modal props
104
-
105
- ## 12.2.11
106
-
107
- ### Patch Changes
108
-
109
- - divider component
110
-
111
- ## 12.2.10
112
-
113
- ### Patch Changes
114
-
115
- - Simple Version RichEditor
116
-
117
- ## 12.2.9
118
-
119
- ### Patch Changes
120
-
121
- - RichEditor stylization
122
-
123
- ## 12.2.8
124
-
125
- ### Patch Changes
126
-
127
- - Calendar maxYearsFromNow and multiSelect close
128
-
129
- ## 12.2.7
130
-
131
- ### Patch Changes
132
-
133
- - fix button background prop
134
-
135
- ## 12.2.6
136
-
137
- ### Patch Changes
138
-
139
- - RichEditorFormField props
140
-
141
- ## 12.2.5
142
-
143
- ### Patch Changes
144
-
145
- - Fix RichEditor
146
-
147
- ## 12.2.4
148
-
149
- ### Patch Changes
150
-
151
- - add outlined neutral compound variant
152
-
153
- ## 12.2.3
154
-
155
- ### Patch Changes
156
-
157
- - fix outlined button variant
158
-
159
- ## 12.2.2
160
-
161
- ### Patch Changes
162
-
163
- - RichEditor HTML Stylization
164
-
165
- ## 12.2.1
166
-
167
- ### Patch Changes
168
-
169
- - Drawer Go Back Button
170
-
171
- ## 12.2.0
172
-
173
- ### Minor Changes
174
-
175
- - MultiSelect added props
176
-
177
- ## 12.1.13
178
-
179
- ### Patch Changes
180
-
181
- - RichEditor - UploadImage
182
-
183
- ## 12.1.12
184
-
185
- ### Patch Changes
186
-
187
- - CSS RichEditor
188
-
189
- ## 12.1.11
190
-
191
- ### Patch Changes
192
-
193
- - fix - Quill Css
194
-
195
- ## 12.1.10
196
-
197
- ### Patch Changes
198
-
199
- - RichEditor LineHeight
200
-
201
- ## 12.1.9
202
-
203
- ### Patch Changes
204
-
205
- - Validate RG
206
-
207
- ## 12.1.8
208
-
209
- ### Patch Changes
210
-
211
- - RG mask and validation
212
-
213
- ## 12.1.7
214
-
215
- ### Patch Changes
216
-
217
- - Richeditor simpleVersion and MaxLength
218
-
219
- ## 12.1.6
220
-
221
- ### Patch Changes
222
-
223
- - TimePicker width
224
-
225
- ## 12.1.5
226
-
227
- ### Patch Changes
228
-
229
- - SwitchFormField
230
-
231
- ## 12.1.4
232
-
233
- ### Patch Changes
234
-
235
- - Quill Lazyload
236
-
237
- ## 12.1.3
238
-
239
- ### Patch Changes
240
-
241
- - TextareaField maxLength control
242
-
243
- ## 12.1.2
244
-
245
- ### Patch Changes
246
-
247
- - added quill
248
-
249
- ## 12.1.1
250
-
251
- ### Patch Changes
252
-
253
- - Remove lib
254
-
255
- ## 12.1.0
256
-
257
- ### Minor Changes
258
-
259
- - MultSelect, RG and RichEditor adjustment
260
-
261
- ## 12.0.0
262
-
263
- ### Major Changes
264
-
265
- - RichEditor
266
-
267
- ## 11.8.1
268
-
269
- ### Patch Changes
270
-
271
- - add disabled state to select
272
-
273
- ## 11.8.0
274
-
275
- ### Minor Changes
276
-
277
- - fix multiselect
278
-
279
- ## 11.7.9
280
-
281
- ### Patch Changes
282
-
283
- - checkbox group value
284
-
285
- ## 11.7.8
286
-
287
- ### Patch Changes
288
-
289
- - TextField stylization
290
-
291
- ## 11.7.7
292
-
293
- ### Patch Changes
294
-
295
- - BirthdateForm Validation
296
-
297
- ## 11.7.6
298
-
299
- ### Patch Changes
300
-
301
- - maxLength to TextField
302
-
303
- ## 11.7.5
304
-
305
- ### Patch Changes
306
-
307
- - MenuDropdown props
308
-
309
- ## 11.7.4
310
-
311
- ### Patch Changes
312
-
313
- - fix: add validate null fallback to textformfield
314
-
315
- ## 11.7.3
316
-
317
- ### Patch Changes
318
-
319
- - add placeholder to email form field
320
-
321
- ## 11.7.2
322
-
323
- ### Patch Changes
324
-
325
- - form child function
326
-
327
- ## 11.7.1
328
-
329
- ### Patch Changes
330
-
331
- - email input
332
-
333
- ## 11.7.0
334
-
335
- ### Minor Changes
336
-
337
- - Phone input
338
-
339
- ## 11.6.5
340
-
341
- ### Patch Changes
342
-
343
- - dropdown refactor
344
-
345
- ## 11.6.4
346
-
347
- ### Patch Changes
348
-
349
- - phone input removed
350
-
351
- ## 11.6.3
352
-
353
- ### Patch Changes
354
-
355
- - Dropdown portal adjustment
356
-
357
- ## 11.6.2
358
-
359
- ### Patch Changes
360
-
361
- - enable phone input
362
-
363
- ## 11.6.1
364
-
365
- ### Patch Changes
366
-
367
- - Re-deploy
368
-
369
- ## 11.6.0
370
-
371
- ### Minor Changes
372
-
373
- - added form fields
374
-
375
- ## 11.5.4
376
-
377
- ### Patch Changes
378
-
379
- - add text-area-field props to form field
380
-
381
- ## 11.5.3
382
-
383
- ### Patch Changes
384
-
385
- - rm react international phone
386
-
387
- ## 11.5.2
388
-
389
- ### Patch Changes
390
-
391
- - fix lock?
392
-
393
- ## 11.5.1
394
-
395
- ### Patch Changes
396
-
397
- - fix: text area form field props
398
-
399
- ## 11.5.0
400
-
401
- ### Minor Changes
402
-
403
- - Phone Input added
404
-
405
- ## 11.4.1
406
-
407
- ### Patch Changes
408
-
409
- - fix multiselect zindex
410
-
411
- ## 11.4.0
412
-
413
- ### Minor Changes
414
-
415
- - Multiselectfield
416
-
417
- ## 11.3.0
418
-
419
- ### Minor Changes
420
-
421
- - Drawer and MenuDropdown
422
-
423
- ## 11.2.0
424
-
425
- ### Minor Changes
426
-
427
- - Form component
428
-
429
- ## 11.1.0
430
-
431
- ### Minor Changes
432
-
433
- - TextFormField & TextAreaFormField
434
-
435
- ## 11.0.6
436
-
437
- ### Patch Changes
438
-
439
- - fix: textarea default rows
440
-
441
- ## 11.0.5
442
-
443
- ### Patch Changes
444
-
445
- - fixes for textareafield & textfield
446
-
447
- ## 11.0.4
448
-
449
- ### Patch Changes
450
-
451
- - fix textfield ref
452
-
453
- ## 11.0.3
454
-
455
- ### Patch Changes
456
-
457
- - fix textfield ref
458
-
459
- ## 11.0.2
460
-
461
- ### Patch Changes
462
-
463
- - fix card component
464
-
465
- ## 11.0.1
466
-
467
- ### Patch Changes
468
-
469
- - fix: text button size
470
-
471
- ## 11.0.0
472
-
473
- ### Major Changes
474
-
475
- - Fix Button Sizes & Text Color
476
-
477
- ## 10.1.1
478
-
479
- ### Patch Changes
480
-
481
- - Input of TimerPicker
482
-
483
- ## 10.1.0
484
-
485
- ### Minor Changes
486
-
487
- - Toaster and Tooltips
488
-
489
- ## 10.0.1
490
-
491
- ### Patch Changes
492
-
493
- - fix modal overlay
494
-
495
- ## 10.0.0
496
-
497
- ### Major Changes
498
-
499
- - fix for modal
500
-
501
- ## 9.0.0
502
-
503
- ### Major Changes
504
-
505
- - Modal Refacotr
506
-
507
- ## 8.0.0
508
-
509
- ### Major Changes
510
-
511
- - Modal refactor
512
-
513
- ## 7.2.1
514
-
515
- ### Patch Changes
516
-
517
- - Button attribute type correction
518
-
519
- ## 7.2.0
520
-
521
- ### Minor Changes
522
-
523
- - Textarea and Input Mask
524
-
525
- ## 7.1.0
526
-
527
- ### Minor Changes
528
-
529
- - Component Calendar and TimePicker refactored
530
-
531
- ## 7.0.1
532
-
533
- ### Patch Changes
534
-
535
- - Text Field addon fix
536
-
537
- ## 7.0.0
538
-
539
- ### Major Changes
540
-
541
- - Button variant and colors refactored
542
-
543
- ## 6.1.0
544
-
545
- ### Minor Changes
546
-
547
- - calendar, timerpicker and button
548
-
549
- ## 6.0.0
550
-
551
- ### Major Changes
552
-
553
- - fd09efd: adding typography
554
- - Added typography and fontWeight
555
-
556
- ## 5.0.0
557
-
558
- ### Major Changes
559
-
560
- - Added new typography
561
-
562
- ## 4.0.0
563
-
564
- ### Major Changes
565
-
566
- - 651db6f: new variants
567
-
568
- ## 3.0.0
569
-
570
- ### Major Changes
571
-
572
- - new components
573
-
574
- ## 2.0.0
575
-
576
- ### Major Changes
577
-
578
- - adding packages ds
1
+ # @lets-events/react
2
+
3
+ ## 12.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - New Release
8
+
9
+ ## 12.5.0
10
+
11
+ ### Minor Changes
12
+
13
+ - Drawer and DoubleCalendar Props
14
+
15
+ ## 12.4.1
16
+
17
+ ### Patch Changes
18
+
19
+ - test
20
+
21
+ ## 12.4.0
22
+
23
+ ### Minor Changes
24
+
25
+ - DoubleCalendar
26
+
27
+ ## 12.3.10
28
+
29
+ ### Patch Changes
30
+
31
+ - Drawer mobile width
32
+
33
+ ## 12.3.9
34
+
35
+ ### Patch Changes
36
+
37
+ - fix: card
38
+
39
+ ## 12.3.8
40
+
41
+ ### Patch Changes
42
+
43
+ - fix: drawer scroll
44
+
45
+ ## 12.3.7
46
+
47
+ ### Patch Changes
48
+
49
+ - fix drawer scroll
50
+
51
+ ## 12.3.6
52
+
53
+ ### Patch Changes
54
+
55
+ - fix
56
+
57
+ ## 12.3.5
58
+
59
+ ### Patch Changes
60
+
61
+ - fix drawer
62
+
63
+ ## 12.3.4
64
+
65
+ ### Patch Changes
66
+
67
+ - fix: drawer animation
68
+
69
+ ## 12.3.3
70
+
71
+ ### Patch Changes
72
+
73
+ - fix: drawer click outside
74
+
75
+ ## 12.3.2
76
+
77
+ ### Patch Changes
78
+
79
+ - fix button loading state
80
+
81
+ ## 12.3.1
82
+
83
+ ### Patch Changes
84
+
85
+ - fix button loading state
86
+
87
+ ## 12.3.0
88
+
89
+ ### Minor Changes
90
+
91
+ - button loadding state
92
+
93
+ ## 12.2.14
94
+
95
+ ### Patch Changes
96
+
97
+ - add warning color to card
98
+
99
+ ## 12.2.13
100
+
101
+ ### Patch Changes
102
+
103
+ - new modal props
104
+
105
+ ## 12.2.12
106
+
107
+ ### Patch Changes
108
+
109
+ - add extra modal props
110
+
111
+ ## 12.2.11
112
+
113
+ ### Patch Changes
114
+
115
+ - divider component
116
+
117
+ ## 12.2.10
118
+
119
+ ### Patch Changes
120
+
121
+ - Simple Version RichEditor
122
+
123
+ ## 12.2.9
124
+
125
+ ### Patch Changes
126
+
127
+ - RichEditor stylization
128
+
129
+ ## 12.2.8
130
+
131
+ ### Patch Changes
132
+
133
+ - Calendar maxYearsFromNow and multiSelect close
134
+
135
+ ## 12.2.7
136
+
137
+ ### Patch Changes
138
+
139
+ - fix button background prop
140
+
141
+ ## 12.2.6
142
+
143
+ ### Patch Changes
144
+
145
+ - RichEditorFormField props
146
+
147
+ ## 12.2.5
148
+
149
+ ### Patch Changes
150
+
151
+ - Fix RichEditor
152
+
153
+ ## 12.2.4
154
+
155
+ ### Patch Changes
156
+
157
+ - add outlined neutral compound variant
158
+
159
+ ## 12.2.3
160
+
161
+ ### Patch Changes
162
+
163
+ - fix outlined button variant
164
+
165
+ ## 12.2.2
166
+
167
+ ### Patch Changes
168
+
169
+ - RichEditor HTML Stylization
170
+
171
+ ## 12.2.1
172
+
173
+ ### Patch Changes
174
+
175
+ - Drawer Go Back Button
176
+
177
+ ## 12.2.0
178
+
179
+ ### Minor Changes
180
+
181
+ - MultiSelect added props
182
+
183
+ ## 12.1.13
184
+
185
+ ### Patch Changes
186
+
187
+ - RichEditor - UploadImage
188
+
189
+ ## 12.1.12
190
+
191
+ ### Patch Changes
192
+
193
+ - CSS RichEditor
194
+
195
+ ## 12.1.11
196
+
197
+ ### Patch Changes
198
+
199
+ - fix - Quill Css
200
+
201
+ ## 12.1.10
202
+
203
+ ### Patch Changes
204
+
205
+ - RichEditor LineHeight
206
+
207
+ ## 12.1.9
208
+
209
+ ### Patch Changes
210
+
211
+ - Validate RG
212
+
213
+ ## 12.1.8
214
+
215
+ ### Patch Changes
216
+
217
+ - RG mask and validation
218
+
219
+ ## 12.1.7
220
+
221
+ ### Patch Changes
222
+
223
+ - Richeditor simpleVersion and MaxLength
224
+
225
+ ## 12.1.6
226
+
227
+ ### Patch Changes
228
+
229
+ - TimePicker width
230
+
231
+ ## 12.1.5
232
+
233
+ ### Patch Changes
234
+
235
+ - SwitchFormField
236
+
237
+ ## 12.1.4
238
+
239
+ ### Patch Changes
240
+
241
+ - Quill Lazyload
242
+
243
+ ## 12.1.3
244
+
245
+ ### Patch Changes
246
+
247
+ - TextareaField maxLength control
248
+
249
+ ## 12.1.2
250
+
251
+ ### Patch Changes
252
+
253
+ - added quill
254
+
255
+ ## 12.1.1
256
+
257
+ ### Patch Changes
258
+
259
+ - Remove lib
260
+
261
+ ## 12.1.0
262
+
263
+ ### Minor Changes
264
+
265
+ - MultSelect, RG and RichEditor adjustment
266
+
267
+ ## 12.0.0
268
+
269
+ ### Major Changes
270
+
271
+ - RichEditor
272
+
273
+ ## 11.8.1
274
+
275
+ ### Patch Changes
276
+
277
+ - add disabled state to select
278
+
279
+ ## 11.8.0
280
+
281
+ ### Minor Changes
282
+
283
+ - fix multiselect
284
+
285
+ ## 11.7.9
286
+
287
+ ### Patch Changes
288
+
289
+ - checkbox group value
290
+
291
+ ## 11.7.8
292
+
293
+ ### Patch Changes
294
+
295
+ - TextField stylization
296
+
297
+ ## 11.7.7
298
+
299
+ ### Patch Changes
300
+
301
+ - BirthdateForm Validation
302
+
303
+ ## 11.7.6
304
+
305
+ ### Patch Changes
306
+
307
+ - maxLength to TextField
308
+
309
+ ## 11.7.5
310
+
311
+ ### Patch Changes
312
+
313
+ - MenuDropdown props
314
+
315
+ ## 11.7.4
316
+
317
+ ### Patch Changes
318
+
319
+ - fix: add validate null fallback to textformfield
320
+
321
+ ## 11.7.3
322
+
323
+ ### Patch Changes
324
+
325
+ - add placeholder to email form field
326
+
327
+ ## 11.7.2
328
+
329
+ ### Patch Changes
330
+
331
+ - form child function
332
+
333
+ ## 11.7.1
334
+
335
+ ### Patch Changes
336
+
337
+ - email input
338
+
339
+ ## 11.7.0
340
+
341
+ ### Minor Changes
342
+
343
+ - Phone input
344
+
345
+ ## 11.6.5
346
+
347
+ ### Patch Changes
348
+
349
+ - dropdown refactor
350
+
351
+ ## 11.6.4
352
+
353
+ ### Patch Changes
354
+
355
+ - phone input removed
356
+
357
+ ## 11.6.3
358
+
359
+ ### Patch Changes
360
+
361
+ - Dropdown portal adjustment
362
+
363
+ ## 11.6.2
364
+
365
+ ### Patch Changes
366
+
367
+ - enable phone input
368
+
369
+ ## 11.6.1
370
+
371
+ ### Patch Changes
372
+
373
+ - Re-deploy
374
+
375
+ ## 11.6.0
376
+
377
+ ### Minor Changes
378
+
379
+ - added form fields
380
+
381
+ ## 11.5.4
382
+
383
+ ### Patch Changes
384
+
385
+ - add text-area-field props to form field
386
+
387
+ ## 11.5.3
388
+
389
+ ### Patch Changes
390
+
391
+ - rm react international phone
392
+
393
+ ## 11.5.2
394
+
395
+ ### Patch Changes
396
+
397
+ - fix lock?
398
+
399
+ ## 11.5.1
400
+
401
+ ### Patch Changes
402
+
403
+ - fix: text area form field props
404
+
405
+ ## 11.5.0
406
+
407
+ ### Minor Changes
408
+
409
+ - Phone Input added
410
+
411
+ ## 11.4.1
412
+
413
+ ### Patch Changes
414
+
415
+ - fix multiselect zindex
416
+
417
+ ## 11.4.0
418
+
419
+ ### Minor Changes
420
+
421
+ - Multiselectfield
422
+
423
+ ## 11.3.0
424
+
425
+ ### Minor Changes
426
+
427
+ - Drawer and MenuDropdown
428
+
429
+ ## 11.2.0
430
+
431
+ ### Minor Changes
432
+
433
+ - Form component
434
+
435
+ ## 11.1.0
436
+
437
+ ### Minor Changes
438
+
439
+ - TextFormField & TextAreaFormField
440
+
441
+ ## 11.0.6
442
+
443
+ ### Patch Changes
444
+
445
+ - fix: textarea default rows
446
+
447
+ ## 11.0.5
448
+
449
+ ### Patch Changes
450
+
451
+ - fixes for textareafield & textfield
452
+
453
+ ## 11.0.4
454
+
455
+ ### Patch Changes
456
+
457
+ - fix textfield ref
458
+
459
+ ## 11.0.3
460
+
461
+ ### Patch Changes
462
+
463
+ - fix textfield ref
464
+
465
+ ## 11.0.2
466
+
467
+ ### Patch Changes
468
+
469
+ - fix card component
470
+
471
+ ## 11.0.1
472
+
473
+ ### Patch Changes
474
+
475
+ - fix: text button size
476
+
477
+ ## 11.0.0
478
+
479
+ ### Major Changes
480
+
481
+ - Fix Button Sizes & Text Color
482
+
483
+ ## 10.1.1
484
+
485
+ ### Patch Changes
486
+
487
+ - Input of TimerPicker
488
+
489
+ ## 10.1.0
490
+
491
+ ### Minor Changes
492
+
493
+ - Toaster and Tooltips
494
+
495
+ ## 10.0.1
496
+
497
+ ### Patch Changes
498
+
499
+ - fix modal overlay
500
+
501
+ ## 10.0.0
502
+
503
+ ### Major Changes
504
+
505
+ - fix for modal
506
+
507
+ ## 9.0.0
508
+
509
+ ### Major Changes
510
+
511
+ - Modal Refacotr
512
+
513
+ ## 8.0.0
514
+
515
+ ### Major Changes
516
+
517
+ - Modal refactor
518
+
519
+ ## 7.2.1
520
+
521
+ ### Patch Changes
522
+
523
+ - Button attribute type correction
524
+
525
+ ## 7.2.0
526
+
527
+ ### Minor Changes
528
+
529
+ - Textarea and Input Mask
530
+
531
+ ## 7.1.0
532
+
533
+ ### Minor Changes
534
+
535
+ - Component Calendar and TimePicker refactored
536
+
537
+ ## 7.0.1
538
+
539
+ ### Patch Changes
540
+
541
+ - Text Field addon fix
542
+
543
+ ## 7.0.0
544
+
545
+ ### Major Changes
546
+
547
+ - Button variant and colors refactored
548
+
549
+ ## 6.1.0
550
+
551
+ ### Minor Changes
552
+
553
+ - calendar, timerpicker and button
554
+
555
+ ## 6.0.0
556
+
557
+ ### Major Changes
558
+
559
+ - fd09efd: adding typography
560
+ - Added typography and fontWeight
561
+
562
+ ## 5.0.0
563
+
564
+ ### Major Changes
565
+
566
+ - Added new typography
567
+
568
+ ## 4.0.0
569
+
570
+ ### Major Changes
571
+
572
+ - 651db6f: new variants
573
+
574
+ ## 3.0.0
575
+
576
+ ### Major Changes
577
+
578
+ - new components
579
+
580
+ ## 2.0.0
581
+
582
+ ### Major Changes
583
+
584
+ - adding packages ds