beeple-toolkit 1.0.56 → 1.0.57

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.
@@ -17,6 +17,7 @@ interface DropDownMenuItemProps {
17
17
  trailingText?: string;
18
18
  trailingTextColor?: string;
19
19
  color?: string;
20
+ ariaLabel?: string;
20
21
  }
21
22
  declare const __VLS_export: import("vue").DefineComponent<DropDownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
23
  select: (option: string | number | DropDownOption | Record<string, unknown>) => any;
@@ -73,6 +73,8 @@ export interface TextProps {
73
73
  }
74
74
  export interface DropDownOption {
75
75
  label: string;
76
+ /** Accessible name announced by screen readers. When set, overrides the visible `label` as the aria-label without changing the visible text. */
77
+ ariaLabel?: string;
76
78
  value?: unknown;
77
79
  disabled?: boolean;
78
80
  icon?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beeple-toolkit",
3
- "version": "1.0.56",
3
+ "version": "1.0.57",
4
4
  "description": "Vue 3 component library beeple-toolkit",
5
5
  "keywords": [
6
6
  "vue",
@@ -72,7 +72,7 @@
72
72
  "happy-dom": "^20.0.0",
73
73
  "jsdom": "^27.0.0",
74
74
  "playwright": "^1.55.1",
75
- "prettier": "^3.6.2",
75
+ "prettier": "3.7.4",
76
76
  "rimraf": "^6.0.1",
77
77
  "storybook": "^10.2.15",
78
78
  "typescript": "~5.8.3",