@esportsplus/ui 0.48.7 → 0.49.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/README.md +4 -4
- package/build/components/accordion/index.d.ts +16 -16
- package/build/components/accordion/index.js +16 -15
- package/build/components/alert/index.d.ts +1 -1
- package/build/components/alert/index.js +50 -42
- package/build/components/back/index.d.ts +8 -9
- package/build/components/back/index.js +11 -10
- package/build/components/button/index.d.ts +21 -22
- package/build/components/button/index.js +24 -24
- package/build/components/checkbox/index.d.ts +1 -1
- package/build/components/checkbox/index.js +20 -18
- package/build/components/clipboard/index.d.ts +1120 -1120
- package/build/components/clipboard/onclick.d.ts +1 -1
- package/build/components/clipboard/onclick.js +17 -18
- package/build/components/counter/index.d.ts +1 -1
- package/build/components/counter/index.js +27 -34
- package/build/components/ellipsis/index.d.ts +1 -1
- package/build/components/ellipsis/index.js +8 -7
- package/build/components/form/action.d.ts +1 -1
- package/build/components/form/action.js +15 -12
- package/build/components/form/index.d.ts +3 -3
- package/build/components/form/input.d.ts +1 -1
- package/build/components/frame/index.d.ts +10 -10
- package/build/components/highlight/index.d.ts +16 -16
- package/build/components/highlight/index.js +14 -13
- package/build/components/icon/index.d.ts +10 -11
- package/build/components/icon/index.js +6 -9
- package/build/components/input/index.d.ts +1 -1
- package/build/components/input/index.js +17 -16
- package/build/components/loader/index.d.ts +16 -16
- package/build/components/loader/index.js +44 -37
- package/build/components/loading/index.d.ts +1 -1
- package/build/components/loading/index.js +9 -7
- package/build/components/overlay/index.d.ts +10 -10
- package/build/components/radio/index.d.ts +2 -2
- package/build/components/range/index.d.ts +1 -1
- package/build/components/range/index.js +21 -19
- package/build/components/scrollbar/index.d.ts +11 -12
- package/build/components/scrollbar/index.js +32 -19
- package/build/components/select/index.d.ts +1 -1
- package/build/components/select/index.js +88 -83
- package/build/components/sidebar/index.d.ts +10 -10
- package/build/components/site/index.d.ts +10 -10
- package/build/components/switch/index.d.ts +2 -2
- package/build/components/template/index.d.ts +1 -1
- package/build/components/textarea/index.d.ts +1 -1
- package/build/components/textarea/index.js +17 -16
- package/build/components/tooltip/index.d.ts +2295 -2295
- package/build/components/tooltip/menu.d.ts +11 -12
- package/build/components/tooltip/menu.js +33 -29
- package/build/components/tooltip/onclick.d.ts +1120 -1121
- package/build/components/tooltip/onclick.js +14 -12
- package/build/components/tooltip/onhover.d.ts +16 -16
- package/build/components/tooltip/onhover.js +16 -14
- package/build/components/typewriter/index.d.ts +10 -11
- package/build/components/typewriter/index.js +10 -12
- package/build/themes/dark/alert.d.ts +3 -3
- package/build/themes/dark/back.d.ts +11 -11
- package/build/themes/dark/input.d.ts +111 -111
- package/build/themes/dark/select.d.ts +1220 -1220
- package/build/themes/dark/textarea.d.ts +111 -111
- package/package.json +2 -2
- package/src/components/accordion/index.ts +1 -1
- package/src/components/alert/index.ts +1 -1
- package/src/components/back/index.ts +1 -1
- package/src/components/button/index.ts +1 -1
- package/src/components/checkbox/index.ts +1 -1
- package/src/components/clipboard/onclick.ts +1 -1
- package/src/components/counter/index.ts +1 -1
- package/src/components/ellipsis/index.ts +1 -1
- package/src/components/form/action.ts +1 -1
- package/src/components/form/input.ts +1 -1
- package/src/components/highlight/index.ts +1 -1
- package/src/components/icon/index.ts +1 -1
- package/src/components/input/index.ts +1 -1
- package/src/components/loader/index.ts +1 -1
- package/src/components/loading/index.ts +1 -1
- package/src/components/range/index.ts +1 -1
- package/src/components/scrollbar/index.ts +1 -1
- package/src/components/select/index.ts +1 -1
- package/src/components/template/index.ts +1 -1
- package/src/components/textarea/index.ts +1 -1
- package/src/components/tooltip/menu.ts +1 -1
- package/src/components/tooltip/onclick.ts +1 -1
- package/src/components/tooltip/onhover.ts +1 -1
- package/src/components/typewriter/index.ts +1 -1
- package/tsconfig.json +1 -1
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { reactive } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive } from '@esportsplus/frontend';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import { root } from '@esportsplus/ui';
|
|
5
4
|
import template from '../../components/template/index.js';
|
|
6
|
-
const template_69d8ea42df6d40bfb4950d47c33fd3634e = template_69d8ea42df6d40bfb4950d47c33fd3631.template(`<div class='tooltip'><!--$--></div>`);
|
|
7
5
|
const OMIT = ['state', 'toggle'];
|
|
8
6
|
let parent = null, queue = [], running = false, scheduled = false;
|
|
9
7
|
function frame() {
|
|
@@ -26,11 +24,13 @@ function frame() {
|
|
|
26
24
|
}
|
|
27
25
|
export default template.factory((attributes, content) => {
|
|
28
26
|
let state = attributes.state || reactive({ active: false }), toggle = attributes.toggle || false;
|
|
29
|
-
return
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
27
|
+
return html `
|
|
28
|
+
<div
|
|
29
|
+
class='tooltip'
|
|
30
|
+
${omit(attributes, OMIT)}
|
|
31
|
+
${{
|
|
32
|
+
class: () => state.active && '--active',
|
|
33
|
+
onclick: function (e) {
|
|
34
34
|
let active = true, node = e.target;
|
|
35
35
|
if (this === node || (toggle && this.contains(node))) {
|
|
36
36
|
active = !state.active;
|
|
@@ -57,8 +57,10 @@ export default template.factory((attributes, content) => {
|
|
|
57
57
|
});
|
|
58
58
|
scheduled = true;
|
|
59
59
|
}
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
60
|
+
}
|
|
61
|
+
}}
|
|
62
|
+
>
|
|
63
|
+
${content}
|
|
64
|
+
</div>
|
|
65
|
+
`;
|
|
64
66
|
});
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Attributes } from '@esportsplus/frontend';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
(): ReturnType<(this: {
|
|
4
|
-
attributes?:
|
|
5
|
-
content?:
|
|
6
|
-
}, attributes: Readonly<
|
|
7
|
-
<T extends
|
|
8
|
-
attributes?:
|
|
9
|
-
content?:
|
|
10
|
-
}, attributes: Readonly<
|
|
11
|
-
<T extends
|
|
12
|
-
attributes?:
|
|
13
|
-
content?:
|
|
14
|
-
}, attributes: Readonly<
|
|
15
|
-
(attributes:
|
|
16
|
-
attributes?:
|
|
17
|
-
content?:
|
|
18
|
-
}, attributes: Readonly<
|
|
4
|
+
attributes?: Attributes | undefined;
|
|
5
|
+
content?: import("@esportsplus/frontend").Renderable<any>;
|
|
6
|
+
}, attributes: Readonly<Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
7
|
+
<T extends Attributes>(attributes: T): ReturnType<(this: {
|
|
8
|
+
attributes?: Attributes | undefined;
|
|
9
|
+
content?: import("@esportsplus/frontend").Renderable<any>;
|
|
10
|
+
}, attributes: Readonly<Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
11
|
+
<T extends import("@esportsplus/frontend").Renderable<any>>(content: T): ReturnType<(this: {
|
|
12
|
+
attributes?: Attributes | undefined;
|
|
13
|
+
content?: import("@esportsplus/frontend").Renderable<any>;
|
|
14
|
+
}, attributes: Readonly<Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
15
|
+
(attributes: Attributes, content: import("@esportsplus/frontend").Renderable<any>): ReturnType<(this: {
|
|
16
|
+
attributes?: Attributes | undefined;
|
|
17
|
+
content?: import("@esportsplus/frontend").Renderable<any>;
|
|
18
|
+
}, attributes: Readonly<Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
19
19
|
};
|
|
20
20
|
export default _default;
|
|
@@ -1,22 +1,24 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { reactive } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive } from '@esportsplus/frontend';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import template from '../../components/template/index.js';
|
|
5
|
-
const template_69d8ea42df6d40bfb4950d47c33fd3634j = template_69d8ea42df6d40bfb4950d47c33fd3631.template(`<div class='tooltip'><!--$--></div>`);
|
|
6
4
|
const OMIT = ['state'];
|
|
7
5
|
export default template.factory((attributes, content) => {
|
|
8
6
|
let state = attributes.state || reactive({ active: false });
|
|
9
|
-
return
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
return html `
|
|
8
|
+
<div
|
|
9
|
+
class='tooltip'
|
|
10
|
+
${omit(attributes, OMIT)}
|
|
11
|
+
${{
|
|
12
|
+
class: () => state.active && '--active',
|
|
13
|
+
onmouseover: () => {
|
|
14
14
|
state.active = true;
|
|
15
|
-
}
|
|
16
|
-
|
|
15
|
+
},
|
|
16
|
+
onmouseout: () => {
|
|
17
17
|
state.active = false;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
}
|
|
19
|
+
}}
|
|
20
|
+
>
|
|
21
|
+
${content}
|
|
22
|
+
</div>
|
|
23
|
+
`;
|
|
22
24
|
});
|
|
@@ -1,21 +1,20 @@
|
|
|
1
|
-
import * as template_69d8ea42df6d40bfb4950d47c33fd3631 from '@esportsplus/template';
|
|
2
1
|
import './scss/index.scss';
|
|
3
2
|
declare const _default: {
|
|
4
3
|
(): ReturnType<(this: {
|
|
5
|
-
attributes?:
|
|
4
|
+
attributes?: import("@esportsplus/frontend").Attributes | undefined;
|
|
6
5
|
content?: string[] | undefined;
|
|
7
|
-
}, attributes: Readonly<
|
|
8
|
-
<T extends
|
|
9
|
-
attributes?:
|
|
6
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: string[]) => import("@esportsplus/frontend").Renderable<any>>;
|
|
7
|
+
<T extends import("@esportsplus/frontend").Attributes>(attributes: T): ReturnType<(this: {
|
|
8
|
+
attributes?: import("@esportsplus/frontend").Attributes | undefined;
|
|
10
9
|
content?: string[] | undefined;
|
|
11
|
-
}, attributes: Readonly<
|
|
10
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: string[]) => import("@esportsplus/frontend").Renderable<any>>;
|
|
12
11
|
<T extends string[]>(content: T): ReturnType<(this: {
|
|
13
|
-
attributes?:
|
|
12
|
+
attributes?: import("@esportsplus/frontend").Attributes | undefined;
|
|
14
13
|
content?: string[] | undefined;
|
|
15
|
-
}, attributes: Readonly<
|
|
16
|
-
(attributes:
|
|
17
|
-
attributes?:
|
|
14
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: string[]) => import("@esportsplus/frontend").Renderable<any>>;
|
|
15
|
+
(attributes: import("@esportsplus/frontend").Attributes, content: string[]): ReturnType<(this: {
|
|
16
|
+
attributes?: import("@esportsplus/frontend").Attributes | undefined;
|
|
18
17
|
content?: string[] | undefined;
|
|
19
|
-
}, attributes: Readonly<
|
|
18
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: string[]) => import("@esportsplus/frontend").Renderable<any>>;
|
|
20
19
|
};
|
|
21
20
|
export default _default;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { reactive } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive } from '@esportsplus/frontend';
|
|
3
2
|
import template from '../../components/template/index.js';
|
|
4
3
|
import './scss/index.scss';
|
|
5
|
-
const
|
|
6
|
-
const template_69d8ea42df6d40bfb4950d47c33fd3634r = template_69d8ea42df6d40bfb4950d47c33fd3631.template(``);
|
|
7
|
-
const EMPTY_NODE = template_69d8ea42df6d40bfb4950d47c33fd3634r();
|
|
4
|
+
const EMPTY_NODE = html ` `;
|
|
8
5
|
export default template.factory(function (_, content) {
|
|
9
6
|
let state = reactive({ text: '' });
|
|
10
|
-
return
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
return html `
|
|
8
|
+
<div class='typewriter' ${{
|
|
9
|
+
onconnect: () => {
|
|
13
10
|
let character = 0, i = 0, isWriting = true, write = content[i];
|
|
14
11
|
function play() {
|
|
15
12
|
setTimeout(() => {
|
|
@@ -37,8 +34,9 @@ export default template.factory(function (_, content) {
|
|
|
37
34
|
}, isWriting ? 64 : 32);
|
|
38
35
|
}
|
|
39
36
|
play();
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
37
|
+
}
|
|
38
|
+
}}>
|
|
39
|
+
${() => state.text || EMPTY_NODE}
|
|
40
|
+
</div>
|
|
41
|
+
`;
|
|
44
42
|
});
|
|
@@ -2,10 +2,10 @@ declare const _default: {
|
|
|
2
2
|
content: DocumentFragment;
|
|
3
3
|
deactivate: () => void;
|
|
4
4
|
error: {
|
|
5
|
-
(messages: import("@esportsplus/
|
|
5
|
+
(messages: import("@esportsplus/frontend").Renderable<any>, seconds?: number): void;
|
|
6
6
|
response(response: import("@esportsplus/action").Response<any>): void;
|
|
7
7
|
};
|
|
8
|
-
info: (messages: import("@esportsplus/
|
|
9
|
-
success: (messages: import("@esportsplus/
|
|
8
|
+
info: (messages: import("@esportsplus/frontend").Renderable<any>, seconds?: number) => void;
|
|
9
|
+
success: (messages: import("@esportsplus/frontend").Renderable<any>, seconds?: number) => void;
|
|
10
10
|
};
|
|
11
11
|
export default _default;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
(): ReturnType<(this: {
|
|
3
|
-
attributes?: import("@esportsplus/
|
|
4
|
-
}, attributes: Readonly<import("@esportsplus/
|
|
5
|
-
<T extends import("@esportsplus/
|
|
6
|
-
attributes?: import("@esportsplus/
|
|
7
|
-
}, attributes: Readonly<import("@esportsplus/
|
|
8
|
-
<T extends import("@esportsplus/
|
|
9
|
-
attributes?: import("@esportsplus/
|
|
10
|
-
}, attributes: Readonly<import("@esportsplus/
|
|
11
|
-
(attributes: import("@esportsplus/
|
|
12
|
-
attributes?: import("@esportsplus/
|
|
13
|
-
}, attributes: Readonly<import("@esportsplus/
|
|
3
|
+
attributes?: import("@esportsplus/frontend").Attributes;
|
|
4
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
5
|
+
<T extends import("@esportsplus/frontend").Attributes>(attributes: T): ReturnType<(this: {
|
|
6
|
+
attributes?: import("@esportsplus/frontend").Attributes;
|
|
7
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
8
|
+
<T extends import("@esportsplus/frontend").Renderable<any>>(content: T): ReturnType<(this: {
|
|
9
|
+
attributes?: import("@esportsplus/frontend").Attributes;
|
|
10
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
11
|
+
(attributes: import("@esportsplus/frontend").Attributes, content: import("@esportsplus/frontend").Renderable<any>): ReturnType<(this: {
|
|
12
|
+
attributes?: import("@esportsplus/frontend").Attributes;
|
|
13
|
+
}, attributes: Readonly<import("@esportsplus/frontend").Attributes>, content: import("@esportsplus/frontend").Renderable<any>) => import("@esportsplus/frontend").Renderable<any>>;
|
|
14
14
|
};
|
|
15
15
|
export default _default;
|
|
@@ -1,118 +1,118 @@
|
|
|
1
1
|
declare const _default: (attributes: {
|
|
2
2
|
[key: `aria-${string}`]: string | number | boolean | undefined;
|
|
3
3
|
[key: `data-${string}`]: string | undefined;
|
|
4
|
-
class?: import("node_modules/@esportsplus/
|
|
5
|
-
onconnect?: ((element: import("@esportsplus/
|
|
6
|
-
ondisconnect?: ((element: import("@esportsplus/
|
|
7
|
-
onrender?: ((element: import("@esportsplus/
|
|
8
|
-
ontick?: ((dispose: VoidFunction, element: import("@esportsplus/
|
|
9
|
-
style?: import("node_modules/@esportsplus/
|
|
4
|
+
class?: import("node_modules/@esportsplus/frontend/build/template/types").Attribute | import("node_modules/@esportsplus/frontend/build/template/types").Attribute[];
|
|
5
|
+
onconnect?: ((element: import("@esportsplus/frontend").Element) => void) | undefined;
|
|
6
|
+
ondisconnect?: ((element: import("@esportsplus/frontend").Element) => void) | undefined;
|
|
7
|
+
onrender?: ((element: import("@esportsplus/frontend").Element) => void) | undefined;
|
|
8
|
+
ontick?: ((dispose: VoidFunction, element: import("@esportsplus/frontend").Element) => void) | undefined;
|
|
9
|
+
style?: import("node_modules/@esportsplus/frontend/build/template/types").Attribute | import("node_modules/@esportsplus/frontend/build/template/types").Attribute[];
|
|
10
10
|
} & {
|
|
11
|
-
onabort?: ((this: import("@esportsplus/
|
|
12
|
-
onanimationcancel?: ((this: import("@esportsplus/
|
|
13
|
-
onanimationend?: ((this: import("@esportsplus/
|
|
14
|
-
onanimationiteration?: ((this: import("@esportsplus/
|
|
15
|
-
onanimationstart?: ((this: import("@esportsplus/
|
|
16
|
-
onauxclick?: ((this: import("@esportsplus/
|
|
17
|
-
onbeforeinput?: ((this: import("@esportsplus/
|
|
18
|
-
onbeforematch?: ((this: import("@esportsplus/
|
|
19
|
-
onbeforetoggle?: ((this: import("@esportsplus/
|
|
20
|
-
onblur?: ((this: import("@esportsplus/
|
|
21
|
-
oncancel?: ((this: import("@esportsplus/
|
|
22
|
-
oncanplay?: ((this: import("@esportsplus/
|
|
23
|
-
oncanplaythrough?: ((this: import("@esportsplus/
|
|
24
|
-
onchange?: ((this: import("@esportsplus/
|
|
25
|
-
onclick?: ((this: import("@esportsplus/
|
|
26
|
-
onclose?: ((this: import("@esportsplus/
|
|
27
|
-
oncompositionend?: ((this: import("@esportsplus/
|
|
28
|
-
oncompositionstart?: ((this: import("@esportsplus/
|
|
29
|
-
oncompositionupdate?: ((this: import("@esportsplus/
|
|
30
|
-
oncontextlost?: ((this: import("@esportsplus/
|
|
31
|
-
oncontextmenu?: ((this: import("@esportsplus/
|
|
32
|
-
oncontextrestored?: ((this: import("@esportsplus/
|
|
33
|
-
oncopy?: ((this: import("@esportsplus/
|
|
34
|
-
oncuechange?: ((this: import("@esportsplus/
|
|
35
|
-
oncut?: ((this: import("@esportsplus/
|
|
36
|
-
ondblclick?: ((this: import("@esportsplus/
|
|
37
|
-
ondrag?: ((this: import("@esportsplus/
|
|
38
|
-
ondragend?: ((this: import("@esportsplus/
|
|
39
|
-
ondragenter?: ((this: import("@esportsplus/
|
|
40
|
-
ondragleave?: ((this: import("@esportsplus/
|
|
41
|
-
ondragover?: ((this: import("@esportsplus/
|
|
42
|
-
ondragstart?: ((this: import("@esportsplus/
|
|
43
|
-
ondrop?: ((this: import("@esportsplus/
|
|
44
|
-
ondurationchange?: ((this: import("@esportsplus/
|
|
45
|
-
onemptied?: ((this: import("@esportsplus/
|
|
46
|
-
onended?: ((this: import("@esportsplus/
|
|
47
|
-
onerror?: ((this: import("@esportsplus/
|
|
48
|
-
onfocus?: ((this: import("@esportsplus/
|
|
49
|
-
onfocusin?: ((this: import("@esportsplus/
|
|
50
|
-
onfocusout?: ((this: import("@esportsplus/
|
|
51
|
-
onformdata?: ((this: import("@esportsplus/
|
|
52
|
-
ongotpointercapture?: ((this: import("@esportsplus/
|
|
53
|
-
oninput?: ((this: import("@esportsplus/
|
|
54
|
-
oninvalid?: ((this: import("@esportsplus/
|
|
55
|
-
onkeydown?: ((this: import("@esportsplus/
|
|
56
|
-
onkeypress?: ((this: import("@esportsplus/
|
|
57
|
-
onkeyup?: ((this: import("@esportsplus/
|
|
58
|
-
onload?: ((this: import("@esportsplus/
|
|
59
|
-
onloadeddata?: ((this: import("@esportsplus/
|
|
60
|
-
onloadedmetadata?: ((this: import("@esportsplus/
|
|
61
|
-
onloadstart?: ((this: import("@esportsplus/
|
|
62
|
-
onlostpointercapture?: ((this: import("@esportsplus/
|
|
63
|
-
onmousedown?: ((this: import("@esportsplus/
|
|
64
|
-
onmouseenter?: ((this: import("@esportsplus/
|
|
65
|
-
onmouseleave?: ((this: import("@esportsplus/
|
|
66
|
-
onmousemove?: ((this: import("@esportsplus/
|
|
67
|
-
onmouseout?: ((this: import("@esportsplus/
|
|
68
|
-
onmouseover?: ((this: import("@esportsplus/
|
|
69
|
-
onmouseup?: ((this: import("@esportsplus/
|
|
70
|
-
onpaste?: ((this: import("@esportsplus/
|
|
71
|
-
onpause?: ((this: import("@esportsplus/
|
|
72
|
-
onplay?: ((this: import("@esportsplus/
|
|
73
|
-
onplaying?: ((this: import("@esportsplus/
|
|
74
|
-
onpointercancel?: ((this: import("@esportsplus/
|
|
75
|
-
onpointerdown?: ((this: import("@esportsplus/
|
|
76
|
-
onpointerenter?: ((this: import("@esportsplus/
|
|
77
|
-
onpointerleave?: ((this: import("@esportsplus/
|
|
78
|
-
onpointermove?: ((this: import("@esportsplus/
|
|
79
|
-
onpointerout?: ((this: import("@esportsplus/
|
|
80
|
-
onpointerover?: ((this: import("@esportsplus/
|
|
81
|
-
onpointerrawupdate?: ((this: import("@esportsplus/
|
|
82
|
-
onpointerup?: ((this: import("@esportsplus/
|
|
83
|
-
onprogress?: ((this: import("@esportsplus/
|
|
84
|
-
onratechange?: ((this: import("@esportsplus/
|
|
85
|
-
onreset?: ((this: import("@esportsplus/
|
|
86
|
-
onresize?: ((this: import("@esportsplus/
|
|
87
|
-
onscroll?: ((this: import("@esportsplus/
|
|
88
|
-
onscrollend?: ((this: import("@esportsplus/
|
|
89
|
-
onsecuritypolicyviolation?: ((this: import("@esportsplus/
|
|
90
|
-
onseeked?: ((this: import("@esportsplus/
|
|
91
|
-
onseeking?: ((this: import("@esportsplus/
|
|
92
|
-
onselect?: ((this: import("@esportsplus/
|
|
93
|
-
onselectionchange?: ((this: import("@esportsplus/
|
|
94
|
-
onselectstart?: ((this: import("@esportsplus/
|
|
95
|
-
onslotchange?: ((this: import("@esportsplus/
|
|
96
|
-
onstalled?: ((this: import("@esportsplus/
|
|
97
|
-
onsubmit?: ((this: import("@esportsplus/
|
|
98
|
-
onsuspend?: ((this: import("@esportsplus/
|
|
99
|
-
ontimeupdate?: ((this: import("@esportsplus/
|
|
100
|
-
ontoggle?: ((this: import("@esportsplus/
|
|
101
|
-
ontouchcancel?: ((this: import("@esportsplus/
|
|
102
|
-
ontouchend?: ((this: import("@esportsplus/
|
|
103
|
-
ontouchmove?: ((this: import("@esportsplus/
|
|
104
|
-
ontouchstart?: ((this: import("@esportsplus/
|
|
105
|
-
ontransitioncancel?: ((this: import("@esportsplus/
|
|
106
|
-
ontransitionend?: ((this: import("@esportsplus/
|
|
107
|
-
ontransitionrun?: ((this: import("@esportsplus/
|
|
108
|
-
ontransitionstart?: ((this: import("@esportsplus/
|
|
109
|
-
onvolumechange?: ((this: import("@esportsplus/
|
|
110
|
-
onwaiting?: ((this: import("@esportsplus/
|
|
111
|
-
onwebkitanimationend?: ((this: import("@esportsplus/
|
|
112
|
-
onwebkitanimationiteration?: ((this: import("@esportsplus/
|
|
113
|
-
onwebkitanimationstart?: ((this: import("@esportsplus/
|
|
114
|
-
onwebkittransitionend?: ((this: import("@esportsplus/
|
|
115
|
-
onwheel?: ((this: import("@esportsplus/
|
|
11
|
+
onabort?: ((this: import("@esportsplus/frontend").Element, event: UIEvent) => void) | undefined;
|
|
12
|
+
onanimationcancel?: ((this: import("@esportsplus/frontend").Element, event: AnimationEvent) => void) | undefined;
|
|
13
|
+
onanimationend?: ((this: import("@esportsplus/frontend").Element, event: AnimationEvent) => void) | undefined;
|
|
14
|
+
onanimationiteration?: ((this: import("@esportsplus/frontend").Element, event: AnimationEvent) => void) | undefined;
|
|
15
|
+
onanimationstart?: ((this: import("@esportsplus/frontend").Element, event: AnimationEvent) => void) | undefined;
|
|
16
|
+
onauxclick?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
17
|
+
onbeforeinput?: ((this: import("@esportsplus/frontend").Element, event: InputEvent) => void) | undefined;
|
|
18
|
+
onbeforematch?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
19
|
+
onbeforetoggle?: ((this: import("@esportsplus/frontend").Element, event: ToggleEvent) => void) | undefined;
|
|
20
|
+
onblur?: ((this: import("@esportsplus/frontend").Element, event: FocusEvent) => void) | undefined;
|
|
21
|
+
oncancel?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
22
|
+
oncanplay?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
23
|
+
oncanplaythrough?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
24
|
+
onchange?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
25
|
+
onclick?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
26
|
+
onclose?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
27
|
+
oncompositionend?: ((this: import("@esportsplus/frontend").Element, event: CompositionEvent) => void) | undefined;
|
|
28
|
+
oncompositionstart?: ((this: import("@esportsplus/frontend").Element, event: CompositionEvent) => void) | undefined;
|
|
29
|
+
oncompositionupdate?: ((this: import("@esportsplus/frontend").Element, event: CompositionEvent) => void) | undefined;
|
|
30
|
+
oncontextlost?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
31
|
+
oncontextmenu?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
32
|
+
oncontextrestored?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
33
|
+
oncopy?: ((this: import("@esportsplus/frontend").Element, event: ClipboardEvent) => void) | undefined;
|
|
34
|
+
oncuechange?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
35
|
+
oncut?: ((this: import("@esportsplus/frontend").Element, event: ClipboardEvent) => void) | undefined;
|
|
36
|
+
ondblclick?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
37
|
+
ondrag?: ((this: import("@esportsplus/frontend").Element, event: DragEvent) => void) | undefined;
|
|
38
|
+
ondragend?: ((this: import("@esportsplus/frontend").Element, event: DragEvent) => void) | undefined;
|
|
39
|
+
ondragenter?: ((this: import("@esportsplus/frontend").Element, event: DragEvent) => void) | undefined;
|
|
40
|
+
ondragleave?: ((this: import("@esportsplus/frontend").Element, event: DragEvent) => void) | undefined;
|
|
41
|
+
ondragover?: ((this: import("@esportsplus/frontend").Element, event: DragEvent) => void) | undefined;
|
|
42
|
+
ondragstart?: ((this: import("@esportsplus/frontend").Element, event: DragEvent) => void) | undefined;
|
|
43
|
+
ondrop?: ((this: import("@esportsplus/frontend").Element, event: DragEvent) => void) | undefined;
|
|
44
|
+
ondurationchange?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
45
|
+
onemptied?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
46
|
+
onended?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
47
|
+
onerror?: ((this: import("@esportsplus/frontend").Element, event: ErrorEvent) => void) | undefined;
|
|
48
|
+
onfocus?: ((this: import("@esportsplus/frontend").Element, event: FocusEvent) => void) | undefined;
|
|
49
|
+
onfocusin?: ((this: import("@esportsplus/frontend").Element, event: FocusEvent) => void) | undefined;
|
|
50
|
+
onfocusout?: ((this: import("@esportsplus/frontend").Element, event: FocusEvent) => void) | undefined;
|
|
51
|
+
onformdata?: ((this: import("@esportsplus/frontend").Element, event: FormDataEvent) => void) | undefined;
|
|
52
|
+
ongotpointercapture?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
53
|
+
oninput?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
54
|
+
oninvalid?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
55
|
+
onkeydown?: ((this: import("@esportsplus/frontend").Element, event: KeyboardEvent) => void) | undefined;
|
|
56
|
+
onkeypress?: ((this: import("@esportsplus/frontend").Element, event: KeyboardEvent) => void) | undefined;
|
|
57
|
+
onkeyup?: ((this: import("@esportsplus/frontend").Element, event: KeyboardEvent) => void) | undefined;
|
|
58
|
+
onload?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
59
|
+
onloadeddata?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
60
|
+
onloadedmetadata?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
61
|
+
onloadstart?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
62
|
+
onlostpointercapture?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
63
|
+
onmousedown?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
64
|
+
onmouseenter?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
65
|
+
onmouseleave?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
66
|
+
onmousemove?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
67
|
+
onmouseout?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
68
|
+
onmouseover?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
69
|
+
onmouseup?: ((this: import("@esportsplus/frontend").Element, event: MouseEvent) => void) | undefined;
|
|
70
|
+
onpaste?: ((this: import("@esportsplus/frontend").Element, event: ClipboardEvent) => void) | undefined;
|
|
71
|
+
onpause?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
72
|
+
onplay?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
73
|
+
onplaying?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
74
|
+
onpointercancel?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
75
|
+
onpointerdown?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
76
|
+
onpointerenter?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
77
|
+
onpointerleave?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
78
|
+
onpointermove?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
79
|
+
onpointerout?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
80
|
+
onpointerover?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
81
|
+
onpointerrawupdate?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
82
|
+
onpointerup?: ((this: import("@esportsplus/frontend").Element, event: PointerEvent) => void) | undefined;
|
|
83
|
+
onprogress?: ((this: import("@esportsplus/frontend").Element, event: ProgressEvent<EventTarget>) => void) | undefined;
|
|
84
|
+
onratechange?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
85
|
+
onreset?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
86
|
+
onresize?: ((this: import("@esportsplus/frontend").Element, event: UIEvent) => void) | undefined;
|
|
87
|
+
onscroll?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
88
|
+
onscrollend?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
89
|
+
onsecuritypolicyviolation?: ((this: import("@esportsplus/frontend").Element, event: SecurityPolicyViolationEvent) => void) | undefined;
|
|
90
|
+
onseeked?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
91
|
+
onseeking?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
92
|
+
onselect?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
93
|
+
onselectionchange?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
94
|
+
onselectstart?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
95
|
+
onslotchange?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
96
|
+
onstalled?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
97
|
+
onsubmit?: ((this: import("@esportsplus/frontend").Element, event: SubmitEvent) => void) | undefined;
|
|
98
|
+
onsuspend?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
99
|
+
ontimeupdate?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
100
|
+
ontoggle?: ((this: import("@esportsplus/frontend").Element, event: ToggleEvent) => void) | undefined;
|
|
101
|
+
ontouchcancel?: ((this: import("@esportsplus/frontend").Element, event: TouchEvent) => void) | undefined;
|
|
102
|
+
ontouchend?: ((this: import("@esportsplus/frontend").Element, event: TouchEvent) => void) | undefined;
|
|
103
|
+
ontouchmove?: ((this: import("@esportsplus/frontend").Element, event: TouchEvent) => void) | undefined;
|
|
104
|
+
ontouchstart?: ((this: import("@esportsplus/frontend").Element, event: TouchEvent) => void) | undefined;
|
|
105
|
+
ontransitioncancel?: ((this: import("@esportsplus/frontend").Element, event: TransitionEvent) => void) | undefined;
|
|
106
|
+
ontransitionend?: ((this: import("@esportsplus/frontend").Element, event: TransitionEvent) => void) | undefined;
|
|
107
|
+
ontransitionrun?: ((this: import("@esportsplus/frontend").Element, event: TransitionEvent) => void) | undefined;
|
|
108
|
+
ontransitionstart?: ((this: import("@esportsplus/frontend").Element, event: TransitionEvent) => void) | undefined;
|
|
109
|
+
onvolumechange?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
110
|
+
onwaiting?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
111
|
+
onwebkitanimationend?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
112
|
+
onwebkitanimationiteration?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
113
|
+
onwebkitanimationstart?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
114
|
+
onwebkittransitionend?: ((this: import("@esportsplus/frontend").Element, event: Event) => void) | undefined;
|
|
115
|
+
onwheel?: ((this: import("@esportsplus/frontend").Element, event: WheelEvent) => void) | undefined;
|
|
116
116
|
} & Record<PropertyKey, unknown> & {
|
|
117
117
|
state?: {
|
|
118
118
|
active: boolean;
|