@thalassic/themes 22.5.1 → 22.7.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.
Files changed (39) hide show
  1. package/package.json +1 -1
  2. package/themes/thalassic/components/_checkbox.scss +9 -7
  3. package/themes/thalassic/components/_icon.scss +27 -7
  4. package/themes/thalassic/components/badge/_badge-color.scss +6 -0
  5. package/themes/thalassic/components/badge/_badge-position.scss +21 -0
  6. package/themes/thalassic/components/badge/_badge-size.scss +22 -0
  7. package/themes/thalassic/components/badge/_badge.scss +66 -0
  8. package/themes/thalassic/components/badge/_index.scss +4 -0
  9. package/themes/thalassic/components/button/_button-color.scss +4 -34
  10. package/themes/thalassic/components/button/_button-variant.scss +2 -1
  11. package/themes/thalassic/components/calendar/_calendar.scss +3 -3
  12. package/themes/thalassic/components/chip/_chip-color.scss +4 -35
  13. package/themes/thalassic/components/chip/_chip-control.scss +12 -35
  14. package/themes/thalassic/components/chip/_chip-variant.scss +5 -0
  15. package/themes/thalassic/components/date-time-picker/_mixins.scss +3 -3
  16. package/themes/thalassic/components/date-time-picker/_time-picker.scss +3 -3
  17. package/themes/thalassic/components/dialog/_dialog.scss +1 -1
  18. package/themes/thalassic/components/drawer/_drawer.scss +1 -1
  19. package/themes/thalassic/components/image-compare/_image-compare-orientation.scss +47 -0
  20. package/themes/thalassic/components/image-compare/_image-compare.scss +115 -0
  21. package/themes/thalassic/components/image-compare/_index.scss +2 -0
  22. package/themes/thalassic/components/index.scss +4 -0
  23. package/themes/thalassic/components/multi-select/_multi-select-size.scss +6 -6
  24. package/themes/thalassic/components/multi-select/_multi-select.scss +3 -0
  25. package/themes/thalassic/components/pagination/_pagination.scss +5 -0
  26. package/themes/thalassic/components/select/_select-size.scss +6 -6
  27. package/themes/thalassic/components/select/_select.scss +3 -0
  28. package/themes/thalassic/components/splitter/_index.scss +2 -0
  29. package/themes/thalassic/components/splitter/_splitter-orientation.scss +61 -0
  30. package/themes/thalassic/components/splitter/_splitter.scss +96 -0
  31. package/themes/thalassic/components/tabs/_tabs-orientation.scss +11 -0
  32. package/themes/thalassic/components/tabs/_tabs.scss +14 -0
  33. package/themes/thalassic/components/toast/_index.scss +2 -0
  34. package/themes/thalassic/components/toast/_toast-color.scss +43 -0
  35. package/themes/thalassic/components/toast/_toast.scss +226 -0
  36. package/themes/thalassic/components/toggle-group/_toggle-group-color.scss +4 -34
  37. package/themes/thalassic/components/tooltip/_tooltip-color.scss +3 -34
  38. package/themes/thalassic/mixins/_color-variants.scss +39 -0
  39. package/themes/thalassic/mixins/_index.scss +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thalassic/themes",
3
- "version": "22.5.1",
3
+ "version": "22.7.0",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^22.0.0",
@@ -29,10 +29,9 @@
29
29
 
30
30
  background-color: var(--color-surface);
31
31
 
32
- transition:
33
- box-shadow var(--motion-fast) var(--motion-ease-in-out),
34
- border-color var(--motion-fast) var(--motion-ease-in-out),
35
- background-color var(--motion-fast) var(--motion-ease-in-out);
32
+ transition: box-shadow var(--motion-fast) var(--motion-ease-in-out),
33
+ border-color var(--motion-fast) var(--motion-ease-in-out),
34
+ background-color var(--motion-fast) var(--motion-ease-in-out);
36
35
 
37
36
  &:checked {
38
37
  background-color: var(--color-primary);
@@ -47,6 +46,10 @@
47
46
  position: absolute;
48
47
  inset: 0;
49
48
 
49
+ width: calc(var(--tls-checkbox-size) * 0.75);
50
+ height: calc(var(--tls-checkbox-size) * 0.75);
51
+ margin: auto;
52
+
50
53
  opacity: 0;
51
54
  scale: 0;
52
55
 
@@ -54,9 +57,8 @@
54
57
 
55
58
  color: var(--tls-checkbox-checked-icon-color);
56
59
 
57
- transition:
58
- scale var(--motion-default) var(--motion-ease-bounce),
59
- opacity var(--motion-fast) var(--motion-ease-in-out);
60
+ transition: scale var(--motion-default) var(--motion-ease-bounce),
61
+ opacity var(--motion-fast) var(--motion-ease-in-out);
60
62
  }
61
63
 
62
64
  // Checked & Indeterminate
@@ -1,15 +1,35 @@
1
- .tls-icon {
2
- width: auto;
3
- height: auto;
4
-
5
- min-width: auto;
6
- min-height: auto;
1
+ // Default 1em box at zero specificity, so any consumer size class (e.g.
2
+ // .tls-select__chevron) overrides it without needing a compound selector.
3
+ :where(.tls-icon) {
4
+ width: 1em;
5
+ height: 1em;
6
+ }
7
7
 
8
- display: inline-block;
8
+ .tls-icon {
9
+ display: inline-flex;
9
10
 
10
11
  color: inherit;
11
12
 
12
13
  .tls-svg-icon {
14
+ width: 100%;
15
+ height: 100%;
16
+
17
+ display: flex;
18
+
13
19
  color: inherit;
20
+
21
+ svg {
22
+ width: 100%;
23
+ height: 100%;
24
+
25
+ display: block;
26
+ }
27
+ }
28
+
29
+ .tls-img-icon {
30
+ width: 100%;
31
+ height: 100%;
32
+
33
+ object-fit: contain;
14
34
  }
15
35
  }
@@ -0,0 +1,6 @@
1
+ @use '../../mixins' as mixins;
2
+
3
+ .tls-badge {
4
+ @include mixins.color-variants('tls-badge', $tonal: true);
5
+ @include mixins.tonal-swap('tls-badge');
6
+ }
@@ -0,0 +1,21 @@
1
+ .tls-badge {
2
+ &--top-start &__indicator {
3
+ inset-block-start: var(--tls-badge-offset);
4
+ inset-inline-start: var(--tls-badge-offset);
5
+ }
6
+
7
+ &--top-end &__indicator {
8
+ inset-block-start: var(--tls-badge-offset);
9
+ inset-inline-end: var(--tls-badge-offset);
10
+ }
11
+
12
+ &--bottom-start &__indicator {
13
+ inset-block-end: var(--tls-badge-offset);
14
+ inset-inline-start: var(--tls-badge-offset);
15
+ }
16
+
17
+ &--bottom-end &__indicator {
18
+ inset-block-end: var(--tls-badge-offset);
19
+ inset-inline-end: var(--tls-badge-offset);
20
+ }
21
+ }
@@ -0,0 +1,22 @@
1
+ .tls-badge {
2
+ &.tls-badge--sm {
3
+ --tls-badge-size: 16px;
4
+ --tls-badge-dot-size: 6px;
5
+ --tls-badge-padding-inline: var(--spacing-1);
6
+ --tls-badge-font-size: var(--font-label-small-size);
7
+ }
8
+
9
+ &.tls-badge--md {
10
+ --tls-badge-size: 20px;
11
+ --tls-badge-dot-size: 8px;
12
+ --tls-badge-padding-inline: var(--spacing-2);
13
+ --tls-badge-font-size: var(--font-label-small-size);
14
+ }
15
+
16
+ &.tls-badge--lg {
17
+ --tls-badge-size: 24px;
18
+ --tls-badge-dot-size: 10px;
19
+ --tls-badge-padding-inline: var(--spacing-2);
20
+ --tls-badge-font-size: var(--font-label-medium-size);
21
+ }
22
+ }
@@ -0,0 +1,66 @@
1
+ @use '../../mixins' as mixins;
2
+
3
+ @keyframes tls-badge-pop {
4
+ from {
5
+ opacity: 0;
6
+ transform: scale(0);
7
+ }
8
+
9
+ to {
10
+ opacity: 1;
11
+ transform: scale(1);
12
+ }
13
+ }
14
+
15
+ .tls-badge {
16
+ position: relative;
17
+
18
+ display: inline-flex;
19
+
20
+ &__indicator {
21
+ --tls-badge-offset: calc(var(--tls-badge-size) / -2);
22
+
23
+ position: absolute;
24
+ z-index: 1;
25
+
26
+ min-width: var(--tls-badge-size);
27
+ height: var(--tls-badge-size);
28
+
29
+ padding-inline: var(--tls-badge-padding-inline);
30
+
31
+ display: inline-flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+
35
+ border-radius: var(--radius-xl);
36
+
37
+ background-color: var(--tls-badge-color);
38
+
39
+ font-size: var(--tls-badge-font-size);
40
+ font-weight: 600;
41
+ line-height: 1;
42
+ color: var(--tls-badge-on-color);
43
+
44
+ pointer-events: none;
45
+
46
+ @include mixins.motion(essential) {
47
+ &--enter {
48
+ animation: tls-badge-pop var(--motion-instant) var(--motion-ease-out) both;
49
+ }
50
+
51
+ &--leave {
52
+ animation: tls-badge-pop var(--motion-instant) var(--motion-ease-in) reverse both;
53
+ }
54
+ }
55
+ }
56
+
57
+ &--dot &__indicator {
58
+ --tls-badge-size: var(--tls-badge-dot-size);
59
+
60
+ padding-inline: 0;
61
+ }
62
+
63
+ &--inset &__indicator {
64
+ --tls-badge-offset: 0px;
65
+ }
66
+ }
@@ -0,0 +1,4 @@
1
+ @forward "badge";
2
+ @forward "badge-color";
3
+ @forward "badge-position";
4
+ @forward "badge-size";
@@ -1,38 +1,8 @@
1
- .tls-button {
2
- &.tls-button--primary {
3
- --tls-button-on-color: var(--color-on-primary);
4
- --tls-button-color: var(--color-primary);
5
- }
6
-
7
- &.tls-button--secondary {
8
- --tls-button-on-color: var(--color-on-secondary);
9
- --tls-button-color: var(--color-secondary);
10
- }
11
-
12
- &.tls-button--tertiary {
13
- --tls-button-on-color: var(--color-on-tertiary);
14
- --tls-button-color: var(--color-tertiary);
15
- }
16
-
17
- &.tls-button--success {
18
- --tls-button-on-color: var(--color-on-success);
19
- --tls-button-color: var(--color-success);
20
- }
21
-
22
- &.tls-button--info {
23
- --tls-button-on-color: var(--color-on-info);
24
- --tls-button-color: var(--color-info);
25
- }
1
+ @use '../../mixins' as mixins;
26
2
 
27
- &.tls-button--warning {
28
- --tls-button-on-color: var(--color-on-warning);
29
- --tls-button-color: var(--color-warning);
30
- }
31
-
32
- &.tls-button--danger {
33
- --tls-button-on-color: var(--color-on-danger);
34
- --tls-button-color: var(--color-danger);
35
- }
3
+ .tls-button {
4
+ @include mixins.color-variants('tls-button', $tonal: true);
5
+ @include mixins.tonal-swap('tls-button');
36
6
 
37
7
  &.tls-button--disabled {
38
8
  --tls-button-on-color: var(--color-on-surface-variant);
@@ -13,7 +13,8 @@
13
13
  }
14
14
 
15
15
  // Variants
16
- &--filled {
16
+ &--filled,
17
+ &--tonal {
17
18
  color: var(--tls-button-on-color);
18
19
 
19
20
  &::before {
@@ -18,9 +18,9 @@
18
18
  }
19
19
 
20
20
  &__nav-button {
21
- svg {
22
- width: 8px;
23
- height: 14px;
21
+ .tls-icon {
22
+ width: 18px;
23
+ height: 18px;
24
24
  }
25
25
  }
26
26
 
@@ -1,36 +1,5 @@
1
- .tls-chip {
2
- &.tls-chip--primary {
3
- --tls-chip-color: var(--color-primary);
4
- --tls-chip-on-color: var(--color-on-primary);
5
- }
6
-
7
- &.tls-chip--secondary {
8
- --tls-chip-color: var(--color-secondary);
9
- --tls-chip-on-color: var(--color-on-secondary);
10
- }
11
-
12
- &.tls-chip--tertiary {
13
- --tls-chip-color: var(--color-tertiary);
14
- --tls-chip-on-color: var(--color-on-tertiary);
15
- }
16
-
17
- &.tls-chip--success {
18
- --tls-chip-color: var(--color-success);
19
- --tls-chip-on-color: var(--color-on-success);
20
- }
1
+ @use '../../mixins' as mixins;
21
2
 
22
- &.tls-chip--info {
23
- --tls-chip-color: var(--color-info);
24
- --tls-chip-on-color: var(--color-on-info);
25
- }
26
-
27
- &.tls-chip--warning {
28
- --tls-chip-color: var(--color-warning);
29
- --tls-chip-on-color: var(--color-on-warning);
30
- }
31
-
32
- &.tls-chip--danger {
33
- --tls-chip-color: var(--color-danger);
34
- --tls-chip-on-color: var(--color-on-danger);
35
- }
36
- }
3
+ .tls-chip {
4
+ @include mixins.color-variants('tls-chip', $tonal: true);
5
+ }
@@ -1,3 +1,5 @@
1
+ @use '../../mixins' as mixins;
2
+
1
3
  .tls-chip {
2
4
  &.tls-chip--control {
3
5
  cursor: pointer;
@@ -9,49 +11,24 @@
9
11
  border-color: var(--tls-chip-color);
10
12
  }
11
13
 
12
- &.tls-chip--checked-primary {
13
- --tls-chip-color: var(--color-primary);
14
- --tls-chip-on-color: var(--color-on-primary);
15
- }
16
-
17
- &.tls-chip--checked-secondary {
18
- --tls-chip-color: var(--color-secondary);
19
- --tls-chip-on-color: var(--color-on-secondary);
20
- }
21
-
22
- &.tls-chip--checked-tertiary {
23
- --tls-chip-color: var(--color-tertiary);
24
- --tls-chip-on-color: var(--color-on-tertiary);
25
- }
26
-
27
- &.tls-chip--checked-success {
28
- --tls-chip-color: var(--color-success);
29
- --tls-chip-on-color: var(--color-on-success);
30
- }
31
-
32
- &.tls-chip--checked-info {
33
- --tls-chip-color: var(--color-info);
34
- --tls-chip-on-color: var(--color-on-info);
35
- }
36
-
37
- &.tls-chip--checked-warning {
38
- --tls-chip-color: var(--color-warning);
39
- --tls-chip-on-color: var(--color-on-warning);
40
- }
41
-
42
- &.tls-chip--checked-danger {
43
- --tls-chip-color: var(--color-danger);
44
- --tls-chip-on-color: var(--color-on-danger);
45
- }
14
+ @include mixins.color-variants('tls-chip', $tonal: true, $modifier: 'checked-');
46
15
 
47
16
  // Checked variant overrides (higher specificity than the base variant so the
48
- // checked appearance wins regardless of stylesheet order).
17
+ // checked appearance wins regardless of stylesheet order). Each reads its pair
18
+ // directly rather than swapping a shared token, so the base variant never leaks
19
+ // across the checked boundary.
49
20
  &.tls-chip--checked.tls-chip--checked-filled {
50
21
  background-color: var(--tls-chip-color);
51
22
  color: var(--tls-chip-on-color);
52
23
  border-color: var(--tls-chip-color);
53
24
  }
54
25
 
26
+ &.tls-chip--checked.tls-chip--checked-tonal {
27
+ background-color: var(--tls-chip-color-container);
28
+ color: var(--tls-chip-on-color-container);
29
+ border-color: var(--tls-chip-color-container);
30
+ }
31
+
55
32
  &.tls-chip--checked.tls-chip--checked-outlined {
56
33
  background-color: transparent;
57
34
  color: var(--tls-chip-color);
@@ -4,6 +4,11 @@
4
4
  color: var(--tls-chip-on-color);
5
5
  }
6
6
 
7
+ &.tls-chip--tonal {
8
+ background-color: var(--tls-chip-color-container);
9
+ color: var(--tls-chip-on-color-container);
10
+ }
11
+
7
12
  &.tls-chip--outlined {
8
13
  background-color: transparent;
9
14
  color: var(--tls-chip-color);
@@ -88,9 +88,9 @@
88
88
 
89
89
  cursor: pointer;
90
90
 
91
- svg {
92
- width: 8px;
93
- height: 14px;
91
+ .tls-icon {
92
+ width: 18px;
93
+ height: 18px;
94
94
  }
95
95
 
96
96
  &:hover {
@@ -43,9 +43,9 @@
43
43
  cursor: pointer;
44
44
  color: var(--color-on-surface-variant);
45
45
 
46
- svg {
47
- width: 14px;
48
- height: 8px;
46
+ .tls-icon {
47
+ width: 18px;
48
+ height: 18px;
49
49
  }
50
50
 
51
51
  &:hover {
@@ -51,7 +51,7 @@
51
51
  color: var(--color-on-surface);
52
52
  }
53
53
 
54
- svg {
54
+ .tls-icon {
55
55
  width: 100%;
56
56
  height: 100%;
57
57
  }
@@ -87,7 +87,7 @@
87
87
  color: var(--color-on-surface);
88
88
  }
89
89
 
90
- svg {
90
+ .tls-icon {
91
91
  width: 100%;
92
92
  height: 100%;
93
93
  }
@@ -0,0 +1,47 @@
1
+ .tls-image-compare {
2
+ // Horizontal: the divider is vertical and wipes along the inline axis. The
3
+ // inline slide mirrors in RTL, where the layout-start edge sits on the
4
+ // opposite physical side.
5
+ &--horizontal {
6
+ // The whole component is grabbable — a pointer-down anywhere drags the
7
+ // divider — so the resize cursor lives on the host, not just the handle.
8
+ cursor: ew-resize;
9
+
10
+ > .tls-image-compare__handle {
11
+ inset-block: 0;
12
+
13
+ transform: translateX(-50%);
14
+
15
+ :root[dir='rtl'] & {
16
+ transform: translateX(50%);
17
+ }
18
+
19
+ // Vertical divider line down the centre of the handle.
20
+ &::before {
21
+ inset-block: 0;
22
+ inset-inline-start: calc(50% - var(--tls-image-compare-line-thickness) / 2);
23
+
24
+ width: var(--tls-image-compare-line-thickness);
25
+ }
26
+ }
27
+ }
28
+
29
+ // Vertical: the divider is horizontal and wipes along the block axis.
30
+ &--vertical {
31
+ cursor: ns-resize;
32
+
33
+ > .tls-image-compare__handle {
34
+ inset-inline: 0;
35
+
36
+ transform: translateY(-50%);
37
+
38
+ // Horizontal divider line across the centre of the handle.
39
+ &::before {
40
+ inset-inline: 0;
41
+ inset-block-start: calc(50% - var(--tls-image-compare-line-thickness) / 2);
42
+
43
+ height: var(--tls-image-compare-line-thickness);
44
+ }
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,115 @@
1
+ @use '../../mixins' as mixins;
2
+
3
+ .tls-image-compare {
4
+ // Divider line running the full length of the component.
5
+ --tls-image-compare-line-color: var(--color-surface);
6
+ --tls-image-compare-line-thickness: 2px;
7
+
8
+ // Circular grab handle centred on the divider.
9
+ --tls-image-compare-handle-size: var(--spacing-8);
10
+ --tls-image-compare-handle-color: var(--color-surface);
11
+ --tls-image-compare-handle-border: var(--tls-image-compare-line-thickness);
12
+
13
+ position: relative;
14
+
15
+ width: 100%;
16
+
17
+ display: block;
18
+
19
+ overflow: hidden;
20
+
21
+ // A pointer-down anywhere drags the divider, so suppress native pan/zoom
22
+ // gestures across the whole component (not just the handle) — otherwise a
23
+ // touch drag over the image scrolls the page and cancels the pointer.
24
+ touch-action: none;
25
+
26
+ &--dragging {
27
+ user-select: none;
28
+ }
29
+
30
+ &__layer {
31
+ // Projected media never captures the pointer or gets dragged as an image.
32
+ > * {
33
+ display: block;
34
+
35
+ user-select: none;
36
+ -webkit-user-drag: none;
37
+ }
38
+ }
39
+
40
+ // The `after` layer sits in normal flow: its media's natural aspect ratio
41
+ // gives the whole component its height.
42
+ &__after {
43
+ > * {
44
+ width: 100%;
45
+ height: auto;
46
+ }
47
+ }
48
+
49
+ // The `before` layer overlays the `after` layer at the same box and is clipped
50
+ // to the divider band; its media is stretched to cover that box so the two
51
+ // images register pixel-for-pixel.
52
+ &__before {
53
+ position: absolute;
54
+ inset: 0;
55
+
56
+ > * {
57
+ width: 100%;
58
+ height: 100%;
59
+
60
+ object-fit: cover;
61
+ }
62
+ }
63
+
64
+ &__handle {
65
+ position: absolute;
66
+ z-index: 1;
67
+
68
+ display: flex;
69
+ align-items: center;
70
+ justify-content: center;
71
+
72
+ background-color: transparent;
73
+
74
+ &:focus-visible {
75
+ outline: none;
76
+
77
+ .tls-image-compare__grip {
78
+ border-color: var(--color-primary);
79
+ }
80
+ }
81
+
82
+ &:hover {
83
+ .tls-image-compare__grip {
84
+ border-color: var(--color-primary);
85
+ }
86
+ }
87
+
88
+ // Divider line. Axis-specific sizing/insets live in the orientation partial.
89
+ &::before {
90
+ content: '';
91
+
92
+ position: absolute;
93
+
94
+ background-color: var(--tls-image-compare-line-color);
95
+ }
96
+ }
97
+
98
+ &__grip {
99
+ // Lifts the handle above the divider line in paint order.
100
+ position: relative;
101
+
102
+ width: var(--tls-image-compare-handle-size);
103
+ height: var(--tls-image-compare-handle-size);
104
+
105
+ border: var(--tls-image-compare-handle-border) solid transparent;
106
+ border-radius: 50%;
107
+
108
+ background-color: var(--tls-image-compare-handle-color);
109
+ box-shadow: var(--shadow-sm);
110
+
111
+ @include mixins.motion(essential) {
112
+ transition: border-color var(--motion-fast);
113
+ }
114
+ }
115
+ }
@@ -0,0 +1,2 @@
1
+ @forward 'image-compare';
2
+ @forward 'image-compare-orientation';
@@ -1,4 +1,5 @@
1
1
  @forward 'alert';
2
+ @forward 'badge';
2
3
  @forward 'button';
3
4
  @forward 'calendar';
4
5
  @forward 'chart';
@@ -16,6 +17,7 @@
16
17
  @forward 'switch';
17
18
  @forward 'tabs';
18
19
  @forward 'textarea';
20
+ @forward 'toast';
19
21
  @forward 'tooltip';
20
22
 
21
23
  @forward 'checkbox';
@@ -26,6 +28,7 @@
26
28
  @forward 'file-input';
27
29
  @forward 'form-item';
28
30
  @forward 'icon';
31
+ @forward 'image-compare';
29
32
  @forward 'menu';
30
33
  @forward 'odometer';
31
34
  @forward 'password';
@@ -34,5 +37,6 @@
34
37
  @forward 'popover';
35
38
  @forward 'radio-button';
36
39
  @forward 'skeleton';
40
+ @forward 'splitter';
37
41
  @forward 'table';
38
42
  @forward 'toggle-group';
@@ -1,16 +1,16 @@
1
1
  .tls-multi-select {
2
2
  &.tls-form-control--sm {
3
- --tls-multi-select-icon-size: 0.625rem;
4
- --tls-multi-select-clear-size: 0.625rem;
3
+ --tls-multi-select-icon-size: 0.875rem;
4
+ --tls-multi-select-clear-size: 0.875rem;
5
5
  }
6
6
 
7
7
  &.tls-form-control--md {
8
- --tls-multi-select-icon-size: 0.75rem;
9
- --tls-multi-select-clear-size: 0.75rem;
8
+ --tls-multi-select-icon-size: 1rem;
9
+ --tls-multi-select-clear-size: 1rem;
10
10
  }
11
11
 
12
12
  &.tls-form-control--lg {
13
- --tls-multi-select-icon-size: 0.875rem;
14
- --tls-multi-select-clear-size: 0.875rem;
13
+ --tls-multi-select-icon-size: 1.125rem;
14
+ --tls-multi-select-clear-size: 1.125rem;
15
15
  }
16
16
  }
@@ -67,6 +67,9 @@
67
67
  }
68
68
 
69
69
  .tls-multi-select__chevron {
70
+ width: 100%;
71
+ height: 100%;
72
+
70
73
  transition: transform var(--motion-fast) var(--motion-ease-in-out);
71
74
  }
72
75
  }