@dpa-id-components/dpa-shared-components 4.3.0 → 5.0.1
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/UiDatePicker/UiDatePicker.vue.d.ts +11 -0
- package/dist/components/UiDatePickerMobile/UiDatePickerMobile.vue.d.ts +1 -1
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +11 -0
- package/dist/components/index.d.ts +1 -2
- package/dist/components/testcomponent.vue.d.ts +2 -0
- package/dist/dpa-shared-components.mjs +2819 -2948
- package/dist/dpa-shared-components.umd.js +8 -8
- package/dist/filter-e213ae59.mjs +15 -0
- package/dist/filter-outline-91e5aa0a.mjs +19 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -139,6 +139,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
139
139
|
required: false;
|
|
140
140
|
default: string;
|
|
141
141
|
};
|
|
142
|
+
iconLeft: {
|
|
143
|
+
type: __PropType<string | null | undefined>;
|
|
144
|
+
required: false;
|
|
145
|
+
default: null;
|
|
146
|
+
};
|
|
142
147
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "date-changed")[], "close" | "date-changed", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
143
148
|
definesRange: {
|
|
144
149
|
type: __PropType<boolean | undefined>;
|
|
@@ -273,6 +278,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
273
278
|
required: false;
|
|
274
279
|
default: string;
|
|
275
280
|
};
|
|
281
|
+
iconLeft: {
|
|
282
|
+
type: __PropType<string | null | undefined>;
|
|
283
|
+
required: false;
|
|
284
|
+
default: null;
|
|
285
|
+
};
|
|
276
286
|
}>> & {
|
|
277
287
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
278
288
|
"onDate-changed"?: ((...args: any[]) => any) | undefined;
|
|
@@ -306,5 +316,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
306
316
|
monthPicker: boolean | undefined;
|
|
307
317
|
customFormatCallback: ((value: Date | [Date, Date]) => string) | undefined;
|
|
308
318
|
inputLabel: string | undefined;
|
|
319
|
+
iconLeft: string | null | undefined;
|
|
309
320
|
}, {}>;
|
|
310
321
|
export default _sfc_main;
|
|
@@ -269,9 +269,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
269
269
|
firstAvailableDate: number | undefined;
|
|
270
270
|
maxDate: Date | undefined;
|
|
271
271
|
autoRange: number | null;
|
|
272
|
-
inputLabel: string | undefined;
|
|
273
272
|
showMultiCalendars: boolean | undefined;
|
|
274
273
|
independentMultiCalendars: boolean | undefined;
|
|
274
|
+
inputLabel: string | undefined;
|
|
275
275
|
mobileOverlayHeadline: string | undefined;
|
|
276
276
|
overlayHeadline: string | undefined;
|
|
277
277
|
hasHeader: boolean | undefined;
|
|
@@ -40,6 +40,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
40
|
required: false;
|
|
41
41
|
default: boolean;
|
|
42
42
|
};
|
|
43
|
+
iconLeft: {
|
|
44
|
+
type: __PropType<string | null | undefined>;
|
|
45
|
+
required: false;
|
|
46
|
+
default: null;
|
|
47
|
+
};
|
|
43
48
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
49
|
title: {
|
|
45
50
|
type: __PropType<string | undefined>;
|
|
@@ -81,11 +86,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
86
|
required: false;
|
|
82
87
|
default: boolean;
|
|
83
88
|
};
|
|
89
|
+
iconLeft: {
|
|
90
|
+
type: __PropType<string | null | undefined>;
|
|
91
|
+
required: false;
|
|
92
|
+
default: null;
|
|
93
|
+
};
|
|
84
94
|
}>> & {
|
|
85
95
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
86
96
|
}, {
|
|
87
97
|
title: string | undefined;
|
|
88
98
|
disabled: boolean | undefined;
|
|
99
|
+
iconLeft: string | null | undefined;
|
|
89
100
|
variant: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | "blue-blank" | undefined;
|
|
90
101
|
chevronIcon: string | undefined;
|
|
91
102
|
rotateIcon: boolean | undefined;
|
|
@@ -9,7 +9,6 @@ import UiCheckbox from "./UiCheckBox/UiCheckBox.vue";
|
|
|
9
9
|
import UiCheckBoxGroup from "./UiCheckBoxGroup/UiCheckBoxGroup.vue";
|
|
10
10
|
import UiChip from "./UiChip/UiChip.vue";
|
|
11
11
|
import UiDatePicker from "./UiDatePicker/UiDatePicker.vue";
|
|
12
|
-
import UiDatePickerMobile from "./UiDatePickerMobile/UiDatePickerMobile.vue";
|
|
13
12
|
import UiDialog from "./UiDialog/UiDialog.vue";
|
|
14
13
|
import UiFilterBadge from "./UiFilterBadge/UiFilterBadge.vue";
|
|
15
14
|
import UiFilterBadgeButton from "./UiFilterBadgeButton/UiFilterBadgeButton.vue";
|
|
@@ -35,4 +34,4 @@ import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
|
|
|
35
34
|
import UiSearchBar from "./UiSearchBar/UiSearchBar.vue";
|
|
36
35
|
import UiSimpleInput from '../components/UiSimpleInput/UiSimpleInput.vue';
|
|
37
36
|
import UiColorPicker from "./UiColorPicker/UiColorPicker.vue";
|
|
38
|
-
export { DpaEventItem, DpaMediaItem, UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiCheckBoxGroup, UiChip, UiDatePicker,
|
|
37
|
+
export { DpaEventItem, DpaMediaItem, UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiCheckBoxGroup, UiChip, UiDatePicker, UiDialog, UiFilterBadge, UiFilterBadgeButton, UiFilterButton, UiIcon, UiIconButton, UiInfoContent, UiInput, UiList, UiListItem, UiMenu, UiOverlay, UiOverlayMenu, UiRadioInputGroup, UiSection, UiSectionDivider, UiSkeletonBox, UiSpinner, UiSnackbar, UiToggleButton, UiTooltip, UiSearchInput, UiSearchBar, UiSimpleInput, UiColorPicker, };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|