@kayord/ui 0.12.0 → 0.12.2
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.
|
@@ -13,6 +13,7 @@ export { Checkbox } from "./checkbox/index.js";
|
|
|
13
13
|
export * as Collapsible from "./collapsible/index.js";
|
|
14
14
|
export * as Command from "./command/index.js";
|
|
15
15
|
export * as ContextMenu from "./context-menu/index.js";
|
|
16
|
+
export { FlexRender, renderComponent, renderSnippet, createSvelteTable, createSvelteTable as createTable, } from "./data-table/index.js";
|
|
16
17
|
export * as Dialog from "./dialog/index.js";
|
|
17
18
|
export * as Drawer from "./drawer/index.js";
|
|
18
19
|
export * as DropdownMenu from "./dropdown-menu/index.js";
|
|
@@ -13,6 +13,7 @@ export { Checkbox } from "./checkbox/index.js";
|
|
|
13
13
|
export * as Collapsible from "./collapsible/index.js";
|
|
14
14
|
export * as Command from "./command/index.js";
|
|
15
15
|
export * as ContextMenu from "./context-menu/index.js";
|
|
16
|
+
export { FlexRender, renderComponent, renderSnippet, createSvelteTable, createSvelteTable as createTable, } from "./data-table/index.js";
|
|
16
17
|
export * as Dialog from "./dialog/index.js";
|
|
17
18
|
export * as Drawer from "./drawer/index.js";
|
|
18
19
|
export * as DropdownMenu from "./dropdown-menu/index.js";
|
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.2",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"lucide-svelte": ">= 0.400.0 < 1.0.0",
|
|
30
30
|
"svelte": "^4.0.0 || ^5.0.0",
|
|
31
31
|
"sveltekit-superforms": "^2.15.1",
|
|
32
|
-
"zod": "^3.23.8"
|
|
32
|
+
"zod": "^3.23.8",
|
|
33
|
+
"@tanstack/table-core": "^8.20.5"
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
35
|
-
"@tanstack/table-core": "^8.20.5",
|
|
36
36
|
"clsx": "^2.1.1",
|
|
37
37
|
"tailwind-merge": "^2.5.4",
|
|
38
38
|
"tailwind-variants": "^0.2.1"
|