@tmlmobilidade/ui 20250826.1437.53 → 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 +85 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +29 -4
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- 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 +1 -0
- package/dist/src/components/inputs/CoordinatesInput/index.js.map +1 -1
- package/dist/src/components/map/view/MapViewToolbar/index.js +1 -0
- package/dist/src/components/map/view/MapViewToolbar/index.js.map +1 -1
- package/dist/src/components/upload/FileUpload/index.js +1 -0
- package/dist/src/components/upload/FileUpload/index.js.map +1 -1
- package/dist/styles-no-reset.css +85 -0
- package/dist/styles.css +85 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -10873,6 +10873,91 @@ breakpoint-mobile {
|
|
10873
10873
|
background-color: var(--color-system-background-200) !important;
|
10874
10874
|
}
|
10875
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
|
+
|
10876
10961
|
.styles-module_header__6dpaJ {
|
10877
10962
|
position: sticky;
|
10878
10963
|
top: 0;
|