@tmlmobilidade/ui 20250709.1142.51 → 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 +64 -48
- 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/styles-no-reset.css +64 -48
- package/dist/styles.css +64 -48
- 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,6 +8912,70 @@ 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 {
|
|
@@ -10225,54 +10289,6 @@ breakpoint-mobile {
|
|
|
10225
10289
|
flex-wrap: wrap-reverse;
|
|
10226
10290
|
}
|
|
10227
10291
|
|
|
10228
|
-
.styles-module_inner__d9DH7 {
|
|
10229
|
-
display: flex;
|
|
10230
|
-
align-items: center;
|
|
10231
|
-
justify-content: center;
|
|
10232
|
-
width: 24px;
|
|
10233
|
-
height: 24px;
|
|
10234
|
-
}
|
|
10235
|
-
|
|
10236
|
-
.styles-module_input__rce0R {
|
|
10237
|
-
outline: 2px solid var(--color-system-text-300);
|
|
10238
|
-
border-radius: var(--border-radius-sm);
|
|
10239
|
-
}
|
|
10240
|
-
|
|
10241
|
-
.styles-module_input__rce0R:checked,
|
|
10242
|
-
.styles-module_input__rce0R[data-indeterminate='true'] {
|
|
10243
|
-
outline-color: var(--color-secondary);
|
|
10244
|
-
background-color: var(--color-primary);
|
|
10245
|
-
}
|
|
10246
|
-
|
|
10247
|
-
.styles-module_labelWrapper__AGQzf {
|
|
10248
|
-
display: flex;
|
|
10249
|
-
flex-direction: column;
|
|
10250
|
-
gap: var(--size-spacing-xs);
|
|
10251
|
-
}
|
|
10252
|
-
|
|
10253
|
-
.styles-module_label__U404g {
|
|
10254
|
-
margin: 0;
|
|
10255
|
-
font-size: var(--font-size-md);
|
|
10256
|
-
font-weight: var(--font-weight-semibold);
|
|
10257
|
-
line-height: var(font-line-height);
|
|
10258
|
-
color: var(--color-system-text-100);
|
|
10259
|
-
}
|
|
10260
|
-
|
|
10261
|
-
.styles-module_description__bkV5V {
|
|
10262
|
-
margin: 0;
|
|
10263
|
-
font-size: var(--font-size-sm);
|
|
10264
|
-
font-weight: var(--font-weight-medium);
|
|
10265
|
-
line-height: var(font-line-height);
|
|
10266
|
-
color: var(--color-system-text-200);
|
|
10267
|
-
}
|
|
10268
|
-
|
|
10269
|
-
.styles-module_error__ZtPYT {
|
|
10270
|
-
margin: 0;
|
|
10271
|
-
font-size: var(--font-size-sm);
|
|
10272
|
-
font-weight: var(--font-weight-medium);
|
|
10273
|
-
line-height: var(font-line-height);
|
|
10274
|
-
color: var(--color-status-danger-primary);
|
|
10275
|
-
}
|
|
10276
10292
|
/* * */
|
|
10277
10293
|
/* ROOT */
|
|
10278
10294
|
|