@livechat/design-system-react-components 1.0.0-beta.4 → 1.0.0-beta.6

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 (42) hide show
  1. package/dist/components/ActionBar/ActionBar.d.ts +25 -0
  2. package/dist/components/ActionBar/ActionBar.spec.d.ts +1 -0
  3. package/dist/components/ActionBar/ActionBar.stories.d.ts +10 -0
  4. package/dist/components/ActionBar/ActionBarItem.d.ts +14 -0
  5. package/dist/components/ActionBar/index.d.ts +2 -0
  6. package/dist/components/ActionMenu/ActionMenu.d.ts +9 -1
  7. package/dist/components/Button/Button.d.ts +2 -2
  8. package/dist/components/Button/Button.stories.d.ts +1 -1
  9. package/dist/components/Modal/ModalBase.d.ts +4 -0
  10. package/dist/components/Modal/ModalCloseButton.d.ts +2 -1
  11. package/dist/components/Picker/Picker.d.ts +1 -2
  12. package/dist/components/Picker/Picker.stories.d.ts +1 -0
  13. package/dist/components/Picker/PickerList.d.ts +1 -10
  14. package/dist/components/Picker/PickerListItem.d.ts +11 -0
  15. package/dist/components/Picker/TriggerBody.d.ts +3 -2
  16. package/dist/components/Picker/constants.d.ts +31 -3
  17. package/dist/components/Picker/helpers.d.ts +2 -0
  18. package/dist/components/Picker/index.d.ts +1 -1
  19. package/dist/components/Picker/types.d.ts +17 -0
  20. package/dist/components/Popover/Popover.d.ts +4 -0
  21. package/dist/components/PromoBanner/PromoBanner.d.ts +3 -0
  22. package/dist/components/PromoBannerV2/PromoBannerV2.d.ts +33 -0
  23. package/dist/components/PromoBannerV2/PromoBannerV2.spec.d.ts +1 -0
  24. package/dist/components/PromoBannerV2/PromoBannerV2.stories.d.ts +23 -0
  25. package/dist/components/PromoBannerV2/constants.d.ts +1 -0
  26. package/dist/components/PromoBannerV2/index.d.ts +2 -0
  27. package/dist/components/Tag/Tag.d.ts +1 -1
  28. package/dist/components/Tooltip/components/Info.d.ts +2 -1
  29. package/dist/components/Tooltip/components/Interactive.d.ts +4 -12
  30. package/dist/components/Tooltip/components/UserGuide/UserGuideStep.d.ts +2 -1
  31. package/dist/components/Tooltip/helpers.d.ts +2 -1
  32. package/dist/components/Tooltip/types.d.ts +8 -1
  33. package/dist/components/Typography/Display.d.ts +10 -0
  34. package/dist/components/Typography/index.d.ts +1 -0
  35. package/dist/dsrc.cjs.js +6 -6
  36. package/dist/dsrc.es.js +3346 -2942
  37. package/dist/dsrc.umd.js +6 -6
  38. package/dist/foundations/radius-token.d.ts +6 -0
  39. package/dist/index.d.ts +3 -0
  40. package/dist/preview-stats.json +708 -516
  41. package/dist/style.css +1 -1
  42. package/package.json +2 -2
@@ -36,12 +36,33 @@
36
36
  }
37
37
  ]
38
38
  },
39
+ {
40
+ "id": "./src/foundations/radius-token.ts",
41
+ "name": "./src/foundations/radius-token.ts",
42
+ "reasons": [
43
+ {
44
+ "moduleName": "./src/index.ts"
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "id": "./src/components/ActionBar/index.ts",
50
+ "name": "./src/components/ActionBar/index.ts",
51
+ "reasons": [
52
+ {
53
+ "moduleName": "./src/index.ts"
54
+ }
55
+ ]
56
+ },
39
57
  {
40
58
  "id": "./src/components/ActionMenu/index.ts",
41
59
  "name": "./src/components/ActionMenu/index.ts",
42
60
  "reasons": [
43
61
  {
44
62
  "moduleName": "./src/index.ts"
63
+ },
64
+ {
65
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
45
66
  }
46
67
  ]
47
68
  },
@@ -82,9 +103,15 @@
82
103
  {
83
104
  "moduleName": "./src/index.ts"
84
105
  },
106
+ {
107
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
108
+ },
85
109
  {
86
110
  "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
87
111
  },
112
+ {
113
+ "moduleName": "./src/components/Input/Input.tsx"
114
+ },
88
115
  {
89
116
  "moduleName": "./src/components/Card/Card.tsx"
90
117
  },
@@ -92,14 +119,26 @@
92
119
  "moduleName": "./src/components/Alert/Alert.tsx"
93
120
  },
94
121
  {
95
- "moduleName": "./src/components/Input/Input.tsx"
122
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
96
123
  },
97
124
  {
98
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
125
+ "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
126
+ },
127
+ {
128
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
99
129
  },
100
130
  {
101
131
  "moduleName": "./src/components/Toast/Toast.tsx"
102
132
  },
133
+ {
134
+ "moduleName": "./src/components/Search/Search.tsx"
135
+ },
136
+ {
137
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
138
+ },
139
+ {
140
+ "moduleName": "./src/components/Tooltip/components/Info.tsx"
141
+ },
103
142
  {
104
143
  "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
105
144
  }
@@ -149,10 +188,10 @@
149
188
  "moduleName": "./src/index.ts"
150
189
  },
151
190
  {
152
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
191
+ "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
153
192
  },
154
193
  {
155
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
194
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
156
195
  },
157
196
  {
158
197
  "moduleName": "./src/components/FormField/FormField.tsx"
@@ -224,47 +263,50 @@
224
263
  "moduleName": "./src/index.ts"
225
264
  },
226
265
  {
227
- "moduleName": "./src/components/FieldError/FieldError.tsx"
266
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
228
267
  },
229
268
  {
230
- "moduleName": "./src/components/Avatar/Avatar.tsx"
269
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
231
270
  },
232
271
  {
233
- "moduleName": "./src/components/Card/Card.tsx"
272
+ "moduleName": "./src/components/Input/Input.tsx"
234
273
  },
235
274
  {
236
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
275
+ "moduleName": "./src/components/Card/Card.tsx"
237
276
  },
238
277
  {
239
278
  "moduleName": "./src/components/Alert/Alert.tsx"
240
279
  },
241
280
  {
242
- "moduleName": "./src/components/Picker/PickerList.tsx"
281
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
282
+ },
283
+ {
284
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
243
285
  },
244
286
  {
245
287
  "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
246
288
  },
289
+ {
290
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
291
+ },
247
292
  {
248
293
  "moduleName": "./src/components/Modal/ModalHeader.tsx"
249
294
  },
250
295
  {
251
- "moduleName": "./src/components/Input/Input.tsx"
296
+ "moduleName": "./src/components/Switch/Switch.tsx"
252
297
  },
253
298
  {
254
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
299
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
255
300
  },
256
301
  {
257
302
  "moduleName": "./src/components/Tag/Tag.tsx"
258
303
  },
259
304
  {
260
- "moduleName": "./src/components/Switch/Switch.tsx"
305
+ "moduleName": "./src/components/Toast/Toast.tsx"
261
306
  },
262
307
  {
263
308
  "moduleName": "./src/components/Search/Search.tsx"
264
309
  },
265
- {
266
- "moduleName": "./src/components/Toast/Toast.tsx"
267
- },
268
310
  {
269
311
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
270
312
  },
@@ -277,9 +319,15 @@
277
319
  {
278
320
  "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
279
321
  },
322
+ {
323
+ "moduleName": "./src/components/Picker/TriggerBody.tsx"
324
+ },
280
325
  {
281
326
  "moduleName": "./src/components/Picker/Trigger.tsx"
282
327
  },
328
+ {
329
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
330
+ },
283
331
  {
284
332
  "moduleName": "./src/components/Tooltip/components/Info.tsx"
285
333
  },
@@ -387,6 +435,15 @@
387
435
  }
388
436
  ]
389
437
  },
438
+ {
439
+ "id": "./src/components/PromoBannerV2/index.ts",
440
+ "name": "./src/components/PromoBannerV2/index.ts",
441
+ "reasons": [
442
+ {
443
+ "moduleName": "./src/index.ts"
444
+ }
445
+ ]
446
+ },
390
447
  {
391
448
  "id": "./src/components/RadioButton/index.ts",
392
449
  "name": "./src/components/RadioButton/index.ts",
@@ -462,6 +519,9 @@
462
519
  "reasons": [
463
520
  {
464
521
  "moduleName": "./src/index.ts"
522
+ },
523
+ {
524
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
465
525
  }
466
526
  ]
467
527
  },
@@ -473,49 +533,46 @@
473
533
  "moduleName": "./src/index.ts"
474
534
  },
475
535
  {
476
- "moduleName": "./src/components/FieldError/FieldError.tsx"
536
+ "moduleName": "./src/components/Form/Form.tsx"
477
537
  },
478
538
  {
479
- "moduleName": "./src/components/Card/Card.tsx"
539
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
480
540
  },
481
541
  {
482
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
542
+ "moduleName": "./src/components/FormGroup/FormGroup.tsx"
483
543
  },
484
544
  {
485
- "moduleName": "./src/components/Loader/Loader.tsx"
545
+ "moduleName": "./src/components/Card/Card.tsx"
486
546
  },
487
547
  {
488
548
  "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
489
549
  },
490
550
  {
491
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
492
- },
493
- {
494
- "moduleName": "./src/components/Form/Form.tsx"
495
- },
496
- {
497
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
551
+ "moduleName": "./src/components/FormField/FormField.tsx"
498
552
  },
499
553
  {
500
554
  "moduleName": "./src/components/Alert/Alert.tsx"
501
555
  },
502
556
  {
503
- "moduleName": "./src/components/Modal/Modal.tsx"
557
+ "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
504
558
  },
505
559
  {
506
- "moduleName": "./src/components/Modal/ModalHeader.tsx"
560
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
507
561
  },
508
562
  {
509
- "moduleName": "./src/components/FormField/FormField.tsx"
563
+ "moduleName": "./src/components/Popover/Popover.tsx"
510
564
  },
511
565
  {
512
566
  "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
513
567
  },
514
568
  {
515
- "moduleName": "./src/components/Popover/Popover.tsx"
569
+ "moduleName": "./src/components/Modal/Modal.tsx"
516
570
  },
517
571
  {
518
- "moduleName": "./src/components/Tag/Tag.tsx"
572
+ "moduleName": "./src/components/Loader/Loader.tsx"
573
+ },
574
+ {
575
+ "moduleName": "./src/components/Modal/ModalHeader.tsx"
519
576
  },
520
577
  {
521
578
  "moduleName": "./src/components/RadioButton/RadioButton.tsx"
@@ -523,6 +580,9 @@
523
580
  {
524
581
  "moduleName": "./src/components/Tab/Tab.tsx"
525
582
  },
583
+ {
584
+ "moduleName": "./src/components/Tag/Tag.tsx"
585
+ },
526
586
  {
527
587
  "moduleName": "./src/components/Toast/Toast.tsx"
528
588
  },
@@ -568,29 +628,20 @@
568
628
  ]
569
629
  },
570
630
  {
571
- "id": "./src/components/SegmentedControl/SegmentedControl.tsx",
572
- "name": "./src/components/SegmentedControl/SegmentedControl.tsx",
573
- "reasons": [
574
- {
575
- "moduleName": "./src/components/SegmentedControl/index.ts"
576
- }
577
- ]
578
- },
579
- {
580
- "id": "./src/components/Card/Card.tsx",
581
- "name": "./src/components/Card/Card.tsx",
631
+ "id": "./src/components/ActionMenu/ActionMenu.tsx",
632
+ "name": "./src/components/ActionMenu/ActionMenu.tsx",
582
633
  "reasons": [
583
634
  {
584
- "moduleName": "./src/components/Card/index.ts"
635
+ "moduleName": "./src/components/ActionMenu/index.ts"
585
636
  }
586
637
  ]
587
638
  },
588
639
  {
589
- "id": "./src/components/Avatar/Avatar.tsx",
590
- "name": "./src/components/Avatar/Avatar.tsx",
640
+ "id": "./src/components/ActionMenu/ActionMenuItem.tsx",
641
+ "name": "./src/components/ActionMenu/ActionMenuItem.tsx",
591
642
  "reasons": [
592
643
  {
593
- "moduleName": "./src/components/Avatar/index.ts"
644
+ "moduleName": "./src/components/ActionMenu/index.ts"
594
645
  }
595
646
  ]
596
647
  },
@@ -604,47 +655,29 @@
604
655
  ]
605
656
  },
606
657
  {
607
- "id": "./src/components/FieldError/FieldError.tsx",
608
- "name": "./src/components/FieldError/FieldError.tsx",
609
- "reasons": [
610
- {
611
- "moduleName": "./src/components/FieldError/index.ts"
612
- }
613
- ]
614
- },
615
- {
616
- "id": "./src/components/FieldDescription/FieldDescription.tsx",
617
- "name": "./src/components/FieldDescription/FieldDescription.tsx",
618
- "reasons": [
619
- {
620
- "moduleName": "./src/components/FieldDescription/index.ts"
621
- }
622
- ]
623
- },
624
- {
625
- "id": "./src/components/Loader/Loader.tsx",
626
- "name": "./src/components/Loader/Loader.tsx",
658
+ "id": "./src/components/FieldGroup/FieldGroup.tsx",
659
+ "name": "./src/components/FieldGroup/FieldGroup.tsx",
627
660
  "reasons": [
628
661
  {
629
- "moduleName": "./src/components/Loader/index.ts"
662
+ "moduleName": "./src/components/FieldGroup/index.ts"
630
663
  }
631
664
  ]
632
665
  },
633
666
  {
634
- "id": "./src/components/ActionMenu/ActionMenu.tsx",
635
- "name": "./src/components/ActionMenu/ActionMenu.tsx",
667
+ "id": "./src/components/Form/Form.tsx",
668
+ "name": "./src/components/Form/Form.tsx",
636
669
  "reasons": [
637
670
  {
638
- "moduleName": "./src/components/ActionMenu/index.ts"
671
+ "moduleName": "./src/components/Form/index.ts"
639
672
  }
640
673
  ]
641
674
  },
642
675
  {
643
- "id": "./src/components/ActionMenu/ActionMenuItem.tsx",
644
- "name": "./src/components/ActionMenu/ActionMenuItem.tsx",
676
+ "id": "./src/components/Avatar/Avatar.tsx",
677
+ "name": "./src/components/Avatar/Avatar.tsx",
645
678
  "reasons": [
646
679
  {
647
- "moduleName": "./src/components/ActionMenu/index.ts"
680
+ "moduleName": "./src/components/Avatar/index.ts"
648
681
  }
649
682
  ]
650
683
  },
@@ -658,29 +691,29 @@
658
691
  ]
659
692
  },
660
693
  {
661
- "id": "./src/components/Form/Form.tsx",
662
- "name": "./src/components/Form/Form.tsx",
694
+ "id": "./src/components/SegmentedControl/SegmentedControl.tsx",
695
+ "name": "./src/components/SegmentedControl/SegmentedControl.tsx",
663
696
  "reasons": [
664
697
  {
665
- "moduleName": "./src/components/Form/index.ts"
698
+ "moduleName": "./src/components/SegmentedControl/index.ts"
666
699
  }
667
700
  ]
668
701
  },
669
702
  {
670
- "id": "./src/components/Badge/Badge.tsx",
671
- "name": "./src/components/Badge/Badge.tsx",
703
+ "id": "./src/components/ActionBar/ActionBar.tsx",
704
+ "name": "./src/components/ActionBar/ActionBar.tsx",
672
705
  "reasons": [
673
706
  {
674
- "moduleName": "./src/components/Badge/index.ts"
707
+ "moduleName": "./src/components/ActionBar/index.ts"
675
708
  }
676
709
  ]
677
710
  },
678
711
  {
679
- "id": "./src/components/FieldGroup/FieldGroup.tsx",
680
- "name": "./src/components/FieldGroup/FieldGroup.tsx",
712
+ "id": "./src/components/Input/Input.tsx",
713
+ "name": "./src/components/Input/Input.tsx",
681
714
  "reasons": [
682
715
  {
683
- "moduleName": "./src/components/FieldGroup/index.ts"
716
+ "moduleName": "./src/components/Input/index.ts"
684
717
  }
685
718
  ]
686
719
  },
@@ -712,119 +745,113 @@
712
745
  ]
713
746
  },
714
747
  {
715
- "id": "./src/components/NumericInput/NumericInput.tsx",
716
- "name": "./src/components/NumericInput/NumericInput.tsx",
748
+ "id": "./src/components/Link/Link.tsx",
749
+ "name": "./src/components/Link/Link.tsx",
717
750
  "reasons": [
718
751
  {
719
- "moduleName": "./src/components/NumericInput/index.ts"
752
+ "moduleName": "./src/components/Link/index.ts"
720
753
  }
721
754
  ]
722
755
  },
723
756
  {
724
- "id": "./src/components/Alert/Alert.tsx",
725
- "name": "./src/components/Alert/Alert.tsx",
757
+ "id": "./src/components/Card/Card.tsx",
758
+ "name": "./src/components/Card/Card.tsx",
726
759
  "reasons": [
727
760
  {
728
- "moduleName": "./src/components/Alert/index.ts"
761
+ "moduleName": "./src/components/Card/index.ts"
729
762
  }
730
763
  ]
731
764
  },
732
765
  {
733
- "id": "./src/components/Picker/Picker.tsx",
734
- "name": "./src/components/Picker/Picker.tsx",
766
+ "id": "./src/components/FormField/FormField.tsx",
767
+ "name": "./src/components/FormField/FormField.tsx",
735
768
  "reasons": [
736
769
  {
737
- "moduleName": "./src/components/Picker/index.ts"
770
+ "moduleName": "./src/components/FormField/index.ts"
738
771
  }
739
772
  ]
740
773
  },
741
774
  {
742
- "id": "./src/components/Picker/PickerList.tsx",
743
- "name": "./src/components/Picker/PickerList.tsx",
775
+ "id": "./src/components/Icon/Icon.tsx",
776
+ "name": "./src/components/Icon/Icon.tsx",
744
777
  "reasons": [
745
778
  {
746
- "moduleName": "./src/components/Picker/index.ts"
747
- },
748
- {
749
- "moduleName": "./src/components/Picker/Picker.tsx"
779
+ "moduleName": "./src/components/Icon/index.ts"
750
780
  }
751
781
  ]
752
782
  },
753
783
  {
754
- "id": "./src/components/Modal/Modal.tsx",
755
- "name": "./src/components/Modal/Modal.tsx",
784
+ "id": "./src/components/Badge/Badge.tsx",
785
+ "name": "./src/components/Badge/Badge.tsx",
756
786
  "reasons": [
757
787
  {
758
- "moduleName": "./src/components/Modal/index.ts"
788
+ "moduleName": "./src/components/Badge/index.ts"
759
789
  }
760
790
  ]
761
791
  },
762
792
  {
763
- "id": "./src/components/Modal/ModalBase.tsx",
764
- "name": "./src/components/Modal/ModalBase.tsx",
793
+ "id": "./src/components/Alert/Alert.tsx",
794
+ "name": "./src/components/Alert/Alert.tsx",
765
795
  "reasons": [
766
796
  {
767
- "moduleName": "./src/components/Modal/index.ts"
768
- },
769
- {
770
- "moduleName": "./src/components/Modal/Modal.tsx"
797
+ "moduleName": "./src/components/Alert/index.ts"
771
798
  }
772
799
  ]
773
800
  },
774
801
  {
775
- "id": "./src/components/Modal/ModalCloseButton.tsx",
776
- "name": "./src/components/Modal/ModalCloseButton.tsx",
802
+ "id": "./src/components/FieldDescription/FieldDescription.tsx",
803
+ "name": "./src/components/FieldDescription/FieldDescription.tsx",
777
804
  "reasons": [
778
805
  {
779
- "moduleName": "./src/components/Modal/index.ts"
780
- },
781
- {
782
- "moduleName": "./src/components/Modal/Modal.tsx"
806
+ "moduleName": "./src/components/FieldDescription/index.ts"
783
807
  }
784
808
  ]
785
809
  },
786
810
  {
787
- "id": "./src/components/Modal/ModalPortal.tsx",
788
- "name": "./src/components/Modal/ModalPortal.tsx",
811
+ "id": "./src/components/FieldError/FieldError.tsx",
812
+ "name": "./src/components/FieldError/FieldError.tsx",
789
813
  "reasons": [
790
814
  {
791
- "moduleName": "./src/components/Modal/index.ts"
815
+ "moduleName": "./src/components/FieldError/index.ts"
792
816
  }
793
817
  ]
794
818
  },
795
819
  {
796
- "id": "./src/components/Modal/ModalHeader.tsx",
797
- "name": "./src/components/Modal/ModalHeader.tsx",
820
+ "id": "./src/components/Picker/Picker.tsx",
821
+ "name": "./src/components/Picker/Picker.tsx",
798
822
  "reasons": [
799
823
  {
800
- "moduleName": "./src/components/Modal/index.ts"
824
+ "moduleName": "./src/components/Picker/index.ts"
801
825
  }
802
826
  ]
803
827
  },
804
828
  {
805
- "id": "./src/components/FormField/FormField.tsx",
806
- "name": "./src/components/FormField/FormField.tsx",
829
+ "id": "./src/components/Picker/PickerList.tsx",
830
+ "name": "./src/components/Picker/PickerList.tsx",
807
831
  "reasons": [
808
832
  {
809
- "moduleName": "./src/components/FormField/index.ts"
833
+ "moduleName": "./src/components/Picker/index.ts"
834
+ },
835
+ {
836
+ "moduleName": "./src/components/Picker/Picker.tsx"
810
837
  }
811
838
  ]
812
839
  },
813
840
  {
814
- "id": "./src/components/Icon/Icon.tsx",
815
- "name": "./src/components/Icon/Icon.tsx",
816
- "reasons": [
841
+ "id": "./src/components/Loader/Loader.tsx",
842
+ "name": "./src/components/Loader/Loader.tsx",
843
+ "reasons": [
817
844
  {
818
- "moduleName": "./src/components/Icon/index.ts"
845
+ "moduleName": "./src/components/Loader/index.ts"
819
846
  }
820
847
  ]
821
848
  },
822
849
  {
823
- "id": "./src/components/Link/Link.tsx",
824
- "name": "./src/components/Link/Link.tsx",
850
+ "id": "./src/components/NumericInput/NumericInput.tsx",
851
+ "name": "./src/components/NumericInput/NumericInput.tsx",
825
852
  "reasons": [
826
853
  {
827
- "moduleName": "./src/components/Link/index.ts"
854
+ "moduleName": "./src/components/NumericInput/index.ts"
828
855
  }
829
856
  ]
830
857
  },
@@ -838,20 +865,62 @@
838
865
  ]
839
866
  },
840
867
  {
841
- "id": "./src/components/Input/Input.tsx",
842
- "name": "./src/components/Input/Input.tsx",
868
+ "id": "./src/components/PromoBanner/PromoBanner.tsx",
869
+ "name": "./src/components/PromoBanner/PromoBanner.tsx",
843
870
  "reasons": [
844
871
  {
845
- "moduleName": "./src/components/Input/index.ts"
872
+ "moduleName": "./src/components/PromoBanner/index.ts"
846
873
  }
847
874
  ]
848
875
  },
849
876
  {
850
- "id": "./src/components/PromoBanner/PromoBanner.tsx",
851
- "name": "./src/components/PromoBanner/PromoBanner.tsx",
877
+ "id": "./src/components/Modal/Modal.tsx",
878
+ "name": "./src/components/Modal/Modal.tsx",
852
879
  "reasons": [
853
880
  {
854
- "moduleName": "./src/components/PromoBanner/index.ts"
881
+ "moduleName": "./src/components/Modal/index.ts"
882
+ }
883
+ ]
884
+ },
885
+ {
886
+ "id": "./src/components/Modal/ModalBase.tsx",
887
+ "name": "./src/components/Modal/ModalBase.tsx",
888
+ "reasons": [
889
+ {
890
+ "moduleName": "./src/components/Modal/index.ts"
891
+ },
892
+ {
893
+ "moduleName": "./src/components/Modal/Modal.tsx"
894
+ }
895
+ ]
896
+ },
897
+ {
898
+ "id": "./src/components/Modal/ModalCloseButton.tsx",
899
+ "name": "./src/components/Modal/ModalCloseButton.tsx",
900
+ "reasons": [
901
+ {
902
+ "moduleName": "./src/components/Modal/index.ts"
903
+ },
904
+ {
905
+ "moduleName": "./src/components/Modal/Modal.tsx"
906
+ }
907
+ ]
908
+ },
909
+ {
910
+ "id": "./src/components/Modal/ModalPortal.tsx",
911
+ "name": "./src/components/Modal/ModalPortal.tsx",
912
+ "reasons": [
913
+ {
914
+ "moduleName": "./src/components/Modal/index.ts"
915
+ }
916
+ ]
917
+ },
918
+ {
919
+ "id": "./src/components/Modal/ModalHeader.tsx",
920
+ "name": "./src/components/Modal/ModalHeader.tsx",
921
+ "reasons": [
922
+ {
923
+ "moduleName": "./src/components/Modal/index.ts"
855
924
  }
856
925
  ]
857
926
  },
@@ -873,6 +942,15 @@
873
942
  }
874
943
  ]
875
944
  },
945
+ {
946
+ "id": "./src/components/RadioButton/RadioButton.tsx",
947
+ "name": "./src/components/RadioButton/RadioButton.tsx",
948
+ "reasons": [
949
+ {
950
+ "moduleName": "./src/components/RadioButton/index.ts"
951
+ }
952
+ ]
953
+ },
876
954
  {
877
955
  "id": "./src/components/Switch/Switch.tsx",
878
956
  "name": "./src/components/Switch/Switch.tsx",
@@ -901,29 +979,20 @@
901
979
  ]
902
980
  },
903
981
  {
904
- "id": "./src/components/Tag/Tag.tsx",
905
- "name": "./src/components/Tag/Tag.tsx",
906
- "reasons": [
907
- {
908
- "moduleName": "./src/components/Tag/index.ts"
909
- }
910
- ]
911
- },
912
- {
913
- "id": "./src/components/RadioButton/RadioButton.tsx",
914
- "name": "./src/components/RadioButton/RadioButton.tsx",
982
+ "id": "./src/components/PromoBannerV2/PromoBannerV2.tsx",
983
+ "name": "./src/components/PromoBannerV2/PromoBannerV2.tsx",
915
984
  "reasons": [
916
985
  {
917
- "moduleName": "./src/components/RadioButton/index.ts"
986
+ "moduleName": "./src/components/PromoBannerV2/index.ts"
918
987
  }
919
988
  ]
920
989
  },
921
990
  {
922
- "id": "./src/components/Search/Search.tsx",
923
- "name": "./src/components/Search/Search.tsx",
991
+ "id": "./src/components/Tag/Tag.tsx",
992
+ "name": "./src/components/Tag/Tag.tsx",
924
993
  "reasons": [
925
994
  {
926
- "moduleName": "./src/components/Search/index.ts"
995
+ "moduleName": "./src/components/Tag/index.ts"
927
996
  }
928
997
  ]
929
998
  },
@@ -970,83 +1039,92 @@
970
1039
  ]
971
1040
  },
972
1041
  {
973
- "id": "./src/components/Typography/Heading.tsx",
974
- "name": "./src/components/Typography/Heading.tsx",
1042
+ "id": "./src/components/Search/Search.tsx",
1043
+ "name": "./src/components/Search/Search.tsx",
975
1044
  "reasons": [
976
1045
  {
977
- "moduleName": "./src/components/Typography/index.ts"
1046
+ "moduleName": "./src/components/Search/index.ts"
978
1047
  }
979
1048
  ]
980
1049
  },
981
1050
  {
982
- "id": "./src/components/Typography/Text.tsx",
983
- "name": "./src/components/Typography/Text.tsx",
1051
+ "id": "./src/components/Tooltip/Tooltip.tsx",
1052
+ "name": "./src/components/Tooltip/Tooltip.tsx",
984
1053
  "reasons": [
985
1054
  {
986
- "moduleName": "./src/components/Typography/index.ts"
1055
+ "moduleName": "./src/components/Tooltip/index.ts"
1056
+ },
1057
+ {
1058
+ "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
987
1059
  }
988
1060
  ]
989
1061
  },
990
1062
  {
991
- "id": "./src/components/FileUploadProgress/FileUploadProgress.tsx",
992
- "name": "./src/components/FileUploadProgress/FileUploadProgress.tsx",
1063
+ "id": "./src/components/Tooltip/components/index.ts",
1064
+ "name": "./src/components/Tooltip/components/index.ts",
993
1065
  "reasons": [
994
1066
  {
995
- "moduleName": "./src/components/FileUploadProgress/index.ts"
1067
+ "moduleName": "./src/components/Tooltip/index.ts"
996
1068
  }
997
1069
  ]
998
1070
  },
999
1071
  {
1000
- "id": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx",
1001
- "name": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx",
1072
+ "id": "./src/components/Tooltip/components/UserGuide/index.ts",
1073
+ "name": "./src/components/Tooltip/components/UserGuide/index.ts",
1002
1074
  "reasons": [
1003
1075
  {
1004
- "moduleName": "./src/components/FileUploadProgress/index.ts"
1076
+ "moduleName": "./src/components/Tooltip/index.ts"
1005
1077
  },
1006
1078
  {
1007
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1079
+ "moduleName": "./src/components/Tooltip/components/index.ts"
1008
1080
  }
1009
1081
  ]
1010
1082
  },
1011
1083
  {
1012
- "id": "./src/components/Textarea/Textarea.tsx",
1013
- "name": "./src/components/Textarea/Textarea.tsx",
1084
+ "id": "./src/components/Typography/Heading.tsx",
1085
+ "name": "./src/components/Typography/Heading.tsx",
1014
1086
  "reasons": [
1015
1087
  {
1016
- "moduleName": "./src/components/Textarea/index.ts"
1088
+ "moduleName": "./src/components/Typography/index.ts"
1017
1089
  }
1018
1090
  ]
1019
1091
  },
1020
1092
  {
1021
- "id": "./src/components/Tooltip/Tooltip.tsx",
1022
- "name": "./src/components/Tooltip/Tooltip.tsx",
1093
+ "id": "./src/components/Typography/Text.tsx",
1094
+ "name": "./src/components/Typography/Text.tsx",
1023
1095
  "reasons": [
1024
1096
  {
1025
- "moduleName": "./src/components/Tooltip/index.ts"
1026
- },
1097
+ "moduleName": "./src/components/Typography/index.ts"
1098
+ }
1099
+ ]
1100
+ },
1101
+ {
1102
+ "id": "./src/components/Typography/Display.tsx",
1103
+ "name": "./src/components/Typography/Display.tsx",
1104
+ "reasons": [
1027
1105
  {
1028
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
1106
+ "moduleName": "./src/components/Typography/index.ts"
1029
1107
  }
1030
1108
  ]
1031
1109
  },
1032
1110
  {
1033
- "id": "./src/components/Tooltip/components/index.ts",
1034
- "name": "./src/components/Tooltip/components/index.ts",
1111
+ "id": "./src/components/FileUploadProgress/FileUploadProgress.tsx",
1112
+ "name": "./src/components/FileUploadProgress/FileUploadProgress.tsx",
1035
1113
  "reasons": [
1036
1114
  {
1037
- "moduleName": "./src/components/Tooltip/index.ts"
1115
+ "moduleName": "./src/components/FileUploadProgress/index.ts"
1038
1116
  }
1039
1117
  ]
1040
1118
  },
1041
1119
  {
1042
- "id": "./src/components/Tooltip/components/UserGuide/index.ts",
1043
- "name": "./src/components/Tooltip/components/UserGuide/index.ts",
1120
+ "id": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx",
1121
+ "name": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx",
1044
1122
  "reasons": [
1045
1123
  {
1046
- "moduleName": "./src/components/Tooltip/index.ts"
1124
+ "moduleName": "./src/components/FileUploadProgress/index.ts"
1047
1125
  },
1048
1126
  {
1049
- "moduleName": "./src/components/Tooltip/components/index.ts"
1127
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1050
1128
  }
1051
1129
  ]
1052
1130
  },
@@ -1059,126 +1137,138 @@
1059
1137
  }
1060
1138
  ]
1061
1139
  },
1140
+ {
1141
+ "id": "./src/components/Textarea/Textarea.tsx",
1142
+ "name": "./src/components/Textarea/Textarea.tsx",
1143
+ "reasons": [
1144
+ {
1145
+ "moduleName": "./src/components/Textarea/index.ts"
1146
+ }
1147
+ ]
1148
+ },
1062
1149
  {
1063
1150
  "id": "./react",
1064
1151
  "name": "./react",
1065
1152
  "reasons": [
1066
1153
  {
1067
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1154
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1068
1155
  },
1069
1156
  {
1070
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1157
+ "moduleName": "./src/components/Button/Button.tsx"
1071
1158
  },
1072
1159
  {
1073
- "moduleName": "./src/components/Avatar/Avatar.tsx"
1160
+ "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1074
1161
  },
1075
1162
  {
1076
- "moduleName": "./src/components/Card/Card.tsx"
1163
+ "moduleName": "./src/components/Form/Form.tsx"
1077
1164
  },
1078
1165
  {
1079
- "moduleName": "./src/components/Button/Button.tsx"
1166
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
1080
1167
  },
1081
1168
  {
1082
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1169
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1083
1170
  },
1084
1171
  {
1085
- "moduleName": "./src/components/Loader/Loader.tsx"
1172
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1086
1173
  },
1087
1174
  {
1088
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1175
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1089
1176
  },
1090
1177
  {
1091
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1178
+ "moduleName": "./src/components/Input/Input.tsx"
1092
1179
  },
1093
1180
  {
1094
- "moduleName": "./src/components/Form/Form.tsx"
1181
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1095
1182
  },
1096
1183
  {
1097
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1184
+ "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1098
1185
  },
1099
1186
  {
1100
- "moduleName": "./src/components/Badge/Badge.tsx"
1187
+ "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1101
1188
  },
1102
1189
  {
1103
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1190
+ "moduleName": "./src/components/Link/Link.tsx"
1104
1191
  },
1105
1192
  {
1106
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1193
+ "moduleName": "./src/components/Card/Card.tsx"
1107
1194
  },
1108
1195
  {
1109
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1196
+ "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1110
1197
  },
1111
1198
  {
1112
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1199
+ "moduleName": "./src/components/FormField/FormField.tsx"
1113
1200
  },
1114
1201
  {
1115
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1202
+ "moduleName": "./src/components/Alert/Alert.tsx"
1116
1203
  },
1117
1204
  {
1118
- "moduleName": "./src/components/Alert/Alert.tsx"
1205
+ "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1119
1206
  },
1120
1207
  {
1121
- "moduleName": "./src/components/Picker/Picker.tsx"
1208
+ "moduleName": "./src/components/Badge/Badge.tsx"
1122
1209
  },
1123
1210
  {
1124
- "moduleName": "./src/components/Picker/PickerList.tsx"
1211
+ "moduleName": "./src/components/Icon/Icon.tsx"
1125
1212
  },
1126
1213
  {
1127
- "moduleName": "./src/components/Modal/Modal.tsx"
1214
+ "moduleName": "./src/components/Picker/Picker.tsx"
1128
1215
  },
1129
1216
  {
1130
- "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1217
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
1131
1218
  },
1132
1219
  {
1133
- "moduleName": "./src/components/Modal/ModalPortal.tsx"
1220
+ "moduleName": "./src/components/Popover/Popover.tsx"
1134
1221
  },
1135
1222
  {
1136
- "moduleName": "./src/components/Modal/ModalBase.tsx"
1223
+ "moduleName": "./src/components/Picker/PickerList.tsx"
1137
1224
  },
1138
1225
  {
1139
- "moduleName": "./src/components/Modal/ModalHeader.tsx"
1226
+ "moduleName": "./src/components/Modal/ModalPortal.tsx"
1140
1227
  },
1141
1228
  {
1142
- "moduleName": "./src/components/FormField/FormField.tsx"
1229
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1143
1230
  },
1144
1231
  {
1145
- "moduleName": "./src/components/Icon/Icon.tsx"
1232
+ "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1146
1233
  },
1147
1234
  {
1148
- "moduleName": "./src/components/Link/Link.tsx"
1235
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1149
1236
  },
1150
1237
  {
1151
- "moduleName": "./src/components/Input/Input.tsx"
1238
+ "moduleName": "./src/components/Modal/ModalBase.tsx"
1152
1239
  },
1153
1240
  {
1154
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1241
+ "moduleName": "./src/components/Modal/Modal.tsx"
1155
1242
  },
1156
1243
  {
1157
- "moduleName": "./src/components/Popover/Popover.tsx"
1244
+ "moduleName": "./src/components/Loader/Loader.tsx"
1158
1245
  },
1159
1246
  {
1160
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
1247
+ "moduleName": "./src/components/Modal/ModalHeader.tsx"
1161
1248
  },
1162
1249
  {
1163
1250
  "moduleName": "./src/components/Progress/ProgressCircle.tsx"
1164
1251
  },
1165
1252
  {
1166
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
1253
+ "moduleName": "./src/components/Progress/ProgressBar.tsx"
1167
1254
  },
1168
1255
  {
1169
- "moduleName": "./src/components/Tag/Tag.tsx"
1256
+ "moduleName": "./src/components/RadioButton/RadioButton.tsx"
1170
1257
  },
1171
1258
  {
1172
1259
  "moduleName": "./src/components/Switch/Switch.tsx"
1173
1260
  },
1174
1261
  {
1175
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
1262
+ "moduleName": "./src/components/Tab/Tab.tsx"
1176
1263
  },
1177
1264
  {
1178
- "moduleName": "./src/components/Tab/Tab.tsx"
1265
+ "moduleName": "./src/components/Tab/TabsWrapper.tsx"
1179
1266
  },
1180
1267
  {
1181
- "moduleName": "./src/components/Search/Search.tsx"
1268
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
1269
+ },
1270
+ {
1271
+ "moduleName": "./src/components/Tag/Tag.tsx"
1182
1272
  },
1183
1273
  {
1184
1274
  "moduleName": "./src/components/Toast/Toast.tsx"
@@ -1187,17 +1277,26 @@
1187
1277
  "moduleName": "./src/components/Toast/ToastWrapper.tsx"
1188
1278
  },
1189
1279
  {
1190
- "moduleName": "./src/components/TagInput/TagInput.tsx"
1280
+ "moduleName": "./src/components/TagInput/EmailTagInput.tsx"
1191
1281
  },
1192
1282
  {
1193
- "moduleName": "./src/components/TagInput/EmailTagInput.tsx"
1283
+ "moduleName": "./src/components/Tooltip/Tooltip.tsx"
1284
+ },
1285
+ {
1286
+ "moduleName": "./src/components/TagInput/TagInput.tsx"
1194
1287
  },
1195
1288
  {
1196
1289
  "moduleName": "./src/components/Typography/Heading.tsx"
1197
1290
  },
1291
+ {
1292
+ "moduleName": "./src/components/Search/Search.tsx"
1293
+ },
1198
1294
  {
1199
1295
  "moduleName": "./src/components/Typography/Text.tsx"
1200
1296
  },
1297
+ {
1298
+ "moduleName": "./src/components/Typography/Display.tsx"
1299
+ },
1201
1300
  {
1202
1301
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1203
1302
  },
@@ -1205,19 +1304,19 @@
1205
1304
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
1206
1305
  },
1207
1306
  {
1208
- "moduleName": "./src/components/Textarea/Textarea.tsx"
1307
+ "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1209
1308
  },
1210
1309
  {
1211
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
1310
+ "moduleName": "./src/components/Textarea/Textarea.tsx"
1212
1311
  },
1213
1312
  {
1214
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1313
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
1215
1314
  },
1216
1315
  {
1217
- "moduleName": "./src/components/DatePicker/hooks.ts"
1316
+ "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1218
1317
  },
1219
1318
  {
1220
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1319
+ "moduleName": "./src/components/DatePicker/hooks.ts"
1221
1320
  },
1222
1321
  {
1223
1322
  "moduleName": "./src/components/Picker/TriggerBody.tsx"
@@ -1226,7 +1325,7 @@
1226
1325
  "moduleName": "./src/components/Picker/Trigger.tsx"
1227
1326
  },
1228
1327
  {
1229
- "moduleName": "./src/components/TagInput/EditableTag.tsx"
1328
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
1230
1329
  },
1231
1330
  {
1232
1331
  "moduleName": "./src/components/Tooltip/components/Simple.tsx"
@@ -1243,6 +1342,9 @@
1243
1342
  {
1244
1343
  "moduleName": "./src/components/Tooltip/components/Reports.tsx"
1245
1344
  },
1345
+ {
1346
+ "moduleName": "./src/components/TagInput/EditableTag.tsx"
1347
+ },
1246
1348
  {
1247
1349
  "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
1248
1350
  },
@@ -1259,109 +1361,112 @@
1259
1361
  "name": "./clsx",
1260
1362
  "reasons": [
1261
1363
  {
1262
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1364
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1263
1365
  },
1264
1366
  {
1265
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1367
+ "moduleName": "./src/components/Button/Button.tsx"
1266
1368
  },
1267
1369
  {
1268
- "moduleName": "./src/components/Avatar/Avatar.tsx"
1370
+ "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1269
1371
  },
1270
1372
  {
1271
- "moduleName": "./src/components/Card/Card.tsx"
1373
+ "moduleName": "./src/components/Form/Form.tsx"
1272
1374
  },
1273
1375
  {
1274
- "moduleName": "./src/components/Button/Button.tsx"
1376
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
1275
1377
  },
1276
1378
  {
1277
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1379
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1278
1380
  },
1279
1381
  {
1280
- "moduleName": "./src/components/Loader/Loader.tsx"
1382
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1281
1383
  },
1282
1384
  {
1283
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1385
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1284
1386
  },
1285
1387
  {
1286
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1388
+ "moduleName": "./src/components/Input/Input.tsx"
1287
1389
  },
1288
1390
  {
1289
- "moduleName": "./src/components/Form/Form.tsx"
1391
+ "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1290
1392
  },
1291
1393
  {
1292
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1394
+ "moduleName": "./src/components/Link/Link.tsx"
1293
1395
  },
1294
1396
  {
1295
- "moduleName": "./src/components/Badge/Badge.tsx"
1397
+ "moduleName": "./src/components/Card/Card.tsx"
1296
1398
  },
1297
1399
  {
1298
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1400
+ "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1299
1401
  },
1300
1402
  {
1301
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1403
+ "moduleName": "./src/components/FormField/FormField.tsx"
1302
1404
  },
1303
1405
  {
1304
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1406
+ "moduleName": "./src/components/Alert/Alert.tsx"
1305
1407
  },
1306
1408
  {
1307
- "moduleName": "./src/components/Alert/Alert.tsx"
1409
+ "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1308
1410
  },
1309
1411
  {
1310
- "moduleName": "./src/components/Picker/Picker.tsx"
1412
+ "moduleName": "./src/components/Badge/Badge.tsx"
1311
1413
  },
1312
1414
  {
1313
- "moduleName": "./src/components/Picker/PickerList.tsx"
1415
+ "moduleName": "./src/components/Icon/Icon.tsx"
1314
1416
  },
1315
1417
  {
1316
- "moduleName": "./src/components/Modal/Modal.tsx"
1418
+ "moduleName": "./src/components/Picker/Picker.tsx"
1317
1419
  },
1318
1420
  {
1319
- "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1421
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
1320
1422
  },
1321
1423
  {
1322
- "moduleName": "./src/components/Modal/ModalBase.tsx"
1424
+ "moduleName": "./src/components/Popover/Popover.tsx"
1323
1425
  },
1324
1426
  {
1325
- "moduleName": "./src/components/FormField/FormField.tsx"
1427
+ "moduleName": "./src/components/Picker/PickerList.tsx"
1326
1428
  },
1327
1429
  {
1328
- "moduleName": "./src/components/Icon/Icon.tsx"
1430
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1329
1431
  },
1330
1432
  {
1331
- "moduleName": "./src/components/Link/Link.tsx"
1433
+ "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1332
1434
  },
1333
1435
  {
1334
- "moduleName": "./src/components/Input/Input.tsx"
1436
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1335
1437
  },
1336
1438
  {
1337
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1439
+ "moduleName": "./src/components/Modal/ModalBase.tsx"
1338
1440
  },
1339
1441
  {
1340
- "moduleName": "./src/components/Popover/Popover.tsx"
1442
+ "moduleName": "./src/components/Modal/Modal.tsx"
1341
1443
  },
1342
1444
  {
1343
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
1445
+ "moduleName": "./src/components/Loader/Loader.tsx"
1344
1446
  },
1345
1447
  {
1346
1448
  "moduleName": "./src/components/Progress/ProgressCircle.tsx"
1347
1449
  },
1348
1450
  {
1349
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
1451
+ "moduleName": "./src/components/Progress/ProgressBar.tsx"
1350
1452
  },
1351
1453
  {
1352
- "moduleName": "./src/components/Tag/Tag.tsx"
1454
+ "moduleName": "./src/components/RadioButton/RadioButton.tsx"
1353
1455
  },
1354
1456
  {
1355
1457
  "moduleName": "./src/components/Switch/Switch.tsx"
1356
1458
  },
1357
1459
  {
1358
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
1460
+ "moduleName": "./src/components/Tab/Tab.tsx"
1359
1461
  },
1360
1462
  {
1361
- "moduleName": "./src/components/Tab/Tab.tsx"
1463
+ "moduleName": "./src/components/Tab/TabsWrapper.tsx"
1362
1464
  },
1363
1465
  {
1364
- "moduleName": "./src/components/Search/Search.tsx"
1466
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
1467
+ },
1468
+ {
1469
+ "moduleName": "./src/components/Tag/Tag.tsx"
1365
1470
  },
1366
1471
  {
1367
1472
  "moduleName": "./src/components/Toast/Toast.tsx"
@@ -1375,33 +1480,51 @@
1375
1480
  {
1376
1481
  "moduleName": "./src/components/Typography/Heading.tsx"
1377
1482
  },
1483
+ {
1484
+ "moduleName": "./src/components/Search/Search.tsx"
1485
+ },
1378
1486
  {
1379
1487
  "moduleName": "./src/components/Typography/Text.tsx"
1380
1488
  },
1489
+ {
1490
+ "moduleName": "./src/components/Typography/Display.tsx"
1491
+ },
1381
1492
  {
1382
1493
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1383
1494
  },
1495
+ {
1496
+ "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1497
+ },
1384
1498
  {
1385
1499
  "moduleName": "./src/components/Textarea/Textarea.tsx"
1386
1500
  },
1387
1501
  {
1388
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1502
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
1503
+ },
1504
+ {
1505
+ "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1389
1506
  },
1390
1507
  {
1391
1508
  "moduleName": "./src/components/DatePicker/helpers.ts"
1392
1509
  },
1393
1510
  {
1394
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1511
+ "moduleName": "./src/components/Picker/TriggerBody.tsx"
1395
1512
  },
1396
1513
  {
1397
1514
  "moduleName": "./src/components/Picker/Trigger.tsx"
1398
1515
  },
1516
+ {
1517
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
1518
+ },
1399
1519
  {
1400
1520
  "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
1401
1521
  },
1402
1522
  {
1403
1523
  "moduleName": "./src/components/Tooltip/components/Info.tsx"
1404
1524
  },
1525
+ {
1526
+ "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
1527
+ },
1405
1528
  {
1406
1529
  "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
1407
1530
  },
@@ -1411,23 +1534,71 @@
1411
1534
  ]
1412
1535
  },
1413
1536
  {
1414
- "id": "./src/utils/noop.ts",
1415
- "name": "./src/utils/noop.ts",
1537
+ "id": "./src/utils/keyCodes.ts",
1538
+ "name": "./src/utils/keyCodes.ts",
1416
1539
  "reasons": [
1417
1540
  {
1418
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1541
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1419
1542
  },
1420
1543
  {
1421
- "moduleName": "./src/components/Switch/Switch.tsx"
1544
+ "moduleName": "./src/components/Picker/Picker.tsx"
1545
+ },
1546
+ {
1547
+ "moduleName": "./src/components/Picker/PickerList.tsx"
1548
+ },
1549
+ {
1550
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1551
+ },
1552
+ {
1553
+ "moduleName": "./src/components/Modal/ModalBase.tsx"
1554
+ },
1555
+ {
1556
+ "moduleName": "./src/components/TagInput/TagInput.tsx"
1557
+ },
1558
+ {
1559
+ "moduleName": "./src/components/Search/Search.tsx"
1560
+ },
1561
+ {
1562
+ "moduleName": "./src/components/Picker/Trigger.tsx"
1563
+ },
1564
+ {
1565
+ "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
1422
1566
  }
1423
1567
  ]
1424
1568
  },
1425
1569
  {
1426
- "id": "./src/components/SegmentedControl/SegmentedControl.module.scss",
1427
- "name": "./src/components/SegmentedControl/SegmentedControl.module.scss",
1570
+ "id": "./src/components/ActionMenu/ActionMenu.module.scss",
1571
+ "name": "./src/components/ActionMenu/ActionMenu.module.scss",
1428
1572
  "reasons": [
1429
1573
  {
1430
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1574
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1575
+ }
1576
+ ]
1577
+ },
1578
+ {
1579
+ "id": "./src/components/Button/Button.module.scss",
1580
+ "name": "./src/components/Button/Button.module.scss",
1581
+ "reasons": [
1582
+ {
1583
+ "moduleName": "./src/components/Button/Button.tsx"
1584
+ }
1585
+ ]
1586
+ },
1587
+ {
1588
+ "id": "./src/components/FieldGroup/FieldGroup.module.scss",
1589
+ "name": "./src/components/FieldGroup/FieldGroup.module.scss",
1590
+ "reasons": [
1591
+ {
1592
+ "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1593
+ }
1594
+ ]
1595
+ },
1596
+ {
1597
+ "id": "./src/components/Form/Form.module.scss",
1598
+ "name": "./src/components/Form/Form.module.scss",
1599
+ "reasons": [
1600
+ {
1601
+ "moduleName": "./src/components/Form/Form.tsx"
1431
1602
  }
1432
1603
  ]
1433
1604
  },
@@ -1436,44 +1607,47 @@
1436
1607
  "name": "./@livechat/design-system-icons/react/tabler",
1437
1608
  "reasons": [
1438
1609
  {
1439
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1610
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
1440
1611
  },
1441
1612
  {
1442
- "moduleName": "./src/components/Avatar/Avatar.tsx"
1613
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1443
1614
  },
1444
1615
  {
1445
- "moduleName": "./src/components/Card/Card.tsx"
1616
+ "moduleName": "./src/components/Input/Input.tsx"
1446
1617
  },
1447
1618
  {
1448
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1619
+ "moduleName": "./src/components/Card/Card.tsx"
1449
1620
  },
1450
1621
  {
1451
1622
  "moduleName": "./src/components/Alert/Alert.tsx"
1452
1623
  },
1453
1624
  {
1454
- "moduleName": "./src/components/Picker/PickerList.tsx"
1625
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
1455
1626
  },
1456
1627
  {
1457
- "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1628
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1458
1629
  },
1459
1630
  {
1460
- "moduleName": "./src/components/Input/Input.tsx"
1631
+ "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1461
1632
  },
1462
1633
  {
1463
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1634
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1464
1635
  },
1465
1636
  {
1466
- "moduleName": "./src/components/Tag/Tag.tsx"
1637
+ "moduleName": "./src/components/Switch/Switch.tsx"
1467
1638
  },
1468
1639
  {
1469
- "moduleName": "./src/components/Switch/Switch.tsx"
1640
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
1470
1641
  },
1471
1642
  {
1472
- "moduleName": "./src/components/Search/Search.tsx"
1643
+ "moduleName": "./src/components/Tag/Tag.tsx"
1473
1644
  },
1474
1645
  {
1475
1646
  "moduleName": "./src/components/Toast/Toast.tsx"
1476
1647
  },
1648
+ {
1649
+ "moduleName": "./src/components/Search/Search.tsx"
1650
+ },
1477
1651
  {
1478
1652
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1479
1653
  },
@@ -1483,17 +1657,14 @@
1483
1657
  {
1484
1658
  "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1485
1659
  },
1660
+ {
1661
+ "moduleName": "./src/components/Picker/constants.ts"
1662
+ },
1486
1663
  {
1487
1664
  "moduleName": "./src/components/Picker/Trigger.tsx"
1488
- }
1489
- ]
1490
- },
1491
- {
1492
- "id": "./src/components/FieldError/FieldError.module.scss",
1493
- "name": "./src/components/FieldError/FieldError.module.scss",
1494
- "reasons": [
1665
+ },
1495
1666
  {
1496
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1667
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
1497
1668
  }
1498
1669
  ]
1499
1670
  },
@@ -1516,134 +1687,110 @@
1516
1687
  ]
1517
1688
  },
1518
1689
  {
1519
- "id": "./src/components/Card/Card.module.scss",
1520
- "name": "./src/components/Card/Card.module.scss",
1690
+ "id": "./src/components/Checkbox/Checkbox.module.scss",
1691
+ "name": "./src/components/Checkbox/Checkbox.module.scss",
1521
1692
  "reasons": [
1522
1693
  {
1523
- "moduleName": "./src/components/Card/Card.tsx"
1694
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1524
1695
  }
1525
1696
  ]
1526
1697
  },
1527
1698
  {
1528
- "id": "./src/components/Button/Button.module.scss",
1529
- "name": "./src/components/Button/Button.module.scss",
1699
+ "id": "./src/utils/noop.ts",
1700
+ "name": "./src/utils/noop.ts",
1530
1701
  "reasons": [
1531
1702
  {
1532
- "moduleName": "./src/components/Button/Button.tsx"
1703
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1704
+ },
1705
+ {
1706
+ "moduleName": "./src/components/Switch/Switch.tsx"
1533
1707
  }
1534
1708
  ]
1535
1709
  },
1536
1710
  {
1537
- "id": "./src/components/FieldDescription/FieldDescription.module.scss",
1538
- "name": "./src/components/FieldDescription/FieldDescription.module.scss",
1711
+ "id": "./src/components/SegmentedControl/SegmentedControl.module.scss",
1712
+ "name": "./src/components/SegmentedControl/SegmentedControl.module.scss",
1539
1713
  "reasons": [
1540
1714
  {
1541
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1715
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1542
1716
  }
1543
1717
  ]
1544
1718
  },
1545
1719
  {
1546
- "id": "./src/components/Loader/Loader.module.scss",
1547
- "name": "./src/components/Loader/Loader.module.scss",
1720
+ "id": "./src/components/ActionBar/ActionBarItem.tsx",
1721
+ "name": "./src/components/ActionBar/ActionBarItem.tsx",
1548
1722
  "reasons": [
1549
1723
  {
1550
- "moduleName": "./src/components/Loader/Loader.tsx"
1724
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1551
1725
  }
1552
1726
  ]
1553
1727
  },
1554
1728
  {
1555
- "id": "./src/components/ActionMenu/ActionMenuItem.module.scss",
1556
- "name": "./src/components/ActionMenu/ActionMenuItem.module.scss",
1729
+ "id": "./src/components/ActionBar/ActionBar.module.scss",
1730
+ "name": "./src/components/ActionBar/ActionBar.module.scss",
1557
1731
  "reasons": [
1558
1732
  {
1559
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1733
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1734
+ },
1735
+ {
1736
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
1560
1737
  }
1561
1738
  ]
1562
1739
  },
1563
1740
  {
1564
- "id": "./src/components/Checkbox/Checkbox.module.scss",
1565
- "name": "./src/components/Checkbox/Checkbox.module.scss",
1741
+ "id": "./src/components/Input/Input.module.scss",
1742
+ "name": "./src/components/Input/Input.module.scss",
1566
1743
  "reasons": [
1567
1744
  {
1568
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1745
+ "moduleName": "./src/components/Input/Input.tsx"
1569
1746
  }
1570
1747
  ]
1571
1748
  },
1572
1749
  {
1573
- "id": "./src/components/Form/Form.module.scss",
1574
- "name": "./src/components/Form/Form.module.scss",
1750
+ "id": "./react-day-picker",
1751
+ "name": "./react-day-picker",
1575
1752
  "reasons": [
1576
1753
  {
1577
- "moduleName": "./src/components/Form/Form.tsx"
1754
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1578
1755
  }
1579
1756
  ]
1580
1757
  },
1581
1758
  {
1582
- "id": "./src/utils/keyCodes.ts",
1583
- "name": "./src/utils/keyCodes.ts",
1759
+ "id": "./src/components/DatePicker/DatePickerNavbar.tsx",
1760
+ "name": "./src/components/DatePicker/DatePickerNavbar.tsx",
1584
1761
  "reasons": [
1585
1762
  {
1586
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1587
- },
1588
- {
1589
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1590
- },
1591
- {
1592
- "moduleName": "./src/components/Picker/Picker.tsx"
1593
- },
1763
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1764
+ }
1765
+ ]
1766
+ },
1767
+ {
1768
+ "id": "./src/components/DatePicker/helpers.ts",
1769
+ "name": "./src/components/DatePicker/helpers.ts",
1770
+ "reasons": [
1594
1771
  {
1595
- "moduleName": "./src/components/Picker/PickerList.tsx"
1772
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1596
1773
  },
1597
1774
  {
1598
- "moduleName": "./src/components/Modal/ModalBase.tsx"
1775
+ "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1599
1776
  },
1600
1777
  {
1601
- "moduleName": "./src/components/Search/Search.tsx"
1602
- },
1603
- {
1604
- "moduleName": "./src/components/TagInput/TagInput.tsx"
1605
- },
1606
- {
1607
- "moduleName": "./src/components/Picker/Trigger.tsx"
1608
- },
1609
- {
1610
- "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
1611
- }
1612
- ]
1613
- },
1614
- {
1615
- "id": "./src/components/ActionMenu/ActionMenu.module.scss",
1616
- "name": "./src/components/ActionMenu/ActionMenu.module.scss",
1617
- "reasons": [
1618
- {
1619
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1778
+ "moduleName": "./src/components/DatePicker/hooks.ts"
1620
1779
  }
1621
1780
  ]
1622
1781
  },
1623
1782
  {
1624
- "id": "./src/components/Badge/Badge.helpers.ts",
1625
- "name": "./src/components/Badge/Badge.helpers.ts",
1783
+ "id": "./src/components/DatePicker/DatePicker.module.scss",
1784
+ "name": "./src/components/DatePicker/DatePicker.module.scss",
1626
1785
  "reasons": [
1627
1786
  {
1628
- "moduleName": "./src/components/Badge/Badge.tsx"
1629
- }
1630
- ]
1631
- },
1632
- {
1633
- "id": "./src/components/Badge/Badge.module.scss",
1634
- "name": "./src/components/Badge/Badge.module.scss",
1635
- "reasons": [
1787
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1788
+ },
1636
1789
  {
1637
- "moduleName": "./src/components/Badge/Badge.tsx"
1638
- }
1639
- ]
1640
- },
1641
- {
1642
- "id": "./src/components/FieldGroup/FieldGroup.module.scss",
1643
- "name": "./src/components/FieldGroup/FieldGroup.module.scss",
1644
- "reasons": [
1790
+ "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1791
+ },
1645
1792
  {
1646
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1793
+ "moduleName": "./src/components/DatePicker/helpers.ts"
1647
1794
  }
1648
1795
  ]
1649
1796
  },
@@ -1663,26 +1810,11 @@
1663
1810
  {
1664
1811
  "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1665
1812
  },
1666
- {
1667
- "moduleName": "./src/components/DatePicker/helpers.ts"
1668
- },
1669
1813
  {
1670
1814
  "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1671
- }
1672
- ]
1673
- },
1674
- {
1675
- "id": "./src/components/DatePicker/helpers.ts",
1676
- "name": "./src/components/DatePicker/helpers.ts",
1677
- "reasons": [
1678
- {
1679
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1680
1815
  },
1681
1816
  {
1682
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1683
- },
1684
- {
1685
- "moduleName": "./src/components/DatePicker/hooks.ts"
1817
+ "moduleName": "./src/components/DatePicker/helpers.ts"
1686
1818
  }
1687
1819
  ]
1688
1820
  },
@@ -1708,44 +1840,38 @@
1708
1840
  ]
1709
1841
  },
1710
1842
  {
1711
- "id": "./react-day-picker",
1712
- "name": "./react-day-picker",
1843
+ "id": "./src/components/Link/Link.module.scss",
1844
+ "name": "./src/components/Link/Link.module.scss",
1713
1845
  "reasons": [
1714
1846
  {
1715
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1847
+ "moduleName": "./src/components/Link/Link.tsx"
1716
1848
  }
1717
1849
  ]
1718
1850
  },
1719
1851
  {
1720
- "id": "./src/components/DatePicker/DatePickerNavbar.tsx",
1721
- "name": "./src/components/DatePicker/DatePickerNavbar.tsx",
1852
+ "id": "./src/components/Card/Card.module.scss",
1853
+ "name": "./src/components/Card/Card.module.scss",
1722
1854
  "reasons": [
1723
1855
  {
1724
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1856
+ "moduleName": "./src/components/Card/Card.tsx"
1725
1857
  }
1726
1858
  ]
1727
1859
  },
1728
1860
  {
1729
- "id": "./src/components/DatePicker/DatePicker.module.scss",
1730
- "name": "./src/components/DatePicker/DatePicker.module.scss",
1861
+ "id": "./src/components/ActionMenu/ActionMenuItem.module.scss",
1862
+ "name": "./src/components/ActionMenu/ActionMenuItem.module.scss",
1731
1863
  "reasons": [
1732
1864
  {
1733
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1734
- },
1735
- {
1736
- "moduleName": "./src/components/DatePicker/helpers.ts"
1737
- },
1738
- {
1739
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1865
+ "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1740
1866
  }
1741
1867
  ]
1742
1868
  },
1743
1869
  {
1744
- "id": "./src/components/NumericInput/NumericInput.module.scss",
1745
- "name": "./src/components/NumericInput/NumericInput.module.scss",
1870
+ "id": "./src/components/FormField/FormField.module.scss",
1871
+ "name": "./src/components/FormField/FormField.module.scss",
1746
1872
  "reasons": [
1747
1873
  {
1748
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1874
+ "moduleName": "./src/components/FormField/FormField.tsx"
1749
1875
  }
1750
1876
  ]
1751
1877
  },
@@ -1770,6 +1896,42 @@
1770
1896
  }
1771
1897
  ]
1772
1898
  },
1899
+ {
1900
+ "id": "./src/components/FieldDescription/FieldDescription.module.scss",
1901
+ "name": "./src/components/FieldDescription/FieldDescription.module.scss",
1902
+ "reasons": [
1903
+ {
1904
+ "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1905
+ }
1906
+ ]
1907
+ },
1908
+ {
1909
+ "id": "./src/components/Badge/Badge.helpers.ts",
1910
+ "name": "./src/components/Badge/Badge.helpers.ts",
1911
+ "reasons": [
1912
+ {
1913
+ "moduleName": "./src/components/Badge/Badge.tsx"
1914
+ }
1915
+ ]
1916
+ },
1917
+ {
1918
+ "id": "./src/components/Badge/Badge.module.scss",
1919
+ "name": "./src/components/Badge/Badge.module.scss",
1920
+ "reasons": [
1921
+ {
1922
+ "moduleName": "./src/components/Badge/Badge.tsx"
1923
+ }
1924
+ ]
1925
+ },
1926
+ {
1927
+ "id": "./src/components/Icon/Icon.module.scss",
1928
+ "name": "./src/components/Icon/Icon.module.scss",
1929
+ "reasons": [
1930
+ {
1931
+ "moduleName": "./src/components/Icon/Icon.tsx"
1932
+ }
1933
+ ]
1934
+ },
1773
1935
  {
1774
1936
  "id": "./src/components/Picker/constants.ts",
1775
1937
  "name": "./src/components/Picker/constants.ts",
@@ -1810,86 +1972,74 @@
1810
1972
  ]
1811
1973
  },
1812
1974
  {
1813
- "id": "./src/components/Picker/PickerList.module.scss",
1814
- "name": "./src/components/Picker/PickerList.module.scss",
1975
+ "id": "./src/components/FieldError/FieldError.module.scss",
1976
+ "name": "./src/components/FieldError/FieldError.module.scss",
1815
1977
  "reasons": [
1816
1978
  {
1817
- "moduleName": "./src/components/Picker/PickerList.tsx"
1979
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
1818
1980
  }
1819
1981
  ]
1820
1982
  },
1821
1983
  {
1822
- "id": "./src/components/Modal/Modal.module.scss",
1823
- "name": "./src/components/Modal/Modal.module.scss",
1984
+ "id": "./@floating-ui/react-dom",
1985
+ "name": "./@floating-ui/react-dom",
1824
1986
  "reasons": [
1825
1987
  {
1826
- "moduleName": "./src/components/Modal/Modal.tsx"
1827
- },
1828
- {
1829
- "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1988
+ "moduleName": "./src/components/Popover/Popover.tsx"
1830
1989
  },
1831
1990
  {
1832
- "moduleName": "./src/components/Modal/ModalBase.tsx"
1991
+ "moduleName": "./src/components/Tooltip/Tooltip.tsx"
1833
1992
  },
1834
1993
  {
1835
- "moduleName": "./src/components/Modal/ModalHeader.tsx"
1994
+ "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
1836
1995
  }
1837
1996
  ]
1838
1997
  },
1839
1998
  {
1840
- "id": "./react-dom",
1841
- "name": "./react-dom",
1999
+ "id": "./src/components/Popover/Popover.module.scss",
2000
+ "name": "./src/components/Popover/Popover.module.scss",
1842
2001
  "reasons": [
1843
2002
  {
1844
- "moduleName": "./src/components/Modal/ModalPortal.tsx"
2003
+ "moduleName": "./src/components/Popover/Popover.tsx"
1845
2004
  }
1846
2005
  ]
1847
2006
  },
1848
2007
  {
1849
- "id": "./@emotion/css",
1850
- "name": "./@emotion/css",
2008
+ "id": "./src/components/Picker/helpers.ts",
2009
+ "name": "./src/components/Picker/helpers.ts",
1851
2010
  "reasons": [
1852
2011
  {
1853
- "moduleName": "./src/components/Modal/ModalHeader.tsx"
1854
- },
1855
- {
1856
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2012
+ "moduleName": "./src/components/Picker/PickerList.tsx"
1857
2013
  }
1858
2014
  ]
1859
2015
  },
1860
2016
  {
1861
- "id": "./src/components/FormField/FormField.module.scss",
1862
- "name": "./src/components/FormField/FormField.module.scss",
2017
+ "id": "./src/components/Picker/PickerListItem.tsx",
2018
+ "name": "./src/components/Picker/PickerListItem.tsx",
1863
2019
  "reasons": [
1864
2020
  {
1865
- "moduleName": "./src/components/FormField/FormField.tsx"
2021
+ "moduleName": "./src/components/Picker/PickerList.tsx"
1866
2022
  }
1867
2023
  ]
1868
2024
  },
1869
2025
  {
1870
- "id": "./src/components/Icon/Icon.module.scss",
1871
- "name": "./src/components/Icon/Icon.module.scss",
2026
+ "id": "./src/components/Picker/PickerList.module.scss",
2027
+ "name": "./src/components/Picker/PickerList.module.scss",
1872
2028
  "reasons": [
1873
2029
  {
1874
- "moduleName": "./src/components/Icon/Icon.tsx"
1875
- }
1876
- ]
1877
- },
1878
- {
1879
- "id": "./src/components/Link/Link.module.scss",
1880
- "name": "./src/components/Link/Link.module.scss",
1881
- "reasons": [
2030
+ "moduleName": "./src/components/Picker/PickerList.tsx"
2031
+ },
1882
2032
  {
1883
- "moduleName": "./src/components/Link/Link.tsx"
2033
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
1884
2034
  }
1885
2035
  ]
1886
2036
  },
1887
2037
  {
1888
- "id": "./src/components/Input/Input.module.scss",
1889
- "name": "./src/components/Input/Input.module.scss",
2038
+ "id": "./react-dom",
2039
+ "name": "./react-dom",
1890
2040
  "reasons": [
1891
2041
  {
1892
- "moduleName": "./src/components/Input/Input.tsx"
2042
+ "moduleName": "./src/components/Modal/ModalPortal.tsx"
1893
2043
  }
1894
2044
  ]
1895
2045
  },
@@ -1903,95 +2053,86 @@
1903
2053
  ]
1904
2054
  },
1905
2055
  {
1906
- "id": "./@floating-ui/react-dom",
1907
- "name": "./@floating-ui/react-dom",
2056
+ "id": "./src/components/Modal/Modal.module.scss",
2057
+ "name": "./src/components/Modal/Modal.module.scss",
1908
2058
  "reasons": [
1909
2059
  {
1910
- "moduleName": "./src/components/Popover/Popover.tsx"
2060
+ "moduleName": "./src/components/Modal/ModalCloseButton.tsx"
1911
2061
  },
1912
2062
  {
1913
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
2063
+ "moduleName": "./src/components/Modal/ModalBase.tsx"
1914
2064
  },
1915
2065
  {
1916
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2066
+ "moduleName": "./src/components/Modal/Modal.tsx"
1917
2067
  }
1918
2068
  ]
1919
2069
  },
1920
2070
  {
1921
- "id": "./src/components/Popover/Popover.module.scss",
1922
- "name": "./src/components/Popover/Popover.module.scss",
2071
+ "id": "./src/components/NumericInput/NumericInput.module.scss",
2072
+ "name": "./src/components/NumericInput/NumericInput.module.scss",
1923
2073
  "reasons": [
1924
2074
  {
1925
- "moduleName": "./src/components/Popover/Popover.tsx"
2075
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1926
2076
  }
1927
2077
  ]
1928
2078
  },
1929
2079
  {
1930
- "id": "./src/components/Progress/helpers.ts",
1931
- "name": "./src/components/Progress/helpers.ts",
2080
+ "id": "./src/components/Loader/Loader.module.scss",
2081
+ "name": "./src/components/Loader/Loader.module.scss",
1932
2082
  "reasons": [
1933
2083
  {
1934
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
1935
- },
1936
- {
1937
- "moduleName": "./src/components/Progress/ProgressCircle.tsx"
2084
+ "moduleName": "./src/components/Loader/Loader.tsx"
1938
2085
  }
1939
2086
  ]
1940
2087
  },
1941
2088
  {
1942
- "id": "./src/components/Progress/ProgressBar.module.scss",
1943
- "name": "./src/components/Progress/ProgressBar.module.scss",
2089
+ "id": "./@emotion/css",
2090
+ "name": "./@emotion/css",
1944
2091
  "reasons": [
1945
2092
  {
1946
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
1947
- }
1948
- ]
1949
- },
1950
- {
1951
- "id": "./src/components/Progress/ProgressCircle.module.scss",
1952
- "name": "./src/components/Progress/ProgressCircle.module.scss",
1953
- "reasons": [
2093
+ "moduleName": "./src/components/Modal/ModalHeader.tsx"
2094
+ },
1954
2095
  {
1955
- "moduleName": "./src/components/Progress/ProgressCircle.tsx"
2096
+ "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
1956
2097
  }
1957
2098
  ]
1958
2099
  },
1959
2100
  {
1960
- "id": "./src/components/Tab/TabsWrapper.module.scss",
1961
- "name": "./src/components/Tab/TabsWrapper.module.scss",
2101
+ "id": "./src/components/Modal/ModalHeader.module.scss",
2102
+ "name": "./src/components/Modal/ModalHeader.module.scss",
1962
2103
  "reasons": [
1963
2104
  {
1964
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
2105
+ "moduleName": "./src/components/Modal/ModalHeader.tsx"
1965
2106
  }
1966
2107
  ]
1967
2108
  },
1968
2109
  {
1969
- "id": "./polished",
1970
- "name": "./polished",
2110
+ "id": "./src/components/Progress/helpers.ts",
2111
+ "name": "./src/components/Progress/helpers.ts",
1971
2112
  "reasons": [
1972
2113
  {
1973
- "moduleName": "./src/components/Tag/Tag.tsx"
2114
+ "moduleName": "./src/components/Progress/ProgressCircle.tsx"
1974
2115
  },
1975
2116
  {
1976
- "moduleName": "./src/components/Avatar/Avatar.helpers.ts"
2117
+ "moduleName": "./src/components/Progress/ProgressBar.tsx"
1977
2118
  }
1978
2119
  ]
1979
2120
  },
1980
2121
  {
1981
- "id": "./src/components/Tag/Tag.module.scss",
1982
- "name": "./src/components/Tag/Tag.module.scss",
2122
+ "id": "./src/components/Progress/ProgressCircle.module.scss",
2123
+ "name": "./src/components/Progress/ProgressCircle.module.scss",
1983
2124
  "reasons": [
1984
2125
  {
1985
- "moduleName": "./src/components/Tag/Tag.tsx"
2126
+ "moduleName": "./src/components/Progress/ProgressCircle.tsx"
1986
2127
  }
1987
2128
  ]
1988
2129
  },
1989
2130
  {
1990
- "id": "./src/components/Switch/Switch.module.scss",
1991
- "name": "./src/components/Switch/Switch.module.scss",
2131
+ "id": "./src/components/Progress/ProgressBar.module.scss",
2132
+ "name": "./src/components/Progress/ProgressBar.module.scss",
1992
2133
  "reasons": [
1993
2134
  {
1994
- "moduleName": "./src/components/Switch/Switch.tsx"
2135
+ "moduleName": "./src/components/Progress/ProgressBar.tsx"
1995
2136
  }
1996
2137
  ]
1997
2138
  },
@@ -2005,107 +2146,86 @@
2005
2146
  ]
2006
2147
  },
2007
2148
  {
2008
- "id": "./src/components/Tab/Tab.module.scss",
2009
- "name": "./src/components/Tab/Tab.module.scss",
2149
+ "id": "./src/components/Switch/Switch.module.scss",
2150
+ "name": "./src/components/Switch/Switch.module.scss",
2010
2151
  "reasons": [
2011
2152
  {
2012
- "moduleName": "./src/components/Tab/Tab.tsx"
2153
+ "moduleName": "./src/components/Switch/Switch.tsx"
2013
2154
  }
2014
2155
  ]
2015
2156
  },
2016
2157
  {
2017
- "id": "./src/components/Search/Search.module.scss",
2018
- "name": "./src/components/Search/Search.module.scss",
2158
+ "id": "./src/components/Tab/Tab.module.scss",
2159
+ "name": "./src/components/Tab/Tab.module.scss",
2019
2160
  "reasons": [
2020
2161
  {
2021
- "moduleName": "./src/components/Search/Search.tsx"
2162
+ "moduleName": "./src/components/Tab/Tab.tsx"
2022
2163
  }
2023
2164
  ]
2024
2165
  },
2025
2166
  {
2026
- "id": "./src/components/Toast/Toast.module.scss",
2027
- "name": "./src/components/Toast/Toast.module.scss",
2167
+ "id": "./src/components/Tab/TabsWrapper.module.scss",
2168
+ "name": "./src/components/Tab/TabsWrapper.module.scss",
2028
2169
  "reasons": [
2029
2170
  {
2030
- "moduleName": "./src/components/Toast/Toast.tsx"
2031
- },
2032
- {
2033
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2171
+ "moduleName": "./src/components/Tab/TabsWrapper.tsx"
2034
2172
  }
2035
2173
  ]
2036
2174
  },
2037
2175
  {
2038
- "id": "./react-transition-group",
2039
- "name": "./react-transition-group",
2176
+ "id": "./src/components/PromoBannerV2/PromoBannerV2.module.scss",
2177
+ "name": "./src/components/PromoBannerV2/PromoBannerV2.module.scss",
2040
2178
  "reasons": [
2041
2179
  {
2042
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2043
- },
2044
- {
2045
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2046
- },
2047
- {
2048
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2180
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
2049
2181
  }
2050
2182
  ]
2051
2183
  },
2052
2184
  {
2053
- "id": "./src/components/TagInput/EditableTag.tsx",
2054
- "name": "./src/components/TagInput/EditableTag.tsx",
2185
+ "id": "./polished",
2186
+ "name": "./polished",
2055
2187
  "reasons": [
2056
2188
  {
2057
- "moduleName": "./src/components/TagInput/TagInput.tsx"
2189
+ "moduleName": "./src/components/Tag/Tag.tsx"
2190
+ },
2191
+ {
2192
+ "moduleName": "./src/components/Avatar/Avatar.helpers.ts"
2058
2193
  }
2059
2194
  ]
2060
2195
  },
2061
2196
  {
2062
- "id": "./src/components/TagInput/TagInput.module.scss",
2063
- "name": "./src/components/TagInput/TagInput.module.scss",
2197
+ "id": "./src/components/Tag/Tag.module.scss",
2198
+ "name": "./src/components/Tag/Tag.module.scss",
2064
2199
  "reasons": [
2065
2200
  {
2066
- "moduleName": "./src/components/TagInput/TagInput.tsx"
2067
- },
2068
- {
2069
- "moduleName": "./src/components/TagInput/EditableTag.tsx"
2201
+ "moduleName": "./src/components/Tag/Tag.tsx"
2070
2202
  }
2071
2203
  ]
2072
2204
  },
2073
2205
  {
2074
- "id": "./src/components/Typography/Typography.module.scss",
2075
- "name": "./src/components/Typography/Typography.module.scss",
2206
+ "id": "./src/components/Toast/Toast.module.scss",
2207
+ "name": "./src/components/Toast/Toast.module.scss",
2076
2208
  "reasons": [
2077
2209
  {
2078
- "moduleName": "./src/components/Typography/Heading.tsx"
2210
+ "moduleName": "./src/components/Toast/Toast.tsx"
2079
2211
  },
2080
2212
  {
2081
- "moduleName": "./src/components/Typography/Text.tsx"
2213
+ "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2082
2214
  }
2083
2215
  ]
2084
2216
  },
2085
2217
  {
2086
- "id": "./src/components/FileUploadProgress/FileUploadProgress.module.scss",
2087
- "name": "./src/components/FileUploadProgress/FileUploadProgress.module.scss",
2218
+ "id": "./react-transition-group",
2219
+ "name": "./react-transition-group",
2088
2220
  "reasons": [
2089
2221
  {
2090
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2091
- }
2092
- ]
2093
- },
2094
- {
2095
- "id": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
2096
- "name": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
2097
- "reasons": [
2222
+ "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2223
+ },
2098
2224
  {
2099
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
2100
- }
2101
- ]
2102
- },
2103
- {
2104
- "id": "./src/components/Textarea/Textarea.module.scss",
2105
- "name": "./src/components/Textarea/Textarea.module.scss",
2106
- "reasons": [
2225
+ "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2226
+ },
2107
2227
  {
2108
- "moduleName": "./src/components/Textarea/Textarea.tsx"
2228
+ "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2109
2229
  }
2110
2230
  ]
2111
2231
  },
@@ -2196,6 +2316,27 @@
2196
2316
  }
2197
2317
  ]
2198
2318
  },
2319
+ {
2320
+ "id": "./src/components/TagInput/EditableTag.tsx",
2321
+ "name": "./src/components/TagInput/EditableTag.tsx",
2322
+ "reasons": [
2323
+ {
2324
+ "moduleName": "./src/components/TagInput/TagInput.tsx"
2325
+ }
2326
+ ]
2327
+ },
2328
+ {
2329
+ "id": "./src/components/TagInput/TagInput.module.scss",
2330
+ "name": "./src/components/TagInput/TagInput.module.scss",
2331
+ "reasons": [
2332
+ {
2333
+ "moduleName": "./src/components/TagInput/TagInput.tsx"
2334
+ },
2335
+ {
2336
+ "moduleName": "./src/components/TagInput/EditableTag.tsx"
2337
+ }
2338
+ ]
2339
+ },
2199
2340
  {
2200
2341
  "id": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx",
2201
2342
  "name": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx",
@@ -2205,6 +2346,48 @@
2205
2346
  }
2206
2347
  ]
2207
2348
  },
2349
+ {
2350
+ "id": "./src/components/Typography/Typography.module.scss",
2351
+ "name": "./src/components/Typography/Typography.module.scss",
2352
+ "reasons": [
2353
+ {
2354
+ "moduleName": "./src/components/Typography/Heading.tsx"
2355
+ },
2356
+ {
2357
+ "moduleName": "./src/components/Typography/Text.tsx"
2358
+ },
2359
+ {
2360
+ "moduleName": "./src/components/Typography/Display.tsx"
2361
+ }
2362
+ ]
2363
+ },
2364
+ {
2365
+ "id": "./src/components/Search/Search.module.scss",
2366
+ "name": "./src/components/Search/Search.module.scss",
2367
+ "reasons": [
2368
+ {
2369
+ "moduleName": "./src/components/Search/Search.tsx"
2370
+ }
2371
+ ]
2372
+ },
2373
+ {
2374
+ "id": "./src/components/FileUploadProgress/FileUploadProgress.module.scss",
2375
+ "name": "./src/components/FileUploadProgress/FileUploadProgress.module.scss",
2376
+ "reasons": [
2377
+ {
2378
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2379
+ }
2380
+ ]
2381
+ },
2382
+ {
2383
+ "id": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
2384
+ "name": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
2385
+ "reasons": [
2386
+ {
2387
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
2388
+ }
2389
+ ]
2390
+ },
2208
2391
  {
2209
2392
  "id": "./src/components/UploadBar/UploadBar.module.scss",
2210
2393
  "name": "./src/components/UploadBar/UploadBar.module.scss",
@@ -2214,6 +2397,15 @@
2214
2397
  }
2215
2398
  ]
2216
2399
  },
2400
+ {
2401
+ "id": "./src/components/Textarea/Textarea.module.scss",
2402
+ "name": "./src/components/Textarea/Textarea.module.scss",
2403
+ "reasons": [
2404
+ {
2405
+ "moduleName": "./src/components/Textarea/Textarea.tsx"
2406
+ }
2407
+ ]
2408
+ },
2217
2409
  {
2218
2410
  "id": "./@livechat/design-system-icons/react/material",
2219
2411
  "name": "./@livechat/design-system-icons/react/material",