@tmlmobilidade/ui 20250709.1135.33 → 20250709.1149.3
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 +70 -49
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/src/components/common/Checkbox/index.js +1 -2
- package/dist/src/components/common/Checkbox/index.js.map +1 -1
- package/dist/src/styles/mantine/Checkbox.module.css.js +1 -1
- package/dist/src/styles/mantine/Popover.module.css.js +1 -1
- package/dist/styles-no-reset.css +70 -49
- package/dist/styles.css +70 -49
- package/package.json +1 -1
- package/dist/src/components/common/Checkbox/styles.module.css.js +0 -4
- package/dist/src/components/common/Checkbox/styles.module.css.js.map +0 -1
package/dist/index.css
CHANGED
|
@@ -8912,12 +8912,76 @@ breakpoint-mobile {
|
|
|
8912
8912
|
}
|
|
8913
8913
|
|
|
8914
8914
|
/* * */
|
|
8915
|
+
/* INNER */
|
|
8916
|
+
|
|
8917
|
+
.Checkbox-module_inner__IDrZN {
|
|
8918
|
+
display: flex;
|
|
8919
|
+
align-items: center;
|
|
8920
|
+
justify-content: center;
|
|
8921
|
+
width: 24px;
|
|
8922
|
+
height: 24px;
|
|
8923
|
+
}
|
|
8924
|
+
|
|
8925
|
+
/* * */
|
|
8926
|
+
/* INPUT */
|
|
8927
|
+
|
|
8928
|
+
.Checkbox-module_input__Xw22Q {
|
|
8929
|
+
cursor: pointer;
|
|
8930
|
+
outline: 2px solid var(--color-system-text-300);
|
|
8931
|
+
border-radius: var(--border-radius-sm);
|
|
8932
|
+
}
|
|
8933
|
+
|
|
8934
|
+
.Checkbox-module_input__Xw22Q:checked,
|
|
8935
|
+
.Checkbox-module_input__Xw22Q[data-indeterminate='true'] {
|
|
8936
|
+
outline-color: var(--color-secondary);
|
|
8937
|
+
background-color: var(--color-primary);
|
|
8938
|
+
}
|
|
8939
|
+
|
|
8940
|
+
/* * */
|
|
8941
|
+
/* LABEL */
|
|
8942
|
+
|
|
8943
|
+
.Checkbox-module_labelWrapper__q8WUQ {
|
|
8944
|
+
display: flex;
|
|
8945
|
+
flex-direction: column;
|
|
8946
|
+
gap: var(--size-spacing-xs);
|
|
8947
|
+
}
|
|
8948
|
+
|
|
8949
|
+
.Checkbox-module_label__GFpZ8 {
|
|
8950
|
+
margin: 0;
|
|
8951
|
+
font-size: var(--font-size-md);
|
|
8952
|
+
font-weight: var(--font-weight-semibold);
|
|
8953
|
+
line-height: var(font-line-height);
|
|
8954
|
+
color: var(--color-system-text-100);
|
|
8955
|
+
cursor: pointer;
|
|
8956
|
+
}
|
|
8957
|
+
|
|
8958
|
+
/* * */
|
|
8959
|
+
/* DESCRIPTION */
|
|
8960
|
+
|
|
8961
|
+
.Checkbox-module_description__u58YS {
|
|
8962
|
+
margin: 0;
|
|
8963
|
+
font-size: var(--font-size-sm);
|
|
8964
|
+
font-weight: var(--font-weight-medium);
|
|
8965
|
+
line-height: var(font-line-height);
|
|
8966
|
+
color: var(--color-system-text-200);
|
|
8967
|
+
}
|
|
8968
|
+
|
|
8969
|
+
/* * */
|
|
8970
|
+
/* ERROR */
|
|
8971
|
+
|
|
8972
|
+
.Checkbox-module_error__EPZeo {
|
|
8973
|
+
margin: 0;
|
|
8974
|
+
font-size: var(--font-size-sm);
|
|
8975
|
+
font-weight: var(--font-weight-medium);
|
|
8976
|
+
line-height: var(font-line-height);
|
|
8977
|
+
color: var(--color-status-danger-primary);
|
|
8978
|
+
}
|
|
8915
8979
|
/* * */
|
|
8916
8980
|
|
|
8917
8981
|
.CheckboxGroup-module_root__TXsLI > div {
|
|
8918
8982
|
display: flex;
|
|
8919
8983
|
flex-direction: column;
|
|
8920
|
-
gap:
|
|
8984
|
+
gap: 2px;
|
|
8921
8985
|
}
|
|
8922
8986
|
/* * */
|
|
8923
8987
|
/* INPUT */
|
|
@@ -8932,6 +8996,11 @@ breakpoint-mobile {
|
|
|
8932
8996
|
border-radius: unset;
|
|
8933
8997
|
}
|
|
8934
8998
|
/* * */
|
|
8999
|
+
/* ROOT */
|
|
9000
|
+
|
|
9001
|
+
.Popover-module_root__fjcuf {
|
|
9002
|
+
padding: 3px;
|
|
9003
|
+
}
|
|
8935
9004
|
.SegmentedControl-module_root__NJUt4 {
|
|
8936
9005
|
overflow: visible;
|
|
8937
9006
|
color: var(--color-primary);
|
|
@@ -10220,54 +10289,6 @@ breakpoint-mobile {
|
|
|
10220
10289
|
flex-wrap: wrap-reverse;
|
|
10221
10290
|
}
|
|
10222
10291
|
|
|
10223
|
-
.styles-module_inner__d9DH7 {
|
|
10224
|
-
display: flex;
|
|
10225
|
-
align-items: center;
|
|
10226
|
-
justify-content: center;
|
|
10227
|
-
width: 24px;
|
|
10228
|
-
height: 24px;
|
|
10229
|
-
}
|
|
10230
|
-
|
|
10231
|
-
.styles-module_input__rce0R {
|
|
10232
|
-
outline: 2px solid var(--color-system-text-300);
|
|
10233
|
-
border-radius: var(--border-radius-sm);
|
|
10234
|
-
}
|
|
10235
|
-
|
|
10236
|
-
.styles-module_input__rce0R:checked,
|
|
10237
|
-
.styles-module_input__rce0R[data-indeterminate='true'] {
|
|
10238
|
-
outline-color: var(--color-secondary);
|
|
10239
|
-
background-color: var(--color-primary);
|
|
10240
|
-
}
|
|
10241
|
-
|
|
10242
|
-
.styles-module_labelWrapper__AGQzf {
|
|
10243
|
-
display: flex;
|
|
10244
|
-
flex-direction: column;
|
|
10245
|
-
gap: var(--size-spacing-xs);
|
|
10246
|
-
}
|
|
10247
|
-
|
|
10248
|
-
.styles-module_label__U404g {
|
|
10249
|
-
margin: 0;
|
|
10250
|
-
font-size: var(--font-size-md);
|
|
10251
|
-
font-weight: var(--font-weight-semibold);
|
|
10252
|
-
line-height: var(font-line-height);
|
|
10253
|
-
color: var(--color-system-text-100);
|
|
10254
|
-
}
|
|
10255
|
-
|
|
10256
|
-
.styles-module_description__bkV5V {
|
|
10257
|
-
margin: 0;
|
|
10258
|
-
font-size: var(--font-size-sm);
|
|
10259
|
-
font-weight: var(--font-weight-medium);
|
|
10260
|
-
line-height: var(font-line-height);
|
|
10261
|
-
color: var(--color-system-text-200);
|
|
10262
|
-
}
|
|
10263
|
-
|
|
10264
|
-
.styles-module_error__ZtPYT {
|
|
10265
|
-
margin: 0;
|
|
10266
|
-
font-size: var(--font-size-sm);
|
|
10267
|
-
font-weight: var(--font-weight-medium);
|
|
10268
|
-
line-height: var(font-line-height);
|
|
10269
|
-
color: var(--color-status-danger-primary);
|
|
10270
|
-
}
|
|
10271
10292
|
/* * */
|
|
10272
10293
|
/* ROOT */
|
|
10273
10294
|
|