@kayord/ui 0.12.9 → 0.12.12
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/dist/components/ui/context-menu/context-menu-item.svelte.d.ts +1 -0
- package/dist/components/ui/dropdown-menu/dropdown-menu-item.svelte.d.ts +1 -0
- package/dist/components/ui/dropdown-menu/dropdown-menu-sub-trigger.svelte.d.ts +1 -0
- package/dist/components/ui/menubar/menubar-item.svelte.d.ts +1 -0
- package/dist/components/ui/select/select-scroll-down-button.svelte +1 -1
- package/dist/components/ui/table/table-footer.svelte +1 -1
- package/dist/components/ui/tooltip/tooltip-content.svelte +1 -1
- package/package.json +9 -9
|
@@ -2,6 +2,7 @@ declare const ContextMenuItem: import("svelte").Component<Omit<{
|
|
|
2
2
|
disabled?: boolean;
|
|
3
3
|
textValue?: string;
|
|
4
4
|
onSelect?: (event: Event) => void;
|
|
5
|
+
closeOnSelect?: boolean;
|
|
5
6
|
}, "child" | "children"> & {
|
|
6
7
|
child?: import("svelte").Snippet<[{
|
|
7
8
|
props: Record<string, unknown>;
|
|
@@ -2,6 +2,7 @@ declare const DropdownMenuItem: import("svelte").Component<Omit<{
|
|
|
2
2
|
disabled?: boolean;
|
|
3
3
|
textValue?: string;
|
|
4
4
|
onSelect?: (event: Event) => void;
|
|
5
|
+
closeOnSelect?: boolean;
|
|
5
6
|
}, "child" | "children"> & {
|
|
6
7
|
child?: import("svelte").Snippet<[{
|
|
7
8
|
props: Record<string, unknown>;
|
|
@@ -2,6 +2,7 @@ declare const DropdownMenuSubTrigger: import("svelte").Component<Omit<{
|
|
|
2
2
|
disabled?: boolean;
|
|
3
3
|
textValue?: string;
|
|
4
4
|
onSelect?: (event: Event) => void;
|
|
5
|
+
closeOnSelect?: boolean;
|
|
5
6
|
}, "child" | "children"> & {
|
|
6
7
|
child?: import("svelte").Snippet<[{
|
|
7
8
|
props: Record<string, unknown>;
|
|
@@ -2,6 +2,7 @@ declare const MenubarItem: import("svelte").Component<Omit<{
|
|
|
2
2
|
disabled?: boolean;
|
|
3
3
|
textValue?: string;
|
|
4
4
|
onSelect?: (event: Event) => void;
|
|
5
|
+
closeOnSelect?: boolean;
|
|
5
6
|
}, "child" | "children"> & {
|
|
6
7
|
child?: import("svelte").Snippet<[{
|
|
7
8
|
props: Record<string, unknown>;
|
|
@@ -11,6 +11,6 @@
|
|
|
11
11
|
}: WithElementRef<HTMLAttributes<HTMLTableSectionElement>> = $props();
|
|
12
12
|
</script>
|
|
13
13
|
|
|
14
|
-
<tfoot bind:this={ref} class={cn("bg-
|
|
14
|
+
<tfoot bind:this={ref} class={cn("bg-muted/50 font-medium text-primary-foreground", className)} {...restProps}>
|
|
15
15
|
{@render children?.()}
|
|
16
16
|
</tfoot>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
bind:ref
|
|
15
15
|
{sideOffset}
|
|
16
16
|
class={cn(
|
|
17
|
-
"z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md",
|
|
17
|
+
"animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md",
|
|
18
18
|
className
|
|
19
19
|
)}
|
|
20
20
|
{...restProps}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kayord/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.12",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"@tanstack/table-core": "^8.20.5",
|
|
30
30
|
"lucide-svelte": ">= 0.400.0 < 1.0.0",
|
|
31
|
-
"svelte": "^
|
|
31
|
+
"svelte": "^5.0.0",
|
|
32
32
|
"sveltekit-superforms": "^2.20.0",
|
|
33
33
|
"zod": "^3.23.8"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@internationalized/date": "^3.5.6",
|
|
37
|
-
"bits-ui": "1.0.0-next.
|
|
37
|
+
"bits-ui": "1.0.0-next.39",
|
|
38
38
|
"clsx": "^2.1.1",
|
|
39
39
|
"embla-carousel-svelte": "8.3.1",
|
|
40
40
|
"formsnap": "2.0.0-next.1",
|
|
@@ -47,28 +47,28 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@sveltejs/adapter-auto": "^3.3.1",
|
|
50
|
-
"@sveltejs/kit": "^2.7.
|
|
50
|
+
"@sveltejs/kit": "^2.7.4",
|
|
51
51
|
"@sveltejs/package": "^2.3.7",
|
|
52
52
|
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
|
53
|
-
"@testing-library/jest-dom": "^6.6.
|
|
53
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
54
54
|
"@testing-library/svelte": "^5.2.4",
|
|
55
55
|
"@typescript-eslint/eslint-plugin": "^8.12.2",
|
|
56
56
|
"@typescript-eslint/parser": "^8.12.2",
|
|
57
57
|
"autoprefixer": "^10.4.20",
|
|
58
|
-
"eslint": "^9.
|
|
58
|
+
"eslint": "^9.14.0",
|
|
59
59
|
"eslint-config-prettier": "^9.1.0",
|
|
60
60
|
"eslint-plugin-svelte": "^2.46.0",
|
|
61
|
-
"happy-dom": "^15.
|
|
61
|
+
"happy-dom": "^15.8.0",
|
|
62
62
|
"lucide-svelte": "^0.454.0",
|
|
63
63
|
"postcss": "^8.4.47",
|
|
64
64
|
"prettier": "^3.3.3",
|
|
65
65
|
"prettier-plugin-svelte": "^3.2.7",
|
|
66
66
|
"prettier-plugin-tailwindcss": "^0.6.8",
|
|
67
67
|
"publint": "^0.2.12",
|
|
68
|
-
"svelte": "^5.1.
|
|
68
|
+
"svelte": "^5.1.9",
|
|
69
69
|
"svelte-check": "^4.0.5",
|
|
70
70
|
"tailwindcss": "^3.4.14",
|
|
71
|
-
"tslib": "^2.8.
|
|
71
|
+
"tslib": "^2.8.1",
|
|
72
72
|
"typescript": "^5.6.3",
|
|
73
73
|
"vite": "^5.4.10",
|
|
74
74
|
"vitest": "^2.1.4",
|