@dpa-id-components/dpa-shared-components 0.4.2 → 0.4.4
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 +53 -0
- package/dist/components/UiBadge/UiBadge.vue.d.ts +72 -0
- package/dist/components/UiButton/UiButton.vue.d.ts +63 -0
- package/dist/components/UiButtonGroup/UiButtonGroup.vue.d.ts +2 -0
- package/dist/components/UiCard/UiCard.vue.d.ts +2 -0
- package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +74 -0
- package/dist/components/UiChip/UiChip.vue.d.ts +39 -0
- package/dist/components/UiDialog/UiDialog.vue.d.ts +74 -0
- package/dist/components/UiFilterBadge/UiFilterBadge.vue.d.ts +39 -0
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +74 -0
- package/dist/components/UiIcon/UiIcon.vue.d.ts +36 -0
- package/dist/components/UiIcon/iconNames.d.ts +1 -0
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +74 -0
- package/dist/components/UiInfoContent/UiInfoContent.vue.d.ts +28 -0
- package/dist/components/UiInput/UiInput.vue.d.ts +200 -0
- package/dist/components/UiList/UiList.vue.d.ts +2 -0
- package/dist/components/UiListItem/UiListItem.vue.d.ts +85 -0
- package/dist/components/UiMenu/UiMenu.vue.d.ts +92 -0
- package/dist/components/UiOverlay/UiOverlay.vue.d.ts +4 -0
- package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +19 -0
- package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +42 -0
- package/dist/components/UiSection/UiSection.vue.d.ts +50 -0
- package/dist/components/UiSectionDivider/UiSectionDivider.vue.d.ts +28 -0
- package/dist/components/UiSkeletonBox/UiSkeletonBox.vue.d.ts +39 -0
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +42 -0
- package/dist/components/UiSpinner/UiSpinner.vue.d.ts +28 -0
- package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +52 -0
- package/dist/components/index.d.ts +27 -0
- package/dist/directives/clickAway/clickAway.d.ts +6 -0
- package/dist/directives/index.d.ts +2 -0
- package/dist/dpa-shared-components.d.ts +1 -52
- package/dist/dpa-shared-components.mjs +1684 -1541
- package/dist/dpa-shared-components.umd.js +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +3 -2
- package/dist/shims-vue.d.ts +0 -6
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
isChecked: {
|
|
4
|
+
type: __PropType<boolean | undefined>;
|
|
5
|
+
required: false;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
disabled: {
|
|
9
|
+
type: __PropType<boolean | undefined>;
|
|
10
|
+
required: false;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
13
|
+
labelText: {
|
|
14
|
+
type: __PropType<string | undefined>;
|
|
15
|
+
required: false;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
labelSpace: {
|
|
19
|
+
type: __PropType<"default" | "xl" | undefined>;
|
|
20
|
+
required: false;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
isChecked: {
|
|
25
|
+
type: __PropType<boolean | undefined>;
|
|
26
|
+
required: false;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
disabled: {
|
|
30
|
+
type: __PropType<boolean | undefined>;
|
|
31
|
+
required: false;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
labelText: {
|
|
35
|
+
type: __PropType<string | undefined>;
|
|
36
|
+
required: false;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
labelSpace: {
|
|
40
|
+
type: __PropType<"default" | "xl" | undefined>;
|
|
41
|
+
required: false;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
}>> & {
|
|
45
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
46
|
+
}, {
|
|
47
|
+
disabled: boolean | undefined;
|
|
48
|
+
isChecked: boolean | undefined;
|
|
49
|
+
labelText: string | undefined;
|
|
50
|
+
labelSpace: "default" | "xl" | undefined;
|
|
51
|
+
}>;
|
|
52
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import UiAutocomplete from "./UiAutocomplete/UiAutocomplete.vue";
|
|
2
|
+
import UiBadge from "./UiBadge/UiBadge.vue";
|
|
3
|
+
import UiButton from "./UiButton/UiButton.vue";
|
|
4
|
+
import UiButtonGroup from "./UiButtonGroup/UiButtonGroup.vue";
|
|
5
|
+
import UiCard from "./UiCard/UiCard.vue";
|
|
6
|
+
import UiCheckbox from "./UiCheckBox/UiCheckBox.vue";
|
|
7
|
+
import UiChip from "./UiChip/UiChip.vue";
|
|
8
|
+
import UiDialog from "./UiDialog/UiDialog.vue";
|
|
9
|
+
import UiFilterBadge from "./UiFilterBadge/UiFilterBadge.vue";
|
|
10
|
+
import UiFilterButton from "./UiFilterButton/UiFilterButton.vue";
|
|
11
|
+
import UiIcon from "./UiIcon/UiIcon.vue";
|
|
12
|
+
import UiIconButton from "./UiIconButton/UiIconButton.vue";
|
|
13
|
+
import UiInfoContent from "./UiInfoContent/UiInfoContent.vue";
|
|
14
|
+
import UiInput from "./UiInput/UiInput.vue";
|
|
15
|
+
import UiList from "./UiList/UiList.vue";
|
|
16
|
+
import UiListItem from "./UiListItem/UiListItem.vue";
|
|
17
|
+
import UiMenu from "./UiMenu/UiMenu.vue";
|
|
18
|
+
import UiOverlay from "./UiOverlay/UiOverlay.vue";
|
|
19
|
+
import UiOverlayMenu from "./UiOverlayMenu/UiOverlayMenu.vue";
|
|
20
|
+
import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
|
|
21
|
+
import UiSection from "./UiSection/UiSection.vue";
|
|
22
|
+
import UiSectionDivider from "./UiSectionDivider/UiSectionDivider.vue";
|
|
23
|
+
import UiSkeletonBox from "./UiSkeletonBox/UiSkeletonBox.vue";
|
|
24
|
+
import UiSpinner from "./UiSpinner/UiSpinner.vue";
|
|
25
|
+
import UiSnackbar from "./UiSnackbar/UiSnackbar.vue";
|
|
26
|
+
import UiToggleButton from "./UiToggleButton/UiToggleButton.vue";
|
|
27
|
+
export { UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiChip, UiDialog, UiFilterBadge, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiSearchInput, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, };
|
|
@@ -1,52 +1 @@
|
|
|
1
|
-
|
|
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 { }
|
|
1
|
+
export * from './index'
|