@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.
Files changed (31) hide show
  1. package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +472 -14
  2. package/dist/components/UiBadge/UiBadge.vue.d.ts +22 -20
  3. package/dist/components/UiButton/UiButton.vue.d.ts +65 -20
  4. package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +24 -20
  5. package/dist/components/UiChip/UiChip.vue.d.ts +13 -11
  6. package/dist/components/UiDialog/UiDialog.vue.d.ts +23 -20
  7. package/dist/components/UiFilterBadge/UiFilterBadge.vue.d.ts +61 -11
  8. package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +76 -20
  9. package/dist/components/UiIcon/UiIcon.vue.d.ts +14 -10
  10. package/dist/components/UiIconButton/UiIconButton.vue.d.ts +90 -19
  11. package/dist/components/UiInfoContent/UiInfoContent.vue.d.ts +49 -8
  12. package/dist/components/UiInput/UiInput.vue.d.ts +68 -52
  13. package/dist/components/UiListItem/UiListItem.vue.d.ts +145 -25
  14. package/dist/components/UiMenu/UiMenu.vue.d.ts +378 -30
  15. package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +11 -7
  16. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +29 -26
  17. package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +228 -0
  18. package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +182 -19
  19. package/dist/components/UiSection/UiSection.vue.d.ts +18 -14
  20. package/dist/components/UiSectionDivider/UiSectionDivider.vue.d.ts +11 -8
  21. package/dist/components/UiSkeletonBox/UiSkeletonBox.vue.d.ts +13 -11
  22. package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +52 -11
  23. package/dist/components/UiSpinner/UiSpinner.vue.d.ts +49 -8
  24. package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +18 -14
  25. package/dist/components/index.d.ts +3 -2
  26. package/dist/dpa-shared-components.d.ts +52 -1
  27. package/dist/dpa-shared-components.mjs +1804 -1661
  28. package/dist/dpa-shared-components.umd.js +3 -3
  29. package/dist/shims-vue.d.ts +6 -0
  30. package/dist/style.css +1 -1
  31. 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: __PropType<boolean | undefined>;
3
+ type: BooleanConstructor;
5
4
  required: false;
6
5
  default: boolean;
7
6
  };
8
7
  position: {
9
- type: __PropType<"left" | "right" | undefined>;
8
+ type: StringConstructor;
10
9
  required: false;
11
10
  default: string;
12
11
  };
13
12
  iconName: {
14
- type: __PropType<string | null | undefined>;
13
+ type: null;
15
14
  required: false;
16
15
  default: null;
17
16
  };
18
- }, {}, 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<{
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: __PropType<boolean | undefined>;
61
+ type: BooleanConstructor;
21
62
  required: false;
22
63
  default: boolean;
23
64
  };
24
65
  position: {
25
- type: __PropType<"left" | "right" | undefined>;
66
+ type: StringConstructor;
26
67
  required: false;
27
68
  default: string;
28
69
  };
29
70
  iconName: {
30
- type: __PropType<string | null | undefined>;
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: string | null | undefined;
39
- isShown: boolean | undefined;
40
- position: "left" | "right" | undefined;
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: __PropType<"blue" | "white" | "green" | undefined>;
3
+ type: StringConstructor;
5
4
  required: false;
6
5
  default: string;
7
6
  };
8
7
  variant: {
9
- type: __PropType<"spinner" | "bubbles" | undefined>;
8
+ type: StringConstructor;
10
9
  required: false;
11
10
  default: string;
12
11
  };
13
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
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: __PropType<"blue" | "white" | "green" | undefined>;
56
+ type: StringConstructor;
16
57
  required: false;
17
58
  default: string;
18
59
  };
19
60
  variant: {
20
- type: __PropType<"spinner" | "bubbles" | undefined>;
61
+ type: StringConstructor;
21
62
  required: false;
22
63
  default: string;
23
64
  };
24
65
  }>>, {
25
- color: "blue" | "white" | "green" | undefined;
26
- variant: "spinner" | "bubbles" | undefined;
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: __PropType<boolean | undefined>;
3
+ type: BooleanConstructor;
5
4
  required: false;
6
5
  default: boolean;
7
6
  };
8
7
  disabled: {
9
- type: __PropType<boolean | undefined>;
8
+ type: BooleanConstructor;
10
9
  required: false;
11
10
  default: boolean;
12
11
  };
13
12
  labelText: {
14
- type: __PropType<string | undefined>;
13
+ type: StringConstructor;
15
14
  required: false;
16
15
  default: string;
17
16
  };
18
17
  labelSpace: {
19
- type: __PropType<"default" | "xl" | undefined>;
18
+ type: StringConstructor;
20
19
  required: false;
21
20
  default: string;
22
21
  };
23
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
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: __PropType<boolean | undefined>;
29
+ type: BooleanConstructor;
26
30
  required: false;
27
31
  default: boolean;
28
32
  };
29
33
  disabled: {
30
- type: __PropType<boolean | undefined>;
34
+ type: BooleanConstructor;
31
35
  required: false;
32
36
  default: boolean;
33
37
  };
34
38
  labelText: {
35
- type: __PropType<string | undefined>;
39
+ type: StringConstructor;
36
40
  required: false;
37
41
  default: string;
38
42
  };
39
43
  labelSpace: {
40
- type: __PropType<"default" | "xl" | undefined>;
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 | undefined;
48
- isChecked: boolean | undefined;
49
- labelText: string | undefined;
50
- labelSpace: "default" | "xl" | undefined;
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
- export { UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSearchInput, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, };
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
- export * from './index'
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 { }