@xola/ui-kit 3.0.8 → 3.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. package/README.md +61 -12
  2. package/build/components/Alert.d.ts +18 -0
  3. package/build/components/Alert.js +28 -0
  4. package/build/components/Animation/FadeIn.d.ts +13 -0
  5. package/build/components/Animation/FadeIn.js +29 -0
  6. package/build/components/Animation/SlideDown.d.ts +6 -0
  7. package/build/components/Animation/SlideDown.js +20 -0
  8. package/build/components/Avatar.d.ts +16 -0
  9. package/build/components/Avatar.js +21 -0
  10. package/build/components/Badge.d.ts +27 -0
  11. package/build/components/Badge.js +40 -0
  12. package/build/components/Breadcrumb.d.ts +21 -0
  13. package/build/components/Breadcrumb.js +27 -0
  14. package/build/components/Breakdown.d.ts +63 -0
  15. package/build/components/Breakdown.js +89 -0
  16. package/build/components/Buttons/Button.d.ts +53 -0
  17. package/build/components/Buttons/Button.js +83 -0
  18. package/build/components/Buttons/ButtonGroup.d.ts +35 -0
  19. package/build/components/Buttons/ButtonGroup.js +55 -0
  20. package/build/components/Buttons/SubmitButton.d.ts +11 -0
  21. package/build/components/Buttons/SubmitButton.js +83 -0
  22. package/build/components/Buttons/ToggleButton.d.ts +21 -0
  23. package/build/components/Buttons/ToggleButton.js +34 -0
  24. package/build/components/Charts/BaseChartOptions.d.ts +136 -0
  25. package/build/components/Charts/BaseChartOptions.js +95 -0
  26. package/build/components/Charts/HistogramOptions.d.ts +192 -0
  27. package/build/components/Charts/HistogramOptions.js +69 -0
  28. package/build/components/Charts/PieOptions.d.ts +177 -0
  29. package/build/components/Charts/PieOptions.js +55 -0
  30. package/build/components/Counter.d.ts +5 -0
  31. package/build/components/Counter.js +16 -0
  32. package/build/components/DatePicker/DatePicker.d.ts +41 -0
  33. package/build/components/DatePicker/DatePicker.helpers.d.ts +17 -0
  34. package/build/components/DatePicker/DatePicker.helpers.js +22 -0
  35. package/build/components/DatePicker/DatePicker.js +241 -0
  36. package/build/components/DatePicker/DatePickerPopover.d.ts +29 -0
  37. package/build/components/DatePicker/DatePickerPopover.js +81 -0
  38. package/build/components/DatePicker/Day.d.ts +13 -0
  39. package/build/components/DatePicker/Day.js +40 -0
  40. package/build/components/DatePicker/LocalizedDayPicker.d.ts +6 -0
  41. package/build/components/DatePicker/LocalizedDayPicker.js +20 -0
  42. package/build/components/DatePicker/MonthGrid.d.ts +11 -0
  43. package/build/components/DatePicker/MonthGrid.js +52 -0
  44. package/build/components/DatePicker/MonthPicker.d.ts +7 -0
  45. package/build/components/DatePicker/MonthPicker.js +28 -0
  46. package/build/components/DatePicker/MonthSelector.d.ts +8 -0
  47. package/build/components/DatePicker/MonthSelector.js +47 -0
  48. package/build/components/DatePicker/MonthYearSelector.d.ts +8 -0
  49. package/build/components/DatePicker/MonthYearSelector.js +44 -0
  50. package/build/components/DatePicker/NavbarElement.d.ts +15 -0
  51. package/build/components/DatePicker/NavbarElement.js +43 -0
  52. package/build/components/DatePicker/RangeDatePicker.d.ts +25 -0
  53. package/build/components/DatePicker/RangeDatePicker.js +134 -0
  54. package/build/components/DatePicker/RelativeDateRange.d.ts +51 -0
  55. package/build/components/DatePicker/RelativeDateRange.js +280 -0
  56. package/build/components/DatePicker/UpcomingDatePicker.d.ts +11 -0
  57. package/build/components/DatePicker/UpcomingDatePicker.js +27 -0
  58. package/build/components/Dot/Dot.d.ts +24 -0
  59. package/build/components/Dot/Dot.js +24 -0
  60. package/build/components/Dot/DotProgress.d.ts +6 -0
  61. package/build/components/Dot/DotProgress.js +10 -0
  62. package/build/components/Drawer.d.ts +28 -0
  63. package/build/components/Drawer.js +126 -0
  64. package/build/components/Forms/BaseInput.d.ts +20 -0
  65. package/build/components/Forms/BaseInput.js +41 -0
  66. package/build/components/Forms/Checkbox.d.ts +10 -0
  67. package/build/components/Forms/Checkbox.js +34 -0
  68. package/build/components/Forms/Checkbox.module.css.js +7 -0
  69. package/build/components/Forms/ComboBox.d.ts +8 -0
  70. package/build/components/Forms/ComboBox.js +41 -0
  71. package/build/components/Forms/FormGroup.d.ts +5 -0
  72. package/build/components/Forms/FormGroup.js +6 -0
  73. package/build/components/Forms/InlineValuePopover.d.ts +17 -0
  74. package/build/components/Forms/InlineValuePopover.js +47 -0
  75. package/build/components/Forms/Input.d.ts +6 -0
  76. package/build/components/Forms/Input.js +9 -0
  77. package/build/components/Forms/Label.d.ts +7 -0
  78. package/build/components/Forms/Label.js +17 -0
  79. package/build/components/Forms/RangeSlider.d.ts +33 -0
  80. package/build/components/Forms/RangeSlider.js +39 -0
  81. package/build/components/Forms/Select.d.ts +5 -0
  82. package/build/components/Forms/Select.js +8 -0
  83. package/build/components/Forms/Switch.d.ts +46 -0
  84. package/build/components/Forms/Switch.js +62 -0
  85. package/build/components/Forms/Textarea.d.ts +6 -0
  86. package/build/components/Forms/Textarea.js +35 -0
  87. package/build/components/Forms/ValuePopoverText.d.ts +6 -0
  88. package/build/components/Forms/ValuePopoverText.js +10 -0
  89. package/build/components/GooglePlacesAutocomplete.d.ts +14 -0
  90. package/build/components/HeaderToolbar.d.ts +21 -0
  91. package/build/components/HeaderToolbar.js +33 -0
  92. package/build/components/ImageUpload.d.ts +17 -0
  93. package/build/components/ImageUpload.js +86 -0
  94. package/build/components/Key.d.ts +6 -0
  95. package/build/components/Key.js +28 -0
  96. package/build/components/Logo.d.ts +19 -0
  97. package/build/components/Logo.js +10 -0
  98. package/build/components/Modal.d.ts +52 -0
  99. package/build/components/Modal.js +126 -0
  100. package/build/components/Popover/Popover.d.ts +20 -0
  101. package/build/components/Popover/Popover.js +50 -0
  102. package/build/components/Popover/Popover.module.css.js +7 -0
  103. package/build/components/Popover/PopoverList.d.ts +25 -0
  104. package/build/components/Popover/PopoverList.js +59 -0
  105. package/build/components/Popover/PopoverScroll.module.css.js +4 -0
  106. package/build/components/Provider.d.ts +18 -0
  107. package/build/components/Provider.js +17 -0
  108. package/build/components/Screens/Login.d.ts +25 -0
  109. package/build/components/Screens/Login.js +144 -0
  110. package/build/components/Search.d.ts +16 -0
  111. package/build/components/Search.js +174 -0
  112. package/build/components/Sidebar/Sidebar.Account.d.ts +13 -0
  113. package/build/components/Sidebar/Sidebar.Account.js +56 -0
  114. package/build/components/Sidebar/Sidebar.Button.d.ts +10 -0
  115. package/build/components/Sidebar/Sidebar.Button.js +21 -0
  116. package/build/components/Sidebar/Sidebar.Footer.d.ts +8 -0
  117. package/build/components/Sidebar/Sidebar.Footer.js +9 -0
  118. package/build/components/Sidebar/Sidebar.Heading.d.ts +10 -0
  119. package/build/components/Sidebar/Sidebar.Heading.js +10 -0
  120. package/build/components/Sidebar/Sidebar.Link.d.ts +24 -0
  121. package/build/components/Sidebar/Sidebar.Link.js +56 -0
  122. package/build/components/Sidebar/Sidebar.Menu.d.ts +10 -0
  123. package/build/components/Sidebar/Sidebar.Menu.js +28 -0
  124. package/build/components/Sidebar/Sidebar.Menu.module.css.js +7 -0
  125. package/build/components/Sidebar/Sidebar.d.ts +58 -0
  126. package/build/components/Sidebar/Sidebar.js +218 -0
  127. package/build/components/Sidebar/SidebarScroll.module.css.js +4 -0
  128. package/build/components/Sidebar/index.d.ts +8 -0
  129. package/build/components/Skeleton.d.ts +13 -0
  130. package/build/components/Skeleton.js +29 -0
  131. package/build/components/Skeleton.module.css.js +7 -0
  132. package/build/components/Spinner.d.ts +26 -0
  133. package/build/components/Spinner.js +27 -0
  134. package/build/components/Table.d.ts +59 -0
  135. package/build/components/Table.js +71 -0
  136. package/build/components/Tabs/Tabs.Panel.d.ts +9 -0
  137. package/build/components/Tabs/Tabs.Panel.js +7 -0
  138. package/build/components/Tabs/Tabs.Tab.d.ts +19 -0
  139. package/build/components/Tabs/Tabs.Tab.js +37 -0
  140. package/build/components/Tabs/Tabs.d.ts +27 -0
  141. package/build/components/Tabs/Tabs.js +28 -0
  142. package/build/components/Tabs/index.d.ts +4 -0
  143. package/build/components/Tag.d.ts +25 -0
  144. package/build/components/Tag.js +36 -0
  145. package/build/components/Tooltip.d.ts +8 -0
  146. package/build/components/Tooltip.js +8 -0
  147. package/build/components/Utilities/Currency.d.ts +32 -0
  148. package/build/components/Utilities/Currency.js +49 -0
  149. package/build/components/Utilities/Number.d.ts +8 -0
  150. package/build/components/Utilities/Number.js +15 -0
  151. package/build/components/Utilities/Phone.d.ts +8 -0
  152. package/build/components/Utilities/Phone.js +19 -0
  153. package/build/helpers/avatar.d.ts +1 -0
  154. package/build/helpers/avatar.js +8 -0
  155. package/build/helpers/browser.d.ts +2 -0
  156. package/build/helpers/browser.js +9 -0
  157. package/build/helpers/children.d.ts +3 -0
  158. package/build/helpers/children.js +6 -0
  159. package/build/helpers/classnames.d.ts +5 -0
  160. package/build/helpers/currency.d.ts +2 -0
  161. package/build/helpers/currency.js +11 -0
  162. package/build/helpers/date.d.ts +12 -0
  163. package/build/helpers/date.js +44 -0
  164. package/build/helpers/flash.d.ts +21 -0
  165. package/build/helpers/flash.js +87 -0
  166. package/build/helpers/numbers.d.ts +4 -0
  167. package/build/helpers/numbers.js +23 -0
  168. package/build/helpers/phone.d.ts +11 -0
  169. package/build/helpers/phone.js +25 -0
  170. package/build/hooks/useId.d.ts +1 -0
  171. package/build/hooks/useId.js +9 -0
  172. package/build/hooks/useIsClient.d.ts +1 -0
  173. package/build/hooks/useIsClient.js +10 -0
  174. package/build/hooks/useViewportHeight.d.ts +1 -0
  175. package/build/hooks/useViewportHeight.js +15 -0
  176. package/build/icons/build/AnnounceIcon.js +6 -0
  177. package/build/icons/build/BellIcon.js +23 -0
  178. package/build/icons/build/CalendarIcon.js +15 -0
  179. package/build/icons/build/CheckIcon.js +7 -0
  180. package/build/icons/build/ChevronDownIcon.js +7 -0
  181. package/build/icons/build/ChevronLeftIcon.js +7 -0
  182. package/build/icons/build/ChevronRightIcon.js +7 -0
  183. package/build/icons/build/CircleNotch.js +5 -0
  184. package/build/icons/build/CloseIcon.js +7 -0
  185. package/build/icons/build/DownArrowIcon.js +15 -0
  186. package/build/icons/build/ImageIcon.js +23 -0
  187. package/build/icons/build/SearchIcon.js +15 -0
  188. package/build/icons/build/TrashIcon.js +16 -0
  189. package/build/icons/build/WarningDiamondIcon.js +23 -0
  190. package/build/icons/build/helpers/classnames.js +8 -0
  191. package/build/icons/build/helpers/icon.js +10 -0
  192. package/build/icons/build/helpers/iconSizes.js +13 -0
  193. package/build/icons/build/images/XolaLogoSimple.js +13 -0
  194. package/build/index.d.ts +66 -0
  195. package/build/index.js +142 -0
  196. package/build/theme.d.ts +413 -0
  197. package/build/theme.js +372 -0
  198. package/build/types/index.d.ts +22 -0
  199. package/build/types/migration.d.ts +2 -0
  200. package/build/ui-kit.css +1 -0
  201. package/build/utils/avatar.d.ts +1 -0
  202. package/build/utils/avatar.js +8 -0
  203. package/build/utils/currency.d.ts +2 -0
  204. package/build/utils/currency.js +11 -0
  205. package/build/utils/date.d.ts +12 -0
  206. package/build/utils/date.js +23 -0
  207. package/build/utils/index.d.ts +5 -0
  208. package/build/utils/numbers.d.ts +4 -0
  209. package/build/utils/numbers.js +19 -0
  210. package/build/utils/phone.d.ts +2 -0
  211. package/build/utils/phone.js +17 -0
  212. package/package.json +76 -49
  213. package/postcss.config.js +1 -1
  214. package/tailwind.config.js +28 -8
  215. package/build/style.css +0 -1
  216. package/build/ui-kit.es.js +0 -12173
  217. package/index.d.ts +0 -72
@@ -0,0 +1,413 @@
1
+ export namespace theme {
2
+ namespace colors {
3
+ let transparent: string;
4
+ let current: string;
5
+ let black: string;
6
+ let white: string;
7
+ namespace gray {
8
+ let hover: string;
9
+ let lighter: string;
10
+ let light: string;
11
+ let DEFAULT: string;
12
+ let dark: string;
13
+ let darker: string;
14
+ }
15
+ namespace blue {
16
+ let lighter_1: string;
17
+ export { lighter_1 as lighter };
18
+ let light_1: string;
19
+ export { light_1 as light };
20
+ let DEFAULT_1: string;
21
+ export { DEFAULT_1 as DEFAULT };
22
+ let dark_1: string;
23
+ export { dark_1 as dark };
24
+ let darker_1: string;
25
+ export { darker_1 as darker };
26
+ }
27
+ namespace turquoise {
28
+ let DEFAULT_2: string;
29
+ export { DEFAULT_2 as DEFAULT };
30
+ }
31
+ namespace green {
32
+ let lighter_2: string;
33
+ export { lighter_2 as lighter };
34
+ export let lightish: string;
35
+ let light_2: string;
36
+ export { light_2 as light };
37
+ let DEFAULT_3: string;
38
+ export { DEFAULT_3 as DEFAULT };
39
+ let dark_2: string;
40
+ export { dark_2 as dark };
41
+ let darker_2: string;
42
+ export { darker_2 as darker };
43
+ }
44
+ namespace red {
45
+ let lighter_3: string;
46
+ export { lighter_3 as lighter };
47
+ let lightish_1: string;
48
+ export { lightish_1 as lightish };
49
+ let light_3: string;
50
+ export { light_3 as light };
51
+ let DEFAULT_4: string;
52
+ export { DEFAULT_4 as DEFAULT };
53
+ let dark_3: string;
54
+ export { dark_3 as dark };
55
+ let darker_3: string;
56
+ export { darker_3 as darker };
57
+ }
58
+ namespace yellow {
59
+ let lighter_4: string;
60
+ export { lighter_4 as lighter };
61
+ let lightish_2: string;
62
+ export { lightish_2 as lightish };
63
+ let light_4: string;
64
+ export { light_4 as light };
65
+ let DEFAULT_5: string;
66
+ export { DEFAULT_5 as DEFAULT };
67
+ let dark_4: string;
68
+ export { dark_4 as dark };
69
+ let darker_4: string;
70
+ export { darker_4 as darker };
71
+ }
72
+ namespace orange {
73
+ let lighter_5: string;
74
+ export { lighter_5 as lighter };
75
+ let lightish_3: string;
76
+ export { lightish_3 as lightish };
77
+ let light_5: string;
78
+ export { light_5 as light };
79
+ let DEFAULT_6: string;
80
+ export { DEFAULT_6 as DEFAULT };
81
+ let dark_5: string;
82
+ export { dark_5 as dark };
83
+ let darker_5: string;
84
+ export { darker_5 as darker };
85
+ }
86
+ namespace primary {
87
+ let lighter_6: string;
88
+ export { lighter_6 as lighter };
89
+ let light_6: string;
90
+ export { light_6 as light };
91
+ let DEFAULT_7: string;
92
+ export { DEFAULT_7 as DEFAULT };
93
+ let dark_6: string;
94
+ export { dark_6 as dark };
95
+ let darker_6: string;
96
+ export { darker_6 as darker };
97
+ }
98
+ namespace secondary {
99
+ let hover_1: string;
100
+ export { hover_1 as hover };
101
+ let lighter_7: string;
102
+ export { lighter_7 as lighter };
103
+ let light_7: string;
104
+ export { light_7 as light };
105
+ let DEFAULT_8: string;
106
+ export { DEFAULT_8 as DEFAULT };
107
+ let dark_7: string;
108
+ export { dark_7 as dark };
109
+ let darker_7: string;
110
+ export { darker_7 as darker };
111
+ }
112
+ namespace warning {
113
+ let lighter_8: string;
114
+ export { lighter_8 as lighter };
115
+ let lightish_4: string;
116
+ export { lightish_4 as lightish };
117
+ let light_8: string;
118
+ export { light_8 as light };
119
+ let DEFAULT_9: string;
120
+ export { DEFAULT_9 as DEFAULT };
121
+ let dark_8: string;
122
+ export { dark_8 as dark };
123
+ let darker_8: string;
124
+ export { darker_8 as darker };
125
+ }
126
+ namespace success {
127
+ let lighter_9: string;
128
+ export { lighter_9 as lighter };
129
+ let lightish_5: string;
130
+ export { lightish_5 as lightish };
131
+ let light_9: string;
132
+ export { light_9 as light };
133
+ let DEFAULT_10: string;
134
+ export { DEFAULT_10 as DEFAULT };
135
+ let dark_9: string;
136
+ export { dark_9 as dark };
137
+ let darker_9: string;
138
+ export { darker_9 as darker };
139
+ }
140
+ namespace danger {
141
+ let lighter_10: string;
142
+ export { lighter_10 as lighter };
143
+ let lightish_6: string;
144
+ export { lightish_6 as lightish };
145
+ let light_10: string;
146
+ export { light_10 as light };
147
+ let DEFAULT_11: string;
148
+ export { DEFAULT_11 as DEFAULT };
149
+ let dark_10: string;
150
+ export { dark_10 as dark };
151
+ let darker_10: string;
152
+ export { darker_10 as darker };
153
+ }
154
+ namespace caution {
155
+ let lighter_11: string;
156
+ export { lighter_11 as lighter };
157
+ let lightish_7: string;
158
+ export { lightish_7 as lightish };
159
+ let light_11: string;
160
+ export { light_11 as light };
161
+ let DEFAULT_12: string;
162
+ export { DEFAULT_12 as DEFAULT };
163
+ let dark_11: string;
164
+ export { dark_11 as dark };
165
+ let darker_11: string;
166
+ export { darker_11 as darker };
167
+ }
168
+ }
169
+ let spacing: {
170
+ "0": string;
171
+ "1": string;
172
+ "2": string;
173
+ "3": string;
174
+ "4": string;
175
+ "5": string;
176
+ "6": string;
177
+ "7": string;
178
+ "8": string;
179
+ "9": string;
180
+ "10": string;
181
+ "11": string;
182
+ "12": string;
183
+ "14": string;
184
+ "15": string;
185
+ "16": string;
186
+ "18": string;
187
+ "20": string;
188
+ "22": string;
189
+ "24": string;
190
+ "25": string;
191
+ "28": string;
192
+ "30": string;
193
+ "32": string;
194
+ "36": string;
195
+ "40": string;
196
+ "44": string;
197
+ "48": string;
198
+ "50": string;
199
+ "52": string;
200
+ "54": string;
201
+ "56": string;
202
+ "60": string;
203
+ "64": string;
204
+ "65": string;
205
+ "72": string;
206
+ "75": string;
207
+ "80": string;
208
+ "85": string;
209
+ "96": string;
210
+ "100": string;
211
+ "105": string;
212
+ "110": string;
213
+ "125": string;
214
+ "140": string;
215
+ "150": string;
216
+ "200": string;
217
+ "0.25": string;
218
+ "0.5": string;
219
+ "0.75": string;
220
+ "1.5": string;
221
+ "2.5": string;
222
+ "3.5": string;
223
+ "4.5": string;
224
+ "7.5": string;
225
+ };
226
+ let fontSize: {
227
+ xs: string;
228
+ sm: string;
229
+ base: string;
230
+ md: string;
231
+ lg: string;
232
+ xl: string;
233
+ "2xl": string;
234
+ "3xl": string;
235
+ };
236
+ let borderRadius: {
237
+ none: string;
238
+ DEFAULT: string;
239
+ sm: string;
240
+ md: string;
241
+ lg: string;
242
+ xl: string;
243
+ "2xl": string;
244
+ full: string;
245
+ };
246
+ namespace extend {
247
+ let animation: {
248
+ "reverse-spin": string;
249
+ };
250
+ let keyframes: {
251
+ "reverse-spin": {
252
+ from: {
253
+ transform: string;
254
+ };
255
+ };
256
+ };
257
+ namespace fontFamily {
258
+ let sans: string[];
259
+ let mono: string[];
260
+ }
261
+ let screens: {
262
+ "3xl": string;
263
+ };
264
+ let lineHeight: {
265
+ "0": string;
266
+ "1": string;
267
+ "2": string;
268
+ "3": string;
269
+ "4": string;
270
+ "5": string;
271
+ "6": string;
272
+ "7": string;
273
+ "8": string;
274
+ "9": string;
275
+ "10": string;
276
+ "11": string;
277
+ "12": string;
278
+ "0.25": string;
279
+ "0.5": string;
280
+ "0.75": string;
281
+ "1.5": string;
282
+ "2.5": string;
283
+ xs: string;
284
+ sm: string;
285
+ "3.5": string;
286
+ base: string;
287
+ md: string;
288
+ "4.5": string;
289
+ lg: string;
290
+ p1: string;
291
+ p2: string;
292
+ p3: string;
293
+ p4: string;
294
+ };
295
+ namespace letterSpacing {
296
+ let tightest: string;
297
+ }
298
+ let minWidth: {
299
+ "0": string;
300
+ "1": string;
301
+ "2": string;
302
+ "3": string;
303
+ "4": string;
304
+ "5": string;
305
+ "6": string;
306
+ "7": string;
307
+ "8": string;
308
+ "9": string;
309
+ "10": string;
310
+ "11": string;
311
+ "12": string;
312
+ "14": string;
313
+ "15": string;
314
+ "16": string;
315
+ "18": string;
316
+ "20": string;
317
+ "22": string;
318
+ "24": string;
319
+ "25": string;
320
+ "28": string;
321
+ "30": string;
322
+ "32": string;
323
+ "36": string;
324
+ "40": string;
325
+ "44": string;
326
+ "48": string;
327
+ "50": string;
328
+ "52": string;
329
+ "54": string;
330
+ "56": string;
331
+ "60": string;
332
+ "64": string;
333
+ "65": string;
334
+ "72": string;
335
+ "75": string;
336
+ "80": string;
337
+ "85": string;
338
+ "96": string;
339
+ "100": string;
340
+ "105": string;
341
+ "110": string;
342
+ "125": string;
343
+ "140": string;
344
+ "150": string;
345
+ "200": string;
346
+ "0.25": string;
347
+ "0.5": string;
348
+ "0.75": string;
349
+ "1.5": string;
350
+ "2.5": string;
351
+ "3.5": string;
352
+ "4.5": string;
353
+ "7.5": string;
354
+ };
355
+ let maxWidth: {
356
+ "0": string;
357
+ "1": string;
358
+ "2": string;
359
+ "3": string;
360
+ "4": string;
361
+ "5": string;
362
+ "6": string;
363
+ "7": string;
364
+ "8": string;
365
+ "9": string;
366
+ "10": string;
367
+ "11": string;
368
+ "12": string;
369
+ "14": string;
370
+ "15": string;
371
+ "16": string;
372
+ "18": string;
373
+ "20": string;
374
+ "22": string;
375
+ "24": string;
376
+ "25": string;
377
+ "28": string;
378
+ "30": string;
379
+ "32": string;
380
+ "36": string;
381
+ "40": string;
382
+ "44": string;
383
+ "48": string;
384
+ "50": string;
385
+ "52": string;
386
+ "54": string;
387
+ "56": string;
388
+ "60": string;
389
+ "64": string;
390
+ "65": string;
391
+ "72": string;
392
+ "75": string;
393
+ "80": string;
394
+ "85": string;
395
+ "96": string;
396
+ "100": string;
397
+ "105": string;
398
+ "110": string;
399
+ "125": string;
400
+ "140": string;
401
+ "150": string;
402
+ "200": string;
403
+ "0.25": string;
404
+ "0.5": string;
405
+ "0.75": string;
406
+ "1.5": string;
407
+ "2.5": string;
408
+ "3.5": string;
409
+ "4.5": string;
410
+ "7.5": string;
411
+ };
412
+ }
413
+ }