zerocodejs 1.0.1-beta.6 → 1.0.1-beta.8
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.ja.md +2 -2
- package/README.md +2 -2
- package/package.json +3 -3
package/README.ja.md
CHANGED
|
@@ -50,7 +50,7 @@ ZeroCode.jsは内部でVue 3を使用しています。npm 7以降では、peer
|
|
|
50
50
|
<head>
|
|
51
51
|
<meta charset="UTF-8">
|
|
52
52
|
<title>ZeroCode.js Example</title>
|
|
53
|
-
<link rel="stylesheet" href="node_modules/zerocodejs/dist/
|
|
53
|
+
<link rel="stylesheet" href="node_modules/zerocodejs/dist/zerocodejs.css">
|
|
54
54
|
</head>
|
|
55
55
|
<body>
|
|
56
56
|
<zcode-cms id="cms" locale="ja">
|
|
@@ -137,7 +137,7 @@ import 'zerocodejs/style.css';
|
|
|
137
137
|
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
|
138
138
|
<!-- ZeroCode.jsを読み込む -->
|
|
139
139
|
<script src="https://unpkg.com/zerocodejs/dist/zerocode.umd.js"></script>
|
|
140
|
-
<link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/
|
|
140
|
+
<link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/zerocodejs.css">
|
|
141
141
|
```
|
|
142
142
|
|
|
143
143
|
## ドキュメント
|
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ ZeroCode.js uses Vue 3 internally. With npm 7+, peer dependencies are installed
|
|
|
47
47
|
<head>
|
|
48
48
|
<meta charset="UTF-8">
|
|
49
49
|
<title>ZeroCode.js Example</title>
|
|
50
|
-
<link rel="stylesheet" href="node_modules/zerocodejs/dist/
|
|
50
|
+
<link rel="stylesheet" href="node_modules/zerocodejs/dist/zerocodejs.css">
|
|
51
51
|
</head>
|
|
52
52
|
<body>
|
|
53
53
|
<zcode-cms id="cms" locale="en">
|
|
@@ -115,7 +115,7 @@ import 'zerocodejs/style.css';
|
|
|
115
115
|
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
|
116
116
|
<!-- Load ZeroCode.js -->
|
|
117
117
|
<script src="https://unpkg.com/zerocodejs/dist/zerocode.umd.js"></script>
|
|
118
|
-
<link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/
|
|
118
|
+
<link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/zerocodejs.css">
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
## Components
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zerocodejs",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.8",
|
|
4
4
|
"description": "ZeroCode.js - フレームワーク非依存のWeb ComponentsのCMSフロントエンドライブラリ",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/zerocode.umd.js",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"import": "./dist/zerocode.es.js",
|
|
13
13
|
"require": "./dist/zerocode.umd.js"
|
|
14
14
|
},
|
|
15
|
-
"./style.css": "./dist/
|
|
16
|
-
"./
|
|
15
|
+
"./style.css": "./dist/zerocodejs.css",
|
|
16
|
+
"./zerocodejs.css": "./dist/zerocodejs.css"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist"
|