@sveltia/ui 0.25.2 → 0.25.3
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.
|
@@ -104,8 +104,10 @@
|
|
|
104
104
|
{#snippet startIcon()}
|
|
105
105
|
{#if checkIcon}
|
|
106
106
|
{@render checkIcon()}
|
|
107
|
-
{:else}
|
|
108
|
-
<Icon name=
|
|
107
|
+
{:else if indeterminate}
|
|
108
|
+
<Icon name="remove" />
|
|
109
|
+
{:else if checked}
|
|
110
|
+
<Icon name="check" />
|
|
109
111
|
{/if}
|
|
110
112
|
{/snippet}
|
|
111
113
|
</Button>
|
|
@@ -170,9 +172,6 @@
|
|
|
170
172
|
color: var(--sui-checkbox-foreground-color-checked, var(--sui-primary-accent-color-inverted));
|
|
171
173
|
background-color: var(--sui-checkbox-background-color-checked, var(--sui-primary-accent-color));
|
|
172
174
|
}
|
|
173
|
-
.checkbox :global(button[aria-checked="false"]) {
|
|
174
|
-
color: transparent;
|
|
175
|
-
}
|
|
176
175
|
.checkbox :global(button[aria-invalid="true"]) {
|
|
177
176
|
border-color: var(--sui-error-border-color);
|
|
178
177
|
color: var(--sui-error-foreground-color);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sveltia/ui",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"svelte": "^5.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@playwright/test": "^1.
|
|
49
|
+
"@playwright/test": "^1.51.0",
|
|
50
50
|
"@sveltejs/adapter-auto": "^4.0.0",
|
|
51
51
|
"@sveltejs/kit": "^2.18.0",
|
|
52
52
|
"@sveltejs/package": "^2.3.10",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"stylelint-config-recommended-scss": "^14.1.0",
|
|
68
68
|
"stylelint-scss": "^6.11.1",
|
|
69
69
|
"svelte": "5.22.5",
|
|
70
|
-
"svelte-check": "^4.1.
|
|
70
|
+
"svelte-check": "^4.1.5",
|
|
71
71
|
"svelte-i18n": "^4.0.1",
|
|
72
72
|
"svelte-preprocess": "^6.0.3",
|
|
73
73
|
"tslib": "^2.8.1",
|
|
74
|
-
"vite": "^6.2.
|
|
75
|
-
"vitest": "^3.0.
|
|
74
|
+
"vite": "^6.2.1",
|
|
75
|
+
"vitest": "^3.0.8"
|
|
76
76
|
},
|
|
77
77
|
"exports": {
|
|
78
78
|
".": {
|