@tmlmobilidade/ui 20250723.2255.59 → 20250724.2337.1
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 +33 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/src/components/display/ValueDisplay/index.js +10 -0
- package/dist/src/components/display/ValueDisplay/index.js.map +1 -0
- package/dist/src/components/display/ValueDisplay/styles.module.css.js +4 -0
- package/dist/src/components/display/ValueDisplay/styles.module.css.js.map +1 -0
- package/dist/styles-no-reset.css +33 -0
- package/dist/styles.css +33 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -10829,6 +10829,39 @@ breakpoint-mobile {
|
|
|
10829
10829
|
align-items: center;
|
|
10830
10830
|
justify-content: flex-start;
|
|
10831
10831
|
}
|
|
10832
|
+
/* * */
|
|
10833
|
+
/* CONTAINER */
|
|
10834
|
+
|
|
10835
|
+
.styles-module_container__Gu5UY {
|
|
10836
|
+
display: flex;
|
|
10837
|
+
flex-direction: column;
|
|
10838
|
+
gap: var(--size-spacing-xs);
|
|
10839
|
+
}
|
|
10840
|
+
|
|
10841
|
+
.styles-module_container__Gu5UY[data-raised='true'] {
|
|
10842
|
+
padding: var(--size-spacing-md);
|
|
10843
|
+
border-radius: 5px;
|
|
10844
|
+
box-shadow: 0 2px 8px 0 var(--color-shadow);
|
|
10845
|
+
}
|
|
10846
|
+
|
|
10847
|
+
/* * */
|
|
10848
|
+
/* LABEL */
|
|
10849
|
+
|
|
10850
|
+
.styles-module_label__Db4PW {
|
|
10851
|
+
font-size: var(--font-size-md);
|
|
10852
|
+
font-weight: var(--font-weight-semibold);
|
|
10853
|
+
color: var(--color-system-text-200);
|
|
10854
|
+
text-transform: uppercase;
|
|
10855
|
+
}
|
|
10856
|
+
|
|
10857
|
+
/* * */
|
|
10858
|
+
/* VALUE */
|
|
10859
|
+
|
|
10860
|
+
.styles-module_value__JDzid {
|
|
10861
|
+
font-size: var(--font-size-lg);
|
|
10862
|
+
font-weight: var(--font-weight-normal);
|
|
10863
|
+
}
|
|
10864
|
+
|
|
10832
10865
|
/* * */
|
|
10833
10866
|
/* ROOT */
|
|
10834
10867
|
|