@wisemen/vue-core-design-system 0.17.0 → 1.1.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/composables/dateRangePicker.composable.d.ts +1 -1
- package/dist/index.cjs +73 -112
- package/dist/index.js +4828 -15296
- package/dist/style.css +1 -1
- package/dist/ui/config-provider/ConfigProvider.d.ts +1 -0
- package/dist/ui/config-provider/config.types.d.ts +6 -0
- package/dist/ui/dashboard-page/DashboardPage.d.ts +8 -1
- package/dist/ui/dashboard-page/detail-pane/DashboardPageDetailPaneCloseButton.d.ts +2 -0
- package/dist/ui/dashboard-page/detail-pane/detailPane.type.d.ts +1 -0
- package/dist/ui/dashboard-page/index.d.ts +1 -0
- package/dist/ui/index.d.ts +1 -0
- package/dist/ui/layout/mainContentDetailPane.context.d.ts +2 -1
- package/dist/ui/search/search.composable.d.ts +1 -1
- package/dist/ui/table/types/table.props.d.ts +8 -1
- package/dist/ui/table-customization/tableCustomization.composable.d.ts +1 -0
- package/package.json +11 -6
- package/skills/components/action-tooltip/SKILL.md +57 -0
- package/skills/components/adaptive-content/SKILL.md +72 -0
- package/skills/components/autocomplete/SKILL.md +70 -0
- package/skills/components/avatar/SKILL.md +58 -0
- package/skills/components/badge/SKILL.md +51 -0
- package/skills/components/breadcrumbs/SKILL.md +73 -0
- package/skills/components/button/SKILL.md +62 -0
- package/skills/components/card/SKILL.md +56 -0
- package/skills/components/checkbox/SKILL.md +64 -0
- package/skills/components/checkbox-group/SKILL.md +55 -0
- package/skills/components/clickable-element/SKILL.md +56 -0
- package/skills/components/column-layout/SKILL.md +56 -0
- package/skills/components/config-provider/SKILL.md +56 -0
- package/skills/components/confirm-dialog/SKILL.md +75 -0
- package/skills/components/dialog/SKILL.md +90 -0
- package/skills/components/dot/SKILL.md +57 -0
- package/skills/components/form/SKILL.md +70 -0
- package/skills/components/form-dialog/SKILL.md +87 -0
- package/skills/components/interactable/SKILL.md +56 -0
- package/skills/components/keyboard-shortcut/SKILL.md +54 -0
- package/skills/components/layout/SKILL.md +67 -0
- package/skills/components/loader/SKILL.md +53 -0
- package/skills/components/logo/SKILL.md +58 -0
- package/skills/components/number-badge/SKILL.md +54 -0
- package/skills/components/number-field/SKILL.md +66 -0
- package/skills/components/page/SKILL.md +80 -0
- package/skills/components/popover/SKILL.md +63 -0
- package/skills/components/scrollable/SKILL.md +59 -0
- package/skills/components/separator/SKILL.md +53 -0
- package/skills/components/sidebar/SKILL.md +90 -0
- package/skills/components/skeleton-item/SKILL.md +53 -0
- package/skills/components/switch/SKILL.md +60 -0
- package/skills/components/tabs/SKILL.md +81 -0
- package/skills/components/text/SKILL.md +56 -0
- package/skills/components/text-field/SKILL.md +63 -0
- package/skills/components/textarea-field/SKILL.md +61 -0
- package/skills/components/theme-provider/SKILL.md +58 -0
- package/skills/components/timeline/SKILL.md +64 -0
- package/skills/components/tooltip/SKILL.md +65 -0
|
@@ -12,7 +12,7 @@ export declare function useDateRangePicker({ maxDate, minDate, modelValue, }: Us
|
|
|
12
12
|
isSingleMonth: import('vue').ComputedRef<boolean>;
|
|
13
13
|
calendarPlaceholder: import('vue').ShallowRef<CalendarDate, CalendarDate>;
|
|
14
14
|
draftValue: import('vue').ShallowRef<DateRange, DateRange>;
|
|
15
|
-
locale: string
|
|
15
|
+
locale: import('vue').ComputedRef<string>;
|
|
16
16
|
maxDateValue: import('vue').ComputedRef<DateValue | undefined>;
|
|
17
17
|
minDateValue: import('vue').ComputedRef<DateValue | undefined>;
|
|
18
18
|
setPlaceholder: (date: CalendarDate) => void;
|