@tmlmobilidade/ui 20250827.2358.56 → 20250828.1000.31
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 +48 -33
- package/dist/index.css.map +1 -1
- package/dist/src/components/inputs/PillsInput/index.js +1 -4
- package/dist/src/components/inputs/PillsInput/index.js.map +1 -1
- package/dist/src/components/inputs/PillsInput/styles.module.css.js +1 -1
- package/dist/src/styles/mantine/Accordion.module.css.js +1 -1
- package/dist/src/styles/mantine/PillsInput.module.css.js +4 -0
- package/dist/src/styles/mantine/PillsInput.module.css.js.map +1 -0
- package/dist/src/styles/theme.js +2 -1
- package/dist/src/styles/theme.js.map +1 -1
- package/dist/styles-no-reset.css +48 -33
- package/dist/styles.css +48 -33
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -2181,23 +2181,6 @@
|
|
2181
2181
|
/* * */
|
2182
2182
|
/* PILLS INPUT */
|
2183
2183
|
|
2184
|
-
.styles-module_pillsInput__Xev6a {
|
2185
|
-
display: flex;
|
2186
|
-
flex-direction: column;
|
2187
|
-
width: 100%;
|
2188
|
-
padding: 0;
|
2189
|
-
border: none;
|
2190
|
-
}
|
2191
|
-
|
2192
|
-
.styles-module_pillsInputInput__zjur3 {
|
2193
|
-
display: flex;
|
2194
|
-
flex-direction: column;
|
2195
|
-
gap: var(--size-spacing-sm);
|
2196
|
-
width: 100%;
|
2197
|
-
padding: 0;
|
2198
|
-
border: none;
|
2199
|
-
}
|
2200
|
-
|
2201
2184
|
.styles-module_pillsInputPillGroup__-eDFg {
|
2202
2185
|
display: flex;
|
2203
2186
|
flex-wrap: wrap;
|
@@ -2221,7 +2204,7 @@
|
|
2221
2204
|
background-color: var(--color-system-background-200);
|
2222
2205
|
border-radius: var(--border-radius-xs);
|
2223
2206
|
box-shadow: 1px 2px 3px 1px rgb(0 0 0 / 15%);
|
2224
|
-
|
2207
|
+
|
2225
2208
|
& * {
|
2226
2209
|
user-select: none;
|
2227
2210
|
}
|
@@ -11006,7 +10989,7 @@ figure {
|
|
11006
10989
|
|
11007
10990
|
/* SYSTEM / BORDER */
|
11008
10991
|
--color-system-border-100: #E1E1E6;
|
11009
|
-
--color-system-border-200: #
|
10992
|
+
--color-system-border-200: #D3D3D5;
|
11010
10993
|
|
11011
10994
|
/* SYSTEM / TEXT */
|
11012
10995
|
--color-system-text-100: #000;
|
@@ -11017,20 +11000,18 @@ figure {
|
|
11017
11000
|
/* STATUS / SUCCESS */
|
11018
11001
|
--color-status-success-primary: #00B932;
|
11019
11002
|
--color-status-success-contrast: #E6FAEB;
|
11003
|
+
--color-status-success-shadow: #d20f1f40;
|
11020
11004
|
|
11021
11005
|
/* STATUS / WARNING */
|
11022
11006
|
--color-status-warning-primary: #F09600;
|
11023
11007
|
--color-status-warning-contrast: #FFFAF0;
|
11008
|
+
--color-status-warning-shadow: #d20f1f40;
|
11024
11009
|
|
11025
11010
|
/* STATUS / DANGER */
|
11026
11011
|
--color-status-danger-primary: #D20F1E;
|
11027
11012
|
--color-status-danger-contrast: #FFEBEB;
|
11028
11013
|
--color-status-danger-shadow: #d20f1f40;
|
11029
11014
|
|
11030
|
-
/* STATUS / INFO */
|
11031
|
-
--color-status-info-primary: #054b8c;
|
11032
|
-
--color-status-info-contrast: #e6f0fa;
|
11033
|
-
|
11034
11015
|
}
|
11035
11016
|
|
11036
11017
|
:root[data-mode="dark"] {
|
@@ -11051,22 +11032,20 @@ figure {
|
|
11051
11032
|
|
11052
11033
|
|
11053
11034
|
/* STATUS / SUCCESS */
|
11054
|
-
--color-status-success-primary: #
|
11055
|
-
--color-status-success-contrast: #
|
11035
|
+
--color-status-success-primary: #329150;
|
11036
|
+
--color-status-success-contrast: #052314;
|
11037
|
+
--color-status-success-shadow: #d20f1f40;
|
11056
11038
|
|
11057
11039
|
/* STATUS / WARNING */
|
11058
|
-
--color-status-warning-primary: #
|
11059
|
-
--color-status-warning-contrast: #
|
11040
|
+
--color-status-warning-primary: #be781e;
|
11041
|
+
--color-status-warning-contrast: #2d1e05;
|
11042
|
+
--color-status-warning-shadow: #d20f1f40;
|
11060
11043
|
|
11061
11044
|
/* STATUS / DANGER */
|
11062
|
-
--color-status-danger-primary: #
|
11063
|
-
--color-status-danger-contrast: #
|
11045
|
+
--color-status-danger-primary: #c83c3c;
|
11046
|
+
--color-status-danger-contrast: #2d0505;
|
11064
11047
|
--color-status-danger-shadow: #d20f1f40;
|
11065
11048
|
|
11066
|
-
/* STATUS / INFO */
|
11067
|
-
--color-status-info-primary: #054b8c;
|
11068
|
-
--color-status-info-contrast: #e6f0fa;
|
11069
|
-
|
11070
11049
|
}
|
11071
11050
|
/* * *
|
11072
11051
|
* WHAT IS THIS?
|
@@ -11268,6 +11247,13 @@ figure {
|
|
11268
11247
|
--color-contrast: var(--theme-street-color-contrast);
|
11269
11248
|
--color-shadow: var(--theme-street-color-shadow);
|
11270
11249
|
}
|
11250
|
+
/* * */
|
11251
|
+
/* ITEM */
|
11252
|
+
|
11253
|
+
.Accordion-module_item__ho8V0 {
|
11254
|
+
border-bottom-color: var(--color-system-border-100);
|
11255
|
+
}
|
11256
|
+
|
11271
11257
|
/* * */
|
11272
11258
|
/* LABEL */
|
11273
11259
|
|
@@ -11457,6 +11443,7 @@ figure {
|
|
11457
11443
|
.Checkbox-module_input__Xw22Q {
|
11458
11444
|
cursor: pointer;
|
11459
11445
|
outline: 2px solid var(--color-system-text-300);
|
11446
|
+
background-color: var(--color-system-background-100);
|
11460
11447
|
border-radius: var(--border-radius-sm);
|
11461
11448
|
}
|
11462
11449
|
|
@@ -11526,6 +11513,34 @@ figure {
|
|
11526
11513
|
border: none;
|
11527
11514
|
border-radius: unset;
|
11528
11515
|
}
|
11516
|
+
/* * */
|
11517
|
+
/* root */
|
11518
|
+
|
11519
|
+
.PillsInput-module_root__msPuT {
|
11520
|
+
--input-size: 40px;
|
11521
|
+
--input-height: 40px;
|
11522
|
+
display: flex;
|
11523
|
+
flex-direction: column;
|
11524
|
+
width: 100%;
|
11525
|
+
min-width: 200px;
|
11526
|
+
padding: 0;
|
11527
|
+
overflow: visible;
|
11528
|
+
border: none;
|
11529
|
+
transition: width 300ms ease-in-out;
|
11530
|
+
}
|
11531
|
+
|
11532
|
+
/* * */
|
11533
|
+
/* INPUT */
|
11534
|
+
|
11535
|
+
.PillsInput-module_input__Th-0F {
|
11536
|
+
display: flex;
|
11537
|
+
flex-direction: column;
|
11538
|
+
gap: var(--size-spacing-sm);
|
11539
|
+
width: 100%;
|
11540
|
+
padding: 0;
|
11541
|
+
border: none;
|
11542
|
+
}
|
11543
|
+
|
11529
11544
|
/* * */
|
11530
11545
|
/* DROPDOWN */
|
11531
11546
|
|