@dynatrace/strato-components 0.84.42 → 0.85.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (224) hide show
  1. package/content/index.d.ts +7 -0
  2. package/content/index.js +25 -0
  3. package/content/progress/ProgressBar.css +52 -0
  4. package/content/progress/ProgressBar.d.ts +56 -0
  5. package/content/progress/ProgressBar.js +191 -0
  6. package/content/progress/ProgressBar.sty.d.ts +42 -0
  7. package/content/progress/ProgressBar.sty.js +28 -0
  8. package/content/progress/ProgressBarIcon.css +5 -0
  9. package/content/progress/ProgressBarIcon.d.ts +15 -0
  10. package/content/progress/ProgressBarIcon.js +68 -0
  11. package/content/progress/ProgressBarIcon.sty.d.ts +1 -0
  12. package/content/progress/ProgressBarIcon.sty.js +25 -0
  13. package/content/progress/ProgressBarLabel.css +9 -0
  14. package/content/progress/ProgressBarLabel.d.ts +15 -0
  15. package/content/progress/ProgressBarLabel.js +75 -0
  16. package/content/progress/ProgressBarLabel.sty.d.ts +13 -0
  17. package/content/progress/ProgressBarLabel.sty.js +26 -0
  18. package/content/progress/ProgressBarValue.css +28 -0
  19. package/content/progress/ProgressBarValue.d.ts +15 -0
  20. package/content/progress/ProgressBarValue.js +72 -0
  21. package/content/progress/ProgressBarValue.sty.d.ts +34 -0
  22. package/content/progress/ProgressBarValue.sty.js +26 -0
  23. package/content/progress/ProgressCircle.css +52 -0
  24. package/content/progress/ProgressCircle.d.ts +51 -0
  25. package/content/progress/ProgressCircle.js +174 -0
  26. package/content/progress/ProgressCircle.sty.d.ts +41 -0
  27. package/content/progress/ProgressCircle.sty.js +37 -0
  28. package/content/progress/contexts/SharedProgressBarPropsContext.d.ts +9 -0
  29. package/content/progress/contexts/SharedProgressBarPropsContext.js +38 -0
  30. package/content/progress/hooks/useProgressAriaProps.d.ts +38 -0
  31. package/content/progress/hooks/useProgressAriaProps.js +63 -0
  32. package/content/progress/hooks/useProgressBarPropsContext.d.ts +2 -0
  33. package/content/progress/hooks/useProgressBarPropsContext.js +32 -0
  34. package/content/progress/utils.d.ts +2 -0
  35. package/content/progress/utils.js +50 -0
  36. package/core/components/app-root/AppRoot.d.ts +2 -2
  37. package/core/hooks/useAriaLabelingProps.d.ts +6 -0
  38. package/core/hooks/useAriaLabelingProps.js +30 -0
  39. package/core/hooks/useCurrentTheme.d.ts +1 -1
  40. package/core/hooks/useId.d.ts +12 -0
  41. package/core/hooks/useId.js +32 -0
  42. package/core/hooks/useSafeForwardProps.d.ts +10 -0
  43. package/core/hooks/useSafeForwardProps.js +34 -0
  44. package/core/index.d.ts +11 -3
  45. package/core/index.js +12 -0
  46. package/core/types/a11y-props.d.ts +8 -1
  47. package/core/types/data-props.d.ts +1 -1
  48. package/core/types/dom.d.ts +2 -13
  49. package/core/types/masking-props.d.ts +2 -1
  50. package/core/types/polymorph.d.ts +10 -7
  51. package/core/types/role-variant.d.ts +10 -0
  52. package/core/types/{focusable-element.js → role-variant.js} +17 -2
  53. package/core/types/styling-props.d.ts +1 -1
  54. package/core/types/with-children.d.ts +1 -1
  55. package/core/utils/_is-string-children.d.ts +6 -0
  56. package/core/utils/_is-string-children.js +44 -0
  57. package/core/utils/isBrowser.d.ts +1 -1
  58. package/core/utils/merge-props.d.ts +4 -5
  59. package/core/utils/seed-random.d.ts +5 -0
  60. package/core/utils/seed-random.js +34 -0
  61. package/core/utils/uuidv4.d.ts +5 -0
  62. package/core/utils/uuidv4.js +31 -0
  63. package/esm/content/index.js +7 -0
  64. package/esm/content/index.js.map +7 -0
  65. package/esm/content/progress/ProgressBar.css +52 -0
  66. package/esm/content/progress/ProgressBar.js +163 -0
  67. package/esm/content/progress/ProgressBar.js.map +7 -0
  68. package/esm/content/progress/ProgressBar.sty.js +10 -0
  69. package/esm/content/progress/ProgressBar.sty.js.map +7 -0
  70. package/esm/content/progress/ProgressBarIcon.css +5 -0
  71. package/esm/content/progress/ProgressBarIcon.js +40 -0
  72. package/esm/content/progress/ProgressBarIcon.js.map +7 -0
  73. package/esm/content/progress/ProgressBarIcon.sty.js +7 -0
  74. package/esm/content/progress/ProgressBarIcon.sty.js.map +7 -0
  75. package/esm/content/progress/ProgressBarLabel.css +9 -0
  76. package/esm/content/progress/ProgressBarLabel.js +47 -0
  77. package/esm/content/progress/ProgressBarLabel.js.map +7 -0
  78. package/esm/content/progress/ProgressBarLabel.sty.js +8 -0
  79. package/esm/content/progress/ProgressBarLabel.sty.js.map +7 -0
  80. package/esm/content/progress/ProgressBarValue.css +28 -0
  81. package/esm/content/progress/ProgressBarValue.js +44 -0
  82. package/esm/content/progress/ProgressBarValue.js.map +7 -0
  83. package/esm/content/progress/ProgressBarValue.sty.js +8 -0
  84. package/esm/content/progress/ProgressBarValue.sty.js.map +7 -0
  85. package/esm/content/progress/ProgressCircle.css +52 -0
  86. package/esm/content/progress/ProgressCircle.js +153 -0
  87. package/esm/content/progress/ProgressCircle.js.map +7 -0
  88. package/esm/content/progress/ProgressCircle.sty.js +19 -0
  89. package/esm/content/progress/ProgressCircle.sty.js.map +7 -0
  90. package/esm/content/progress/contexts/SharedProgressBarPropsContext.js +10 -0
  91. package/esm/content/progress/contexts/SharedProgressBarPropsContext.js.map +7 -0
  92. package/esm/content/progress/hooks/useProgressAriaProps.js +45 -0
  93. package/esm/content/progress/hooks/useProgressAriaProps.js.map +7 -0
  94. package/esm/content/progress/hooks/useProgressBarPropsContext.js +16 -0
  95. package/esm/content/progress/hooks/useProgressBarPropsContext.js.map +7 -0
  96. package/esm/content/progress/utils.js +22 -0
  97. package/esm/content/progress/utils.js.map +7 -0
  98. package/esm/core/components/app-root/AppRoot.js.map +1 -1
  99. package/esm/core/hooks/useAriaLabelingProps.js +12 -0
  100. package/esm/core/hooks/useAriaLabelingProps.js.map +7 -0
  101. package/esm/core/hooks/useCurrentTheme.js.map +1 -1
  102. package/esm/core/hooks/useId.js +14 -0
  103. package/esm/core/hooks/useId.js.map +7 -0
  104. package/esm/core/hooks/useSafeForwardProps.js +16 -0
  105. package/esm/core/hooks/useSafeForwardProps.js.map +7 -0
  106. package/esm/core/index.js +12 -0
  107. package/esm/core/index.js.map +2 -2
  108. package/esm/core/types/role-variant.js +12 -0
  109. package/esm/core/types/role-variant.js.map +7 -0
  110. package/esm/core/utils/_is-string-children.js +16 -0
  111. package/esm/core/utils/_is-string-children.js.map +7 -0
  112. package/esm/core/utils/isBrowser.js.map +1 -1
  113. package/esm/core/utils/merge-props.js.map +2 -2
  114. package/esm/core/utils/seed-random.js +16 -0
  115. package/esm/core/utils/seed-random.js.map +7 -0
  116. package/esm/core/utils/uuidv4.js +13 -0
  117. package/esm/core/utils/uuidv4.js.map +7 -0
  118. package/esm/index.js +2 -0
  119. package/esm/index.js.map +2 -2
  120. package/esm/layouts/container/Container.css +8 -0
  121. package/esm/layouts/container/Container.js +55 -0
  122. package/esm/layouts/container/Container.js.map +7 -0
  123. package/esm/layouts/container/Container.sty.js +7 -0
  124. package/esm/layouts/container/Container.sty.js.map +7 -0
  125. package/esm/layouts/flex/Flex.js +46 -0
  126. package/esm/layouts/flex/Flex.js.map +7 -0
  127. package/esm/layouts/grid/Grid.js +46 -0
  128. package/esm/layouts/grid/Grid.js.map +7 -0
  129. package/esm/layouts/index.js +7 -1
  130. package/esm/layouts/index.js.map +2 -2
  131. package/esm/styles/colorUtils.css +80 -0
  132. package/esm/styles/colorUtils.sty.js +9 -0
  133. package/esm/styles/colorUtils.sty.js.map +7 -0
  134. package/esm/styles/container.css +64 -0
  135. package/esm/styles/container.sty.js +9 -0
  136. package/esm/styles/container.sty.js.map +7 -0
  137. package/esm/styles/ellipsis.css +5 -0
  138. package/esm/styles/ellipsis.sty.js +6 -0
  139. package/esm/styles/ellipsis.sty.js.map +7 -0
  140. package/esm/styles/extract-util.js +15 -0
  141. package/esm/styles/extract-util.js.map +7 -0
  142. package/esm/styles/getFlexStyles.js +69 -0
  143. package/esm/styles/getFlexStyles.js.map +7 -0
  144. package/esm/styles/getGapSprinkles.js +18 -0
  145. package/esm/styles/getGapSprinkles.js.map +7 -0
  146. package/esm/styles/getGridFlexPositionSprinkles.js +25 -0
  147. package/esm/styles/getGridFlexPositionSprinkles.js.map +7 -0
  148. package/esm/styles/getGridStyles.js +78 -0
  149. package/esm/styles/getGridStyles.js.map +7 -0
  150. package/esm/styles/getLayoutSizeStyles.js +21 -0
  151. package/esm/styles/getLayoutSizeStyles.js.map +7 -0
  152. package/esm/styles/getSpacingSprinkles.js +50 -0
  153. package/esm/styles/getSpacingSprinkles.js.map +7 -0
  154. package/esm/styles/index.js +49 -0
  155. package/esm/styles/index.js.map +7 -0
  156. package/esm/styles/safe-sprinkles.js +17 -0
  157. package/esm/styles/safe-sprinkles.js.map +7 -0
  158. package/esm/styles/sprinkle-properties.js +137 -0
  159. package/esm/styles/sprinkle-properties.js.map +7 -0
  160. package/esm/styles/sprinkles.css +786 -0
  161. package/esm/styles/sprinkles.sty.js +9 -0
  162. package/esm/styles/sprinkles.sty.js.map +7 -0
  163. package/esm/typography/Link/Link.js.map +2 -2
  164. package/esm/typography/List/List.js.map +1 -1
  165. package/esm/typography/Text/Text.js.map +1 -1
  166. package/esm/typography/TextEllipsis/TextEllipsis.js.map +1 -1
  167. package/index.d.ts +2 -0
  168. package/index.js +2 -0
  169. package/lang/en.json +6 -0
  170. package/lang/uncompiled/en.json +4 -0
  171. package/layouts/container/Container.css +8 -0
  172. package/layouts/container/Container.d.ts +34 -0
  173. package/layouts/container/Container.js +80 -0
  174. package/layouts/container/Container.sty.d.ts +1 -0
  175. package/layouts/container/Container.sty.js +25 -0
  176. package/layouts/flex/Flex.d.ts +23 -0
  177. package/layouts/flex/Flex.js +72 -0
  178. package/layouts/grid/Grid.d.ts +23 -0
  179. package/layouts/grid/Grid.js +72 -0
  180. package/layouts/index.d.ts +4 -0
  181. package/layouts/index.js +7 -1
  182. package/package.json +35 -20
  183. package/styles/colorUtils.css +80 -0
  184. package/styles/colorUtils.sty.d.ts +56 -0
  185. package/styles/colorUtils.sty.js +27 -0
  186. package/styles/container.css +64 -0
  187. package/styles/container.sty.d.ts +54 -0
  188. package/styles/container.sty.js +27 -0
  189. package/styles/ellipsis.css +5 -0
  190. package/styles/ellipsis.sty.d.ts +5 -0
  191. package/styles/ellipsis.sty.js +24 -0
  192. package/styles/extract-util.d.ts +9 -0
  193. package/styles/extract-util.js +33 -0
  194. package/styles/getFlexStyles.d.ts +64 -0
  195. package/styles/getFlexStyles.js +95 -0
  196. package/styles/getGapSprinkles.d.ts +19 -0
  197. package/styles/getGapSprinkles.js +36 -0
  198. package/styles/getGridFlexPositionSprinkles.d.ts +35 -0
  199. package/styles/getGridFlexPositionSprinkles.js +43 -0
  200. package/styles/getGridStyles.d.ts +74 -0
  201. package/styles/getGridStyles.js +100 -0
  202. package/styles/getLayoutSizeStyles.d.ts +29 -0
  203. package/styles/getLayoutSizeStyles.js +39 -0
  204. package/styles/getSpacingSprinkles.d.ts +74 -0
  205. package/styles/getSpacingSprinkles.js +68 -0
  206. package/styles/index.d.ts +11 -0
  207. package/styles/index.js +47 -0
  208. package/styles/safe-sprinkles.d.ts +6 -0
  209. package/styles/safe-sprinkles.js +35 -0
  210. package/styles/sprinkle-properties.d.ts +257 -0
  211. package/styles/sprinkle-properties.js +165 -0
  212. package/styles/sprinkles.css +786 -0
  213. package/styles/sprinkles.sty.d.ts +913 -0
  214. package/styles/sprinkles.sty.js +27 -0
  215. package/styles/textStyle.sty.d.ts +1 -0
  216. package/testing/mocks/canvas-mock.js +6 -1
  217. package/typography/Link/Link.d.ts +1 -2
  218. package/typography/List/List.d.ts +4 -4
  219. package/typography/Text/Text.d.ts +3 -3
  220. package/typography/TextEllipsis/TextEllipsis.d.ts +3 -3
  221. package/typography/TextEllipsis/TextEllipsis.js +2 -2
  222. package/core/types/focusable-element.d.ts +0 -5
  223. package/esm/core/types/focusable-element.js +0 -1
  224. package/esm/core/types/focusable-element.js.map +0 -7
@@ -0,0 +1,913 @@
1
+ /**
2
+ * properties of global sprinkles.
3
+ * @public
4
+ * */
5
+ export declare const globalSprinkleProperties: {
6
+ conditions: never;
7
+ styles: {
8
+ gap: {
9
+ values: {
10
+ 0: {
11
+ defaultClass: string;
12
+ };
13
+ 2: {
14
+ defaultClass: string;
15
+ };
16
+ 4: {
17
+ defaultClass: string;
18
+ };
19
+ 6: {
20
+ defaultClass: string;
21
+ };
22
+ 16: {
23
+ defaultClass: string;
24
+ };
25
+ 8: {
26
+ defaultClass: string;
27
+ };
28
+ 20: {
29
+ defaultClass: string;
30
+ };
31
+ 40: {
32
+ defaultClass: string;
33
+ };
34
+ 12: {
35
+ defaultClass: string;
36
+ };
37
+ 24: {
38
+ defaultClass: string;
39
+ };
40
+ 32: {
41
+ defaultClass: string;
42
+ };
43
+ 48: {
44
+ defaultClass: string;
45
+ };
46
+ 56: {
47
+ defaultClass: string;
48
+ };
49
+ 64: {
50
+ defaultClass: string;
51
+ };
52
+ };
53
+ };
54
+ rowGap: {
55
+ values: {
56
+ 0: {
57
+ defaultClass: string;
58
+ };
59
+ 2: {
60
+ defaultClass: string;
61
+ };
62
+ 4: {
63
+ defaultClass: string;
64
+ };
65
+ 6: {
66
+ defaultClass: string;
67
+ };
68
+ 16: {
69
+ defaultClass: string;
70
+ };
71
+ 8: {
72
+ defaultClass: string;
73
+ };
74
+ 20: {
75
+ defaultClass: string;
76
+ };
77
+ 40: {
78
+ defaultClass: string;
79
+ };
80
+ 12: {
81
+ defaultClass: string;
82
+ };
83
+ 24: {
84
+ defaultClass: string;
85
+ };
86
+ 32: {
87
+ defaultClass: string;
88
+ };
89
+ 48: {
90
+ defaultClass: string;
91
+ };
92
+ 56: {
93
+ defaultClass: string;
94
+ };
95
+ 64: {
96
+ defaultClass: string;
97
+ };
98
+ };
99
+ };
100
+ columnGap: {
101
+ values: {
102
+ 0: {
103
+ defaultClass: string;
104
+ };
105
+ 2: {
106
+ defaultClass: string;
107
+ };
108
+ 4: {
109
+ defaultClass: string;
110
+ };
111
+ 6: {
112
+ defaultClass: string;
113
+ };
114
+ 16: {
115
+ defaultClass: string;
116
+ };
117
+ 8: {
118
+ defaultClass: string;
119
+ };
120
+ 20: {
121
+ defaultClass: string;
122
+ };
123
+ 40: {
124
+ defaultClass: string;
125
+ };
126
+ 12: {
127
+ defaultClass: string;
128
+ };
129
+ 24: {
130
+ defaultClass: string;
131
+ };
132
+ 32: {
133
+ defaultClass: string;
134
+ };
135
+ 48: {
136
+ defaultClass: string;
137
+ };
138
+ 56: {
139
+ defaultClass: string;
140
+ };
141
+ 64: {
142
+ defaultClass: string;
143
+ };
144
+ };
145
+ };
146
+ paddingTop: {
147
+ values: {
148
+ 0: {
149
+ defaultClass: string;
150
+ };
151
+ 2: {
152
+ defaultClass: string;
153
+ };
154
+ 4: {
155
+ defaultClass: string;
156
+ };
157
+ 6: {
158
+ defaultClass: string;
159
+ };
160
+ 16: {
161
+ defaultClass: string;
162
+ };
163
+ 8: {
164
+ defaultClass: string;
165
+ };
166
+ 20: {
167
+ defaultClass: string;
168
+ };
169
+ 40: {
170
+ defaultClass: string;
171
+ };
172
+ 12: {
173
+ defaultClass: string;
174
+ };
175
+ 24: {
176
+ defaultClass: string;
177
+ };
178
+ 32: {
179
+ defaultClass: string;
180
+ };
181
+ 48: {
182
+ defaultClass: string;
183
+ };
184
+ 56: {
185
+ defaultClass: string;
186
+ };
187
+ 64: {
188
+ defaultClass: string;
189
+ };
190
+ };
191
+ };
192
+ paddingBottom: {
193
+ values: {
194
+ 0: {
195
+ defaultClass: string;
196
+ };
197
+ 2: {
198
+ defaultClass: string;
199
+ };
200
+ 4: {
201
+ defaultClass: string;
202
+ };
203
+ 6: {
204
+ defaultClass: string;
205
+ };
206
+ 16: {
207
+ defaultClass: string;
208
+ };
209
+ 8: {
210
+ defaultClass: string;
211
+ };
212
+ 20: {
213
+ defaultClass: string;
214
+ };
215
+ 40: {
216
+ defaultClass: string;
217
+ };
218
+ 12: {
219
+ defaultClass: string;
220
+ };
221
+ 24: {
222
+ defaultClass: string;
223
+ };
224
+ 32: {
225
+ defaultClass: string;
226
+ };
227
+ 48: {
228
+ defaultClass: string;
229
+ };
230
+ 56: {
231
+ defaultClass: string;
232
+ };
233
+ 64: {
234
+ defaultClass: string;
235
+ };
236
+ };
237
+ };
238
+ paddingLeft: {
239
+ values: {
240
+ 0: {
241
+ defaultClass: string;
242
+ };
243
+ 2: {
244
+ defaultClass: string;
245
+ };
246
+ 4: {
247
+ defaultClass: string;
248
+ };
249
+ 6: {
250
+ defaultClass: string;
251
+ };
252
+ 16: {
253
+ defaultClass: string;
254
+ };
255
+ 8: {
256
+ defaultClass: string;
257
+ };
258
+ 20: {
259
+ defaultClass: string;
260
+ };
261
+ 40: {
262
+ defaultClass: string;
263
+ };
264
+ 12: {
265
+ defaultClass: string;
266
+ };
267
+ 24: {
268
+ defaultClass: string;
269
+ };
270
+ 32: {
271
+ defaultClass: string;
272
+ };
273
+ 48: {
274
+ defaultClass: string;
275
+ };
276
+ 56: {
277
+ defaultClass: string;
278
+ };
279
+ 64: {
280
+ defaultClass: string;
281
+ };
282
+ };
283
+ };
284
+ paddingRight: {
285
+ values: {
286
+ 0: {
287
+ defaultClass: string;
288
+ };
289
+ 2: {
290
+ defaultClass: string;
291
+ };
292
+ 4: {
293
+ defaultClass: string;
294
+ };
295
+ 6: {
296
+ defaultClass: string;
297
+ };
298
+ 16: {
299
+ defaultClass: string;
300
+ };
301
+ 8: {
302
+ defaultClass: string;
303
+ };
304
+ 20: {
305
+ defaultClass: string;
306
+ };
307
+ 40: {
308
+ defaultClass: string;
309
+ };
310
+ 12: {
311
+ defaultClass: string;
312
+ };
313
+ 24: {
314
+ defaultClass: string;
315
+ };
316
+ 32: {
317
+ defaultClass: string;
318
+ };
319
+ 48: {
320
+ defaultClass: string;
321
+ };
322
+ 56: {
323
+ defaultClass: string;
324
+ };
325
+ 64: {
326
+ defaultClass: string;
327
+ };
328
+ };
329
+ };
330
+ marginTop: {
331
+ values: {
332
+ 0: {
333
+ defaultClass: string;
334
+ };
335
+ auto: {
336
+ defaultClass: string;
337
+ };
338
+ 2: {
339
+ defaultClass: string;
340
+ };
341
+ 4: {
342
+ defaultClass: string;
343
+ };
344
+ 6: {
345
+ defaultClass: string;
346
+ };
347
+ 16: {
348
+ defaultClass: string;
349
+ };
350
+ 8: {
351
+ defaultClass: string;
352
+ };
353
+ 20: {
354
+ defaultClass: string;
355
+ };
356
+ 40: {
357
+ defaultClass: string;
358
+ };
359
+ 12: {
360
+ defaultClass: string;
361
+ };
362
+ 24: {
363
+ defaultClass: string;
364
+ };
365
+ 32: {
366
+ defaultClass: string;
367
+ };
368
+ 48: {
369
+ defaultClass: string;
370
+ };
371
+ 56: {
372
+ defaultClass: string;
373
+ };
374
+ 64: {
375
+ defaultClass: string;
376
+ };
377
+ };
378
+ };
379
+ marginBottom: {
380
+ values: {
381
+ 0: {
382
+ defaultClass: string;
383
+ };
384
+ auto: {
385
+ defaultClass: string;
386
+ };
387
+ 2: {
388
+ defaultClass: string;
389
+ };
390
+ 4: {
391
+ defaultClass: string;
392
+ };
393
+ 6: {
394
+ defaultClass: string;
395
+ };
396
+ 16: {
397
+ defaultClass: string;
398
+ };
399
+ 8: {
400
+ defaultClass: string;
401
+ };
402
+ 20: {
403
+ defaultClass: string;
404
+ };
405
+ 40: {
406
+ defaultClass: string;
407
+ };
408
+ 12: {
409
+ defaultClass: string;
410
+ };
411
+ 24: {
412
+ defaultClass: string;
413
+ };
414
+ 32: {
415
+ defaultClass: string;
416
+ };
417
+ 48: {
418
+ defaultClass: string;
419
+ };
420
+ 56: {
421
+ defaultClass: string;
422
+ };
423
+ 64: {
424
+ defaultClass: string;
425
+ };
426
+ };
427
+ };
428
+ marginLeft: {
429
+ values: {
430
+ 0: {
431
+ defaultClass: string;
432
+ };
433
+ auto: {
434
+ defaultClass: string;
435
+ };
436
+ 2: {
437
+ defaultClass: string;
438
+ };
439
+ 4: {
440
+ defaultClass: string;
441
+ };
442
+ 6: {
443
+ defaultClass: string;
444
+ };
445
+ 16: {
446
+ defaultClass: string;
447
+ };
448
+ 8: {
449
+ defaultClass: string;
450
+ };
451
+ 20: {
452
+ defaultClass: string;
453
+ };
454
+ 40: {
455
+ defaultClass: string;
456
+ };
457
+ 12: {
458
+ defaultClass: string;
459
+ };
460
+ 24: {
461
+ defaultClass: string;
462
+ };
463
+ 32: {
464
+ defaultClass: string;
465
+ };
466
+ 48: {
467
+ defaultClass: string;
468
+ };
469
+ 56: {
470
+ defaultClass: string;
471
+ };
472
+ 64: {
473
+ defaultClass: string;
474
+ };
475
+ };
476
+ };
477
+ marginRight: {
478
+ values: {
479
+ 0: {
480
+ defaultClass: string;
481
+ };
482
+ auto: {
483
+ defaultClass: string;
484
+ };
485
+ 2: {
486
+ defaultClass: string;
487
+ };
488
+ 4: {
489
+ defaultClass: string;
490
+ };
491
+ 6: {
492
+ defaultClass: string;
493
+ };
494
+ 16: {
495
+ defaultClass: string;
496
+ };
497
+ 8: {
498
+ defaultClass: string;
499
+ };
500
+ 20: {
501
+ defaultClass: string;
502
+ };
503
+ 40: {
504
+ defaultClass: string;
505
+ };
506
+ 12: {
507
+ defaultClass: string;
508
+ };
509
+ 24: {
510
+ defaultClass: string;
511
+ };
512
+ 32: {
513
+ defaultClass: string;
514
+ };
515
+ 48: {
516
+ defaultClass: string;
517
+ };
518
+ 56: {
519
+ defaultClass: string;
520
+ };
521
+ 64: {
522
+ defaultClass: string;
523
+ };
524
+ };
525
+ };
526
+ justifySelf: {
527
+ values: {
528
+ normal: {
529
+ defaultClass: string;
530
+ };
531
+ left: {
532
+ defaultClass: string;
533
+ };
534
+ right: {
535
+ defaultClass: string;
536
+ };
537
+ auto: {
538
+ defaultClass: string;
539
+ };
540
+ center: {
541
+ defaultClass: string;
542
+ };
543
+ stretch: {
544
+ defaultClass: string;
545
+ };
546
+ end: {
547
+ defaultClass: string;
548
+ };
549
+ "flex-end": {
550
+ defaultClass: string;
551
+ };
552
+ "flex-start": {
553
+ defaultClass: string;
554
+ };
555
+ start: {
556
+ defaultClass: string;
557
+ };
558
+ baseline: {
559
+ defaultClass: string;
560
+ };
561
+ "self-end": {
562
+ defaultClass: string;
563
+ };
564
+ "self-start": {
565
+ defaultClass: string;
566
+ };
567
+ };
568
+ };
569
+ alignSelf: {
570
+ values: {
571
+ normal: {
572
+ defaultClass: string;
573
+ };
574
+ auto: {
575
+ defaultClass: string;
576
+ };
577
+ center: {
578
+ defaultClass: string;
579
+ };
580
+ stretch: {
581
+ defaultClass: string;
582
+ };
583
+ end: {
584
+ defaultClass: string;
585
+ };
586
+ "flex-end": {
587
+ defaultClass: string;
588
+ };
589
+ "flex-start": {
590
+ defaultClass: string;
591
+ };
592
+ start: {
593
+ defaultClass: string;
594
+ };
595
+ baseline: {
596
+ defaultClass: string;
597
+ };
598
+ "self-end": {
599
+ defaultClass: string;
600
+ };
601
+ "self-start": {
602
+ defaultClass: string;
603
+ };
604
+ };
605
+ };
606
+ placeSelf: {
607
+ values: {
608
+ normal: {
609
+ defaultClass: string;
610
+ };
611
+ auto: {
612
+ defaultClass: string;
613
+ };
614
+ center: {
615
+ defaultClass: string;
616
+ };
617
+ stretch: {
618
+ defaultClass: string;
619
+ };
620
+ end: {
621
+ defaultClass: string;
622
+ };
623
+ "flex-end": {
624
+ defaultClass: string;
625
+ };
626
+ "flex-start": {
627
+ defaultClass: string;
628
+ };
629
+ start: {
630
+ defaultClass: string;
631
+ };
632
+ baseline: {
633
+ defaultClass: string;
634
+ };
635
+ "self-end": {
636
+ defaultClass: string;
637
+ };
638
+ "self-start": {
639
+ defaultClass: string;
640
+ };
641
+ };
642
+ };
643
+ justifyItems: {
644
+ values: {
645
+ normal: {
646
+ defaultClass: string;
647
+ };
648
+ left: {
649
+ defaultClass: string;
650
+ };
651
+ right: {
652
+ defaultClass: string;
653
+ };
654
+ center: {
655
+ defaultClass: string;
656
+ };
657
+ stretch: {
658
+ defaultClass: string;
659
+ };
660
+ end: {
661
+ defaultClass: string;
662
+ };
663
+ "flex-end": {
664
+ defaultClass: string;
665
+ };
666
+ "flex-start": {
667
+ defaultClass: string;
668
+ };
669
+ start: {
670
+ defaultClass: string;
671
+ };
672
+ baseline: {
673
+ defaultClass: string;
674
+ };
675
+ "self-end": {
676
+ defaultClass: string;
677
+ };
678
+ "self-start": {
679
+ defaultClass: string;
680
+ };
681
+ legacy: {
682
+ defaultClass: string;
683
+ };
684
+ };
685
+ };
686
+ alignItems: {
687
+ values: {
688
+ normal: {
689
+ defaultClass: string;
690
+ };
691
+ center: {
692
+ defaultClass: string;
693
+ };
694
+ stretch: {
695
+ defaultClass: string;
696
+ };
697
+ end: {
698
+ defaultClass: string;
699
+ };
700
+ "flex-end": {
701
+ defaultClass: string;
702
+ };
703
+ "flex-start": {
704
+ defaultClass: string;
705
+ };
706
+ start: {
707
+ defaultClass: string;
708
+ };
709
+ baseline: {
710
+ defaultClass: string;
711
+ };
712
+ "self-end": {
713
+ defaultClass: string;
714
+ };
715
+ "self-start": {
716
+ defaultClass: string;
717
+ };
718
+ };
719
+ };
720
+ placeItems: {
721
+ values: {
722
+ normal: {
723
+ defaultClass: string;
724
+ };
725
+ center: {
726
+ defaultClass: string;
727
+ };
728
+ stretch: {
729
+ defaultClass: string;
730
+ };
731
+ end: {
732
+ defaultClass: string;
733
+ };
734
+ "flex-end": {
735
+ defaultClass: string;
736
+ };
737
+ "flex-start": {
738
+ defaultClass: string;
739
+ };
740
+ start: {
741
+ defaultClass: string;
742
+ };
743
+ baseline: {
744
+ defaultClass: string;
745
+ };
746
+ "self-end": {
747
+ defaultClass: string;
748
+ };
749
+ "self-start": {
750
+ defaultClass: string;
751
+ };
752
+ };
753
+ };
754
+ justifyContent: {
755
+ values: {
756
+ normal: {
757
+ defaultClass: string;
758
+ };
759
+ left: {
760
+ defaultClass: string;
761
+ };
762
+ right: {
763
+ defaultClass: string;
764
+ };
765
+ center: {
766
+ defaultClass: string;
767
+ };
768
+ "space-around": {
769
+ defaultClass: string;
770
+ };
771
+ "space-between": {
772
+ defaultClass: string;
773
+ };
774
+ "space-evenly": {
775
+ defaultClass: string;
776
+ };
777
+ stretch: {
778
+ defaultClass: string;
779
+ };
780
+ end: {
781
+ defaultClass: string;
782
+ };
783
+ "flex-end": {
784
+ defaultClass: string;
785
+ };
786
+ "flex-start": {
787
+ defaultClass: string;
788
+ };
789
+ start: {
790
+ defaultClass: string;
791
+ };
792
+ };
793
+ };
794
+ alignContent: {
795
+ values: {
796
+ normal: {
797
+ defaultClass: string;
798
+ };
799
+ center: {
800
+ defaultClass: string;
801
+ };
802
+ "space-around": {
803
+ defaultClass: string;
804
+ };
805
+ "space-between": {
806
+ defaultClass: string;
807
+ };
808
+ "space-evenly": {
809
+ defaultClass: string;
810
+ };
811
+ stretch: {
812
+ defaultClass: string;
813
+ };
814
+ end: {
815
+ defaultClass: string;
816
+ };
817
+ "flex-end": {
818
+ defaultClass: string;
819
+ };
820
+ "flex-start": {
821
+ defaultClass: string;
822
+ };
823
+ start: {
824
+ defaultClass: string;
825
+ };
826
+ baseline: {
827
+ defaultClass: string;
828
+ };
829
+ };
830
+ };
831
+ placeContent: {
832
+ values: {
833
+ normal: {
834
+ defaultClass: string;
835
+ };
836
+ center: {
837
+ defaultClass: string;
838
+ };
839
+ "space-around": {
840
+ defaultClass: string;
841
+ };
842
+ "space-between": {
843
+ defaultClass: string;
844
+ };
845
+ "space-evenly": {
846
+ defaultClass: string;
847
+ };
848
+ stretch: {
849
+ defaultClass: string;
850
+ };
851
+ end: {
852
+ defaultClass: string;
853
+ };
854
+ "flex-end": {
855
+ defaultClass: string;
856
+ };
857
+ "flex-start": {
858
+ defaultClass: string;
859
+ };
860
+ start: {
861
+ defaultClass: string;
862
+ };
863
+ baseline: {
864
+ defaultClass: string;
865
+ };
866
+ };
867
+ };
868
+ display: {
869
+ values: {
870
+ flex: {
871
+ defaultClass: string;
872
+ };
873
+ grid: {
874
+ defaultClass: string;
875
+ };
876
+ };
877
+ };
878
+ };
879
+ };
880
+ /**
881
+ * type of global sprinkles.
882
+ * @public
883
+ * */
884
+ export type GlobalPropertyStyles = typeof globalSprinkleProperties.styles;
885
+ /**
886
+ * created sprinkles from global sprinkles properties
887
+ * @internal
888
+ */
889
+ export declare const internalSprinkles: ((props: {
890
+ gap?: 0 | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
891
+ rowGap?: 0 | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
892
+ columnGap?: 0 | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
893
+ paddingTop?: 0 | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
894
+ paddingBottom?: 0 | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
895
+ paddingLeft?: 0 | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
896
+ paddingRight?: 0 | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
897
+ marginTop?: 0 | "auto" | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
898
+ marginBottom?: 0 | "auto" | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
899
+ marginLeft?: 0 | "auto" | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
900
+ marginRight?: 0 | "auto" | 2 | 4 | 6 | 16 | 8 | 20 | 40 | 12 | 24 | 32 | 48 | 56 | 64 | undefined;
901
+ justifySelf?: "normal" | "left" | "right" | "auto" | "center" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "self-end" | "self-start" | undefined;
902
+ alignSelf?: "normal" | "auto" | "center" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "self-end" | "self-start" | undefined;
903
+ placeSelf?: "normal" | "auto" | "center" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "self-end" | "self-start" | undefined;
904
+ justifyItems?: "normal" | "left" | "right" | "center" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "self-end" | "self-start" | "legacy" | undefined;
905
+ alignItems?: "normal" | "center" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "self-end" | "self-start" | undefined;
906
+ placeItems?: "normal" | "center" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "self-end" | "self-start" | undefined;
907
+ justifyContent?: "normal" | "left" | "right" | "center" | "space-around" | "space-between" | "space-evenly" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | undefined;
908
+ alignContent?: "normal" | "center" | "space-around" | "space-between" | "space-evenly" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | undefined;
909
+ placeContent?: "normal" | "center" | "space-around" | "space-between" | "space-evenly" | "stretch" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | undefined;
910
+ display?: "flex" | "grid" | undefined;
911
+ }) => string) & {
912
+ properties: Set<"alignContent" | "alignItems" | "alignSelf" | "columnGap" | "display" | "justifyContent" | "justifyItems" | "justifySelf" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "rowGap" | "gap" | "placeContent" | "placeItems" | "placeSelf">;
913
+ };