@db-ux/v-core-components 4.4.2 → 4.4.3

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.
@@ -1,5 +1,5 @@
1
1
  import { IconTypes } from '@db-ux/core-foundations';
2
- export type GlobalProps = {
2
+ export interface GlobalProps {
3
3
  /**
4
4
  * default slot
5
5
  */
@@ -20,7 +20,7 @@ export type GlobalProps = {
20
20
  * Before using please check for the [accessibility concerns](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autofocus#accessibility_concerns)
21
21
  */
22
22
  autofocus?: boolean | string;
23
- };
23
+ }
24
24
  export type GlobalState = {
25
25
  _id?: string;
26
26
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/v-core-components",
3
- "version": "4.4.2",
3
+ "version": "4.4.3",
4
4
  "type": "module",
5
5
  "description": "Vue components for @db-ux/core-components",
6
6
  "repository": {
@@ -56,7 +56,7 @@
56
56
  "sideEffects": false,
57
57
  "source": "src/index.ts",
58
58
  "dependencies": {
59
- "@db-ux/core-components": "4.4.2",
60
- "@db-ux/core-foundations": "4.4.2"
59
+ "@db-ux/core-components": "4.4.3",
60
+ "@db-ux/core-foundations": "4.4.3"
61
61
  }
62
62
  }