@tmlmobilidade/ui 20250828.1439.42 → 20250828.1453.35

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 CHANGED
@@ -941,6 +941,7 @@
941
941
  display: flex;
942
942
  gap: var(--size-spacing-xs);
943
943
  align-items: center;
944
+ height: fit-content;
944
945
  font-size: var(--font-size-sm);
945
946
  font-weight: var(--font-weight-medium);
946
947
  color: var(--color-system-text-100);
@@ -952,14 +953,35 @@
952
953
  & * {
953
954
  user-select: none;
954
955
  }
956
+
957
+ &[data-size='lg'] {
958
+ padding: var(--size-spacing-sm);
959
+ font-size: var(--font-size-lg);
960
+ }
961
+
962
+ &[data-size='md'] {
963
+ padding: var(--size-spacing-xs);
964
+ font-size: var(--font-size-md);
965
+ }
966
+
967
+ &[data-size='sm'] {
968
+ padding: var(--size-spacing-xs);
969
+ font-size: var(--font-size-sm);
970
+ }
971
+
972
+ &[data-size='xl'] {
973
+ padding: var(--size-spacing-md);
974
+ font-size: var(--font-size-xl);
975
+ }
955
976
  }
956
977
 
978
+ /* * */
979
+ /* LABEL */
980
+
957
981
  .styles-module_label__2CZDF {
958
982
  display: flex;
959
983
  gap: var(--size-spacing-xs);
960
984
  align-items: center;
961
- font-size: var(--font-size-sm);
962
- font-weight: var(--font-weight-medium);
963
985
  color: var(--color-system-text-100);
964
986
  }
965
987
  /* * */
@@ -2134,6 +2156,45 @@
2134
2156
  /* * */
2135
2157
  /* ROOT */
2136
2158
 
2159
+ .styles-module_root__xDysI {
2160
+ display: flex;
2161
+ align-items: center;
2162
+ justify-content: center;
2163
+ border-bottom: 1px solid var(--color-system-border-200);
2164
+
2165
+
2166
+ /* * */
2167
+ /* PROPS / SEPARATOR TYPE */
2168
+ &[data-separator-type="dashed"] {
2169
+ border-bottom: 1px dashed var(--color-system-border-100);
2170
+ }
2171
+
2172
+ &[data-separator-type="solid"] {
2173
+ border-bottom: 1px solid var(--color-system-border-100);
2174
+ }
2175
+
2176
+ /* * */
2177
+ /* PROPS / MARGIN */
2178
+
2179
+ &[data-margin="sm"] {
2180
+ margin: var(--size-spacing-sm);
2181
+ }
2182
+
2183
+ &[data-margin="md"] {
2184
+ margin: var(--size-spacing-md);
2185
+ }
2186
+
2187
+ &[data-margin="lg"] {
2188
+ margin: var(--size-spacing-lg);
2189
+ }
2190
+
2191
+ &[data-margin="none"] {
2192
+ margin: 0;
2193
+ }
2194
+ }
2195
+ /* * */
2196
+ /* ROOT */
2197
+
2137
2198
  .styles-module_root__Rhx1c {
2138
2199
  display: flex;
2139
2200
  flex-direction: column;