nuance-ui 0.1.26 → 0.1.28

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.
Files changed (29) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/app-shell/app-shell.d.vue.ts +19 -9
  3. package/dist/runtime/components/app-shell/app-shell.vue +7 -20
  4. package/dist/runtime/components/app-shell/app-shell.vue.d.ts +19 -9
  5. package/dist/runtime/components/app-shell/context.d.ts +5 -5
  6. package/dist/runtime/components/checkbox/checkbox.d.vue.ts +3 -4
  7. package/dist/runtime/components/checkbox/checkbox.vue +4 -6
  8. package/dist/runtime/components/checkbox/checkbox.vue.d.ts +3 -4
  9. package/dist/runtime/components/index.d.ts +1 -0
  10. package/dist/runtime/components/index.js +1 -0
  11. package/dist/runtime/components/table/_ui/table-row.d.vue.ts +35 -0
  12. package/dist/runtime/components/table/_ui/table-row.vue +74 -0
  13. package/dist/runtime/components/table/_ui/table-row.vue.d.ts +35 -0
  14. package/dist/runtime/components/table/index.d.ts +1 -0
  15. package/dist/runtime/components/table/index.js +1 -0
  16. package/dist/runtime/components/table/lib.d.ts +6 -0
  17. package/dist/runtime/components/table/lib.js +24 -0
  18. package/dist/runtime/components/table/model.d.ts +152 -0
  19. package/dist/runtime/components/table/model.js +0 -0
  20. package/dist/runtime/components/table/table.d.ts +30 -0
  21. package/dist/runtime/components/table/table.d.vue.ts +48 -0
  22. package/dist/runtime/components/table/table.vue +535 -0
  23. package/dist/runtime/components/table/table.vue.d.ts +48 -0
  24. package/dist/runtime/components/tree/_ui/tree-root.d.vue.ts +2 -2
  25. package/dist/runtime/components/tree/_ui/tree-root.vue.d.ts +2 -2
  26. package/dist/runtime/components/tree/lib/item-handlers.js +2 -2
  27. package/dist/runtime/components/tree/tree.d.vue.ts +2 -2
  28. package/dist/runtime/components/tree/tree.vue.d.ts +2 -2
  29. package/package.json +7 -5
@@ -11,14 +11,14 @@ type __VLS_ModelProps = {
11
11
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  delete: (path: string[]) => any;
14
+ "update:expanded": (value: string[]) => any;
14
15
  "update:active": (value: string | null) => any;
15
16
  "update:selected": (value: string[]) => any;
16
- "update:expanded": (value: string[]) => any;
17
17
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
18
18
  onDelete?: ((path: string[]) => any) | undefined;
19
+ "onUpdate:expanded"?: ((value: string[]) => any) | undefined;
19
20
  "onUpdate:active"?: ((value: string | null) => any) | undefined;
20
21
  "onUpdate:selected"?: ((value: string[]) => any) | undefined;
21
- "onUpdate:expanded"?: ((value: string[]) => any) | undefined;
22
22
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
23
  declare const _default: typeof __VLS_export;
24
24
  export default _default;
@@ -11,14 +11,14 @@ type __VLS_ModelProps = {
11
11
  type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
12
12
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  delete: (path: string[]) => any;
14
+ "update:expanded": (value: string[]) => any;
14
15
  "update:active": (value: string | null) => any;
15
16
  "update:selected": (value: string[]) => any;
16
- "update:expanded": (value: string[]) => any;
17
17
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
18
18
  onDelete?: ((path: string[]) => any) | undefined;
19
+ "onUpdate:expanded"?: ((value: string[]) => any) | undefined;
19
20
  "onUpdate:active"?: ((value: string | null) => any) | undefined;
20
21
  "onUpdate:selected"?: ((value: string[]) => any) | undefined;
21
- "onUpdate:expanded"?: ((value: string[]) => any) | undefined;
22
22
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
23
  declare const _default: typeof __VLS_export;
24
24
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuance-ui",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "A UI Library for Modern Web Apps, powered by Vue.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,19 +37,21 @@
37
37
  "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
38
38
  },
39
39
  "dependencies": {
40
- "defu": "^6.1.4",
41
40
  "@floating-ui/vue": "^1.1.9",
42
41
  "@nuxt/icon": "^2.1.0",
43
42
  "@nuxt/kit": "^4.2.1",
44
43
  "@vueuse/core": "^14.0.0",
44
+ "defu": "^6.1.4",
45
45
  "postcss": "^8.5.6",
46
46
  "postcss-preset-mantine": "^1.18.0",
47
- "postcss-simple-vars": "^7.0.1"
47
+ "postcss-simple-vars": "^7.0.1",
48
+ "@tanstack/vue-table": "^8.21.3",
49
+ "@tanstack/vue-virtual": "^3.13.13"
48
50
  },
49
51
  "peerDependencies": {
52
+ "@nuxtjs/color-mode": "^4.0.0",
50
53
  "nuxt": "^4.0.0",
51
- "vue": "^3.5.0",
52
- "@nuxtjs/color-mode": "^4.0.0"
54
+ "vue": "^3.5.0"
53
55
  },
54
56
  "peerDependenciesMeta": {
55
57
  "vue": {