@tmlmobilidade/ui 20250826.1336.59 → 20250826.1511.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 +243 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +72 -5
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/src/components/common/LineBadge/index.js +16 -0
- package/dist/src/components/common/LineBadge/index.js.map +1 -0
- package/dist/src/components/common/LineBadge/styles.module.css.js +4 -0
- package/dist/src/components/common/LineBadge/styles.module.css.js.map +1 -0
- package/dist/src/components/common/LineDisplay/index.js +21 -0
- package/dist/src/components/common/LineDisplay/index.js.map +1 -0
- package/dist/src/components/common/LineDisplay/styles.module.css.js +4 -0
- package/dist/src/components/common/LineDisplay/styles.module.css.js.map +1 -0
- package/dist/src/components/common/LineName/index.js +10 -0
- package/dist/src/components/common/LineName/index.js.map +1 -0
- package/dist/src/components/common/LineName/styles.module.css.js +4 -0
- package/dist/src/components/common/LineName/styles.module.css.js.map +1 -0
- package/dist/src/components/common/LineSelect/index.js +80 -0
- package/dist/src/components/common/LineSelect/index.js.map +1 -0
- package/dist/src/components/common/LineSelect/styles.module.css.js +4 -0
- package/dist/src/components/common/LineSelect/styles.module.css.js.map +1 -0
- package/dist/src/components/common/StopDisplay/index.js +14 -0
- package/dist/src/components/common/StopDisplay/index.js.map +1 -0
- package/dist/src/components/common/StopDisplay/styles.module.css.js +4 -0
- package/dist/src/components/common/StopDisplay/styles.module.css.js.map +1 -0
- package/dist/src/components/common/StopDisplayName/index.js +10 -0
- package/dist/src/components/common/StopDisplayName/index.js.map +1 -0
- package/dist/src/components/common/StopDisplayName/styles.module.css.js +4 -0
- package/dist/src/components/common/StopDisplayName/styles.module.css.js.map +1 -0
- package/dist/src/components/common/StopSelect/index.js +77 -0
- package/dist/src/components/common/StopSelect/index.js.map +1 -0
- package/dist/src/components/common/StopSelect/styles.module.css.js +4 -0
- package/dist/src/components/common/StopSelect/styles.module.css.js.map +1 -0
- package/dist/src/components/inputs/CoordinatesInput/index.js +3 -0
- package/dist/src/components/inputs/CoordinatesInput/index.js.map +1 -1
- package/dist/src/components/map/view/MapViewToolbar/index.js +3 -1
- package/dist/src/components/map/view/MapViewToolbar/index.js.map +1 -1
- package/dist/src/components/upload/FileUpload/index.js +3 -1
- package/dist/src/components/upload/FileUpload/index.js.map +1 -1
- package/dist/src/hooks/use-other-search.js +204 -0
- package/dist/src/hooks/use-other-search.js.map +1 -0
- package/dist/styles-no-reset.css +243 -0
- package/dist/styles.css +243 -0
- package/package.json +4 -2
package/dist/index.css
CHANGED
@@ -10715,6 +10715,249 @@ breakpoint-mobile {
|
|
10715
10715
|
flex-wrap: wrap-reverse;
|
10716
10716
|
}
|
10717
10717
|
|
10718
|
+
/* * */
|
10719
|
+
/* BADGE */
|
10720
|
+
|
10721
|
+
.styles-module_badge__-PqgE {
|
10722
|
+
position: relative;
|
10723
|
+
display: flex;
|
10724
|
+
align-items: center;
|
10725
|
+
justify-content: center;
|
10726
|
+
font-weight: var(--font-weight-bold);
|
10727
|
+
line-height: 1;
|
10728
|
+
color: var(--color-system-background-100);
|
10729
|
+
letter-spacing: 1px;
|
10730
|
+
background-color: var(--color-system-text-200);
|
10731
|
+
border-radius: 999px;
|
10732
|
+
|
10733
|
+
&[data-size='md'] {
|
10734
|
+
min-width: 65px;
|
10735
|
+
max-width: 65px;
|
10736
|
+
min-height: 26px;
|
10737
|
+
max-height: 26px;
|
10738
|
+
font-size: 16px;
|
10739
|
+
}
|
10740
|
+
|
10741
|
+
&[data-size='lg'] {
|
10742
|
+
min-width: 85px;
|
10743
|
+
max-width: 85px;
|
10744
|
+
min-height: 34px;
|
10745
|
+
max-height: 34px;
|
10746
|
+
font-size: 22px;
|
10747
|
+
}
|
10748
|
+
}
|
10749
|
+
|
10750
|
+
|
10751
|
+
/* * */
|
10752
|
+
/* ALERT ICON */
|
10753
|
+
|
10754
|
+
.styles-module_alertIcon__JtR4k {
|
10755
|
+
position: absolute;
|
10756
|
+
top: -10px;
|
10757
|
+
right: -10px;
|
10758
|
+
display: flex;
|
10759
|
+
align-items: center;
|
10760
|
+
justify-content: center;
|
10761
|
+
width: 20px;
|
10762
|
+
height: 20px;
|
10763
|
+
color: var(--color-status-info-text);
|
10764
|
+
background-color: var(--color-primary-white);
|
10765
|
+
border-radius: 999px;
|
10766
|
+
}
|
10767
|
+
/* * */
|
10768
|
+
/* NAME */
|
10769
|
+
|
10770
|
+
.styles-module_name__nmepm {
|
10771
|
+
display: -webkit-box;
|
10772
|
+
justify-content: flex-start;
|
10773
|
+
width: 100%;
|
10774
|
+
overflow: hidden;
|
10775
|
+
text-overflow: ellipsis;
|
10776
|
+
-webkit-line-clamp: 3;
|
10777
|
+
color: var(--color-system-text-100);
|
10778
|
+
-webkit-box-orient: vertical;
|
10779
|
+
}
|
10780
|
+
|
10781
|
+
/* * */
|
10782
|
+
/* SIZE */
|
10783
|
+
|
10784
|
+
.styles-module_name__nmepm[data-size='md'] {
|
10785
|
+
font-size: 15px;
|
10786
|
+
font-weight: var(--font-weight-semibold);
|
10787
|
+
}
|
10788
|
+
|
10789
|
+
.styles-module_name__nmepm[data-size='lg'] {
|
10790
|
+
font-size: 20px;
|
10791
|
+
font-weight: var(--font-weight-semibold);
|
10792
|
+
}
|
10793
|
+
|
10794
|
+
/* * */
|
10795
|
+
/* ALIGN */
|
10796
|
+
|
10797
|
+
.styles-module_name__nmepm[data-align='left'] {
|
10798
|
+
align-items: flex-start;
|
10799
|
+
text-align: left;
|
10800
|
+
}
|
10801
|
+
|
10802
|
+
.styles-module_name__nmepm[data-align='center'] {
|
10803
|
+
align-items: center;
|
10804
|
+
text-align: center;
|
10805
|
+
}
|
10806
|
+
/* * */
|
10807
|
+
/* CONTAINER */
|
10808
|
+
|
10809
|
+
.styles-module_container__A88zF {
|
10810
|
+
display: flex;
|
10811
|
+
flex-direction: row;
|
10812
|
+
gap: var(--size-spacing-sm);
|
10813
|
+
align-items: center;
|
10814
|
+
justify-content: flex-start;
|
10815
|
+
}
|
10816
|
+
|
10817
|
+
/* * */
|
10818
|
+
/* COMBOBOX TARGET WRAPPER */
|
10819
|
+
|
10820
|
+
.styles-module_comboboxTargetWrapper__MxB1r {
|
10821
|
+
position: relative;
|
10822
|
+
width: 100%;
|
10823
|
+
height: auto;
|
10824
|
+
}
|
10825
|
+
|
10826
|
+
/* * */
|
10827
|
+
/* COMBOBOX TARGET INPUT */
|
10828
|
+
|
10829
|
+
.styles-module_comboboxTargetInput__Qle1Y {
|
10830
|
+
width: 100%;
|
10831
|
+
height: auto;
|
10832
|
+
max-height: none;
|
10833
|
+
padding: 13px calc(var(--size-spacing-md) + 30px);
|
10834
|
+
padding-bottom: 12px;
|
10835
|
+
font-size: 18px;
|
10836
|
+
line-height: 1;
|
10837
|
+
color: var(--color-system-text-100);
|
10838
|
+
background-color: var(--color-system-background-100);
|
10839
|
+
border: 1px solid var(--color-system-border-200);
|
10840
|
+
border-radius: 5px;
|
10841
|
+
}
|
10842
|
+
|
10843
|
+
/* * */
|
10844
|
+
/* COMBOBOX TARGET SECTION */
|
10845
|
+
|
10846
|
+
.styles-module_comboboxTargetSection__Q9IFI {
|
10847
|
+
position: absolute;
|
10848
|
+
display: flex;
|
10849
|
+
width: auto;
|
10850
|
+
padding: var(--size-spacing-sm);
|
10851
|
+
color: var(--color-system-text-300);
|
10852
|
+
}
|
10853
|
+
|
10854
|
+
.styles-module_comboboxTargetSection__Q9IFI[data-position="left"] {
|
10855
|
+
left: 1px;
|
10856
|
+
}
|
10857
|
+
|
10858
|
+
.styles-module_comboboxTargetSection__Q9IFI[data-position="right"] {
|
10859
|
+
right: 1px;
|
10860
|
+
}
|
10861
|
+
|
10862
|
+
/* * */
|
10863
|
+
/* COMBOBOX OPTION */
|
10864
|
+
|
10865
|
+
.styles-module_comboboxOption__gQmRA {
|
10866
|
+
padding: 6px;
|
10867
|
+
}
|
10868
|
+
|
10869
|
+
/* * */
|
10870
|
+
/* SELECTED */
|
10871
|
+
|
10872
|
+
.styles-module_selected__AYGBH {
|
10873
|
+
background-color: var(--color-system-background-200) !important;
|
10874
|
+
}
|
10875
|
+
|
10876
|
+
/* * */
|
10877
|
+
/* CONTAINER */
|
10878
|
+
|
10879
|
+
.styles-module_container__qrLZH {
|
10880
|
+
display: flex;
|
10881
|
+
flex-direction: column;
|
10882
|
+
gap: var(--size-spacing-3);
|
10883
|
+
align-items: flex-start;
|
10884
|
+
justify-content: flex-start;
|
10885
|
+
}
|
10886
|
+
/* * */
|
10887
|
+
/* NAME */
|
10888
|
+
|
10889
|
+
.styles-module_name__SST-B {
|
10890
|
+
color: var(--color-system-text-100);
|
10891
|
+
}
|
10892
|
+
|
10893
|
+
.styles-module_name__SST-B.styles-module_md__-wokm {
|
10894
|
+
font-size: 16px;
|
10895
|
+
font-weight: var(--font-weight-bold);
|
10896
|
+
}
|
10897
|
+
|
10898
|
+
.styles-module_name__SST-B.styles-module_lg__5of8l {
|
10899
|
+
font-size: 20px;
|
10900
|
+
font-weight: var(--font-weight-bold);
|
10901
|
+
}
|
10902
|
+
/* * */
|
10903
|
+
/* COMBOBOX TARGET WRAPPER */
|
10904
|
+
|
10905
|
+
.styles-module_comboboxTargetWrapper__hRaRB {
|
10906
|
+
position: relative;
|
10907
|
+
width: 100%;
|
10908
|
+
height: auto;
|
10909
|
+
}
|
10910
|
+
|
10911
|
+
/* * */
|
10912
|
+
/* COMBOBOX TARGET INPUT */
|
10913
|
+
|
10914
|
+
.styles-module_comboboxTargetInput__XB2iL {
|
10915
|
+
width: 100%;
|
10916
|
+
height: auto;
|
10917
|
+
max-height: none;
|
10918
|
+
padding: 13px calc(var(--size-spacing-md) + 30px);
|
10919
|
+
padding-bottom: 12px;
|
10920
|
+
font-size: 18px;
|
10921
|
+
line-height: 1;
|
10922
|
+
color: var(--color-system-text-100);
|
10923
|
+
background-color: var(--color-system-background-100);
|
10924
|
+
border: 1px solid var(--color-system-border-200);
|
10925
|
+
border-radius: 5px;
|
10926
|
+
}
|
10927
|
+
|
10928
|
+
/* * */
|
10929
|
+
/* COMBOBOX TARGET SECTION */
|
10930
|
+
|
10931
|
+
.styles-module_comboboxTargetSection__zilqR {
|
10932
|
+
position: absolute;
|
10933
|
+
display: flex;
|
10934
|
+
width: auto;
|
10935
|
+
padding: var(--size-spacing-sm);
|
10936
|
+
color: var(--color-system-text-300);
|
10937
|
+
}
|
10938
|
+
|
10939
|
+
.styles-module_comboboxTargetSection__zilqR[data-position="left"] {
|
10940
|
+
left: 1px;
|
10941
|
+
}
|
10942
|
+
|
10943
|
+
.styles-module_comboboxTargetSection__zilqR[data-position="right"] {
|
10944
|
+
right: 1px;
|
10945
|
+
}
|
10946
|
+
|
10947
|
+
/* * */
|
10948
|
+
/* COMBOBOX OPTION */
|
10949
|
+
|
10950
|
+
.styles-module_comboboxOption__uyqLv {
|
10951
|
+
padding: 6px;
|
10952
|
+
}
|
10953
|
+
|
10954
|
+
/* * */
|
10955
|
+
/* SELECTED */
|
10956
|
+
|
10957
|
+
.styles-module_selected__ZOTd- {
|
10958
|
+
background-color: var(--color-system-background-200) !important;
|
10959
|
+
}
|
10960
|
+
|
10718
10961
|
.styles-module_header__6dpaJ {
|
10719
10962
|
position: sticky;
|
10720
10963
|
top: 0;
|