@tmlmobilidade/ui 20250828.1159.48 → 20250828.1338.25
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 +26 -11
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/src/components/common/LineBadge/index.js +1 -1
- package/dist/src/components/common/LineBadge/index.js.map +1 -1
- package/dist/src/components/common/LineSelect/index.js +8 -7
- package/dist/src/components/common/LineSelect/index.js.map +1 -1
- package/dist/src/components/common/LineSelect/styles.module.css.js +1 -1
- package/dist/src/components/common/StopBadge/index.js +15 -0
- package/dist/src/components/common/StopBadge/index.js.map +1 -0
- package/dist/src/components/common/StopDisplay/index.js +2 -1
- package/dist/src/components/common/StopDisplay/index.js.map +1 -1
- package/dist/src/components/common/StopSelect/index.js +6 -6
- package/dist/src/components/common/StopSelect/index.js.map +1 -1
- package/dist/src/components/common/StopSelect/styles.module.css.js +1 -1
- package/dist/styles-no-reset.css +26 -11
- package/dist/styles.css +26 -11
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -876,12 +876,20 @@
|
|
876
876
|
height: auto;
|
877
877
|
}
|
878
878
|
|
879
|
+
/* * */
|
880
|
+
/* COMBOBOX TARGET TEXT INPUT */
|
881
|
+
|
882
|
+
.styles-module_comboboxTargetTextInput__uwdX6 {
|
883
|
+
min-height: 60px;
|
884
|
+
}
|
885
|
+
|
879
886
|
/* * */
|
880
887
|
/* COMBOBOX TARGET INPUT */
|
881
888
|
|
882
889
|
.styles-module_comboboxTargetInput__Qle1Y {
|
883
890
|
width: 100%;
|
884
891
|
height: auto;
|
892
|
+
min-height: 60px;
|
885
893
|
max-height: none;
|
886
894
|
padding: 13px calc(var(--size-spacing-md) + 30px);
|
887
895
|
padding-bottom: 12px;
|
@@ -889,8 +897,8 @@
|
|
889
897
|
line-height: 1;
|
890
898
|
color: var(--color-system-text-100);
|
891
899
|
background-color: var(--color-system-background-100);
|
892
|
-
border:
|
893
|
-
border-radius:
|
900
|
+
border: 2px solid var(--color-system-border-100);
|
901
|
+
border-radius: var(--border-radius-sm);
|
894
902
|
}
|
895
903
|
|
896
904
|
/* * */
|
@@ -930,12 +938,11 @@
|
|
930
938
|
/* CONTAINER */
|
931
939
|
|
932
940
|
.styles-module_container__qrLZH {
|
933
|
-
display:
|
934
|
-
|
935
|
-
gap: var(--size-spacing-
|
936
|
-
align-items: flex-start;
|
937
|
-
justify-content: flex-start;
|
941
|
+
display: grid;
|
942
|
+
grid-template-columns: auto 1fr;
|
943
|
+
gap: var(--size-spacing-sm);
|
938
944
|
}
|
945
|
+
|
939
946
|
/* * */
|
940
947
|
/* NAME */
|
941
948
|
|
@@ -944,12 +951,12 @@
|
|
944
951
|
}
|
945
952
|
|
946
953
|
.styles-module_name__SST-B.styles-module_md__-wokm {
|
947
|
-
font-size:
|
954
|
+
font-size: var(--font-size-md);
|
948
955
|
font-weight: var(--font-weight-bold);
|
949
956
|
}
|
950
957
|
|
951
958
|
.styles-module_name__SST-B.styles-module_lg__5of8l {
|
952
|
-
font-size:
|
959
|
+
font-size: var(--font-size-lg);
|
953
960
|
font-weight: var(--font-weight-bold);
|
954
961
|
}
|
955
962
|
/* * */
|
@@ -961,12 +968,20 @@
|
|
961
968
|
height: auto;
|
962
969
|
}
|
963
970
|
|
971
|
+
/* * */
|
972
|
+
/* COMBOBOX TARGET TEXT INPUT */
|
973
|
+
|
974
|
+
.styles-module_comboboxTargetTextInput__k1Ix9 {
|
975
|
+
min-height: 60px;
|
976
|
+
}
|
977
|
+
|
964
978
|
/* * */
|
965
979
|
/* COMBOBOX TARGET INPUT */
|
966
980
|
|
967
981
|
.styles-module_comboboxTargetInput__XB2iL {
|
968
982
|
width: 100%;
|
969
983
|
height: auto;
|
984
|
+
min-height: 60px;
|
970
985
|
max-height: none;
|
971
986
|
padding: 13px calc(var(--size-spacing-md) + 30px);
|
972
987
|
padding-bottom: 12px;
|
@@ -974,8 +989,8 @@
|
|
974
989
|
line-height: 1;
|
975
990
|
color: var(--color-system-text-100);
|
976
991
|
background-color: var(--color-system-background-100);
|
977
|
-
border:
|
978
|
-
border-radius:
|
992
|
+
border: 2px solid var(--color-system-border-100);
|
993
|
+
border-radius: var(--border-radius-sm);
|
979
994
|
}
|
980
995
|
|
981
996
|
/* * */
|