@dpa-id-components/dpa-shared-components 4.0.1-3 → 4.0.2
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 +12 -3
- package/dist/components/index.d.ts +1 -2
- package/dist/components/testcomponent.vue.d.ts +2 -0
- package/dist/dpa-shared-components.mjs +2016 -2117
- package/dist/dpa-shared-components.umd.js +6 -6
- package/dist/tailwind.config.cjs +42 -37
- package/package.json +1 -2
- package/dist/UseTailwindBreakpoints.stories.ts +0 -22
- package/dist/UseTailwindBreakpoints.vue +0 -12
- package/dist/audio-inline-92256dc7.mjs +0 -19
- package/dist/graphic-inline-a41ad739.mjs +0 -19
- package/dist/picture-inline-0eb9c590.mjs +0 -19
- package/dist/screens.js +0 -13
- package/dist/screens.json +0 -7
- package/dist/tailwind/screens.d.ts +0 -8
- package/dist/tailwind/tailwind.config.d.cts +0 -214
- package/dist/tailwind/useTailwindBreakpoints.d.ts +0 -9
- package/dist/text-inline-cbb3242f.mjs +0 -15
- package/dist/useTailwindBreakpoints.ts +0 -19
- package/dist/video-inline-b961f9cd.mjs +0 -19
|
@@ -57,7 +57,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
57
57
|
default: string;
|
|
58
58
|
};
|
|
59
59
|
selectedDate: {
|
|
60
|
-
type: __PropType<string | Date | [Date, Date] |
|
|
60
|
+
type: __PropType<string | Date | [Date, Date] | {
|
|
61
|
+
month: number;
|
|
62
|
+
year: number;
|
|
63
|
+
} | undefined>;
|
|
61
64
|
required: false;
|
|
62
65
|
default: string;
|
|
63
66
|
};
|
|
@@ -163,7 +166,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
163
166
|
default: string;
|
|
164
167
|
};
|
|
165
168
|
selectedDate: {
|
|
166
|
-
type: __PropType<string | Date | [Date, Date] |
|
|
169
|
+
type: __PropType<string | Date | [Date, Date] | {
|
|
170
|
+
month: number;
|
|
171
|
+
year: number;
|
|
172
|
+
} | undefined>;
|
|
167
173
|
required: false;
|
|
168
174
|
default: string;
|
|
169
175
|
};
|
|
@@ -231,7 +237,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
231
237
|
placeholderText: string | undefined;
|
|
232
238
|
quickFilterRanges: PresetRange[] | null | undefined;
|
|
233
239
|
quickFilterHeadline: string | undefined;
|
|
234
|
-
selectedDate: string | Date | [Date, Date] |
|
|
240
|
+
selectedDate: string | Date | [Date, Date] | {
|
|
241
|
+
month: number;
|
|
242
|
+
year: number;
|
|
243
|
+
} | undefined;
|
|
235
244
|
autoPosition: boolean | undefined;
|
|
236
245
|
leftSidebar: boolean | undefined;
|
|
237
246
|
actionArea: boolean | undefined;
|
|
@@ -35,5 +35,4 @@ import UiSearchInput from "./UiSearchInput/UiSearchInput.vue";
|
|
|
35
35
|
import UiSearchBar from "./UiSearchBar/UiSearchBar.vue";
|
|
36
36
|
import UiSimpleInput from '../components/UiSimpleInput/UiSimpleInput.vue';
|
|
37
37
|
import UiColorPicker from "./UiColorPicker/UiColorPicker.vue";
|
|
38
|
-
|
|
39
|
-
export { DpaEventItem, DpaMediaItem, UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiCheckBoxGroup, UiChip, UiDatePicker, UiDatePickerMobile, 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, useTailwindBreakpoints, };
|
|
38
|
+
export { DpaEventItem, DpaMediaItem, UiAutocomplete, UiBadge, UiButton, UiButtonGroup, UiCard, UiCheckbox, UiCheckBoxGroup, UiChip, UiDatePicker, UiDatePickerMobile, 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;
|