compote-ui 0.71.3 → 0.71.4
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.
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
)}
|
|
32
32
|
/>
|
|
33
33
|
{#if endIcon}
|
|
34
|
-
<div class="absolute inset-y-0 right-0 flex items-center justify-end
|
|
34
|
+
<div class="absolute inset-y-0 right-0 flex items-center justify-end">
|
|
35
35
|
<div class="flex h-full min-w-8 items-center justify-center">
|
|
36
36
|
{@render endIcon()}
|
|
37
37
|
</div>
|
|
@@ -111,11 +111,11 @@
|
|
|
111
111
|
{#snippet render(tree)}
|
|
112
112
|
<Button
|
|
113
113
|
variant="outline"
|
|
114
|
-
size="icon
|
|
114
|
+
size="icon"
|
|
115
115
|
title="Collapse all"
|
|
116
116
|
onclick={() => tree().collapse()}
|
|
117
117
|
>
|
|
118
|
-
<PhArrowsInSimple
|
|
118
|
+
<PhArrowsInSimple />
|
|
119
119
|
</Button>
|
|
120
120
|
{/snippet}
|
|
121
121
|
</TreeView.Context>
|
|
@@ -123,10 +123,10 @@
|
|
|
123
123
|
<Field.Root>
|
|
124
124
|
<Field.Input bind:value={searchTerm} placeholder="Search...">
|
|
125
125
|
{#snippet startIcon()}
|
|
126
|
-
<PhMagnifyingGlass
|
|
126
|
+
<PhMagnifyingGlass />
|
|
127
127
|
{/snippet}
|
|
128
128
|
{#snippet endIcon()}
|
|
129
|
-
<Button variant="ghost" size="icon" onclick={() => (searchTerm = '')}>
|
|
129
|
+
<Button variant="ghost" size="icon-sm" onclick={() => (searchTerm = '')}>
|
|
130
130
|
<PhX />
|
|
131
131
|
</Button>
|
|
132
132
|
{/snippet}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "compote-ui",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev --open",
|
|
@@ -55,43 +55,43 @@
|
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@eslint/js": "^10.0.1",
|
|
58
|
-
"@faker-js/faker": "^10.
|
|
58
|
+
"@faker-js/faker": "^10.6.0",
|
|
59
59
|
"@iconify-json/ph": "^1.2.2",
|
|
60
60
|
"@sveltejs/adapter-auto": "^7.0.0",
|
|
61
61
|
"@sveltejs/adapter-cloudflare": "^7.2.9",
|
|
62
|
-
"@sveltejs/kit": "^2.70.
|
|
62
|
+
"@sveltejs/kit": "^2.70.3",
|
|
63
63
|
"@sveltejs/package": "^2.5.8",
|
|
64
64
|
"@sveltejs/vite-plugin-svelte": "^7.3.0",
|
|
65
65
|
"@tailwindcss/vite": "^4.3.3",
|
|
66
|
-
"@tanstack/intent": "^0.3.
|
|
67
|
-
"@tanstack/svelte-table": "9.1.
|
|
66
|
+
"@tanstack/intent": "^0.3.7",
|
|
67
|
+
"@tanstack/svelte-table": "9.1.2",
|
|
68
68
|
"@types/node": "^22.20.0",
|
|
69
|
-
"eslint": "^10.
|
|
69
|
+
"eslint": "^10.9.1",
|
|
70
70
|
"eslint-config-prettier": "^10.1.8",
|
|
71
|
-
"eslint-plugin-svelte": "^3.
|
|
72
|
-
"globals": "^17.
|
|
71
|
+
"eslint-plugin-svelte": "^3.23.0",
|
|
72
|
+
"globals": "^17.11.0",
|
|
73
73
|
"prettier": "^3.9.6",
|
|
74
74
|
"prettier-plugin-svelte": "^4.1.1",
|
|
75
75
|
"prettier-plugin-tailwindcss": "^0.8.1",
|
|
76
|
-
"publint": "^0.3.
|
|
77
|
-
"svelte": "^5.56.
|
|
78
|
-
"svelte-check": "^4.7.
|
|
76
|
+
"publint": "^0.3.24",
|
|
77
|
+
"svelte": "^5.56.10",
|
|
78
|
+
"svelte-check": "^4.7.6",
|
|
79
79
|
"tailwindcss": "^4.3.3",
|
|
80
80
|
"tw-animate-css": "^1.4.0",
|
|
81
81
|
"typescript": "^6.0.3",
|
|
82
|
-
"typescript-eslint": "^8.
|
|
82
|
+
"typescript-eslint": "^8.68.0",
|
|
83
83
|
"unplugin-icons": "^23.0.1",
|
|
84
|
-
"vite": "^8.2.
|
|
84
|
+
"vite": "^8.2.2"
|
|
85
85
|
},
|
|
86
86
|
"keywords": [
|
|
87
87
|
"svelte",
|
|
88
88
|
"tanstack-intent"
|
|
89
89
|
],
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@ark-ui/svelte": "^5.
|
|
91
|
+
"@ark-ui/svelte": "^5.24.0",
|
|
92
92
|
"@fontsource-variable/nunito-sans": "^5.2.7",
|
|
93
93
|
"@internationalized/date": "^3.12.3",
|
|
94
|
-
"@tanstack/svelte-virtual": "^3.13.
|
|
94
|
+
"@tanstack/svelte-virtual": "^3.13.36",
|
|
95
95
|
"runed": "^0.37.1",
|
|
96
96
|
"svelte-tel-input": "^4.3.2",
|
|
97
97
|
"tailwind-merge": "^3.6.0",
|