@esportsplus/ui 0.48.7 → 0.49.1
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 +12 -12
- package/build/components/alert/index.d.ts +1 -1
- package/build/components/alert/index.js +27 -27
- package/build/components/back/index.d.ts +9 -9
- package/build/components/back/index.js +8 -8
- package/build/components/button/index.d.ts +22 -22
- package/build/components/button/index.js +16 -16
- package/build/components/checkbox/index.d.ts +1 -1
- package/build/components/checkbox/index.js +15 -15
- package/build/components/clipboard/index.d.ts +1120 -1120
- package/build/components/clipboard/onclick.d.ts +1 -1
- package/build/components/clipboard/onclick.js +8 -8
- package/build/components/counter/index.d.ts +1 -1
- package/build/components/counter/index.js +21 -21
- package/build/components/ellipsis/index.d.ts +1 -1
- package/build/components/ellipsis/index.js +5 -5
- package/build/components/form/action.d.ts +1 -1
- package/build/components/form/action.js +8 -8
- 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 +10 -10
- package/build/components/icon/index.d.ts +11 -11
- package/build/components/icon/index.js +7 -7
- package/build/components/input/index.d.ts +1 -1
- package/build/components/input/index.js +12 -12
- package/build/components/loader/index.d.ts +16 -16
- package/build/components/loader/index.js +22 -22
- package/build/components/loading/index.d.ts +1 -1
- package/build/components/loading/index.js +5 -5
- 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 +14 -14
- package/build/components/scrollbar/index.d.ts +12 -12
- package/build/components/scrollbar/index.js +16 -16
- package/build/components/select/index.d.ts +1 -1
- package/build/components/select/index.js +25 -25
- 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 +12 -12
- package/build/components/tooltip/index.d.ts +2295 -2295
- package/build/components/tooltip/menu.d.ts +12 -12
- package/build/components/tooltip/menu.js +20 -20
- package/build/components/tooltip/onclick.d.ts +1121 -1121
- package/build/components/tooltip/onclick.js +9 -9
- package/build/components/tooltip/onhover.d.ts +16 -16
- package/build/components/tooltip/onhover.js +10 -10
- package/build/components/typewriter/index.d.ts +11 -11
- package/build/components/typewriter/index.js +9 -9
- 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 +3 -3
- 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,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;
|
package/package.json
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
"author": "ICJR",
|
|
3
3
|
"dependencies": {
|
|
4
4
|
"@esportsplus/action": "^0.1.4",
|
|
5
|
+
"@esportsplus/frontend": "^0.1.2",
|
|
5
6
|
"@esportsplus/queue": "^0.2.0",
|
|
6
|
-
"@esportsplus/template": "^0.42.4",
|
|
7
7
|
"@esportsplus/utilities": "^0.27.2",
|
|
8
8
|
"@esportsplus/vite": "^0.12.7",
|
|
9
9
|
"modern-normalize": "^3.0.1"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"@esportsplus/typescript": "^0.
|
|
12
|
+
"@esportsplus/typescript": "^0.28.0",
|
|
13
13
|
"@types/node": "^25.0.5",
|
|
14
14
|
"@types/shelljs": "^0.10.0",
|
|
15
15
|
"autoprefixer": "^10.4.23",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"type": "module",
|
|
61
|
-
"version": "0.
|
|
61
|
+
"version": "0.49.1",
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "run-s build:vite build:ts",
|
|
64
64
|
"build:ts": "tsc",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '@esportsplus/vite/global.d.ts';
|
|
2
2
|
import { Response } from '@esportsplus/action';
|
|
3
|
-
import { html, reactive, svg, Attributes, Renderable } from '@esportsplus/
|
|
3
|
+
import { html, reactive, svg, Attributes, Renderable } from '@esportsplus/frontend';
|
|
4
4
|
import { omit } from '@esportsplus/utilities';
|
|
5
5
|
import { icon } from '@esportsplus/ui';
|
|
6
6
|
import check from './svg/check.svg';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { html, reactive, root, type Attributes } from '@esportsplus/
|
|
1
|
+
import { html, reactive, root, type Attributes } from '@esportsplus/frontend';
|
|
2
2
|
import { omit } from '@esportsplus/utilities';
|
|
3
3
|
import form from '~/components/form';
|
|
4
4
|
import './scss/index.scss';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { html, reactive, type Attributes, type Renderable } from '@esportsplus/
|
|
1
|
+
import { html, reactive, type Attributes, type Renderable } from '@esportsplus/frontend';
|
|
2
2
|
import { omit } from '@esportsplus/utilities';
|
|
3
3
|
import template from '~/components/template';
|
|
4
4
|
import write from './write';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import response, { Response } from '@esportsplus/action';
|
|
2
|
-
import { html, Attributes, Element, Renderable } from '@esportsplus/
|
|
2
|
+
import { html, Attributes, Element, Renderable } from '@esportsplus/frontend';
|
|
3
3
|
import { omit } from '@esportsplus/utilities';
|
|
4
4
|
import input from './input';
|
|
5
5
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { html, reactive, type Attributes } from '@esportsplus/
|
|
1
|
+
import { html, reactive, type Attributes } from '@esportsplus/frontend';
|
|
2
2
|
import { omit } from '@esportsplus/utilities'
|
|
3
3
|
import template from '~/components/template';
|
|
4
4
|
import './scss/index.scss';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { html, reactive, type Attributes } from '@esportsplus/
|
|
1
|
+
import { html, reactive, type Attributes } from '@esportsplus/frontend';
|
|
2
2
|
import { omit } from '@esportsplus/utilities';
|
|
3
3
|
import template from '~/components/template';
|
|
4
4
|
import './scss/index.scss';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { html, reactive, type Renderable, type Attributes } from '@esportsplus/
|
|
1
|
+
import { html, reactive, type Renderable, type Attributes } from '@esportsplus/frontend';
|
|
2
2
|
import { EMPTY_ARRAY, omit, toArray } from '@esportsplus/utilities';
|
|
3
3
|
import form from '~/components/form';
|
|
4
4
|
import root from '~/components/root';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { html, type Attributes, type Renderable } from '@esportsplus/
|
|
1
|
+
import { html, type Attributes, type Renderable } from '@esportsplus/frontend';
|
|
2
2
|
import { omit } from '@esportsplus/utilities';
|
|
3
3
|
import template from '~/components/template';
|
|
4
4
|
import onclick from './onclick';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { html, reactive, type Attributes } from '@esportsplus/
|
|
1
|
+
import { html, reactive, type Attributes } from '@esportsplus/frontend';
|
|
2
2
|
import { omit } from '@esportsplus/utilities';
|
|
3
3
|
import { root } from '@esportsplus/ui';
|
|
4
4
|
import template from '~/components/template';
|