@livechat/design-system-react-components 1.0.0-alpha.6 → 1.0.0-alpha.60

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