@dialpad/dialtone 6.2.2 → 6.3.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.
@@ -169,6 +169,18 @@
169
169
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
170
170
  }
171
171
  }
172
+
173
+ &--indeterminate,
174
+ &:indeterminate {
175
+ --check-radio--bgc: var(--check-radio--color);
176
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='%23fff'/%3E%3C/svg%3E");
177
+
178
+ &[disabled] {
179
+ --check-radio--bgc: var(--black-200);
180
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
181
+ }
182
+ }
183
+
172
184
  }
173
185
  }
174
186
 
@@ -177,7 +189,7 @@
177
189
  .d-checkbox--warning {
178
190
  --check-radio--color: var(--warning-color);
179
191
  --check-radio--bc: var(--check-radio--color);
180
-
192
+
181
193
  &:focus,
182
194
  &:checked:focus {
183
195
  box-shadow: var(--bs-focus-ring-warning);
@@ -186,7 +198,7 @@
186
198
  .d-checkbox--error {
187
199
  --check-radio--color: var(--error-color);
188
200
  --check-radio--bc: var(--check-radio--color);
189
-
201
+
190
202
  &:focus,
191
203
  &:checked:focus {
192
204
  box-shadow: var(--bs-focus-ring-error);
@@ -252,7 +264,7 @@
252
264
  &:focus,
253
265
  &:checked:focus {
254
266
  box-shadow: var(--bs-focus-ring-error), inset 0 0 0 var(--su2) var(--white);
255
- }
267
+ }
256
268
  }
257
269
 
258
270
  .d-radio--success {
@@ -262,5 +274,5 @@
262
274
  &:focus,
263
275
  &:checked:focus {
264
276
  box-shadow: var(--bs-focus-ring-success), inset 0 0 0 var(--su2) var(--white);
265
- }
277
+ }
266
278
  }
@@ -2043,6 +2043,16 @@ legend .d-label {
2043
2043
  --check-radio--bgc: var(--black-200);
2044
2044
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
2045
2045
  }
2046
+ .d-checkbox--indeterminate,
2047
+ .d-checkbox:indeterminate {
2048
+ --check-radio--bgc: var(--check-radio--color);
2049
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='%23fff'/%3E%3C/svg%3E");
2050
+ }
2051
+ .d-checkbox--indeterminate[disabled],
2052
+ .d-checkbox:indeterminate[disabled] {
2053
+ --check-radio--bgc: var(--black-200);
2054
+ background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 13H5v-2h14v2z' fill='hsl(240, 10%, 51%)'/%3E%3C/svg%3E");
2055
+ }
2046
2056
  }
2047
2057
  .d-checkbox--warning {
2048
2058
  --check-radio--color: var(--warning-color);