@db-ux/v-core-components 4.5.4 → 4.6.0

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.
@@ -21,7 +21,7 @@ export interface GlobalProps {
21
21
  */
22
22
  autofocus?: boolean | string;
23
23
  /**
24
- * Allows overriding specific props on nested elements or internal component structure.
24
+ * Allows overriding specific props on nested elements or internal component structure. Currently only supports propOverrides.id
25
25
  */
26
26
  propOverrides?: PropOverridesType;
27
27
  }
@@ -1,4 +1,4 @@
1
- export declare const handleFrameworkEventAngular: (component: any, event: any, modelValue?: string) => void;
1
+ export declare const handleFrameworkEventAngular: (component: any, event: any, modelValue?: string, lastValue?: any) => void;
2
2
  export declare const handleFrameworkEventVue: (emit: (event: string, ...args: any[]) => void, event: any, modelValue?: string) => void;
3
3
  export declare const addResetEventListener: (element: any, resetFunction: (event: Event) => void, signal: AbortSignal) => void;
4
4
  export declare const addCheckedResetEventListener: (element: any, props: {
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/v-core-components",
3
- "version": "4.5.4",
3
+ "version": "4.6.0",
4
4
  "type": "module",
5
5
  "description": "Vue components for @db-ux/core-components",
6
6
  "repository": {
@@ -40,14 +40,14 @@
40
40
  "test:components:ui": "playwright test --config playwright.config.ts --ui"
41
41
  },
42
42
  "devDependencies": {
43
- "@playwright/experimental-ct-vue": "1.58.2",
44
- "@vitejs/plugin-vue": "6.0.4",
43
+ "@playwright/experimental-ct-vue": "1.59.1",
44
+ "@vitejs/plugin-vue": "6.0.5",
45
45
  "replace-in-file": "8.4.0",
46
46
  "tsx": "4.21.0",
47
47
  "typescript": "5.9.3",
48
- "vite": "7.3.1",
49
- "vue": "3.5.30",
50
- "vue-tsc": "3.2.5"
48
+ "vite": "8.0.6",
49
+ "vue": "^3.5.31",
50
+ "vue-tsc": "^3.2.6"
51
51
  },
52
52
  "publishConfig": {
53
53
  "registry": "https://registry.npmjs.org/",
@@ -56,7 +56,7 @@
56
56
  "sideEffects": false,
57
57
  "source": "src/index.ts",
58
58
  "dependencies": {
59
- "@db-ux/core-components": "4.5.4",
60
- "@db-ux/core-foundations": "4.5.4"
59
+ "@db-ux/core-components": "4.6.0",
60
+ "@db-ux/core-foundations": "4.6.0"
61
61
  }
62
62
  }