tecitheme 0.0.11 → 0.0.12
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/components/Header.svelte +688 -693
- package/components/Header.svelte.d.ts +13 -2
- package/package.json +1 -1
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} HeaderProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} HeaderEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} HeaderSlots */
|
|
4
|
-
export default class Header extends SvelteComponentTyped<{
|
|
4
|
+
export default class Header extends SvelteComponentTyped<{
|
|
5
|
+
clickOutside?: (node: any) => {
|
|
6
|
+
destroy(): void;
|
|
7
|
+
};
|
|
8
|
+
}, {
|
|
5
9
|
[evt: string]: CustomEvent<any>;
|
|
6
10
|
}, {}> {
|
|
11
|
+
get clickOutside(): (node: any) => {
|
|
12
|
+
destroy(): void;
|
|
13
|
+
};
|
|
7
14
|
}
|
|
8
15
|
export type HeaderProps = typeof __propDef.props;
|
|
9
16
|
export type HeaderEvents = typeof __propDef.events;
|
|
10
17
|
export type HeaderSlots = typeof __propDef.slots;
|
|
11
18
|
import { SvelteComponentTyped } from "svelte";
|
|
12
19
|
declare const __propDef: {
|
|
13
|
-
props: {
|
|
20
|
+
props: {
|
|
21
|
+
clickOutside?: (node: any) => {
|
|
22
|
+
destroy(): void;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
14
25
|
events: {
|
|
15
26
|
[evt: string]: CustomEvent<any>;
|
|
16
27
|
};
|