@livechat/design-system-react-components 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (241) 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 +15 -0
  5. package/dist/components/ActionBar/index.d.ts +2 -0
  6. package/dist/components/ActionMenu/ActionMenu.d.ts +50 -0
  7. package/dist/components/ActionMenu/ActionMenu.spec.d.ts +1 -0
  8. package/dist/components/ActionMenu/ActionMenu.stories.d.ts +11 -0
  9. package/dist/components/ActionMenu/ActionMenuItem.d.ts +16 -0
  10. package/dist/components/ActionMenu/constants.d.ts +15 -0
  11. package/dist/components/ActionMenu/index.d.ts +3 -0
  12. package/dist/components/ActionMenu/types.d.ts +9 -0
  13. package/dist/components/Alert/Alert.d.ts +32 -0
  14. package/dist/components/Alert/Alert.spec.d.ts +1 -0
  15. package/dist/components/Alert/Alert.stories.d.ts +9 -0
  16. package/dist/components/Alert/index.d.ts +1 -0
  17. package/dist/components/Avatar/Avatar.d.ts +49 -0
  18. package/dist/components/Avatar/Avatar.helpers.d.ts +3 -0
  19. package/dist/components/Avatar/Avatar.helpers.spec.d.ts +1 -0
  20. package/dist/components/Avatar/Avatar.spec.d.ts +1 -0
  21. package/dist/components/Avatar/Avatar.stories.d.ts +22 -0
  22. package/dist/components/Avatar/index.d.ts +3 -0
  23. package/dist/components/Badge/Badge.d.ts +24 -0
  24. package/dist/components/Badge/Badge.helpers.d.ts +1 -0
  25. package/dist/components/Badge/Badge.spec.d.ts +1 -0
  26. package/dist/components/Badge/Badge.stories.d.ts +12 -0
  27. package/dist/components/Badge/index.d.ts +1 -0
  28. package/dist/components/Button/Button.d.ts +63 -0
  29. package/dist/components/Button/Button.spec.d.ts +1 -0
  30. package/dist/components/Button/Button.stories.d.ts +42 -0
  31. package/dist/components/Button/index.d.ts +2 -0
  32. package/dist/components/Card/Card.d.ts +30 -0
  33. package/dist/components/Card/Card.spec.d.ts +1 -0
  34. package/dist/components/Card/Card.stories.d.ts +11 -0
  35. package/dist/components/Card/index.d.ts +2 -0
  36. package/dist/components/Checkbox/Checkbox.d.ts +16 -0
  37. package/dist/components/Checkbox/Checkbox.spec.d.ts +1 -0
  38. package/dist/components/Checkbox/Checkbox.stories.d.ts +13 -0
  39. package/dist/components/Checkbox/index.d.ts +1 -0
  40. package/dist/components/DatePicker/DatePicker.d.ts +4 -0
  41. package/dist/components/DatePicker/DatePicker.spec.d.ts +1 -0
  42. package/dist/components/DatePicker/DatePicker.stories.d.ts +7 -0
  43. package/dist/components/DatePicker/DatePickerNavbar.d.ts +4 -0
  44. package/dist/components/DatePicker/DatePickerRangeCalendarsWrapper.d.ts +2 -0
  45. package/dist/components/DatePicker/RangeDatePicker.d.ts +16 -0
  46. package/dist/components/DatePicker/RangeDatePicker.spec.d.ts +1 -0
  47. package/dist/components/DatePicker/RangeDatePicker.stories.d.ts +4 -0
  48. package/dist/components/DatePicker/helpers.d.ts +16 -0
  49. package/dist/components/DatePicker/hooks.d.ts +6 -0
  50. package/dist/components/DatePicker/index.d.ts +2 -0
  51. package/dist/components/DatePicker/types.d.ts +100 -0
  52. package/dist/components/DetailsCard/DetailsCard.d.ts +28 -0
  53. package/dist/components/DetailsCard/DetailsCard.spec.d.ts +1 -0
  54. package/dist/components/DetailsCard/DetailsCard.stories.d.ts +17 -0
  55. package/dist/components/DetailsCard/index.d.ts +2 -0
  56. package/dist/components/DetailsCardInfo/DetailsCardInfo.d.ts +8 -0
  57. package/dist/components/DetailsCardInfo/index.d.ts +1 -0
  58. package/dist/components/FieldDescription/FieldDescription.d.ts +3 -0
  59. package/dist/components/FieldDescription/index.d.ts +1 -0
  60. package/dist/components/FieldError/FieldError.d.ts +3 -0
  61. package/dist/components/FieldError/index.d.ts +1 -0
  62. package/dist/components/FieldGroup/FieldGroup.d.ts +8 -0
  63. package/dist/components/FieldGroup/FieldGroup.spec.d.ts +1 -0
  64. package/dist/components/FieldGroup/FieldGroup.stories.d.ts +10 -0
  65. package/dist/components/FieldGroup/index.d.ts +1 -0
  66. package/dist/components/FileUploadProgress/FileUploadProgress.d.ts +42 -0
  67. package/dist/components/FileUploadProgress/FileUploadProgress.stories.d.ts +7 -0
  68. package/dist/components/FileUploadProgress/FileUploadProgressActions.d.ts +9 -0
  69. package/dist/components/FileUploadProgress/index.d.ts +2 -0
  70. package/dist/components/Form/Form.d.ts +16 -0
  71. package/dist/components/Form/Form.spec.d.ts +1 -0
  72. package/dist/components/Form/Form.stories.d.ts +8 -0
  73. package/dist/components/Form/index.d.ts +2 -0
  74. package/dist/components/FormField/FormField.d.ts +40 -0
  75. package/dist/components/FormField/FormField.spec.d.ts +1 -0
  76. package/dist/components/FormField/FormField.stories.d.ts +9 -0
  77. package/dist/components/FormField/index.d.ts +1 -0
  78. package/dist/components/FormGroup/FormGroup.d.ts +16 -0
  79. package/dist/components/FormGroup/FormGroup.spec.d.ts +1 -0
  80. package/dist/components/FormGroup/FormGroup.stories.d.ts +10 -0
  81. package/dist/components/FormGroup/index.d.ts +1 -0
  82. package/dist/components/Icon/Icon.d.ts +32 -0
  83. package/dist/components/Icon/Icon.stories.d.ts +15 -0
  84. package/dist/components/Icon/index.d.ts +2 -0
  85. package/dist/components/Icon/types.d.ts +2 -0
  86. package/dist/components/Input/Input.d.ts +29 -0
  87. package/dist/components/Input/Input.spec.d.ts +1 -0
  88. package/dist/components/Input/Input.stories.d.ts +10 -0
  89. package/dist/components/Input/index.d.ts +1 -0
  90. package/dist/components/Link/Link.d.ts +14 -0
  91. package/dist/components/Link/Link.stories.d.ts +12 -0
  92. package/dist/components/Link/index.d.ts +1 -0
  93. package/dist/components/Loader/Loader.d.ts +20 -0
  94. package/dist/components/Loader/Loader.spec.d.ts +1 -0
  95. package/dist/components/Loader/Loader.stories.d.ts +10 -0
  96. package/dist/components/Loader/index.d.ts +1 -0
  97. package/dist/components/Modal/Modal.d.ts +25 -0
  98. package/dist/components/Modal/Modal.spec.d.ts +1 -0
  99. package/dist/components/Modal/Modal.stories.d.ts +14 -0
  100. package/dist/components/Modal/StoriesComponents.d.ts +4 -0
  101. package/dist/components/Modal/components/ModalBase.d.ts +20 -0
  102. package/dist/components/Modal/components/ModalBase.spec.d.ts +1 -0
  103. package/dist/components/Modal/components/ModalCloseButton.d.ts +7 -0
  104. package/dist/components/Modal/components/ModalHeader.d.ts +26 -0
  105. package/dist/components/Modal/components/ModalPortal.d.ts +7 -0
  106. package/dist/components/Modal/index.d.ts +10 -0
  107. package/dist/components/NumericInput/NumericInput.d.ts +12 -0
  108. package/dist/components/NumericInput/NumericInput.spec.d.ts +1 -0
  109. package/dist/components/NumericInput/NumericInput.stories.d.ts +20 -0
  110. package/dist/components/NumericInput/index.d.ts +1 -0
  111. package/dist/components/Picker/Picker.d.ts +78 -0
  112. package/dist/components/Picker/Picker.spec.d.ts +1 -0
  113. package/dist/components/Picker/Picker.stories.d.ts +11 -0
  114. package/dist/components/Picker/PickerList.d.ts +14 -0
  115. package/dist/components/Picker/PickerList.spec.d.ts +1 -0
  116. package/dist/components/Picker/PickerListItem.d.ts +11 -0
  117. package/dist/components/Picker/Trigger.d.ts +17 -0
  118. package/dist/components/Picker/Trigger.spec.d.ts +1 -0
  119. package/dist/components/Picker/TriggerBody.d.ts +16 -0
  120. package/dist/components/Picker/TriggerBody.spec.d.ts +1 -0
  121. package/dist/components/Picker/constants.d.ts +50 -0
  122. package/dist/components/Picker/helpers.d.ts +2 -0
  123. package/dist/components/Picker/index.d.ts +3 -0
  124. package/dist/components/Picker/types.d.ts +17 -0
  125. package/dist/components/Popover/Popover.d.ts +38 -0
  126. package/dist/components/Popover/Popover.spec.d.ts +1 -0
  127. package/dist/components/Popover/Popover.stories.d.ts +13 -0
  128. package/dist/components/Popover/index.d.ts +1 -0
  129. package/dist/components/Progress/ProgressBar.d.ts +21 -0
  130. package/dist/components/Progress/ProgressBar.spec.d.ts +1 -0
  131. package/dist/components/Progress/ProgressBar.stories.d.ts +12 -0
  132. package/dist/components/Progress/ProgressCircle.d.ts +21 -0
  133. package/dist/components/Progress/ProgressCircle.spec.d.ts +1 -0
  134. package/dist/components/Progress/ProgressCircle.stories.d.ts +12 -0
  135. package/dist/components/Progress/constants.d.ts +4 -0
  136. package/dist/components/Progress/helpers.d.ts +3 -0
  137. package/dist/components/Progress/index.d.ts +2 -0
  138. package/dist/components/PromoBanner/PromoBanner.d.ts +43 -0
  139. package/dist/components/PromoBanner/PromoBanner.spec.d.ts +1 -0
  140. package/dist/components/PromoBanner/PromoBanner.stories.d.ts +11 -0
  141. package/dist/components/PromoBanner/index.d.ts +1 -0
  142. package/dist/components/PromoBannerV2/PromoBannerV2.d.ts +33 -0
  143. package/dist/components/PromoBannerV2/PromoBannerV2.spec.d.ts +1 -0
  144. package/dist/components/PromoBannerV2/PromoBannerV2.stories.d.ts +23 -0
  145. package/dist/components/PromoBannerV2/constants.d.ts +1 -0
  146. package/dist/components/PromoBannerV2/index.d.ts +2 -0
  147. package/dist/components/RadioButton/RadioButton.d.ts +7 -0
  148. package/dist/components/RadioButton/RadioButton.spec.d.ts +1 -0
  149. package/dist/components/RadioButton/RadioButton.stories.d.ts +13 -0
  150. package/dist/components/RadioButton/index.d.ts +1 -0
  151. package/dist/components/Search/Search.d.ts +36 -0
  152. package/dist/components/Search/Search.spec.d.ts +1 -0
  153. package/dist/components/Search/Search.stories.d.ts +19 -0
  154. package/dist/components/Search/index.d.ts +1 -0
  155. package/dist/components/SegmentedControl/SegmentedControl.d.ts +39 -0
  156. package/dist/components/SegmentedControl/SegmentedControl.spec.d.ts +1 -0
  157. package/dist/components/SegmentedControl/SegmentedControl.stories.d.ts +9 -0
  158. package/dist/components/SegmentedControl/index.d.ts +2 -0
  159. package/dist/components/Switch/Switch.d.ts +47 -0
  160. package/dist/components/Switch/Switch.spec.d.ts +1 -0
  161. package/dist/components/Switch/Switch.stories.d.ts +11 -0
  162. package/dist/components/Switch/index.d.ts +1 -0
  163. package/dist/components/Tab/Tab.d.ts +15 -0
  164. package/dist/components/Tab/Tab.spec.d.ts +1 -0
  165. package/dist/components/Tab/Tab.stories.d.ts +29 -0
  166. package/dist/components/Tab/TabsWrapper.d.ts +3 -0
  167. package/dist/components/Tab/TabsWrapper.spec.d.ts +1 -0
  168. package/dist/components/Tab/TabsWrapper.stories.d.ts +18 -0
  169. package/dist/components/Tab/index.d.ts +2 -0
  170. package/dist/components/Tag/Tag.d.ts +36 -0
  171. package/dist/components/Tag/Tag.spec.d.ts +1 -0
  172. package/dist/components/Tag/Tag.stories.d.ts +26 -0
  173. package/dist/components/Tag/index.d.ts +2 -0
  174. package/dist/components/TagInput/EditableTag.d.ts +11 -0
  175. package/dist/components/TagInput/EditableTagContent.d.ts +11 -0
  176. package/dist/components/TagInput/EmailTagInput.d.ts +5 -0
  177. package/dist/components/TagInput/TagInput.d.ts +32 -0
  178. package/dist/components/TagInput/TagInput.spec.d.ts +1 -0
  179. package/dist/components/TagInput/TagInput.stories.d.ts +10 -0
  180. package/dist/components/TagInput/index.d.ts +4 -0
  181. package/dist/components/Textarea/Textarea.d.ts +6 -0
  182. package/dist/components/Textarea/Textarea.spec.d.ts +1 -0
  183. package/dist/components/Textarea/Textarea.stories.d.ts +7 -0
  184. package/dist/components/Textarea/index.d.ts +1 -0
  185. package/dist/components/Toast/Toast.d.ts +16 -0
  186. package/dist/components/Toast/Toast.spec.d.ts +1 -0
  187. package/dist/components/Toast/Toast.stories.d.ts +14 -0
  188. package/dist/components/Toast/ToastWrapper.d.ts +20 -0
  189. package/dist/components/Toast/ToastWrapper.spec.d.ts +1 -0
  190. package/dist/components/Toast/ToastWrapper.stories.d.ts +34 -0
  191. package/dist/components/Toast/index.d.ts +2 -0
  192. package/dist/components/Tooltip/Tooltip.d.ts +3 -0
  193. package/dist/components/Tooltip/Tooltip.spec.d.ts +1 -0
  194. package/dist/components/Tooltip/Tooltip.stories.d.ts +41 -0
  195. package/dist/components/Tooltip/components/FloatingComponent.d.ts +18 -0
  196. package/dist/components/Tooltip/components/Info.d.ts +9 -0
  197. package/dist/components/Tooltip/components/Interactive.d.ts +15 -0
  198. package/dist/components/Tooltip/components/Reports.d.ts +7 -0
  199. package/dist/components/Tooltip/components/Simple.d.ts +4 -0
  200. package/dist/components/Tooltip/components/UserGuide/SpotlightOverlay.d.ts +8 -0
  201. package/dist/components/Tooltip/components/UserGuide/UserGuide.d.ts +12 -0
  202. package/dist/components/Tooltip/components/UserGuide/UserGuideStep.d.ts +16 -0
  203. package/dist/components/Tooltip/components/UserGuide/index.d.ts +1 -0
  204. package/dist/components/Tooltip/components/UserGuide/virtualElementReference.d.ts +9 -0
  205. package/dist/components/Tooltip/components/index.d.ts +5 -0
  206. package/dist/components/Tooltip/helpers.d.ts +4 -0
  207. package/dist/components/Tooltip/index.d.ts +4 -0
  208. package/dist/components/Tooltip/types.d.ts +30 -0
  209. package/dist/components/Typography/Display.d.ts +10 -0
  210. package/dist/components/Typography/Heading.d.ts +11 -0
  211. package/dist/components/Typography/Text.d.ts +15 -0
  212. package/dist/components/Typography/index.d.ts +3 -0
  213. package/dist/components/UploadBar/UploadBar.d.ts +49 -0
  214. package/dist/components/UploadBar/UploadBar.stories.d.ts +7 -0
  215. package/dist/components/UploadBar/index.d.ts +1 -0
  216. package/dist/dsrc.cjs.js +10 -10
  217. package/dist/dsrc.es.js +2017 -1899
  218. package/dist/foundations/radius-token.d.ts +6 -0
  219. package/dist/foundations/shadow-token.d.ts +6 -0
  220. package/dist/foundations/spacing-token.d.ts +17 -0
  221. package/dist/index.d.ts +46 -0
  222. package/dist/preview-stats.json +569 -1862
  223. package/dist/stories/components/BlockColumns.d.ts +8 -0
  224. package/dist/stories/components/ColorTokens.d.ts +2 -0
  225. package/dist/stories/components/Radius.d.ts +2 -0
  226. package/dist/stories/components/RadiusExamples.d.ts +2 -0
  227. package/dist/stories/components/Spacing.d.ts +2 -0
  228. package/dist/stories/components/SpacingExamples.d.ts +2 -0
  229. package/dist/stories/components/StoryDescriptor.d.ts +6 -0
  230. package/dist/stories/components/TablerIconsShowcase.d.ts +6 -0
  231. package/dist/style.css +1 -1
  232. package/dist/test/setup.d.ts +0 -0
  233. package/dist/test/utils.d.ts +3 -0
  234. package/dist/themes/design-token.d.ts +276 -0
  235. package/dist/utils/PdfIcon.d.ts +2 -0
  236. package/dist/utils/constants.d.ts +1 -0
  237. package/dist/utils/index.d.ts +1 -0
  238. package/dist/utils/keyCodes.d.ts +12 -0
  239. package/dist/utils/noop.d.ts +1 -0
  240. package/dist/utils/story-parameters.d.ts +2 -0
  241. package/package.json +5 -5
@@ -4,9 +4,6 @@
4
4
  "id": "./src/index.scss",
5
5
  "name": "./src/index.scss",
6
6
  "reasons": [
7
- {
8
- "moduleName": "./src/index.ts"
9
- },
10
7
  {
11
8
  "moduleName": "./src/index.ts"
12
9
  }
@@ -16,9 +13,6 @@
16
13
  "id": "./src/themes/design-token.ts",
17
14
  "name": "./src/themes/design-token.ts",
18
15
  "reasons": [
19
- {
20
- "moduleName": "./src/index.ts"
21
- },
22
16
  {
23
17
  "moduleName": "./src/index.ts"
24
18
  }
@@ -28,9 +22,6 @@
28
22
  "id": "./src/foundations/spacing-token.ts",
29
23
  "name": "./src/foundations/spacing-token.ts",
30
24
  "reasons": [
31
- {
32
- "moduleName": "./src/index.ts"
33
- },
34
25
  {
35
26
  "moduleName": "./src/index.ts"
36
27
  }
@@ -40,9 +31,6 @@
40
31
  "id": "./src/foundations/shadow-token.ts",
41
32
  "name": "./src/foundations/shadow-token.ts",
42
33
  "reasons": [
43
- {
44
- "moduleName": "./src/index.ts"
45
- },
46
34
  {
47
35
  "moduleName": "./src/index.ts"
48
36
  }
@@ -52,9 +40,6 @@
52
40
  "id": "./src/foundations/radius-token.ts",
53
41
  "name": "./src/foundations/radius-token.ts",
54
42
  "reasons": [
55
- {
56
- "moduleName": "./src/index.ts"
57
- },
58
43
  {
59
44
  "moduleName": "./src/index.ts"
60
45
  }
@@ -64,9 +49,6 @@
64
49
  "id": "./src/components/ActionBar/index.ts",
65
50
  "name": "./src/components/ActionBar/index.ts",
66
51
  "reasons": [
67
- {
68
- "moduleName": "./src/index.ts"
69
- },
70
52
  {
71
53
  "moduleName": "./src/index.ts"
72
54
  }
@@ -81,12 +63,6 @@
81
63
  },
82
64
  {
83
65
  "moduleName": "./src/components/ActionBar/ActionBar.tsx"
84
- },
85
- {
86
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
87
- },
88
- {
89
- "moduleName": "./src/index.ts"
90
66
  }
91
67
  ]
92
68
  },
@@ -94,9 +70,6 @@
94
70
  "id": "./src/components/Alert/index.ts",
95
71
  "name": "./src/components/Alert/index.ts",
96
72
  "reasons": [
97
- {
98
- "moduleName": "./src/index.ts"
99
- },
100
73
  {
101
74
  "moduleName": "./src/index.ts"
102
75
  }
@@ -111,12 +84,6 @@
111
84
  },
112
85
  {
113
86
  "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
114
- },
115
- {
116
- "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
117
- },
118
- {
119
- "moduleName": "./src/index.ts"
120
87
  }
121
88
  ]
122
89
  },
@@ -129,12 +96,6 @@
129
96
  },
130
97
  {
131
98
  "moduleName": "./src/components/Tab/Tab.tsx"
132
- },
133
- {
134
- "moduleName": "./src/components/Tab/Tab.tsx"
135
- },
136
- {
137
- "moduleName": "./src/index.ts"
138
99
  }
139
100
  ]
140
101
  },
@@ -146,13 +107,13 @@
146
107
  "moduleName": "./src/index.ts"
147
108
  },
148
109
  {
149
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
110
+ "moduleName": "./src/components/Alert/Alert.tsx"
150
111
  },
151
112
  {
152
- "moduleName": "./src/components/Alert/Alert.tsx"
113
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
153
114
  },
154
115
  {
155
- "moduleName": "./src/components/Input/Input.tsx"
116
+ "moduleName": "./src/components/DetailsCard/DetailsCard.tsx"
156
117
  },
157
118
  {
158
119
  "moduleName": "./src/components/Card/Card.tsx"
@@ -160,65 +121,26 @@
160
121
  {
161
122
  "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
162
123
  },
163
- {
164
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
165
- },
166
- {
167
- "moduleName": "./src/components/Search/Search.tsx"
168
- },
169
- {
170
- "moduleName": "./src/components/Toast/Toast.tsx"
171
- },
172
- {
173
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
174
- },
175
- {
176
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
177
- },
178
- {
179
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
180
- },
181
- {
182
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
183
- },
184
- {
185
- "moduleName": "./src/components/Alert/Alert.tsx"
186
- },
187
- {
188
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
189
- },
190
- {
191
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
192
- },
193
- {
194
- "moduleName": "./src/components/Card/Card.tsx"
195
- },
196
124
  {
197
125
  "moduleName": "./src/components/Input/Input.tsx"
198
126
  },
199
127
  {
200
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
128
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
201
129
  },
202
130
  {
203
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
131
+ "moduleName": "./src/components/Search/Search.tsx"
204
132
  },
205
133
  {
206
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
134
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
207
135
  },
208
136
  {
209
137
  "moduleName": "./src/components/Toast/Toast.tsx"
210
138
  },
211
139
  {
212
- "moduleName": "./src/components/Search/Search.tsx"
213
- },
214
- {
215
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
140
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
216
141
  },
217
142
  {
218
143
  "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
219
- },
220
- {
221
- "moduleName": "./src/index.ts"
222
144
  }
223
145
  ]
224
146
  },
@@ -226,9 +148,6 @@
226
148
  "id": "./src/components/SegmentedControl/index.ts",
227
149
  "name": "./src/components/SegmentedControl/index.ts",
228
150
  "reasons": [
229
- {
230
- "moduleName": "./src/index.ts"
231
- },
232
151
  {
233
152
  "moduleName": "./src/index.ts"
234
153
  }
@@ -238,9 +157,6 @@
238
157
  "id": "./src/components/Card/index.ts",
239
158
  "name": "./src/components/Card/index.ts",
240
159
  "reasons": [
241
- {
242
- "moduleName": "./src/index.ts"
243
- },
244
160
  {
245
161
  "moduleName": "./src/index.ts"
246
162
  }
@@ -250,9 +166,6 @@
250
166
  "id": "./src/components/Checkbox/index.ts",
251
167
  "name": "./src/components/Checkbox/index.ts",
252
168
  "reasons": [
253
- {
254
- "moduleName": "./src/index.ts"
255
- },
256
169
  {
257
170
  "moduleName": "./src/index.ts"
258
171
  }
@@ -264,7 +177,22 @@
264
177
  "reasons": [
265
178
  {
266
179
  "moduleName": "./src/index.ts"
267
- },
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "id": "./src/components/DetailsCard/index.ts",
185
+ "name": "./src/components/DetailsCard/index.ts",
186
+ "reasons": [
187
+ {
188
+ "moduleName": "./src/index.ts"
189
+ }
190
+ ]
191
+ },
192
+ {
193
+ "id": "./src/components/DetailsCardInfo/index.ts",
194
+ "name": "./src/components/DetailsCardInfo/index.ts",
195
+ "reasons": [
268
196
  {
269
197
  "moduleName": "./src/index.ts"
270
198
  }
@@ -277,18 +205,6 @@
277
205
  {
278
206
  "moduleName": "./src/index.ts"
279
207
  },
280
- {
281
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
282
- },
283
- {
284
- "moduleName": "./src/components/FormField/FormField.tsx"
285
- },
286
- {
287
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
288
- },
289
- {
290
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
291
- },
292
208
  {
293
209
  "moduleName": "./src/components/Checkbox/Checkbox.tsx"
294
210
  },
@@ -300,9 +216,6 @@
300
216
  },
301
217
  {
302
218
  "moduleName": "./src/components/RadioButton/RadioButton.tsx"
303
- },
304
- {
305
- "moduleName": "./src/index.ts"
306
219
  }
307
220
  ]
308
221
  },
@@ -321,18 +234,6 @@
321
234
  },
322
235
  {
323
236
  "moduleName": "./src/components/TagInput/TagInput.tsx"
324
- },
325
- {
326
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
327
- },
328
- {
329
- "moduleName": "./src/components/FormField/FormField.tsx"
330
- },
331
- {
332
- "moduleName": "./src/components/TagInput/TagInput.tsx"
333
- },
334
- {
335
- "moduleName": "./src/index.ts"
336
237
  }
337
238
  ]
338
239
  },
@@ -340,9 +241,6 @@
340
241
  "id": "./src/components/FieldGroup/index.ts",
341
242
  "name": "./src/components/FieldGroup/index.ts",
342
243
  "reasons": [
343
- {
344
- "moduleName": "./src/index.ts"
345
- },
346
244
  {
347
245
  "moduleName": "./src/index.ts"
348
246
  }
@@ -352,9 +250,6 @@
352
250
  "id": "./src/components/Form/index.ts",
353
251
  "name": "./src/components/Form/index.ts",
354
252
  "reasons": [
355
- {
356
- "moduleName": "./src/index.ts"
357
- },
358
253
  {
359
254
  "moduleName": "./src/index.ts"
360
255
  }
@@ -364,9 +259,6 @@
364
259
  "id": "./src/components/FormField/index.ts",
365
260
  "name": "./src/components/FormField/index.ts",
366
261
  "reasons": [
367
- {
368
- "moduleName": "./src/index.ts"
369
- },
370
262
  {
371
263
  "moduleName": "./src/index.ts"
372
264
  }
@@ -376,9 +268,6 @@
376
268
  "id": "./src/components/FormGroup/index.ts",
377
269
  "name": "./src/components/FormGroup/index.ts",
378
270
  "reasons": [
379
- {
380
- "moduleName": "./src/index.ts"
381
- },
382
271
  {
383
272
  "moduleName": "./src/index.ts"
384
273
  }
@@ -391,23 +280,20 @@
391
280
  {
392
281
  "moduleName": "./src/index.ts"
393
282
  },
394
- {
395
- "moduleName": "./src/components/Avatar/Avatar.tsx"
396
- },
397
283
  {
398
284
  "moduleName": "./src/components/ActionBar/ActionBar.tsx"
399
285
  },
400
286
  {
401
- "moduleName": "./src/components/FieldError/FieldError.tsx"
287
+ "moduleName": "./src/components/Alert/Alert.tsx"
402
288
  },
403
289
  {
404
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
290
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
405
291
  },
406
292
  {
407
- "moduleName": "./src/components/Alert/Alert.tsx"
293
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
408
294
  },
409
295
  {
410
- "moduleName": "./src/components/Input/Input.tsx"
296
+ "moduleName": "./src/components/DetailsCard/DetailsCard.tsx"
411
297
  },
412
298
  {
413
299
  "moduleName": "./src/components/Card/Card.tsx"
@@ -415,6 +301,9 @@
415
301
  {
416
302
  "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
417
303
  },
304
+ {
305
+ "moduleName": "./src/components/Input/Input.tsx"
306
+ },
418
307
  {
419
308
  "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
420
309
  },
@@ -422,13 +311,13 @@
422
311
  "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
423
312
  },
424
313
  {
425
- "moduleName": "./src/components/Search/Search.tsx"
314
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
426
315
  },
427
316
  {
428
- "moduleName": "./src/components/Tag/Tag.tsx"
317
+ "moduleName": "./src/components/Search/Search.tsx"
429
318
  },
430
319
  {
431
- "moduleName": "./src/components/Toast/Toast.tsx"
320
+ "moduleName": "./src/components/Tag/Tag.tsx"
432
321
  },
433
322
  {
434
323
  "moduleName": "./src/components/Switch/Switch.tsx"
@@ -437,106 +326,34 @@
437
326
  "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
438
327
  },
439
328
  {
440
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
329
+ "moduleName": "./src/components/Toast/Toast.tsx"
441
330
  },
442
331
  {
443
332
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
444
333
  },
445
334
  {
446
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
447
- },
448
- {
449
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
450
- },
451
- {
452
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
453
- },
454
- {
455
- "moduleName": "./src/components/Picker/Trigger.tsx"
456
- },
457
- {
458
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
459
- },
460
- {
461
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
462
- },
463
- {
464
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
465
- },
466
- {
467
- "moduleName": "./src/components/Alert/Alert.tsx"
468
- },
469
- {
470
- "moduleName": "./src/components/Avatar/Avatar.tsx"
335
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
471
336
  },
472
337
  {
473
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
338
+ "moduleName": "./src/components/UploadBar/UploadBar.tsx"
474
339
  },
475
340
  {
476
341
  "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
477
342
  },
478
- {
479
- "moduleName": "./src/components/Card/Card.tsx"
480
- },
481
- {
482
- "moduleName": "./src/components/FieldError/FieldError.tsx"
483
- },
484
- {
485
- "moduleName": "./src/components/Input/Input.tsx"
486
- },
487
- {
488
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
489
- },
490
- {
491
- "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
492
- },
493
- {
494
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
495
- },
496
343
  {
497
344
  "moduleName": "./src/components/Picker/PickerListItem.tsx"
498
345
  },
499
346
  {
500
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
501
- },
502
- {
503
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
504
- },
505
- {
506
- "moduleName": "./src/components/Switch/Switch.tsx"
507
- },
508
- {
509
- "moduleName": "./src/components/Tag/Tag.tsx"
510
- },
511
- {
512
- "moduleName": "./src/components/Toast/Toast.tsx"
347
+ "moduleName": "./src/components/Picker/TriggerBody.tsx"
513
348
  },
514
349
  {
515
- "moduleName": "./src/components/Search/Search.tsx"
350
+ "moduleName": "./src/components/Picker/Trigger.tsx"
516
351
  },
517
352
  {
518
353
  "moduleName": "./src/components/Tooltip/components/Info.tsx"
519
354
  },
520
355
  {
521
356
  "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
522
- },
523
- {
524
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
525
- },
526
- {
527
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
528
- },
529
- {
530
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
531
- },
532
- {
533
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
534
- },
535
- {
536
- "moduleName": "./src/components/Picker/Trigger.tsx"
537
- },
538
- {
539
- "moduleName": "./src/index.ts"
540
357
  }
541
358
  ]
542
359
  },
@@ -544,9 +361,6 @@
544
361
  "id": "./src/components/Input/index.ts",
545
362
  "name": "./src/components/Input/index.ts",
546
363
  "reasons": [
547
- {
548
- "moduleName": "./src/index.ts"
549
- },
550
364
  {
551
365
  "moduleName": "./src/index.ts"
552
366
  }
@@ -556,9 +370,6 @@
556
370
  "id": "./src/components/Link/index.ts",
557
371
  "name": "./src/components/Link/index.ts",
558
372
  "reasons": [
559
- {
560
- "moduleName": "./src/index.ts"
561
- },
562
373
  {
563
374
  "moduleName": "./src/index.ts"
564
375
  }
@@ -579,18 +390,6 @@
579
390
  },
580
391
  {
581
392
  "moduleName": "./src/components/Switch/Switch.tsx"
582
- },
583
- {
584
- "moduleName": "./src/components/Button/Button.tsx"
585
- },
586
- {
587
- "moduleName": "./src/components/Switch/Switch.tsx"
588
- },
589
- {
590
- "moduleName": "./src/components/Search/Search.tsx"
591
- },
592
- {
593
- "moduleName": "./src/index.ts"
594
393
  }
595
394
  ]
596
395
  },
@@ -598,9 +397,6 @@
598
397
  "id": "./src/components/Modal/index.ts",
599
398
  "name": "./src/components/Modal/index.ts",
600
399
  "reasons": [
601
- {
602
- "moduleName": "./src/index.ts"
603
- },
604
400
  {
605
401
  "moduleName": "./src/index.ts"
606
402
  }
@@ -610,9 +406,6 @@
610
406
  "id": "./src/components/NumericInput/index.ts",
611
407
  "name": "./src/components/NumericInput/index.ts",
612
408
  "reasons": [
613
- {
614
- "moduleName": "./src/index.ts"
615
- },
616
409
  {
617
410
  "moduleName": "./src/index.ts"
618
411
  }
@@ -622,9 +415,6 @@
622
415
  "id": "./src/components/Picker/index.ts",
623
416
  "name": "./src/components/Picker/index.ts",
624
417
  "reasons": [
625
- {
626
- "moduleName": "./src/index.ts"
627
- },
628
418
  {
629
419
  "moduleName": "./src/index.ts"
630
420
  }
@@ -634,15 +424,6 @@
634
424
  "id": "./src/components/Popover/index.ts",
635
425
  "name": "./src/components/Popover/index.ts",
636
426
  "reasons": [
637
- {
638
- "moduleName": "./src/index.ts"
639
- },
640
- {
641
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
642
- },
643
- {
644
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
645
- },
646
427
  {
647
428
  "moduleName": "./src/index.ts"
648
429
  }
@@ -660,15 +441,6 @@
660
441
  },
661
442
  {
662
443
  "moduleName": "./src/components/UploadBar/UploadBar.tsx"
663
- },
664
- {
665
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
666
- },
667
- {
668
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
669
- },
670
- {
671
- "moduleName": "./src/index.ts"
672
444
  }
673
445
  ]
674
446
  },
@@ -676,9 +448,6 @@
676
448
  "id": "./src/components/PromoBanner/index.ts",
677
449
  "name": "./src/components/PromoBanner/index.ts",
678
450
  "reasons": [
679
- {
680
- "moduleName": "./src/index.ts"
681
- },
682
451
  {
683
452
  "moduleName": "./src/index.ts"
684
453
  }
@@ -688,9 +457,6 @@
688
457
  "id": "./src/components/PromoBannerV2/index.ts",
689
458
  "name": "./src/components/PromoBannerV2/index.ts",
690
459
  "reasons": [
691
- {
692
- "moduleName": "./src/index.ts"
693
- },
694
460
  {
695
461
  "moduleName": "./src/index.ts"
696
462
  }
@@ -700,9 +466,6 @@
700
466
  "id": "./src/components/RadioButton/index.ts",
701
467
  "name": "./src/components/RadioButton/index.ts",
702
468
  "reasons": [
703
- {
704
- "moduleName": "./src/index.ts"
705
- },
706
469
  {
707
470
  "moduleName": "./src/index.ts"
708
471
  }
@@ -712,9 +475,6 @@
712
475
  "id": "./src/components/Search/index.ts",
713
476
  "name": "./src/components/Search/index.ts",
714
477
  "reasons": [
715
- {
716
- "moduleName": "./src/index.ts"
717
- },
718
478
  {
719
479
  "moduleName": "./src/index.ts"
720
480
  }
@@ -724,9 +484,6 @@
724
484
  "id": "./src/components/Switch/index.ts",
725
485
  "name": "./src/components/Switch/index.ts",
726
486
  "reasons": [
727
- {
728
- "moduleName": "./src/index.ts"
729
- },
730
487
  {
731
488
  "moduleName": "./src/index.ts"
732
489
  }
@@ -736,9 +493,6 @@
736
493
  "id": "./src/components/Tab/index.ts",
737
494
  "name": "./src/components/Tab/index.ts",
738
495
  "reasons": [
739
- {
740
- "moduleName": "./src/index.ts"
741
- },
742
496
  {
743
497
  "moduleName": "./src/index.ts"
744
498
  }
@@ -756,15 +510,6 @@
756
510
  },
757
511
  {
758
512
  "moduleName": "./src/components/TagInput/EditableTag.tsx"
759
- },
760
- {
761
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
762
- },
763
- {
764
- "moduleName": "./src/components/TagInput/EditableTag.tsx"
765
- },
766
- {
767
- "moduleName": "./src/index.ts"
768
513
  }
769
514
  ]
770
515
  },
@@ -772,9 +517,6 @@
772
517
  "id": "./src/components/TagInput/index.ts",
773
518
  "name": "./src/components/TagInput/index.ts",
774
519
  "reasons": [
775
- {
776
- "moduleName": "./src/index.ts"
777
- },
778
520
  {
779
521
  "moduleName": "./src/index.ts"
780
522
  }
@@ -784,9 +526,6 @@
784
526
  "id": "./src/components/Toast/index.ts",
785
527
  "name": "./src/components/Toast/index.ts",
786
528
  "reasons": [
787
- {
788
- "moduleName": "./src/index.ts"
789
- },
790
529
  {
791
530
  "moduleName": "./src/index.ts"
792
531
  }
@@ -801,12 +540,6 @@
801
540
  },
802
541
  {
803
542
  "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
804
- },
805
- {
806
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
807
- },
808
- {
809
- "moduleName": "./src/index.ts"
810
543
  }
811
544
  ]
812
545
  },
@@ -817,95 +550,35 @@
817
550
  {
818
551
  "moduleName": "./src/index.ts"
819
552
  },
820
- {
821
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
822
- },
823
- {
824
- "moduleName": "./src/components/FieldError/FieldError.tsx"
825
- },
826
- {
827
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
828
- },
829
553
  {
830
554
  "moduleName": "./src/components/Alert/Alert.tsx"
831
555
  },
832
- {
833
- "moduleName": "./src/components/FormField/FormField.tsx"
834
- },
835
556
  {
836
557
  "moduleName": "./src/components/Checkbox/Checkbox.tsx"
837
558
  },
838
559
  {
839
- "moduleName": "./src/components/Form/Form.tsx"
840
- },
841
- {
842
- "moduleName": "./src/components/Loader/Loader.tsx"
843
- },
844
- {
845
- "moduleName": "./src/components/Card/Card.tsx"
560
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
846
561
  },
847
562
  {
848
- "moduleName": "./src/components/Modal/Modal.tsx"
563
+ "moduleName": "./src/components/Form/Form.tsx"
849
564
  },
850
565
  {
851
- "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
566
+ "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
852
567
  },
853
568
  {
854
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
569
+ "moduleName": "./src/components/DetailsCard/DetailsCard.tsx"
855
570
  },
856
571
  {
857
572
  "moduleName": "./src/components/FormGroup/FormGroup.tsx"
858
573
  },
859
574
  {
860
- "moduleName": "./src/components/Popover/Popover.tsx"
861
- },
862
- {
863
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
864
- },
865
- {
866
- "moduleName": "./src/components/Tab/Tab.tsx"
867
- },
868
- {
869
- "moduleName": "./src/components/Tag/Tag.tsx"
870
- },
871
- {
872
- "moduleName": "./src/components/Toast/Toast.tsx"
873
- },
874
- {
875
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
876
- },
877
- {
878
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
879
- },
880
- {
881
- "moduleName": "./src/components/Tooltip/components/Reports.tsx"
882
- },
883
- {
884
- "moduleName": "./src/components/Alert/Alert.tsx"
885
- },
886
- {
887
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
888
- },
889
- {
890
- "moduleName": "./src/components/Card/Card.tsx"
891
- },
892
- {
893
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
575
+ "moduleName": "./src/components/FormField/FormField.tsx"
894
576
  },
895
577
  {
896
578
  "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
897
579
  },
898
580
  {
899
- "moduleName": "./src/components/Form/Form.tsx"
900
- },
901
- {
902
- "moduleName": "./src/components/FieldError/FieldError.tsx"
903
- },
904
- {
905
- "moduleName": "./src/components/FormField/FormField.tsx"
906
- },
907
- {
908
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
581
+ "moduleName": "./src/components/Card/Card.tsx"
909
582
  },
910
583
  {
911
584
  "moduleName": "./src/components/Loader/Loader.tsx"
@@ -917,10 +590,10 @@
917
590
  "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
918
591
  },
919
592
  {
920
- "moduleName": "./src/components/Popover/Popover.tsx"
593
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
921
594
  },
922
595
  {
923
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
596
+ "moduleName": "./src/components/Popover/Popover.tsx"
924
597
  },
925
598
  {
926
599
  "moduleName": "./src/components/RadioButton/RadioButton.tsx"
@@ -934,9 +607,6 @@
934
607
  {
935
608
  "moduleName": "./src/components/Toast/Toast.tsx"
936
609
  },
937
- {
938
- "moduleName": "./src/components/Tooltip/components/Reports.tsx"
939
- },
940
610
  {
941
611
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
942
612
  },
@@ -944,7 +614,7 @@
944
614
  "moduleName": "./src/components/UploadBar/UploadBar.tsx"
945
615
  },
946
616
  {
947
- "moduleName": "./src/index.ts"
617
+ "moduleName": "./src/components/Tooltip/components/Reports.tsx"
948
618
  }
949
619
  ]
950
620
  },
@@ -952,9 +622,6 @@
952
622
  "id": "./src/components/Textarea/index.ts",
953
623
  "name": "./src/components/Textarea/index.ts",
954
624
  "reasons": [
955
- {
956
- "moduleName": "./src/index.ts"
957
- },
958
625
  {
959
626
  "moduleName": "./src/index.ts"
960
627
  }
@@ -969,12 +636,6 @@
969
636
  },
970
637
  {
971
638
  "moduleName": "./src/components/UploadBar/UploadBar.tsx"
972
- },
973
- {
974
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
975
- },
976
- {
977
- "moduleName": "./src/index.ts"
978
639
  }
979
640
  ]
980
641
  },
@@ -984,9 +645,15 @@
984
645
  "reasons": [
985
646
  {
986
647
  "moduleName": "./src/index.ts"
987
- },
648
+ }
649
+ ]
650
+ },
651
+ {
652
+ "id": "./src/components/ActionBar/ActionBar.tsx",
653
+ "name": "./src/components/ActionBar/ActionBar.tsx",
654
+ "reasons": [
988
655
  {
989
- "moduleName": "./src/index.ts"
656
+ "moduleName": "./src/components/ActionBar/index.ts"
990
657
  }
991
658
  ]
992
659
  },
@@ -994,9 +661,6 @@
994
661
  "id": "./src/components/Avatar/Avatar.tsx",
995
662
  "name": "./src/components/Avatar/Avatar.tsx",
996
663
  "reasons": [
997
- {
998
- "moduleName": "./src/components/Avatar/index.ts"
999
- },
1000
664
  {
1001
665
  "moduleName": "./src/components/Avatar/index.ts"
1002
666
  }
@@ -1011,48 +675,33 @@
1011
675
  },
1012
676
  {
1013
677
  "moduleName": "./src/components/Avatar/Avatar.tsx"
1014
- },
1015
- {
1016
- "moduleName": "./src/components/Avatar/Avatar.tsx"
1017
- },
1018
- {
1019
- "moduleName": "./src/components/Avatar/index.ts"
1020
678
  }
1021
679
  ]
1022
680
  },
1023
681
  {
1024
- "id": "./src/components/ActionBar/ActionBar.tsx",
1025
- "name": "./src/components/ActionBar/ActionBar.tsx",
682
+ "id": "./src/components/Alert/Alert.tsx",
683
+ "name": "./src/components/Alert/Alert.tsx",
1026
684
  "reasons": [
1027
685
  {
1028
- "moduleName": "./src/components/ActionBar/index.ts"
1029
- },
1030
- {
1031
- "moduleName": "./src/components/ActionBar/index.ts"
686
+ "moduleName": "./src/components/Alert/index.ts"
1032
687
  }
1033
688
  ]
1034
689
  },
1035
690
  {
1036
- "id": "./src/components/ActionMenu/ActionMenu.tsx",
1037
- "name": "./src/components/ActionMenu/ActionMenu.tsx",
691
+ "id": "./src/components/DatePicker/DatePicker.tsx",
692
+ "name": "./src/components/DatePicker/DatePicker.tsx",
1038
693
  "reasons": [
1039
694
  {
1040
- "moduleName": "./src/components/ActionMenu/index.ts"
1041
- },
1042
- {
1043
- "moduleName": "./src/components/ActionMenu/index.ts"
695
+ "moduleName": "./src/components/DatePicker/index.ts"
1044
696
  }
1045
697
  ]
1046
698
  },
1047
699
  {
1048
- "id": "./src/components/ActionMenu/ActionMenuItem.tsx",
1049
- "name": "./src/components/ActionMenu/ActionMenuItem.tsx",
700
+ "id": "./src/components/DatePicker/RangeDatePicker.tsx",
701
+ "name": "./src/components/DatePicker/RangeDatePicker.tsx",
1050
702
  "reasons": [
1051
703
  {
1052
- "moduleName": "./src/components/ActionMenu/index.ts"
1053
- },
1054
- {
1055
- "moduleName": "./src/components/ActionMenu/index.ts"
704
+ "moduleName": "./src/components/DatePicker/index.ts"
1056
705
  }
1057
706
  ]
1058
707
  },
@@ -1060,35 +709,35 @@
1060
709
  "id": "./src/components/Badge/Badge.tsx",
1061
710
  "name": "./src/components/Badge/Badge.tsx",
1062
711
  "reasons": [
1063
- {
1064
- "moduleName": "./src/components/Badge/index.ts"
1065
- },
1066
712
  {
1067
713
  "moduleName": "./src/components/Badge/index.ts"
1068
714
  }
1069
715
  ]
1070
716
  },
1071
717
  {
1072
- "id": "./src/components/FieldDescription/FieldDescription.tsx",
1073
- "name": "./src/components/FieldDescription/FieldDescription.tsx",
718
+ "id": "./src/components/FieldGroup/FieldGroup.tsx",
719
+ "name": "./src/components/FieldGroup/FieldGroup.tsx",
1074
720
  "reasons": [
1075
721
  {
1076
- "moduleName": "./src/components/FieldDescription/index.ts"
1077
- },
1078
- {
1079
- "moduleName": "./src/components/FieldDescription/index.ts"
722
+ "moduleName": "./src/components/FieldGroup/index.ts"
1080
723
  }
1081
724
  ]
1082
725
  },
1083
726
  {
1084
- "id": "./src/components/NumericInput/NumericInput.tsx",
1085
- "name": "./src/components/NumericInput/NumericInput.tsx",
727
+ "id": "./src/components/Checkbox/Checkbox.tsx",
728
+ "name": "./src/components/Checkbox/Checkbox.tsx",
1086
729
  "reasons": [
1087
730
  {
1088
- "moduleName": "./src/components/NumericInput/index.ts"
1089
- },
731
+ "moduleName": "./src/components/Checkbox/index.ts"
732
+ }
733
+ ]
734
+ },
735
+ {
736
+ "id": "./src/components/DetailsCardInfo/DetailsCardInfo.tsx",
737
+ "name": "./src/components/DetailsCardInfo/DetailsCardInfo.tsx",
738
+ "reasons": [
1090
739
  {
1091
- "moduleName": "./src/components/NumericInput/index.ts"
740
+ "moduleName": "./src/components/DetailsCardInfo/index.ts"
1092
741
  }
1093
742
  ]
1094
743
  },
@@ -1096,9 +745,6 @@
1096
745
  "id": "./src/components/FieldError/FieldError.tsx",
1097
746
  "name": "./src/components/FieldError/FieldError.tsx",
1098
747
  "reasons": [
1099
- {
1100
- "moduleName": "./src/components/FieldError/index.ts"
1101
- },
1102
748
  {
1103
749
  "moduleName": "./src/components/FieldError/index.ts"
1104
750
  }
@@ -1108,185 +754,146 @@
1108
754
  "id": "./src/components/SegmentedControl/SegmentedControl.tsx",
1109
755
  "name": "./src/components/SegmentedControl/SegmentedControl.tsx",
1110
756
  "reasons": [
1111
- {
1112
- "moduleName": "./src/components/SegmentedControl/index.ts"
1113
- },
1114
757
  {
1115
758
  "moduleName": "./src/components/SegmentedControl/index.ts"
1116
759
  }
1117
760
  ]
1118
761
  },
1119
762
  {
1120
- "id": "./src/components/Alert/Alert.tsx",
1121
- "name": "./src/components/Alert/Alert.tsx",
763
+ "id": "./src/components/Form/Form.tsx",
764
+ "name": "./src/components/Form/Form.tsx",
1122
765
  "reasons": [
1123
766
  {
1124
- "moduleName": "./src/components/Alert/index.ts"
1125
- },
1126
- {
1127
- "moduleName": "./src/components/Alert/index.ts"
767
+ "moduleName": "./src/components/Form/index.ts"
1128
768
  }
1129
769
  ]
1130
770
  },
1131
771
  {
1132
- "id": "./src/components/FieldGroup/FieldGroup.tsx",
1133
- "name": "./src/components/FieldGroup/FieldGroup.tsx",
772
+ "id": "./src/components/Icon/Icon.tsx",
773
+ "name": "./src/components/Icon/Icon.tsx",
1134
774
  "reasons": [
1135
775
  {
1136
- "moduleName": "./src/components/FieldGroup/index.ts"
1137
- },
1138
- {
1139
- "moduleName": "./src/components/FieldGroup/index.ts"
776
+ "moduleName": "./src/components/Icon/index.ts"
1140
777
  }
1141
778
  ]
1142
779
  },
1143
780
  {
1144
- "id": "./src/components/DatePicker/DatePicker.tsx",
1145
- "name": "./src/components/DatePicker/DatePicker.tsx",
781
+ "id": "./src/components/ActionMenu/ActionMenu.tsx",
782
+ "name": "./src/components/ActionMenu/ActionMenu.tsx",
1146
783
  "reasons": [
1147
784
  {
1148
- "moduleName": "./src/components/DatePicker/index.ts"
1149
- },
1150
- {
1151
- "moduleName": "./src/components/DatePicker/index.ts"
785
+ "moduleName": "./src/components/ActionMenu/index.ts"
1152
786
  }
1153
787
  ]
1154
788
  },
1155
789
  {
1156
- "id": "./src/components/DatePicker/RangeDatePicker.tsx",
1157
- "name": "./src/components/DatePicker/RangeDatePicker.tsx",
790
+ "id": "./src/components/ActionMenu/ActionMenuItem.tsx",
791
+ "name": "./src/components/ActionMenu/ActionMenuItem.tsx",
1158
792
  "reasons": [
1159
793
  {
1160
- "moduleName": "./src/components/DatePicker/index.ts"
1161
- },
1162
- {
1163
- "moduleName": "./src/components/DatePicker/index.ts"
794
+ "moduleName": "./src/components/ActionMenu/index.ts"
1164
795
  }
1165
796
  ]
1166
797
  },
1167
798
  {
1168
- "id": "./src/components/Input/Input.tsx",
1169
- "name": "./src/components/Input/Input.tsx",
799
+ "id": "./src/components/FormGroup/FormGroup.tsx",
800
+ "name": "./src/components/FormGroup/FormGroup.tsx",
1170
801
  "reasons": [
1171
802
  {
1172
- "moduleName": "./src/components/Input/index.ts"
1173
- },
1174
- {
1175
- "moduleName": "./src/components/Input/index.ts"
803
+ "moduleName": "./src/components/FormGroup/index.ts"
1176
804
  }
1177
805
  ]
1178
806
  },
1179
807
  {
1180
- "id": "./src/components/Button/Button.tsx",
1181
- "name": "./src/components/Button/Button.tsx",
808
+ "id": "./src/components/DetailsCard/DetailsCard.tsx",
809
+ "name": "./src/components/DetailsCard/DetailsCard.tsx",
1182
810
  "reasons": [
1183
811
  {
1184
- "moduleName": "./src/components/Button/index.ts"
1185
- },
1186
- {
1187
- "moduleName": "./src/components/Button/index.ts"
812
+ "moduleName": "./src/components/DetailsCard/index.ts"
1188
813
  }
1189
814
  ]
1190
815
  },
1191
816
  {
1192
- "id": "./src/components/Picker/Picker.tsx",
1193
- "name": "./src/components/Picker/Picker.tsx",
817
+ "id": "./src/components/FormField/FormField.tsx",
818
+ "name": "./src/components/FormField/FormField.tsx",
1194
819
  "reasons": [
1195
820
  {
1196
- "moduleName": "./src/components/Picker/index.ts"
1197
- },
1198
- {
1199
- "moduleName": "./src/components/Picker/index.ts"
821
+ "moduleName": "./src/components/FormField/index.ts"
1200
822
  }
1201
823
  ]
1202
824
  },
1203
825
  {
1204
- "id": "./src/components/Picker/PickerList.tsx",
1205
- "name": "./src/components/Picker/PickerList.tsx",
826
+ "id": "./src/components/FieldDescription/FieldDescription.tsx",
827
+ "name": "./src/components/FieldDescription/FieldDescription.tsx",
1206
828
  "reasons": [
1207
829
  {
1208
- "moduleName": "./src/components/Picker/index.ts"
1209
- },
1210
- {
1211
- "moduleName": "./src/components/Picker/Picker.tsx"
1212
- },
1213
- {
1214
- "moduleName": "./src/components/Picker/Picker.tsx"
1215
- },
1216
- {
1217
- "moduleName": "./src/components/Picker/index.ts"
830
+ "moduleName": "./src/components/FieldDescription/index.ts"
1218
831
  }
1219
832
  ]
1220
833
  },
1221
834
  {
1222
- "id": "./src/components/FormField/FormField.tsx",
1223
- "name": "./src/components/FormField/FormField.tsx",
835
+ "id": "./src/components/Card/Card.tsx",
836
+ "name": "./src/components/Card/Card.tsx",
1224
837
  "reasons": [
1225
838
  {
1226
- "moduleName": "./src/components/FormField/index.ts"
1227
- },
1228
- {
1229
- "moduleName": "./src/components/FormField/index.ts"
839
+ "moduleName": "./src/components/Card/index.ts"
1230
840
  }
1231
841
  ]
1232
842
  },
1233
843
  {
1234
- "id": "./src/components/Link/Link.tsx",
1235
- "name": "./src/components/Link/Link.tsx",
844
+ "id": "./src/components/Loader/Loader.tsx",
845
+ "name": "./src/components/Loader/Loader.tsx",
1236
846
  "reasons": [
1237
847
  {
1238
- "moduleName": "./src/components/Link/index.ts"
1239
- },
1240
- {
1241
- "moduleName": "./src/components/Link/index.ts"
848
+ "moduleName": "./src/components/Loader/index.ts"
1242
849
  }
1243
850
  ]
1244
851
  },
1245
852
  {
1246
- "id": "./src/components/Card/Card.tsx",
1247
- "name": "./src/components/Card/Card.tsx",
853
+ "id": "./src/components/Button/Button.tsx",
854
+ "name": "./src/components/Button/Button.tsx",
1248
855
  "reasons": [
1249
856
  {
1250
- "moduleName": "./src/components/Card/index.ts"
1251
- },
1252
- {
1253
- "moduleName": "./src/components/Card/index.ts"
857
+ "moduleName": "./src/components/Button/index.ts"
1254
858
  }
1255
859
  ]
1256
860
  },
1257
861
  {
1258
- "id": "./src/components/Checkbox/Checkbox.tsx",
1259
- "name": "./src/components/Checkbox/Checkbox.tsx",
862
+ "id": "./src/components/Input/Input.tsx",
863
+ "name": "./src/components/Input/Input.tsx",
1260
864
  "reasons": [
1261
865
  {
1262
- "moduleName": "./src/components/Checkbox/index.ts"
1263
- },
1264
- {
1265
- "moduleName": "./src/components/Checkbox/index.ts"
866
+ "moduleName": "./src/components/Input/index.ts"
1266
867
  }
1267
868
  ]
1268
869
  },
1269
870
  {
1270
- "id": "./src/components/Form/Form.tsx",
1271
- "name": "./src/components/Form/Form.tsx",
871
+ "id": "./src/components/Link/Link.tsx",
872
+ "name": "./src/components/Link/Link.tsx",
1272
873
  "reasons": [
1273
874
  {
1274
- "moduleName": "./src/components/Form/index.ts"
1275
- },
875
+ "moduleName": "./src/components/Link/index.ts"
876
+ }
877
+ ]
878
+ },
879
+ {
880
+ "id": "./src/components/Picker/Picker.tsx",
881
+ "name": "./src/components/Picker/Picker.tsx",
882
+ "reasons": [
1276
883
  {
1277
- "moduleName": "./src/components/Form/index.ts"
884
+ "moduleName": "./src/components/Picker/index.ts"
1278
885
  }
1279
886
  ]
1280
887
  },
1281
888
  {
1282
- "id": "./src/components/Loader/Loader.tsx",
1283
- "name": "./src/components/Loader/Loader.tsx",
889
+ "id": "./src/components/Picker/PickerList.tsx",
890
+ "name": "./src/components/Picker/PickerList.tsx",
1284
891
  "reasons": [
1285
892
  {
1286
- "moduleName": "./src/components/Loader/index.ts"
893
+ "moduleName": "./src/components/Picker/index.ts"
1287
894
  },
1288
895
  {
1289
- "moduleName": "./src/components/Loader/index.ts"
896
+ "moduleName": "./src/components/Picker/Picker.tsx"
1290
897
  }
1291
898
  ]
1292
899
  },
@@ -1294,9 +901,6 @@
1294
901
  "id": "./src/components/Modal/Modal.tsx",
1295
902
  "name": "./src/components/Modal/Modal.tsx",
1296
903
  "reasons": [
1297
- {
1298
- "moduleName": "./src/components/Modal/index.ts"
1299
- },
1300
904
  {
1301
905
  "moduleName": "./src/components/Modal/index.ts"
1302
906
  }
@@ -1311,12 +915,6 @@
1311
915
  },
1312
916
  {
1313
917
  "moduleName": "./src/components/Modal/Modal.tsx"
1314
- },
1315
- {
1316
- "moduleName": "./src/components/Modal/Modal.tsx"
1317
- },
1318
- {
1319
- "moduleName": "./src/components/Modal/index.ts"
1320
918
  }
1321
919
  ]
1322
920
  },
@@ -1329,12 +927,6 @@
1329
927
  },
1330
928
  {
1331
929
  "moduleName": "./src/components/Modal/Modal.tsx"
1332
- },
1333
- {
1334
- "moduleName": "./src/components/Modal/Modal.tsx"
1335
- },
1336
- {
1337
- "moduleName": "./src/components/Modal/index.ts"
1338
930
  }
1339
931
  ]
1340
932
  },
@@ -1342,9 +934,6 @@
1342
934
  "id": "./src/components/Modal/components/ModalPortal.tsx",
1343
935
  "name": "./src/components/Modal/components/ModalPortal.tsx",
1344
936
  "reasons": [
1345
- {
1346
- "moduleName": "./src/components/Modal/index.ts"
1347
- },
1348
937
  {
1349
938
  "moduleName": "./src/components/Modal/index.ts"
1350
939
  }
@@ -1354,9 +943,6 @@
1354
943
  "id": "./src/components/Modal/components/ModalHeader.tsx",
1355
944
  "name": "./src/components/Modal/components/ModalHeader.tsx",
1356
945
  "reasons": [
1357
- {
1358
- "moduleName": "./src/components/Modal/index.ts"
1359
- },
1360
946
  {
1361
947
  "moduleName": "./src/components/Modal/index.ts"
1362
948
  }
@@ -1366,35 +952,26 @@
1366
952
  "id": "./src/components/PromoBanner/PromoBanner.tsx",
1367
953
  "name": "./src/components/PromoBanner/PromoBanner.tsx",
1368
954
  "reasons": [
1369
- {
1370
- "moduleName": "./src/components/PromoBanner/index.ts"
1371
- },
1372
955
  {
1373
956
  "moduleName": "./src/components/PromoBanner/index.ts"
1374
957
  }
1375
958
  ]
1376
959
  },
1377
960
  {
1378
- "id": "./src/components/FormGroup/FormGroup.tsx",
1379
- "name": "./src/components/FormGroup/FormGroup.tsx",
961
+ "id": "./src/components/NumericInput/NumericInput.tsx",
962
+ "name": "./src/components/NumericInput/NumericInput.tsx",
1380
963
  "reasons": [
1381
964
  {
1382
- "moduleName": "./src/components/FormGroup/index.ts"
1383
- },
1384
- {
1385
- "moduleName": "./src/components/FormGroup/index.ts"
965
+ "moduleName": "./src/components/NumericInput/index.ts"
1386
966
  }
1387
967
  ]
1388
968
  },
1389
969
  {
1390
- "id": "./src/components/Icon/Icon.tsx",
1391
- "name": "./src/components/Icon/Icon.tsx",
970
+ "id": "./src/components/Popover/Popover.tsx",
971
+ "name": "./src/components/Popover/Popover.tsx",
1392
972
  "reasons": [
1393
973
  {
1394
- "moduleName": "./src/components/Icon/index.ts"
1395
- },
1396
- {
1397
- "moduleName": "./src/components/Icon/index.ts"
974
+ "moduleName": "./src/components/Popover/index.ts"
1398
975
  }
1399
976
  ]
1400
977
  },
@@ -1402,9 +979,6 @@
1402
979
  "id": "./src/components/Progress/ProgressCircle.tsx",
1403
980
  "name": "./src/components/Progress/ProgressCircle.tsx",
1404
981
  "reasons": [
1405
- {
1406
- "moduleName": "./src/components/Progress/index.ts"
1407
- },
1408
982
  {
1409
983
  "moduleName": "./src/components/Progress/index.ts"
1410
984
  }
@@ -1414,95 +988,71 @@
1414
988
  "id": "./src/components/Progress/ProgressBar.tsx",
1415
989
  "name": "./src/components/Progress/ProgressBar.tsx",
1416
990
  "reasons": [
1417
- {
1418
- "moduleName": "./src/components/Progress/index.ts"
1419
- },
1420
991
  {
1421
992
  "moduleName": "./src/components/Progress/index.ts"
1422
993
  }
1423
994
  ]
1424
995
  },
1425
996
  {
1426
- "id": "./src/components/Popover/Popover.tsx",
1427
- "name": "./src/components/Popover/Popover.tsx",
997
+ "id": "./src/components/RadioButton/RadioButton.tsx",
998
+ "name": "./src/components/RadioButton/RadioButton.tsx",
1428
999
  "reasons": [
1429
1000
  {
1430
- "moduleName": "./src/components/Popover/index.ts"
1431
- },
1432
- {
1433
- "moduleName": "./src/components/Popover/index.ts"
1001
+ "moduleName": "./src/components/RadioButton/index.ts"
1434
1002
  }
1435
1003
  ]
1436
1004
  },
1437
1005
  {
1438
- "id": "./src/components/PromoBannerV2/PromoBannerV2.tsx",
1439
- "name": "./src/components/PromoBannerV2/PromoBannerV2.tsx",
1006
+ "id": "./src/components/Search/Search.tsx",
1007
+ "name": "./src/components/Search/Search.tsx",
1440
1008
  "reasons": [
1441
1009
  {
1442
- "moduleName": "./src/components/PromoBannerV2/index.ts"
1443
- },
1444
- {
1445
- "moduleName": "./src/components/PromoBannerV2/index.ts"
1010
+ "moduleName": "./src/components/Search/index.ts"
1446
1011
  }
1447
1012
  ]
1448
1013
  },
1449
1014
  {
1450
- "id": "./src/components/Search/Search.tsx",
1451
- "name": "./src/components/Search/Search.tsx",
1015
+ "id": "./src/components/Switch/Switch.tsx",
1016
+ "name": "./src/components/Switch/Switch.tsx",
1452
1017
  "reasons": [
1453
1018
  {
1454
- "moduleName": "./src/components/Search/index.ts"
1455
- },
1456
- {
1457
- "moduleName": "./src/components/Search/index.ts"
1019
+ "moduleName": "./src/components/Switch/index.ts"
1458
1020
  }
1459
1021
  ]
1460
1022
  },
1461
1023
  {
1462
- "id": "./src/components/RadioButton/RadioButton.tsx",
1463
- "name": "./src/components/RadioButton/RadioButton.tsx",
1024
+ "id": "./src/components/Tag/Tag.tsx",
1025
+ "name": "./src/components/Tag/Tag.tsx",
1464
1026
  "reasons": [
1465
1027
  {
1466
- "moduleName": "./src/components/RadioButton/index.ts"
1467
- },
1468
- {
1469
- "moduleName": "./src/components/RadioButton/index.ts"
1028
+ "moduleName": "./src/components/Tag/index.ts"
1470
1029
  }
1471
1030
  ]
1472
1031
  },
1473
1032
  {
1474
- "id": "./src/components/Tab/Tab.tsx",
1475
- "name": "./src/components/Tab/Tab.tsx",
1033
+ "id": "./src/components/PromoBannerV2/PromoBannerV2.tsx",
1034
+ "name": "./src/components/PromoBannerV2/PromoBannerV2.tsx",
1476
1035
  "reasons": [
1477
1036
  {
1478
- "moduleName": "./src/components/Tab/index.ts"
1479
- },
1480
- {
1481
- "moduleName": "./src/components/Tab/index.ts"
1037
+ "moduleName": "./src/components/PromoBannerV2/index.ts"
1482
1038
  }
1483
1039
  ]
1484
1040
  },
1485
1041
  {
1486
- "id": "./src/components/Tab/TabsWrapper.tsx",
1487
- "name": "./src/components/Tab/TabsWrapper.tsx",
1042
+ "id": "./src/components/Tab/Tab.tsx",
1043
+ "name": "./src/components/Tab/Tab.tsx",
1488
1044
  "reasons": [
1489
- {
1490
- "moduleName": "./src/components/Tab/index.ts"
1491
- },
1492
1045
  {
1493
1046
  "moduleName": "./src/components/Tab/index.ts"
1494
1047
  }
1495
1048
  ]
1496
1049
  },
1497
1050
  {
1498
- "id": "./src/components/Tag/Tag.tsx",
1499
- "name": "./src/components/Tag/Tag.tsx",
1051
+ "id": "./src/components/Tab/TabsWrapper.tsx",
1052
+ "name": "./src/components/Tab/TabsWrapper.tsx",
1500
1053
  "reasons": [
1501
1054
  {
1502
- "moduleName": "./src/components/Tag/index.ts"
1503
- },
1504
- {
1505
- "moduleName": "./src/components/Tag/index.ts"
1055
+ "moduleName": "./src/components/Tab/index.ts"
1506
1056
  }
1507
1057
  ]
1508
1058
  },
@@ -1515,12 +1065,6 @@
1515
1065
  },
1516
1066
  {
1517
1067
  "moduleName": "./src/components/TagInput/EmailTagInput.tsx"
1518
- },
1519
- {
1520
- "moduleName": "./src/components/TagInput/EmailTagInput.tsx"
1521
- },
1522
- {
1523
- "moduleName": "./src/components/TagInput/index.ts"
1524
1068
  }
1525
1069
  ]
1526
1070
  },
@@ -1528,9 +1072,6 @@
1528
1072
  "id": "./src/components/TagInput/EmailTagInput.tsx",
1529
1073
  "name": "./src/components/TagInput/EmailTagInput.tsx",
1530
1074
  "reasons": [
1531
- {
1532
- "moduleName": "./src/components/TagInput/index.ts"
1533
- },
1534
1075
  {
1535
1076
  "moduleName": "./src/components/TagInput/index.ts"
1536
1077
  }
@@ -1545,12 +1086,6 @@
1545
1086
  },
1546
1087
  {
1547
1088
  "moduleName": "./src/components/Toast/ToastWrapper.tsx"
1548
- },
1549
- {
1550
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
1551
- },
1552
- {
1553
- "moduleName": "./src/components/Toast/index.ts"
1554
1089
  }
1555
1090
  ]
1556
1091
  },
@@ -1558,26 +1093,11 @@
1558
1093
  "id": "./src/components/Toast/ToastWrapper.tsx",
1559
1094
  "name": "./src/components/Toast/ToastWrapper.tsx",
1560
1095
  "reasons": [
1561
- {
1562
- "moduleName": "./src/components/Toast/index.ts"
1563
- },
1564
1096
  {
1565
1097
  "moduleName": "./src/components/Toast/index.ts"
1566
1098
  }
1567
1099
  ]
1568
1100
  },
1569
- {
1570
- "id": "./src/components/Switch/Switch.tsx",
1571
- "name": "./src/components/Switch/Switch.tsx",
1572
- "reasons": [
1573
- {
1574
- "moduleName": "./src/components/Switch/index.ts"
1575
- },
1576
- {
1577
- "moduleName": "./src/components/Switch/index.ts"
1578
- }
1579
- ]
1580
- },
1581
1101
  {
1582
1102
  "id": "./src/components/Tooltip/Tooltip.tsx",
1583
1103
  "name": "./src/components/Tooltip/Tooltip.tsx",
@@ -1587,12 +1107,6 @@
1587
1107
  },
1588
1108
  {
1589
1109
  "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
1590
- },
1591
- {
1592
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
1593
- },
1594
- {
1595
- "moduleName": "./src/components/Tooltip/index.ts"
1596
1110
  }
1597
1111
  ]
1598
1112
  },
@@ -1600,9 +1114,6 @@
1600
1114
  "id": "./src/components/Tooltip/components/index.ts",
1601
1115
  "name": "./src/components/Tooltip/components/index.ts",
1602
1116
  "reasons": [
1603
- {
1604
- "moduleName": "./src/components/Tooltip/index.ts"
1605
- },
1606
1117
  {
1607
1118
  "moduleName": "./src/components/Tooltip/index.ts"
1608
1119
  }
@@ -1617,12 +1128,6 @@
1617
1128
  },
1618
1129
  {
1619
1130
  "moduleName": "./src/components/Tooltip/components/index.ts"
1620
- },
1621
- {
1622
- "moduleName": "./src/components/Tooltip/components/index.ts"
1623
- },
1624
- {
1625
- "moduleName": "./src/components/Tooltip/index.ts"
1626
1131
  }
1627
1132
  ]
1628
1133
  },
@@ -1630,9 +1135,6 @@
1630
1135
  "id": "./src/components/Typography/Heading.tsx",
1631
1136
  "name": "./src/components/Typography/Heading.tsx",
1632
1137
  "reasons": [
1633
- {
1634
- "moduleName": "./src/components/Typography/index.ts"
1635
- },
1636
1138
  {
1637
1139
  "moduleName": "./src/components/Typography/index.ts"
1638
1140
  }
@@ -1642,9 +1144,6 @@
1642
1144
  "id": "./src/components/Typography/Text.tsx",
1643
1145
  "name": "./src/components/Typography/Text.tsx",
1644
1146
  "reasons": [
1645
- {
1646
- "moduleName": "./src/components/Typography/index.ts"
1647
- },
1648
1147
  {
1649
1148
  "moduleName": "./src/components/Typography/index.ts"
1650
1149
  }
@@ -1656,9 +1155,15 @@
1656
1155
  "reasons": [
1657
1156
  {
1658
1157
  "moduleName": "./src/components/Typography/index.ts"
1659
- },
1158
+ }
1159
+ ]
1160
+ },
1161
+ {
1162
+ "id": "./src/components/Textarea/Textarea.tsx",
1163
+ "name": "./src/components/Textarea/Textarea.tsx",
1164
+ "reasons": [
1660
1165
  {
1661
- "moduleName": "./src/components/Typography/index.ts"
1166
+ "moduleName": "./src/components/Textarea/index.ts"
1662
1167
  }
1663
1168
  ]
1664
1169
  },
@@ -1666,9 +1171,6 @@
1666
1171
  "id": "./src/components/FileUploadProgress/FileUploadProgress.tsx",
1667
1172
  "name": "./src/components/FileUploadProgress/FileUploadProgress.tsx",
1668
1173
  "reasons": [
1669
- {
1670
- "moduleName": "./src/components/FileUploadProgress/index.ts"
1671
- },
1672
1174
  {
1673
1175
  "moduleName": "./src/components/FileUploadProgress/index.ts"
1674
1176
  }
@@ -1683,12 +1185,6 @@
1683
1185
  },
1684
1186
  {
1685
1187
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1686
- },
1687
- {
1688
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1689
- },
1690
- {
1691
- "moduleName": "./src/components/FileUploadProgress/index.ts"
1692
1188
  }
1693
1189
  ]
1694
1190
  },
@@ -1698,123 +1194,99 @@
1698
1194
  "reasons": [
1699
1195
  {
1700
1196
  "moduleName": "./src/components/UploadBar/index.ts"
1701
- },
1702
- {
1703
- "moduleName": "./src/components/UploadBar/index.ts"
1704
- }
1705
- ]
1706
- },
1707
- {
1708
- "id": "./src/components/Textarea/Textarea.tsx",
1709
- "name": "./src/components/Textarea/Textarea.tsx",
1710
- "reasons": [
1711
- {
1712
- "moduleName": "./src/components/Textarea/index.ts"
1713
- },
1714
- {
1715
- "moduleName": "./src/components/Textarea/index.ts"
1716
1197
  }
1717
1198
  ]
1718
1199
  },
1719
1200
  {
1720
- "id": "./polished",
1721
- "name": "./polished",
1201
+ "id": "./react",
1202
+ "name": "./react",
1722
1203
  "reasons": [
1723
1204
  {
1724
- "moduleName": "./src/components/Avatar/Avatar.helpers.ts"
1205
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1725
1206
  },
1726
1207
  {
1727
- "moduleName": "./src/components/Tag/Tag.tsx"
1208
+ "moduleName": "./src/components/Alert/Alert.tsx"
1728
1209
  },
1729
1210
  {
1730
- "moduleName": "./src/components/Avatar/Avatar.helpers.ts"
1211
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1731
1212
  },
1732
1213
  {
1733
- "moduleName": "./src/components/Tag/Tag.tsx"
1734
- }
1735
- ]
1736
- },
1737
- {
1738
- "id": "./react",
1739
- "name": "./react",
1740
- "reasons": [
1741
- {
1742
- "moduleName": "./src/components/Avatar/Avatar.tsx"
1214
+ "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1743
1215
  },
1744
1216
  {
1745
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1217
+ "moduleName": "./src/components/Badge/Badge.tsx"
1746
1218
  },
1747
1219
  {
1748
- "moduleName": "./src/components/Badge/Badge.tsx"
1220
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1749
1221
  },
1750
1222
  {
1751
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1223
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
1752
1224
  },
1753
1225
  {
1754
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1226
+ "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1755
1227
  },
1756
1228
  {
1757
1229
  "moduleName": "./src/components/FieldError/FieldError.tsx"
1758
1230
  },
1759
1231
  {
1760
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1232
+ "moduleName": "./src/components/DetailsCardInfo/DetailsCardInfo.tsx"
1761
1233
  },
1762
1234
  {
1763
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1235
+ "moduleName": "./src/components/Form/Form.tsx"
1764
1236
  },
1765
1237
  {
1766
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1238
+ "moduleName": "./src/components/Icon/Icon.tsx"
1767
1239
  },
1768
1240
  {
1769
- "moduleName": "./src/components/Alert/Alert.tsx"
1241
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1770
1242
  },
1771
1243
  {
1772
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1244
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1773
1245
  },
1774
1246
  {
1775
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1247
+ "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1776
1248
  },
1777
1249
  {
1778
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1250
+ "moduleName": "./src/components/DetailsCard/DetailsCard.tsx"
1779
1251
  },
1780
1252
  {
1781
- "moduleName": "./src/components/Input/Input.tsx"
1253
+ "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1782
1254
  },
1783
1255
  {
1784
- "moduleName": "./src/components/Picker/PickerList.tsx"
1256
+ "moduleName": "./src/components/FormField/FormField.tsx"
1785
1257
  },
1786
1258
  {
1787
- "moduleName": "./src/components/Picker/Picker.tsx"
1259
+ "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1788
1260
  },
1789
1261
  {
1790
- "moduleName": "./src/components/FormField/FormField.tsx"
1262
+ "moduleName": "./src/components/Card/Card.tsx"
1791
1263
  },
1792
1264
  {
1793
- "moduleName": "./src/components/Link/Link.tsx"
1265
+ "moduleName": "./src/components/Loader/Loader.tsx"
1794
1266
  },
1795
1267
  {
1796
1268
  "moduleName": "./src/components/Button/Button.tsx"
1797
1269
  },
1798
1270
  {
1799
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1271
+ "moduleName": "./src/components/Link/Link.tsx"
1800
1272
  },
1801
1273
  {
1802
- "moduleName": "./src/components/Form/Form.tsx"
1274
+ "moduleName": "./src/components/Picker/PickerList.tsx"
1803
1275
  },
1804
1276
  {
1805
- "moduleName": "./src/components/Loader/Loader.tsx"
1277
+ "moduleName": "./src/components/Modal/Modal.tsx"
1806
1278
  },
1807
1279
  {
1808
- "moduleName": "./src/components/Card/Card.tsx"
1280
+ "moduleName": "./src/components/Picker/Picker.tsx"
1809
1281
  },
1810
1282
  {
1811
- "moduleName": "./src/components/Modal/Modal.tsx"
1283
+ "moduleName": "./src/components/Modal/components/ModalBase.tsx"
1812
1284
  },
1813
1285
  {
1814
1286
  "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
1815
1287
  },
1816
1288
  {
1817
- "moduleName": "./src/components/Modal/components/ModalBase.tsx"
1289
+ "moduleName": "./src/components/Input/Input.tsx"
1818
1290
  },
1819
1291
  {
1820
1292
  "moduleName": "./src/components/Modal/components/ModalPortal.tsx"
@@ -1826,34 +1298,37 @@
1826
1298
  "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1827
1299
  },
1828
1300
  {
1829
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1301
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1830
1302
  },
1831
1303
  {
1832
- "moduleName": "./src/components/Progress/ProgressCircle.tsx"
1304
+ "moduleName": "./src/components/Popover/Popover.tsx"
1833
1305
  },
1834
1306
  {
1835
- "moduleName": "./src/components/Icon/Icon.tsx"
1307
+ "moduleName": "./src/components/Progress/ProgressCircle.tsx"
1836
1308
  },
1837
1309
  {
1838
1310
  "moduleName": "./src/components/Progress/ProgressBar.tsx"
1839
1311
  },
1840
1312
  {
1841
- "moduleName": "./src/components/Popover/Popover.tsx"
1313
+ "moduleName": "./src/components/RadioButton/RadioButton.tsx"
1842
1314
  },
1843
1315
  {
1844
1316
  "moduleName": "./src/components/Search/Search.tsx"
1845
1317
  },
1846
1318
  {
1847
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
1319
+ "moduleName": "./src/components/Tag/Tag.tsx"
1848
1320
  },
1849
1321
  {
1850
- "moduleName": "./src/components/Tab/Tab.tsx"
1322
+ "moduleName": "./src/components/Switch/Switch.tsx"
1851
1323
  },
1852
1324
  {
1853
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
1325
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
1854
1326
  },
1855
1327
  {
1856
- "moduleName": "./src/components/Tag/Tag.tsx"
1328
+ "moduleName": "./src/components/Tab/Tab.tsx"
1329
+ },
1330
+ {
1331
+ "moduleName": "./src/components/Tab/TabsWrapper.tsx"
1857
1332
  },
1858
1333
  {
1859
1334
  "moduleName": "./src/components/TagInput/TagInput.tsx"
@@ -1870,9 +1345,6 @@
1870
1345
  {
1871
1346
  "moduleName": "./src/components/Tooltip/Tooltip.tsx"
1872
1347
  },
1873
- {
1874
- "moduleName": "./src/components/Switch/Switch.tsx"
1875
- },
1876
1348
  {
1877
1349
  "moduleName": "./src/components/Typography/Heading.tsx"
1878
1350
  },
@@ -1880,43 +1352,43 @@
1880
1352
  "moduleName": "./src/components/Typography/Text.tsx"
1881
1353
  },
1882
1354
  {
1883
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
1355
+ "moduleName": "./src/components/Typography/Display.tsx"
1884
1356
  },
1885
1357
  {
1886
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
1358
+ "moduleName": "./src/components/Textarea/Textarea.tsx"
1887
1359
  },
1888
1360
  {
1889
- "moduleName": "./src/components/Typography/Display.tsx"
1361
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1890
1362
  },
1891
1363
  {
1892
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1364
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
1893
1365
  },
1894
1366
  {
1895
- "moduleName": "./src/components/Textarea/Textarea.tsx"
1367
+ "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1896
1368
  },
1897
1369
  {
1898
1370
  "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
1899
1371
  },
1900
1372
  {
1901
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1373
+ "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1902
1374
  },
1903
1375
  {
1904
1376
  "moduleName": "./src/components/DatePicker/hooks.ts"
1905
1377
  },
1906
1378
  {
1907
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1379
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
1908
1380
  },
1909
1381
  {
1910
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
1382
+ "moduleName": "./src/components/Picker/TriggerBody.tsx"
1911
1383
  },
1912
1384
  {
1913
1385
  "moduleName": "./src/components/Picker/Trigger.tsx"
1914
1386
  },
1915
1387
  {
1916
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
1388
+ "moduleName": "./src/components/TagInput/EditableTag.tsx"
1917
1389
  },
1918
1390
  {
1919
- "moduleName": "./src/components/TagInput/EditableTag.tsx"
1391
+ "moduleName": "./src/components/Tooltip/components/Simple.tsx"
1920
1392
  },
1921
1393
  {
1922
1394
  "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
@@ -1930,9 +1402,6 @@
1930
1402
  {
1931
1403
  "moduleName": "./src/components/Tooltip/components/Reports.tsx"
1932
1404
  },
1933
- {
1934
- "moduleName": "./src/components/Tooltip/components/Simple.tsx"
1935
- },
1936
1405
  {
1937
1406
  "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
1938
1407
  },
@@ -1941,693 +1410,177 @@
1941
1410
  },
1942
1411
  {
1943
1412
  "moduleName": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx"
1944
- },
1945
- {
1946
- "moduleName": "./src/components/Modal/components/ModalPortal.tsx"
1947
- },
1413
+ }
1414
+ ]
1415
+ },
1416
+ {
1417
+ "id": "./@livechat/design-system-icons",
1418
+ "name": "./@livechat/design-system-icons",
1419
+ "reasons": [
1948
1420
  {
1949
- "moduleName": "./src/components/TagInput/EmailTagInput.tsx"
1421
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1950
1422
  },
1951
1423
  {
1952
1424
  "moduleName": "./src/components/Alert/Alert.tsx"
1953
1425
  },
1954
- {
1955
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1956
- },
1957
1426
  {
1958
1427
  "moduleName": "./src/components/Avatar/Avatar.tsx"
1959
1428
  },
1960
1429
  {
1961
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1430
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
1962
1431
  },
1963
1432
  {
1964
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
1433
+ "moduleName": "./src/components/DetailsCard/DetailsCard.tsx"
1965
1434
  },
1966
1435
  {
1967
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1436
+ "moduleName": "./src/components/Card/Card.tsx"
1968
1437
  },
1969
1438
  {
1970
- "moduleName": "./src/components/Button/Button.tsx"
1439
+ "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
1971
1440
  },
1972
1441
  {
1973
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1442
+ "moduleName": "./src/components/Input/Input.tsx"
1974
1443
  },
1975
1444
  {
1976
- "moduleName": "./src/components/Badge/Badge.tsx"
1445
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1977
1446
  },
1978
1447
  {
1979
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1448
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1980
1449
  },
1981
1450
  {
1982
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1451
+ "moduleName": "./src/components/Search/Search.tsx"
1983
1452
  },
1984
1453
  {
1985
- "moduleName": "./src/components/Card/Card.tsx"
1454
+ "moduleName": "./src/components/Tag/Tag.tsx"
1986
1455
  },
1987
1456
  {
1988
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1457
+ "moduleName": "./src/components/Switch/Switch.tsx"
1989
1458
  },
1990
1459
  {
1991
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1460
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
1992
1461
  },
1993
1462
  {
1994
- "moduleName": "./src/components/DatePicker/hooks.ts"
1463
+ "moduleName": "./src/components/Toast/Toast.tsx"
1995
1464
  },
1996
1465
  {
1997
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1466
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
1998
1467
  },
1999
1468
  {
2000
- "moduleName": "./src/components/Form/Form.tsx"
1469
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
2001
1470
  },
2002
1471
  {
2003
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1472
+ "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2004
1473
  },
2005
1474
  {
2006
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1475
+ "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2007
1476
  },
2008
1477
  {
2009
- "moduleName": "./src/components/FormField/FormField.tsx"
1478
+ "moduleName": "./src/components/Picker/constants.ts"
2010
1479
  },
2011
1480
  {
2012
- "moduleName": "./src/components/Input/Input.tsx"
1481
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
2013
1482
  },
2014
1483
  {
2015
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1484
+ "moduleName": "./src/components/Picker/Trigger.tsx"
2016
1485
  },
2017
1486
  {
2018
- "moduleName": "./src/components/Icon/Icon.tsx"
1487
+ "moduleName": "./src/components/Tooltip/components/Info.tsx"
2019
1488
  },
2020
1489
  {
2021
- "moduleName": "./src/components/Loader/Loader.tsx"
1490
+ "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
1491
+ }
1492
+ ]
1493
+ },
1494
+ {
1495
+ "id": "./clsx",
1496
+ "name": "./clsx",
1497
+ "reasons": [
1498
+ {
1499
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2022
1500
  },
2023
1501
  {
2024
- "moduleName": "./src/components/Modal/components/ModalBase.tsx"
1502
+ "moduleName": "./src/components/Alert/Alert.tsx"
2025
1503
  },
2026
1504
  {
2027
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
1505
+ "moduleName": "./src/components/Badge/Badge.tsx"
2028
1506
  },
2029
1507
  {
2030
- "moduleName": "./src/components/Modal/Modal.tsx"
1508
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
2031
1509
  },
2032
1510
  {
2033
- "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
1511
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
2034
1512
  },
2035
1513
  {
2036
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1514
+ "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
2037
1515
  },
2038
1516
  {
2039
- "moduleName": "./src/components/Link/Link.tsx"
1517
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
2040
1518
  },
2041
1519
  {
2042
- "moduleName": "./src/components/Popover/Popover.tsx"
1520
+ "moduleName": "./src/components/Form/Form.tsx"
2043
1521
  },
2044
1522
  {
2045
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
1523
+ "moduleName": "./src/components/Icon/Icon.tsx"
2046
1524
  },
2047
1525
  {
2048
- "moduleName": "./src/components/Picker/PickerList.tsx"
2049
- },
2050
- {
2051
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
2052
- },
2053
- {
2054
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2055
- },
2056
- {
2057
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
2058
- },
2059
- {
2060
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
2061
- },
2062
- {
2063
- "moduleName": "./src/components/Switch/Switch.tsx"
2064
- },
2065
- {
2066
- "moduleName": "./src/components/Tag/Tag.tsx"
2067
- },
2068
- {
2069
- "moduleName": "./src/components/Tab/Tab.tsx"
2070
- },
2071
- {
2072
- "moduleName": "./src/components/Toast/Toast.tsx"
2073
- },
2074
- {
2075
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2076
- },
2077
- {
2078
- "moduleName": "./src/components/Search/Search.tsx"
2079
- },
2080
- {
2081
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2082
- },
2083
- {
2084
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
2085
- },
2086
- {
2087
- "moduleName": "./src/components/Tooltip/components/Simple.tsx"
2088
- },
2089
- {
2090
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
2091
- },
2092
- {
2093
- "moduleName": "./src/components/Tooltip/components/Reports.tsx"
2094
- },
2095
- {
2096
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
2097
- },
2098
- {
2099
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
2100
- },
2101
- {
2102
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2103
- },
2104
- {
2105
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2106
- },
2107
- {
2108
- "moduleName": "./src/components/Textarea/Textarea.tsx"
2109
- },
2110
- {
2111
- "moduleName": "./src/components/Typography/Heading.tsx"
2112
- },
2113
- {
2114
- "moduleName": "./src/components/Typography/Text.tsx"
2115
- },
2116
- {
2117
- "moduleName": "./src/components/Typography/Display.tsx"
2118
- },
2119
- {
2120
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
2121
- },
2122
- {
2123
- "moduleName": "./src/components/Picker/Trigger.tsx"
2124
- },
2125
- {
2126
- "moduleName": "./src/components/Picker/Picker.tsx"
2127
- },
2128
- {
2129
- "moduleName": "./src/components/Progress/ProgressCircle.tsx"
2130
- },
2131
- {
2132
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
2133
- },
2134
- {
2135
- "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
2136
- },
2137
- {
2138
- "moduleName": "./src/components/TagInput/EditableTag.tsx"
2139
- },
2140
- {
2141
- "moduleName": "./src/components/TagInput/TagInput.tsx"
2142
- },
2143
- {
2144
- "moduleName": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx"
2145
- },
2146
- {
2147
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
2148
- }
2149
- ]
2150
- },
2151
- {
2152
- "id": "./@livechat/design-system-icons",
2153
- "name": "./@livechat/design-system-icons",
2154
- "reasons": [
2155
- {
2156
- "moduleName": "./src/components/Avatar/Avatar.tsx"
2157
- },
2158
- {
2159
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2160
- },
2161
- {
2162
- "moduleName": "./src/components/FieldError/FieldError.tsx"
2163
- },
2164
- {
2165
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
2166
- },
2167
- {
2168
- "moduleName": "./src/components/Alert/Alert.tsx"
2169
- },
2170
- {
2171
- "moduleName": "./src/components/Input/Input.tsx"
2172
- },
2173
- {
2174
- "moduleName": "./src/components/Card/Card.tsx"
2175
- },
2176
- {
2177
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
2178
- },
2179
- {
2180
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2181
- },
2182
- {
2183
- "moduleName": "./src/components/Search/Search.tsx"
2184
- },
2185
- {
2186
- "moduleName": "./src/components/Tag/Tag.tsx"
2187
- },
2188
- {
2189
- "moduleName": "./src/components/Toast/Toast.tsx"
2190
- },
2191
- {
2192
- "moduleName": "./src/components/Switch/Switch.tsx"
2193
- },
2194
- {
2195
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
2196
- },
2197
- {
2198
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
2199
- },
2200
- {
2201
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2202
- },
2203
- {
2204
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2205
- },
2206
- {
2207
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2208
- },
2209
- {
2210
- "moduleName": "./src/components/Picker/constants.ts"
2211
- },
2212
- {
2213
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
2214
- },
2215
- {
2216
- "moduleName": "./src/components/Picker/Trigger.tsx"
2217
- },
2218
- {
2219
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
2220
- },
2221
- {
2222
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
2223
- },
2224
- {
2225
- "moduleName": "./src/components/Alert/Alert.tsx"
2226
- },
2227
- {
2228
- "moduleName": "./src/components/Avatar/Avatar.tsx"
2229
- },
2230
- {
2231
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2232
- },
2233
- {
2234
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2235
- },
2236
- {
2237
- "moduleName": "./src/components/Card/Card.tsx"
2238
- },
2239
- {
2240
- "moduleName": "./src/components/FieldError/FieldError.tsx"
2241
- },
2242
- {
2243
- "moduleName": "./src/components/Input/Input.tsx"
2244
- },
2245
- {
2246
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
2247
- },
2248
- {
2249
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
2250
- },
2251
- {
2252
- "moduleName": "./src/components/Picker/constants.ts"
2253
- },
2254
- {
2255
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
2256
- },
2257
- {
2258
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
2259
- },
2260
- {
2261
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2262
- },
2263
- {
2264
- "moduleName": "./src/components/Switch/Switch.tsx"
2265
- },
2266
- {
2267
- "moduleName": "./src/components/Tag/Tag.tsx"
2268
- },
2269
- {
2270
- "moduleName": "./src/components/Toast/Toast.tsx"
2271
- },
2272
- {
2273
- "moduleName": "./src/components/Search/Search.tsx"
2274
- },
2275
- {
2276
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
2277
- },
2278
- {
2279
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
2280
- },
2281
- {
2282
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
2283
- },
2284
- {
2285
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2286
- },
2287
- {
2288
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2289
- },
2290
- {
2291
- "moduleName": "./src/components/Picker/Trigger.tsx"
2292
- }
2293
- ]
2294
- },
2295
- {
2296
- "id": "./clsx",
2297
- "name": "./clsx",
2298
- "reasons": [
2299
- {
2300
- "moduleName": "./src/components/Avatar/Avatar.tsx"
2301
- },
2302
- {
2303
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2304
- },
2305
- {
2306
- "moduleName": "./src/components/Badge/Badge.tsx"
2307
- },
2308
- {
2309
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
2310
- },
2311
- {
2312
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
2313
- },
2314
- {
2315
- "moduleName": "./src/components/FieldError/FieldError.tsx"
2316
- },
2317
- {
2318
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
2319
- },
2320
- {
2321
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
2322
- },
2323
- {
2324
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
2325
- },
2326
- {
2327
- "moduleName": "./src/components/Alert/Alert.tsx"
2328
- },
2329
- {
2330
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
2331
- },
2332
- {
2333
- "moduleName": "./src/components/Input/Input.tsx"
2334
- },
2335
- {
2336
- "moduleName": "./src/components/Picker/PickerList.tsx"
2337
- },
2338
- {
2339
- "moduleName": "./src/components/Picker/Picker.tsx"
2340
- },
2341
- {
2342
- "moduleName": "./src/components/FormField/FormField.tsx"
2343
- },
2344
- {
2345
- "moduleName": "./src/components/Link/Link.tsx"
2346
- },
2347
- {
2348
- "moduleName": "./src/components/Button/Button.tsx"
2349
- },
2350
- {
2351
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
2352
- },
2353
- {
2354
- "moduleName": "./src/components/Form/Form.tsx"
2355
- },
2356
- {
2357
- "moduleName": "./src/components/Loader/Loader.tsx"
2358
- },
2359
- {
2360
- "moduleName": "./src/components/Card/Card.tsx"
2361
- },
2362
- {
2363
- "moduleName": "./src/components/Modal/Modal.tsx"
2364
- },
2365
- {
2366
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
2367
- },
2368
- {
2369
- "moduleName": "./src/components/Modal/components/ModalBase.tsx"
2370
- },
2371
- {
2372
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2373
- },
2374
- {
2375
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
2376
- },
2377
- {
2378
- "moduleName": "./src/components/Progress/ProgressCircle.tsx"
2379
- },
2380
- {
2381
- "moduleName": "./src/components/Icon/Icon.tsx"
2382
- },
2383
- {
2384
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
2385
- },
2386
- {
2387
- "moduleName": "./src/components/Popover/Popover.tsx"
2388
- },
2389
- {
2390
- "moduleName": "./src/components/Search/Search.tsx"
2391
- },
2392
- {
2393
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
2394
- },
2395
- {
2396
- "moduleName": "./src/components/Tab/Tab.tsx"
2397
- },
2398
- {
2399
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
2400
- },
2401
- {
2402
- "moduleName": "./src/components/Tag/Tag.tsx"
2403
- },
2404
- {
2405
- "moduleName": "./src/components/TagInput/TagInput.tsx"
2406
- },
2407
- {
2408
- "moduleName": "./src/components/Toast/Toast.tsx"
2409
- },
2410
- {
2411
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2412
- },
2413
- {
2414
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
2415
- },
2416
- {
2417
- "moduleName": "./src/components/Switch/Switch.tsx"
2418
- },
2419
- {
2420
- "moduleName": "./src/components/Typography/Heading.tsx"
2421
- },
2422
- {
2423
- "moduleName": "./src/components/Typography/Text.tsx"
2424
- },
2425
- {
2426
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
2427
- },
2428
- {
2429
- "moduleName": "./src/components/Typography/Display.tsx"
2430
- },
2431
- {
2432
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2433
- },
2434
- {
2435
- "moduleName": "./src/components/Textarea/Textarea.tsx"
2436
- },
2437
- {
2438
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
2439
- },
2440
- {
2441
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2442
- },
2443
- {
2444
- "moduleName": "./src/components/DatePicker/helpers.ts"
2445
- },
2446
- {
2447
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2448
- },
2449
- {
2450
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
2451
- },
2452
- {
2453
- "moduleName": "./src/components/Picker/Trigger.tsx"
2454
- },
2455
- {
2456
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
2457
- },
2458
- {
2459
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2460
- },
2461
- {
2462
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
2463
- },
2464
- {
2465
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
2466
- },
2467
- {
2468
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
2469
- },
2470
- {
2471
- "moduleName": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx"
2472
- },
2473
- {
2474
- "moduleName": "./src/components/Alert/Alert.tsx"
1526
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
2475
1527
  },
2476
1528
  {
2477
1529
  "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
2478
1530
  },
2479
- {
2480
- "moduleName": "./src/components/Avatar/Avatar.tsx"
2481
- },
2482
1531
  {
2483
1532
  "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
2484
1533
  },
2485
1534
  {
2486
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
2487
- },
2488
- {
2489
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2490
- },
2491
- {
2492
- "moduleName": "./src/components/Button/Button.tsx"
2493
- },
2494
- {
2495
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
2496
- },
2497
- {
2498
- "moduleName": "./src/components/Badge/Badge.tsx"
2499
- },
2500
- {
2501
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2502
- },
2503
- {
2504
- "moduleName": "./src/components/DatePicker/helpers.ts"
2505
- },
2506
- {
2507
- "moduleName": "./src/components/Card/Card.tsx"
2508
- },
2509
- {
2510
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
2511
- },
2512
- {
2513
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
2514
- },
2515
- {
2516
- "moduleName": "./src/components/Form/Form.tsx"
2517
- },
2518
- {
2519
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1535
+ "moduleName": "./src/components/DetailsCard/DetailsCard.tsx"
2520
1536
  },
2521
1537
  {
2522
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1538
+ "moduleName": "./src/components/FormGroup/FormGroup.tsx"
2523
1539
  },
2524
1540
  {
2525
1541
  "moduleName": "./src/components/FormField/FormField.tsx"
2526
1542
  },
2527
1543
  {
2528
- "moduleName": "./src/components/Input/Input.tsx"
2529
- },
2530
- {
2531
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
1544
+ "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
2532
1545
  },
2533
1546
  {
2534
- "moduleName": "./src/components/Icon/Icon.tsx"
1547
+ "moduleName": "./src/components/Card/Card.tsx"
2535
1548
  },
2536
1549
  {
2537
1550
  "moduleName": "./src/components/Loader/Loader.tsx"
2538
1551
  },
2539
1552
  {
2540
- "moduleName": "./src/components/Modal/components/ModalBase.tsx"
2541
- },
2542
- {
2543
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
2544
- },
2545
- {
2546
- "moduleName": "./src/components/Modal/Modal.tsx"
2547
- },
2548
- {
2549
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1553
+ "moduleName": "./src/components/Button/Button.tsx"
2550
1554
  },
2551
1555
  {
2552
1556
  "moduleName": "./src/components/Link/Link.tsx"
2553
1557
  },
2554
- {
2555
- "moduleName": "./src/components/Popover/Popover.tsx"
2556
- },
2557
- {
2558
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
2559
- },
2560
1558
  {
2561
1559
  "moduleName": "./src/components/Picker/PickerList.tsx"
2562
1560
  },
2563
1561
  {
2564
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
2565
- },
2566
- {
2567
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2568
- },
2569
- {
2570
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
2571
- },
2572
- {
2573
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
2574
- },
2575
- {
2576
- "moduleName": "./src/components/Switch/Switch.tsx"
2577
- },
2578
- {
2579
- "moduleName": "./src/components/Tag/Tag.tsx"
2580
- },
2581
- {
2582
- "moduleName": "./src/components/Tab/Tab.tsx"
2583
- },
2584
- {
2585
- "moduleName": "./src/components/Toast/Toast.tsx"
2586
- },
2587
- {
2588
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2589
- },
2590
- {
2591
- "moduleName": "./src/components/Search/Search.tsx"
2592
- },
2593
- {
2594
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2595
- },
2596
- {
2597
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
2598
- },
2599
- {
2600
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
2601
- },
2602
- {
2603
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
2604
- },
2605
- {
2606
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2607
- },
2608
- {
2609
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
1562
+ "moduleName": "./src/components/Modal/Modal.tsx"
2610
1563
  },
2611
1564
  {
2612
- "moduleName": "./src/components/Textarea/Textarea.tsx"
1565
+ "moduleName": "./src/components/Picker/Picker.tsx"
2613
1566
  },
2614
1567
  {
2615
- "moduleName": "./src/components/Typography/Heading.tsx"
1568
+ "moduleName": "./src/components/Modal/components/ModalBase.tsx"
2616
1569
  },
2617
1570
  {
2618
- "moduleName": "./src/components/Typography/Text.tsx"
1571
+ "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
2619
1572
  },
2620
1573
  {
2621
- "moduleName": "./src/components/Typography/Display.tsx"
1574
+ "moduleName": "./src/components/Input/Input.tsx"
2622
1575
  },
2623
1576
  {
2624
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
1577
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2625
1578
  },
2626
1579
  {
2627
- "moduleName": "./src/components/Picker/Trigger.tsx"
1580
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
2628
1581
  },
2629
1582
  {
2630
- "moduleName": "./src/components/Picker/Picker.tsx"
1583
+ "moduleName": "./src/components/Popover/Popover.tsx"
2631
1584
  },
2632
1585
  {
2633
1586
  "moduleName": "./src/components/Progress/ProgressCircle.tsx"
@@ -2636,265 +1589,190 @@
2636
1589
  "moduleName": "./src/components/Progress/ProgressBar.tsx"
2637
1590
  },
2638
1591
  {
2639
- "moduleName": "./src/components/TagInput/TagInput.tsx"
2640
- },
2641
- {
2642
- "moduleName": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx"
2643
- },
2644
- {
2645
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
2646
- }
2647
- ]
2648
- },
2649
- {
2650
- "id": "./src/components/Avatar/Avatar.module.scss",
2651
- "name": "./src/components/Avatar/Avatar.module.scss",
2652
- "reasons": [
2653
- {
2654
- "moduleName": "./src/components/Avatar/Avatar.tsx"
2655
- },
2656
- {
2657
- "moduleName": "./src/components/Avatar/Avatar.tsx"
2658
- }
2659
- ]
2660
- },
2661
- {
2662
- "id": "./src/components/ActionBar/ActionBarItem.tsx",
2663
- "name": "./src/components/ActionBar/ActionBarItem.tsx",
2664
- "reasons": [
2665
- {
2666
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1592
+ "moduleName": "./src/components/RadioButton/RadioButton.tsx"
2667
1593
  },
2668
1594
  {
2669
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2670
- }
2671
- ]
2672
- },
2673
- {
2674
- "id": "./src/components/ActionBar/ActionBar.module.scss",
2675
- "name": "./src/components/ActionBar/ActionBar.module.scss",
2676
- "reasons": [
2677
- {
2678
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
1595
+ "moduleName": "./src/components/Search/Search.tsx"
2679
1596
  },
2680
1597
  {
2681
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
1598
+ "moduleName": "./src/components/Tag/Tag.tsx"
2682
1599
  },
2683
1600
  {
2684
- "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
1601
+ "moduleName": "./src/components/Switch/Switch.tsx"
2685
1602
  },
2686
1603
  {
2687
- "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2688
- }
2689
- ]
2690
- },
2691
- {
2692
- "id": "./src/components/Badge/Badge.helpers.ts",
2693
- "name": "./src/components/Badge/Badge.helpers.ts",
2694
- "reasons": [
2695
- {
2696
- "moduleName": "./src/components/Badge/Badge.tsx"
1604
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
2697
1605
  },
2698
1606
  {
2699
- "moduleName": "./src/components/Badge/Badge.tsx"
2700
- }
2701
- ]
2702
- },
2703
- {
2704
- "id": "./src/components/Badge/Badge.module.scss",
2705
- "name": "./src/components/Badge/Badge.module.scss",
2706
- "reasons": [
2707
- {
2708
- "moduleName": "./src/components/Badge/Badge.tsx"
1607
+ "moduleName": "./src/components/Tab/Tab.tsx"
2709
1608
  },
2710
1609
  {
2711
- "moduleName": "./src/components/Badge/Badge.tsx"
2712
- }
2713
- ]
2714
- },
2715
- {
2716
- "id": "./src/utils/keyCodes.ts",
2717
- "name": "./src/utils/keyCodes.ts",
2718
- "reasons": [
1610
+ "moduleName": "./src/components/Tab/TabsWrapper.tsx"
1611
+ },
2719
1612
  {
2720
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1613
+ "moduleName": "./src/components/TagInput/TagInput.tsx"
2721
1614
  },
2722
1615
  {
2723
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1616
+ "moduleName": "./src/components/Toast/Toast.tsx"
2724
1617
  },
2725
1618
  {
2726
- "moduleName": "./src/components/Picker/PickerList.tsx"
1619
+ "moduleName": "./src/components/Toast/ToastWrapper.tsx"
2727
1620
  },
2728
1621
  {
2729
- "moduleName": "./src/components/Picker/Picker.tsx"
1622
+ "moduleName": "./src/components/Tooltip/Tooltip.tsx"
2730
1623
  },
2731
1624
  {
2732
- "moduleName": "./src/components/Modal/components/ModalBase.tsx"
1625
+ "moduleName": "./src/components/Typography/Heading.tsx"
2733
1626
  },
2734
1627
  {
2735
- "moduleName": "./src/components/Search/Search.tsx"
1628
+ "moduleName": "./src/components/Typography/Text.tsx"
2736
1629
  },
2737
1630
  {
2738
- "moduleName": "./src/components/TagInput/TagInput.tsx"
1631
+ "moduleName": "./src/components/Typography/Display.tsx"
2739
1632
  },
2740
1633
  {
2741
- "moduleName": "./src/components/Picker/Trigger.tsx"
1634
+ "moduleName": "./src/components/Textarea/Textarea.tsx"
2742
1635
  },
2743
1636
  {
2744
- "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
1637
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
2745
1638
  },
2746
1639
  {
2747
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1640
+ "moduleName": "./src/components/UploadBar/UploadBar.tsx"
2748
1641
  },
2749
1642
  {
2750
- "moduleName": "./src/components/Modal/components/ModalBase.tsx"
1643
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
2751
1644
  },
2752
1645
  {
2753
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1646
+ "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2754
1647
  },
2755
1648
  {
2756
- "moduleName": "./src/components/Picker/PickerList.tsx"
1649
+ "moduleName": "./src/components/DatePicker/helpers.ts"
2757
1650
  },
2758
1651
  {
2759
- "moduleName": "./src/components/Search/Search.tsx"
1652
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
1653
+ },
1654
+ {
1655
+ "moduleName": "./src/components/Picker/TriggerBody.tsx"
2760
1656
  },
2761
1657
  {
2762
1658
  "moduleName": "./src/components/Picker/Trigger.tsx"
2763
1659
  },
2764
1660
  {
2765
- "moduleName": "./src/components/Picker/Picker.tsx"
1661
+ "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
2766
1662
  },
2767
1663
  {
2768
- "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
1664
+ "moduleName": "./src/components/Tooltip/components/Info.tsx"
2769
1665
  },
2770
1666
  {
2771
- "moduleName": "./src/components/TagInput/TagInput.tsx"
1667
+ "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
1668
+ },
1669
+ {
1670
+ "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
1671
+ },
1672
+ {
1673
+ "moduleName": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx"
2772
1674
  }
2773
1675
  ]
2774
1676
  },
2775
1677
  {
2776
- "id": "./src/components/ActionMenu/ActionMenu.module.scss",
2777
- "name": "./src/components/ActionMenu/ActionMenu.module.scss",
1678
+ "id": "./src/components/ActionBar/ActionBarItem.tsx",
1679
+ "name": "./src/components/ActionBar/ActionBarItem.tsx",
2778
1680
  "reasons": [
2779
1681
  {
2780
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
2781
- },
2782
- {
2783
- "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
1682
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2784
1683
  }
2785
1684
  ]
2786
1685
  },
2787
1686
  {
2788
- "id": "./src/components/ActionMenu/ActionMenuItem.module.scss",
2789
- "name": "./src/components/ActionMenu/ActionMenuItem.module.scss",
1687
+ "id": "./src/components/ActionBar/ActionBar.module.scss",
1688
+ "name": "./src/components/ActionBar/ActionBar.module.scss",
2790
1689
  "reasons": [
2791
1690
  {
2792
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1691
+ "moduleName": "./src/components/ActionBar/ActionBar.tsx"
2793
1692
  },
2794
1693
  {
2795
- "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
1694
+ "moduleName": "./src/components/ActionBar/ActionBarItem.tsx"
2796
1695
  }
2797
1696
  ]
2798
1697
  },
2799
1698
  {
2800
- "id": "./src/components/FieldError/FieldError.module.scss",
2801
- "name": "./src/components/FieldError/FieldError.module.scss",
1699
+ "id": "./polished",
1700
+ "name": "./polished",
2802
1701
  "reasons": [
2803
1702
  {
2804
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1703
+ "moduleName": "./src/components/Avatar/Avatar.helpers.ts"
2805
1704
  },
2806
1705
  {
2807
- "moduleName": "./src/components/FieldError/FieldError.tsx"
1706
+ "moduleName": "./src/components/Tag/Tag.tsx"
2808
1707
  }
2809
1708
  ]
2810
1709
  },
2811
1710
  {
2812
- "id": "./src/components/NumericInput/NumericInput.module.scss",
2813
- "name": "./src/components/NumericInput/NumericInput.module.scss",
1711
+ "id": "./lodash.debounce",
1712
+ "name": "./lodash.debounce",
2814
1713
  "reasons": [
2815
1714
  {
2816
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1715
+ "moduleName": "./src/components/Alert/Alert.tsx"
2817
1716
  },
2818
1717
  {
2819
- "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1718
+ "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2820
1719
  }
2821
1720
  ]
2822
1721
  },
2823
1722
  {
2824
- "id": "./src/components/FieldDescription/FieldDescription.module.scss",
2825
- "name": "./src/components/FieldDescription/FieldDescription.module.scss",
1723
+ "id": "./src/components/Alert/Alert.module.scss",
1724
+ "name": "./src/components/Alert/Alert.module.scss",
2826
1725
  "reasons": [
2827
1726
  {
2828
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
2829
- },
2830
- {
2831
- "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
1727
+ "moduleName": "./src/components/Alert/Alert.tsx"
2832
1728
  }
2833
1729
  ]
2834
1730
  },
2835
1731
  {
2836
- "id": "./src/utils/noop.ts",
2837
- "name": "./src/utils/noop.ts",
1732
+ "id": "./react-day-picker",
1733
+ "name": "./react-day-picker",
2838
1734
  "reasons": [
2839
1735
  {
2840
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
2841
- },
2842
- {
2843
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1736
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2844
1737
  }
2845
1738
  ]
2846
1739
  },
2847
1740
  {
2848
- "id": "./src/components/SegmentedControl/SegmentedControl.module.scss",
2849
- "name": "./src/components/SegmentedControl/SegmentedControl.module.scss",
1741
+ "id": "./src/components/DatePicker/DatePickerNavbar.tsx",
1742
+ "name": "./src/components/DatePicker/DatePickerNavbar.tsx",
2850
1743
  "reasons": [
2851
1744
  {
2852
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
2853
- },
2854
- {
2855
- "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
1745
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2856
1746
  }
2857
1747
  ]
2858
1748
  },
2859
1749
  {
2860
- "id": "./lodash.debounce",
2861
- "name": "./lodash.debounce",
1750
+ "id": "./src/components/DatePicker/helpers.ts",
1751
+ "name": "./src/components/DatePicker/helpers.ts",
2862
1752
  "reasons": [
2863
1753
  {
2864
- "moduleName": "./src/components/Alert/Alert.tsx"
2865
- },
2866
- {
2867
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1754
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2868
1755
  },
2869
1756
  {
2870
- "moduleName": "./src/components/Alert/Alert.tsx"
1757
+ "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
2871
1758
  },
2872
1759
  {
2873
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
1760
+ "moduleName": "./src/components/DatePicker/hooks.ts"
2874
1761
  }
2875
1762
  ]
2876
1763
  },
2877
1764
  {
2878
- "id": "./src/components/Alert/Alert.module.scss",
2879
- "name": "./src/components/Alert/Alert.module.scss",
1765
+ "id": "./src/components/DatePicker/DatePicker.module.scss",
1766
+ "name": "./src/components/DatePicker/DatePicker.module.scss",
2880
1767
  "reasons": [
2881
1768
  {
2882
- "moduleName": "./src/components/Alert/Alert.tsx"
1769
+ "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2883
1770
  },
2884
1771
  {
2885
- "moduleName": "./src/components/Alert/Alert.tsx"
2886
- }
2887
- ]
2888
- },
2889
- {
2890
- "id": "./src/components/FieldGroup/FieldGroup.module.scss",
2891
- "name": "./src/components/FieldGroup/FieldGroup.module.scss",
2892
- "reasons": [
2893
- {
2894
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1772
+ "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2895
1773
  },
2896
1774
  {
2897
- "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1775
+ "moduleName": "./src/components/DatePicker/helpers.ts"
2898
1776
  }
2899
1777
  ]
2900
1778
  },
@@ -2905,141 +1783,156 @@
2905
1783
  {
2906
1784
  "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
2907
1785
  },
2908
- {
2909
- "moduleName": "./src/components/DatePicker/helpers.ts"
2910
- },
2911
- {
2912
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2913
- },
2914
1786
  {
2915
1787
  "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
2916
1788
  },
2917
1789
  {
2918
1790
  "moduleName": "./src/components/DatePicker/helpers.ts"
2919
- },
1791
+ }
1792
+ ]
1793
+ },
1794
+ {
1795
+ "id": "./src/components/DatePicker/hooks.ts",
1796
+ "name": "./src/components/DatePicker/hooks.ts",
1797
+ "reasons": [
2920
1798
  {
2921
1799
  "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
2922
1800
  }
2923
1801
  ]
2924
1802
  },
2925
1803
  {
2926
- "id": "./src/components/DatePicker/helpers.ts",
2927
- "name": "./src/components/DatePicker/helpers.ts",
1804
+ "id": "./src/components/DatePicker/types.ts",
1805
+ "name": "./src/components/DatePicker/types.ts",
2928
1806
  "reasons": [
2929
1807
  {
2930
1808
  "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
2931
1809
  },
2932
- {
2933
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2934
- },
2935
1810
  {
2936
1811
  "moduleName": "./src/components/DatePicker/hooks.ts"
2937
- },
2938
- {
2939
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2940
- },
1812
+ }
1813
+ ]
1814
+ },
1815
+ {
1816
+ "id": "./src/components/Badge/Badge.helpers.ts",
1817
+ "name": "./src/components/Badge/Badge.helpers.ts",
1818
+ "reasons": [
2941
1819
  {
2942
- "moduleName": "./src/components/DatePicker/hooks.ts"
2943
- },
1820
+ "moduleName": "./src/components/Badge/Badge.tsx"
1821
+ }
1822
+ ]
1823
+ },
1824
+ {
1825
+ "id": "./src/components/Badge/Badge.module.scss",
1826
+ "name": "./src/components/Badge/Badge.module.scss",
1827
+ "reasons": [
2944
1828
  {
2945
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1829
+ "moduleName": "./src/components/Badge/Badge.tsx"
2946
1830
  }
2947
1831
  ]
2948
1832
  },
2949
1833
  {
2950
- "id": "./src/components/DatePicker/hooks.ts",
2951
- "name": "./src/components/DatePicker/hooks.ts",
1834
+ "id": "./src/components/Checkbox/Checkbox.module.scss",
1835
+ "name": "./src/components/Checkbox/Checkbox.module.scss",
2952
1836
  "reasons": [
2953
1837
  {
2954
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
2955
- },
1838
+ "moduleName": "./src/components/Checkbox/Checkbox.tsx"
1839
+ }
1840
+ ]
1841
+ },
1842
+ {
1843
+ "id": "./src/components/Avatar/Avatar.module.scss",
1844
+ "name": "./src/components/Avatar/Avatar.module.scss",
1845
+ "reasons": [
2956
1846
  {
2957
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1847
+ "moduleName": "./src/components/Avatar/Avatar.tsx"
2958
1848
  }
2959
1849
  ]
2960
1850
  },
2961
1851
  {
2962
- "id": "./src/components/DatePicker/types.ts",
2963
- "name": "./src/components/DatePicker/types.ts",
1852
+ "id": "./src/components/FieldGroup/FieldGroup.module.scss",
1853
+ "name": "./src/components/FieldGroup/FieldGroup.module.scss",
2964
1854
  "reasons": [
2965
1855
  {
2966
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
2967
- },
1856
+ "moduleName": "./src/components/FieldGroup/FieldGroup.tsx"
1857
+ }
1858
+ ]
1859
+ },
1860
+ {
1861
+ "id": "./src/components/FieldError/FieldError.module.scss",
1862
+ "name": "./src/components/FieldError/FieldError.module.scss",
1863
+ "reasons": [
2968
1864
  {
2969
- "moduleName": "./src/components/DatePicker/hooks.ts"
2970
- },
1865
+ "moduleName": "./src/components/FieldError/FieldError.tsx"
1866
+ }
1867
+ ]
1868
+ },
1869
+ {
1870
+ "id": "./src/components/DetailsCardInfo/DetailsCardInfo.module.scss",
1871
+ "name": "./src/components/DetailsCardInfo/DetailsCardInfo.module.scss",
1872
+ "reasons": [
2971
1873
  {
2972
- "moduleName": "./src/components/DatePicker/hooks.ts"
2973
- },
1874
+ "moduleName": "./src/components/DetailsCardInfo/DetailsCardInfo.tsx"
1875
+ }
1876
+ ]
1877
+ },
1878
+ {
1879
+ "id": "./src/components/Form/Form.module.scss",
1880
+ "name": "./src/components/Form/Form.module.scss",
1881
+ "reasons": [
2974
1882
  {
2975
- "moduleName": "./src/components/DatePicker/RangeDatePicker.tsx"
1883
+ "moduleName": "./src/components/Form/Form.tsx"
2976
1884
  }
2977
1885
  ]
2978
1886
  },
2979
1887
  {
2980
- "id": "./react-day-picker",
2981
- "name": "./react-day-picker",
1888
+ "id": "./src/components/Icon/Icon.module.scss",
1889
+ "name": "./src/components/Icon/Icon.module.scss",
2982
1890
  "reasons": [
2983
1891
  {
2984
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2985
- },
1892
+ "moduleName": "./src/components/Icon/Icon.tsx"
1893
+ }
1894
+ ]
1895
+ },
1896
+ {
1897
+ "id": "./src/utils/noop.ts",
1898
+ "name": "./src/utils/noop.ts",
1899
+ "reasons": [
2986
1900
  {
2987
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1901
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
2988
1902
  }
2989
1903
  ]
2990
1904
  },
2991
1905
  {
2992
- "id": "./src/components/DatePicker/DatePickerNavbar.tsx",
2993
- "name": "./src/components/DatePicker/DatePickerNavbar.tsx",
1906
+ "id": "./src/components/SegmentedControl/SegmentedControl.module.scss",
1907
+ "name": "./src/components/SegmentedControl/SegmentedControl.module.scss",
2994
1908
  "reasons": [
2995
1909
  {
2996
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
2997
- },
2998
- {
2999
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1910
+ "moduleName": "./src/components/SegmentedControl/SegmentedControl.tsx"
3000
1911
  }
3001
1912
  ]
3002
1913
  },
3003
1914
  {
3004
- "id": "./src/components/DatePicker/DatePicker.module.scss",
3005
- "name": "./src/components/DatePicker/DatePicker.module.scss",
1915
+ "id": "./@floating-ui/react",
1916
+ "name": "./@floating-ui/react",
3006
1917
  "reasons": [
3007
1918
  {
3008
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
3009
- },
3010
- {
3011
- "moduleName": "./src/components/DatePicker/helpers.ts"
3012
- },
3013
- {
3014
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
3015
- },
3016
- {
3017
- "moduleName": "./src/components/DatePicker/DatePickerNavbar.tsx"
1919
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
3018
1920
  },
3019
1921
  {
3020
- "moduleName": "./src/components/DatePicker/helpers.ts"
1922
+ "moduleName": "./src/components/Tooltip/Tooltip.tsx"
3021
1923
  },
3022
1924
  {
3023
- "moduleName": "./src/components/DatePicker/DatePicker.tsx"
1925
+ "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
3024
1926
  }
3025
1927
  ]
3026
1928
  },
3027
1929
  {
3028
- "id": "./src/components/Input/Input.module.scss",
3029
- "name": "./src/components/Input/Input.module.scss",
1930
+ "id": "./src/utils/keyCodes.ts",
1931
+ "name": "./src/utils/keyCodes.ts",
3030
1932
  "reasons": [
3031
1933
  {
3032
- "moduleName": "./src/components/Input/Input.tsx"
1934
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
3033
1935
  },
3034
- {
3035
- "moduleName": "./src/components/Input/Input.tsx"
3036
- }
3037
- ]
3038
- },
3039
- {
3040
- "id": "./src/components/Picker/constants.ts",
3041
- "name": "./src/components/Picker/constants.ts",
3042
- "reasons": [
3043
1936
  {
3044
1937
  "moduleName": "./src/components/Picker/PickerList.tsx"
3045
1938
  },
@@ -3047,112 +1940,94 @@
3047
1940
  "moduleName": "./src/components/Picker/Picker.tsx"
3048
1941
  },
3049
1942
  {
3050
- "moduleName": "./src/components/Picker/PickerList.tsx"
1943
+ "moduleName": "./src/components/Modal/components/ModalBase.tsx"
3051
1944
  },
3052
1945
  {
3053
- "moduleName": "./src/components/Picker/Picker.tsx"
1946
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
1947
+ },
1948
+ {
1949
+ "moduleName": "./src/components/Search/Search.tsx"
1950
+ },
1951
+ {
1952
+ "moduleName": "./src/components/TagInput/TagInput.tsx"
1953
+ },
1954
+ {
1955
+ "moduleName": "./src/components/Picker/Trigger.tsx"
1956
+ },
1957
+ {
1958
+ "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
3054
1959
  }
3055
1960
  ]
3056
1961
  },
3057
1962
  {
3058
- "id": "./src/components/Picker/helpers.ts",
3059
- "name": "./src/components/Picker/helpers.ts",
1963
+ "id": "./src/components/ActionMenu/ActionMenu.module.scss",
1964
+ "name": "./src/components/ActionMenu/ActionMenu.module.scss",
3060
1965
  "reasons": [
3061
1966
  {
3062
- "moduleName": "./src/components/Picker/PickerList.tsx"
3063
- },
3064
- {
3065
- "moduleName": "./src/components/Picker/PickerList.tsx"
1967
+ "moduleName": "./src/components/ActionMenu/ActionMenu.tsx"
3066
1968
  }
3067
1969
  ]
3068
1970
  },
3069
1971
  {
3070
- "id": "./src/components/Picker/PickerListItem.tsx",
3071
- "name": "./src/components/Picker/PickerListItem.tsx",
1972
+ "id": "./src/components/ActionMenu/ActionMenuItem.module.scss",
1973
+ "name": "./src/components/ActionMenu/ActionMenuItem.module.scss",
3072
1974
  "reasons": [
3073
1975
  {
3074
- "moduleName": "./src/components/Picker/PickerList.tsx"
3075
- },
3076
- {
3077
- "moduleName": "./src/components/Picker/PickerList.tsx"
1976
+ "moduleName": "./src/components/ActionMenu/ActionMenuItem.tsx"
3078
1977
  }
3079
1978
  ]
3080
1979
  },
3081
1980
  {
3082
- "id": "./src/components/Picker/PickerList.module.scss",
3083
- "name": "./src/components/Picker/PickerList.module.scss",
1981
+ "id": "./src/components/DetailsCard/DetailsCard.module.scss",
1982
+ "name": "./src/components/DetailsCard/DetailsCard.module.scss",
3084
1983
  "reasons": [
3085
1984
  {
3086
- "moduleName": "./src/components/Picker/PickerList.tsx"
3087
- },
3088
- {
3089
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
3090
- },
3091
- {
3092
- "moduleName": "./src/components/Picker/PickerListItem.tsx"
3093
- },
3094
- {
3095
- "moduleName": "./src/components/Picker/PickerList.tsx"
1985
+ "moduleName": "./src/components/DetailsCard/DetailsCard.tsx"
3096
1986
  }
3097
1987
  ]
3098
1988
  },
3099
1989
  {
3100
- "id": "./src/components/Picker/Trigger.tsx",
3101
- "name": "./src/components/Picker/Trigger.tsx",
1990
+ "id": "./src/components/FormGroup/FormGroup.module.scss",
1991
+ "name": "./src/components/FormGroup/FormGroup.module.scss",
3102
1992
  "reasons": [
3103
1993
  {
3104
- "moduleName": "./src/components/Picker/Picker.tsx"
3105
- },
3106
- {
3107
- "moduleName": "./src/components/Picker/Picker.tsx"
1994
+ "moduleName": "./src/components/FormGroup/FormGroup.tsx"
3108
1995
  }
3109
1996
  ]
3110
1997
  },
3111
1998
  {
3112
- "id": "./src/components/Picker/TriggerBody.tsx",
3113
- "name": "./src/components/Picker/TriggerBody.tsx",
1999
+ "id": "./src/components/FormField/FormField.module.scss",
2000
+ "name": "./src/components/FormField/FormField.module.scss",
3114
2001
  "reasons": [
3115
2002
  {
3116
- "moduleName": "./src/components/Picker/Picker.tsx"
3117
- },
3118
- {
3119
- "moduleName": "./src/components/Picker/Picker.tsx"
2003
+ "moduleName": "./src/components/FormField/FormField.tsx"
3120
2004
  }
3121
2005
  ]
3122
2006
  },
3123
2007
  {
3124
- "id": "./src/components/Picker/Picker.module.scss",
3125
- "name": "./src/components/Picker/Picker.module.scss",
2008
+ "id": "./src/components/FieldDescription/FieldDescription.module.scss",
2009
+ "name": "./src/components/FieldDescription/FieldDescription.module.scss",
3126
2010
  "reasons": [
3127
2011
  {
3128
- "moduleName": "./src/components/Picker/Picker.tsx"
3129
- },
3130
- {
3131
- "moduleName": "./src/components/Picker/Picker.tsx"
2012
+ "moduleName": "./src/components/FieldDescription/FieldDescription.tsx"
3132
2013
  }
3133
2014
  ]
3134
2015
  },
3135
2016
  {
3136
- "id": "./src/components/FormField/FormField.module.scss",
3137
- "name": "./src/components/FormField/FormField.module.scss",
2017
+ "id": "./src/components/Card/Card.module.scss",
2018
+ "name": "./src/components/Card/Card.module.scss",
3138
2019
  "reasons": [
3139
2020
  {
3140
- "moduleName": "./src/components/FormField/FormField.tsx"
3141
- },
3142
- {
3143
- "moduleName": "./src/components/FormField/FormField.tsx"
2021
+ "moduleName": "./src/components/Card/Card.tsx"
3144
2022
  }
3145
2023
  ]
3146
2024
  },
3147
2025
  {
3148
- "id": "./src/components/Link/Link.module.scss",
3149
- "name": "./src/components/Link/Link.module.scss",
2026
+ "id": "./src/components/Loader/Loader.module.scss",
2027
+ "name": "./src/components/Loader/Loader.module.scss",
3150
2028
  "reasons": [
3151
2029
  {
3152
- "moduleName": "./src/components/Link/Link.tsx"
3153
- },
3154
- {
3155
- "moduleName": "./src/components/Link/Link.tsx"
2030
+ "moduleName": "./src/components/Loader/Loader.tsx"
3156
2031
  }
3157
2032
  ]
3158
2033
  },
@@ -3160,59 +2035,59 @@
3160
2035
  "id": "./src/components/Button/Button.module.scss",
3161
2036
  "name": "./src/components/Button/Button.module.scss",
3162
2037
  "reasons": [
3163
- {
3164
- "moduleName": "./src/components/Button/Button.tsx"
3165
- },
3166
2038
  {
3167
2039
  "moduleName": "./src/components/Button/Button.tsx"
3168
2040
  }
3169
2041
  ]
3170
2042
  },
3171
2043
  {
3172
- "id": "./src/components/Checkbox/Checkbox.module.scss",
3173
- "name": "./src/components/Checkbox/Checkbox.module.scss",
2044
+ "id": "./src/components/Link/Link.module.scss",
2045
+ "name": "./src/components/Link/Link.module.scss",
3174
2046
  "reasons": [
3175
2047
  {
3176
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
3177
- },
3178
- {
3179
- "moduleName": "./src/components/Checkbox/Checkbox.tsx"
2048
+ "moduleName": "./src/components/Link/Link.tsx"
3180
2049
  }
3181
2050
  ]
3182
2051
  },
3183
2052
  {
3184
- "id": "./src/components/Form/Form.module.scss",
3185
- "name": "./src/components/Form/Form.module.scss",
2053
+ "id": "./src/components/Picker/constants.ts",
2054
+ "name": "./src/components/Picker/constants.ts",
3186
2055
  "reasons": [
3187
2056
  {
3188
- "moduleName": "./src/components/Form/Form.tsx"
2057
+ "moduleName": "./src/components/Picker/PickerList.tsx"
3189
2058
  },
3190
2059
  {
3191
- "moduleName": "./src/components/Form/Form.tsx"
2060
+ "moduleName": "./src/components/Picker/Picker.tsx"
3192
2061
  }
3193
2062
  ]
3194
2063
  },
3195
2064
  {
3196
- "id": "./src/components/Loader/Loader.module.scss",
3197
- "name": "./src/components/Loader/Loader.module.scss",
2065
+ "id": "./src/components/Picker/helpers.ts",
2066
+ "name": "./src/components/Picker/helpers.ts",
3198
2067
  "reasons": [
3199
2068
  {
3200
- "moduleName": "./src/components/Loader/Loader.tsx"
3201
- },
2069
+ "moduleName": "./src/components/Picker/PickerList.tsx"
2070
+ }
2071
+ ]
2072
+ },
2073
+ {
2074
+ "id": "./src/components/Picker/PickerListItem.tsx",
2075
+ "name": "./src/components/Picker/PickerListItem.tsx",
2076
+ "reasons": [
3202
2077
  {
3203
- "moduleName": "./src/components/Loader/Loader.tsx"
2078
+ "moduleName": "./src/components/Picker/PickerList.tsx"
3204
2079
  }
3205
2080
  ]
3206
2081
  },
3207
2082
  {
3208
- "id": "./src/components/Card/Card.module.scss",
3209
- "name": "./src/components/Card/Card.module.scss",
2083
+ "id": "./src/components/Picker/PickerList.module.scss",
2084
+ "name": "./src/components/Picker/PickerList.module.scss",
3210
2085
  "reasons": [
3211
2086
  {
3212
- "moduleName": "./src/components/Card/Card.tsx"
2087
+ "moduleName": "./src/components/Picker/PickerList.tsx"
3213
2088
  },
3214
2089
  {
3215
- "moduleName": "./src/components/Card/Card.tsx"
2090
+ "moduleName": "./src/components/Picker/PickerListItem.tsx"
3216
2091
  }
3217
2092
  ]
3218
2093
  },
@@ -3223,20 +2098,47 @@
3223
2098
  {
3224
2099
  "moduleName": "./src/components/Modal/Modal.tsx"
3225
2100
  },
3226
- {
3227
- "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
3228
- },
3229
- {
3230
- "moduleName": "./src/components/Modal/components/ModalBase.tsx"
3231
- },
3232
2101
  {
3233
2102
  "moduleName": "./src/components/Modal/components/ModalBase.tsx"
3234
2103
  },
3235
2104
  {
3236
2105
  "moduleName": "./src/components/Modal/components/ModalCloseButton.tsx"
3237
- },
2106
+ }
2107
+ ]
2108
+ },
2109
+ {
2110
+ "id": "./src/components/Picker/Trigger.tsx",
2111
+ "name": "./src/components/Picker/Trigger.tsx",
2112
+ "reasons": [
3238
2113
  {
3239
- "moduleName": "./src/components/Modal/Modal.tsx"
2114
+ "moduleName": "./src/components/Picker/Picker.tsx"
2115
+ }
2116
+ ]
2117
+ },
2118
+ {
2119
+ "id": "./src/components/Picker/TriggerBody.tsx",
2120
+ "name": "./src/components/Picker/TriggerBody.tsx",
2121
+ "reasons": [
2122
+ {
2123
+ "moduleName": "./src/components/Picker/Picker.tsx"
2124
+ }
2125
+ ]
2126
+ },
2127
+ {
2128
+ "id": "./src/components/Picker/Picker.module.scss",
2129
+ "name": "./src/components/Picker/Picker.module.scss",
2130
+ "reasons": [
2131
+ {
2132
+ "moduleName": "./src/components/Picker/Picker.tsx"
2133
+ }
2134
+ ]
2135
+ },
2136
+ {
2137
+ "id": "./src/components/Input/Input.module.scss",
2138
+ "name": "./src/components/Input/Input.module.scss",
2139
+ "reasons": [
2140
+ {
2141
+ "moduleName": "./src/components/Input/Input.tsx"
3240
2142
  }
3241
2143
  ]
3242
2144
  },
@@ -3244,9 +2146,6 @@
3244
2146
  "id": "./react-dom",
3245
2147
  "name": "./react-dom",
3246
2148
  "reasons": [
3247
- {
3248
- "moduleName": "./src/components/Modal/components/ModalPortal.tsx"
3249
- },
3250
2149
  {
3251
2150
  "moduleName": "./src/components/Modal/components/ModalPortal.tsx"
3252
2151
  }
@@ -3256,12 +2155,6 @@
3256
2155
  "id": "./@emotion/css",
3257
2156
  "name": "./@emotion/css",
3258
2157
  "reasons": [
3259
- {
3260
- "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
3261
- },
3262
- {
3263
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
3264
- },
3265
2158
  {
3266
2159
  "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
3267
2160
  },
@@ -3274,9 +2167,6 @@
3274
2167
  "id": "./src/components/Modal/components/ModalHeader.module.scss",
3275
2168
  "name": "./src/components/Modal/components/ModalHeader.module.scss",
3276
2169
  "reasons": [
3277
- {
3278
- "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
3279
- },
3280
2170
  {
3281
2171
  "moduleName": "./src/components/Modal/components/ModalHeader.tsx"
3282
2172
  }
@@ -3288,21 +2178,33 @@
3288
2178
  "reasons": [
3289
2179
  {
3290
2180
  "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
3291
- },
2181
+ }
2182
+ ]
2183
+ },
2184
+ {
2185
+ "id": "./src/components/NumericInput/NumericInput.module.scss",
2186
+ "name": "./src/components/NumericInput/NumericInput.module.scss",
2187
+ "reasons": [
3292
2188
  {
3293
- "moduleName": "./src/components/PromoBanner/PromoBanner.tsx"
2189
+ "moduleName": "./src/components/NumericInput/NumericInput.tsx"
3294
2190
  }
3295
2191
  ]
3296
2192
  },
3297
2193
  {
3298
- "id": "./src/components/FormGroup/FormGroup.module.scss",
3299
- "name": "./src/components/FormGroup/FormGroup.module.scss",
2194
+ "id": "./@floating-ui/react-dom",
2195
+ "name": "./@floating-ui/react-dom",
3300
2196
  "reasons": [
3301
2197
  {
3302
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
3303
- },
2198
+ "moduleName": "./src/components/Popover/Popover.tsx"
2199
+ }
2200
+ ]
2201
+ },
2202
+ {
2203
+ "id": "./src/components/Popover/Popover.module.scss",
2204
+ "name": "./src/components/Popover/Popover.module.scss",
2205
+ "reasons": [
3304
2206
  {
3305
- "moduleName": "./src/components/FormGroup/FormGroup.tsx"
2207
+ "moduleName": "./src/components/Popover/Popover.tsx"
3306
2208
  }
3307
2209
  ]
3308
2210
  },
@@ -3310,12 +2212,6 @@
3310
2212
  "id": "./src/components/Progress/helpers.ts",
3311
2213
  "name": "./src/components/Progress/helpers.ts",
3312
2214
  "reasons": [
3313
- {
3314
- "moduleName": "./src/components/Progress/ProgressCircle.tsx"
3315
- },
3316
- {
3317
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
3318
- },
3319
2215
  {
3320
2216
  "moduleName": "./src/components/Progress/ProgressCircle.tsx"
3321
2217
  },
@@ -3328,95 +2224,62 @@
3328
2224
  "id": "./src/components/Progress/ProgressCircle.module.scss",
3329
2225
  "name": "./src/components/Progress/ProgressCircle.module.scss",
3330
2226
  "reasons": [
3331
- {
3332
- "moduleName": "./src/components/Progress/ProgressCircle.tsx"
3333
- },
3334
2227
  {
3335
2228
  "moduleName": "./src/components/Progress/ProgressCircle.tsx"
3336
2229
  }
3337
2230
  ]
3338
2231
  },
3339
2232
  {
3340
- "id": "./src/components/Icon/Icon.module.scss",
3341
- "name": "./src/components/Icon/Icon.module.scss",
2233
+ "id": "./src/components/Progress/ProgressBar.module.scss",
2234
+ "name": "./src/components/Progress/ProgressBar.module.scss",
3342
2235
  "reasons": [
3343
2236
  {
3344
- "moduleName": "./src/components/Icon/Icon.tsx"
3345
- },
3346
- {
3347
- "moduleName": "./src/components/Icon/Icon.tsx"
2237
+ "moduleName": "./src/components/Progress/ProgressBar.tsx"
3348
2238
  }
3349
2239
  ]
3350
2240
  },
3351
2241
  {
3352
- "id": "./src/components/Progress/ProgressBar.module.scss",
3353
- "name": "./src/components/Progress/ProgressBar.module.scss",
2242
+ "id": "./src/components/RadioButton/RadioButton.module.scss",
2243
+ "name": "./src/components/RadioButton/RadioButton.module.scss",
3354
2244
  "reasons": [
3355
2245
  {
3356
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
3357
- },
3358
- {
3359
- "moduleName": "./src/components/Progress/ProgressBar.tsx"
2246
+ "moduleName": "./src/components/RadioButton/RadioButton.tsx"
3360
2247
  }
3361
2248
  ]
3362
2249
  },
3363
2250
  {
3364
- "id": "./@floating-ui/react-dom",
3365
- "name": "./@floating-ui/react-dom",
2251
+ "id": "./src/components/Search/Search.module.scss",
2252
+ "name": "./src/components/Search/Search.module.scss",
3366
2253
  "reasons": [
3367
2254
  {
3368
- "moduleName": "./src/components/Popover/Popover.tsx"
3369
- },
3370
- {
3371
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
3372
- },
3373
- {
3374
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
3375
- },
3376
- {
3377
- "moduleName": "./src/components/Popover/Popover.tsx"
3378
- },
3379
- {
3380
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
3381
- },
3382
- {
3383
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
2255
+ "moduleName": "./src/components/Search/Search.tsx"
3384
2256
  }
3385
2257
  ]
3386
2258
  },
3387
2259
  {
3388
- "id": "./src/components/Popover/Popover.module.scss",
3389
- "name": "./src/components/Popover/Popover.module.scss",
2260
+ "id": "./src/components/Tag/Tag.module.scss",
2261
+ "name": "./src/components/Tag/Tag.module.scss",
3390
2262
  "reasons": [
3391
2263
  {
3392
- "moduleName": "./src/components/Popover/Popover.tsx"
3393
- },
3394
- {
3395
- "moduleName": "./src/components/Popover/Popover.tsx"
2264
+ "moduleName": "./src/components/Tag/Tag.tsx"
3396
2265
  }
3397
2266
  ]
3398
2267
  },
3399
2268
  {
3400
- "id": "./src/components/Search/Search.module.scss",
3401
- "name": "./src/components/Search/Search.module.scss",
2269
+ "id": "./src/components/Switch/Switch.module.scss",
2270
+ "name": "./src/components/Switch/Switch.module.scss",
3402
2271
  "reasons": [
3403
2272
  {
3404
- "moduleName": "./src/components/Search/Search.tsx"
3405
- },
3406
- {
3407
- "moduleName": "./src/components/Search/Search.tsx"
2273
+ "moduleName": "./src/components/Switch/Switch.tsx"
3408
2274
  }
3409
2275
  ]
3410
2276
  },
3411
2277
  {
3412
- "id": "./src/components/RadioButton/RadioButton.module.scss",
3413
- "name": "./src/components/RadioButton/RadioButton.module.scss",
2278
+ "id": "./src/components/PromoBannerV2/PromoBannerV2.module.scss",
2279
+ "name": "./src/components/PromoBannerV2/PromoBannerV2.module.scss",
3414
2280
  "reasons": [
3415
2281
  {
3416
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
3417
- },
3418
- {
3419
- "moduleName": "./src/components/RadioButton/RadioButton.tsx"
2282
+ "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
3420
2283
  }
3421
2284
  ]
3422
2285
  },
@@ -3424,9 +2287,6 @@
3424
2287
  "id": "./src/components/Tab/Tab.module.scss",
3425
2288
  "name": "./src/components/Tab/Tab.module.scss",
3426
2289
  "reasons": [
3427
- {
3428
- "moduleName": "./src/components/Tab/Tab.tsx"
3429
- },
3430
2290
  {
3431
2291
  "moduleName": "./src/components/Tab/Tab.tsx"
3432
2292
  }
@@ -3438,21 +2298,6 @@
3438
2298
  "reasons": [
3439
2299
  {
3440
2300
  "moduleName": "./src/components/Tab/TabsWrapper.tsx"
3441
- },
3442
- {
3443
- "moduleName": "./src/components/Tab/TabsWrapper.tsx"
3444
- }
3445
- ]
3446
- },
3447
- {
3448
- "id": "./src/components/Tag/Tag.module.scss",
3449
- "name": "./src/components/Tag/Tag.module.scss",
3450
- "reasons": [
3451
- {
3452
- "moduleName": "./src/components/Tag/Tag.tsx"
3453
- },
3454
- {
3455
- "moduleName": "./src/components/Tag/Tag.tsx"
3456
2301
  }
3457
2302
  ]
3458
2303
  },
@@ -3460,9 +2305,6 @@
3460
2305
  "id": "./src/components/TagInput/EditableTag.tsx",
3461
2306
  "name": "./src/components/TagInput/EditableTag.tsx",
3462
2307
  "reasons": [
3463
- {
3464
- "moduleName": "./src/components/TagInput/TagInput.tsx"
3465
- },
3466
2308
  {
3467
2309
  "moduleName": "./src/components/TagInput/TagInput.tsx"
3468
2310
  }
@@ -3477,12 +2319,6 @@
3477
2319
  },
3478
2320
  {
3479
2321
  "moduleName": "./src/components/TagInput/EditableTag.tsx"
3480
- },
3481
- {
3482
- "moduleName": "./src/components/TagInput/EditableTag.tsx"
3483
- },
3484
- {
3485
- "moduleName": "./src/components/TagInput/TagInput.tsx"
3486
2322
  }
3487
2323
  ]
3488
2324
  },
@@ -3490,12 +2326,6 @@
3490
2326
  "id": "./src/components/Toast/Toast.module.scss",
3491
2327
  "name": "./src/components/Toast/Toast.module.scss",
3492
2328
  "reasons": [
3493
- {
3494
- "moduleName": "./src/components/Toast/Toast.tsx"
3495
- },
3496
- {
3497
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
3498
- },
3499
2329
  {
3500
2330
  "moduleName": "./src/components/Toast/Toast.tsx"
3501
2331
  },
@@ -3516,15 +2346,6 @@
3516
2346
  },
3517
2347
  {
3518
2348
  "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
3519
- },
3520
- {
3521
- "moduleName": "./src/components/Toast/ToastWrapper.tsx"
3522
- },
3523
- {
3524
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
3525
- },
3526
- {
3527
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
3528
2349
  }
3529
2350
  ]
3530
2351
  },
@@ -3532,9 +2353,6 @@
3532
2353
  "id": "./src/components/Tooltip/components/FloatingComponent.tsx",
3533
2354
  "name": "./src/components/Tooltip/components/FloatingComponent.tsx",
3534
2355
  "reasons": [
3535
- {
3536
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
3537
- },
3538
2356
  {
3539
2357
  "moduleName": "./src/components/Tooltip/Tooltip.tsx"
3540
2358
  }
@@ -3544,15 +2362,6 @@
3544
2362
  "id": "./src/components/Tooltip/helpers.ts",
3545
2363
  "name": "./src/components/Tooltip/helpers.ts",
3546
2364
  "reasons": [
3547
- {
3548
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
3549
- },
3550
- {
3551
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
3552
- },
3553
- {
3554
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
3555
- },
3556
2365
  {
3557
2366
  "moduleName": "./src/components/Tooltip/Tooltip.tsx"
3558
2367
  },
@@ -3588,39 +2397,6 @@
3588
2397
  },
3589
2398
  {
3590
2399
  "moduleName": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx"
3591
- },
3592
- {
3593
- "moduleName": "./src/components/Tooltip/components/FloatingComponent.tsx"
3594
- },
3595
- {
3596
- "moduleName": "./src/components/Tooltip/Tooltip.tsx"
3597
- },
3598
- {
3599
- "moduleName": "./src/components/Tooltip/components/Info.tsx"
3600
- },
3601
- {
3602
- "moduleName": "./src/components/Tooltip/components/Reports.tsx"
3603
- },
3604
- {
3605
- "moduleName": "./src/components/Tooltip/components/Interactive.tsx"
3606
- },
3607
- {
3608
- "moduleName": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx"
3609
- },
3610
- {
3611
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
3612
- }
3613
- ]
3614
- },
3615
- {
3616
- "id": "./src/components/Switch/Switch.module.scss",
3617
- "name": "./src/components/Switch/Switch.module.scss",
3618
- "reasons": [
3619
- {
3620
- "moduleName": "./src/components/Switch/Switch.tsx"
3621
- },
3622
- {
3623
- "moduleName": "./src/components/Switch/Switch.tsx"
3624
2400
  }
3625
2401
  ]
3626
2402
  },
@@ -3628,9 +2404,6 @@
3628
2404
  "id": "./src/components/Tooltip/components/Simple.tsx",
3629
2405
  "name": "./src/components/Tooltip/components/Simple.tsx",
3630
2406
  "reasons": [
3631
- {
3632
- "moduleName": "./src/components/Tooltip/components/index.ts"
3633
- },
3634
2407
  {
3635
2408
  "moduleName": "./src/components/Tooltip/components/index.ts"
3636
2409
  }
@@ -3640,9 +2413,6 @@
3640
2413
  "id": "./src/components/Tooltip/components/Info.tsx",
3641
2414
  "name": "./src/components/Tooltip/components/Info.tsx",
3642
2415
  "reasons": [
3643
- {
3644
- "moduleName": "./src/components/Tooltip/components/index.ts"
3645
- },
3646
2416
  {
3647
2417
  "moduleName": "./src/components/Tooltip/components/index.ts"
3648
2418
  }
@@ -3652,9 +2422,6 @@
3652
2422
  "id": "./src/components/Tooltip/components/Interactive.tsx",
3653
2423
  "name": "./src/components/Tooltip/components/Interactive.tsx",
3654
2424
  "reasons": [
3655
- {
3656
- "moduleName": "./src/components/Tooltip/components/index.ts"
3657
- },
3658
2425
  {
3659
2426
  "moduleName": "./src/components/Tooltip/components/index.ts"
3660
2427
  }
@@ -3664,9 +2431,6 @@
3664
2431
  "id": "./src/components/Tooltip/components/Reports.tsx",
3665
2432
  "name": "./src/components/Tooltip/components/Reports.tsx",
3666
2433
  "reasons": [
3667
- {
3668
- "moduleName": "./src/components/Tooltip/components/index.ts"
3669
- },
3670
2434
  {
3671
2435
  "moduleName": "./src/components/Tooltip/components/index.ts"
3672
2436
  }
@@ -3676,9 +2440,6 @@
3676
2440
  "id": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx",
3677
2441
  "name": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx",
3678
2442
  "reasons": [
3679
- {
3680
- "moduleName": "./src/components/Tooltip/components/UserGuide/index.ts"
3681
- },
3682
2443
  {
3683
2444
  "moduleName": "./src/components/Tooltip/components/UserGuide/index.ts"
3684
2445
  }
@@ -3696,39 +2457,15 @@
3696
2457
  },
3697
2458
  {
3698
2459
  "moduleName": "./src/components/Typography/Display.tsx"
3699
- },
3700
- {
3701
- "moduleName": "./src/components/Typography/Heading.tsx"
3702
- },
3703
- {
3704
- "moduleName": "./src/components/Typography/Text.tsx"
3705
- },
3706
- {
3707
- "moduleName": "./src/components/Typography/Display.tsx"
3708
- }
3709
- ]
3710
- },
3711
- {
3712
- "id": "./src/components/PromoBannerV2/PromoBannerV2.module.scss",
3713
- "name": "./src/components/PromoBannerV2/PromoBannerV2.module.scss",
3714
- "reasons": [
3715
- {
3716
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
3717
- },
3718
- {
3719
- "moduleName": "./src/components/PromoBannerV2/PromoBannerV2.tsx"
3720
2460
  }
3721
2461
  ]
3722
2462
  },
3723
2463
  {
3724
- "id": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
3725
- "name": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
2464
+ "id": "./src/components/Textarea/Textarea.module.scss",
2465
+ "name": "./src/components/Textarea/Textarea.module.scss",
3726
2466
  "reasons": [
3727
2467
  {
3728
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
3729
- },
3730
- {
3731
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
2468
+ "moduleName": "./src/components/Textarea/Textarea.tsx"
3732
2469
  }
3733
2470
  ]
3734
2471
  },
@@ -3736,23 +2473,17 @@
3736
2473
  "id": "./src/components/FileUploadProgress/FileUploadProgress.module.scss",
3737
2474
  "name": "./src/components/FileUploadProgress/FileUploadProgress.module.scss",
3738
2475
  "reasons": [
3739
- {
3740
- "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
3741
- },
3742
2476
  {
3743
2477
  "moduleName": "./src/components/FileUploadProgress/FileUploadProgress.tsx"
3744
2478
  }
3745
2479
  ]
3746
2480
  },
3747
2481
  {
3748
- "id": "./src/components/Textarea/Textarea.module.scss",
3749
- "name": "./src/components/Textarea/Textarea.module.scss",
2482
+ "id": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
2483
+ "name": "./src/components/FileUploadProgress/FileUploadProgressActions.module.scss",
3750
2484
  "reasons": [
3751
2485
  {
3752
- "moduleName": "./src/components/Textarea/Textarea.tsx"
3753
- },
3754
- {
3755
- "moduleName": "./src/components/Textarea/Textarea.tsx"
2486
+ "moduleName": "./src/components/FileUploadProgress/FileUploadProgressActions.tsx"
3756
2487
  }
3757
2488
  ]
3758
2489
  },
@@ -3760,35 +2491,26 @@
3760
2491
  "id": "./src/components/UploadBar/UploadBar.module.scss",
3761
2492
  "name": "./src/components/UploadBar/UploadBar.module.scss",
3762
2493
  "reasons": [
3763
- {
3764
- "moduleName": "./src/components/UploadBar/UploadBar.tsx"
3765
- },
3766
2494
  {
3767
2495
  "moduleName": "./src/components/UploadBar/UploadBar.tsx"
3768
2496
  }
3769
2497
  ]
3770
2498
  },
3771
2499
  {
3772
- "id": "./src/components/Picker/Trigger.module.scss",
3773
- "name": "./src/components/Picker/Trigger.module.scss",
2500
+ "id": "./src/components/Picker/TriggerBody.module.scss",
2501
+ "name": "./src/components/Picker/TriggerBody.module.scss",
3774
2502
  "reasons": [
3775
2503
  {
3776
- "moduleName": "./src/components/Picker/Trigger.tsx"
3777
- },
3778
- {
3779
- "moduleName": "./src/components/Picker/Trigger.tsx"
2504
+ "moduleName": "./src/components/Picker/TriggerBody.tsx"
3780
2505
  }
3781
2506
  ]
3782
2507
  },
3783
2508
  {
3784
- "id": "./src/components/Picker/TriggerBody.module.scss",
3785
- "name": "./src/components/Picker/TriggerBody.module.scss",
2509
+ "id": "./src/components/Picker/Trigger.module.scss",
2510
+ "name": "./src/components/Picker/Trigger.module.scss",
3786
2511
  "reasons": [
3787
2512
  {
3788
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
3789
- },
3790
- {
3791
- "moduleName": "./src/components/Picker/TriggerBody.tsx"
2513
+ "moduleName": "./src/components/Picker/Trigger.tsx"
3792
2514
  }
3793
2515
  ]
3794
2516
  },
@@ -3796,9 +2518,6 @@
3796
2518
  "id": "./src/components/Progress/constants.ts",
3797
2519
  "name": "./src/components/Progress/constants.ts",
3798
2520
  "reasons": [
3799
- {
3800
- "moduleName": "./src/components/Progress/helpers.ts"
3801
- },
3802
2521
  {
3803
2522
  "moduleName": "./src/components/Progress/helpers.ts"
3804
2523
  }
@@ -3808,9 +2527,6 @@
3808
2527
  "id": "./src/components/TagInput/EditableTagContent.tsx",
3809
2528
  "name": "./src/components/TagInput/EditableTagContent.tsx",
3810
2529
  "reasons": [
3811
- {
3812
- "moduleName": "./src/components/TagInput/EditableTag.tsx"
3813
- },
3814
2530
  {
3815
2531
  "moduleName": "./src/components/TagInput/EditableTag.tsx"
3816
2532
  }
@@ -3820,9 +2536,6 @@
3820
2536
  "id": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx",
3821
2537
  "name": "./src/components/Tooltip/components/UserGuide/SpotlightOverlay.tsx",
3822
2538
  "reasons": [
3823
- {
3824
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
3825
- },
3826
2539
  {
3827
2540
  "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
3828
2541
  }
@@ -3832,9 +2545,6 @@
3832
2545
  "id": "./src/components/Tooltip/components/UserGuide/virtualElementReference.ts",
3833
2546
  "name": "./src/components/Tooltip/components/UserGuide/virtualElementReference.ts",
3834
2547
  "reasons": [
3835
- {
3836
- "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
3837
- },
3838
2548
  {
3839
2549
  "moduleName": "./src/components/Tooltip/components/UserGuide/UserGuide.tsx"
3840
2550
  }
@@ -3844,9 +2554,6 @@
3844
2554
  "id": "./lodash.escape",
3845
2555
  "name": "./lodash.escape",
3846
2556
  "reasons": [
3847
- {
3848
- "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
3849
- },
3850
2557
  {
3851
2558
  "moduleName": "./src/components/TagInput/EditableTagContent.tsx"
3852
2559
  }