@db-ux/v-core-components 4.4.1 → 4.4.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.
- package/CHANGELOG.md +8 -0
- package/dist/components/accordion/model.d.ts +2 -2
- package/dist/components/accordion-item/model.d.ts +2 -2
- package/dist/components/button/button.vue.d.ts +1 -1
- package/dist/components/checkbox/checkbox.vue.d.ts +1 -1
- package/dist/components/custom-select-list-item/custom-select-list-item.vue.d.ts +1 -1
- package/dist/components/custom-select-list-item/model.d.ts +2 -2
- package/dist/components/input/input.vue.d.ts +1 -1
- package/dist/components/navigation/model.d.ts +2 -2
- package/dist/components/navigation-item/model.d.ts +0 -1
- package/dist/components/radio/radio.vue.d.ts +1 -1
- package/dist/components/select/select.vue.d.ts +1 -1
- package/dist/components/switch/switch.vue.d.ts +1 -1
- package/dist/components/tab-list/model.d.ts +2 -2
- package/dist/components/tabs/model.d.ts +2 -2
- package/dist/components/textarea/textarea.vue.d.ts +1 -1
- package/dist/db-ux.es.js +1872 -1872
- package/dist/db-ux.umd.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @db-ux/v-core-components
|
|
2
2
|
|
|
3
|
+
## 4.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(SSR-compatibility): Implement framework-specific `useId` for UUID generation in React and Vue outputs - [see commit 1073c46](https://github.com/db-ux-design-system/core-web/commit/1073c469a20bf1346f150c00364ee1aeab7643d0)
|
|
8
|
+
|
|
9
|
+
- fix: issue with DBInput not working properly with `datalist` and `type="time"` - [see commit 72ccb09](https://github.com/db-ux-design-system/core-web/commit/72ccb09d1304aec894b4fde27624f90029efec9d)
|
|
10
|
+
|
|
3
11
|
## 4.4.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GlobalProps,
|
|
1
|
+
import { GlobalProps, InitializedState } from '../../shared/model';
|
|
2
2
|
import { DBAccordionItemDefaultProps } from '../accordion-item/model';
|
|
3
3
|
export declare const AccordionVariantList: readonly ["divider", "card"];
|
|
4
4
|
export type AccordionVariantType = (typeof AccordionVariantList)[number];
|
|
@@ -38,4 +38,4 @@ export type DBAccordionDefaultState = {
|
|
|
38
38
|
_name?: string;
|
|
39
39
|
convertItems: () => DBAccordionItemDefaultProps[];
|
|
40
40
|
};
|
|
41
|
-
export type DBAccordionState = DBAccordionDefaultState &
|
|
41
|
+
export type DBAccordionState = DBAccordionDefaultState & InitializedState;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GlobalProps,
|
|
1
|
+
import { GlobalProps, InitializedState, NameProps, NameState, TextProps, ToggleEventProps, ToggleEventState } from '../../shared/model';
|
|
2
2
|
export type DBAccordionItemDefaultProps = {
|
|
3
3
|
/**
|
|
4
4
|
* Initial state for the accordion item
|
|
@@ -21,4 +21,4 @@ export type DBAccordionItemProps = DBAccordionItemDefaultProps & GlobalProps & T
|
|
|
21
21
|
export type DBAccordionItemDefaultState = {
|
|
22
22
|
_open?: boolean;
|
|
23
23
|
};
|
|
24
|
-
export type DBAccordionItemState = DBAccordionItemDefaultState &
|
|
24
|
+
export type DBAccordionItemState = DBAccordionItemDefaultState & ToggleEventState<HTMLElement> & InitializedState & NameState;
|
|
@@ -4,10 +4,10 @@ type __VLS_Slots = {} & {
|
|
|
4
4
|
default?: (props: typeof __VLS_1) => any;
|
|
5
5
|
};
|
|
6
6
|
declare const __VLS_base: import("vue").DefineComponent<DBButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DBButtonProps> & Readonly<{}>, {
|
|
7
|
-
value: string;
|
|
8
7
|
name: string;
|
|
9
8
|
form: string;
|
|
10
9
|
text: string;
|
|
10
|
+
value: string;
|
|
11
11
|
disabled: boolean | string;
|
|
12
12
|
children: any;
|
|
13
13
|
className: string;
|
|
@@ -9,9 +9,9 @@ declare const __VLS_base: import("vue").DefineComponent<DBCheckboxProps, {}, {},
|
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<DBCheckboxProps> & Readonly<{
|
|
10
10
|
"onUpdate:checked"?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}>, {
|
|
12
|
-
value: any;
|
|
13
12
|
name: string;
|
|
14
13
|
label: string;
|
|
14
|
+
value: any;
|
|
15
15
|
disabled: boolean | string;
|
|
16
16
|
children: any;
|
|
17
17
|
className: string;
|
|
@@ -9,9 +9,9 @@ declare const __VLS_base: import("vue").DefineComponent<DBCustomSelectListItemPr
|
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<DBCustomSelectListItemProps> & Readonly<{
|
|
10
10
|
"onUpdate:checked"?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}>, {
|
|
12
|
-
value: any;
|
|
13
12
|
name: string;
|
|
14
13
|
label: string;
|
|
14
|
+
value: any;
|
|
15
15
|
disabled: boolean | string;
|
|
16
16
|
children: any;
|
|
17
17
|
className: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseFormProps, ChangeEventProps, ChangeEventState, FormCheckProps, GlobalProps,
|
|
1
|
+
import { BaseFormProps, ChangeEventProps, ChangeEventState, FormCheckProps, GlobalProps, IconProps, ShowIconProps, ValueProps } from '../../shared/model';
|
|
2
2
|
export declare const CustomSelectListItemTypeList: readonly ["checkbox", "radio"];
|
|
3
3
|
export type CustomSelectListItemTypeType = (typeof CustomSelectListItemTypeList)[number];
|
|
4
4
|
export type DBCustomSelectListItemExtraProps = {
|
|
@@ -26,4 +26,4 @@ export type DBCustomSelectListItemDefaultState = {
|
|
|
26
26
|
getIconTrailing: () => string | undefined;
|
|
27
27
|
hasDivider?: boolean;
|
|
28
28
|
};
|
|
29
|
-
export type DBCustomSelectListItemState = DBCustomSelectListItemDefaultState & ChangeEventState<HTMLInputElement
|
|
29
|
+
export type DBCustomSelectListItemState = DBCustomSelectListItemDefaultState & ChangeEventState<HTMLInputElement>;
|
|
@@ -9,12 +9,12 @@ declare const __VLS_base: import("vue").DefineComponent<DBInputProps, {}, {}, {}
|
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<DBInputProps> & Readonly<{
|
|
10
10
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}>, {
|
|
12
|
-
value: any;
|
|
13
12
|
name: string;
|
|
14
13
|
form: string;
|
|
15
14
|
input: (event: InputEvent<HTMLInputElement>) => void;
|
|
16
15
|
label: string;
|
|
17
16
|
pattern: string;
|
|
17
|
+
value: any;
|
|
18
18
|
disabled: boolean | string;
|
|
19
19
|
children: any;
|
|
20
20
|
className: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GlobalProps
|
|
1
|
+
import { GlobalProps } from '../../shared/model';
|
|
2
2
|
export type DBNavigationDefaultProps = {};
|
|
3
3
|
export type DBNavigationProps = DBNavigationDefaultProps & GlobalProps;
|
|
4
4
|
export type DBNavigationDefaultState = {};
|
|
5
|
-
export type DBNavigationState = DBNavigationDefaultState
|
|
5
|
+
export type DBNavigationState = DBNavigationDefaultState;
|
|
@@ -23,7 +23,6 @@ export type DBNavigationItemDefaultState = {
|
|
|
23
23
|
handleBackClick: (event: ClickEvent<HTMLButtonElement>) => void;
|
|
24
24
|
hasAreaPopup: boolean;
|
|
25
25
|
isSubNavigationExpanded: boolean;
|
|
26
|
-
subNavigationId: string;
|
|
27
26
|
/**
|
|
28
27
|
* Internal state property to show/hide sub-navigation button
|
|
29
28
|
*/
|
|
@@ -9,10 +9,10 @@ declare const __VLS_base: import("vue").DefineComponent<DBRadioProps, {}, {}, {}
|
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<DBRadioProps> & Readonly<{
|
|
10
10
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}>, {
|
|
12
|
-
value: any;
|
|
13
12
|
name: string;
|
|
14
13
|
input: (event: import("../../shared/model").InputEvent<HTMLInputElement>) => void;
|
|
15
14
|
label: string;
|
|
15
|
+
value: any;
|
|
16
16
|
disabled: boolean | string;
|
|
17
17
|
children: any;
|
|
18
18
|
className: string;
|
|
@@ -9,10 +9,10 @@ declare const __VLS_base: import("vue").DefineComponent<DBSelectProps, {}, {}, {
|
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<DBSelectProps> & Readonly<{
|
|
10
10
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}>, {
|
|
12
|
-
value: any;
|
|
13
12
|
name: string;
|
|
14
13
|
input: (event: InputEvent<HTMLSelectElement>) => void;
|
|
15
14
|
label: string;
|
|
15
|
+
value: any;
|
|
16
16
|
disabled: boolean | string;
|
|
17
17
|
children: any;
|
|
18
18
|
className: string;
|
|
@@ -9,9 +9,9 @@ declare const __VLS_base: import("vue").DefineComponent<DBSwitchProps, {}, {}, {
|
|
|
9
9
|
}, string, import("vue").PublicProps, Readonly<DBSwitchProps> & Readonly<{
|
|
10
10
|
"onUpdate:checked"?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}>, {
|
|
12
|
-
value: any;
|
|
13
12
|
name: string;
|
|
14
13
|
label: string;
|
|
14
|
+
value: any;
|
|
15
15
|
disabled: boolean | string;
|
|
16
16
|
children: any;
|
|
17
17
|
className: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GlobalProps
|
|
1
|
+
import { GlobalProps } from '../../shared/model';
|
|
2
2
|
export type DBTabListDefaultProps = {};
|
|
3
3
|
export type DBTabListProps = DBTabListDefaultProps & GlobalProps;
|
|
4
4
|
export type DBTabListDefaultState = {};
|
|
5
|
-
export type DBTabListState = DBTabListDefaultState
|
|
5
|
+
export type DBTabListState = DBTabListDefaultState;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AlignmentProps, GlobalProps,
|
|
1
|
+
import { AlignmentProps, GlobalProps, InitializedState, InputEvent, OrientationProps, WidthProps } from '../../shared/model';
|
|
2
2
|
import { DBTabItemProps } from '../tab-item/model';
|
|
3
3
|
import { DBTabPanelProps } from '../tab-panel/model';
|
|
4
4
|
export declare const TabsBehaviorList: readonly ["scrollbar", "arrows"];
|
|
@@ -64,4 +64,4 @@ export type DBTabsDefaultState = {
|
|
|
64
64
|
handleChange: (event: InputEvent<HTMLElement>) => void;
|
|
65
65
|
_resizeObserver?: ResizeObserver;
|
|
66
66
|
};
|
|
67
|
-
export type DBTabsState = DBTabsDefaultState &
|
|
67
|
+
export type DBTabsState = DBTabsDefaultState & InitializedState;
|
|
@@ -5,11 +5,11 @@ declare const __VLS_export: import("vue").DefineComponent<DBTextareaProps, {}, {
|
|
|
5
5
|
}, string, import("vue").PublicProps, Readonly<DBTextareaProps> & Readonly<{
|
|
6
6
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
7
7
|
}>, {
|
|
8
|
-
value: any;
|
|
9
8
|
name: string;
|
|
10
9
|
form: string;
|
|
11
10
|
input: (event: InputEvent<HTMLTextAreaElement>) => void;
|
|
12
11
|
label: string;
|
|
12
|
+
value: any;
|
|
13
13
|
disabled: boolean | string;
|
|
14
14
|
className: string;
|
|
15
15
|
id: string;
|