@tmlmobilidade/ui 20250710.1503.53 → 20250710.1719.18
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 +79 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +7 -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 +79 -1
- package/dist/styles.css +79 -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,84 @@ 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
|
+
background-color: transparent;
|
|
10417
|
+
}
|
|
10418
|
+
|
|
10419
|
+
|
|
10420
|
+
/* * */
|
|
10421
|
+
/* PROPS / VARIANT */
|
|
10422
|
+
|
|
10423
|
+
.styles-module_root__dunmB[data-variant='primary'] .styles-module_indicator__3kujC {
|
|
10424
|
+
border-color: var(--color-primary);
|
|
10425
|
+
}
|
|
10426
|
+
.styles-module_root__dunmB[data-variant='primary'][data-filled='true'] .styles-module_indicator__3kujC {
|
|
10427
|
+
border-color: var(--color-primary);
|
|
10428
|
+
background-color: var(--color-primary);
|
|
10429
|
+
}
|
|
10430
|
+
|
|
10431
|
+
.styles-module_root__dunmB[data-variant='secondary'] .styles-module_indicator__3kujC {
|
|
10432
|
+
border-color: var(--color-system-text-100);
|
|
10433
|
+
}
|
|
10434
|
+
|
|
10435
|
+
.styles-module_root__dunmB[data-variant='secondary'][data-filled='true'] .styles-module_indicator__3kujC {
|
|
10436
|
+
border-color: var(--color-system-text-100);
|
|
10437
|
+
background-color: var(--color-system-text-100);
|
|
10438
|
+
}
|
|
10439
|
+
|
|
10440
|
+
.styles-module_root__dunmB[data-variant='muted'] .styles-module_indicator__3kujC {
|
|
10441
|
+
border-color: var(--color-system-text-200);
|
|
10442
|
+
}
|
|
10443
|
+
|
|
10444
|
+
.styles-module_root__dunmB[data-variant='muted'][data-filled='true'] .styles-module_indicator__3kujC {
|
|
10445
|
+
border-color: var(--color-system-text-200);
|
|
10446
|
+
background-color: var(--color-system-text-200);
|
|
10447
|
+
}
|
|
10448
|
+
|
|
10449
|
+
.styles-module_root__dunmB[data-variant='success'] .styles-module_indicator__3kujC {
|
|
10450
|
+
border-color: var(--color-status-success-primary);
|
|
10451
|
+
}
|
|
10452
|
+
|
|
10453
|
+
.styles-module_root__dunmB[data-variant='success'][data-filled='true'] .styles-module_indicator__3kujC {
|
|
10454
|
+
border-color: var(--color-status-success-primary);
|
|
10455
|
+
background-color: var(--color-status-success-primary);
|
|
10456
|
+
}
|
|
10457
|
+
|
|
10458
|
+
.styles-module_root__dunmB[data-variant='warning'] .styles-module_indicator__3kujC {
|
|
10459
|
+
border-color: var(--color-status-warning-primary);
|
|
10460
|
+
}
|
|
10461
|
+
|
|
10462
|
+
.styles-module_root__dunmB[data-variant='warning'][data-filled='true'] .styles-module_indicator__3kujC {
|
|
10463
|
+
border-color: var(--color-status-warning-primary);
|
|
10464
|
+
background-color: var(--color-status-warning-primary);
|
|
10465
|
+
}
|
|
10466
|
+
|
|
10467
|
+
.styles-module_root__dunmB[data-variant='danger'] .styles-module_indicator__3kujC {
|
|
10468
|
+
border-color: var(--color-status-danger-primary);
|
|
10469
|
+
}
|
|
10470
|
+
|
|
10471
|
+
.styles-module_root__dunmB[data-variant='danger'][data-filled='true'] .styles-module_indicator__3kujC {
|
|
10472
|
+
border-color: var(--color-status-danger-primary);
|
|
10473
|
+
background-color: var(--color-status-danger-primary);
|
|
10474
|
+
}
|
|
10475
|
+
/* * */
|
|
10398
10476
|
/* LABEL */
|
|
10399
10477
|
|
|
10400
10478
|
.styles-module_label__vKx8L {
|
|
@@ -10442,7 +10520,7 @@ breakpoint-mobile {
|
|
|
10442
10520
|
}
|
|
10443
10521
|
|
|
10444
10522
|
/* * */
|
|
10445
|
-
/*
|
|
10523
|
+
/* PROPS / VARIANT */
|
|
10446
10524
|
|
|
10447
10525
|
.styles-module_tag__ragX9[data-variant='primary'] {
|
|
10448
10526
|
color: var(--color-primary);
|