@thalassic/themes 0.13.0 → 0.14.0
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/package.json +1 -1
- package/themes/thalassic/components/_chip-group.scss +8 -0
- package/themes/thalassic/components/{form/_form-item.scss → _form-item.scss} +12 -7
- package/themes/thalassic/components/chip/_chip-size.scss +4 -4
- package/themes/thalassic/components/chip/_chip.scss +5 -1
- package/themes/thalassic/components/{form → form-control}/_index.scss +0 -1
- package/themes/thalassic/components/index.scss +3 -2
- package/themes/thalassic/components/select/_select.scss +7 -0
- /package/themes/thalassic/components/{form → form-control}/_form-control-size.scss +0 -0
- /package/themes/thalassic/components/{form → form-control}/_form-control.scss +0 -0
package/package.json
CHANGED
|
@@ -14,6 +14,12 @@
|
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
+
&.tls-form-item--label-space-reserved {
|
|
18
|
+
.form-item-label {
|
|
19
|
+
min-height: var(--font-label-medium-line-height);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
17
23
|
&:not(.tls-form-item--error-space-reserved) {
|
|
18
24
|
.form-item-error {
|
|
19
25
|
min-height: auto;
|
|
@@ -24,6 +30,10 @@
|
|
|
24
30
|
}
|
|
25
31
|
}
|
|
26
32
|
|
|
33
|
+
&:has(.tls-form-control--fluid, .tls-file-uploader--fluid, .tls-form-control-group--fluid) {
|
|
34
|
+
width: 100%;
|
|
35
|
+
}
|
|
36
|
+
|
|
27
37
|
.form-item-label {
|
|
28
38
|
margin-bottom: 0.25rem;
|
|
29
39
|
|
|
@@ -35,10 +45,6 @@
|
|
|
35
45
|
line-height: var(--font-label-medium-line-height);
|
|
36
46
|
letter-spacing: var(--font-label-medium-letter-spacing);
|
|
37
47
|
|
|
38
|
-
&:has(.form-item-label__text:empty) {
|
|
39
|
-
display: none;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
48
|
&__required {
|
|
43
49
|
display: none;
|
|
44
50
|
color: var(--color-danger);
|
|
@@ -66,9 +72,8 @@
|
|
|
66
72
|
opacity: 1;
|
|
67
73
|
transform: translateY(0);
|
|
68
74
|
|
|
69
|
-
transition:
|
|
70
|
-
|
|
71
|
-
opacity var(--motion-default) var(--motion-ease-in);
|
|
75
|
+
transition: transform var(--motion-default) var(--motion-ease-in),
|
|
76
|
+
opacity var(--motion-default) var(--motion-ease-in);
|
|
72
77
|
|
|
73
78
|
@starting-style {
|
|
74
79
|
opacity: 0;
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
&.tls-chip--sm {
|
|
20
|
-
--tls-chip-height:
|
|
20
|
+
--tls-chip-height: var(--control-height-sm);
|
|
21
21
|
--tls-chip-padding-inline: var(--spacing-2);
|
|
22
22
|
|
|
23
23
|
--tls-chip-font-size: var(--font-label-small-size);
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
&.tls-chip--md {
|
|
34
|
-
--tls-chip-height:
|
|
34
|
+
--tls-chip-height: var(--control-height-md);
|
|
35
35
|
--tls-chip-padding-inline: var(--spacing-3);
|
|
36
36
|
|
|
37
37
|
--tls-chip-font-size: var(--font-label-medium-size);
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
&.tls-chip--lg {
|
|
48
|
-
--tls-chip-height:
|
|
48
|
+
--tls-chip-height: var(--control-height-lg);
|
|
49
49
|
--tls-chip-padding-inline: var(--spacing-4);
|
|
50
50
|
|
|
51
51
|
--tls-chip-font-size: var(--font-label-large-size);
|
|
@@ -57,4 +57,4 @@
|
|
|
57
57
|
--tls-chip-border-radius: var(--radius-3xl);
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
|
-
}
|
|
60
|
+
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
@forward 'pagination';
|
|
9
9
|
@forward 'multi-select';
|
|
10
10
|
@forward 'select';
|
|
11
|
-
@forward 'form';
|
|
11
|
+
@forward 'form-control';
|
|
12
12
|
@forward 'form-control-group';
|
|
13
13
|
@forward 'stepper';
|
|
14
14
|
@forward 'switch';
|
|
@@ -19,8 +19,9 @@
|
|
|
19
19
|
@forward 'checkbox';
|
|
20
20
|
@forward 'chip-group';
|
|
21
21
|
@forward 'chip-input';
|
|
22
|
-
@forward 'file-uploader';
|
|
23
22
|
@forward 'divider';
|
|
23
|
+
@forward 'file-uploader';
|
|
24
|
+
@forward 'form-item';
|
|
24
25
|
@forward 'icon';
|
|
25
26
|
@forward 'menu';
|
|
26
27
|
@forward 'password';
|
|
File without changes
|
|
File without changes
|