@sveltia/ui 0.15.16 → 0.16.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.
- package/package/components/alert/alert.svelte.d.ts +37 -25
- package/package/components/button/button-group.svelte.d.ts +34 -24
- package/package/components/button/button.svelte.d.ts +118 -119
- package/package/components/button/select-button-group.svelte.d.ts +41 -31
- package/package/components/button/select-button.svelte.d.ts +65 -43
- package/package/components/button/split-button.svelte.d.ts +42 -41
- package/package/components/calendar/calendar.svelte.d.ts +24 -23
- package/package/components/checkbox/checkbox-group.svelte.d.ts +37 -27
- package/package/components/checkbox/checkbox.svelte.d.ts +54 -38
- package/package/components/dialog/alert-dialog.svelte.d.ts +44 -34
- package/package/components/dialog/confirmation-dialog.svelte.d.ts +45 -35
- package/package/components/dialog/dialog.svelte.d.ts +83 -53
- package/package/components/dialog/prompt-dialog.svelte.d.ts +55 -43
- package/package/components/disclosure/disclosure.svelte.d.ts +61 -48
- package/package/components/divider/divider.svelte.d.ts +25 -24
- package/package/components/divider/spacer.svelte.d.ts +24 -23
- package/package/components/drawer/drawer.svelte.d.ts +75 -47
- package/package/components/grid/grid-body.svelte.d.ts +35 -25
- package/package/components/grid/grid-cell.svelte.d.ts +34 -24
- package/package/components/grid/grid-col-header.svelte.d.ts +34 -24
- package/package/components/grid/grid-foot.svelte.d.ts +34 -24
- package/package/components/grid/grid-head.svelte.d.ts +34 -24
- package/package/components/grid/grid-row-header.svelte.d.ts +34 -24
- package/package/components/grid/grid-row.svelte.d.ts +42 -32
- package/package/components/grid/grid.svelte.d.ts +39 -29
- package/package/components/icon/icon.svelte.d.ts +24 -23
- package/package/components/listbox/listbox.svelte.d.ts +45 -35
- package/package/components/listbox/option-group.svelte.d.ts +37 -27
- package/package/components/listbox/option.svelte.d.ts +73 -49
- package/package/components/menu/menu-button.svelte.d.ts +69 -42
- package/package/components/menu/menu-item-checkbox.svelte.d.ts +44 -34
- package/package/components/menu/menu-item-group.svelte.d.ts +37 -27
- package/package/components/menu/menu-item-radio.svelte.d.ts +44 -34
- package/package/components/menu/menu-item.svelte.d.ts +70 -44
- package/package/components/menu/menu.svelte.d.ts +38 -28
- package/package/components/radio/radio-group.svelte.d.ts +42 -32
- package/package/components/radio/radio.svelte.d.ts +45 -35
- package/package/components/select/combobox.svelte.d.ts +53 -37
- package/package/components/select/select-tags.svelte.d.ts +38 -37
- package/package/components/select/select.svelte +1 -1
- package/package/components/select/select.svelte.d.ts +43 -33
- package/package/components/slider/slider.svelte.d.ts +37 -36
- package/package/components/switch/switch.svelte.d.ts +43 -33
- package/package/components/table/table-body.svelte.d.ts +35 -25
- package/package/components/table/table-cell.svelte.d.ts +34 -24
- package/package/components/table/table-col-header.svelte.d.ts +34 -24
- package/package/components/table/table-foot.svelte.d.ts +34 -24
- package/package/components/table/table-head.svelte.d.ts +34 -24
- package/package/components/table/table-row-header.svelte.d.ts +34 -24
- package/package/components/table/table-row.svelte.d.ts +34 -24
- package/package/components/table/table.svelte.d.ts +34 -24
- package/package/components/tabs/tab-box.svelte.d.ts +34 -24
- package/package/components/tabs/tab-list.svelte.d.ts +40 -30
- package/package/components/tabs/tab-panel.svelte.d.ts +34 -24
- package/package/components/tabs/tab-panels.svelte.d.ts +33 -23
- package/package/components/tabs/tab.svelte.d.ts +60 -38
- package/package/components/text-editor/lexical-root.svelte.d.ts +27 -26
- package/package/components/text-editor/text-editor.svelte.d.ts +31 -30
- package/package/components/text-editor/toolbar/editor-toolbar.svelte.d.ts +23 -22
- package/package/components/text-editor/toolbar/format-text-button.svelte.d.ts +22 -21
- package/package/components/text-editor/toolbar/insert-link-button.svelte.d.ts +22 -21
- package/package/components/text-editor/toolbar/toggle-block-menu-item.svelte.d.ts +22 -21
- package/package/components/text-field/number-input.svelte.d.ts +46 -45
- package/package/components/text-field/password-input.svelte.d.ts +40 -39
- package/package/components/text-field/search-bar.svelte.d.ts +62 -66
- package/package/components/text-field/text-area.svelte.d.ts +38 -37
- package/package/components/text-field/text-input.svelte +1 -1
- package/package/components/text-field/text-input.svelte.d.ts +73 -84
- package/package/components/toast/toast.svelte.d.ts +37 -27
- package/package/components/toolbar/toolbar.svelte.d.ts +38 -28
- package/package/components/util/app-shell.svelte.d.ts +37 -27
- package/package/components/util/group.svelte.d.ts +36 -26
- package/package/components/util/modal.svelte.d.ts +70 -63
- package/package/components/util/popup.svelte.d.ts +75 -65
- package/package/components/util/portal.svelte.d.ts +34 -24
- package/package.json +11 -11
|
@@ -1,36 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TableColHeader;
|
|
2
|
+
type TableColHeader = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* The equivalent of the HTML `<th scope="col">` element.
|
|
6
16
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
|
|
7
17
|
* @see https://w3c.github.io/aria/#columnheader
|
|
8
18
|
*/
|
|
9
|
-
|
|
19
|
+
declare const TableColHeader: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
20
|
[x: string]: any;
|
|
11
21
|
class?: string | undefined;
|
|
12
22
|
}, {
|
|
23
|
+
default: {};
|
|
24
|
+
}>, {
|
|
13
25
|
[evt: string]: CustomEvent<any>;
|
|
14
26
|
}, {
|
|
15
27
|
default: {};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
}, {}, string>;
|
|
29
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
30
|
+
default: any;
|
|
31
|
+
} ? Props extends Record<string, never> ? any : {
|
|
32
|
+
children?: any;
|
|
33
|
+
} : {});
|
|
34
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
35
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
36
|
+
$$bindings?: Bindings;
|
|
37
|
+
} & Exports;
|
|
38
|
+
(internal: unknown, props: Props & {
|
|
39
|
+
$$events?: Events;
|
|
40
|
+
$$slots?: Slots;
|
|
41
|
+
}): Exports & {
|
|
42
|
+
$set?: any;
|
|
43
|
+
$on?: any;
|
|
29
44
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
exports?: undefined;
|
|
34
|
-
bindings?: undefined;
|
|
35
|
-
};
|
|
36
|
-
export {};
|
|
45
|
+
z_$$bindings?: Bindings;
|
|
46
|
+
}
|
|
@@ -1,36 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TableFoot;
|
|
2
|
+
type TableFoot = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* The equivalent of the HTML `<tfoot>` element.
|
|
6
16
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
|
|
7
17
|
* @see https://w3c.github.io/aria/#rowgroup
|
|
8
18
|
*/
|
|
9
|
-
|
|
19
|
+
declare const TableFoot: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
20
|
[x: string]: any;
|
|
11
21
|
class?: string | undefined;
|
|
12
22
|
}, {
|
|
23
|
+
default: {};
|
|
24
|
+
}>, {
|
|
13
25
|
[evt: string]: CustomEvent<any>;
|
|
14
26
|
}, {
|
|
15
27
|
default: {};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
}, {}, string>;
|
|
29
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
30
|
+
default: any;
|
|
31
|
+
} ? Props extends Record<string, never> ? any : {
|
|
32
|
+
children?: any;
|
|
33
|
+
} : {});
|
|
34
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
35
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
36
|
+
$$bindings?: Bindings;
|
|
37
|
+
} & Exports;
|
|
38
|
+
(internal: unknown, props: Props & {
|
|
39
|
+
$$events?: Events;
|
|
40
|
+
$$slots?: Slots;
|
|
41
|
+
}): Exports & {
|
|
42
|
+
$set?: any;
|
|
43
|
+
$on?: any;
|
|
29
44
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
exports?: undefined;
|
|
34
|
-
bindings?: undefined;
|
|
35
|
-
};
|
|
36
|
-
export {};
|
|
45
|
+
z_$$bindings?: Bindings;
|
|
46
|
+
}
|
|
@@ -1,36 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TableHead;
|
|
2
|
+
type TableHead = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* The equivalent of the HTML `<thead>` element.
|
|
6
16
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
|
|
7
17
|
* @see https://w3c.github.io/aria/#rowgroup
|
|
8
18
|
*/
|
|
9
|
-
|
|
19
|
+
declare const TableHead: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
20
|
[x: string]: any;
|
|
11
21
|
class?: string | undefined;
|
|
12
22
|
}, {
|
|
23
|
+
default: {};
|
|
24
|
+
}>, {
|
|
13
25
|
[evt: string]: CustomEvent<any>;
|
|
14
26
|
}, {
|
|
15
27
|
default: {};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
}, {}, string>;
|
|
29
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
30
|
+
default: any;
|
|
31
|
+
} ? Props extends Record<string, never> ? any : {
|
|
32
|
+
children?: any;
|
|
33
|
+
} : {});
|
|
34
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
35
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
36
|
+
$$bindings?: Bindings;
|
|
37
|
+
} & Exports;
|
|
38
|
+
(internal: unknown, props: Props & {
|
|
39
|
+
$$events?: Events;
|
|
40
|
+
$$slots?: Slots;
|
|
41
|
+
}): Exports & {
|
|
42
|
+
$set?: any;
|
|
43
|
+
$on?: any;
|
|
29
44
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
exports?: undefined;
|
|
34
|
-
bindings?: undefined;
|
|
35
|
-
};
|
|
36
|
-
export {};
|
|
45
|
+
z_$$bindings?: Bindings;
|
|
46
|
+
}
|
|
@@ -1,36 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TableRowHeader;
|
|
2
|
+
type TableRowHeader = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* The equivalent of the HTML `<th scope="row">` element.
|
|
6
16
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
|
|
7
17
|
* @see https://w3c.github.io/aria/#rowheader
|
|
8
18
|
*/
|
|
9
|
-
|
|
19
|
+
declare const TableRowHeader: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
20
|
[x: string]: any;
|
|
11
21
|
class?: string | undefined;
|
|
12
22
|
}, {
|
|
23
|
+
default: {};
|
|
24
|
+
}>, {
|
|
13
25
|
[evt: string]: CustomEvent<any>;
|
|
14
26
|
}, {
|
|
15
27
|
default: {};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
}, {}, string>;
|
|
29
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
30
|
+
default: any;
|
|
31
|
+
} ? Props extends Record<string, never> ? any : {
|
|
32
|
+
children?: any;
|
|
33
|
+
} : {});
|
|
34
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
35
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
36
|
+
$$bindings?: Bindings;
|
|
37
|
+
} & Exports;
|
|
38
|
+
(internal: unknown, props: Props & {
|
|
39
|
+
$$events?: Events;
|
|
40
|
+
$$slots?: Slots;
|
|
41
|
+
}): Exports & {
|
|
42
|
+
$set?: any;
|
|
43
|
+
$on?: any;
|
|
29
44
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
exports?: undefined;
|
|
34
|
-
bindings?: undefined;
|
|
35
|
-
};
|
|
36
|
-
export {};
|
|
45
|
+
z_$$bindings?: Bindings;
|
|
46
|
+
}
|
|
@@ -1,36 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TableRow;
|
|
2
|
+
type TableRow = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* The equivalent of the HTML `<tr>` element.
|
|
6
16
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
|
|
7
17
|
* @see https://w3c.github.io/aria/#row
|
|
8
18
|
*/
|
|
9
|
-
|
|
19
|
+
declare const TableRow: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
20
|
[x: string]: any;
|
|
11
21
|
class?: string | undefined;
|
|
12
22
|
}, {
|
|
23
|
+
default: {};
|
|
24
|
+
}>, {
|
|
13
25
|
[evt: string]: CustomEvent<any>;
|
|
14
26
|
}, {
|
|
15
27
|
default: {};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
}, {}, string>;
|
|
29
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
30
|
+
default: any;
|
|
31
|
+
} ? Props extends Record<string, never> ? any : {
|
|
32
|
+
children?: any;
|
|
33
|
+
} : {});
|
|
34
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
35
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
36
|
+
$$bindings?: Bindings;
|
|
37
|
+
} & Exports;
|
|
38
|
+
(internal: unknown, props: Props & {
|
|
39
|
+
$$events?: Events;
|
|
40
|
+
$$slots?: Slots;
|
|
41
|
+
}): Exports & {
|
|
42
|
+
$set?: any;
|
|
43
|
+
$on?: any;
|
|
29
44
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
exports?: undefined;
|
|
34
|
-
bindings?: undefined;
|
|
35
|
-
};
|
|
36
|
-
export {};
|
|
45
|
+
z_$$bindings?: Bindings;
|
|
46
|
+
}
|
|
@@ -1,36 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default Table;
|
|
2
|
+
type Table = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* The equivalent of the HTML `<table>` element.
|
|
6
16
|
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
|
|
7
17
|
* @see https://w3c.github.io/aria/#table
|
|
8
18
|
*/
|
|
9
|
-
|
|
19
|
+
declare const Table: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
20
|
[x: string]: any;
|
|
11
21
|
class?: string | undefined;
|
|
12
22
|
}, {
|
|
23
|
+
default: {};
|
|
24
|
+
}>, {
|
|
13
25
|
[evt: string]: CustomEvent<any>;
|
|
14
26
|
}, {
|
|
15
27
|
default: {};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
}, {}, string>;
|
|
29
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
30
|
+
default: any;
|
|
31
|
+
} ? Props extends Record<string, never> ? any : {
|
|
32
|
+
children?: any;
|
|
33
|
+
} : {});
|
|
34
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
35
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
36
|
+
$$bindings?: Bindings;
|
|
37
|
+
} & Exports;
|
|
38
|
+
(internal: unknown, props: Props & {
|
|
39
|
+
$$events?: Events;
|
|
40
|
+
$$slots?: Slots;
|
|
41
|
+
}): Exports & {
|
|
42
|
+
$set?: any;
|
|
43
|
+
$on?: any;
|
|
29
44
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
exports?: undefined;
|
|
34
|
-
bindings?: undefined;
|
|
35
|
-
};
|
|
36
|
-
export {};
|
|
45
|
+
z_$$bindings?: Bindings;
|
|
46
|
+
}
|
|
@@ -1,35 +1,45 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TabBox;
|
|
2
|
+
type TabBox = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
class?: string | undefined;
|
|
4
|
+
orientation?: "vertical" | "horizontal" | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* The container of `<TabList>` and `<TabPanels>`. The component name derives from XUL. This can be
|
|
6
16
|
* omitted if not using vertical tabs.
|
|
7
17
|
*/
|
|
8
|
-
|
|
18
|
+
declare const TabBox: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
9
19
|
class?: string | undefined;
|
|
10
20
|
orientation?: "vertical" | "horizontal" | undefined;
|
|
11
21
|
}, {
|
|
22
|
+
default: {};
|
|
23
|
+
}>, {
|
|
12
24
|
[evt: string]: CustomEvent<any>;
|
|
13
25
|
}, {
|
|
14
26
|
default: {};
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
}, {}, string>;
|
|
28
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
29
|
+
default: any;
|
|
30
|
+
} ? Props extends Record<string, never> ? any : {
|
|
31
|
+
children?: any;
|
|
32
|
+
} : {});
|
|
33
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
34
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
35
|
+
$$bindings?: Bindings;
|
|
36
|
+
} & Exports;
|
|
37
|
+
(internal: unknown, props: Props & {
|
|
38
|
+
$$events?: Events;
|
|
39
|
+
$$slots?: Slots;
|
|
40
|
+
}): Exports & {
|
|
41
|
+
$set?: any;
|
|
42
|
+
$on?: any;
|
|
28
43
|
};
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
};
|
|
32
|
-
exports?: undefined;
|
|
33
|
-
bindings?: undefined;
|
|
34
|
-
};
|
|
35
|
-
export {};
|
|
44
|
+
z_$$bindings?: Bindings;
|
|
45
|
+
}
|
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TabList;
|
|
2
|
+
type TabList = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
name?: string | undefined;
|
|
6
|
+
disabled?: boolean | undefined;
|
|
7
|
+
hidden?: boolean | undefined;
|
|
8
|
+
orientation?: "vertical" | "horizontal" | undefined;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}>, {
|
|
12
|
+
change: CustomEvent<any>;
|
|
13
|
+
} & {
|
|
14
|
+
[evt: string]: CustomEvent<any>;
|
|
15
|
+
}, {
|
|
16
|
+
default: {};
|
|
17
|
+
}> & {
|
|
18
|
+
$$bindings?: string | undefined;
|
|
19
|
+
};
|
|
4
20
|
/**
|
|
5
21
|
* A tab list widget.
|
|
6
22
|
* @see https://w3c.github.io/aria/#tablist
|
|
7
23
|
* @see https://www.w3.org/WAI/ARIA/apg/patterns/tabs/
|
|
8
24
|
*/
|
|
9
|
-
|
|
25
|
+
declare const TabList: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
26
|
[x: string]: any;
|
|
11
27
|
class?: string | undefined;
|
|
12
28
|
name?: string | undefined;
|
|
@@ -14,35 +30,29 @@ export default class TabList extends SvelteComponent<{
|
|
|
14
30
|
hidden?: boolean | undefined;
|
|
15
31
|
orientation?: "vertical" | "horizontal" | undefined;
|
|
16
32
|
}, {
|
|
33
|
+
default: {};
|
|
34
|
+
}>, {
|
|
17
35
|
change: CustomEvent<any>;
|
|
18
36
|
} & {
|
|
19
37
|
[evt: string]: CustomEvent<any>;
|
|
20
38
|
}, {
|
|
21
39
|
default: {};
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
change: CustomEvent<any>;
|
|
39
|
-
} & {
|
|
40
|
-
[evt: string]: CustomEvent<any>;
|
|
41
|
-
};
|
|
42
|
-
slots: {
|
|
43
|
-
default: {};
|
|
40
|
+
}, {}, string>;
|
|
41
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
42
|
+
default: any;
|
|
43
|
+
} ? Props extends Record<string, never> ? any : {
|
|
44
|
+
children?: any;
|
|
45
|
+
} : {});
|
|
46
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
47
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
48
|
+
$$bindings?: Bindings;
|
|
49
|
+
} & Exports;
|
|
50
|
+
(internal: unknown, props: Props & {
|
|
51
|
+
$$events?: Events;
|
|
52
|
+
$$slots?: Slots;
|
|
53
|
+
}): Exports & {
|
|
54
|
+
$set?: any;
|
|
55
|
+
$on?: any;
|
|
44
56
|
};
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
};
|
|
48
|
-
export {};
|
|
57
|
+
z_$$bindings?: Bindings;
|
|
58
|
+
}
|
|
@@ -1,36 +1,46 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export default TabPanel;
|
|
2
|
+
type TabPanel = SvelteComponent<$$__sveltets_2_PropsWithChildren<{
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
class?: string | undefined;
|
|
5
|
+
}, {
|
|
6
|
+
default: {};
|
|
7
|
+
}>, {
|
|
8
|
+
[evt: string]: CustomEvent<any>;
|
|
9
|
+
}, {
|
|
10
|
+
default: {};
|
|
11
|
+
}> & {
|
|
12
|
+
$$bindings?: string | undefined;
|
|
13
|
+
};
|
|
4
14
|
/**
|
|
5
15
|
* A tab content panel.
|
|
6
16
|
* @see https://w3c.github.io/aria/#tabpanel
|
|
7
17
|
* @see https://www.w3.org/WAI/ARIA/apg/patterns/tabs/
|
|
8
18
|
*/
|
|
9
|
-
|
|
19
|
+
declare const TabPanel: $$__sveltets_2_IsomorphicComponent<$$__sveltets_2_PropsWithChildren<{
|
|
10
20
|
[x: string]: any;
|
|
11
21
|
class?: string | undefined;
|
|
12
22
|
}, {
|
|
23
|
+
default: {};
|
|
24
|
+
}>, {
|
|
13
25
|
[evt: string]: CustomEvent<any>;
|
|
14
26
|
}, {
|
|
15
27
|
default: {};
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
}, {}, string>;
|
|
29
|
+
type $$__sveltets_2_PropsWithChildren<Props, Slots> = Props & (Slots extends {
|
|
30
|
+
default: any;
|
|
31
|
+
} ? Props extends Record<string, never> ? any : {
|
|
32
|
+
children?: any;
|
|
33
|
+
} : {});
|
|
34
|
+
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
|
|
35
|
+
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
|
|
36
|
+
$$bindings?: Bindings;
|
|
37
|
+
} & Exports;
|
|
38
|
+
(internal: unknown, props: Props & {
|
|
39
|
+
$$events?: Events;
|
|
40
|
+
$$slots?: Slots;
|
|
41
|
+
}): Exports & {
|
|
42
|
+
$set?: any;
|
|
43
|
+
$on?: any;
|
|
29
44
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
exports?: undefined;
|
|
34
|
-
bindings?: undefined;
|
|
35
|
-
};
|
|
36
|
-
export {};
|
|
45
|
+
z_$$bindings?: Bindings;
|
|
46
|
+
}
|