@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.
Files changed (55) hide show
  1. package/dist/composables/dateRangePicker.composable.d.ts +1 -1
  2. package/dist/index.cjs +73 -112
  3. package/dist/index.js +4828 -15296
  4. package/dist/style.css +1 -1
  5. package/dist/ui/config-provider/ConfigProvider.d.ts +1 -0
  6. package/dist/ui/config-provider/config.types.d.ts +6 -0
  7. package/dist/ui/dashboard-page/DashboardPage.d.ts +8 -1
  8. package/dist/ui/dashboard-page/detail-pane/DashboardPageDetailPaneCloseButton.d.ts +2 -0
  9. package/dist/ui/dashboard-page/detail-pane/detailPane.type.d.ts +1 -0
  10. package/dist/ui/dashboard-page/index.d.ts +1 -0
  11. package/dist/ui/index.d.ts +1 -0
  12. package/dist/ui/layout/mainContentDetailPane.context.d.ts +2 -1
  13. package/dist/ui/search/search.composable.d.ts +1 -1
  14. package/dist/ui/table/types/table.props.d.ts +8 -1
  15. package/dist/ui/table-customization/tableCustomization.composable.d.ts +1 -0
  16. package/package.json +11 -6
  17. package/skills/components/action-tooltip/SKILL.md +57 -0
  18. package/skills/components/adaptive-content/SKILL.md +72 -0
  19. package/skills/components/autocomplete/SKILL.md +70 -0
  20. package/skills/components/avatar/SKILL.md +58 -0
  21. package/skills/components/badge/SKILL.md +51 -0
  22. package/skills/components/breadcrumbs/SKILL.md +73 -0
  23. package/skills/components/button/SKILL.md +62 -0
  24. package/skills/components/card/SKILL.md +56 -0
  25. package/skills/components/checkbox/SKILL.md +64 -0
  26. package/skills/components/checkbox-group/SKILL.md +55 -0
  27. package/skills/components/clickable-element/SKILL.md +56 -0
  28. package/skills/components/column-layout/SKILL.md +56 -0
  29. package/skills/components/config-provider/SKILL.md +56 -0
  30. package/skills/components/confirm-dialog/SKILL.md +75 -0
  31. package/skills/components/dialog/SKILL.md +90 -0
  32. package/skills/components/dot/SKILL.md +57 -0
  33. package/skills/components/form/SKILL.md +70 -0
  34. package/skills/components/form-dialog/SKILL.md +87 -0
  35. package/skills/components/interactable/SKILL.md +56 -0
  36. package/skills/components/keyboard-shortcut/SKILL.md +54 -0
  37. package/skills/components/layout/SKILL.md +67 -0
  38. package/skills/components/loader/SKILL.md +53 -0
  39. package/skills/components/logo/SKILL.md +58 -0
  40. package/skills/components/number-badge/SKILL.md +54 -0
  41. package/skills/components/number-field/SKILL.md +66 -0
  42. package/skills/components/page/SKILL.md +80 -0
  43. package/skills/components/popover/SKILL.md +63 -0
  44. package/skills/components/scrollable/SKILL.md +59 -0
  45. package/skills/components/separator/SKILL.md +53 -0
  46. package/skills/components/sidebar/SKILL.md +90 -0
  47. package/skills/components/skeleton-item/SKILL.md +53 -0
  48. package/skills/components/switch/SKILL.md +60 -0
  49. package/skills/components/tabs/SKILL.md +81 -0
  50. package/skills/components/text/SKILL.md +56 -0
  51. package/skills/components/text-field/SKILL.md +63 -0
  52. package/skills/components/textarea-field/SKILL.md +61 -0
  53. package/skills/components/theme-provider/SKILL.md +58 -0
  54. package/skills/components/timeline/SKILL.md +64 -0
  55. 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;