@maltjoy/core-vue 4.2.1 → 4.4.0-beta

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 (30) hide show
  1. package/dist/components/JoyAvatar/VJoyAvatar.vue.d.ts +2 -2
  2. package/dist/components/JoyBottomSheet/VJoyBottomSheet.vue.d.ts +1 -1
  3. package/dist/components/JoyButton/VJoyButton.vue.d.ts +1 -1
  4. package/dist/components/JoyDialog/VJoyDialog.vue.d.ts +9 -11
  5. package/dist/components/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +28 -28
  6. package/dist/components/JoyDrawer/VJoyDrawer.vue.d.ts +11 -16
  7. package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +28 -28
  8. package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +1 -1
  9. package/dist/components/JoyIcon/VJoyIcon.vue.d.ts +1 -1
  10. package/dist/components/JoyProductTour/JoyProductTour.store.d.ts +2 -2
  11. package/dist/components/JoyProgressBar/VJoyProgressBar.vue.d.ts +11 -0
  12. package/dist/components/JoySnackbar/VJoySnackbar.vue.d.ts +1 -1
  13. package/dist/components/JoyStep/VJoyStep.vue.d.ts +1 -1
  14. package/dist/components/JoyStepper/VJoyStepper.vue.d.ts +3 -3
  15. package/dist/components/JoyTitleBrand/VJoyTitleBrand.vue.d.ts +19 -0
  16. package/dist/components/JoyWalkthrough/VJoyWalkthrough.vue.d.ts +0 -2
  17. package/dist/components/index.d.ts +2 -1
  18. package/dist/{style-DGXw70Nw.js → core-vue.js} +1674 -1645
  19. package/dist/core-vue.umd.cjs +12 -0
  20. package/dist/joy-core-vue-manifest.json +9 -2
  21. package/dist/style.css +1 -1
  22. package/joy-components.d.ts +1 -0
  23. package/package.json +28 -28
  24. package/LICENSE +0 -21
  25. package/dist/components/main.d.ts +0 -8
  26. package/dist/components.cjs +0 -1
  27. package/dist/components.js +0 -87
  28. package/dist/main.cjs +0 -1
  29. package/dist/main.js +0 -164
  30. package/dist/style-C6WDB8oM.cjs +0 -12
@@ -46,10 +46,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
46
46
  }, import("vue").PublicProps, {
47
47
  size: import("../JoyStep/TJoyStep.types.js").TJoyStepSizes;
48
48
  id: string;
49
+ showLabel: boolean;
49
50
  completed: boolean;
50
51
  currentSubStep: number;
51
52
  subSteps: number;
52
- showLabel: boolean;
53
53
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
54
54
  P: {};
55
55
  B: {};
@@ -89,10 +89,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
89
89
  }, {}, {}, {}, {
90
90
  size: import("../JoyStep/TJoyStep.types.js").TJoyStepSizes;
91
91
  id: string;
92
+ showLabel: boolean;
92
93
  completed: boolean;
93
94
  currentSubStep: number;
94
95
  subSteps: number;
95
- showLabel: boolean;
96
96
  }>;
97
97
  __isFragment?: undefined;
98
98
  __isTeleport?: undefined;
@@ -131,10 +131,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
131
131
  }, string, {
132
132
  size: import("../JoyStep/TJoyStep.types.js").TJoyStepSizes;
133
133
  id: string;
134
+ showLabel: boolean;
134
135
  completed: boolean;
135
136
  currentSubStep: number;
136
137
  subSteps: number;
137
- showLabel: boolean;
138
138
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
139
139
  $slots: Readonly<{
140
140
  default(): any;
@@ -0,0 +1,19 @@
1
+ export interface TitleBrandProps {
2
+ /** HTML tag that will be used. Default to "p" but if it's used as an actual heading, prefer using Hn tags. */
3
+ tag?: string;
4
+ }
5
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<TitleBrandProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TitleBrandProps> & Readonly<{}>, {
6
+ tag: string;
7
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, Readonly<{
8
+ /** Inject you title content here. To highlight a specific part, use a "span" tag. */
9
+ default(): any;
10
+ }> & {
11
+ /** Inject you title content here. To highlight a specific part, use a "span" tag. */
12
+ default(): any;
13
+ }>;
14
+ export default _default;
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -5,7 +5,6 @@ interface Props {
5
5
  triggerTitle?: string;
6
6
  triggerSubtitle?: string;
7
7
  triggerIcon?: TJoyIconsNames;
8
- progress?: number;
9
8
  footer?: string;
10
9
  /** Here you can pass an object containing any html attribute you need for the trigger button */
11
10
  triggerAttrs?: {
@@ -24,7 +23,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<Pr
24
23
  "onHide:header"?: (() => any) | undefined;
25
24
  "onHide:footer"?: (() => any) | undefined;
26
25
  }>, {
27
- progress: number;
28
26
  open: boolean;
29
27
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
30
28
  "walkthrough-illustration"?(_: {}): any;
@@ -65,10 +65,11 @@ import { default as VJoyTemplate } from './JoyTemplate/VJoyTemplate.vue';
65
65
  import { default as VJoyTemplateShape } from './JoyTemplateShape/VJoyTemplateShape.vue';
66
66
  import { default as VJoyText } from './JoyText/VJoyText.vue';
67
67
  import { default as VJoyTextarea } from './JoyTextarea/VJoyTextarea.vue';
68
+ import { default as VJoyTitleBrand } from './JoyTitleBrand/VJoyTitleBrand.vue';
68
69
  import { default as VJoyToggle } from './JoyToggle/VJoyToggle.vue';
69
70
  import { default as VJoyTooltip } from './JoyTooltip/VJoyTooltip.vue';
70
71
  import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
71
72
  import { default as VJoyWalkthrough } from './JoyWalkthrough/VJoyWalkthrough.vue';
72
73
  import { default as VJoyWalkthroughTrigger } from './JoyWalkthroughTrigger/VJoyWalkthroughTrigger.vue';
73
74
  import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
74
- export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyFunnelFooter, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyListItem, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWalkthrough, VJoyWalkthroughTrigger, VJoyWrapper, };
75
+ export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyFunnelFooter, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyListItem, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyTitleBrand, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWalkthrough, VJoyWalkthroughTrigger, VJoyWrapper, };