@esportsplus/ui 0.7.3 → 0.7.11
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/clipboard/index.js +1 -1
- package/build/components/footer/index.d.ts +1 -3
- package/build/components/form/action.d.ts +1 -1
- package/build/components/form/action.js +1 -1
- package/build/components/form/index.d.ts +1 -1
- package/build/components/form/index.js +3 -3
- package/build/components/form/types.d.ts +1 -1
- package/build/components/json/index.js +1 -1
- package/build/components/link/index.js +1 -1
- package/build/components/root/index.d.ts +1 -1
- package/build/components/root/index.js +1 -1
- package/build/components/site/index.d.ts +1 -1
- package/build/components/site/index.js +2 -2
- package/build/components/tooltip/index.js +1 -1
- package/build/index.d.ts +19 -19
- package/build/index.js +19 -19
- package/package.json +28 -24
- package/src/components/footer/index.ts +2 -2
- package/src/components/form/types.ts +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import write from './write';
|
|
1
|
+
import write from './write.js';
|
|
2
2
|
export default { write };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import action from './action';
|
|
2
|
-
import input from './input';
|
|
3
|
-
import layout from './layout';
|
|
1
|
+
import action from './action.js';
|
|
2
|
+
import input from './input.js';
|
|
3
|
+
import layout from './layout.js';
|
|
4
4
|
export default { action, input, layout };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import download from './download';
|
|
1
|
+
import download from './download.js';
|
|
2
2
|
export default { download };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import hover from './hover';
|
|
1
|
+
import hover from './hover.js';
|
|
2
2
|
export default { hover };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { html } from '@esportsplus/template';
|
|
2
|
-
import { onclick } from '../../components/root';
|
|
3
|
-
import scrollbar from '../../components/scrollbar';
|
|
2
|
+
import { onclick } from '../../components/root/index.js';
|
|
3
|
+
import scrollbar from '../../components/scrollbar/index.js';
|
|
4
4
|
export default ({ attributes, content, scrollbar: sb }) => {
|
|
5
5
|
sb ??= {};
|
|
6
6
|
sb.attributes ??= {};
|
package/build/index.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export { default as accordion } from './components/accordion';
|
|
2
|
-
export { default as clipboard } from './components/clipboard';
|
|
3
|
-
export { default as counter } from './components/counter';
|
|
4
|
-
export { default as ellipsis } from './components/ellipsis';
|
|
5
|
-
export { default as footer } from './components/footer';
|
|
6
|
-
export { default as form } from './components/form';
|
|
7
|
-
export { default as json } from './components/json';
|
|
8
|
-
export { default as link } from './components/link';
|
|
9
|
-
export { default as loader } from './components/loader';
|
|
10
|
-
export { default as loading } from './components/loading';
|
|
11
|
-
export { default as magnet } from './components/magnet';
|
|
12
|
-
export { default as number } from './components/number';
|
|
13
|
-
export { default as page } from './components/page';
|
|
14
|
-
export { default as root } from './components/root';
|
|
15
|
-
export { default as scrollbar } from './components/scrollbar';
|
|
16
|
-
export { default as site } from './components/site';
|
|
17
|
-
export { default as tooltip } from './components/tooltip';
|
|
18
|
-
export { default as truncate } from './components/truncate';
|
|
19
|
-
export { default as typewriter } from './components/typewriter';
|
|
1
|
+
export { default as accordion } from './components/accordion/index.js';
|
|
2
|
+
export { default as clipboard } from './components/clipboard/index.js';
|
|
3
|
+
export { default as counter } from './components/counter/index.js';
|
|
4
|
+
export { default as ellipsis } from './components/ellipsis/index.js';
|
|
5
|
+
export { default as footer } from './components/footer/index.js';
|
|
6
|
+
export { default as form } from './components/form/index.js';
|
|
7
|
+
export { default as json } from './components/json/index.js';
|
|
8
|
+
export { default as link } from './components/link/index.js';
|
|
9
|
+
export { default as loader } from './components/loader/index.js';
|
|
10
|
+
export { default as loading } from './components/loading/index.js';
|
|
11
|
+
export { default as magnet } from './components/magnet/index.js';
|
|
12
|
+
export { default as number } from './components/number/index.js';
|
|
13
|
+
export { default as page } from './components/page/index.js';
|
|
14
|
+
export { default as root } from './components/root/index.js';
|
|
15
|
+
export { default as scrollbar } from './components/scrollbar/index.js';
|
|
16
|
+
export { default as site } from './components/site/index.js';
|
|
17
|
+
export { default as tooltip } from './components/tooltip/index.js';
|
|
18
|
+
export { default as truncate } from './components/truncate/index.js';
|
|
19
|
+
export { default as typewriter } from './components/typewriter/index.js';
|
package/build/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export { default as accordion } from './components/accordion';
|
|
2
|
-
export { default as clipboard } from './components/clipboard';
|
|
3
|
-
export { default as counter } from './components/counter';
|
|
4
|
-
export { default as ellipsis } from './components/ellipsis';
|
|
5
|
-
export { default as footer } from './components/footer';
|
|
6
|
-
export { default as form } from './components/form';
|
|
7
|
-
export { default as json } from './components/json';
|
|
8
|
-
export { default as link } from './components/link';
|
|
9
|
-
export { default as loader } from './components/loader';
|
|
10
|
-
export { default as loading } from './components/loading';
|
|
11
|
-
export { default as magnet } from './components/magnet';
|
|
12
|
-
export { default as number } from './components/number';
|
|
13
|
-
export { default as page } from './components/page';
|
|
14
|
-
export { default as root } from './components/root';
|
|
15
|
-
export { default as scrollbar } from './components/scrollbar';
|
|
16
|
-
export { default as site } from './components/site';
|
|
17
|
-
export { default as tooltip } from './components/tooltip';
|
|
18
|
-
export { default as truncate } from './components/truncate';
|
|
19
|
-
export { default as typewriter } from './components/typewriter';
|
|
1
|
+
export { default as accordion } from './components/accordion/index.js';
|
|
2
|
+
export { default as clipboard } from './components/clipboard/index.js';
|
|
3
|
+
export { default as counter } from './components/counter/index.js';
|
|
4
|
+
export { default as ellipsis } from './components/ellipsis/index.js';
|
|
5
|
+
export { default as footer } from './components/footer/index.js';
|
|
6
|
+
export { default as form } from './components/form/index.js';
|
|
7
|
+
export { default as json } from './components/json/index.js';
|
|
8
|
+
export { default as link } from './components/link/index.js';
|
|
9
|
+
export { default as loader } from './components/loader/index.js';
|
|
10
|
+
export { default as loading } from './components/loading/index.js';
|
|
11
|
+
export { default as magnet } from './components/magnet/index.js';
|
|
12
|
+
export { default as number } from './components/number/index.js';
|
|
13
|
+
export { default as page } from './components/page/index.js';
|
|
14
|
+
export { default as root } from './components/root/index.js';
|
|
15
|
+
export { default as scrollbar } from './components/scrollbar/index.js';
|
|
16
|
+
export { default as site } from './components/site/index.js';
|
|
17
|
+
export { default as tooltip } from './components/tooltip/index.js';
|
|
18
|
+
export { default as truncate } from './components/truncate/index.js';
|
|
19
|
+
export { default as typewriter } from './components/typewriter/index.js';
|
package/package.json
CHANGED
|
@@ -1,25 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
2
|
+
"author": "ICJR",
|
|
3
|
+
"dependencies": {
|
|
4
|
+
"@esportsplus/action": "^0.0.54",
|
|
5
|
+
"@esportsplus/reactivity": "^0.4.3",
|
|
6
|
+
"@esportsplus/template": "^0.9.8",
|
|
7
|
+
"@esportsplus/typescript": "^0.8.14"
|
|
8
|
+
},
|
|
9
|
+
"devDependencies": {
|
|
10
|
+
"@esportsplus/webpack": "^0.5.8",
|
|
11
|
+
"modern-normalize": "^3.0.1",
|
|
12
|
+
"css-loader": "^7.1.2",
|
|
13
|
+
"postcss-loader": "^8.1.1",
|
|
14
|
+
"sass-loader": "^16.0.5"
|
|
15
|
+
},
|
|
16
|
+
"main": "build/index.js",
|
|
17
|
+
"name": "@esportsplus/ui",
|
|
18
|
+
"private": false,
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"type": "module",
|
|
21
|
+
"types": "build/index.d.ts",
|
|
22
|
+
"version": "0.7.11",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "npm run build:ts && npm run build:assets",
|
|
25
|
+
"build:ts": "tsc && tsc-alias",
|
|
26
|
+
"build:assets": "webpack build --env=production=true",
|
|
27
|
+
"-": "-"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -15,7 +15,7 @@ type Data = {
|
|
|
15
15
|
};
|
|
16
16
|
social?: {
|
|
17
17
|
attributes?: Record<string, unknown>;
|
|
18
|
-
links: { icon:
|
|
18
|
+
links: { icon: string, url: string }[]
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
|
|
@@ -55,7 +55,7 @@ export default ({ copyright, footer, nav, social }: Data) => {
|
|
|
55
55
|
|
|
56
56
|
<div class='footer-break'></div>
|
|
57
57
|
|
|
58
|
-
${social?.links && social.links.map(({ icon, url }
|
|
58
|
+
${social?.links && social.links.map(({ icon, url }) => html`
|
|
59
59
|
<div class='group-item'>
|
|
60
60
|
<a
|
|
61
61
|
class='link --color-white --padding-0px'
|