@tmlmobilidade/ui 20250403.1758.45 → 20250403.1800.25
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.
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/styles-no-reset.css +4 -0
- package/dist/styles.css +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -408,7 +408,7 @@ interface SectionProps {
|
|
408
408
|
alignItems?: 'center' | 'flex-end' | 'flex-start';
|
409
409
|
children: React.ReactNode;
|
410
410
|
flexDirection?: 'column' | 'row';
|
411
|
-
gap?: 'lg' | 'md' | 'sm' | null;
|
411
|
+
gap?: 'lg' | 'md' | 'sm' | 'xs' | null;
|
412
412
|
justifyContent?: 'center' | 'flex-end' | 'flex-start' | 'space-between';
|
413
413
|
padding?: 'lg' | 'md' | 'sm' | null;
|
414
414
|
}
|
package/dist/styles-no-reset.css
CHANGED
@@ -10329,6 +10329,10 @@ breakpoint-mobile {
|
|
10329
10329
|
/* * */
|
10330
10330
|
/* PROPS / GAP */
|
10331
10331
|
|
10332
|
+
.styles-module_root__9sh2n[data-gap="xs"] {
|
10333
|
+
gap: var(--size-spacing-xs);
|
10334
|
+
}
|
10335
|
+
|
10332
10336
|
.styles-module_root__9sh2n[data-gap="sm"] {
|
10333
10337
|
gap: var(--size-spacing-sm);
|
10334
10338
|
}
|
package/dist/styles.css
CHANGED
@@ -10384,6 +10384,10 @@ breakpoint-mobile {
|
|
10384
10384
|
/* * */
|
10385
10385
|
/* PROPS / GAP */
|
10386
10386
|
|
10387
|
+
.styles-module_root__9sh2n[data-gap="xs"] {
|
10388
|
+
gap: var(--size-spacing-xs);
|
10389
|
+
}
|
10390
|
+
|
10387
10391
|
.styles-module_root__9sh2n[data-gap="sm"] {
|
10388
10392
|
gap: var(--size-spacing-sm);
|
10389
10393
|
}
|