@ardium-ui/ui 3.1.1 → 3.2.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 (75) hide show
  1. package/esm2022/lib/inputs/_simple-input-base.mjs +3 -9
  2. package/esm2022/lib/inputs/input/input.component.mjs +4 -4
  3. package/esm2022/lib/inputs/input/input.directives.mjs +5 -5
  4. package/esm2022/lib/inputs/input/input.module.mjs +7 -7
  5. package/esm2022/lib/inputs/simple-input/simple-input.component.mjs +9 -3
  6. package/fesm2022/ardium-ui-ui.mjs +78 -78
  7. package/fesm2022/ardium-ui-ui.mjs.map +1 -1
  8. package/lib/inputs/_simple-input-base.d.ts +4 -5
  9. package/lib/inputs/input/input.component.d.ts +2 -2
  10. package/lib/inputs/input/input.directives.d.ts +3 -3
  11. package/lib/inputs/input/input.module.d.ts +1 -1
  12. package/lib/inputs/simple-input/simple-input.component.d.ts +5 -1
  13. package/package.json +1 -1
  14. package/prebuilt-themes/default/buttons/button.css.map +1 -1
  15. package/prebuilt-themes/default/buttons/fab.css.map +1 -1
  16. package/prebuilt-themes/default/buttons/icon-button.css.map +1 -1
  17. package/prebuilt-themes/default/calendar.css +1 -1
  18. package/prebuilt-themes/default/calendar.css.map +1 -1
  19. package/prebuilt-themes/default/checkbox-list.css.map +1 -1
  20. package/prebuilt-themes/default/checkbox.css.map +1 -1
  21. package/prebuilt-themes/default/chips.css.map +1 -1
  22. package/prebuilt-themes/default/form-field-frame.css.map +1 -1
  23. package/prebuilt-themes/default/inputs/color-input.css.map +1 -1
  24. package/prebuilt-themes/default/inputs/file-input.css.map +1 -1
  25. package/prebuilt-themes/default/inputs/hex-input.css.map +1 -1
  26. package/prebuilt-themes/default/inputs/input.css.map +1 -1
  27. package/prebuilt-themes/default/inputs/number-input.css.map +1 -1
  28. package/prebuilt-themes/default/inputs/search-bar.css.map +1 -1
  29. package/prebuilt-themes/default/inputs/simple-input.css.map +1 -1
  30. package/prebuilt-themes/default/radio.css.map +1 -1
  31. package/prebuilt-themes/default/segment.css.map +1 -1
  32. package/prebuilt-themes/default/select.css.map +1 -1
  33. package/prebuilt-themes/default/slide-toggle.css.map +1 -1
  34. package/prebuilt-themes/default/slider.css.map +1 -1
  35. package/prebuilt-themes/default/stars.css.map +1 -1
  36. package/prebuilt-themes/default/statebox.css.map +1 -1
  37. package/prebuilt-themes/default/tabber.css.map +1 -1
  38. package/prebuilt-themes/default/table.css +1 -1
  39. package/themes/default/_clear-button.scss +6 -6
  40. package/themes/default/_coloring.scss +110 -110
  41. package/themes/default/_dropdown-arrow.scss +4 -4
  42. package/themes/default/_mixins.scss +6 -12
  43. package/themes/default/buttons/_button-mixins.scss +10 -12
  44. package/themes/default/calendar.scss +9 -9
  45. package/themes/default/card.scss +6 -6
  46. package/themes/default/checkbox-list.scss +2 -2
  47. package/themes/default/checkbox.scss +3 -3
  48. package/themes/default/chips.scss +6 -6
  49. package/themes/default/color-display.scss +2 -2
  50. package/themes/default/color-picker.scss +6 -6
  51. package/themes/default/divider.scss +3 -3
  52. package/themes/default/dropdown-panel.scss +4 -4
  53. package/themes/default/form-field-frame.scss +6 -6
  54. package/themes/default/inputs/_shared.scss +1 -1
  55. package/themes/default/inputs/digit-input.scss +3 -3
  56. package/themes/default/inputs/file-input.scss +2 -2
  57. package/themes/default/inputs/hex-input.scss +2 -2
  58. package/themes/default/inputs/input.scss +4 -4
  59. package/themes/default/inputs/number-input.scss +3 -3
  60. package/themes/default/inputs/password-input.scss +2 -2
  61. package/themes/default/kbd-shortcut.scss +2 -2
  62. package/themes/default/kbd.scss +5 -5
  63. package/themes/default/modal.scss +5 -5
  64. package/themes/default/progress-bar.scss +3 -3
  65. package/themes/default/progress-circle.scss +2 -2
  66. package/themes/default/radio.scss +5 -5
  67. package/themes/default/segment.scss +7 -7
  68. package/themes/default/select.scss +10 -10
  69. package/themes/default/slide-toggle.scss +9 -9
  70. package/themes/default/slider.scss +8 -8
  71. package/themes/default/snackbar.scss +3 -3
  72. package/themes/default/stars.scss +2 -2
  73. package/themes/default/statebox.scss +2 -2
  74. package/themes/default/tabber.scss +3 -3
  75. package/themes/default/table.scss +19 -19
@@ -1,5 +1,5 @@
1
1
  @use './mixins' as defaultMixins;
2
- @import '../variables';
2
+ @use '../variables' as ARD;
3
3
 
4
4
  .ard-form-field-frame {
5
5
  box-sizing: border-box;
@@ -44,14 +44,14 @@
44
44
  @include defaultMixins.formVariants();
45
45
  background: var(--ard-appearance-background);
46
46
  border: var(--ard-appearance-border);
47
- transition: border-color 0.15s $timing-fn;
47
+ transition: border-color 0.15s ARD.$timing-fn;
48
48
 
49
49
  .ard-form-field-overlay {
50
- background: $overlay;
50
+ background: ARD.$overlay;
51
51
  opacity: 0;
52
52
  transition:
53
- opacity 0.15s $timing-fn,
54
- background-color 0.15s $timing-fn;
53
+ opacity 0.15s ARD.$timing-fn,
54
+ background-color 0.15s ARD.$timing-fn;
55
55
  }
56
56
 
57
57
  &:hover {
@@ -63,7 +63,7 @@
63
63
  .ard-form-field-overlay {
64
64
  opacity: 6%;
65
65
  }
66
- border-color: $border-dark;
66
+ border-color: ARD.$border-dark;
67
67
  }
68
68
  }
69
69
  .ard-disabled .ard-form-field-frame {
@@ -1,4 +1,4 @@
1
- @import '../../variables';
1
+ @use '../../variables' as ARD;
2
2
 
3
3
  /**
4
4
  * Should be applied to the first element in the component's template.
@@ -1,10 +1,10 @@
1
1
  @use '../coloring' as CM;
2
- @import '../../variables';
2
+ @use '../../variables' as ARD;
3
3
 
4
4
  ard-digit-input {
5
5
  font-family: 'Roboto', sans-serif;
6
6
  font-weight: 500;
7
- color: $text;
7
+ color: ARD.$text;
8
8
  }
9
9
 
10
10
  .ard-digit-input,
@@ -26,7 +26,7 @@ ard-digit-input {
26
26
  width: 2.0625em;
27
27
  box-sizing: border-box;
28
28
  text-align: center;
29
- caret-color: $text3;
29
+ caret-color: ARD.$text3;
30
30
 
31
31
  &:not(.ard-digit-input__input-empty) {
32
32
  caret-color: transparent;
@@ -2,7 +2,7 @@
2
2
  @use '../mixins' as defaultMixins;
3
3
  @use '../clear-button' as CB;
4
4
  @use '../coloring' as CM;
5
- @import '../../variables';
5
+ @use '../../variables' as ARD;
6
6
 
7
7
  .ard-file-input-form-field-frame {
8
8
  .ard-form-field-overlay {
@@ -50,7 +50,7 @@
50
50
 
51
51
  .ard-focus-overlay {
52
52
  @include defaultMixins.focus-overlay();
53
- background: $overlay;
53
+ background: ARD.$overlay;
54
54
  border-radius: 9999px;
55
55
  }
56
56
  &:hover {
@@ -1,7 +1,7 @@
1
1
  @use './shared' as inputMixin;
2
2
  @use '../mixins' as defaultMixins;
3
3
  @use '../clear-button' as CB;
4
- @import '../../variables';
4
+ @use '../../variables' as ARD;
5
5
 
6
6
  .ard-hex-input {
7
7
  @include inputMixin.genericInput();
@@ -19,7 +19,7 @@
19
19
 
20
20
  .ard-hash-container {
21
21
  margin-right: -0.5rem;
22
- color: $text3;
22
+ color: ARD.$text3;
23
23
  opacity: 70%;
24
24
  user-select: none;
25
25
  font-family: monospace;
@@ -1,7 +1,7 @@
1
1
  @use './shared' as inputMixin;
2
2
  @use '../mixins' as defaultMixins;
3
3
  @use '../clear-button' as CB;
4
- @import '../../variables';
4
+ @use '../../variables' as ARD;
5
5
 
6
6
  .ard-input {
7
7
  @include inputMixin.genericInput();
@@ -20,16 +20,16 @@
20
20
  .ard-option {
21
21
  padding: 0.375rem 0.625rem;
22
22
  font-size: 1rem;
23
- color: $text2;
23
+ color: ARD.$text2;
24
24
  cursor: pointer;
25
25
 
26
26
  &.ard-option-highlighted {
27
- background: $darken-overlay-light;
27
+ background: ARD.$darken-overlay-light;
28
28
  }
29
29
 
30
30
  &.ard-option-selected {
31
31
  font-weight: 500;
32
- background: $darken-overlay-medium;
32
+ background: ARD.$darken-overlay-medium;
33
33
  }
34
34
 
35
35
  &.ard-option-disabled {
@@ -1,6 +1,6 @@
1
1
  @use './shared' as inputMixin;
2
2
  @use '../mixins' as defaultMixins;
3
- @import '../../variables';
3
+ @use '../../variables' as ARD;
4
4
 
5
5
  .ard-number-input {
6
6
  @include inputMixin.genericInput();
@@ -24,7 +24,7 @@
24
24
  height: 100%;
25
25
  aspect-ratio: 1;
26
26
  padding: 0;
27
- border-color: $border;
27
+ border-color: ARD.$border;
28
28
  display: flex;
29
29
  justify-content: center;
30
30
  margin: 0;
@@ -116,6 +116,6 @@
116
116
  opacity: 0;
117
117
  }
118
118
 
119
- background: $bg-f;
119
+ background: ARD.$bg-f;
120
120
  }
121
121
  }
@@ -1,7 +1,7 @@
1
1
  @use './shared' as inputMixin;
2
2
  @use '../mixins' as defaultMixins;
3
3
  @use '../clear-button' as CB;
4
- @import '../../variables';
4
+ @use '../../variables' as ARD;
5
5
 
6
6
  .ard-password-input {
7
7
  @include inputMixin.genericInput();
@@ -28,7 +28,7 @@
28
28
  outline: none;
29
29
  cursor: pointer;
30
30
 
31
- transition: background-color 0.2s $timing-fn;
31
+ transition: background-color 0.2s ARD.$timing-fn;
32
32
 
33
33
  &:hover {
34
34
  background: rgba(0, 0, 0, 4%);
@@ -1,8 +1,8 @@
1
- @import '../variables';
1
+ @use '../variables' as ARD;
2
2
 
3
3
  .ard-kbd-shortcut {
4
4
  font-family: monospace;
5
- color: $text2;
5
+ color: ARD.$text2;
6
6
 
7
7
  > span {
8
8
  font-size: 0.9em;
@@ -1,20 +1,20 @@
1
- @import '../variables';
1
+ @use '../variables' as ARD;
2
2
 
3
3
  .ard-kbd {
4
4
  border-radius: 0.2em;
5
5
  font-family: monospace;
6
6
  font-size: 0.9em;
7
7
  margin: 0 0.125em;
8
- color: $text2;
8
+ color: ARD.$text2;
9
9
 
10
10
  //! appearance
11
11
  &.ard-appearance-outlined,
12
12
  &.ard-appearance-filled {
13
- border: 1px solid $detail-ultralight;
14
- box-shadow: inset 0 -1px 0 $darken-overlay;
13
+ border: 1px solid ARD.$detail-ultralight;
14
+ box-shadow: inset 0 -1px 0 ARD.$darken-overlay;
15
15
  padding: 0.15em 0.35em;
16
16
  }
17
17
  &.ard-appearance-filled {
18
- background: $bg-d;
18
+ background: ARD.$bg-d;
19
19
  }
20
20
  }
@@ -1,4 +1,4 @@
1
- @import '../variables';
1
+ @use '../variables' as ARD;
2
2
 
3
3
  .ard-modal {
4
4
  position: fixed;
@@ -10,11 +10,11 @@
10
10
  place-items: center;
11
11
 
12
12
  &.ard-modal-backdrop {
13
- background: $darken-overlay-strong;
13
+ background: ARD.$darken-overlay-strong;
14
14
  }
15
15
  .ard-modal-panel {
16
16
  padding: 1.25rem 3rem 1.5rem 3rem;
17
- background: $bg;
17
+ background: ARD.$bg;
18
18
  max-width: calc(100vw - 4rem);
19
19
  position: relative;
20
20
  display: flex;
@@ -44,7 +44,7 @@
44
44
 
45
45
  .ard-modal-heading-text {
46
46
  font-size: 1.25rem;
47
- color: $text;
47
+ color: ARD.$text;
48
48
  font-weight: 500;
49
49
  font-family: Roboto;
50
50
  }
@@ -57,7 +57,7 @@
57
57
  //! appearances
58
58
  &.ard-appearance-raised {
59
59
  .ard-modal-panel {
60
- box-shadow: $simple-shadow2;
60
+ box-shadow: ARD.$simple-shadow2;
61
61
  }
62
62
  }
63
63
  //! variants
@@ -1,5 +1,5 @@
1
1
  @use './coloring' as CM;
2
- @import '../variables';
2
+ @use '../variables' as ARD;
3
3
 
4
4
  .ard-progress-bar {
5
5
  @include CM.typeColors();
@@ -47,7 +47,7 @@
47
47
  &.ard-progress-bar__mode-determinate,
48
48
  &.ard-progress-bar__mode-buffer {
49
49
  .ard-progress-bar__overlay {
50
- transition: width 0.1s $timing-fn;
50
+ transition: width 0.1s ARD.$timing-fn;
51
51
  }
52
52
  }
53
53
  &.ard-progress-bar__mode-indeterminate,
@@ -100,7 +100,7 @@
100
100
  width: var(--ard-_progress-bar-buffer, 0);
101
101
  top: 0;
102
102
  bottom: 0;
103
- transition: width 0.1s $timing-fn;
103
+ transition: width 0.1s ARD.$timing-fn;
104
104
  }
105
105
  }
106
106
 
@@ -1,5 +1,5 @@
1
1
  @use './coloring' as coloringMixins;
2
- @import '../variables';
2
+ @use '../variables' as ARD;
3
3
 
4
4
  .ard-progress-circle {
5
5
  @include coloringMixins.typeColors;
@@ -15,7 +15,7 @@
15
15
  }
16
16
  &.ard-appearance-colorless {
17
17
  .ard-progress-circle-background {
18
- background: $darken-overlay-medium;
18
+ background: ARD.$darken-overlay-medium;
19
19
  }
20
20
  }
21
21
  &.ard-appearance-colored {
@@ -1,6 +1,6 @@
1
1
  @use './coloring' as CM;
2
2
  @use './mixins' as GM;
3
- @import '../variables';
3
+ @use '../variables' as ARD;
4
4
 
5
5
  ard-radio-group {
6
6
  display: flex;
@@ -34,9 +34,9 @@ ard-radio {
34
34
  right: 0;
35
35
  top: 0;
36
36
  bottom: 0;
37
- border: 2px solid $detail;
37
+ border: 2px solid ARD.$detail;
38
38
  border-radius: 9999px;
39
- transition: border-color 0.2s $timing-fn;
39
+ transition: border-color 0.2s ARD.$timing-fn;
40
40
  }
41
41
  > .ard-radio-inner-circle {
42
42
  position: absolute;
@@ -47,12 +47,12 @@ ard-radio {
47
47
  background: var(--ard-cmpcl--bg-colored);
48
48
  border-radius: 9999px;
49
49
  transform: scale(0);
50
- transition: transform 0.2s $timing-fn;
50
+ transition: transform 0.2s ARD.$timing-fn;
51
51
  }
52
52
  > .ard-focus-overlay {
53
53
  @include GM.focus-overlay(0.375em);
54
54
  border-radius: 9999px;
55
- background-color: $overlay;
55
+ background-color: ARD.$overlay;
56
56
 
57
57
  transition:
58
58
  opacity 0.2s ease,
@@ -1,6 +1,6 @@
1
1
  @use './mixins' as defaultMixins;
2
2
  @use './coloring' as coloringMixins;
3
- @import '../variables';
3
+ @use '../variables' as ARD;
4
4
 
5
5
  .ard-segment-container {
6
6
  @include coloringMixins.typeColors();
@@ -42,10 +42,10 @@
42
42
  position: relative;
43
43
  cursor: pointer;
44
44
  transition:
45
- color 0.1s $timing-fn,
46
- opacity 0.1s $timing-fn,
47
- border-color 0.1s $timing-fn,
48
- background-color 0.1s $timing-fn;
45
+ color 0.1s ARD.$timing-fn,
46
+ opacity 0.1s ARD.$timing-fn,
47
+ border-color 0.1s ARD.$timing-fn,
48
+ background-color 0.1s ARD.$timing-fn;
49
49
  outline: none;
50
50
  display: flex;
51
51
  align-items: center;
@@ -123,11 +123,11 @@
123
123
  }
124
124
  &.ard-appearance-outlined,
125
125
  &.ard-appearance-outlined-strong {
126
- background: $bg;
126
+ background: ARD.$bg;
127
127
  padding: 0;
128
128
 
129
129
  .ard-segment-option {
130
- border: 1px solid $border-light;
130
+ border: 1px solid ARD.$border-light;
131
131
 
132
132
  &.ard-option-selected {
133
133
  border-color: var(--ard-cmpcl--content);
@@ -1,6 +1,6 @@
1
1
  @use './clear-button' as CB;
2
2
  @use './mixins' as defaultMixins;
3
- @import '../variables';
3
+ @use '../variables' as ARD;
4
4
 
5
5
  .ard-select {
6
6
  box-sizing: border-box;
@@ -35,7 +35,7 @@
35
35
  .ard-placeholder {
36
36
  font: inherit;
37
37
  position: absolute;
38
- color: $text3;
38
+ color: ARD.$text3;
39
39
  white-space: nowrap;
40
40
  overflow: hidden;
41
41
  text-overflow: ellipsis;
@@ -130,10 +130,10 @@
130
130
  cursor: pointer;
131
131
 
132
132
  .ard-dropdown-arrow {
133
- border: calc($dropdown-button-size / 2) solid transparent;
133
+ border: calc(ARD.$dropdown-button-size / 2) solid transparent;
134
134
  position: relative;
135
- border-bottom-color: $detail;
136
- border-right-color: $detail;
135
+ border-bottom-color: ARD.$detail;
136
+ border-right-color: ARD.$detail;
137
137
  transform: rotate(45deg) translate(-17.67771%, -17.67771%);
138
138
  }
139
139
  }
@@ -148,7 +148,7 @@
148
148
  padding-right: 0.625em;
149
149
 
150
150
  .ard-dropdown-arrow-wrapper .ard-dropdown-arrow {
151
- border-width: calc($dropdown-button-size / 2.4);
151
+ border-width: calc(ARD.$dropdown-button-size / 2.4);
152
152
  }
153
153
  }
154
154
  }
@@ -184,16 +184,16 @@
184
184
 
185
185
  .ard-option {
186
186
  padding: 0.375em 0.625em;
187
- color: $text2;
187
+ color: ARD.$text2;
188
188
  cursor: pointer;
189
189
 
190
190
  &.ard-option-highlighted {
191
- background: $darken-overlay-light;
191
+ background: ARD.$darken-overlay-light;
192
192
  }
193
193
 
194
194
  &.ard-option-selected {
195
195
  font-weight: 500;
196
- background: $darken-overlay-medium;
196
+ background: ARD.$darken-overlay-medium;
197
197
  }
198
198
 
199
199
  &.ard-option-disabled {
@@ -206,7 +206,7 @@
206
206
  width: calc(100% - 1.25em);
207
207
  margin: 0.375em 0.625em;
208
208
  border: none;
209
- border-bottom: 1px solid $darken-overlay-strong;
209
+ border-bottom: 1px solid ARD.$darken-overlay-strong;
210
210
  }
211
211
 
212
212
  .ard-optgroup:first-child > hr.ard-divider {
@@ -1,6 +1,6 @@
1
1
  @use './mixins' as defaultMixins;
2
2
  @use './coloring' as coloringMixins;
3
- @import '../variables';
3
+ @use '../variables' as ARD;
4
4
 
5
5
  .ard-slide-toggle {
6
6
  @include coloringMixins.typeColors();
@@ -27,7 +27,7 @@
27
27
  font-size: inherit;
28
28
  border-radius: 999px;
29
29
  overflow: hidden;
30
- background: $bg;
30
+ background: ARD.$bg;
31
31
 
32
32
  .ard-slide-toggle-track-overlay {
33
33
  position: absolute;
@@ -35,7 +35,7 @@
35
35
  right: 0;
36
36
  bottom: 0;
37
37
  top: 0;
38
- background: $overlay;
38
+ background: ARD.$overlay;
39
39
  opacity: 20%;
40
40
  }
41
41
  }
@@ -44,15 +44,15 @@
44
44
  height: 1.25em;
45
45
  font-size: inherit;
46
46
  border-radius: 999px;
47
- background: $bg-f;
47
+ background: ARD.$bg-f;
48
48
  position: absolute;
49
49
  top: 0;
50
50
  left: 0;
51
- box-shadow: $simple-shadow;
51
+ box-shadow: ARD.$simple-shadow;
52
52
  overflow: hidden;
53
53
 
54
54
  transition:
55
- box-shadow 0.28s $timing-fn,
55
+ box-shadow 0.28s ARD.$timing-fn,
56
56
  left 0.1s ease,
57
57
  background-color 0.1s ease,
58
58
  transform 0.1s ease;
@@ -64,7 +64,7 @@
64
64
  .ard-slide-toggle-icon {
65
65
  @include defaultMixins.icon(0, 600);
66
66
  font-size: 0.95em;
67
- color: $text;
67
+ color: ARD.$text;
68
68
  position: absolute;
69
69
  left: 50%;
70
70
  top: 50%;
@@ -82,7 +82,7 @@
82
82
  &:hover,
83
83
  &:focus {
84
84
  .ard-slide-toggle-handle {
85
- box-shadow: $simple-shadow2;
85
+ box-shadow: ARD.$simple-shadow2;
86
86
 
87
87
  .ard-focus-overlay {
88
88
  opacity: 4%;
@@ -91,7 +91,7 @@
91
91
  }
92
92
  &:active {
93
93
  .ard-slide-toggle-handle {
94
- box-shadow: $simple-shadow3;
94
+ box-shadow: ARD.$simple-shadow3;
95
95
 
96
96
  .ard-focus-overlay {
97
97
  opacity: 12%;
@@ -1,7 +1,7 @@
1
1
  @use './mixins' as defaultMixins;
2
2
  @use './coloring' as coloringMixins;
3
3
  @use 'sass:math';
4
- @import '../variables';
4
+ @use '../variables' as ARD;
5
5
 
6
6
  .ard-slider-container-master,
7
7
  .ard-range-slider-container-master {
@@ -39,7 +39,7 @@
39
39
  .ard-slider-track {
40
40
  width: 100%;
41
41
  height: 0.25em;
42
- background: $bg;
42
+ background: ARD.$bg;
43
43
 
44
44
  .ard-slider-track-overlay {
45
45
  position: absolute;
@@ -74,7 +74,7 @@
74
74
  width: 0.125em;
75
75
  height: 0.125em;
76
76
  border-radius: 9999px;
77
- background: $text;
77
+ background: ARD.$text;
78
78
  opacity: 30%;
79
79
  transform: translate(-50%, -50%);
80
80
  }
@@ -100,7 +100,7 @@
100
100
  transition:
101
101
  box-shadow 0.15s ease,
102
102
  left var(--_ard-slider-transition) ease;
103
- box-shadow: $simple-shadow;
103
+ box-shadow: ARD.$simple-shadow;
104
104
 
105
105
  // cursor: grab;
106
106
  // &.ard-grabbed {
@@ -124,7 +124,7 @@
124
124
  }
125
125
  }
126
126
  &:focus {
127
- box-shadow: $simple-shadow2;
127
+ box-shadow: ARD.$simple-shadow2;
128
128
  .ard-focus-overlay {
129
129
  opacity: 15%;
130
130
  }
@@ -153,9 +153,9 @@
153
153
  z-index: 2;
154
154
  }
155
155
  .ard-slider-tooltip {
156
- --ard-background: #{$text3};
156
+ --ard-background: #{ARD.$text3};
157
157
  background: var(--ard-background);
158
- color: $text2-alt;
158
+ color: ARD.$text2-alt;
159
159
  font-size: 0.875em;
160
160
  border-radius: 0.375em;
161
161
  height: 2em;
@@ -168,7 +168,7 @@
168
168
  user-select: none;
169
169
 
170
170
  transform: scale(0);
171
- transition: transform 0.1s $timing-fn;
171
+ transition: transform 0.1s ARD.$timing-fn;
172
172
 
173
173
  &::before {
174
174
  content: '';
@@ -1,5 +1,5 @@
1
1
  @use './coloring' as C;
2
- @import '../variables';
2
+ @use '../variables' as ARD;
3
3
 
4
4
  .ard-snackbar {
5
5
  @include C.typeColors();
@@ -14,7 +14,7 @@
14
14
  gap: 0.625rem;
15
15
  border-radius: 6px;
16
16
  transform-origin: bottom center;
17
- background-color: $bg-f-alt;
17
+ background-color: ARD.$bg-f-alt;
18
18
  padding: 0 0.5rem 0 1rem;
19
19
 
20
20
  opacity: 100%;
@@ -27,7 +27,7 @@
27
27
  gap: 0.625rem;
28
28
  align-items: center;
29
29
  flex-grow: 1;
30
- color: $text2-alt;
30
+ color: ARD.$text2-alt;
31
31
 
32
32
  ard-icon {
33
33
  color: var(--ard-cmpcl--content-light);
@@ -1,6 +1,6 @@
1
1
  @use './mixins' as defaultMixins;
2
2
  @use './coloring' as coloringMixins;
3
- @import '../variables';
3
+ @use '../variables' as ARD;
4
4
 
5
5
  .ard-star,
6
6
  .ard-star-button,
@@ -10,7 +10,7 @@
10
10
  color: var(--ard-cmpcl--bg-colored);
11
11
 
12
12
  &.ard-color-star {
13
- color: $star;
13
+ color: ARD.$star;
14
14
  }
15
15
  }
16
16
  .ard-star {
@@ -1,6 +1,6 @@
1
1
  @use './mixins' as defaultMixins;
2
2
  @use './coloring' as coloringMixins;
3
- @import '../variables';
3
+ @use '../variables' as ARD;
4
4
 
5
5
  .ard-statebox {
6
6
  @include coloringMixins.typeColors();
@@ -35,7 +35,7 @@
35
35
  .ard-statebox-icon,
36
36
  .ard-statebox-frame::after {
37
37
  @include defaultMixins.icon;
38
- transition: opacity 0.2s $timing-fn;
38
+ transition: opacity 0.2s ARD.$timing-fn;
39
39
  color: currentColor;
40
40
  position: absolute;
41
41
  left: 50%;
@@ -1,6 +1,6 @@
1
1
  @use './coloring' as CM;
2
2
  @use './mixins' as M;
3
- @import '../variables';
3
+ @use '../variables' as ARD;
4
4
 
5
5
  ard-tabber {
6
6
  max-width: 100%;
@@ -19,7 +19,7 @@ ard-tabber {
19
19
  max-width: 100%;
20
20
  display: flex;
21
21
  flex-wrap: wrap;
22
- border-bottom: 1px solid $detail-ultralight;
22
+ border-bottom: 1px solid ARD.$detail-ultralight;
23
23
 
24
24
  &.ard-tab-align-left {
25
25
  justify-content: left;
@@ -52,7 +52,7 @@ ard-tabber {
52
52
 
53
53
  .ard-focus-overlay {
54
54
  @include M.focus-overlay();
55
- background: $bg-alt;
55
+ background: ARD.$bg-alt;
56
56
  }
57
57
 
58
58
  &:hover,