@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.
- package/CHANGELOG.md +10 -0
- package/dist/components/switch/model.d.ts +1 -1
- package/dist/components/switch/switch.vue.d.ts +1 -1
- package/dist/db-ux.es.js +1451 -1433
- package/dist/db-ux.umd.js +1 -1
- package/dist/shared/model.d.ts +2 -2
- package/package.json +3 -3
package/dist/shared/model.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconTypes } from '@db-ux/core-foundations';
|
|
2
|
-
export
|
|
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.
|
|
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.
|
|
60
|
-
"@db-ux/core-foundations": "4.4.
|
|
59
|
+
"@db-ux/core-components": "4.4.3",
|
|
60
|
+
"@db-ux/core-foundations": "4.4.3"
|
|
61
61
|
}
|
|
62
62
|
}
|