@300codes/design-system 1.2.17 → 1.2.18
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
CHANGED
|
@@ -132,7 +132,7 @@ const model = defineModel<boolean>({ required: true });
|
|
|
132
132
|
border-radius: var(--_radius);
|
|
133
133
|
background-color: var(--input-bg, #ffffff);
|
|
134
134
|
border: var(--checkboxInput-border-width, 1.5px) solid var(--input-border-color, #d6dde1);
|
|
135
|
-
outline: var(--
|
|
135
|
+
outline: var(--checkboxInput-outline-width, 4px) solid transparent;
|
|
136
136
|
outline-offset: var(--checkboxInput-outline-offset, -2px);
|
|
137
137
|
}
|
|
138
138
|
|
|
@@ -125,7 +125,7 @@ const model = defineModel<string>({ required: true });
|
|
|
125
125
|
border-radius: 50%;
|
|
126
126
|
background-color: var(--input-bg, #ffffff);
|
|
127
127
|
border: var(--radioInput-border-width, 1.5px) solid var(--input-border-color, #d6dde1);
|
|
128
|
-
outline: var(--
|
|
128
|
+
outline: var(--radioInput-outline-width, 4px) solid transparent;
|
|
129
129
|
outline-offset: var(--radioInput-outline-offset, -2px);
|
|
130
130
|
}
|
|
131
131
|
|
package/src/css/tokens.css
CHANGED
|
@@ -293,6 +293,7 @@
|
|
|
293
293
|
--checkboxInput-border-color-disabled: #89979f;
|
|
294
294
|
--checkboxInput-checked-disabled-bg: #89979f;
|
|
295
295
|
--checkboxInput-outline-offset: -2px;
|
|
296
|
+
--checkboxInput-outline-width: 4px;
|
|
296
297
|
--checkboxInput-outline: theme(--color-primary);
|
|
297
298
|
|
|
298
299
|
/* md (default) */
|
|
@@ -329,6 +330,7 @@
|
|
|
329
330
|
--radioInput-checked-disabled-dot: #89979f;
|
|
330
331
|
--radioInput-border-width: 1.5px;
|
|
331
332
|
--radioInput-outline-offset: -2px;
|
|
333
|
+
--radioInput-outline-width: 4px;
|
|
332
334
|
--radioInput-outline: theme(--color-primary);
|
|
333
335
|
|
|
334
336
|
/* md (default) */
|