create-rsbuild 0.0.0-next-20231108034054 → 0.0.0-next-20231115072032
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/CHANGELOG.md +28 -1
- package/dist/index.js +16 -2
- package/package.json +2 -2
- package/template-lit-js/package.json +14 -0
- package/template-lit-js/rsbuild.config.mjs +7 -0
- package/template-lit-js/src/index.css +6 -0
- package/template-lit-js/src/index.html +5 -0
- package/template-lit-js/src/index.js +4 -0
- package/template-lit-js/src/my-element.js +34 -0
- package/template-lit-ts/package.json +15 -0
- package/template-lit-ts/rsbuild.config.ts +7 -0
- package/template-lit-ts/src/env.d.ts +1 -0
- package/template-lit-ts/src/index.css +6 -0
- package/template-lit-ts/src/index.html +5 -0
- package/template-lit-ts/src/index.ts +4 -0
- package/template-lit-ts/src/my-element.ts +34 -0
- package/template-lit-ts/tsconfig.json +13 -0
- package/template-react-js/package.json +1 -1
- package/template-react-js/src/App.css +26 -0
- package/template-react-js/src/App.jsx +6 -16
- package/template-react-js/src/index.jsx +0 -1
- package/template-react-ts/package.json +1 -1
- package/template-react-ts/src/App.css +26 -0
- package/template-react-ts/src/App.tsx +6 -16
- package/template-react-ts/src/env.d.ts +1 -0
- package/template-react-ts/src/index.tsx +0 -1
- package/template-svelte-js/package.json +1 -1
- package/template-svelte-js/src/App.svelte +21 -26
- package/template-svelte-js/src/index.css +6 -0
- package/template-svelte-js/src/index.js +1 -2
- package/template-svelte-ts/package.json +1 -1
- package/template-svelte-ts/src/App.svelte +21 -26
- package/template-svelte-ts/src/env.d.ts +2 -0
- package/template-svelte-ts/src/index.css +6 -0
- package/template-svelte-ts/src/index.ts +1 -2
- package/template-vanilla-js/package.json +13 -0
- package/template-vanilla-js/rsbuild.config.mjs +3 -0
- package/template-vanilla-js/src/index.css +26 -0
- package/template-vanilla-js/src/index.js +8 -0
- package/template-vanilla-ts/package.json +14 -0
- package/template-vanilla-ts/rsbuild.config.ts +3 -0
- package/template-vanilla-ts/src/index.css +26 -0
- package/template-vanilla-ts/src/index.ts +8 -0
- package/template-vanilla-ts/tsconfig.json +13 -0
- package/template-vue2-js/package.json +1 -1
- package/template-vue2-js/src/App.vue +21 -20
- package/template-vue2-js/src/index.css +3 -38
- package/template-vue2-js/src/index.js +1 -1
- package/template-vue2-ts/package.json +1 -1
- package/template-vue2-ts/src/App.vue +20 -21
- package/template-vue2-ts/src/env.d.ts +2 -0
- package/template-vue2-ts/src/index.css +3 -38
- package/template-vue2-ts/src/index.ts +1 -1
- package/template-vue3-js/package.json +1 -1
- package/template-vue3-js/src/App.vue +21 -22
- package/template-vue3-js/src/index.css +3 -38
- package/template-vue3-js/src/index.js +1 -1
- package/template-vue3-ts/package.json +1 -1
- package/template-vue3-ts/src/App.vue +21 -16
- package/template-vue3-ts/src/env.d.ts +2 -0
- package/template-vue3-ts/src/index.css +3 -38
- package/template-vue3-ts/src/index.ts +1 -1
- package/template-react-js/src/index.css +0 -41
- package/template-react-ts/src/index.css +0 -41
- package/template-svelte-js/src/global.css +0 -68
- package/template-svelte-ts/src/global.css +0 -68
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
html,
|
|
2
|
-
body {
|
|
3
|
-
position: relative;
|
|
4
|
-
width: 100%;
|
|
5
|
-
height: 100%;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
body {
|
|
9
|
-
color: #333;
|
|
10
|
-
margin: 0;
|
|
11
|
-
padding: 8px;
|
|
12
|
-
box-sizing: border-box;
|
|
13
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
14
|
-
Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
a {
|
|
18
|
-
color: rgb(0, 100, 200);
|
|
19
|
-
text-decoration: none;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
a:hover {
|
|
23
|
-
text-decoration: underline;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
a:visited {
|
|
27
|
-
color: rgb(0, 80, 160);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
label {
|
|
31
|
-
display: block;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
input,
|
|
35
|
-
button,
|
|
36
|
-
select,
|
|
37
|
-
textarea {
|
|
38
|
-
font-family: inherit;
|
|
39
|
-
font-size: inherit;
|
|
40
|
-
-webkit-padding: 0.4em 0;
|
|
41
|
-
padding: 0.4em;
|
|
42
|
-
margin: 0 0 0.5em 0;
|
|
43
|
-
box-sizing: border-box;
|
|
44
|
-
border: 1px solid #ccc;
|
|
45
|
-
border-radius: 2px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
input:disabled {
|
|
49
|
-
color: #ccc;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
button {
|
|
53
|
-
color: #333;
|
|
54
|
-
background-color: #f4f4f4;
|
|
55
|
-
outline: none;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
button:disabled {
|
|
59
|
-
color: #999;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
button:not(:disabled):active {
|
|
63
|
-
background-color: #ddd;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
button:focus {
|
|
67
|
-
border-color: #666;
|
|
68
|
-
}
|