@lumx/vue 4.16.0-alpha.4 → 4.16.0-alpha.5

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.
@@ -9,42 +9,6 @@ declare const _default: {
9
9
  title: string;
10
10
  };
11
11
  export default _default;
12
- export declare const AutoFilterOptions: {
13
- play: ({ canvasElement }: any) => Promise<void>;
14
- args: {
15
- value: string;
16
- };
17
- decorators: ((story: any, context: any) => any)[];
18
- render: ({ value, onChange, onSelect, }: {
19
- value: string;
20
- onChange: (v: string) => void;
21
- onSelect?: (option: {
22
- value: string;
23
- }) => void;
24
- }) => import("vue/jsx-runtime").JSX.Element;
25
- };
26
- export declare const FilterOffOpenOnFocus: {
27
- play: ({ canvasElement }: any) => Promise<void>;
28
- args: {
29
- value: string;
30
- };
31
- decorators: ((story: any, context: any) => any)[];
32
- render: ({ value, onChange, onSelect }: any) => import("vue/jsx-runtime").JSX.Element;
33
- };
34
- export declare const SelectOptionUpdatesInput: {
35
- play: ({ canvasElement }: any) => Promise<void>;
36
- args: {
37
- value: string;
38
- };
39
- decorators: ((story: any, context: any) => any)[];
40
- render: ({ value, onChange, onSelect, }: {
41
- value: string;
42
- onChange: (v: string) => void;
43
- onSelect?: (option: {
44
- value: string;
45
- }) => void;
46
- }) => import("vue/jsx-runtime").JSX.Element;
47
- };
48
12
  export declare const MouseHoverDoesNotActivateOption: {
49
13
  play: ({ canvasElement }: any) => Promise<void>;
50
14
  args: {
@@ -132,3 +96,68 @@ export declare const OptionMoreInfoAriaDescribedBy: {
132
96
  onToggle?: (isOpen: boolean) => void;
133
97
  }) => import("vue/jsx-runtime").JSX.Element;
134
98
  };
99
+ export declare const ButtonTypeaheadFromClosed: {
100
+ play: ({ canvasElement }: any) => Promise<void>;
101
+ args: {
102
+ value: string;
103
+ };
104
+ decorators: ((story: any, context: any) => any)[];
105
+ render: ({ value, onSelect }: {
106
+ value: string;
107
+ onSelect: (option: {
108
+ value: string;
109
+ }) => void;
110
+ }) => import("vue/jsx-runtime").JSX.Element;
111
+ };
112
+ export declare const ButtonTypeaheadWhileOpen: {
113
+ play: ({ canvasElement }: any) => Promise<void>;
114
+ args: {
115
+ value: string;
116
+ };
117
+ decorators: ((story: any, context: any) => any)[];
118
+ render: ({ value, onSelect }: {
119
+ value: string;
120
+ onSelect: (option: {
121
+ value: string;
122
+ }) => void;
123
+ }) => import("vue/jsx-runtime").JSX.Element;
124
+ };
125
+ export declare const ButtonEndFromClosed: {
126
+ play: ({ canvasElement }: any) => Promise<void>;
127
+ args: {
128
+ value: string;
129
+ };
130
+ decorators: ((story: any, context: any) => any)[];
131
+ render: ({ value, onSelect }: {
132
+ value: string;
133
+ onSelect: (option: {
134
+ value: string;
135
+ }) => void;
136
+ }) => import("vue/jsx-runtime").JSX.Element;
137
+ };
138
+ export declare const ButtonHomeFromClosed: {
139
+ play: ({ canvasElement }: any) => Promise<void>;
140
+ args: {
141
+ value: string;
142
+ };
143
+ decorators: ((story: any, context: any) => any)[];
144
+ render: ({ value, onSelect }: {
145
+ value: string;
146
+ onSelect: (option: {
147
+ value: string;
148
+ }) => void;
149
+ }) => import("vue/jsx-runtime").JSX.Element;
150
+ };
151
+ export declare const ButtonArrowDownFromClosed: {
152
+ play: ({ canvasElement }: any) => Promise<void>;
153
+ args: {
154
+ value: string;
155
+ };
156
+ decorators: ((story: any, context: any) => any)[];
157
+ render: ({ value, onSelect }: {
158
+ value: string;
159
+ onSelect: (option: {
160
+ value: string;
161
+ }) => void;
162
+ }) => import("vue/jsx-runtime").JSX.Element;
163
+ };
@@ -21,6 +21,14 @@ export declare const SelectionUpdates: {
21
21
  render: () => any;
22
22
  play: ({ canvasElement }: any) => Promise<void>;
23
23
  };
24
+ export declare const TypeaheadWhileOpen: {
25
+ render: () => any;
26
+ play: ({ canvasElement }: any) => Promise<void>;
27
+ };
28
+ export declare const TypeaheadFromClosed: {
29
+ render: () => any;
30
+ play: ({ canvasElement }: any) => Promise<void>;
31
+ };
24
32
  /** Test infinite scroll loads more options when scrolling to the bottom */
25
33
  export declare const WithInfiniteScroll: {
26
34
  render: () => {