@codemonster-ru/vueforge 0.87.0 → 0.88.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.
@@ -0,0 +1 @@
1
+ export {};
@@ -18,6 +18,9 @@ interface Props {
18
18
  loadingText?: string;
19
19
  emptyText?: string;
20
20
  filter?: boolean;
21
+ ariaLabel?: string;
22
+ ariaLabelledby?: string;
23
+ ariaDescribedby?: string;
21
24
  variant?: Variant;
22
25
  size?: Size;
23
26
  }
@@ -42,6 +45,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
42
45
  modelValue: OptionValue;
43
46
  placeholder: string;
44
47
  readonly: boolean;
48
+ ariaLabel: string;
49
+ ariaLabelledby: string;
50
+ ariaDescribedby: string;
45
51
  loadingText: string;
46
52
  emptyText: string;
47
53
  options: Array<OptionItem>;
@@ -22,6 +22,9 @@ interface Props {
22
22
  strict?: boolean;
23
23
  allowCreate?: boolean;
24
24
  clearable?: boolean;
25
+ ariaLabel?: string;
26
+ ariaLabelledby?: string;
27
+ ariaDescribedby?: string;
25
28
  variant?: Variant;
26
29
  size?: Size;
27
30
  }
@@ -51,6 +54,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
51
54
  modelValue: OptionValue;
52
55
  placeholder: string;
53
56
  readonly: boolean;
57
+ ariaLabel: string;
58
+ ariaLabelledby: string;
59
+ ariaDescribedby: string;
54
60
  clearable: boolean;
55
61
  loadingText: string;
56
62
  emptyText: string;
@@ -68,10 +68,10 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
68
68
  items: Array<NotificationCenterItem>;
69
69
  modelValue: boolean;
70
70
  emptyText: string;
71
+ clearLabel: string;
71
72
  closeOnOverlay: boolean;
72
73
  closeOnEsc: boolean;
73
74
  markAllLabel: string;
74
- clearLabel: string;
75
75
  closeLabel: string;
76
76
  readLabel: string;
77
77
  unreadLabel: string;
@@ -12,6 +12,11 @@ interface Props {
12
12
  optionValue?: string;
13
13
  placeholder?: string;
14
14
  disabled?: boolean;
15
+ readonly?: boolean;
16
+ clearable?: boolean;
17
+ clearLabel?: string;
18
+ ariaLabel?: string;
19
+ panelAriaLabel?: string;
15
20
  variant?: Variant;
16
21
  size?: Size;
17
22
  }
@@ -31,9 +36,14 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
31
36
  variant: Variant;
32
37
  modelValue: string | number;
33
38
  placeholder: string;
39
+ readonly: boolean;
40
+ ariaLabel: string;
41
+ clearable: boolean;
34
42
  options: Array<OptionItem>;
35
43
  optionLabel: string;
36
44
  optionValue: string;
45
+ clearLabel: string;
46
+ panelAriaLabel: string;
37
47
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
38
48
  root: HTMLDivElement;
39
49
  trigger: HTMLButtonElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.87.0",
3
+ "version": "0.88.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",
@@ -84,3 +84,4 @@
84
84
  }
85
85
 
86
86
 
87
+