@dpa-id-components/dpa-shared-components 0.10.0 → 0.11.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.
- package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +472 -14
- package/dist/components/UiBadge/UiBadge.vue.d.ts +22 -20
- package/dist/components/UiButton/UiButton.vue.d.ts +65 -20
- package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +24 -20
- package/dist/components/UiChip/UiChip.vue.d.ts +13 -11
- package/dist/components/UiDialog/UiDialog.vue.d.ts +23 -20
- package/dist/components/UiFilterBadge/UiFilterBadge.vue.d.ts +61 -11
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +76 -20
- package/dist/components/UiIcon/UiIcon.vue.d.ts +14 -10
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +90 -19
- package/dist/components/UiInfoContent/UiInfoContent.vue.d.ts +49 -8
- package/dist/components/UiInput/UiInput.vue.d.ts +68 -52
- package/dist/components/UiListItem/UiListItem.vue.d.ts +145 -25
- package/dist/components/UiMenu/UiMenu.vue.d.ts +378 -30
- package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +11 -7
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +29 -26
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +228 -0
- package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +182 -19
- package/dist/components/UiSection/UiSection.vue.d.ts +18 -14
- package/dist/components/UiSectionDivider/UiSectionDivider.vue.d.ts +11 -8
- package/dist/components/UiSkeletonBox/UiSkeletonBox.vue.d.ts +13 -11
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +52 -11
- package/dist/components/UiSpinner/UiSpinner.vue.d.ts +49 -8
- package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +18 -14
- package/dist/components/index.d.ts +3 -2
- package/dist/dpa-shared-components.d.ts +52 -1
- package/dist/dpa-shared-components.mjs +1804 -1661
- package/dist/dpa-shared-components.umd.js +3 -3
- package/dist/shims-vue.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +3 -2
|
@@ -1,33 +1,74 @@
|
|
|
1
|
-
import type { PropType as __PropType } from 'vue';
|
|
2
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
2
|
isShown: {
|
|
4
|
-
type:
|
|
3
|
+
type: BooleanConstructor;
|
|
5
4
|
required: false;
|
|
6
5
|
default: boolean;
|
|
7
6
|
};
|
|
8
7
|
position: {
|
|
9
|
-
type:
|
|
8
|
+
type: StringConstructor;
|
|
10
9
|
required: false;
|
|
11
10
|
default: string;
|
|
12
11
|
};
|
|
13
12
|
iconName: {
|
|
14
|
-
type:
|
|
13
|
+
type: null;
|
|
15
14
|
required: false;
|
|
16
15
|
default: null;
|
|
17
16
|
};
|
|
18
|
-
}, {
|
|
17
|
+
}, {
|
|
18
|
+
emits: (event: "input" | "action-click", ...args: any[]) => void;
|
|
19
|
+
props: any;
|
|
20
|
+
UiIcon: import("vue").DefineComponent<{
|
|
21
|
+
name: {
|
|
22
|
+
type: null;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
size: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
sizeClasses: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
required: false;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
props: any;
|
|
37
|
+
dynamicSvg: import("vue").Ref<null>;
|
|
38
|
+
importSvg: (name: string) => Promise<any>;
|
|
39
|
+
sizeClass: import("vue").ComputedRef<string>;
|
|
40
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
+
name: {
|
|
42
|
+
type: null;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
size: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
required: false;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
sizeClasses: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
required: false;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
}>>, {
|
|
56
|
+
size: string;
|
|
57
|
+
sizeClasses: string;
|
|
58
|
+
}>;
|
|
59
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "action-click")[], "input" | "action-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
60
|
isShown: {
|
|
20
|
-
type:
|
|
61
|
+
type: BooleanConstructor;
|
|
21
62
|
required: false;
|
|
22
63
|
default: boolean;
|
|
23
64
|
};
|
|
24
65
|
position: {
|
|
25
|
-
type:
|
|
66
|
+
type: StringConstructor;
|
|
26
67
|
required: false;
|
|
27
68
|
default: string;
|
|
28
69
|
};
|
|
29
70
|
iconName: {
|
|
30
|
-
type:
|
|
71
|
+
type: null;
|
|
31
72
|
required: false;
|
|
32
73
|
default: null;
|
|
33
74
|
};
|
|
@@ -35,8 +76,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
35
76
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
36
77
|
"onAction-click"?: ((...args: any[]) => any) | undefined;
|
|
37
78
|
}, {
|
|
38
|
-
iconName:
|
|
39
|
-
isShown: boolean
|
|
40
|
-
position:
|
|
79
|
+
iconName: any;
|
|
80
|
+
isShown: boolean;
|
|
81
|
+
position: string;
|
|
41
82
|
}>;
|
|
42
83
|
export default _sfc_main;
|
|
@@ -1,28 +1,69 @@
|
|
|
1
|
-
import type { PropType as __PropType } from 'vue';
|
|
2
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
2
|
color: {
|
|
4
|
-
type:
|
|
3
|
+
type: StringConstructor;
|
|
5
4
|
required: false;
|
|
6
5
|
default: string;
|
|
7
6
|
};
|
|
8
7
|
variant: {
|
|
9
|
-
type:
|
|
8
|
+
type: StringConstructor;
|
|
10
9
|
required: false;
|
|
11
10
|
default: string;
|
|
12
11
|
};
|
|
13
|
-
}, {
|
|
12
|
+
}, {
|
|
13
|
+
props: any;
|
|
14
|
+
colorClass: import("vue").ComputedRef<string>;
|
|
15
|
+
UiIcon: import("vue").DefineComponent<{
|
|
16
|
+
name: {
|
|
17
|
+
type: null;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
size: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
sizeClasses: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}, {
|
|
31
|
+
props: any;
|
|
32
|
+
dynamicSvg: import("vue").Ref<null>;
|
|
33
|
+
importSvg: (name: string) => Promise<any>;
|
|
34
|
+
sizeClass: import("vue").ComputedRef<string>;
|
|
35
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
+
name: {
|
|
37
|
+
type: null;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
size: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
required: false;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
sizeClasses: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
required: false;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
}>>, {
|
|
51
|
+
size: string;
|
|
52
|
+
sizeClasses: string;
|
|
53
|
+
}>;
|
|
54
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
55
|
color: {
|
|
15
|
-
type:
|
|
56
|
+
type: StringConstructor;
|
|
16
57
|
required: false;
|
|
17
58
|
default: string;
|
|
18
59
|
};
|
|
19
60
|
variant: {
|
|
20
|
-
type:
|
|
61
|
+
type: StringConstructor;
|
|
21
62
|
required: false;
|
|
22
63
|
default: string;
|
|
23
64
|
};
|
|
24
65
|
}>>, {
|
|
25
|
-
color:
|
|
26
|
-
variant:
|
|
66
|
+
color: string;
|
|
67
|
+
variant: string;
|
|
27
68
|
}>;
|
|
28
69
|
export default _sfc_main;
|
|
@@ -1,52 +1,56 @@
|
|
|
1
|
-
import type { PropType as __PropType } from 'vue';
|
|
2
1
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
2
|
isChecked: {
|
|
4
|
-
type:
|
|
3
|
+
type: BooleanConstructor;
|
|
5
4
|
required: false;
|
|
6
5
|
default: boolean;
|
|
7
6
|
};
|
|
8
7
|
disabled: {
|
|
9
|
-
type:
|
|
8
|
+
type: BooleanConstructor;
|
|
10
9
|
required: false;
|
|
11
10
|
default: boolean;
|
|
12
11
|
};
|
|
13
12
|
labelText: {
|
|
14
|
-
type:
|
|
13
|
+
type: StringConstructor;
|
|
15
14
|
required: false;
|
|
16
15
|
default: string;
|
|
17
16
|
};
|
|
18
17
|
labelSpace: {
|
|
19
|
-
type:
|
|
18
|
+
type: StringConstructor;
|
|
20
19
|
required: false;
|
|
21
20
|
default: string;
|
|
22
21
|
};
|
|
23
|
-
}, {
|
|
22
|
+
}, {
|
|
23
|
+
emit: (event: "change", checked: boolean) => void;
|
|
24
|
+
props: any;
|
|
25
|
+
labelSpaceClass: import("vue").ComputedRef<"mr-3" | "mr-12">;
|
|
26
|
+
handleChange: (event: Event) => void;
|
|
27
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
28
|
isChecked: {
|
|
25
|
-
type:
|
|
29
|
+
type: BooleanConstructor;
|
|
26
30
|
required: false;
|
|
27
31
|
default: boolean;
|
|
28
32
|
};
|
|
29
33
|
disabled: {
|
|
30
|
-
type:
|
|
34
|
+
type: BooleanConstructor;
|
|
31
35
|
required: false;
|
|
32
36
|
default: boolean;
|
|
33
37
|
};
|
|
34
38
|
labelText: {
|
|
35
|
-
type:
|
|
39
|
+
type: StringConstructor;
|
|
36
40
|
required: false;
|
|
37
41
|
default: string;
|
|
38
42
|
};
|
|
39
43
|
labelSpace: {
|
|
40
|
-
type:
|
|
44
|
+
type: StringConstructor;
|
|
41
45
|
required: false;
|
|
42
46
|
default: string;
|
|
43
47
|
};
|
|
44
48
|
}>> & {
|
|
45
49
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
46
50
|
}, {
|
|
47
|
-
disabled: boolean
|
|
48
|
-
isChecked: boolean
|
|
49
|
-
labelText: string
|
|
50
|
-
labelSpace:
|
|
51
|
+
disabled: boolean;
|
|
52
|
+
isChecked: boolean;
|
|
53
|
+
labelText: string;
|
|
54
|
+
labelSpace: string;
|
|
51
55
|
}>;
|
|
52
56
|
export default _sfc_main;
|
|
@@ -18,11 +18,12 @@ import UiMenu from "./UiMenu/UiMenu.vue";
|
|
|
18
18
|
import UiOverlay from "./UiOverlay/UiOverlay.vue";
|
|
19
19
|
import UiOverlayMenu from "./UiOverlayMenu/UiOverlayMenu.vue";
|
|
20
20
|
import UiRadioInputGroup from '../components/UiRadioInputGroup/UiRadioInputGroup.vue';
|
|
21
|
-
import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
|
|
22
21
|
import UiSection from "./UiSection/UiSection.vue";
|
|
23
22
|
import UiSectionDivider from "./UiSectionDivider/UiSectionDivider.vue";
|
|
24
23
|
import UiSkeletonBox from "./UiSkeletonBox/UiSkeletonBox.vue";
|
|
25
24
|
import UiSpinner from "./UiSpinner/UiSpinner.vue";
|
|
26
25
|
import UiSnackbar from "./UiSnackbar/UiSnackbar.vue";
|
|
27
26
|
import UiToggleButton from "./UiToggleButton/UiToggleButton.vue";
|
|
28
|
-
|
|
27
|
+
import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
|
|
28
|
+
import UiSearchBar from "./UiSearchBar/UiSearchBar.vue";
|
|
29
|
+
export { UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, UiSearchInput, UiSearchBar, };
|
|
@@ -1 +1,52 @@
|
|
|
1
|
-
|
|
1
|
+
import type { AllowedComponentProps } from 'vue';
|
|
2
|
+
import type { ComponentCustomProps } from 'vue';
|
|
3
|
+
import type { ComponentOptionsMixin } from 'vue';
|
|
4
|
+
import type { DefineComponent } from 'vue';
|
|
5
|
+
import type { ExtractPropTypes } from 'vue';
|
|
6
|
+
import type { VNodeProps } from 'vue';
|
|
7
|
+
|
|
8
|
+
export declare const UiAutocomplete: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
9
|
+
|
|
10
|
+
export declare const UiBadge: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
11
|
+
|
|
12
|
+
export declare const UiButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
13
|
+
|
|
14
|
+
export declare const UiCard: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
15
|
+
|
|
16
|
+
export declare const UiCheckbox: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
17
|
+
|
|
18
|
+
export declare const UiChip: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
19
|
+
|
|
20
|
+
export declare const UiDialog: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
21
|
+
|
|
22
|
+
export declare const UiFilterBadge: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
23
|
+
|
|
24
|
+
export declare const UiFilterButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
25
|
+
|
|
26
|
+
export declare const UiIcon: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
27
|
+
|
|
28
|
+
export declare const UiIconButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
29
|
+
|
|
30
|
+
export declare const UiInfoContent: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
31
|
+
|
|
32
|
+
export declare const UiInput: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
33
|
+
|
|
34
|
+
export declare const UiList: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
35
|
+
|
|
36
|
+
export declare const UiListItem: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
37
|
+
|
|
38
|
+
export declare const UiOverlay: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
39
|
+
|
|
40
|
+
export declare const UiOverlayMenu: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
41
|
+
|
|
42
|
+
export declare const UiSearchInput: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
43
|
+
|
|
44
|
+
export declare const UiSection: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
45
|
+
|
|
46
|
+
export declare const UiSkeletonBox: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
47
|
+
|
|
48
|
+
export declare const UiSpinner: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
49
|
+
|
|
50
|
+
export declare const UiToggleButton: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{}>>, {}>;
|
|
51
|
+
|
|
52
|
+
export { }
|