beeple-toolkit 1.0.18 → 1.0.21

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.
@@ -14,6 +14,7 @@ interface DropDownMenuItemProps {
14
14
  avatarAlt?: string;
15
15
  leadingIcon?: string;
16
16
  trailingIcon?: string;
17
+ color?: string;
17
18
  }
18
19
  declare const __VLS_export: import("vue").DefineComponent<DropDownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
20
  select: (option: string | number | DropDownOption | Record<string, unknown>) => any;
@@ -72,13 +72,17 @@ export interface TextProps {
72
72
  }
73
73
  export interface DropDownOption {
74
74
  label: string;
75
- value: unknown;
75
+ value?: unknown;
76
76
  disabled?: boolean;
77
77
  icon?: string;
78
+ color?: string;
78
79
  leadingIcon?: string;
79
80
  trailingIcon?: string;
80
81
  clickable?: boolean;
81
82
  onClick?: () => void;
83
+ href?: string;
84
+ dataRemote?: boolean;
85
+ visible?: boolean;
82
86
  avatar?: {
83
87
  photo?: string;
84
88
  fullName?: string;
@@ -237,7 +241,7 @@ export interface DatePickerProps {
237
241
  timezone?: string;
238
242
  }
239
243
  export interface MenuProps {
240
- items: DropDownOption[];
244
+ items: DropDownOption[] | DropDownOption[][];
241
245
  position?: 'top' | 'bottom' | 'left' | 'right';
242
246
  }
243
247
  export interface TextareaProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beeple-toolkit",
3
- "version": "1.0.18",
3
+ "version": "1.0.21",
4
4
  "description": "Vue 3 component library beeple-toolkit",
5
5
  "keywords": [
6
6
  "vue",