@maltjoy/core-vue 3.14.0 → 3.14.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.
@@ -41,7 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
41
41
  default: string;
42
42
  validator(variant: ButtonSizes): boolean;
43
43
  };
44
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
44
+ }, {
45
+ randomId: string;
46
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
45
47
  /**
46
48
  * 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.
47
49
  * This property takes effect only if icon property is set
@@ -3,3 +3,4 @@ import { Ref } from 'vue';
3
3
  import { LEVELS } from '../types';
4
4
  export declare function iconLevel(level: (typeof LEVELS)[number]): JoyIconsNames;
5
5
  export declare function focusOnFirstFocusableFormField(root: Ref): any;
6
+ export declare const generateRandomId: (length?: number) => string;