@maltjoy/core-vue 5.23.1 → 6.0.1

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.
@@ -1,15 +1,6 @@
1
1
  import { TJoyButtonSizes, TJoyButtonVariants } from './JoyButton.types';
2
2
  import { PropType } from 'vue';
3
3
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
- /**
5
- * If you only need a button with an icon. To keep your component accessible, you can give a text as slot, it will be used as title and aria-label.
6
- * This property takes effect only if icon property is set
7
- * @deprecated Use `VJoyIconButton` instead.
8
- */
9
- circle: {
10
- type: BooleanConstructor;
11
- default: boolean;
12
- };
13
4
  /** The button takes all the available space (100% width) */
14
5
  full: {
15
6
  type: BooleanConstructor;
@@ -51,15 +42,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
51
42
  }>, {
52
43
  generatedId: string;
53
44
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
54
- /**
55
- * If you only need a button with an icon. To keep your component accessible, you can give a text as slot, it will be used as title and aria-label.
56
- * This property takes effect only if icon property is set
57
- * @deprecated Use `VJoyIconButton` instead.
58
- */
59
- circle: {
60
- type: BooleanConstructor;
61
- default: boolean;
62
- };
63
45
  /** The button takes all the available space (100% width) */
64
46
  full: {
65
47
  type: BooleanConstructor;
@@ -99,7 +81,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
99
81
  type: StringConstructor;
100
82
  };
101
83
  }>> & Readonly<{}>, {
102
- circle: boolean;
103
84
  size: TJoyButtonSizes;
104
85
  loading: boolean;
105
86
  full: boolean;
@@ -110,7 +110,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
110
110
  label?: ((option: Option) => any) | undefined;
111
111
  /** Header that will be injected in the VJoyDropdownList */
112
112
  'dropdown-list-header'?: (() => any) | undefined;
113
- /** Free slot in order to render any kind of component. Can be handy to use it with VJoyMultiCheckbox for instance. */
113
+ /** Free slot in order to render any kind of component. Can be handy to use it with VJoyCheckboxGroup for instance. */
114
114
  'dropdown-list-items'?: (() => any) | undefined;
115
115
  /** Use it to customize the innerHTML of the li item. See https://vuejs.org/guide/components/slots.html#scoped-slots */
116
116
  'dropdown-list-item'?: ((option: Option) => any) | undefined;
@@ -121,7 +121,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
121
121
  label?: ((option: Option) => any) | undefined;
122
122
  /** Header that will be injected in the VJoyDropdownList */
123
123
  'dropdown-list-header'?: (() => any) | undefined;
124
- /** Free slot in order to render any kind of component. Can be handy to use it with VJoyMultiCheckbox for instance. */
124
+ /** Free slot in order to render any kind of component. Can be handy to use it with VJoyCheckboxGroup for instance. */
125
125
  'dropdown-list-items'?: (() => any) | undefined;
126
126
  /** Use it to customize the innerHTML of the li item. See https://vuejs.org/guide/components/slots.html#scoped-slots */
127
127
  'dropdown-list-item'?: ((option: Option) => any) | undefined;
@@ -15,11 +15,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
15
15
  type: PropType<string[]>;
16
16
  required: false;
17
17
  };
18
- /**
19
- * Error message to display. If you need a list of errors, use the slot instead
20
- * @deprecated Use the slot instead, or the errors prop.
21
- */
22
- noHtmlErrorText: StringConstructor;
23
18
  /**
24
19
  * Allows to remove any bottom margin on the component
25
20
  */
@@ -43,11 +38,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<im
43
38
  type: PropType<string[]>;
44
39
  required: false;
45
40
  };
46
- /**
47
- * Error message to display. If you need a list of errors, use the slot instead
48
- * @deprecated Use the slot instead, or the errors prop.
49
- */
50
- noHtmlErrorText: StringConstructor;
51
41
  /**
52
42
  * Allows to remove any bottom margin on the component
53
43
  */
@@ -24,16 +24,8 @@ export interface VJoyInputProps {
24
24
  /** Add a JoyIcon / joy-icon with given name on left-side. */
25
25
  icon?: TJoyIconsNames;
26
26
  size?: TJoyInputSizes;
27
- /**
28
- * @deprecated Password mode is deprecated on VJoyInput.
29
- * Use VJoyInputPassword for password fields and toggle behavior.
30
- */
27
+ /** HTML input type. Use VJoyInputPassword for password fields. */
31
28
  type?: string;
32
- /**
33
- * @deprecated Use VJoyInputNumber instead.
34
- * Adds a legend like symbol on the right of the component. Made for number based values
35
- */
36
- unit?: string;
37
29
  /** Activates the readonly mode for the input */
38
30
  readonly?: boolean;
39
31
  /** When using the clearable property, you have to specific an aria-label for accessibility. */
@@ -20,8 +20,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<VJ
20
20
  requiredMark: boolean;
21
21
  autofocus: boolean;
22
22
  modelModifiers: Partial<Record<"number" | "trim" | "lazy", boolean>>;
23
- unit: string;
24
23
  readonly: boolean;
24
+ unit: string;
25
25
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
26
26
  default?(_: {}): any;
27
27
  }>;
@@ -1,12 +1 @@
1
- /**
2
- * Backward compatibility type re-exports.
3
- * VJoyMultiCheckbox has been renamed to VJoyCheckboxGroup.
4
- * Component re-exports (VJoyCheckboxGroup / VJoyMultiCheckbox) are handled
5
- * by the auto-generated barrel in index.ts via directory scanning.
6
- * This file only re-exports the associated types under both old and new names.
7
- */
8
1
  export type { Option as CheckboxGroupOption, CheckboxGroupProps } from './JoyCheckboxGroup/VJoyCheckboxGroup.vue';
9
- /** @deprecated Use CheckboxGroupOption instead */
10
- export type { Option as MultiCheckboxOption } from './JoyCheckboxGroup/VJoyCheckboxGroup.vue';
11
- /** @deprecated Use CheckboxGroupProps instead */
12
- export type { CheckboxGroupProps as MulticheckboxProps } from './JoyCheckboxGroup/VJoyCheckboxGroup.vue';
@@ -46,7 +46,6 @@ import { default as VJoyLink } from './JoyLink/VJoyLink.vue';
46
46
  import { default as VJoyListItem } from './JoyListItem/VJoyListItem.vue';
47
47
  import { default as VJoyMenu } from './JoyMenu/VJoyMenu.vue';
48
48
  import { default as VJoyMenuItem } from './JoyMenuItem/VJoyMenuItem.vue';
49
- import { default as VJoyMultiCheckbox } from './JoyMultiCheckbox/VJoyMultiCheckbox.vue';
50
49
  import { default as VJoyPagination } from './JoyPagination/VJoyPagination.vue';
51
50
  import { default as VJoyPanel } from './JoyPanel/VJoyPanel.vue';
52
51
  import { default as VJoyPanelSection } from './JoyPanelSection/VJoyPanelSection.vue';
@@ -81,5 +80,5 @@ import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
81
80
  import { default as VJoyWalkthrough } from './JoyWalkthrough/VJoyWalkthrough.vue';
82
81
  import { default as VJoyWalkthroughTrigger } from './JoyWalkthroughTrigger/VJoyWalkthroughTrigger.vue';
83
82
  import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
84
- export { VJoyAdminBanner, VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyButtonCard, VJoyCheckbox, VJoyCheckboxCard, VJoyCheckboxGroup, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyDialog, VJoyDialogTrigger, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFloatingActionsBar, VJoyFormError, VJoyFormFieldSkeleton, VJoyFormGroup, VJoyFunnel, VJoyFunnelFooter, VJoyFunnelHeader, VJoyHighlight, VJoyIcon, VJoyIconButton, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyInputDigit, VJoyInputNumber, VJoyInputPassword, VJoyLabel, VJoyLink, VJoyListItem, VJoyMenu, VJoyMenuItem, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyPasswordRequirement, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyText, VJoyTextarea, VJoyTitleBrand, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWalkthrough, VJoyWalkthroughTrigger, VJoyWrapper, };
83
+ export { VJoyAdminBanner, VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyButtonCard, VJoyCheckbox, VJoyCheckboxCard, VJoyCheckboxGroup, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyDialog, VJoyDialogTrigger, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFloatingActionsBar, VJoyFormError, VJoyFormFieldSkeleton, VJoyFormGroup, VJoyFunnel, VJoyFunnelFooter, VJoyFunnelHeader, VJoyHighlight, VJoyIcon, VJoyIconButton, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyInputDigit, VJoyInputNumber, VJoyInputPassword, VJoyLabel, VJoyLink, VJoyListItem, VJoyMenu, VJoyMenuItem, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyPasswordRequirement, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyText, VJoyTextarea, VJoyTitleBrand, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWalkthrough, VJoyWalkthroughTrigger, VJoyWrapper, };
85
84
  export * from './compat';