@esportsplus/ui 0.19.2 → 0.19.3
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/build/components/accordion/index.d.ts +12 -3
- package/build/components/field/checkbox.d.ts +45 -9
- package/build/components/field/description.d.ts +12 -3
- package/build/components/field/index.d.ts +10274 -1667
- package/build/components/field/input.d.ts +81 -18
- package/build/components/field/select.d.ts +917 -113
- package/build/components/field/title.d.ts +809 -110
- package/build/components/form/action.d.ts +12 -3
- package/build/components/form/index.d.ts +869 -110
- package/build/components/frame/index.d.ts +12 -3
- package/build/components/highlight/index.d.ts +12 -3
- package/build/components/icon/index.d.ts +12 -3
- package/build/components/loader/index.d.ts +12 -3
- package/build/components/overlay/index.d.ts +12 -3
- package/build/components/scrollbar/index.d.ts +12 -3
- package/build/components/sidebar/index.d.ts +12 -3
- package/build/components/site/index.d.ts +12 -3
- package/build/components/template/index.d.ts +5 -5
- package/build/components/tooltip/index.d.ts +1708 -223
- package/build/components/tooltip/menu.d.ts +12 -3
- package/build/components/tooltip/onclick.d.ts +827 -110
- package/build/components/tooltip/onhover.d.ts +12 -3
- package/build/components/typewriter/index.d.ts +12 -3
- package/package.json +3 -3
- package/src/components/template/index.ts +6 -6
|
@@ -1,34 +1,97 @@
|
|
|
1
1
|
import { type Attributes, type Renderable } from '@esportsplus/template';
|
|
2
2
|
declare const file: {
|
|
3
|
-
():
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
(): ReturnType<(this: {
|
|
4
|
+
state: {
|
|
5
|
+
active: boolean;
|
|
6
|
+
error: string;
|
|
7
|
+
};
|
|
8
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
9
|
+
(content: Renderable<any>): ReturnType<(this: {
|
|
10
|
+
state: {
|
|
11
|
+
active: boolean;
|
|
12
|
+
error: string;
|
|
13
|
+
};
|
|
14
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
15
|
+
(attributes: Attributes, content: Renderable<any>): ReturnType<(this: {
|
|
16
|
+
state: {
|
|
17
|
+
active: boolean;
|
|
18
|
+
error: string;
|
|
19
|
+
};
|
|
20
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
6
21
|
};
|
|
7
22
|
declare const text: {
|
|
8
|
-
():
|
|
9
|
-
|
|
10
|
-
|
|
23
|
+
(): ReturnType<(this: {
|
|
24
|
+
state: {
|
|
25
|
+
active: boolean;
|
|
26
|
+
error: string;
|
|
27
|
+
};
|
|
28
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
29
|
+
(content: Renderable<any>): ReturnType<(this: {
|
|
30
|
+
state: {
|
|
31
|
+
active: boolean;
|
|
32
|
+
error: string;
|
|
33
|
+
};
|
|
34
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
35
|
+
(attributes: Attributes, content: Renderable<any>): ReturnType<(this: {
|
|
36
|
+
state: {
|
|
37
|
+
active: boolean;
|
|
38
|
+
error: string;
|
|
39
|
+
};
|
|
40
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
11
41
|
};
|
|
12
42
|
declare const textarea: {
|
|
13
|
-
():
|
|
14
|
-
|
|
15
|
-
|
|
43
|
+
(): ReturnType<(this: {
|
|
44
|
+
state: {
|
|
45
|
+
active: boolean;
|
|
46
|
+
error: string;
|
|
47
|
+
};
|
|
48
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
49
|
+
(content: Renderable<any>): ReturnType<(this: {
|
|
50
|
+
state: {
|
|
51
|
+
active: boolean;
|
|
52
|
+
error: string;
|
|
53
|
+
};
|
|
54
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
55
|
+
(attributes: Attributes, content: Renderable<any>): ReturnType<(this: {
|
|
56
|
+
state: {
|
|
57
|
+
active: boolean;
|
|
58
|
+
error: string;
|
|
59
|
+
};
|
|
60
|
+
}, attributes: Readonly<Attributes>, content: Renderable<any>) => Renderable<any>>;
|
|
16
61
|
};
|
|
17
62
|
declare const _default: {
|
|
18
63
|
file: {
|
|
19
|
-
():
|
|
20
|
-
|
|
21
|
-
|
|
64
|
+
(): ReturnType<(this: {
|
|
65
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
66
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
67
|
+
(content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>): ReturnType<(this: {
|
|
68
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
69
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
70
|
+
(attributes: Attributes, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>): ReturnType<(this: {
|
|
71
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
72
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
22
73
|
};
|
|
23
74
|
text: {
|
|
24
|
-
():
|
|
25
|
-
|
|
26
|
-
|
|
75
|
+
(): ReturnType<(this: {
|
|
76
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
77
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
78
|
+
(content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>): ReturnType<(this: {
|
|
79
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
80
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
81
|
+
(attributes: Attributes, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>): ReturnType<(this: {
|
|
82
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
83
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
27
84
|
};
|
|
28
85
|
textarea: {
|
|
29
|
-
():
|
|
30
|
-
|
|
31
|
-
|
|
86
|
+
(): ReturnType<(this: {
|
|
87
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
88
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
89
|
+
(content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>): ReturnType<(this: {
|
|
90
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
91
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
92
|
+
(attributes: Attributes, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>): ReturnType<(this: {
|
|
93
|
+
mask: typeof file | typeof text | typeof textarea;
|
|
94
|
+
}, attributes: Readonly<Attributes>, content: (mask: typeof file | typeof text | typeof textarea) => Renderable<unknown>) => Renderable<any>>;
|
|
32
95
|
};
|
|
33
96
|
};
|
|
34
97
|
export default _default;
|