zerocodejs 1.0.1-beta.8 → 1.0.1-beta.9

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 CHANGED
@@ -28,91 +28,71 @@
28
28
  - **パーツ管理**: 再利用可能なパーツを作成・管理
29
29
  - **画像管理**: 画像のアップロード・管理機能
30
30
  - **柔軟なテンプレート**: カスタムHTMLテンプレート構文で動的なコンテンツを定義
31
- - **高速**: Vue 3とViteによる高速な開発体験
31
+ - **軽量**: gzip後 約260KB
32
32
 
33
- ## インストール
33
+ ## デモ
34
34
 
35
- ```bash
36
- npm install zerocodejs
37
- ```
35
+ **ライブデモ:** https://atsumi-code.github.io/zerocodejs/
38
36
 
39
- ZeroCode.jsは内部でVue 3を使用しています。npm 7以降では、peer dependenciesが自動的にインストールされるため、`npm install zerocodejs`だけでVueも一緒にインストールされます。
37
+ ## クイックスタート
40
38
 
41
- > **注意:** npm 6以前を使用している場合は、明示的に`npm install zerocodejs vue`を実行してください。
39
+ ### CDN(最も簡単)
42
40
 
43
- ## クイックスタート
41
+ ```html
42
+ <!DOCTYPE html>
43
+ <html>
44
+ <head>
45
+ <link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/zerocodejs.css">
46
+ </head>
47
+ <body>
48
+ <zcode-editor></zcode-editor>
49
+
50
+ <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
51
+ <script src="https://unpkg.com/zerocodejs/dist/zerocode.umd.js"></script>
52
+ </body>
53
+ </html>
54
+ ```
55
+
56
+ これだけです!ブラウザでファイルを開いて、パーツの作成を始めましょう。
44
57
 
45
- ### 基本的な使用例
58
+ ### npm
59
+
60
+ ```bash
61
+ npm install zerocodejs
62
+ ```
46
63
 
47
64
  ```html
48
65
  <!DOCTYPE html>
49
- <html lang="ja">
66
+ <html>
50
67
  <head>
51
- <meta charset="UTF-8">
52
- <title>ZeroCode.js Example</title>
53
68
  <link rel="stylesheet" href="node_modules/zerocodejs/dist/zerocodejs.css">
54
69
  </head>
55
70
  <body>
56
- <zcode-cms id="cms" locale="ja">
57
- <link slot="css" rel="stylesheet" href="/css/common.css" />
58
- <script slot="script" src="/js/accordion.js"></script>
59
- </zcode-cms>
71
+ <zcode-editor></zcode-editor>
60
72
 
61
73
  <script type="module">
62
74
  import 'zerocodejs';
63
-
64
- const cms = document.getElementById('cms');
65
- cms.setAttribute('page', JSON.stringify([]));
66
- cms.setAttribute('parts-common', JSON.stringify([]));
67
- cms.setAttribute('parts-individual', JSON.stringify([]));
68
- cms.setAttribute('parts-special', JSON.stringify([]));
69
- cms.setAttribute('images-common', JSON.stringify([]));
70
- cms.setAttribute('images-individual', JSON.stringify([]));
71
- cms.setAttribute('images-special', JSON.stringify([]));
72
75
  </script>
73
76
  </body>
74
77
  </html>
75
78
  ```
76
79
 
77
- ### Reactでの使用例
78
-
79
- ```bash
80
- npm install zerocodejs
81
- ```
80
+ ### React
82
81
 
83
82
  ```jsx
84
- import { useEffect } from 'react';
85
83
  import 'zerocodejs';
86
84
  import 'zerocodejs/style.css';
87
85
 
88
86
  function App() {
89
- useEffect(() => {
90
- const cms = document.getElementById('cms');
91
- if (cms) {
92
- cms.setAttribute('page', JSON.stringify([]));
93
- cms.setAttribute('parts-common', JSON.stringify([]));
94
- cms.setAttribute('parts-individual', JSON.stringify([]));
95
- cms.setAttribute('parts-special', JSON.stringify([]));
96
- cms.setAttribute('images-common', JSON.stringify([]));
97
- cms.setAttribute('images-individual', JSON.stringify([]));
98
- cms.setAttribute('images-special', JSON.stringify([]));
99
- }
100
- }, []);
101
-
102
- return <zcode-cms id="cms" locale="ja" />;
87
+ return <zcode-editor />;
103
88
  }
104
89
  ```
105
90
 
106
- ### Vueでの使用例
107
-
108
- ```bash
109
- npm install zerocodejs
110
- # Vueは既にインストール済み
111
- ```
91
+ ### Vue
112
92
 
113
93
  ```vue
114
94
  <template>
115
- <zcode-cms id="cms" locale="ja" />
95
+ <zcode-editor />
116
96
  </template>
117
97
 
118
98
  <script setup>
@@ -121,23 +101,33 @@ import 'zerocodejs/style.css';
121
101
  </script>
122
102
  ```
123
103
 
124
- ### エンジニア用管理画面
104
+ ## コンポーネント
105
+
106
+ ### `<zcode-editor>`
107
+
108
+ エンジニア・デザイナー向けエディター。パーツ管理、画像管理、データビューアを含む全機能が利用可能。**はじめての方におすすめ。**
125
109
 
126
110
  ```html
127
- <zcode-editor id="editor" locale="ja">
128
- <link slot="css" rel="stylesheet" href="/css/common.css" />
129
- <script slot="script" src="/js/accordion.js"></script>
130
- </zcode-editor>
111
+ <zcode-editor></zcode-editor>
131
112
  ```
132
113
 
133
- ### CDN経由で使用する場合
114
+ ### `<zcode-cms>`
115
+
116
+ エンドユーザー向けCMSエディター。編集・追加・削除・並べ替えのみ(パーツ管理・画像管理なし)。
134
117
 
135
118
  ```html
136
- <!-- Vueを先に読み込む -->
137
- <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
138
- <!-- ZeroCode.jsを読み込む -->
139
- <script src="https://unpkg.com/zerocodejs/dist/zerocode.umd.js"></script>
140
- <link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/zerocodejs.css">
119
+ <zcode-cms></zcode-cms>
120
+ ```
121
+
122
+ ## 既存データの読み込み
123
+
124
+ 既存データを読み込む場合は、JavaScriptで属性を設定します:
125
+
126
+ ```javascript
127
+ const editor = document.querySelector('zcode-editor');
128
+ editor.setAttribute('page', JSON.stringify(pageData));
129
+ editor.setAttribute('parts-common', JSON.stringify(partsData));
130
+ // ... 必要に応じて他の属性も設定
141
131
  ```
142
132
 
143
133
  ## ドキュメント
package/README.md CHANGED
@@ -27,44 +27,44 @@
27
27
 
28
28
  **Live Demo:** https://atsumi-code.github.io/zerocodejs/
29
29
 
30
- ## Installation
30
+ ## Quick Start
31
31
 
32
- ```bash
33
- npm install zerocodejs
34
- ```
32
+ ### CDN (Easiest)
35
33
 
36
- ZeroCode.js uses Vue 3 internally. With npm 7+, peer dependencies are installed automatically.
34
+ ```html
35
+ <!DOCTYPE html>
36
+ <html>
37
+ <head>
38
+ <link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/zerocodejs.css">
39
+ </head>
40
+ <body>
41
+ <zcode-editor locale="en"></zcode-editor>
37
42
 
38
- > **Note:** If using npm 6 or earlier, run `npm install zerocodejs vue` explicitly.
43
+ <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
44
+ <script src="https://unpkg.com/zerocodejs/dist/zerocode.umd.js"></script>
45
+ </body>
46
+ </html>
47
+ ```
39
48
 
40
- ## Quick Start
49
+ That's it! Open the file in a browser and start creating parts.
41
50
 
42
- ### Basic Usage (Vanilla JS)
51
+ ### npm
52
+
53
+ ```bash
54
+ npm install zerocodejs
55
+ ```
43
56
 
44
57
  ```html
45
58
  <!DOCTYPE html>
46
- <html lang="en">
59
+ <html>
47
60
  <head>
48
- <meta charset="UTF-8">
49
- <title>ZeroCode.js Example</title>
50
61
  <link rel="stylesheet" href="node_modules/zerocodejs/dist/zerocodejs.css">
51
62
  </head>
52
63
  <body>
53
- <zcode-cms id="cms" locale="en">
54
- <link slot="css" rel="stylesheet" href="/css/common.css" />
55
- </zcode-cms>
64
+ <zcode-editor locale="en"></zcode-editor>
56
65
 
57
66
  <script type="module">
58
67
  import 'zerocodejs';
59
-
60
- const cms = document.getElementById('cms');
61
- cms.setAttribute('page', JSON.stringify([]));
62
- cms.setAttribute('parts-common', JSON.stringify([]));
63
- cms.setAttribute('parts-individual', JSON.stringify([]));
64
- cms.setAttribute('parts-special', JSON.stringify([]));
65
- cms.setAttribute('images-common', JSON.stringify([]));
66
- cms.setAttribute('images-individual', JSON.stringify([]));
67
- cms.setAttribute('images-special', JSON.stringify([]));
68
68
  </script>
69
69
  </body>
70
70
  </html>
@@ -73,25 +73,11 @@ ZeroCode.js uses Vue 3 internally. With npm 7+, peer dependencies are installed
73
73
  ### React
74
74
 
75
75
  ```jsx
76
- import { useEffect } from 'react';
77
76
  import 'zerocodejs';
78
77
  import 'zerocodejs/style.css';
79
78
 
80
79
  function App() {
81
- useEffect(() => {
82
- const cms = document.getElementById('cms');
83
- if (cms) {
84
- cms.setAttribute('page', JSON.stringify([]));
85
- cms.setAttribute('parts-common', JSON.stringify([]));
86
- cms.setAttribute('parts-individual', JSON.stringify([]));
87
- cms.setAttribute('parts-special', JSON.stringify([]));
88
- cms.setAttribute('images-common', JSON.stringify([]));
89
- cms.setAttribute('images-individual', JSON.stringify([]));
90
- cms.setAttribute('images-special', JSON.stringify([]));
91
- }
92
- }, []);
93
-
94
- return <zcode-cms id="cms" locale="en" />;
80
+ return <zcode-editor locale="en" />;
95
81
  }
96
82
  ```
97
83
 
@@ -99,7 +85,7 @@ function App() {
99
85
 
100
86
  ```vue
101
87
  <template>
102
- <zcode-cms id="cms" locale="en" />
88
+ <zcode-editor locale="en" />
103
89
  </template>
104
90
 
105
91
  <script setup>
@@ -108,32 +94,33 @@ import 'zerocodejs/style.css';
108
94
  </script>
109
95
  ```
110
96
 
111
- ### CDN
97
+ ## Components
98
+
99
+ ### `<zcode-editor>`
100
+
101
+ Developer-facing editor with parts management, image management, and data viewer. **Recommended for getting started.**
112
102
 
113
103
  ```html
114
- <!-- Load Vue first -->
115
- <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
116
- <!-- Load ZeroCode.js -->
117
- <script src="https://unpkg.com/zerocodejs/dist/zerocode.umd.js"></script>
118
- <link rel="stylesheet" href="https://unpkg.com/zerocodejs/dist/zerocodejs.css">
104
+ <zcode-editor locale="en"></zcode-editor>
119
105
  ```
120
106
 
121
- ## Components
122
-
123
107
  ### `<zcode-cms>`
124
108
 
125
- User-facing CMS editor for content management.
109
+ User-facing CMS editor for content management (no parts/image management).
126
110
 
127
111
  ```html
128
- <zcode-cms id="cms" locale="en" />
112
+ <zcode-cms locale="en"></zcode-cms>
129
113
  ```
130
114
 
131
- ### `<zcode-editor>`
115
+ ## Loading Existing Data
132
116
 
133
- Developer-facing editor with parts management, image management, and data viewer.
117
+ To load existing data, set attributes via JavaScript:
134
118
 
135
- ```html
136
- <zcode-editor id="editor" locale="en" />
119
+ ```javascript
120
+ const editor = document.querySelector('zcode-editor');
121
+ editor.setAttribute('page', JSON.stringify(pageData));
122
+ editor.setAttribute('parts-common', JSON.stringify(partsData));
123
+ // ... other attributes as needed
137
124
  ```
138
125
 
139
126
  ## Documentation
@@ -1 +1 @@
1
- {"version":3,"file":"useZeroCodeRenderer.d.ts","sourceRoot":"","sources":["../../../src/core/composables/useZeroCodeRenderer.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAKzE,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,YAAY,EAAE,sBAAsB,GAAE,OAAc;;uCAMlF,aAAa,SAClB,MAAM,mBACI,GAAG,CAAC,MAAM,CAAC,KAC1B,MAAM;uBARiB,MAAM,KAAG,QAAQ,GAAG,IAAI;EAwDnD"}
1
+ {"version":3,"file":"useZeroCodeRenderer.d.ts","sourceRoot":"","sources":["../../../src/core/composables/useZeroCodeRenderer.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAKzE,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,YAAY,EAAE,sBAAsB,GAAE,OAAc;;uCAOlF,aAAa,SAClB,MAAM,mBACI,GAAG,CAAC,MAAM,CAAC,KAC1B,MAAM;uBARiB,MAAM,KAAG,QAAQ,GAAG,IAAI;EA+DnD"}
@@ -1,4 +1,9 @@
1
1
  import { ComponentData, PartData } from '../../types';
2
+ export interface ProcessTemplateOptions {
3
+ translations?: {
4
+ addSlotButton?: string;
5
+ };
6
+ }
2
7
  export declare function processTemplateWithDOM(html: string, component: ComponentData, path: string, _findPart: (partId: string) => PartData | null, renderComponentToHtml: (component: ComponentData, path: string) => string, enableEditorAttributes?: boolean, imagesCommon?: Array<{
3
8
  id: string;
4
9
  url: string;
@@ -8,5 +13,5 @@ export declare function processTemplateWithDOM(html: string, component: Componen
8
13
  }>, imagesSpecial?: Array<{
9
14
  id: string;
10
15
  url: string;
11
- }>, backendData?: Record<string, unknown>): string;
16
+ }>, backendData?: Record<string, unknown>, options?: ProcessTemplateOptions): string;
12
17
  //# sourceMappingURL=template-processor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"template-processor.d.ts","sourceRoot":"","sources":["../../../src/core/utils/template-processor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAc,MAAM,aAAa,CAAC;AASvE,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,aAAa,EACxB,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,QAAQ,GAAG,IAAI,EAC9C,qBAAqB,EAAE,CAAC,SAAS,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,KAAK,MAAM,EACzE,sBAAsB,GAAE,OAAc,EACtC,YAAY,GAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAM,EACrD,gBAAgB,GAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAM,EACzD,aAAa,GAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAM,EACtD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GACpC,MAAM,CAmvCR"}
1
+ {"version":3,"file":"template-processor.d.ts","sourceRoot":"","sources":["../../../src/core/utils/template-processor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAc,MAAM,aAAa,CAAC;AAQvE,MAAM,WAAW,sBAAsB;IACrC,YAAY,CAAC,EAAE;QACb,aAAa,CAAC,EAAE,MAAM,CAAC;KACxB,CAAC;CACH;AAGD,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,aAAa,EACxB,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,QAAQ,GAAG,IAAI,EAC9C,qBAAqB,EAAE,CAAC,SAAS,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,KAAK,MAAM,EACzE,sBAAsB,GAAE,OAAc,EACtC,YAAY,GAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAM,EACrD,gBAAgB,GAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAM,EACzD,aAAa,GAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAM,EACtD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACrC,OAAO,CAAC,EAAE,sBAAsB,GAC/B,MAAM,CAovCR"}
@@ -1 +1 @@
1
- {"version":3,"file":"PreviewArea.vue.d.ts","sourceRoot":"","sources":["../../../src/features/preview/PreviewArea.vue"],"names":[],"mappings":"AAuBA;AAyJA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAGhD,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,YAAY,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,8BAA8B,CAAC,EAAE,OAAO,CAAC;CAC1C,CAAC;;;;;;;AAuLF,wBASG"}
1
+ {"version":3,"file":"PreviewArea.vue.d.ts","sourceRoot":"","sources":["../../../src/features/preview/PreviewArea.vue"],"names":[],"mappings":"AAuBA;AAyJA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAGhD,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,YAAY,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,8BAA8B,CAAC,EAAE,OAAO,CAAC;CAC1C,CAAC;;;;;;;AAyLF,wBASG"}
@@ -46,6 +46,10 @@ export declare function createZeroCodeI18n(locale?: SupportedLocale): import('vu
46
46
  previewModeInfo: string;
47
47
  noSettings: string;
48
48
  };
49
+ emptyState: {
50
+ message: string;
51
+ addPart: string;
52
+ };
49
53
  addPanel: {
50
54
  title: string;
51
55
  selectParent: string;
@@ -267,6 +271,10 @@ export declare function createZeroCodeI18n(locale?: SupportedLocale): import('vu
267
271
  previewModeInfo: string;
268
272
  noSettings: string;
269
273
  };
274
+ emptyState: {
275
+ message: string;
276
+ addPart: string;
277
+ };
270
278
  addPanel: {
271
279
  title: string;
272
280
  selectParent: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,eAAe,GAAG,IAAI,GAAG,IAAI,CAAC;AAE1C,wBAAgB,kBAAkB,CAAC,MAAM,GAAE,eAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAahE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,eAAe,GAAG,IAAI,GAAG,IAAI,CAAC;AAE1C,wBAAgB,kBAAkB,CAAC,MAAM,GAAE,eAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAahE"}
@@ -44,6 +44,10 @@ declare const _default: {
44
44
  previewModeInfo: string;
45
45
  noSettings: string;
46
46
  };
47
+ emptyState: {
48
+ message: string;
49
+ addPart: string;
50
+ };
47
51
  addPanel: {
48
52
  title: string;
49
53
  selectParent: string;
@@ -1 +1 @@
1
- {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAoOE"}
1
+ {"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwOE"}
@@ -44,6 +44,10 @@ declare const _default: {
44
44
  previewModeInfo: string;
45
45
  noSettings: string;
46
46
  };
47
+ emptyState: {
48
+ message: string;
49
+ addPart: string;
50
+ };
47
51
  addPanel: {
48
52
  title: string;
49
53
  selectParent: string;
@@ -1 +1 @@
1
- {"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/ja.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA4NE"}
1
+ {"version":3,"file":"ja.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/ja.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAgOE"}