@esportsplus/ui 0.47.2 → 0.48.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 +2 -3
- package/build/components/accordion/index.d.ts +16 -16
- package/build/components/accordion/index.js +13 -23
- package/build/components/alert/index.js +33 -64
- package/build/components/back/index.d.ts +8 -8
- package/build/components/back/index.js +8 -8
- package/build/components/button/index.d.ts +21 -21
- package/build/components/button/index.js +20 -36
- package/build/components/checkbox/index.js +19 -36
- package/build/components/clipboard/onclick.js +11 -21
- package/build/components/counter/index.js +28 -59
- package/build/components/ellipsis/index.js +5 -5
- package/build/components/form/action.js +8 -8
- package/build/components/highlight/index.d.ts +16 -16
- package/build/components/highlight/index.js +12 -22
- package/build/components/icon/index.d.ts +11 -11
- package/build/components/icon/index.js +6 -6
- package/build/components/input/index.js +16 -32
- package/build/components/loader/index.d.ts +16 -16
- package/build/components/loader/index.js +26 -48
- package/build/components/loading/index.js +5 -5
- package/build/components/range/index.js +19 -42
- package/build/components/scrollbar/index.d.ts +11 -11
- package/build/components/scrollbar/index.js +19 -35
- package/build/components/select/index.js +34 -63
- package/build/components/textarea/index.js +16 -32
- package/build/components/tooltip/menu.d.ts +11 -11
- package/build/components/tooltip/menu.js +20 -20
- package/build/components/tooltip/onclick.d.ts +1101 -1101
- package/build/components/tooltip/onclick.js +10 -22
- package/build/components/tooltip/onhover.d.ts +16 -16
- package/build/components/tooltip/onhover.js +11 -23
- package/build/components/typewriter/index.d.ts +11 -11
- package/build/components/typewriter/index.js +10 -22
- package/package.json +3 -4
- package/src/components/accordion/index.ts +1 -2
- package/src/components/alert/index.ts +1 -2
- package/src/components/button/index.ts +1 -2
- package/src/components/checkbox/index.ts +1 -2
- package/src/components/clipboard/onclick.ts +1 -2
- package/src/components/counter/index.ts +1 -2
- package/src/components/highlight/index.ts +1 -2
- package/src/components/input/index.ts +1 -2
- package/src/components/loader/index.ts +1 -2
- package/src/components/range/index.ts +1 -2
- package/src/components/scrollbar/index.ts +1 -2
- package/src/components/select/index.ts +1 -2
- package/src/components/textarea/index.ts +1 -2
- package/src/components/tooltip/onclick.ts +1 -2
- package/src/components/tooltip/onhover.ts +1 -2
- package/src/components/typewriter/index.ts +1 -2
|
@@ -1,22 +1,10 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
1
|
+
import * as template_ed8f776bb07a460eadcbcfe445975fdf1 from '@esportsplus/template';
|
|
2
|
+
import { reactive } from '@esportsplus/template';
|
|
3
3
|
import { omit } from '@esportsplus/utilities';
|
|
4
4
|
import { root } from '@esportsplus/ui';
|
|
5
5
|
import template from '../../components/template/index.js';
|
|
6
|
-
const
|
|
6
|
+
const template_ed8f776bb07a460eadcbcfe445975fdf3g = template_ed8f776bb07a460eadcbcfe445975fdf1.template(`<div
|
|
7
7
|
class='tooltip'><!--$--></div>`);
|
|
8
|
-
class ReactiveObject_a6aeaec5a75649bd8ec693d5230c50003t extends reactivity_a6aeaec5a75649bd8ec693d5230c50000.ReactiveObject {
|
|
9
|
-
#active = this[reactivity_a6aeaec5a75649bd8ec693d5230c50000.SIGNAL](false);
|
|
10
|
-
constructor() {
|
|
11
|
-
super(null);
|
|
12
|
-
}
|
|
13
|
-
get active() {
|
|
14
|
-
return reactivity_a6aeaec5a75649bd8ec693d5230c50000.read(this.#active);
|
|
15
|
-
}
|
|
16
|
-
set active(_v0) {
|
|
17
|
-
reactivity_a6aeaec5a75649bd8ec693d5230c50000.write(this.#active, _v0);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
8
|
const OMIT = ['state', 'toggle'];
|
|
21
9
|
let parent = null, queue = [], running = false, scheduled = false;
|
|
22
10
|
function frame() {
|
|
@@ -38,12 +26,12 @@ function frame() {
|
|
|
38
26
|
running = false;
|
|
39
27
|
}
|
|
40
28
|
export default template.factory((attributes, content) => {
|
|
41
|
-
let state = attributes.state ||
|
|
29
|
+
let state = attributes.state || reactive({ active: false }), toggle = attributes.toggle || false;
|
|
42
30
|
return (() => {
|
|
43
|
-
let
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
31
|
+
let root_ed8f776bb07a460eadcbcfe445975fdf3f = template_ed8f776bb07a460eadcbcfe445975fdf3g(), element_ed8f776bb07a460eadcbcfe445975fdf3h = root_ed8f776bb07a460eadcbcfe445975fdf3f.firstChild, element_ed8f776bb07a460eadcbcfe445975fdf3i = element_ed8f776bb07a460eadcbcfe445975fdf3h.firstChild;
|
|
32
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.setProperties(element_ed8f776bb07a460eadcbcfe445975fdf3h, omit(attributes, OMIT));
|
|
33
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.setClass(element_ed8f776bb07a460eadcbcfe445975fdf3h, '', () => state.active && '--active');
|
|
34
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.delegate(element_ed8f776bb07a460eadcbcfe445975fdf3h, 'click', function (e) {
|
|
47
35
|
let active = true, node = e.target;
|
|
48
36
|
if (this === node || (toggle && this.contains(node))) {
|
|
49
37
|
active = !state.active;
|
|
@@ -71,7 +59,7 @@ export default template.factory((attributes, content) => {
|
|
|
71
59
|
scheduled = true;
|
|
72
60
|
}
|
|
73
61
|
});
|
|
74
|
-
|
|
75
|
-
return
|
|
62
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.slot(element_ed8f776bb07a460eadcbcfe445975fdf3i, content);
|
|
63
|
+
return root_ed8f776bb07a460eadcbcfe445975fdf3f;
|
|
76
64
|
})();
|
|
77
65
|
});
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as template_ed8f776bb07a460eadcbcfe445975fdf1 from '@esportsplus/template';
|
|
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?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
5
|
+
content?: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>;
|
|
6
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
7
|
+
<T extends template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>(attributes: T): ReturnType<(this: {
|
|
8
|
+
attributes?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
9
|
+
content?: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>;
|
|
10
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
11
|
+
<T extends template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>(content: T): ReturnType<(this: {
|
|
12
|
+
attributes?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
13
|
+
content?: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>;
|
|
14
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
15
|
+
(attributes: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes, content: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>): ReturnType<(this: {
|
|
16
|
+
attributes?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
17
|
+
content?: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>;
|
|
18
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
19
19
|
};
|
|
20
20
|
export default _default;
|
|
@@ -1,35 +1,23 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
1
|
+
import * as template_ed8f776bb07a460eadcbcfe445975fdf1 from '@esportsplus/template';
|
|
2
|
+
import { reactive } from '@esportsplus/template';
|
|
3
3
|
import { omit } from '@esportsplus/utilities';
|
|
4
4
|
import template from '../../components/template/index.js';
|
|
5
|
-
const
|
|
5
|
+
const template_ed8f776bb07a460eadcbcfe445975fdf3k = template_ed8f776bb07a460eadcbcfe445975fdf1.template(`<div
|
|
6
6
|
class='tooltip'><!--$--></div>`);
|
|
7
|
-
class ReactiveObject_a6aeaec5a75649bd8ec693d5230c50003y extends reactivity_a6aeaec5a75649bd8ec693d5230c50000.ReactiveObject {
|
|
8
|
-
#active = this[reactivity_a6aeaec5a75649bd8ec693d5230c50000.SIGNAL](false);
|
|
9
|
-
constructor() {
|
|
10
|
-
super(null);
|
|
11
|
-
}
|
|
12
|
-
get active() {
|
|
13
|
-
return reactivity_a6aeaec5a75649bd8ec693d5230c50000.read(this.#active);
|
|
14
|
-
}
|
|
15
|
-
set active(_v0) {
|
|
16
|
-
reactivity_a6aeaec5a75649bd8ec693d5230c50000.write(this.#active, _v0);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
7
|
const OMIT = ['state'];
|
|
20
8
|
export default template.factory((attributes, content) => {
|
|
21
|
-
let state = attributes.state ||
|
|
9
|
+
let state = attributes.state || reactive({ active: false });
|
|
22
10
|
return (() => {
|
|
23
|
-
let
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
11
|
+
let root_ed8f776bb07a460eadcbcfe445975fdf3j = template_ed8f776bb07a460eadcbcfe445975fdf3k(), element_ed8f776bb07a460eadcbcfe445975fdf3l = root_ed8f776bb07a460eadcbcfe445975fdf3j.firstChild, element_ed8f776bb07a460eadcbcfe445975fdf3m = element_ed8f776bb07a460eadcbcfe445975fdf3l.firstChild;
|
|
12
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.setProperties(element_ed8f776bb07a460eadcbcfe445975fdf3l, omit(attributes, OMIT));
|
|
13
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.setClass(element_ed8f776bb07a460eadcbcfe445975fdf3l, '', () => state.active && '--active');
|
|
14
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.delegate(element_ed8f776bb07a460eadcbcfe445975fdf3l, 'mouseover', () => {
|
|
27
15
|
state.active = true;
|
|
28
16
|
});
|
|
29
|
-
|
|
17
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.delegate(element_ed8f776bb07a460eadcbcfe445975fdf3l, 'mouseout', () => {
|
|
30
18
|
state.active = false;
|
|
31
19
|
});
|
|
32
|
-
|
|
33
|
-
return
|
|
20
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.slot(element_ed8f776bb07a460eadcbcfe445975fdf3m, content);
|
|
21
|
+
return root_ed8f776bb07a460eadcbcfe445975fdf3j;
|
|
34
22
|
})();
|
|
35
23
|
});
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as template_ed8f776bb07a460eadcbcfe445975fdf1 from '@esportsplus/template';
|
|
2
2
|
import './scss/index.scss';
|
|
3
3
|
declare const _default: {
|
|
4
4
|
(): ReturnType<(this: {
|
|
5
|
-
attributes?:
|
|
5
|
+
attributes?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
6
6
|
content?: string[] | undefined;
|
|
7
|
-
}, attributes: Readonly<
|
|
8
|
-
<T extends
|
|
9
|
-
attributes?:
|
|
7
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: string[]) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
8
|
+
<T extends template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>(attributes: T): ReturnType<(this: {
|
|
9
|
+
attributes?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
10
10
|
content?: string[] | undefined;
|
|
11
|
-
}, attributes: Readonly<
|
|
11
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: string[]) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
12
12
|
<T extends string[]>(content: T): ReturnType<(this: {
|
|
13
|
-
attributes?:
|
|
13
|
+
attributes?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
14
14
|
content?: string[] | undefined;
|
|
15
|
-
}, attributes: Readonly<
|
|
16
|
-
(attributes:
|
|
17
|
-
attributes?:
|
|
15
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: string[]) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
16
|
+
(attributes: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes, content: string[]): ReturnType<(this: {
|
|
17
|
+
attributes?: template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes | undefined;
|
|
18
18
|
content?: string[] | undefined;
|
|
19
|
-
}, attributes: Readonly<
|
|
19
|
+
}, attributes: Readonly<template_ed8f776bb07a460eadcbcfe445975fdf1.Attributes>, content: string[]) => template_ed8f776bb07a460eadcbcfe445975fdf1.Renderable<any>>;
|
|
20
20
|
};
|
|
21
21
|
export default _default;
|
|
@@ -1,27 +1,15 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
1
|
+
import * as template_ed8f776bb07a460eadcbcfe445975fdf1 from '@esportsplus/template';
|
|
2
|
+
import { reactive } from '@esportsplus/template';
|
|
3
3
|
import template from '../../components/template/index.js';
|
|
4
4
|
import './scss/index.scss';
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
#text = this[reactivity_a6aeaec5a75649bd8ec693d5230c50000.SIGNAL]('');
|
|
9
|
-
constructor() {
|
|
10
|
-
super(null);
|
|
11
|
-
}
|
|
12
|
-
get text() {
|
|
13
|
-
return reactivity_a6aeaec5a75649bd8ec693d5230c50000.read(this.#text);
|
|
14
|
-
}
|
|
15
|
-
set text(_v0) {
|
|
16
|
-
reactivity_a6aeaec5a75649bd8ec693d5230c50000.write(this.#text, _v0);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
const EMPTY_NODE = template_a6aeaec5a75649bd8ec693d5230c500048();
|
|
5
|
+
const template_ed8f776bb07a460eadcbcfe445975fdf3o = template_ed8f776bb07a460eadcbcfe445975fdf1.template(`<div class='typewriter'><!--$--></div>`);
|
|
6
|
+
const template_ed8f776bb07a460eadcbcfe445975fdf3r = template_ed8f776bb07a460eadcbcfe445975fdf1.template(``);
|
|
7
|
+
const EMPTY_NODE = template_ed8f776bb07a460eadcbcfe445975fdf3r();
|
|
20
8
|
export default template.factory(function (_, content) {
|
|
21
|
-
let state =
|
|
9
|
+
let state = reactive({ text: '' });
|
|
22
10
|
return (() => {
|
|
23
|
-
let
|
|
24
|
-
|
|
11
|
+
let root_ed8f776bb07a460eadcbcfe445975fdf3n = template_ed8f776bb07a460eadcbcfe445975fdf3o(), element_ed8f776bb07a460eadcbcfe445975fdf3p = root_ed8f776bb07a460eadcbcfe445975fdf3n.firstChild, element_ed8f776bb07a460eadcbcfe445975fdf3q = element_ed8f776bb07a460eadcbcfe445975fdf3p.firstChild;
|
|
12
|
+
template_ed8f776bb07a460eadcbcfe445975fdf1.onconnect(element_ed8f776bb07a460eadcbcfe445975fdf3p, () => {
|
|
25
13
|
let character = 0, i = 0, isWriting = true, write = content[i];
|
|
26
14
|
function play() {
|
|
27
15
|
setTimeout(() => {
|
|
@@ -50,7 +38,7 @@ export default template.factory(function (_, content) {
|
|
|
50
38
|
}
|
|
51
39
|
play();
|
|
52
40
|
});
|
|
53
|
-
new
|
|
54
|
-
return
|
|
41
|
+
new template_ed8f776bb07a460eadcbcfe445975fdf1.EffectSlot(element_ed8f776bb07a460eadcbcfe445975fdf3q, () => state.text || EMPTY_NODE);
|
|
42
|
+
return root_ed8f776bb07a460eadcbcfe445975fdf3n;
|
|
55
43
|
})();
|
|
56
44
|
});
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "ICJR",
|
|
3
3
|
"dependencies": {
|
|
4
|
-
"@esportsplus/action": "^0.1.
|
|
4
|
+
"@esportsplus/action": "^0.1.4",
|
|
5
5
|
"@esportsplus/queue": "^0.2.0",
|
|
6
|
-
"@esportsplus/
|
|
7
|
-
"@esportsplus/template": "^0.40.4",
|
|
6
|
+
"@esportsplus/template": "^0.41.0",
|
|
8
7
|
"@esportsplus/utilities": "^0.27.2",
|
|
9
8
|
"@esportsplus/vite": "^0.12.3",
|
|
10
9
|
"modern-normalize": "^3.0.1"
|
|
@@ -59,7 +58,7 @@
|
|
|
59
58
|
},
|
|
60
59
|
"sideEffects": false,
|
|
61
60
|
"type": "module",
|
|
62
|
-
"version": "0.
|
|
61
|
+
"version": "0.48.0",
|
|
63
62
|
"scripts": {
|
|
64
63
|
"build": "run-s build:vite build:ts",
|
|
65
64
|
"build:ts": "tsc",
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import template from '~/components/template';
|
|
5
4
|
import './scss/index.scss';
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import '@esportsplus/vite/global.d.ts';
|
|
2
2
|
import { Response } from '@esportsplus/action';
|
|
3
|
-
import { reactive } from '@esportsplus/
|
|
4
|
-
import { html, svg, Attributes, Renderable } from '@esportsplus/template';
|
|
3
|
+
import { html, reactive, svg, Attributes, Renderable } from '@esportsplus/template';
|
|
5
4
|
import { omit } from '@esportsplus/utilities';
|
|
6
5
|
import { icon } from '@esportsplus/ui';
|
|
7
6
|
import check from './svg/check.svg';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive, root } from '@esportsplus/
|
|
2
|
-
import { html, type Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, root, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import form from '~/components/form';
|
|
5
4
|
import './scss/index.scss';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, type Attributes, type Renderable } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, type Attributes, type Renderable } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import template from '~/components/template';
|
|
5
4
|
import write from './write';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { effect, reactive } from '@esportsplus/
|
|
2
|
-
import { html, type Attributes } from '@esportsplus/template';
|
|
1
|
+
import { effect, html, reactive, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import './scss/index.scss';
|
|
5
4
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import template from '~/components/template';
|
|
5
4
|
import './scss/index.scss';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities'
|
|
4
3
|
import template from '~/components/template';
|
|
5
4
|
import './scss/index.scss';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive, root } from '@esportsplus/
|
|
2
|
-
import { html, type Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, root, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import form from '~/components/form';
|
|
4
3
|
import './scss/index.scss';
|
|
5
4
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, type Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import template from '~/components/template';
|
|
5
4
|
import './scss/index.scss';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, Renderable, type Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, type Renderable, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import { EMPTY_ARRAY, omit, toArray } from '@esportsplus/utilities';
|
|
4
3
|
import form from '~/components/form';
|
|
5
4
|
import root from '~/components/root';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, type Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import form from '~/components/form';
|
|
5
4
|
import './scss/index.scss';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, type Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, type Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import { root } from '@esportsplus/ui';
|
|
5
4
|
import template from '~/components/template';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { reactive } from '@esportsplus/
|
|
2
|
-
import { html, Attributes } from '@esportsplus/template';
|
|
1
|
+
import { html, reactive, Attributes } from '@esportsplus/template';
|
|
3
2
|
import { omit } from '@esportsplus/utilities';
|
|
4
3
|
import template from '~/components/template';
|
|
5
4
|
|