@maltjoy/core-vue 4.5.0 → 4.7.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/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +2 -2
- package/dist/components/JoyFunnelHeader/VJoyFunnelHeader.vue.d.ts +13 -0
- package/dist/components/JoyIcon/JoyIcon.types.d.ts +1 -1
- package/dist/components/JoyLink/JoyLink.types.d.ts +1 -0
- package/dist/components/JoyLink/VJoyLink.vue.d.ts +6 -2
- package/dist/components/JoyRadio/VJoyRadio.vue.d.ts +6 -2
- package/dist/components/index.d.ts +2 -1
- package/dist/core-vue.js +803 -782
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +6 -5
- package/dist/style.css +1 -1
- package/joy-components.d.ts +1 -0
- package/package.json +4 -4
|
@@ -22,7 +22,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
22
22
|
default: boolean;
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
|
-
* Invalid state of the component
|
|
25
|
+
* DEPRECATED Invalid state of the component
|
|
26
26
|
*/
|
|
27
27
|
invalid: {
|
|
28
28
|
type: BooleanConstructor;
|
|
@@ -78,7 +78,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
78
78
|
default: boolean;
|
|
79
79
|
};
|
|
80
80
|
/**
|
|
81
|
-
* Invalid state of the component
|
|
81
|
+
* DEPRECATED Invalid state of the component
|
|
82
82
|
*/
|
|
83
83
|
invalid: {
|
|
84
84
|
type: BooleanConstructor;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<{
|
|
2
|
+
'funnel-header-left': () => any;
|
|
3
|
+
'funnel-header-right': () => any;
|
|
4
|
+
}> & {
|
|
5
|
+
'funnel-header-left': () => any;
|
|
6
|
+
'funnel-header-right': () => any;
|
|
7
|
+
}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { JoyIconsId } from '@maltjoy/icons';
|
|
2
2
|
import { TSizes, TLevels } from '../../types';
|
|
3
|
-
export type TJoyIconsColors = TLevels | 'primary' | 'secondary' | 'tertiary' | 'quaternary' | 'brand-primary' | 'brand-secondary' | 'white';
|
|
3
|
+
export type TJoyIconsColors = TLevels | 'neutral-50' | 'primary' | 'secondary' | 'tertiary' | 'quaternary' | 'brand-primary' | 'brand-secondary' | 'white';
|
|
4
4
|
export type TJoyIconSizes = TSizes;
|
|
5
5
|
export type TJoyIconsNames = JoyIconsId;
|
|
@@ -3,7 +3,6 @@ import { TJoyLinkColors } from './JoyLink.types';
|
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
href: {
|
|
5
5
|
type: StringConstructor;
|
|
6
|
-
required: true;
|
|
7
6
|
};
|
|
8
7
|
color: {
|
|
9
8
|
type: PropType<TJoyLinkColors>;
|
|
@@ -11,10 +10,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
11
10
|
};
|
|
12
11
|
icon: PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
13
12
|
text: PropType<string | null>;
|
|
13
|
+
type: {
|
|
14
|
+
type: PropType<"reset" | "submit" | "button">;
|
|
15
|
+
};
|
|
14
16
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
17
|
href: {
|
|
16
18
|
type: StringConstructor;
|
|
17
|
-
required: true;
|
|
18
19
|
};
|
|
19
20
|
color: {
|
|
20
21
|
type: PropType<TJoyLinkColors>;
|
|
@@ -22,6 +23,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
22
23
|
};
|
|
23
24
|
icon: PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
24
25
|
text: PropType<string | null>;
|
|
26
|
+
type: {
|
|
27
|
+
type: PropType<"reset" | "submit" | "button">;
|
|
28
|
+
};
|
|
25
29
|
}>> & Readonly<{}>, {
|
|
26
30
|
color: TJoyLinkColors;
|
|
27
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<{
|
|
@@ -68,14 +68,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
|
|
|
68
68
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<{
|
|
69
69
|
/** Default label of the radio */
|
|
70
70
|
default(): any;
|
|
71
|
-
/** Sub
|
|
71
|
+
/** Sub label, pre-styled. */
|
|
72
|
+
'radio-sublabel': () => any;
|
|
73
|
+
/** Radio content, styled like the expandable-content but always visible. */
|
|
72
74
|
'radio-content': () => any;
|
|
73
75
|
/** When using the theme outline, use this slot to inject hidden content */
|
|
74
76
|
'expandable-content': () => any;
|
|
75
77
|
}> & {
|
|
76
78
|
/** Default label of the radio */
|
|
77
79
|
default(): any;
|
|
78
|
-
/** Sub
|
|
80
|
+
/** Sub label, pre-styled. */
|
|
81
|
+
'radio-sublabel': () => any;
|
|
82
|
+
/** Radio content, styled like the expandable-content but always visible. */
|
|
79
83
|
'radio-content': () => any;
|
|
80
84
|
/** When using the theme outline, use this slot to inject hidden content */
|
|
81
85
|
'expandable-content': () => any;
|
|
@@ -28,6 +28,7 @@ import { default as VJoyFormError } from './JoyFormError/VJoyFormError.vue';
|
|
|
28
28
|
import { default as VJoyFormFieldSkeleton } from './JoyFormFieldSkeleton/VJoyFormFieldSkeleton.vue';
|
|
29
29
|
import { default as VJoyFunnel } from './JoyFunnel/VJoyFunnel.vue';
|
|
30
30
|
import { default as VJoyFunnelFooter } from './JoyFunnelFooter/VJoyFunnelFooter.vue';
|
|
31
|
+
import { default as VJoyFunnelHeader } from './JoyFunnelHeader/VJoyFunnelHeader.vue';
|
|
31
32
|
import { default as VJoyHeader } from './JoyHeader/VJoyHeader.vue';
|
|
32
33
|
import { default as VJoyHighlight } from './JoyHighlight/VJoyHighlight.vue';
|
|
33
34
|
import { default as VJoyIcon } from './JoyIcon/VJoyIcon.vue';
|
|
@@ -73,4 +74,4 @@ import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
|
|
|
73
74
|
import { default as VJoyWalkthrough } from './JoyWalkthrough/VJoyWalkthrough.vue';
|
|
74
75
|
import { default as VJoyWalkthroughTrigger } from './JoyWalkthroughTrigger/VJoyWalkthroughTrigger.vue';
|
|
75
76
|
import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
|
|
76
|
-
export { VJoyAdminBanner, 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, };
|
|
77
|
+
export { VJoyAdminBanner, 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, VJoyFunnelHeader, 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, };
|