@rarui/components 1.3.0 → 1.4.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.0-rc.3",
2
+ "version": "1.1.0",
3
3
  "tags": [
4
4
  {
5
5
  "name": "rarui-avatar",
@@ -29,6 +29,7 @@
29
29
  },
30
30
  {
31
31
  "name": "rarui-badge",
32
+ "description": "## Rarui Badge\n---\nThe Badge components are only used to transmit dynamic information, such as a connection or status.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/badge) for more details.",
32
33
  "attributes": [
33
34
  {
34
35
  "name": "appearance",
@@ -93,10 +94,133 @@
93
94
  }
94
95
  ]
95
96
  },
97
+ {
98
+ "name": "rarui-divider",
99
+ "description": "## Rarui Divider\n---\nA Divider is a thin line used to separate or group content in lists and layouts.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/divider) for more details.",
100
+ "attributes": [
101
+ {
102
+ "name": "direction",
103
+ "description": "The direction of the Divider.\n\n- horizontal\n- vertical",
104
+ "type": "string",
105
+ "values": [
106
+ {
107
+ "name": "horizontal"
108
+ },
109
+ {
110
+ "name": "vertical"
111
+ }
112
+ ]
113
+ },
114
+ {
115
+ "name": "size",
116
+ "description": "The **`size`** CSS property sets an element's area.",
117
+ "values": []
118
+ },
119
+ {
120
+ "name": "type",
121
+ "description": "The **`type`** shorthand CSS property sets the line style for all four sides of an element's.\n\nThis property supports responsive values. You can pass a single value like `\"$dashed\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$dashed\",\n\"md\": \"$solid\",\n\"lg\": \"$dashed\",\n\"xl\": \"$solid\"\n}\n```\n\n- $dashed\n- $solid",
122
+ "values": [
123
+ {
124
+ "name": "$dashed"
125
+ },
126
+ {
127
+ "name": "$solid"
128
+ }
129
+ ]
130
+ },
131
+ {
132
+ "name": "thickness",
133
+ "description": "The **`thickness`** shorthand CSS property sets the width of an element's.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$1\",\n\"xl\": \"$2\"\n}\n```\n\n- $1\n- $2",
134
+ "values": [
135
+ {
136
+ "name": "$1"
137
+ },
138
+ {
139
+ "name": "$2"
140
+ }
141
+ ]
142
+ },
143
+ {
144
+ "name": "color",
145
+ "description": "The **`color`** CSS property sets an element's color.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$disabled\",\n\"xl\": \"$divider\"\n}\n```\n\n- $brand\n- $brand-alt\n- $disabled\n- $divider\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $primary\n- $secondary\n- $subdued\n- $success\n- $transparent\n- $warning",
146
+ "values": [
147
+ {
148
+ "name": "$brand"
149
+ },
150
+ {
151
+ "name": "$brand-alt"
152
+ },
153
+ {
154
+ "name": "$disabled"
155
+ },
156
+ {
157
+ "name": "$divider"
158
+ },
159
+ {
160
+ "name": "$error"
161
+ },
162
+ {
163
+ "name": "$info"
164
+ },
165
+ {
166
+ "name": "$invert"
167
+ },
168
+ {
169
+ "name": "$invert-disabled"
170
+ },
171
+ {
172
+ "name": "$primary"
173
+ },
174
+ {
175
+ "name": "$secondary"
176
+ },
177
+ {
178
+ "name": "$subdued"
179
+ },
180
+ {
181
+ "name": "$success"
182
+ },
183
+ {
184
+ "name": "$transparent"
185
+ },
186
+ {
187
+ "name": "$warning"
188
+ }
189
+ ]
190
+ }
191
+ ]
192
+ },
96
193
  {
97
194
  "name": "rarui-text",
98
195
  "description": "## Rarui Text\n---\nText is a basic component that allows us to write blocks of text and give it formatting to use within other components, sections and pages of our application or website.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/typography) for more details.",
99
196
  "attributes": [
197
+ {
198
+ "name": "width",
199
+ "description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
200
+ "values": [
201
+ {
202
+ "name": "auto"
203
+ },
204
+ {
205
+ "name": "fit-content"
206
+ },
207
+ {
208
+ "name": "intrinsic"
209
+ },
210
+ {
211
+ "name": "max-content"
212
+ },
213
+ {
214
+ "name": "min-content"
215
+ },
216
+ {
217
+ "name": "min-intrinsic"
218
+ },
219
+ {
220
+ "name": "stretch"
221
+ }
222
+ ]
223
+ },
100
224
  {
101
225
  "name": "color",
102
226
  "description": "The color property is used to set the color of the title.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$currentColor\",\n\"xl\": \"$disabled\"\n}\n```\n\n- $brand\n- $brand-alt\n- $currentColor\n- $disabled\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $invert-secondary\n- $on-brand\n- $on-error\n- $on-info\n- $on-success\n- $on-warning\n- $primary\n- $secondary\n- $success\n- $warning\n- $warning-alt",
@@ -160,6 +284,30 @@
160
284
  }
161
285
  ]
162
286
  },
287
+ {
288
+ "name": "font-size",
289
+ "description": "The fontSize property sets the size of the text.\n\nThis property supports responsive values. You can pass a single value like `\"$l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$l\",\n\"md\": \"$m\",\n\"lg\": \"$s\",\n\"xl\": \"$xl\"\n}\n```\n\n- $l\n- $m\n- $s\n- $xl\n- $xs\n- $xxs",
290
+ "values": [
291
+ {
292
+ "name": "$l"
293
+ },
294
+ {
295
+ "name": "$m"
296
+ },
297
+ {
298
+ "name": "$s"
299
+ },
300
+ {
301
+ "name": "$xl"
302
+ },
303
+ {
304
+ "name": "$xs"
305
+ },
306
+ {
307
+ "name": "$xxs"
308
+ }
309
+ ]
310
+ },
163
311
  {
164
312
  "name": "font-weight",
165
313
  "description": "The color property is used to set the color of the title.\n\nThis property supports responsive values. You can pass a single value like `\"$bold\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$bold\",\n\"md\": \"$medium\",\n\"lg\": \"$regular\",\n\"xl\": \"$semiBold\"\n}\n```\n\n- $bold\n- $medium\n- $regular\n- $semiBold",
@@ -204,53 +352,89 @@
204
352
  ]
205
353
  },
206
354
  {
207
- "name": "font-size",
208
- "description": "The fontSize property sets the size of the text.\n\nThis property supports responsive values. You can pass a single value like `\"$l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$l\",\n\"md\": \"$m\",\n\"lg\": \"$s\",\n\"xl\": \"$xl\"\n}\n```\n\n- $l\n- $m\n- $s\n- $xl\n- $xs\n- $xxs",
355
+ "name": "text-align",
356
+ "description": "The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n\n\n**Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"end\",\n\"lg\": \"justify\",\n\"xl\": \"left\"\n}\n```\n\n- center\n- end\n- justify\n- left\n- match-parent\n- right\n- start",
209
357
  "values": [
210
358
  {
211
- "name": "$l"
359
+ "name": "center"
212
360
  },
213
361
  {
214
- "name": "$m"
362
+ "name": "end"
215
363
  },
216
364
  {
217
- "name": "$s"
365
+ "name": "justify"
218
366
  },
219
367
  {
220
- "name": "$xl"
368
+ "name": "left"
221
369
  },
222
370
  {
223
- "name": "$xs"
371
+ "name": "match-parent"
224
372
  },
225
373
  {
226
- "name": "$xxs"
374
+ "name": "right"
375
+ },
376
+ {
377
+ "name": "start"
227
378
  }
228
379
  ]
229
380
  },
230
381
  {
231
- "name": "text-align",
232
- "description": "The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n\n\n**Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"end\",\n\"lg\": \"justify\",\n\"xl\": \"left\"\n}\n```\n\n- center\n- end\n- justify\n- left\n- match-parent\n- right\n- start",
382
+ "name": "text-overflow",
383
+ "description": "The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.\n\n\n**Initial value**: `clip`\n\nThis property supports responsive values. You can pass a single value like `\"clip\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"clip\",\n\"md\": \"ellipsis\",\n\"lg\": \"clip\",\n\"xl\": \"ellipsis\"\n}\n```\n\n- clip\n- ellipsis",
233
384
  "values": [
234
385
  {
235
- "name": "center"
386
+ "name": "clip"
236
387
  },
237
388
  {
238
- "name": "end"
389
+ "name": "ellipsis"
390
+ }
391
+ ]
392
+ },
393
+ {
394
+ "name": "text-transform",
395
+ "description": "The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"capitalize\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"capitalize\",\n\"md\": \"full-size-kana\",\n\"lg\": \"full-width\",\n\"xl\": \"lowercase\"\n}\n```\n\n- capitalize\n- full-size-kana\n- full-width\n- lowercase\n- none\n- uppercase",
396
+ "values": [
397
+ {
398
+ "name": "capitalize"
239
399
  },
240
400
  {
241
- "name": "justify"
401
+ "name": "full-size-kana"
242
402
  },
243
403
  {
244
- "name": "left"
404
+ "name": "full-width"
245
405
  },
246
406
  {
247
- "name": "match-parent"
407
+ "name": "lowercase"
248
408
  },
249
409
  {
250
- "name": "right"
410
+ "name": "none"
251
411
  },
252
412
  {
253
- "name": "start"
413
+ "name": "uppercase"
414
+ }
415
+ ]
416
+ },
417
+ {
418
+ "name": "white-space",
419
+ "description": "The **`white-space`** CSS property sets how white space inside an element is handled.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"break-spaces\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"break-spaces\",\n\"md\": \"normal\",\n\"lg\": \"nowrap\",\n\"xl\": \"pre\"\n}\n```\n\n- break-spaces\n- normal\n- nowrap\n- pre\n- pre-line\n- pre-wrap",
420
+ "values": [
421
+ {
422
+ "name": "break-spaces"
423
+ },
424
+ {
425
+ "name": "normal"
426
+ },
427
+ {
428
+ "name": "nowrap"
429
+ },
430
+ {
431
+ "name": "pre"
432
+ },
433
+ {
434
+ "name": "pre-line"
435
+ },
436
+ {
437
+ "name": "pre-wrap"
254
438
  }
255
439
  ]
256
440
  },
@@ -273,26 +457,28 @@
273
457
  ]
274
458
  },
275
459
  {
276
- "name": "text-transform",
277
- "description": "The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"capitalize\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"capitalize\",\n\"md\": \"full-size-kana\",\n\"lg\": \"full-width\",\n\"xl\": \"lowercase\"\n}\n```\n\n- capitalize\n- full-size-kana\n- full-width\n- lowercase\n- none\n- uppercase",
460
+ "name": "line-clamp",
461
+ "description": "The -webkit-line-clamp CSS property allows limiting of the contents of a block to the specified number of lines.",
462
+ "type": "number"
463
+ },
464
+ {
465
+ "name": "overflow",
466
+ "description": "The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n\n\n**Initial value**: `visible`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"clip\",\n\"lg\": \"hidden\",\n\"xl\": \"scroll\"\n}\n```\n\n- auto\n- clip\n- hidden\n- scroll\n- visible",
278
467
  "values": [
279
468
  {
280
- "name": "capitalize"
281
- },
282
- {
283
- "name": "full-size-kana"
469
+ "name": "auto"
284
470
  },
285
471
  {
286
- "name": "full-width"
472
+ "name": "clip"
287
473
  },
288
474
  {
289
- "name": "lowercase"
475
+ "name": "hidden"
290
476
  },
291
477
  {
292
- "name": "none"
478
+ "name": "scroll"
293
479
  },
294
480
  {
295
- "name": "uppercase"
481
+ "name": "visible"
296
482
  }
297
483
  ]
298
484
  },
@@ -343,119 +529,30 @@
343
529
  "name": "wavy"
344
530
  }
345
531
  ]
346
- },
532
+ }
533
+ ]
534
+ },
535
+ {
536
+ "name": "rarui-title",
537
+ "description": "## Rarui Title\n---\nTilte is a basic component that allows you to give titles and more hierarchy to blocks of text for sections or header components.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/typography) for more details.",
538
+ "attributes": [
347
539
  {
348
- "name": "text-overflow",
349
- "description": "The **`text-overflow`** CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('`…`'), or display a custom string.\n\n\n**Initial value**: `clip`\n\nThis property supports responsive values. You can pass a single value like `\"clip\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"clip\",\n\"md\": \"ellipsis\",\n\"lg\": \"clip\",\n\"xl\": \"ellipsis\"\n}\n```\n\n- clip\n- ellipsis",
540
+ "name": "as",
541
+ "description": "Type of html tag to create for the title.\n\n- h1\n- h2\n- h3\n- h4\n- h5\n- h6",
542
+ "type": "string",
350
543
  "values": [
351
544
  {
352
- "name": "clip"
545
+ "name": "h1",
546
+ "description": "(default)"
353
547
  },
354
548
  {
355
- "name": "ellipsis"
356
- }
357
- ]
358
- },
359
- {
360
- "name": "width",
361
- "description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
362
- "values": [
363
- {
364
- "name": "auto"
549
+ "name": "h2"
365
550
  },
366
551
  {
367
- "name": "fit-content"
552
+ "name": "h3"
368
553
  },
369
554
  {
370
- "name": "intrinsic"
371
- },
372
- {
373
- "name": "max-content"
374
- },
375
- {
376
- "name": "min-content"
377
- },
378
- {
379
- "name": "min-intrinsic"
380
- },
381
- {
382
- "name": "stretch"
383
- }
384
- ]
385
- },
386
- {
387
- "name": "overflow",
388
- "description": "The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n\n\n**Initial value**: `visible`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"clip\",\n\"lg\": \"hidden\",\n\"xl\": \"scroll\"\n}\n```\n\n- auto\n- clip\n- hidden\n- scroll\n- visible",
389
- "values": [
390
- {
391
- "name": "auto"
392
- },
393
- {
394
- "name": "clip"
395
- },
396
- {
397
- "name": "hidden"
398
- },
399
- {
400
- "name": "scroll"
401
- },
402
- {
403
- "name": "visible"
404
- }
405
- ]
406
- },
407
- {
408
- "name": "white-space",
409
- "description": "The **`white-space`** CSS property sets how white space inside an element is handled.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"break-spaces\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"break-spaces\",\n\"md\": \"normal\",\n\"lg\": \"nowrap\",\n\"xl\": \"pre\"\n}\n```\n\n- break-spaces\n- normal\n- nowrap\n- pre\n- pre-line\n- pre-wrap",
410
- "values": [
411
- {
412
- "name": "break-spaces"
413
- },
414
- {
415
- "name": "normal"
416
- },
417
- {
418
- "name": "nowrap"
419
- },
420
- {
421
- "name": "pre"
422
- },
423
- {
424
- "name": "pre-line"
425
- },
426
- {
427
- "name": "pre-wrap"
428
- }
429
- ]
430
- },
431
- {
432
- "name": "line-clamp",
433
- "description": "The -webkit-line-clamp CSS property allows limiting of the contents of a block to the specified number of lines.",
434
- "type": "number"
435
- }
436
- ]
437
- },
438
- {
439
- "name": "rarui-title",
440
- "description": "## Rarui Title\n---\nTilte is a basic component that allows you to give titles and more hierarchy to blocks of text for sections or header components.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/typography) for more details.",
441
- "attributes": [
442
- {
443
- "name": "as",
444
- "description": "Type of html tag to create for the title.\n\n- h1\n- h2\n- h3\n- h4\n- h5\n- h6",
445
- "type": "string",
446
- "values": [
447
- {
448
- "name": "h1",
449
- "description": "(default)"
450
- },
451
- {
452
- "name": "h2"
453
- },
454
- {
455
- "name": "h3"
456
- },
457
- {
458
- "name": "h4"
555
+ "name": "h4"
459
556
  },
460
557
  {
461
558
  "name": "h5"
@@ -697,476 +794,492 @@
697
794
  ]
698
795
  },
699
796
  {
700
- "name": "rarui-button",
797
+ "name": "rarui-skeleton",
798
+ "description": "## Rarui Divider\n---\nA Divider is a thin line used to separate or group content in lists and layouts.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/exhibition/divider) for more details.",
701
799
  "attributes": [
702
800
  {
703
- "name": "disabled",
704
- "description": "Disables the button, disallowing user interaction.",
705
- "type": "boolean"
801
+ "name": "data-testid",
802
+ "description": "This is an attribute used to identify a DOM node for testing purposes.",
803
+ "type": "string"
706
804
  },
707
805
  {
708
- "name": "full",
709
- "description": "Specifies whether the button should take up the full width of its container.\nThis variant is useful when you want to make a button span the entire width of its parent container.",
710
- "type": "boolean"
806
+ "name": "border-radius",
807
+ "description": "The borderRadius property sets the skeleton.",
808
+ "values": []
711
809
  },
712
810
  {
713
- "name": "appearance",
714
- "description": "Defines the appearance variants for the button component.\nEach appearance variant corresponds to a specific background color, border color, and text color.\n\n- brand\n- danger\n- inverted\n- neutral\n- success\n- warning",
715
- "type": "string",
811
+ "name": "width",
812
+ "description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
716
813
  "values": [
717
814
  {
718
- "name": "brand"
719
- },
720
- {
721
- "name": "danger"
815
+ "name": "auto"
722
816
  },
723
817
  {
724
- "name": "inverted"
818
+ "name": "fit-content"
725
819
  },
726
820
  {
727
- "name": "neutral"
821
+ "name": "intrinsic"
728
822
  },
729
823
  {
730
- "name": "success"
824
+ "name": "max-content"
731
825
  },
732
826
  {
733
- "name": "warning"
734
- }
735
- ]
736
- },
737
- {
738
- "name": "size",
739
- "description": "Defines the size of the button component.\n\n- large\n- medium\n- small",
740
- "type": "string",
741
- "values": [
742
- {
743
- "name": "large",
744
- "description": "(default)"
827
+ "name": "min-content"
745
828
  },
746
829
  {
747
- "name": "medium"
830
+ "name": "min-intrinsic"
748
831
  },
749
832
  {
750
- "name": "small"
833
+ "name": "stretch"
751
834
  }
752
835
  ]
753
836
  },
754
837
  {
755
- "name": "variant",
756
- "description": "Defines the visual variant of the badge, affecting its background style, border and text.\n\n- outlined\n- solid\n- text\n- tonal",
757
- "type": "string",
838
+ "name": "height",
839
+ "description": "The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- auto\n- fit-content\n- max-content\n- min-content\n- stretch",
758
840
  "values": [
759
841
  {
760
- "name": "outlined"
842
+ "name": "auto"
761
843
  },
762
844
  {
763
- "name": "solid"
845
+ "name": "fit-content"
764
846
  },
765
847
  {
766
- "name": "text"
848
+ "name": "max-content"
767
849
  },
768
850
  {
769
- "name": "tonal"
851
+ "name": "min-content"
852
+ },
853
+ {
854
+ "name": "stretch"
770
855
  }
771
856
  ]
772
- }
773
- ]
774
- },
775
- {
776
- "name": "rarui-box",
777
- "description": "## Rarui Box\n---\nA low-level `utility` component that provides stylized system accessories to allow for custom styling with theme reconfection.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/layout/box) for more details.",
778
- "attributes": [
857
+ },
779
858
  {
780
- "name": "color",
781
- "description": "The color property is used to set the color of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$currentColor\",\n\"xl\": \"$disabled\"\n}\n```\n\n- $brand\n- $brand-alt\n- $currentColor\n- $disabled\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $invert-secondary\n- $on-brand\n- $on-error\n- $on-info\n- $on-success\n- $on-warning\n- $primary\n- $secondary\n- $success\n- $warning\n- $warning-alt",
859
+ "name": "max-height",
860
+ "description": "The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`. It is also possible to pass a specific value.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"fit-content\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"fit-content\",\n\"md\": \"intrinsic\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- none\n- stretch",
782
861
  "values": [
783
862
  {
784
- "name": "$brand"
785
- },
786
- {
787
- "name": "$brand-alt"
788
- },
789
- {
790
- "name": "$currentColor"
791
- },
792
- {
793
- "name": "$disabled"
794
- },
795
- {
796
- "name": "$error"
797
- },
798
- {
799
- "name": "$info"
800
- },
801
- {
802
- "name": "$invert"
803
- },
804
- {
805
- "name": "$invert-disabled"
863
+ "name": "fit-content"
806
864
  },
807
865
  {
808
- "name": "$invert-secondary"
866
+ "name": "intrinsic"
809
867
  },
810
868
  {
811
- "name": "$on-brand"
869
+ "name": "max-content"
812
870
  },
813
871
  {
814
- "name": "$on-error"
872
+ "name": "min-content"
815
873
  },
816
874
  {
817
- "name": "$on-info"
875
+ "name": "none"
818
876
  },
819
877
  {
820
- "name": "$on-success"
821
- },
878
+ "name": "stretch"
879
+ }
880
+ ]
881
+ },
882
+ {
883
+ "name": "max-width",
884
+ "description": "The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`. It is also possible to pass a specific value.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"fit-content\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"fit-content\",\n\"md\": \"intrinsic\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- none\n- stretch",
885
+ "values": [
822
886
  {
823
- "name": "$on-warning"
887
+ "name": "fit-content"
824
888
  },
825
889
  {
826
- "name": "$primary"
890
+ "name": "intrinsic"
827
891
  },
828
892
  {
829
- "name": "$secondary"
893
+ "name": "max-content"
830
894
  },
831
895
  {
832
- "name": "$success"
896
+ "name": "min-content"
833
897
  },
834
898
  {
835
- "name": "$warning"
899
+ "name": "none"
836
900
  },
837
901
  {
838
- "name": "$warning-alt"
902
+ "name": "stretch"
839
903
  }
840
904
  ]
841
905
  },
842
906
  {
843
- "name": "font-weight",
844
- "description": "The fontWeight property sets how thick or thin characters in box should be displayed.\n\nThis property supports responsive values. You can pass a single value like `\"$bold\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$bold\",\n\"md\": \"$medium\",\n\"lg\": \"$regular\",\n\"xl\": \"$semiBold\"\n}\n```\n\n- $bold\n- $medium\n- $regular\n- $semiBold",
907
+ "name": "min-height",
908
+ "description": "The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- stretch",
845
909
  "values": [
846
910
  {
847
- "name": "$bold"
911
+ "name": "auto"
848
912
  },
849
913
  {
850
- "name": "$medium"
914
+ "name": "fit-content"
851
915
  },
852
916
  {
853
- "name": "$regular"
917
+ "name": "intrinsic"
854
918
  },
855
919
  {
856
- "name": "$semiBold"
920
+ "name": "max-content"
921
+ },
922
+ {
923
+ "name": "min-content"
924
+ },
925
+ {
926
+ "name": "stretch"
857
927
  }
858
928
  ]
859
929
  },
860
930
  {
861
- "name": "line-height",
862
- "description": "The lineHeight property specifies the line height of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body-l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body-l\",\n\"md\": \"$body-m\",\n\"lg\": \"$body-s\",\n\"xl\": \"$body-xl\"\n}\n```\n\n- $body-l\n- $body-m\n- $body-s\n- $body-xl\n- $body-xs\n- $body-xxs\n- $button-l\n- $button-m\n- $button-s\n- $heading-hero\n- $heading-l\n- $heading-m\n- $heading-s\n- $heading-xl\n- $heading-xs\n- $label-l\n- $label-m\n- $label-s",
931
+ "name": "min-width",
932
+ "description": "The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
863
933
  "values": [
864
934
  {
865
- "name": "$body-l"
866
- },
867
- {
868
- "name": "$body-m"
869
- },
870
- {
871
- "name": "$body-s"
935
+ "name": "auto"
872
936
  },
873
937
  {
874
- "name": "$body-xl"
938
+ "name": "fit-content"
875
939
  },
876
940
  {
877
- "name": "$body-xs"
941
+ "name": "intrinsic"
878
942
  },
879
943
  {
880
- "name": "$body-xxs"
944
+ "name": "max-content"
881
945
  },
882
946
  {
883
- "name": "$button-l"
947
+ "name": "min-content"
884
948
  },
885
949
  {
886
- "name": "$button-m"
950
+ "name": "min-intrinsic"
887
951
  },
888
952
  {
889
- "name": "$button-s"
890
- },
953
+ "name": "stretch"
954
+ }
955
+ ]
956
+ }
957
+ ]
958
+ },
959
+ {
960
+ "name": "rarui-button",
961
+ "description": "## Rarui Button\n---\nButton allows the user to perform actions, such as sending a file, advancing a form, sharing a document, or making a comment.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/input/button) for more details.",
962
+ "attributes": [
963
+ {
964
+ "name": "disabled",
965
+ "description": "Disables the button, disallowing user interaction.",
966
+ "type": "boolean"
967
+ },
968
+ {
969
+ "name": "full",
970
+ "description": "Specifies whether the button should take up the full width of its container.\nThis variant is useful when you want to make a button span the entire width of its parent container.",
971
+ "type": "boolean"
972
+ },
973
+ {
974
+ "name": "appearance",
975
+ "description": "Defines the appearance variants for the button component.\nEach appearance variant corresponds to a specific background color, border color, and text color.\n\n- brand\n- danger\n- inverted\n- neutral\n- success\n- warning",
976
+ "type": "string",
977
+ "values": [
891
978
  {
892
- "name": "$heading-hero"
979
+ "name": "brand"
893
980
  },
894
981
  {
895
- "name": "$heading-l"
982
+ "name": "danger"
896
983
  },
897
984
  {
898
- "name": "$heading-m"
985
+ "name": "inverted"
899
986
  },
900
987
  {
901
- "name": "$heading-s"
988
+ "name": "neutral"
902
989
  },
903
990
  {
904
- "name": "$heading-xl"
991
+ "name": "success"
905
992
  },
906
993
  {
907
- "name": "$heading-xs"
908
- },
994
+ "name": "warning"
995
+ }
996
+ ]
997
+ },
998
+ {
999
+ "name": "size",
1000
+ "description": "Defines the size of the button component.\n\n- large\n- medium\n- small",
1001
+ "type": "string",
1002
+ "values": [
909
1003
  {
910
- "name": "$label-l"
1004
+ "name": "large",
1005
+ "description": "(default)"
911
1006
  },
912
1007
  {
913
- "name": "$label-m"
1008
+ "name": "medium"
914
1009
  },
915
1010
  {
916
- "name": "$label-s"
1011
+ "name": "small"
917
1012
  }
918
1013
  ]
919
1014
  },
920
1015
  {
921
- "name": "m",
922
- "description": "The m shorthand property sets the margin area on all four sides of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
1016
+ "name": "variant",
1017
+ "description": "Defines the visual variant of the badge, affecting its background style, border and text.\n\n- outlined\n- solid\n- text\n- tonal",
1018
+ "type": "string",
923
1019
  "values": [
924
1020
  {
925
- "name": "$2xl"
1021
+ "name": "outlined"
926
1022
  },
927
1023
  {
928
- "name": "$2xs"
1024
+ "name": "solid"
929
1025
  },
930
1026
  {
931
- "name": "$3xl"
1027
+ "name": "text"
932
1028
  },
933
1029
  {
934
- "name": "$3xs"
1030
+ "name": "tonal"
1031
+ }
1032
+ ]
1033
+ }
1034
+ ]
1035
+ },
1036
+ {
1037
+ "name": "rarui-box",
1038
+ "description": "## Rarui Box\n---\nA low-level `utility` component that provides stylized system accessories to allow for custom styling with theme reconfection.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/layout/box) for more details.",
1039
+ "attributes": [
1040
+ {
1041
+ "name": "border-color",
1042
+ "description": "The borderColor property sets the color of the box's four borders.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$disabled\",\n\"xl\": \"$divider\"\n}\n```\n\n- $brand\n- $brand-alt\n- $disabled\n- $divider\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $primary\n- $secondary\n- $subdued\n- $success\n- $transparent\n- $warning",
1043
+ "values": [
1044
+ {
1045
+ "name": "$brand"
935
1046
  },
936
1047
  {
937
- "name": "$4xl"
1048
+ "name": "$brand-alt"
938
1049
  },
939
1050
  {
940
- "name": "$4xs"
1051
+ "name": "$disabled"
941
1052
  },
942
1053
  {
943
- "name": "$5xl"
1054
+ "name": "$divider"
944
1055
  },
945
1056
  {
946
- "name": "$6xl"
1057
+ "name": "$error"
947
1058
  },
948
1059
  {
949
- "name": "$7xl"
1060
+ "name": "$info"
950
1061
  },
951
1062
  {
952
- "name": "$8xl"
1063
+ "name": "$invert"
953
1064
  },
954
1065
  {
955
- "name": "$auto"
1066
+ "name": "$invert-disabled"
956
1067
  },
957
1068
  {
958
- "name": "$lg"
1069
+ "name": "$primary"
959
1070
  },
960
1071
  {
961
- "name": "$md"
1072
+ "name": "$secondary"
962
1073
  },
963
1074
  {
964
- "name": "$none"
1075
+ "name": "$subdued"
965
1076
  },
966
1077
  {
967
- "name": "$s"
1078
+ "name": "$success"
968
1079
  },
969
1080
  {
970
- "name": "$xl"
1081
+ "name": "$transparent"
971
1082
  },
972
1083
  {
973
- "name": "$xs"
1084
+ "name": "$warning"
974
1085
  }
975
1086
  ]
976
1087
  },
977
1088
  {
978
- "name": "font-size",
979
- "description": "The fontSize property sets the size of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body-l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body-l\",\n\"md\": \"$body-m\",\n\"lg\": \"$body-s\",\n\"xl\": \"$body-xl\"\n}\n```\n\n- $body-l\n- $body-m\n- $body-s\n- $body-xl\n- $body-xs\n- $body-xxs\n- $button-l\n- $button-m\n- $button-s\n- $heading-hero\n- $heading-l\n- $heading-m\n- $heading-s\n- $heading-xl\n- $heading-xs\n- $label-l\n- $label-m\n- $label-s",
1089
+ "name": "border-style",
1090
+ "description": "The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.\n\nThis property supports responsive values. You can pass a single value like `\"dashed\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"dashed\",\n\"md\": \"dotted\",\n\"lg\": \"double\",\n\"xl\": \"groove\"\n}\n```\n\n- dashed\n- dotted\n- double\n- groove\n- hidden\n- inset\n- none\n- outset\n- ridge\n- solid",
980
1091
  "values": [
981
1092
  {
982
- "name": "$body-l"
983
- },
984
- {
985
- "name": "$body-m"
986
- },
987
- {
988
- "name": "$body-s"
1093
+ "name": "dashed"
989
1094
  },
990
1095
  {
991
- "name": "$body-xl"
1096
+ "name": "dotted"
992
1097
  },
993
1098
  {
994
- "name": "$body-xs"
1099
+ "name": "double"
995
1100
  },
996
1101
  {
997
- "name": "$body-xxs"
1102
+ "name": "groove"
998
1103
  },
999
1104
  {
1000
- "name": "$button-l"
1105
+ "name": "hidden"
1001
1106
  },
1002
1107
  {
1003
- "name": "$button-m"
1108
+ "name": "inset"
1004
1109
  },
1005
1110
  {
1006
- "name": "$button-s"
1111
+ "name": "none"
1007
1112
  },
1008
1113
  {
1009
- "name": "$heading-hero"
1114
+ "name": "outset"
1010
1115
  },
1011
1116
  {
1012
- "name": "$heading-l"
1117
+ "name": "ridge"
1013
1118
  },
1014
1119
  {
1015
- "name": "$heading-m"
1016
- },
1120
+ "name": "solid"
1121
+ }
1122
+ ]
1123
+ },
1124
+ {
1125
+ "name": "border-top-width",
1126
+ "description": "The borderTopWidth property defines the width of the border at the top of a box.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
1127
+ "values": [
1017
1128
  {
1018
- "name": "$heading-s"
1129
+ "name": "$1"
1019
1130
  },
1020
1131
  {
1021
- "name": "$heading-xl"
1132
+ "name": "$2"
1022
1133
  },
1023
1134
  {
1024
- "name": "$heading-xs"
1135
+ "name": "$3"
1025
1136
  },
1026
1137
  {
1027
- "name": "$label-l"
1138
+ "name": "$4"
1028
1139
  },
1029
1140
  {
1030
- "name": "$label-m"
1141
+ "name": "$5"
1031
1142
  },
1032
1143
  {
1033
- "name": "$label-s"
1144
+ "name": "$none"
1034
1145
  }
1035
1146
  ]
1036
1147
  },
1037
1148
  {
1038
- "name": "text-align",
1039
- "description": "The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n\n\n**Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"end\",\n\"lg\": \"justify\",\n\"xl\": \"left\"\n}\n```\n\n- center\n- end\n- justify\n- left\n- match-parent\n- right\n- start",
1149
+ "name": "border-left-width",
1150
+ "description": "The borderLeftWidth property defines the width of the border at the left of a box.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
1040
1151
  "values": [
1041
1152
  {
1042
- "name": "center"
1043
- },
1044
- {
1045
- "name": "end"
1153
+ "name": "$1"
1046
1154
  },
1047
1155
  {
1048
- "name": "justify"
1156
+ "name": "$2"
1049
1157
  },
1050
1158
  {
1051
- "name": "left"
1159
+ "name": "$3"
1052
1160
  },
1053
1161
  {
1054
- "name": "match-parent"
1162
+ "name": "$4"
1055
1163
  },
1056
1164
  {
1057
- "name": "right"
1165
+ "name": "$5"
1058
1166
  },
1059
1167
  {
1060
- "name": "start"
1168
+ "name": "$none"
1061
1169
  }
1062
1170
  ]
1063
1171
  },
1064
1172
  {
1065
- "name": "text-decoration",
1066
- "description": "The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"blink\",\n\"lg\": \"dashed\",\n\"xl\": \"dotted\"\n}\n```\n\n- auto\n- blink\n- dashed\n- dotted\n- double\n- from-font\n- grammar-error\n- line-through\n- none\n- overline\n- solid\n- spelling-error\n- underline\n- wavy",
1173
+ "name": "width",
1174
+ "description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
1067
1175
  "values": [
1068
1176
  {
1069
1177
  "name": "auto"
1070
1178
  },
1071
1179
  {
1072
- "name": "blink"
1073
- },
1074
- {
1075
- "name": "dashed"
1076
- },
1077
- {
1078
- "name": "dotted"
1180
+ "name": "fit-content"
1079
1181
  },
1080
1182
  {
1081
- "name": "double"
1183
+ "name": "intrinsic"
1082
1184
  },
1083
1185
  {
1084
- "name": "from-font"
1186
+ "name": "max-content"
1085
1187
  },
1086
1188
  {
1087
- "name": "grammar-error"
1189
+ "name": "min-content"
1088
1190
  },
1089
1191
  {
1090
- "name": "line-through"
1192
+ "name": "min-intrinsic"
1091
1193
  },
1092
1194
  {
1093
- "name": "none"
1094
- },
1195
+ "name": "stretch"
1196
+ }
1197
+ ]
1198
+ },
1199
+ {
1200
+ "name": "height",
1201
+ "description": "The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- auto\n- fit-content\n- max-content\n- min-content\n- stretch",
1202
+ "values": [
1095
1203
  {
1096
- "name": "overline"
1204
+ "name": "auto"
1097
1205
  },
1098
1206
  {
1099
- "name": "solid"
1207
+ "name": "fit-content"
1100
1208
  },
1101
1209
  {
1102
- "name": "spelling-error"
1210
+ "name": "max-content"
1103
1211
  },
1104
1212
  {
1105
- "name": "underline"
1213
+ "name": "min-content"
1106
1214
  },
1107
1215
  {
1108
- "name": "wavy"
1216
+ "name": "stretch"
1109
1217
  }
1110
1218
  ]
1111
1219
  },
1112
1220
  {
1113
- "name": "width",
1114
- "description": "The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"intrinsic\",\n\"xl\": \"max-content\"\n}\n```\n\n- auto\n- fit-content\n- intrinsic\n- max-content\n- min-content\n- min-intrinsic\n- stretch",
1221
+ "name": "color",
1222
+ "description": "The color property is used to set the color of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$currentColor\",\n\"xl\": \"$disabled\"\n}\n```\n\n- $brand\n- $brand-alt\n- $currentColor\n- $disabled\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $invert-secondary\n- $on-brand\n- $on-error\n- $on-info\n- $on-success\n- $on-warning\n- $primary\n- $secondary\n- $success\n- $warning\n- $warning-alt",
1115
1223
  "values": [
1116
1224
  {
1117
- "name": "auto"
1225
+ "name": "$brand"
1226
+ },
1227
+ {
1228
+ "name": "$brand-alt"
1229
+ },
1230
+ {
1231
+ "name": "$currentColor"
1232
+ },
1233
+ {
1234
+ "name": "$disabled"
1235
+ },
1236
+ {
1237
+ "name": "$error"
1238
+ },
1239
+ {
1240
+ "name": "$info"
1241
+ },
1242
+ {
1243
+ "name": "$invert"
1118
1244
  },
1119
1245
  {
1120
- "name": "fit-content"
1246
+ "name": "$invert-disabled"
1121
1247
  },
1122
1248
  {
1123
- "name": "intrinsic"
1249
+ "name": "$invert-secondary"
1124
1250
  },
1125
1251
  {
1126
- "name": "max-content"
1252
+ "name": "$on-brand"
1127
1253
  },
1128
1254
  {
1129
- "name": "min-content"
1255
+ "name": "$on-error"
1130
1256
  },
1131
1257
  {
1132
- "name": "min-intrinsic"
1258
+ "name": "$on-info"
1133
1259
  },
1134
1260
  {
1135
- "name": "stretch"
1136
- }
1137
- ]
1138
- },
1139
- {
1140
- "name": "overflow",
1141
- "description": "The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n\n\n**Initial value**: `visible`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"clip\",\n\"lg\": \"hidden\",\n\"xl\": \"scroll\"\n}\n```\n\n- auto\n- clip\n- hidden\n- scroll\n- visible",
1142
- "values": [
1261
+ "name": "$on-success"
1262
+ },
1143
1263
  {
1144
- "name": "auto"
1264
+ "name": "$on-warning"
1145
1265
  },
1146
1266
  {
1147
- "name": "clip"
1267
+ "name": "$primary"
1148
1268
  },
1149
1269
  {
1150
- "name": "hidden"
1270
+ "name": "$secondary"
1151
1271
  },
1152
1272
  {
1153
- "name": "scroll"
1273
+ "name": "$success"
1154
1274
  },
1155
1275
  {
1156
- "name": "visible"
1276
+ "name": "$warning"
1277
+ },
1278
+ {
1279
+ "name": "$warning-alt"
1157
1280
  }
1158
1281
  ]
1159
1282
  },
1160
- {
1161
- "name": "left",
1162
- "description": "The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
1163
- "values": []
1164
- },
1165
- {
1166
- "name": "right",
1167
- "description": "The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
1168
- "values": []
1169
- },
1170
1283
  {
1171
1284
  "name": "align-content",
1172
1285
  "description": "The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.\n\n\n**Initial value**: `normal`\n\nThis property supports responsive values. You can pass a single value like `\"baseline\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"baseline\",\n\"md\": \"center\",\n\"lg\": \"end\",\n\"xl\": \"flex-end\"\n}\n```\n\n- baseline\n- center\n- end\n- flex-end\n- flex-start\n- normal\n- space-around\n- space-between\n- space-evenly\n- start\n- stretch",
@@ -1628,30 +1741,6 @@
1628
1741
  }
1629
1742
  ]
1630
1743
  },
1631
- {
1632
- "name": "border-left-width",
1633
- "description": "The borderLeftWidth property defines the width of the border at the left of a box.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
1634
- "values": [
1635
- {
1636
- "name": "$1"
1637
- },
1638
- {
1639
- "name": "$2"
1640
- },
1641
- {
1642
- "name": "$3"
1643
- },
1644
- {
1645
- "name": "$4"
1646
- },
1647
- {
1648
- "name": "$5"
1649
- },
1650
- {
1651
- "name": "$none"
1652
- }
1653
- ]
1654
- },
1655
1744
  {
1656
1745
  "name": "border-right-width",
1657
1746
  "description": "The borderRightWidth property defines the width of the border at the right of a box.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
@@ -1754,30 +1843,6 @@
1754
1843
  }
1755
1844
  ]
1756
1845
  },
1757
- {
1758
- "name": "border-top-width",
1759
- "description": "The borderTopWidth property defines the width of the border at the top of a box.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
1760
- "values": [
1761
- {
1762
- "name": "$1"
1763
- },
1764
- {
1765
- "name": "$2"
1766
- },
1767
- {
1768
- "name": "$3"
1769
- },
1770
- {
1771
- "name": "$4"
1772
- },
1773
- {
1774
- "name": "$5"
1775
- },
1776
- {
1777
- "name": "$none"
1778
- }
1779
- ]
1780
- },
1781
1846
  {
1782
1847
  "name": "bottom",
1783
1848
  "description": "The **`bottom`** CSS property participates in setting the vertical position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
@@ -2124,34 +2189,91 @@
2124
2189
  ]
2125
2190
  },
2126
2191
  {
2127
- "name": "grid-template-areas",
2128
- "description": "The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n\n\n**Initial value**: `none`",
2129
- "values": []
2130
- },
2131
- {
2132
- "name": "grid-template-columns",
2133
- "description": "The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
2192
+ "name": "font-size",
2193
+ "description": "The fontSize property sets the size of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body-l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body-l\",\n\"md\": \"$body-m\",\n\"lg\": \"$body-s\",\n\"xl\": \"$body-xl\"\n}\n```\n\n- $body-l\n- $body-m\n- $body-s\n- $body-xl\n- $body-xs\n- $body-xxs\n- $button-l\n- $button-m\n- $button-s\n- $heading-hero\n- $heading-l\n- $heading-m\n- $heading-s\n- $heading-xl\n- $heading-xs\n- $label-l\n- $label-m\n- $label-s",
2134
2194
  "values": [
2135
2195
  {
2136
- "name": "auto"
2196
+ "name": "$body-l"
2137
2197
  },
2138
2198
  {
2139
- "name": "max-content"
2199
+ "name": "$body-m"
2140
2200
  },
2141
2201
  {
2142
- "name": "min-content"
2202
+ "name": "$body-s"
2143
2203
  },
2144
2204
  {
2145
- "name": "none"
2205
+ "name": "$body-xl"
2146
2206
  },
2147
2207
  {
2148
- "name": "subgrid"
2208
+ "name": "$body-xs"
2209
+ },
2210
+ {
2211
+ "name": "$body-xxs"
2212
+ },
2213
+ {
2214
+ "name": "$button-l"
2215
+ },
2216
+ {
2217
+ "name": "$button-m"
2218
+ },
2219
+ {
2220
+ "name": "$button-s"
2221
+ },
2222
+ {
2223
+ "name": "$heading-hero"
2224
+ },
2225
+ {
2226
+ "name": "$heading-l"
2227
+ },
2228
+ {
2229
+ "name": "$heading-m"
2230
+ },
2231
+ {
2232
+ "name": "$heading-s"
2233
+ },
2234
+ {
2235
+ "name": "$heading-xl"
2236
+ },
2237
+ {
2238
+ "name": "$heading-xs"
2239
+ },
2240
+ {
2241
+ "name": "$label-l"
2242
+ },
2243
+ {
2244
+ "name": "$label-m"
2245
+ },
2246
+ {
2247
+ "name": "$label-s"
2149
2248
  }
2150
2249
  ]
2151
2250
  },
2152
2251
  {
2153
- "name": "grid-template-rows",
2154
- "description": "The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
2252
+ "name": "font-weight",
2253
+ "description": "The fontWeight property sets how thick or thin characters in box should be displayed.\n\nThis property supports responsive values. You can pass a single value like `\"$bold\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$bold\",\n\"md\": \"$medium\",\n\"lg\": \"$regular\",\n\"xl\": \"$semiBold\"\n}\n```\n\n- $bold\n- $medium\n- $regular\n- $semiBold",
2254
+ "values": [
2255
+ {
2256
+ "name": "$bold"
2257
+ },
2258
+ {
2259
+ "name": "$medium"
2260
+ },
2261
+ {
2262
+ "name": "$regular"
2263
+ },
2264
+ {
2265
+ "name": "$semiBold"
2266
+ }
2267
+ ]
2268
+ },
2269
+ {
2270
+ "name": "grid-template-areas",
2271
+ "description": "The **`grid-template-areas`** CSS property specifies named grid areas, establishing the cells in the grid and assigning them names.\n\n\n**Initial value**: `none`",
2272
+ "values": []
2273
+ },
2274
+ {
2275
+ "name": "grid-template-columns",
2276
+ "description": "The **`grid-template-columns`** CSS property defines the line names and track sizing functions of the grid columns.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
2155
2277
  "values": [
2156
2278
  {
2157
2279
  "name": "auto"
@@ -2171,15 +2293,12 @@
2171
2293
  ]
2172
2294
  },
2173
2295
  {
2174
- "name": "height",
2175
- "description": "The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area. It is also possible to pass a specific value.\n\n\n**Initial value**: `auto`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"fit-content\",\n\"lg\": \"max-content\",\n\"xl\": \"min-content\"\n}\n```\n\n- auto\n- fit-content\n- max-content\n- min-content\n- stretch",
2296
+ "name": "grid-template-rows",
2297
+ "description": "The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.\n\n\n**Initial value**: `none`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"max-content\",\n\"lg\": \"min-content\",\n\"xl\": \"none\"\n}\n```\n\n- auto\n- max-content\n- min-content\n- none\n- subgrid",
2176
2298
  "values": [
2177
2299
  {
2178
2300
  "name": "auto"
2179
2301
  },
2180
- {
2181
- "name": "fit-content"
2182
- },
2183
2302
  {
2184
2303
  "name": "max-content"
2185
2304
  },
@@ -2187,7 +2306,10 @@
2187
2306
  "name": "min-content"
2188
2307
  },
2189
2308
  {
2190
- "name": "stretch"
2309
+ "name": "none"
2310
+ },
2311
+ {
2312
+ "name": "subgrid"
2191
2313
  }
2192
2314
  ]
2193
2315
  },
@@ -2256,25 +2378,90 @@
2256
2378
  "name": "left"
2257
2379
  },
2258
2380
  {
2259
- "name": "legacy"
2381
+ "name": "legacy"
2382
+ },
2383
+ {
2384
+ "name": "normal"
2385
+ },
2386
+ {
2387
+ "name": "right"
2388
+ },
2389
+ {
2390
+ "name": "self-end"
2391
+ },
2392
+ {
2393
+ "name": "self-start"
2394
+ },
2395
+ {
2396
+ "name": "start"
2397
+ },
2398
+ {
2399
+ "name": "stretch"
2400
+ }
2401
+ ]
2402
+ },
2403
+ {
2404
+ "name": "left",
2405
+ "description": "The **`left`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
2406
+ "values": []
2407
+ },
2408
+ {
2409
+ "name": "line-height",
2410
+ "description": "The lineHeight property specifies the line height of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$body-l\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$body-l\",\n\"md\": \"$body-m\",\n\"lg\": \"$body-s\",\n\"xl\": \"$body-xl\"\n}\n```\n\n- $body-l\n- $body-m\n- $body-s\n- $body-xl\n- $body-xs\n- $body-xxs\n- $button-l\n- $button-m\n- $button-s\n- $heading-hero\n- $heading-l\n- $heading-m\n- $heading-s\n- $heading-xl\n- $heading-xs\n- $label-l\n- $label-m\n- $label-s",
2411
+ "values": [
2412
+ {
2413
+ "name": "$body-l"
2414
+ },
2415
+ {
2416
+ "name": "$body-m"
2417
+ },
2418
+ {
2419
+ "name": "$body-s"
2420
+ },
2421
+ {
2422
+ "name": "$body-xl"
2423
+ },
2424
+ {
2425
+ "name": "$body-xs"
2426
+ },
2427
+ {
2428
+ "name": "$body-xxs"
2429
+ },
2430
+ {
2431
+ "name": "$button-l"
2432
+ },
2433
+ {
2434
+ "name": "$button-m"
2435
+ },
2436
+ {
2437
+ "name": "$button-s"
2438
+ },
2439
+ {
2440
+ "name": "$heading-hero"
2441
+ },
2442
+ {
2443
+ "name": "$heading-l"
2444
+ },
2445
+ {
2446
+ "name": "$heading-m"
2260
2447
  },
2261
2448
  {
2262
- "name": "normal"
2449
+ "name": "$heading-s"
2263
2450
  },
2264
2451
  {
2265
- "name": "right"
2452
+ "name": "$heading-xl"
2266
2453
  },
2267
2454
  {
2268
- "name": "self-end"
2455
+ "name": "$heading-xs"
2269
2456
  },
2270
2457
  {
2271
- "name": "self-start"
2458
+ "name": "$label-l"
2272
2459
  },
2273
2460
  {
2274
- "name": "start"
2461
+ "name": "$label-m"
2275
2462
  },
2276
2463
  {
2277
- "name": "stretch"
2464
+ "name": "$label-s"
2278
2465
  }
2279
2466
  ]
2280
2467
  },
@@ -2933,6 +3120,38 @@
2933
3120
  }
2934
3121
  ]
2935
3122
  },
3123
+ {
3124
+ "name": "right",
3125
+ "description": "The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
3126
+ "values": []
3127
+ },
3128
+ {
3129
+ "name": "text-align",
3130
+ "description": "The **`text-align`** CSS property sets the horizontal alignment of a block element or table-cell box. This means it works like `vertical-align` but in the horizontal direction.\n\n\n**Initial value**: `start`, or a nameless value that acts as `left` if _direction_ is `ltr`, `right` if _direction_ is `rtl` if `start` is not supported by the browser.\n\nThis property supports responsive values. You can pass a single value like `\"center\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"center\",\n\"md\": \"end\",\n\"lg\": \"justify\",\n\"xl\": \"left\"\n}\n```\n\n- center\n- end\n- justify\n- left\n- match-parent\n- right\n- start",
3131
+ "values": [
3132
+ {
3133
+ "name": "center"
3134
+ },
3135
+ {
3136
+ "name": "end"
3137
+ },
3138
+ {
3139
+ "name": "justify"
3140
+ },
3141
+ {
3142
+ "name": "left"
3143
+ },
3144
+ {
3145
+ "name": "match-parent"
3146
+ },
3147
+ {
3148
+ "name": "right"
3149
+ },
3150
+ {
3151
+ "name": "start"
3152
+ }
3153
+ ]
3154
+ },
2936
3155
  {
2937
3156
  "name": "top",
2938
3157
  "description": "The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.\n\n\n**Initial value**: `auto`",
@@ -3036,54 +3255,6 @@
3036
3255
  }
3037
3256
  ]
3038
3257
  },
3039
- {
3040
- "name": "border-color",
3041
- "description": "The borderColor property sets the color of the box's four borders.\n\nThis property supports responsive values. You can pass a single value like `\"$brand\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$brand\",\n\"md\": \"$brand-alt\",\n\"lg\": \"$disabled\",\n\"xl\": \"$divider\"\n}\n```\n\n- $brand\n- $brand-alt\n- $disabled\n- $divider\n- $error\n- $info\n- $invert\n- $invert-disabled\n- $primary\n- $secondary\n- $subdued\n- $success\n- $transparent\n- $warning",
3042
- "values": [
3043
- {
3044
- "name": "$brand"
3045
- },
3046
- {
3047
- "name": "$brand-alt"
3048
- },
3049
- {
3050
- "name": "$disabled"
3051
- },
3052
- {
3053
- "name": "$divider"
3054
- },
3055
- {
3056
- "name": "$error"
3057
- },
3058
- {
3059
- "name": "$info"
3060
- },
3061
- {
3062
- "name": "$invert"
3063
- },
3064
- {
3065
- "name": "$invert-disabled"
3066
- },
3067
- {
3068
- "name": "$primary"
3069
- },
3070
- {
3071
- "name": "$secondary"
3072
- },
3073
- {
3074
- "name": "$subdued"
3075
- },
3076
- {
3077
- "name": "$success"
3078
- },
3079
- {
3080
- "name": "$transparent"
3081
- },
3082
- {
3083
- "name": "$warning"
3084
- }
3085
- ]
3086
- },
3087
3258
  {
3088
3259
  "name": "border-radius",
3089
3260
  "description": "The borderRadius property rounds the corners of an box's outer border edge.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$button\",\n\"xl\": \"$input\"\n}\n```\n\n- $2xl\n- $2xs\n- $button\n- $input\n- $lg\n- $md\n- $none\n- $pill\n- $sm\n- $xl\n- $xs",
@@ -3123,42 +3294,6 @@
3123
3294
  }
3124
3295
  ]
3125
3296
  },
3126
- {
3127
- "name": "border-style",
3128
- "description": "The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.\n\nThis property supports responsive values. You can pass a single value like `\"dashed\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"dashed\",\n\"md\": \"dotted\",\n\"lg\": \"double\",\n\"xl\": \"groove\"\n}\n```\n\n- dashed\n- dotted\n- double\n- groove\n- hidden\n- inset\n- none\n- outset\n- ridge\n- solid",
3129
- "values": [
3130
- {
3131
- "name": "dashed"
3132
- },
3133
- {
3134
- "name": "dotted"
3135
- },
3136
- {
3137
- "name": "double"
3138
- },
3139
- {
3140
- "name": "groove"
3141
- },
3142
- {
3143
- "name": "hidden"
3144
- },
3145
- {
3146
- "name": "inset"
3147
- },
3148
- {
3149
- "name": "none"
3150
- },
3151
- {
3152
- "name": "outset"
3153
- },
3154
- {
3155
- "name": "ridge"
3156
- },
3157
- {
3158
- "name": "solid"
3159
- }
3160
- ]
3161
- },
3162
3297
  {
3163
3298
  "name": "border-width",
3164
3299
  "description": "The borderWidth property sets the width of an box's border.\n\nThis property supports responsive values. You can pass a single value like `\"$1\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$1\",\n\"md\": \"$2\",\n\"lg\": \"$3\",\n\"xl\": \"$4\"\n}\n```\n\n- $1\n- $2\n- $3\n- $4\n- $5\n- $none",
@@ -3353,6 +3488,27 @@
3353
3488
  }
3354
3489
  ]
3355
3490
  },
3491
+ {
3492
+ "name": "overflow",
3493
+ "description": "The **`overflow`** CSS shorthand property sets the desired behavior for an element's overflow — i.e. when an element's content is too big to fit in its block formatting context — in both directions.\n\n\n**Initial value**: `visible`\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"clip\",\n\"lg\": \"hidden\",\n\"xl\": \"scroll\"\n}\n```\n\n- auto\n- clip\n- hidden\n- scroll\n- visible",
3494
+ "values": [
3495
+ {
3496
+ "name": "auto"
3497
+ },
3498
+ {
3499
+ "name": "clip"
3500
+ },
3501
+ {
3502
+ "name": "hidden"
3503
+ },
3504
+ {
3505
+ "name": "scroll"
3506
+ },
3507
+ {
3508
+ "name": "visible"
3509
+ }
3510
+ ]
3511
+ },
3356
3512
  {
3357
3513
  "name": "padding",
3358
3514
  "description": "The padding properties are used to generate space around an box's content area.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
@@ -3407,6 +3563,54 @@
3407
3563
  }
3408
3564
  ]
3409
3565
  },
3566
+ {
3567
+ "name": "text-decoration",
3568
+ "description": "The **`text-decoration`** shorthand CSS property sets the appearance of decorative lines on text. It is a shorthand for `text-decoration-line`, `text-decoration-color`, `text-decoration-style`, and the newer `text-decoration-thickness` property.\n\nThis property supports responsive values. You can pass a single value like `\"auto\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"auto\",\n\"md\": \"blink\",\n\"lg\": \"dashed\",\n\"xl\": \"dotted\"\n}\n```\n\n- auto\n- blink\n- dashed\n- dotted\n- double\n- from-font\n- grammar-error\n- line-through\n- none\n- overline\n- solid\n- spelling-error\n- underline\n- wavy",
3569
+ "values": [
3570
+ {
3571
+ "name": "auto"
3572
+ },
3573
+ {
3574
+ "name": "blink"
3575
+ },
3576
+ {
3577
+ "name": "dashed"
3578
+ },
3579
+ {
3580
+ "name": "dotted"
3581
+ },
3582
+ {
3583
+ "name": "double"
3584
+ },
3585
+ {
3586
+ "name": "from-font"
3587
+ },
3588
+ {
3589
+ "name": "grammar-error"
3590
+ },
3591
+ {
3592
+ "name": "line-through"
3593
+ },
3594
+ {
3595
+ "name": "none"
3596
+ },
3597
+ {
3598
+ "name": "overline"
3599
+ },
3600
+ {
3601
+ "name": "solid"
3602
+ },
3603
+ {
3604
+ "name": "spelling-error"
3605
+ },
3606
+ {
3607
+ "name": "underline"
3608
+ },
3609
+ {
3610
+ "name": "wavy"
3611
+ }
3612
+ ]
3613
+ },
3410
3614
  {
3411
3615
  "name": "fill",
3412
3616
  "description": "The fill color property is used to set the color of the box.\n\nThis property supports responsive values. You can pass a single value like `\"$background\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$background\",\n\"md\": \"$brand\",\n\"lg\": \"$brand-hover\",\n\"xl\": \"$brand-press\"\n}\n```\n\n- $background\n- $brand\n- $brand-hover\n- $brand-press\n- $brand-subdued\n- $currentColor\n- $disabled\n- $error\n- $error-hover\n- $error-press\n- $error-subdued\n- $hover\n- $info\n- $info-hover\n- $info-press\n- $info-subdued\n- $invert\n- $invert-disabled\n- $invert-hover\n- $invert-press\n- $invert-secondary\n- $overlay\n- $press\n- $primary\n- $secondary\n- $success\n- $success-hover\n- $success-press\n- $success-subdued\n- $transparent\n- $warning\n- $warning-hover\n- $warning-press\n- $warning-subdued",
@@ -3515,6 +3719,63 @@
3515
3719
  }
3516
3720
  ]
3517
3721
  },
3722
+ {
3723
+ "name": "m",
3724
+ "description": "The m shorthand property sets the margin area on all four sides of an box.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $auto\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
3725
+ "values": [
3726
+ {
3727
+ "name": "$2xl"
3728
+ },
3729
+ {
3730
+ "name": "$2xs"
3731
+ },
3732
+ {
3733
+ "name": "$3xl"
3734
+ },
3735
+ {
3736
+ "name": "$3xs"
3737
+ },
3738
+ {
3739
+ "name": "$4xl"
3740
+ },
3741
+ {
3742
+ "name": "$4xs"
3743
+ },
3744
+ {
3745
+ "name": "$5xl"
3746
+ },
3747
+ {
3748
+ "name": "$6xl"
3749
+ },
3750
+ {
3751
+ "name": "$7xl"
3752
+ },
3753
+ {
3754
+ "name": "$8xl"
3755
+ },
3756
+ {
3757
+ "name": "$auto"
3758
+ },
3759
+ {
3760
+ "name": "$lg"
3761
+ },
3762
+ {
3763
+ "name": "$md"
3764
+ },
3765
+ {
3766
+ "name": "$none"
3767
+ },
3768
+ {
3769
+ "name": "$s"
3770
+ },
3771
+ {
3772
+ "name": "$xl"
3773
+ },
3774
+ {
3775
+ "name": "$xs"
3776
+ }
3777
+ ]
3778
+ },
3518
3779
  {
3519
3780
  "name": "grid-gap",
3520
3781
  "description": "The gridGap property sets the gaps between rows and columns. It is a shorthand for rowGap and columnGap.\n\nThis property supports responsive values. You can pass a single value like `\"$2xl\"`.\n\nOr an object like:\n```\n{\n\"xs\": \"$2xl\",\n\"md\": \"$2xs\",\n\"lg\": \"$3xl\",\n\"xl\": \"$3xs\"\n}\n```\n\n- $2xl\n- $2xs\n- $3xl\n- $3xs\n- $4xl\n- $4xs\n- $5xl\n- $6xl\n- $7xl\n- $8xl\n- $lg\n- $md\n- $none\n- $s\n- $xl\n- $xs",
@@ -4563,6 +4824,7 @@
4563
4824
  },
4564
4825
  {
4565
4826
  "name": "rarui-tabs",
4827
+ "description": "## Rarui Tabs\n---\nThe Tabs are used to switch between different display modes or pages.\n\nSee [a complete document](https://rarui.rarolabs.com.br/docs/components/navigation/tabs) for more details.",
4566
4828
  "attributes": [
4567
4829
  {
4568
4830
  "name": "pre-selected-tab",