@dpa-id-components/dpa-shared-components 0.4.4 → 0.5.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/UiButton/UiButton.vue.d.ts +11 -0
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +1 -1
- package/dist/components/index.d.ts +2 -1
- package/dist/dpa-shared-components.mjs +1579 -1726
- package/dist/dpa-shared-components.umd.js +3 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/UiButtonGroup/UiButtonGroup.vue.d.ts +0 -2
- package/dist/components/UiMenu/UiMenu.vue.d.ts +0 -92
- package/dist/components/UiSectionDivider/UiSectionDivider.vue.d.ts +0 -28
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +0 -42
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import type { PropType as __PropType } from 'vue';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
iconName: {
|
|
4
|
+
type: __PropType<string | null | undefined>;
|
|
5
|
+
required: false;
|
|
6
|
+
default: null;
|
|
7
|
+
};
|
|
3
8
|
size: {
|
|
4
9
|
type: __PropType<"small" | "xs" | "medium" | "large" | undefined>;
|
|
5
10
|
required: false;
|
|
@@ -26,6 +31,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
26
31
|
default: boolean;
|
|
27
32
|
};
|
|
28
33
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
iconName: {
|
|
35
|
+
type: __PropType<string | null | undefined>;
|
|
36
|
+
required: false;
|
|
37
|
+
default: null;
|
|
38
|
+
};
|
|
29
39
|
size: {
|
|
30
40
|
type: __PropType<"small" | "xs" | "medium" | "large" | undefined>;
|
|
31
41
|
required: false;
|
|
@@ -55,6 +65,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
55
65
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
56
66
|
}, {
|
|
57
67
|
color: "blue" | "white" | "gray" | undefined;
|
|
68
|
+
iconName: string | null | undefined;
|
|
58
69
|
size: "small" | "xs" | "medium" | "large" | undefined;
|
|
59
70
|
disabled: boolean | undefined;
|
|
60
71
|
href: string | undefined;
|
|
@@ -64,10 +64,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
64
64
|
}>> & {
|
|
65
65
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
66
66
|
}, {
|
|
67
|
+
iconName: string;
|
|
67
68
|
size: "small" | "medium" | "large" | "xl";
|
|
68
69
|
disabled: boolean;
|
|
69
70
|
title: string;
|
|
70
|
-
iconName: string;
|
|
71
71
|
backgroundColor: "blue" | "none";
|
|
72
72
|
iconColor: "blue" | "white" | "gray";
|
|
73
73
|
}>;
|
|
@@ -17,6 +17,7 @@ import UiListItem from "./UiListItem/UiListItem.vue";
|
|
|
17
17
|
import UiMenu from "./UiMenu/UiMenu.vue";
|
|
18
18
|
import UiOverlay from "./UiOverlay/UiOverlay.vue";
|
|
19
19
|
import UiOverlayMenu from "./UiOverlayMenu/UiOverlayMenu.vue";
|
|
20
|
+
import UiRadioInputGroup from '../components/UiRadioInputGroup/UiRadioInputGroup.vue';
|
|
20
21
|
import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
|
|
21
22
|
import UiSection from "./UiSection/UiSection.vue";
|
|
22
23
|
import UiSectionDivider from "./UiSectionDivider/UiSectionDivider.vue";
|
|
@@ -24,4 +25,4 @@ import UiSkeletonBox from "./UiSkeletonBox/UiSkeletonBox.vue";
|
|
|
24
25
|
import UiSpinner from "./UiSpinner/UiSpinner.vue";
|
|
25
26
|
import UiSnackbar from "./UiSnackbar/UiSnackbar.vue";
|
|
26
27
|
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, };
|
|
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, };
|