@tmlmobilidade/ui 20250916.1705.17 → 20250917.1116.49
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 +153 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +32 -3
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/src/components/display/Label/index.js +2 -2
- package/dist/src/components/display/Label/index.js.map +1 -1
- package/dist/src/components/inputs/CommentBox/index.js +55 -0
- package/dist/src/components/inputs/CommentBox/index.js.map +1 -0
- package/dist/src/components/inputs/CommentBox/styles.module.css.js +4 -0
- package/dist/src/components/inputs/CommentBox/styles.module.css.js.map +1 -0
- package/dist/src/lib/utils.js +4 -1
- package/dist/src/lib/utils.js.map +1 -1
- package/dist/src/styles/mantine/Textarea-comment.module.css.js +4 -0
- package/dist/src/styles/mantine/Textarea-comment.module.css.js.map +1 -0
- package/dist/src/styles/theme.js +6 -2
- package/dist/src/styles/theme.js.map +1 -1
- package/dist/styles-no-reset.css +153 -0
- package/dist/styles.css +153 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1365,6 +1365,28 @@
|
|
1365
1365
|
color: var(--color-system-text-100);
|
1366
1366
|
}
|
1367
1367
|
|
1368
|
+
/* * */
|
1369
|
+
/* LABEL / VARIANT */
|
1370
|
+
|
1371
|
+
.styles-module_label__nVlWc[data-variant='default'] {
|
1372
|
+
color: var(--color-system-text-100);
|
1373
|
+
}
|
1374
|
+
|
1375
|
+
.styles-module_label__nVlWc[data-variant='danger'] {
|
1376
|
+
color: var(--color-status-danger-primary);
|
1377
|
+
}
|
1378
|
+
|
1379
|
+
.styles-module_label__nVlWc[data-variant='muted'] {
|
1380
|
+
color: var(--color-system-text-300);
|
1381
|
+
}
|
1382
|
+
|
1383
|
+
.styles-module_label__nVlWc[data-variant='success'] {
|
1384
|
+
color: var(--color-status-success-primary);
|
1385
|
+
}
|
1386
|
+
|
1387
|
+
.styles-module_label__nVlWc[data-variant='warning'] {
|
1388
|
+
color: var(--color-status-warning-primary);
|
1389
|
+
}
|
1368
1390
|
/* * */
|
1369
1391
|
/* LABEL */
|
1370
1392
|
|
@@ -2289,6 +2311,65 @@
|
|
2289
2311
|
box-shadow: none;
|
2290
2312
|
}
|
2291
2313
|
/* * */
|
2314
|
+
/* ROOT */
|
2315
|
+
|
2316
|
+
.styles-module_root__2lf0T {
|
2317
|
+
display: flex;
|
2318
|
+
flex-direction: column;
|
2319
|
+
gap: var(--size-spacing-xs);
|
2320
|
+
width: 100%;
|
2321
|
+
}
|
2322
|
+
|
2323
|
+
/* * */
|
2324
|
+
/* CONTAINER */
|
2325
|
+
|
2326
|
+
.styles-module_container__ehBE3 {
|
2327
|
+
display: flex;
|
2328
|
+
flex-direction: row;
|
2329
|
+
gap: var(--size-spacing-xs);
|
2330
|
+
align-items: flex-end;
|
2331
|
+
justify-content: flex-end;
|
2332
|
+
width: 100%;
|
2333
|
+
height: fit-content;
|
2334
|
+
padding: var(--size-spacing-sm);
|
2335
|
+
cursor: text;
|
2336
|
+
background-color: var(--color-system-background-100);
|
2337
|
+
border: 2px solid var(--color-system-border-100);
|
2338
|
+
border-radius: var(--border-radius-sm);
|
2339
|
+
}
|
2340
|
+
|
2341
|
+
.styles-module_container__ehBE3[data-focused="true"] {
|
2342
|
+
border-color: var(--color-primary);
|
2343
|
+
}
|
2344
|
+
|
2345
|
+
.styles-module_container__ehBE3[data-error="true"] {
|
2346
|
+
border-color: var(--color-status-danger-primary);
|
2347
|
+
}
|
2348
|
+
|
2349
|
+
.styles-module_container__ehBE3[data-disabled="true"] {
|
2350
|
+
color: var(--color-system-text-300);
|
2351
|
+
cursor: not-allowed;
|
2352
|
+
background-color: var(--color-system-background-200);
|
2353
|
+
border-color: var(--color-system-border-200);
|
2354
|
+
}
|
2355
|
+
|
2356
|
+
/* * */
|
2357
|
+
/* ERROR */
|
2358
|
+
|
2359
|
+
.styles-module_error__tki5t {
|
2360
|
+
font-size: var(--font-size-sm);
|
2361
|
+
font-weight: var(--font-weight-medium);
|
2362
|
+
color: var(--color-status-danger-primary);
|
2363
|
+
}
|
2364
|
+
|
2365
|
+
.styles-module_error__tki5t[data-error="true"] {
|
2366
|
+
display: block;
|
2367
|
+
}
|
2368
|
+
|
2369
|
+
.styles-module_error__tki5t[data-error="false"] {
|
2370
|
+
display: none;
|
2371
|
+
}
|
2372
|
+
/* * */
|
2292
2373
|
/* PILLS INPUT */
|
2293
2374
|
|
2294
2375
|
.styles-module_pillsInputPillGroup__-eDFg {
|
@@ -11957,6 +12038,78 @@ figure {
|
|
11957
12038
|
.Text-module_root__eau92[data-size='xl'] {
|
11958
12039
|
font-size: var(--font-size-xl);
|
11959
12040
|
}
|
12041
|
+
.Textarea-comment-module_root__-XY-6,
|
12042
|
+
.Textarea-comment-module_wrapper__C2I4b {
|
12043
|
+
--input-size: 40px;
|
12044
|
+
--input-height: 40px;
|
12045
|
+
width: 100%;
|
12046
|
+
min-width: 200px;
|
12047
|
+
overflow: visible;
|
12048
|
+
}
|
12049
|
+
|
12050
|
+
/* * */
|
12051
|
+
/* INPUT */
|
12052
|
+
|
12053
|
+
.Textarea-comment-module_input__QXSmZ {
|
12054
|
+
font-size: 16px;
|
12055
|
+
font-weight: var(--font-weight-regular);
|
12056
|
+
line-height: 1.5;
|
12057
|
+
color: var(--color-system-text-100);
|
12058
|
+
background-color: var(--color-system-background-100);
|
12059
|
+
border: none;
|
12060
|
+
box-shadow: none;
|
12061
|
+
}
|
12062
|
+
|
12063
|
+
.Textarea-comment-module_input__QXSmZ::placeholder {
|
12064
|
+
color: var(--color-system-text-300);
|
12065
|
+
}
|
12066
|
+
|
12067
|
+
.Textarea-comment-module_wrapper__C2I4b[data-with-left-section="true"] .Textarea-comment-module_input__QXSmZ {
|
12068
|
+
padding-left: calc(var(--size-spacing-sm) + 30px);
|
12069
|
+
}
|
12070
|
+
|
12071
|
+
.Textarea-comment-module_wrapper__C2I4b[data-with-right-section="true"] .Textarea-comment-module_input__QXSmZ {
|
12072
|
+
padding-right: calc(var(--size-spacing-sm) + 30px);
|
12073
|
+
}
|
12074
|
+
|
12075
|
+
.Textarea-comment-module_wrapper__C2I4b[data-disabled="true"] .Textarea-comment-module_input__QXSmZ {
|
12076
|
+
color: var(--color-system-text-300);
|
12077
|
+
background-color: var(--color-system-background-200);
|
12078
|
+
border-color: var(--color-system-border-200);
|
12079
|
+
}
|
12080
|
+
|
12081
|
+
|
12082
|
+
/* * */
|
12083
|
+
/* SECTION */
|
12084
|
+
|
12085
|
+
.Textarea-comment-module_section__tDmKF {
|
12086
|
+
color: var(--color-system-text-300);
|
12087
|
+
}
|
12088
|
+
|
12089
|
+
|
12090
|
+
/* * */
|
12091
|
+
/* LABEL */
|
12092
|
+
|
12093
|
+
.Textarea-comment-module_label__BPEkk {
|
12094
|
+
padding: 0;
|
12095
|
+
margin: 0;
|
12096
|
+
font-size: var(--font-size-md);
|
12097
|
+
font-weight: var(--font-weight-medium);
|
12098
|
+
line-height: var(--font-line-height);
|
12099
|
+
color: var(--color-system-text-100);
|
12100
|
+
}
|
12101
|
+
|
12102
|
+
/* * */
|
12103
|
+
/* DESCRIPTION */
|
12104
|
+
|
12105
|
+
.Textarea-comment-module_description__OSBdq {
|
12106
|
+
padding: 0;
|
12107
|
+
margin: 0;
|
12108
|
+
font-size: var(--font-size-sm);
|
12109
|
+
font-weight: var(--font-weight-medium);
|
12110
|
+
line-height: var(--font-line-height);
|
12111
|
+
color: var(--color-system-text-200);
|
12112
|
+
}
|
11960
12113
|
.Textarea-module_root__BiK0D,
|
11961
12114
|
.Textarea-module_wrapper__gFWT0 {
|
11962
12115
|
--input-size: 40px;
|