@wisemen/vue-core-design-system 0.14.0 → 0.15.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 (67) hide show
  1. package/dist/composables/useIsReducedMotion.composable.d.ts +2 -0
  2. package/dist/index.cjs +241 -132
  3. package/dist/index.d.ts +1 -0
  4. package/dist/index.js +24376 -28692
  5. package/dist/locales/en-US.json.d.ts +18 -0
  6. package/dist/locales/nl-BE.json.d.ts +18 -0
  7. package/dist/locales-C4VLVD0U.cjs +1 -0
  8. package/dist/{locales-CSDRSxrD.js → locales-DbH7vFM7.js} +36 -0
  9. package/dist/locales.cjs +1 -1
  10. package/dist/locales.d.ts +36 -0
  11. package/dist/locales.js +1 -1
  12. package/dist/plugins/i18n.plugin.d.ts +36 -0
  13. package/dist/style.css +2 -0
  14. package/dist/types/popper.type.d.ts +5 -5
  15. package/dist/ui/address-autocomplete/AddressAutocompleteSelectedCard.d.ts +23 -0
  16. package/dist/ui/address-autocomplete/addressAutocompleteCountry.composable.d.ts +12 -0
  17. package/dist/ui/address-autocomplete/stories/AddressAutocompletePlayground.d.ts +1 -1
  18. package/dist/ui/address-autocomplete/stories/addressAutocomplete.story.d.ts +1 -1
  19. package/dist/ui/base-header/BaseHeader.d.ts +13 -0
  20. package/dist/ui/base-header/baseHeader.props.d.ts +13 -0
  21. package/dist/ui/base-header/baseHeader.type.d.ts +23 -0
  22. package/dist/ui/base-header/index.d.ts +3 -0
  23. package/dist/ui/column-layout/ColumnLayout.d.ts +1 -1
  24. package/dist/ui/column-layout/columnLayout.props.d.ts +1 -1
  25. package/dist/ui/command-menu/CommandMenu.d.ts +2 -2
  26. package/dist/ui/config-provider/ConfigProvider.d.ts +3 -11
  27. package/dist/ui/config-provider/config.types.d.ts +4 -1
  28. package/dist/ui/dashboard-page/DashboardPage.d.ts +1 -8
  29. package/dist/ui/dashboard-page/Page.d.ts +4 -1
  30. package/dist/ui/dashboard-page/centered-content/DashboardPageCenteredContent.d.ts +24 -0
  31. package/dist/ui/dashboard-page/centered-content/DashboardPageCenteredContentHeader.d.ts +28 -0
  32. package/dist/ui/dashboard-page/centered-content/DashboardPageCenteredContentHeaderScrollGradient.d.ts +2 -0
  33. package/dist/ui/dashboard-page/centered-content/DashboardPageCenteredContentScrollable.d.ts +24 -0
  34. package/dist/ui/dashboard-page/index.d.ts +3 -0
  35. package/dist/ui/dashboard-page/stories/DashboardCenteredPagePlayground.d.ts +2 -0
  36. package/dist/ui/dashboard-page/stories/DashboardCenteredPageScrollablePlayground.d.ts +2 -0
  37. package/dist/ui/dashboard-page/stories/dashboardPage.story.d.ts +2 -0
  38. package/dist/ui/dialog/Dialog.d.ts +2 -2
  39. package/dist/ui/dropdown-menu/DropdownMenu.d.ts +1 -1
  40. package/dist/ui/featured-icon/FeaturedIcon.d.ts +7 -0
  41. package/dist/ui/featured-icon/featuredIcon.props.d.ts +25 -0
  42. package/dist/ui/featured-icon/featuredIcon.style.d.ts +122 -0
  43. package/dist/ui/featured-icon/index.d.ts +2 -0
  44. package/dist/ui/featured-icon/stories/FeaturedIconPlayground.d.ts +12 -0
  45. package/dist/ui/featured-icon/stories/featuredIcon.story.d.ts +37 -0
  46. package/dist/ui/index.d.ts +2 -0
  47. package/dist/ui/layout/MainLayoutCornerHighlight.d.ts +2 -0
  48. package/dist/ui/layout/mainContentDetailPane.composable.d.ts +1 -0
  49. package/dist/ui/layout/mainContentDetailPane.context.d.ts +9 -0
  50. package/dist/ui/logo/logo.props.d.ts +1 -1
  51. package/dist/ui/popover/Popover.d.ts +1 -1
  52. package/dist/ui/select/SelectContent.d.ts +3 -2
  53. package/dist/ui/select/select.props.d.ts +4 -1
  54. package/dist/ui/switch/Switch.d.ts +0 -1
  55. package/dist/ui/switch/stories/SwitchPlayground.d.ts +0 -2
  56. package/dist/ui/switch/stories/switch.story.d.ts +0 -8
  57. package/dist/ui/switch/switch.props.d.ts +0 -5
  58. package/dist/ui/text-field/stories/TextFieldPlayground.d.ts +1 -1
  59. package/dist/ui/text-field/stories/textField.story.d.ts +1 -1
  60. package/dist/ui/toast/toast.composable.d.ts +2 -0
  61. package/dist/ui/tooltip/Tooltip.d.ts +1 -1
  62. package/dist/ui/tooltip/tooltip.style.d.ts +9 -0
  63. package/package.json +15 -12
  64. package/dist/index.css +0 -2
  65. package/dist/locales-DHNt4L1K.cjs +0 -1
  66. package/dist/source.css +0 -137
  67. /package/dist/{styles → libs}/tailwindVariants.lib.d.ts +0 -0
@@ -0,0 +1,2 @@
1
+ import { ComputedRef } from 'vue';
2
+ export declare const useIsReducedMotion: (reducedMotion?: ComputedRef<boolean>) => ComputedRef<boolean>;