@tmlmobilidade/ui 20250819.36.10 → 20250819.1107.19
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 +155 -155
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +39 -29
- package/dist/index.js +12 -11
- package/dist/index.js.map +1 -1
- package/dist/src/components/common/Badge/index.js +1 -1
- package/dist/src/components/common/Badge/index.js.map +1 -1
- package/dist/src/components/common/Combobox/index.js +2 -2
- package/dist/src/components/common/Combobox/index.js.map +1 -1
- package/dist/src/components/common/ComponentWrapper/index.js +1 -1
- package/dist/src/components/common/ComponentWrapper/index.js.map +1 -1
- package/dist/src/components/common/DatePicker/index.js +1 -1
- package/dist/src/components/common/DatePicker/index.js.map +1 -1
- package/dist/src/components/common/DateTimePicker/index.js +1 -1
- package/dist/src/components/common/DateTimePicker/index.js.map +1 -1
- package/dist/src/components/common/Description/index.js +1 -1
- package/dist/src/components/common/Description/index.js.map +1 -1
- package/dist/src/components/common/Menu/index.js +1 -1
- package/dist/src/components/common/Menu/index.js.map +1 -1
- package/dist/src/components/common/MultiSelect/index.js +1 -1
- package/dist/src/components/common/MultiSelect/index.js.map +1 -1
- package/dist/src/components/common/SegmentedControl/index.js +1 -1
- package/dist/src/components/common/SegmentedControl/index.js.map +1 -1
- package/dist/src/components/common/Tooltip/index.js +1 -1
- package/dist/src/components/common/Tooltip/index.js.map +1 -1
- package/dist/src/components/inputs/CoordinatesInput/index.js +65 -0
- package/dist/src/components/inputs/CoordinatesInput/index.js.map +1 -0
- package/dist/src/components/map/view/MapViewToolbar/index.js +3 -3
- package/dist/src/components/upload/FileUpload/index.js +6 -6
- package/dist/src/contexts/Me.context.js +2 -2
- package/dist/src/contexts/Me.context.js.map +1 -1
- package/dist/styles-no-reset.css +155 -155
- package/dist/styles.css +155 -155
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -9887,6 +9887,161 @@ breakpoint-mobile {
|
|
|
9887
9887
|
.styles-module_root__7Tjjf:hover {
|
|
9888
9888
|
background-color: var(--color-system-background-200);
|
|
9889
9889
|
}
|
|
9890
|
+
/* * */
|
|
9891
|
+
/* LABEL */
|
|
9892
|
+
|
|
9893
|
+
.styles-module_label__nVlWc {
|
|
9894
|
+
padding: 0;
|
|
9895
|
+
margin: 0;
|
|
9896
|
+
line-height: 1.2;
|
|
9897
|
+
}
|
|
9898
|
+
|
|
9899
|
+
/* * */
|
|
9900
|
+
/* LABEL / CAPS */
|
|
9901
|
+
|
|
9902
|
+
.styles-module_label__nVlWc[data-caps="true"] {
|
|
9903
|
+
text-transform: uppercase;
|
|
9904
|
+
}
|
|
9905
|
+
|
|
9906
|
+
/* * */
|
|
9907
|
+
/* LABEL / OVERFLOW */
|
|
9908
|
+
|
|
9909
|
+
.styles-module_label__nVlWc[data-overflow="true"] {
|
|
9910
|
+
overflow: hidden;
|
|
9911
|
+
}
|
|
9912
|
+
|
|
9913
|
+
/* * */
|
|
9914
|
+
/* LABEL / SINGLE LINE */
|
|
9915
|
+
|
|
9916
|
+
.styles-module_label__nVlWc[data-single-line="true"] {
|
|
9917
|
+
text-overflow: ellipsis;
|
|
9918
|
+
line-clamp: 1;
|
|
9919
|
+
white-space: nowrap;
|
|
9920
|
+
}
|
|
9921
|
+
|
|
9922
|
+
/* * */
|
|
9923
|
+
/* LABEL / SIZE */
|
|
9924
|
+
|
|
9925
|
+
.styles-module_label__nVlWc[data-size='sm'] {
|
|
9926
|
+
font-size: 12px;
|
|
9927
|
+
font-weight: var(--font-weight-semibold);
|
|
9928
|
+
color: var(--color-system-text-300);
|
|
9929
|
+
}
|
|
9930
|
+
|
|
9931
|
+
.styles-module_label__nVlWc[data-size='md'] {
|
|
9932
|
+
font-size: 16px;
|
|
9933
|
+
font-weight: var(--font-weight-semibold);
|
|
9934
|
+
color: var(--color-system-text-100);
|
|
9935
|
+
}
|
|
9936
|
+
|
|
9937
|
+
.styles-module_label__nVlWc[data-size='lg'] {
|
|
9938
|
+
font-size: 22px;
|
|
9939
|
+
font-weight: var(--font-weight-bold);
|
|
9940
|
+
color: var(--color-system-text-100);
|
|
9941
|
+
}
|
|
9942
|
+
|
|
9943
|
+
/* * */
|
|
9944
|
+
/* ROOT */
|
|
9945
|
+
|
|
9946
|
+
.styles-module_root__9sh2n {
|
|
9947
|
+
display: flex;
|
|
9948
|
+
width: 100%;
|
|
9949
|
+
}
|
|
9950
|
+
|
|
9951
|
+
/* * */
|
|
9952
|
+
/* PROPS / FLEX DIRECTION */
|
|
9953
|
+
|
|
9954
|
+
.styles-module_root__9sh2n[data-flex-direction="row"] {
|
|
9955
|
+
flex-direction: row;
|
|
9956
|
+
}
|
|
9957
|
+
|
|
9958
|
+
.styles-module_root__9sh2n[data-flex-direction="column"] {
|
|
9959
|
+
flex-direction: column;
|
|
9960
|
+
}
|
|
9961
|
+
|
|
9962
|
+
/* * */
|
|
9963
|
+
/* PROPS / ALIGN ITEMS */
|
|
9964
|
+
|
|
9965
|
+
.styles-module_root__9sh2n[data-align-items="flex-start"] {
|
|
9966
|
+
align-items: flex-start;
|
|
9967
|
+
}
|
|
9968
|
+
|
|
9969
|
+
.styles-module_root__9sh2n[data-align-items="center"] {
|
|
9970
|
+
align-items: center;
|
|
9971
|
+
}
|
|
9972
|
+
|
|
9973
|
+
.styles-module_root__9sh2n[data-align-items="flex-end"] {
|
|
9974
|
+
align-items: flex-end;
|
|
9975
|
+
}
|
|
9976
|
+
|
|
9977
|
+
/* * */
|
|
9978
|
+
/* PROPS / JUSTIFY CONTENT */
|
|
9979
|
+
|
|
9980
|
+
.styles-module_root__9sh2n[data-justify-content="flex-start"] {
|
|
9981
|
+
justify-content: flex-start;
|
|
9982
|
+
}
|
|
9983
|
+
|
|
9984
|
+
.styles-module_root__9sh2n[data-justify-content="center"] {
|
|
9985
|
+
justify-content: center;
|
|
9986
|
+
}
|
|
9987
|
+
|
|
9988
|
+
.styles-module_root__9sh2n[data-justify-content="flex-end"] {
|
|
9989
|
+
justify-content: flex-end;
|
|
9990
|
+
}
|
|
9991
|
+
|
|
9992
|
+
/* * */
|
|
9993
|
+
/* PROPS / GAP */
|
|
9994
|
+
|
|
9995
|
+
.styles-module_root__9sh2n[data-gap="xs"] {
|
|
9996
|
+
gap: var(--size-spacing-xs);
|
|
9997
|
+
}
|
|
9998
|
+
|
|
9999
|
+
.styles-module_root__9sh2n[data-gap="sm"] {
|
|
10000
|
+
gap: var(--size-spacing-sm);
|
|
10001
|
+
}
|
|
10002
|
+
|
|
10003
|
+
.styles-module_root__9sh2n[data-gap="md"] {
|
|
10004
|
+
gap: var(--size-spacing-md);
|
|
10005
|
+
}
|
|
10006
|
+
|
|
10007
|
+
.styles-module_root__9sh2n[data-gap="lg"] {
|
|
10008
|
+
gap: var(--size-spacing-lg);
|
|
10009
|
+
}
|
|
10010
|
+
|
|
10011
|
+
/* * */
|
|
10012
|
+
/* PROPS / PADDING */
|
|
10013
|
+
|
|
10014
|
+
.styles-module_root__9sh2n[data-padding="sm"] {
|
|
10015
|
+
padding: var(--size-spacing-sm);
|
|
10016
|
+
}
|
|
10017
|
+
|
|
10018
|
+
.styles-module_root__9sh2n[data-padding="md"] {
|
|
10019
|
+
padding: var(--size-spacing-md);
|
|
10020
|
+
}
|
|
10021
|
+
|
|
10022
|
+
.styles-module_root__9sh2n[data-padding="lg"] {
|
|
10023
|
+
padding: var(--size-spacing-lg);
|
|
10024
|
+
}
|
|
10025
|
+
|
|
10026
|
+
.styles-module_root__9sh2n[data-padding="none"] {
|
|
10027
|
+
padding: 0;
|
|
10028
|
+
}
|
|
10029
|
+
|
|
10030
|
+
/* * */
|
|
10031
|
+
/* PROPS / FLEX WRAP */
|
|
10032
|
+
|
|
10033
|
+
.styles-module_root__9sh2n[data-flex-wrap] {
|
|
10034
|
+
flex-wrap: wrap;
|
|
10035
|
+
}
|
|
10036
|
+
|
|
10037
|
+
.styles-module_root__9sh2n[data-flex-wrap="nowrap"] {
|
|
10038
|
+
flex-wrap: nowrap;
|
|
10039
|
+
}
|
|
10040
|
+
|
|
10041
|
+
.styles-module_root__9sh2n[data-flex-wrap="wrap-reverse"] {
|
|
10042
|
+
flex-wrap: wrap-reverse;
|
|
10043
|
+
}
|
|
10044
|
+
|
|
9890
10045
|
.styles-module_badge__frAPI {
|
|
9891
10046
|
width: fit-content;
|
|
9892
10047
|
min-width: fit-content;
|
|
@@ -10476,161 +10631,6 @@ breakpoint-mobile {
|
|
|
10476
10631
|
background-color: var(--color-system-text-100);
|
|
10477
10632
|
}
|
|
10478
10633
|
|
|
10479
|
-
/* * */
|
|
10480
|
-
/* LABEL */
|
|
10481
|
-
|
|
10482
|
-
.styles-module_label__nVlWc {
|
|
10483
|
-
padding: 0;
|
|
10484
|
-
margin: 0;
|
|
10485
|
-
line-height: 1.2;
|
|
10486
|
-
}
|
|
10487
|
-
|
|
10488
|
-
/* * */
|
|
10489
|
-
/* LABEL / CAPS */
|
|
10490
|
-
|
|
10491
|
-
.styles-module_label__nVlWc[data-caps="true"] {
|
|
10492
|
-
text-transform: uppercase;
|
|
10493
|
-
}
|
|
10494
|
-
|
|
10495
|
-
/* * */
|
|
10496
|
-
/* LABEL / OVERFLOW */
|
|
10497
|
-
|
|
10498
|
-
.styles-module_label__nVlWc[data-overflow="true"] {
|
|
10499
|
-
overflow: hidden;
|
|
10500
|
-
}
|
|
10501
|
-
|
|
10502
|
-
/* * */
|
|
10503
|
-
/* LABEL / SINGLE LINE */
|
|
10504
|
-
|
|
10505
|
-
.styles-module_label__nVlWc[data-single-line="true"] {
|
|
10506
|
-
text-overflow: ellipsis;
|
|
10507
|
-
line-clamp: 1;
|
|
10508
|
-
white-space: nowrap;
|
|
10509
|
-
}
|
|
10510
|
-
|
|
10511
|
-
/* * */
|
|
10512
|
-
/* LABEL / SIZE */
|
|
10513
|
-
|
|
10514
|
-
.styles-module_label__nVlWc[data-size='sm'] {
|
|
10515
|
-
font-size: 12px;
|
|
10516
|
-
font-weight: var(--font-weight-semibold);
|
|
10517
|
-
color: var(--color-system-text-300);
|
|
10518
|
-
}
|
|
10519
|
-
|
|
10520
|
-
.styles-module_label__nVlWc[data-size='md'] {
|
|
10521
|
-
font-size: 16px;
|
|
10522
|
-
font-weight: var(--font-weight-semibold);
|
|
10523
|
-
color: var(--color-system-text-100);
|
|
10524
|
-
}
|
|
10525
|
-
|
|
10526
|
-
.styles-module_label__nVlWc[data-size='lg'] {
|
|
10527
|
-
font-size: 22px;
|
|
10528
|
-
font-weight: var(--font-weight-bold);
|
|
10529
|
-
color: var(--color-system-text-100);
|
|
10530
|
-
}
|
|
10531
|
-
|
|
10532
|
-
/* * */
|
|
10533
|
-
/* ROOT */
|
|
10534
|
-
|
|
10535
|
-
.styles-module_root__9sh2n {
|
|
10536
|
-
display: flex;
|
|
10537
|
-
width: 100%;
|
|
10538
|
-
}
|
|
10539
|
-
|
|
10540
|
-
/* * */
|
|
10541
|
-
/* PROPS / FLEX DIRECTION */
|
|
10542
|
-
|
|
10543
|
-
.styles-module_root__9sh2n[data-flex-direction="row"] {
|
|
10544
|
-
flex-direction: row;
|
|
10545
|
-
}
|
|
10546
|
-
|
|
10547
|
-
.styles-module_root__9sh2n[data-flex-direction="column"] {
|
|
10548
|
-
flex-direction: column;
|
|
10549
|
-
}
|
|
10550
|
-
|
|
10551
|
-
/* * */
|
|
10552
|
-
/* PROPS / ALIGN ITEMS */
|
|
10553
|
-
|
|
10554
|
-
.styles-module_root__9sh2n[data-align-items="flex-start"] {
|
|
10555
|
-
align-items: flex-start;
|
|
10556
|
-
}
|
|
10557
|
-
|
|
10558
|
-
.styles-module_root__9sh2n[data-align-items="center"] {
|
|
10559
|
-
align-items: center;
|
|
10560
|
-
}
|
|
10561
|
-
|
|
10562
|
-
.styles-module_root__9sh2n[data-align-items="flex-end"] {
|
|
10563
|
-
align-items: flex-end;
|
|
10564
|
-
}
|
|
10565
|
-
|
|
10566
|
-
/* * */
|
|
10567
|
-
/* PROPS / JUSTIFY CONTENT */
|
|
10568
|
-
|
|
10569
|
-
.styles-module_root__9sh2n[data-justify-content="flex-start"] {
|
|
10570
|
-
justify-content: flex-start;
|
|
10571
|
-
}
|
|
10572
|
-
|
|
10573
|
-
.styles-module_root__9sh2n[data-justify-content="center"] {
|
|
10574
|
-
justify-content: center;
|
|
10575
|
-
}
|
|
10576
|
-
|
|
10577
|
-
.styles-module_root__9sh2n[data-justify-content="flex-end"] {
|
|
10578
|
-
justify-content: flex-end;
|
|
10579
|
-
}
|
|
10580
|
-
|
|
10581
|
-
/* * */
|
|
10582
|
-
/* PROPS / GAP */
|
|
10583
|
-
|
|
10584
|
-
.styles-module_root__9sh2n[data-gap="xs"] {
|
|
10585
|
-
gap: var(--size-spacing-xs);
|
|
10586
|
-
}
|
|
10587
|
-
|
|
10588
|
-
.styles-module_root__9sh2n[data-gap="sm"] {
|
|
10589
|
-
gap: var(--size-spacing-sm);
|
|
10590
|
-
}
|
|
10591
|
-
|
|
10592
|
-
.styles-module_root__9sh2n[data-gap="md"] {
|
|
10593
|
-
gap: var(--size-spacing-md);
|
|
10594
|
-
}
|
|
10595
|
-
|
|
10596
|
-
.styles-module_root__9sh2n[data-gap="lg"] {
|
|
10597
|
-
gap: var(--size-spacing-lg);
|
|
10598
|
-
}
|
|
10599
|
-
|
|
10600
|
-
/* * */
|
|
10601
|
-
/* PROPS / PADDING */
|
|
10602
|
-
|
|
10603
|
-
.styles-module_root__9sh2n[data-padding="sm"] {
|
|
10604
|
-
padding: var(--size-spacing-sm);
|
|
10605
|
-
}
|
|
10606
|
-
|
|
10607
|
-
.styles-module_root__9sh2n[data-padding="md"] {
|
|
10608
|
-
padding: var(--size-spacing-md);
|
|
10609
|
-
}
|
|
10610
|
-
|
|
10611
|
-
.styles-module_root__9sh2n[data-padding="lg"] {
|
|
10612
|
-
padding: var(--size-spacing-lg);
|
|
10613
|
-
}
|
|
10614
|
-
|
|
10615
|
-
.styles-module_root__9sh2n[data-padding="none"] {
|
|
10616
|
-
padding: 0;
|
|
10617
|
-
}
|
|
10618
|
-
|
|
10619
|
-
/* * */
|
|
10620
|
-
/* PROPS / FLEX WRAP */
|
|
10621
|
-
|
|
10622
|
-
.styles-module_root__9sh2n[data-flex-wrap] {
|
|
10623
|
-
flex-wrap: wrap;
|
|
10624
|
-
}
|
|
10625
|
-
|
|
10626
|
-
.styles-module_root__9sh2n[data-flex-wrap="nowrap"] {
|
|
10627
|
-
flex-wrap: nowrap;
|
|
10628
|
-
}
|
|
10629
|
-
|
|
10630
|
-
.styles-module_root__9sh2n[data-flex-wrap="wrap-reverse"] {
|
|
10631
|
-
flex-wrap: wrap-reverse;
|
|
10632
|
-
}
|
|
10633
|
-
|
|
10634
10634
|
.styles-module_header__6dpaJ {
|
|
10635
10635
|
position: sticky;
|
|
10636
10636
|
top: 0;
|