@onsvisual/svelte-components 0.1.90 → 0.1.91

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,53 @@
1
+ /** @typedef {typeof __propDef.props} AccessibleSelectProps */
2
+ /** @typedef {typeof __propDef.events} AccessibleSelectEvents */
3
+ /** @typedef {typeof __propDef.slots} AccessibleSelectSlots */
4
+ export default class AccessibleSelect extends SvelteComponentTyped<{
5
+ id?: string;
6
+ label?: string;
7
+ mode?: "default" | "search";
8
+ value?: any;
9
+ hideLabel?: boolean;
10
+ placeholder?: string;
11
+ options?: any[];
12
+ clearable?: boolean;
13
+ autoClear?: boolean;
14
+ labelKey?: string;
15
+ groupKey?: string;
16
+ loadOptions?: Function;
17
+ minLength?: number;
18
+ scriptUrl?: string;
19
+ }, {
20
+ change: CustomEvent<any>;
21
+ } & {
22
+ [evt: string]: CustomEvent<any>;
23
+ }, {}> {
24
+ }
25
+ export type AccessibleSelectProps = typeof __propDef.props;
26
+ export type AccessibleSelectEvents = typeof __propDef.events;
27
+ export type AccessibleSelectSlots = typeof __propDef.slots;
28
+ import { SvelteComponentTyped } from "svelte";
29
+ declare const __propDef: {
30
+ props: {
31
+ id?: string;
32
+ label?: string;
33
+ mode?: "default" | "search";
34
+ value?: object;
35
+ hideLabel?: boolean;
36
+ placeholder?: string;
37
+ options?: any[];
38
+ clearable?: boolean;
39
+ autoClear?: boolean;
40
+ labelKey?: string;
41
+ groupKey?: string | null;
42
+ loadOptions?: Function;
43
+ minLength?: number;
44
+ scriptUrl?: string;
45
+ };
46
+ events: {
47
+ change: CustomEvent<any>;
48
+ } & {
49
+ [evt: string]: CustomEvent<any>;
50
+ };
51
+ slots: {};
52
+ };
53
+ export {};
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ id: string;
3
+ label: string;
4
+ group: string;
5
+ }[];
6
+ export default _default;