@tmlmobilidade/ui 20250710.1503.53 → 20250710.1703.17
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 +49 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/src/components/display/Indicator/index.js +10 -0
- package/dist/src/components/display/Indicator/index.js.map +1 -0
- package/dist/src/components/display/Indicator/styles.module.css.js +4 -0
- package/dist/src/components/display/Indicator/styles.module.css.js.map +1 -0
- package/dist/src/components/sidebar/Sidebar/index.js +1 -1
- package/dist/src/components/sidebar/Sidebar/index.js.map +1 -1
- package/dist/src/contexts/Me.context.js +1 -2
- package/dist/src/contexts/Me.context.js.map +1 -1
- package/dist/src/contexts/Sidebar.context.js +1 -1
- package/dist/styles-no-reset.css +49 -1
- package/dist/styles.css +49 -1
- package/package.json +1 -1
- package/dist/src/lib/http.js +0 -13
- package/dist/src/lib/http.js.map +0 -1
package/dist/index.css
CHANGED
|
@@ -10395,6 +10395,54 @@ breakpoint-mobile {
|
|
|
10395
10395
|
justify-content: center;
|
|
10396
10396
|
}
|
|
10397
10397
|
/* * */
|
|
10398
|
+
/* COMMON */
|
|
10399
|
+
|
|
10400
|
+
.styles-module_root__dunmB {
|
|
10401
|
+
display: flex;
|
|
10402
|
+
align-items: center;
|
|
10403
|
+
justify-content: center;
|
|
10404
|
+
width: 24px;
|
|
10405
|
+
height: 24px;
|
|
10406
|
+
}
|
|
10407
|
+
|
|
10408
|
+
.styles-module_indicator__3kujC {
|
|
10409
|
+
display: flex;
|
|
10410
|
+
align-items: center;
|
|
10411
|
+
justify-content: center;
|
|
10412
|
+
width: 8px;
|
|
10413
|
+
height: 8px;
|
|
10414
|
+
border-radius: 999px;
|
|
10415
|
+
border: 2px solid transparent;
|
|
10416
|
+
}
|
|
10417
|
+
|
|
10418
|
+
|
|
10419
|
+
/* * */
|
|
10420
|
+
/* PROPS / VARIANT */
|
|
10421
|
+
|
|
10422
|
+
.styles-module_root__dunmB[data-variant='primary'] .styles-module_indicator__3kujC {
|
|
10423
|
+
border-color: var(--color-primary);
|
|
10424
|
+
}
|
|
10425
|
+
|
|
10426
|
+
.styles-module_root__dunmB[data-variant='secondary'] .styles-module_indicator__3kujC {
|
|
10427
|
+
border-color: var(--color-system-text-100);
|
|
10428
|
+
}
|
|
10429
|
+
|
|
10430
|
+
.styles-module_root__dunmB[data-variant='muted'] .styles-module_indicator__3kujC {
|
|
10431
|
+
border-color: var(--color-system-text-200);
|
|
10432
|
+
}
|
|
10433
|
+
|
|
10434
|
+
.styles-module_root__dunmB[data-variant='success'] .styles-module_indicator__3kujC {
|
|
10435
|
+
border-color: var(--color-status-success-primary);
|
|
10436
|
+
}
|
|
10437
|
+
|
|
10438
|
+
.styles-module_root__dunmB[data-variant='warning'] .styles-module_indicator__3kujC {
|
|
10439
|
+
border-color: var(--color-status-warning-primary);
|
|
10440
|
+
}
|
|
10441
|
+
|
|
10442
|
+
.styles-module_root__dunmB[data-variant='danger'] {
|
|
10443
|
+
border-color: var(--color-status-danger-primary);
|
|
10444
|
+
}
|
|
10445
|
+
/* * */
|
|
10398
10446
|
/* LABEL */
|
|
10399
10447
|
|
|
10400
10448
|
.styles-module_label__vKx8L {
|
|
@@ -10442,7 +10490,7 @@ breakpoint-mobile {
|
|
|
10442
10490
|
}
|
|
10443
10491
|
|
|
10444
10492
|
/* * */
|
|
10445
|
-
/*
|
|
10493
|
+
/* PROPS / VARIANT */
|
|
10446
10494
|
|
|
10447
10495
|
.styles-module_tag__ragX9[data-variant='primary'] {
|
|
10448
10496
|
color: var(--color-primary);
|