zerocodejs 1.0.1-beta.16 → 1.0.1-beta.18
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 +10 -2
- package/README.md +10 -2
- package/dist/components/ZeroCodeCMS.vue.d.ts +3 -0
- package/dist/components/ZeroCodeCMS.vue.d.ts.map +1 -1
- package/dist/components/ZeroCodeEditor.vue.d.ts +11 -0
- package/dist/components/ZeroCodeEditor.vue.d.ts.map +1 -1
- package/dist/components/ZeroCodeStudio.vue.d.ts +22 -0
- package/dist/components/ZeroCodeStudio.vue.d.ts.map +1 -0
- package/dist/core/composables/useZeroCodeData.d.ts +3 -0
- package/dist/core/composables/useZeroCodeData.d.ts.map +1 -1
- package/dist/core/renderer/renderer.d.ts +5 -0
- package/dist/core/renderer/renderer.d.ts.map +1 -1
- package/dist/core/utils/sanitize.d.ts +6 -0
- package/dist/core/utils/sanitize.d.ts.map +1 -1
- package/dist/core/utils/template-processor.d.ts.map +1 -1
- package/dist/core/utils/template-utils.d.ts +3 -1
- package/dist/core/utils/template-utils.d.ts.map +1 -1
- package/dist/features/add/components/AddPanel.vue.d.ts.map +1 -1
- package/dist/features/add/composables/useAddMode.d.ts +4 -0
- package/dist/features/add/composables/useAddMode.d.ts.map +1 -1
- package/dist/features/data-viewer/components/DataViewer.vue.d.ts.map +1 -1
- package/dist/features/delete/components/DeletePanel.vue.d.ts.map +1 -1
- package/dist/features/editor/components/ContextMenu.vue.d.ts.map +1 -1
- package/dist/features/editor/components/EditPanel.vue.d.ts +0 -18
- package/dist/features/editor/components/EditPanel.vue.d.ts.map +1 -1
- package/dist/features/editor/components/ImageSelectModal.vue.d.ts +1 -21
- package/dist/features/editor/components/ImageSelectModal.vue.d.ts.map +1 -1
- package/dist/features/editor/components/RichTextEditor.vue.d.ts.map +1 -1
- package/dist/features/editor/components/SettingsPanel.vue.d.ts.map +1 -1
- package/dist/features/editor/components/Toolbar.vue.d.ts.map +1 -1
- package/dist/features/editor/composables/useClickHandlers.d.ts.map +1 -1
- package/dist/features/editor/composables/useOutlineManager.d.ts.map +1 -1
- package/dist/features/images-manager/components/ImagesManagerPanel.vue.d.ts +1 -0
- package/dist/features/images-manager/components/ImagesManagerPanel.vue.d.ts.map +1 -1
- package/dist/features/parts-manager/components/MonacoEditor.vue.d.ts.map +1 -1
- package/dist/features/parts-manager/components/PartsManagerPanel.vue.d.ts +2 -0
- package/dist/features/parts-manager/components/PartsManagerPanel.vue.d.ts.map +1 -1
- package/dist/features/parts-manager/composables/usePartsManager.d.ts +13 -1
- package/dist/features/parts-manager/composables/usePartsManager.d.ts.map +1 -1
- package/dist/features/preview/PreviewArea.vue.d.ts.map +1 -1
- package/dist/features/reorder/components/ReorderPanel.vue.d.ts.map +1 -1
- package/dist/features/reorder/composables/useReorderMode.d.ts.map +1 -1
- package/dist/i18n/index.d.ts +18 -2
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/i18n/locales/en.d.ts +9 -1
- package/dist/i18n/locales/en.d.ts.map +1 -1
- package/dist/i18n/locales/ja.d.ts +9 -1
- package/dist/i18n/locales/ja.d.ts.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/ssr-entry.d.ts +6 -0
- package/dist/ssr-entry.d.ts.map +1 -0
- package/dist/types/index.d.ts +7 -10
- package/dist/types/index.d.ts.map +1 -1
- package/dist/web-components/zcode-studio.d.ts +28 -0
- package/dist/web-components/zcode-studio.d.ts.map +1 -0
- package/dist/zerocode-ssr.es.js +1409 -0
- package/dist/zerocode.es.js +12139 -11602
- package/dist/zerocode.umd.js +68 -67
- package/dist/zerocodejs.css +1 -1
- package/package.json +18 -3
package/README.ja.md
CHANGED
|
@@ -122,6 +122,14 @@ import 'zerocodejs/style.css';
|
|
|
122
122
|
<zcode-cms></zcode-cms>
|
|
123
123
|
```
|
|
124
124
|
|
|
125
|
+
### `<zcode-studio>`
|
|
126
|
+
|
|
127
|
+
**信頼できるユーザー・制作会社向け**。**特別**カテゴリのパーツ・特別パーツ用CSS・特別画像のみ編集可能。ページや共通・個別のパーツ/画像などは**読み取り専用**(プレビュー・データビューアあり)。エンドユーザー用の `zcode-cms` と役割を分けたいときに使います。
|
|
128
|
+
|
|
129
|
+
`save-request` では `detail.source: 'studio'` と、`parts-special` / `parts-special-css` / `images-special` などのターゲットが渡り得ます。`zcode-cms` からのページ保存は **`targets: ['page']` のみ**です。特別系の永続化はホストアプリ側で処理してください(Studio 経由や API など)。
|
|
130
|
+
|
|
131
|
+
詳細は [技術仕様書 – zcode-studio](./TECHNICAL_SPECIFICATION.md#zcode-studio)。
|
|
132
|
+
|
|
125
133
|
## 既存データの読み込み
|
|
126
134
|
|
|
127
135
|
既存データを読み込む場合は、JavaScriptで属性を設定します:
|
|
@@ -163,7 +171,7 @@ ZeroCode.jsはフロントエンドライブラリのため、クライアント
|
|
|
163
171
|
|
|
164
172
|
- **サーバー側での検証を必須とする**: データ保存前にサーバー側で検証してください
|
|
165
173
|
- **認証・認可の実装**: パーツデータの変更は認証されたユーザーのみ許可してください
|
|
166
|
-
- **送信元の検証**: `save-request`イベントの`source
|
|
174
|
+
- **送信元の検証**: `save-request`イベントの`source`フィールド(`cms` / `editor` / `studio`)を確認してください
|
|
167
175
|
- **パーツテンプレートの管理**: パーツテンプレートは信頼できるソースからのみ使用してください
|
|
168
176
|
|
|
169
177
|
詳細は[技術仕様書](./TECHNICAL_SPECIFICATION.md)のセキュリティセクションを参照してください。
|
|
@@ -174,4 +182,4 @@ MIT License
|
|
|
174
182
|
|
|
175
183
|
---
|
|
176
184
|
|
|
177
|
-
**最終更新日**: 2026年
|
|
185
|
+
**最終更新日**: 2026年3月
|
package/README.md
CHANGED
|
@@ -115,6 +115,14 @@ User-facing CMS editor for content management (no parts/image management).
|
|
|
115
115
|
<zcode-cms locale="en"></zcode-cms>
|
|
116
116
|
```
|
|
117
117
|
|
|
118
|
+
### `<zcode-studio>`
|
|
119
|
+
|
|
120
|
+
For **trusted users / agencies**: edit **special** parts, special parts CSS, and special images only. Other data (page, common/individual parts and images, etc.) is **read-only** with preview. Use alongside `zcode-cms` when page content is edited by end users but special assets are maintained separately.
|
|
121
|
+
|
|
122
|
+
`save-request` may use `detail.source: 'studio'` and targets such as `parts-special`, `parts-special-css`, `images-special`. From `zcode-cms`, page saves use `targets: ['page']` only—handle persistence of special data in your host app (often via Studio or your API).
|
|
123
|
+
|
|
124
|
+
See [Technical Specification – zcode-studio](./TECHNICAL_SPECIFICATION.md#zcode-studio).
|
|
125
|
+
|
|
118
126
|
## Loading Existing Data
|
|
119
127
|
|
|
120
128
|
To load existing data, set attributes via JavaScript:
|
|
@@ -155,7 +163,7 @@ ZeroCode.js is a frontend library. Complete security cannot be guaranteed on the
|
|
|
155
163
|
|
|
156
164
|
- **Server-side validation is required**: Validate data before saving on the server
|
|
157
165
|
- **Implement authentication/authorization**: Only allow authenticated users to modify parts data
|
|
158
|
-
- **Verify the source**: Check the `source` field in `save-request` events
|
|
166
|
+
- **Verify the source**: Check the `source` field in `save-request` events (`'cms'`, `'editor'`, or `'studio'`)
|
|
159
167
|
- **Template management**: Only use templates from trusted sources
|
|
160
168
|
|
|
161
169
|
See the [Technical Specification](./TECHNICAL_SPECIFICATION.md) for security details.
|
|
@@ -166,4 +174,4 @@ MIT License
|
|
|
166
174
|
|
|
167
175
|
---
|
|
168
176
|
|
|
169
|
-
**Last Updated**:
|
|
177
|
+
**Last Updated**: March 2026
|
|
@@ -46,6 +46,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
46
46
|
allowedParts?: string[];
|
|
47
47
|
}> | undefined;
|
|
48
48
|
slotOnly?: boolean | undefined;
|
|
49
|
+
outlinePosition?: "inner" | undefined;
|
|
49
50
|
}[];
|
|
50
51
|
}[];
|
|
51
52
|
individual: {
|
|
@@ -61,6 +62,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
61
62
|
allowedParts?: string[];
|
|
62
63
|
}> | undefined;
|
|
63
64
|
slotOnly?: boolean | undefined;
|
|
65
|
+
outlinePosition?: "inner" | undefined;
|
|
64
66
|
}[];
|
|
65
67
|
}[];
|
|
66
68
|
special: {
|
|
@@ -76,6 +78,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
76
78
|
allowedParts?: string[];
|
|
77
79
|
}> | undefined;
|
|
78
80
|
slotOnly?: boolean | undefined;
|
|
81
|
+
outlinePosition?: "inner" | undefined;
|
|
79
82
|
}[];
|
|
80
83
|
}[];
|
|
81
84
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ZeroCodeCMS.vue.d.ts","sourceRoot":"","sources":["../../src/components/ZeroCodeCMS.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ZeroCodeCMS.vue.d.ts","sourceRoot":"","sources":["../../src/components/ZeroCodeCMS.vue"],"names":[],"mappings":"AA2KA;AAi1BA,OAAO,EAAE,YAAY,IAAI,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAQ5E,KAAK,WAAW,GAAG;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AA0DF,iBAAS,OAAO,CAAC,IAAI,CAAC,EAAE,MAAM,WAU7B;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAjHD,CAxxBuD;;;;;;;;;;;;;;;;oCAwxBvD,CAxxBuD;;;;;;;;;;;;;;;;oCAwxBvD,CAxxBuD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA45DvD,wBASG"}
|
|
@@ -70,6 +70,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
70
70
|
allowedParts?: string[];
|
|
71
71
|
}> | undefined;
|
|
72
72
|
slotOnly?: boolean | undefined;
|
|
73
|
+
outlinePosition?: "inner" | undefined;
|
|
73
74
|
}[];
|
|
74
75
|
}[];
|
|
75
76
|
individual: {
|
|
@@ -85,6 +86,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
85
86
|
allowedParts?: string[];
|
|
86
87
|
}> | undefined;
|
|
87
88
|
slotOnly?: boolean | undefined;
|
|
89
|
+
outlinePosition?: "inner" | undefined;
|
|
88
90
|
}[];
|
|
89
91
|
}[];
|
|
90
92
|
special: {
|
|
@@ -100,6 +102,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
100
102
|
allowedParts?: string[];
|
|
101
103
|
}> | undefined;
|
|
102
104
|
slotOnly?: boolean | undefined;
|
|
105
|
+
outlinePosition?: "inner" | undefined;
|
|
103
106
|
}[];
|
|
104
107
|
}[];
|
|
105
108
|
};
|
|
@@ -213,6 +216,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
213
216
|
allowedParts?: string[];
|
|
214
217
|
}> | undefined;
|
|
215
218
|
slotOnly?: boolean | undefined;
|
|
219
|
+
outlinePosition?: "inner" | undefined;
|
|
216
220
|
}[];
|
|
217
221
|
}[];
|
|
218
222
|
individual: {
|
|
@@ -228,6 +232,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
228
232
|
allowedParts?: string[];
|
|
229
233
|
}> | undefined;
|
|
230
234
|
slotOnly?: boolean | undefined;
|
|
235
|
+
outlinePosition?: "inner" | undefined;
|
|
231
236
|
}[];
|
|
232
237
|
}[];
|
|
233
238
|
special: {
|
|
@@ -243,6 +248,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
243
248
|
allowedParts?: string[];
|
|
244
249
|
}> | undefined;
|
|
245
250
|
slotOnly?: boolean | undefined;
|
|
251
|
+
outlinePosition?: "inner" | undefined;
|
|
246
252
|
}[];
|
|
247
253
|
}[];
|
|
248
254
|
};
|
|
@@ -281,9 +287,11 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
281
287
|
partsManagerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
282
288
|
cmsData: ZeroCodeData;
|
|
283
289
|
config?: Partial<CMSConfig>;
|
|
290
|
+
fixedCategory?: "common" | "individual" | "special";
|
|
284
291
|
}> & Readonly<{}>, {
|
|
285
292
|
activeCategory: Ref<"common" | "individual" | "special", "common" | "individual" | "special">;
|
|
286
293
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
294
|
+
partOptionsRef: HTMLDivElement;
|
|
287
295
|
monacoEditorRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
288
296
|
modelValue: string;
|
|
289
297
|
language?: string;
|
|
@@ -334,12 +342,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
334
342
|
}, Readonly<{
|
|
335
343
|
cmsData: ZeroCodeData;
|
|
336
344
|
config?: Partial<CMSConfig>;
|
|
345
|
+
fixedCategory?: "common" | "individual" | "special";
|
|
337
346
|
}> & Readonly<{}>, {
|
|
338
347
|
activeCategory: Ref<"common" | "individual" | "special", "common" | "individual" | "special">;
|
|
339
348
|
}, {}, {}, {}, {}> | null;
|
|
340
349
|
imagesManagerRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
341
350
|
cmsData: ZeroCodeData;
|
|
342
351
|
config?: Partial<CMSConfig>;
|
|
352
|
+
fixedCategory?: "common" | "individual" | "special";
|
|
343
353
|
}> & Readonly<{}>, {
|
|
344
354
|
activeCategory: Ref<"common" | "individual" | "special", "common" | "individual" | "special">;
|
|
345
355
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
@@ -355,6 +365,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
355
365
|
}, Readonly<{
|
|
356
366
|
cmsData: ZeroCodeData;
|
|
357
367
|
config?: Partial<CMSConfig>;
|
|
368
|
+
fixedCategory?: "common" | "individual" | "special";
|
|
358
369
|
}> & Readonly<{}>, {
|
|
359
370
|
activeCategory: Ref<"common" | "individual" | "special", "common" | "individual" | "special">;
|
|
360
371
|
}, {}, {}, {}, {}> | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ZeroCodeEditor.vue.d.ts","sourceRoot":"","sources":["../../src/components/ZeroCodeEditor.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ZeroCodeEditor.vue.d.ts","sourceRoot":"","sources":["../../src/components/ZeroCodeEditor.vue"],"names":[],"mappings":"AA4KA;AA0qBA,OAAO,EAAmC,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AAUhE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAI7C,OAAO,KAAK,EAAE,SAAS,EAAe,MAAM,UAAU,CAAC;AAIvD,KAAK,WAAW,GAAG;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AAkMF,iBAAS,OAAO,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAevC;AAED,iBAAS,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,CAIjF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA1PD,CA1oBc;;;;;;;;;;;;;;;;wCA0oBd,CA1oBc;;;;;;;;;;;;;;;;wCA0oBd,CA1oBc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA0oBd,CA1oBc;;;;;;;;;;;;;;;;wCA0oBd,CA1oBc;;;;;;;;;;;;;;;;wCA0oBd,CA1oBc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+jDd,wBASG"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
locale?: string;
|
|
3
|
+
page?: string;
|
|
4
|
+
cssCommon?: string;
|
|
5
|
+
cssIndividual?: string;
|
|
6
|
+
cssSpecial?: string;
|
|
7
|
+
partsCommon?: string;
|
|
8
|
+
partsIndividual?: string;
|
|
9
|
+
partsSpecial?: string;
|
|
10
|
+
imagesCommon?: string;
|
|
11
|
+
imagesIndividual?: string;
|
|
12
|
+
imagesSpecial?: string;
|
|
13
|
+
config?: string;
|
|
14
|
+
endpoints?: string;
|
|
15
|
+
backendData?: string;
|
|
16
|
+
};
|
|
17
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
18
|
+
getData: (path?: string) => unknown;
|
|
19
|
+
setData: (pathOrData: string | Partial<import('..').ZeroCodeData>, value?: unknown) => void;
|
|
20
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
|
+
export default _default;
|
|
22
|
+
//# sourceMappingURL=ZeroCodeStudio.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ZeroCodeStudio.vue.d.ts","sourceRoot":"","sources":["../../src/components/ZeroCodeStudio.vue"],"names":[],"mappings":"AA8HA;AA6SA,KAAK,WAAW,GAAG;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;;;;AA0cF,wBAQG"}
|
|
@@ -26,6 +26,7 @@ export declare function useZeroCodeData(props: ZeroCodeDataProps): {
|
|
|
26
26
|
allowedParts?: string[];
|
|
27
27
|
}> | undefined;
|
|
28
28
|
slotOnly?: boolean | undefined;
|
|
29
|
+
outlinePosition?: "inner" | undefined;
|
|
29
30
|
}[];
|
|
30
31
|
}[];
|
|
31
32
|
individual: {
|
|
@@ -41,6 +42,7 @@ export declare function useZeroCodeData(props: ZeroCodeDataProps): {
|
|
|
41
42
|
allowedParts?: string[];
|
|
42
43
|
}> | undefined;
|
|
43
44
|
slotOnly?: boolean | undefined;
|
|
45
|
+
outlinePosition?: "inner" | undefined;
|
|
44
46
|
}[];
|
|
45
47
|
}[];
|
|
46
48
|
special: {
|
|
@@ -56,6 +58,7 @@ export declare function useZeroCodeData(props: ZeroCodeDataProps): {
|
|
|
56
58
|
allowedParts?: string[];
|
|
57
59
|
}> | undefined;
|
|
58
60
|
slotOnly?: boolean | undefined;
|
|
61
|
+
outlinePosition?: "inner" | undefined;
|
|
59
62
|
}[];
|
|
60
63
|
}[];
|
|
61
64
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useZeroCodeData.d.ts","sourceRoot":"","sources":["../../../src/core/composables/useZeroCodeData.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAInE,wBAAgB,eAAe,CAAC,KAAK,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;oCAgBhC,CAAC
|
|
1
|
+
{"version":3,"file":"useZeroCodeData.d.ts","sourceRoot":"","sources":["../../../src/core/composables/useZeroCodeData.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAInE,wBAAgB,eAAe,CAAC,KAAK,EAAE,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;oCAgBhC,CAAC;;;;;;;;;;;;;;;;oCAAD,CAAC;;;;;;;;;;;;;;;;oCAAD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAoCC,MAAM,KAAG,OAAO;0BAiBX,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,UAAU,OAAO,KAAG,IAAI;EA2BpF"}
|
|
@@ -31,6 +31,11 @@ export interface RenderComponentCoreContext {
|
|
|
31
31
|
* 循環参照・パーツ未検出時は RenderError を throw
|
|
32
32
|
*/
|
|
33
33
|
export declare function renderComponentCore(component: ComponentData, path: string, processedPaths: Set<string>, context: RenderComponentCoreContext, renderChild: (childComponent: ComponentData, childPath: string) => string): string;
|
|
34
|
+
/**
|
|
35
|
+
* CSSデータから<style>タグのHTML文字列を生成する
|
|
36
|
+
* 順序は common → individual → special(PageCSSManager と同一)
|
|
37
|
+
*/
|
|
38
|
+
export declare function renderCssToHtml(css: ZeroCodeData['css'] | undefined | null): string;
|
|
34
39
|
/**
|
|
35
40
|
* データからHTMLを生成(サーバーサイド/クライアントサイド両対応)
|
|
36
41
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../../../src/core/renderer/renderer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAA0B,KAAK,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAIlG;;GAEG;AACH,qBAAa,WAAY,SAAQ,KAAK;IAE3B,IAAI,EAAE,gBAAgB,GAAG,oBAAoB,GAAG,aAAa;IAC7D,IAAI,EAAE,MAAM;gBADZ,IAAI,EAAE,gBAAgB,GAAG,oBAAoB,GAAG,aAAa,EAC7D,IAAI,EAAE,MAAM,EACnB,OAAO,EAAE,MAAM;CAKlB;AAED,MAAM,WAAW,0BAA0B;IACzC,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,QAAQ,GAAG,IAAI,CAAC;IAC9C,sBAAsB,EAAE,OAAO,CAAC;IAChC,YAAY,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACjD,gBAAgB,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACrD,aAAa,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAClD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACtC,OAAO,CAAC,EAAE,sBAAsB,CAAC;CAClC;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,SAAS,EAAE,aAAa,EACxB,IAAI,EAAE,MAAM,EACZ,cAAc,EAAE,GAAG,CAAC,MAAM,CAAC,EAC3B,OAAO,EAAE,0BAA0B,EACnC,WAAW,EAAE,CAAC,cAAc,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,KAAK,MAAM,GACxE,MAAM,
|
|
1
|
+
{"version":3,"file":"renderer.d.ts","sourceRoot":"","sources":["../../../src/core/renderer/renderer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AACzE,OAAO,EAA0B,KAAK,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAIlG;;GAEG;AACH,qBAAa,WAAY,SAAQ,KAAK;IAE3B,IAAI,EAAE,gBAAgB,GAAG,oBAAoB,GAAG,aAAa;IAC7D,IAAI,EAAE,MAAM;gBADZ,IAAI,EAAE,gBAAgB,GAAG,oBAAoB,GAAG,aAAa,EAC7D,IAAI,EAAE,MAAM,EACnB,OAAO,EAAE,MAAM;CAKlB;AAED,MAAM,WAAW,0BAA0B;IACzC,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,QAAQ,GAAG,IAAI,CAAC;IAC9C,sBAAsB,EAAE,OAAO,CAAC;IAChC,YAAY,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACjD,gBAAgB,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACrD,aAAa,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAClD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACtC,OAAO,CAAC,EAAE,sBAAsB,CAAC;CAClC;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CACjC,SAAS,EAAE,aAAa,EACxB,IAAI,EAAE,MAAM,EACZ,cAAc,EAAE,GAAG,CAAC,MAAM,CAAC,EAC3B,OAAO,EAAE,0BAA0B,EACnC,WAAW,EAAE,CAAC,cAAc,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,KAAK,MAAM,GACxE,MAAM,CAsCR;AAID;;;GAGG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,YAAY,CAAC,KAAK,CAAC,GAAG,SAAS,GAAG,IAAI,GAAG,MAAM,CAQnF;AAED;;;;;;GAMG;AACH,wBAAgB,YAAY,CAC1B,IAAI,EAAE,YAAY,EAClB,OAAO,GAAE;IACP,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAC7B,GACL,MAAM,CAmDR"}
|
|
@@ -7,4 +7,10 @@ export declare function escapeAttributeValue(value: string): string;
|
|
|
7
7
|
* URLを検証・サニタイズする
|
|
8
8
|
*/
|
|
9
9
|
export declare function sanitizeUrl(url: string): string;
|
|
10
|
+
/**
|
|
11
|
+
* パーツテンプレート用のサニタイズ。
|
|
12
|
+
* ZeroCode のテンプレート記法({$...}, {@...}, ($...), z-* 属性)を保持しつつ、
|
|
13
|
+
* 危険なタグ・属性を除去する。
|
|
14
|
+
*/
|
|
15
|
+
export declare function sanitizePartTemplate(html: string): string;
|
|
10
16
|
//# sourceMappingURL=sanitize.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sanitize.d.ts","sourceRoot":"","sources":["../../../src/core/utils/sanitize.ts"],"names":[],"mappings":"AAEA,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAQrD;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAU1D;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAwB/C"}
|
|
1
|
+
{"version":3,"file":"sanitize.d.ts","sourceRoot":"","sources":["../../../src/core/utils/sanitize.ts"],"names":[],"mappings":"AAEA,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAQrD;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAU1D;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAwB/C;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAgFzD"}
|
|
@@ -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;
|
|
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;AAkIvE,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,CAipCR"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export declare function injectAttributesToRootElement(html: string, attrs: Record<string, string
|
|
1
|
+
export declare function injectAttributesToRootElement(html: string, attrs: Record<string, string>, options?: {
|
|
2
|
+
addClass?: string;
|
|
3
|
+
}): string;
|
|
2
4
|
export declare function processImageField(value: string, defaultValue: string | undefined, imagesCommon: Array<{
|
|
3
5
|
id: string;
|
|
4
6
|
url: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template-utils.d.ts","sourceRoot":"","sources":["../../../src/core/utils/template-utils.ts"],"names":[],"mappings":"AAGA,wBAAgB,6BAA6B,
|
|
1
|
+
{"version":3,"file":"template-utils.d.ts","sourceRoot":"","sources":["../../../src/core/utils/template-utils.ts"],"names":[],"mappings":"AAGA,wBAAgB,6BAA6B,CAC3C,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAC7B,OAAO,CAAC,EAAE;IAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;CAAE,GAC9B,MAAM,CAwBR;AAED,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,MAAM,EACb,YAAY,EAAE,MAAM,GAAG,SAAS,EAChC,YAAY,EAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC,EAChD,gBAAgB,EAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAC,EACpD,aAAa,GAAE,KAAK,CAAC;IAAE,EAAE,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,CAAM,GACrD,MAAM,CAqBR;AAMD,wBAAgB,sBAAsB,CAAC,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CA+DjG;AAED,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAU/F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AddPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/add/components/AddPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AddPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/add/components/AddPanel.vue"],"names":[],"mappings":"AA0NA;AA0SA,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAGnF,KAAK,WAAW,GAAG;IACjB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,eAAe,EAAE,QAAQ,GAAG,YAAY,GAAG,SAAS,CAAC;IACrD,UAAU,EAAE,MAAM,GAAG,KAAK,GAAG,UAAU,GAAG,IAAI,CAAC;IAC/C,eAAe,EAAE,QAAQ,GAAG,IAAI,CAAC;IACjC,eAAe,EAAE,QAAQ,GAAG,IAAI,CAAC;IACjC,gBAAgB,EAAE,aAAa,GAAG,IAAI,CAAC;IACvC,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,kBAAkB,EAAE,KAAK,CAAC;QACxB,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,QAAQ,EAAE,QAAQ,CAAC;QACnB,KAAK,EAAE,QAAQ,EAAE,CAAC;KACnB,CAAC,CAAC;IACH,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,EAAE,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,KAAK,MAAM,CAAC;IAC/D,8BAA8B,EAAE,MAAM,MAAM,CAAC;IAC7C,UAAU,EAAE,OAAO,CAAC;IACpB,eAAe,EAAE,OAAO,CAAC;IACzB,MAAM,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;;;;;;;;;;;;;;;;;;AA+cF,wBAOG"}
|
|
@@ -15,6 +15,7 @@ export declare function useAddMode(cmsData: ZeroCodeData, previewArea: Ref<HTMLE
|
|
|
15
15
|
allowedParts?: string[];
|
|
16
16
|
}> | undefined;
|
|
17
17
|
slotOnly?: boolean | undefined;
|
|
18
|
+
outlinePosition?: "inner" | undefined;
|
|
18
19
|
}[];
|
|
19
20
|
} | null, TypeData | {
|
|
20
21
|
id: string;
|
|
@@ -29,6 +30,7 @@ export declare function useAddMode(cmsData: ZeroCodeData, previewArea: Ref<HTMLE
|
|
|
29
30
|
allowedParts?: string[];
|
|
30
31
|
}> | undefined;
|
|
31
32
|
slotOnly?: boolean | undefined;
|
|
33
|
+
outlinePosition?: "inner" | undefined;
|
|
32
34
|
}[];
|
|
33
35
|
} | null>;
|
|
34
36
|
addSelectedPart: Ref<{
|
|
@@ -40,6 +42,7 @@ export declare function useAddMode(cmsData: ZeroCodeData, previewArea: Ref<HTMLE
|
|
|
40
42
|
allowedParts?: string[];
|
|
41
43
|
}> | undefined;
|
|
42
44
|
slotOnly?: boolean | undefined;
|
|
45
|
+
outlinePosition?: "inner" | undefined;
|
|
43
46
|
} | null, PartData | {
|
|
44
47
|
id: string;
|
|
45
48
|
title: string;
|
|
@@ -49,6 +52,7 @@ export declare function useAddMode(cmsData: ZeroCodeData, previewArea: Ref<HTMLE
|
|
|
49
52
|
allowedParts?: string[];
|
|
50
53
|
}> | undefined;
|
|
51
54
|
slotOnly?: boolean | undefined;
|
|
55
|
+
outlinePosition?: "inner" | undefined;
|
|
52
56
|
} | null>;
|
|
53
57
|
clickedComponent: Ref<{
|
|
54
58
|
[x: string]: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAddMode.d.ts","sourceRoot":"","sources":["../../../../src/features/add/composables/useAddMode.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AAExD,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"useAddMode.d.ts","sourceRoot":"","sources":["../../../../src/features/add/composables/useAddMode.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AAExD,OAAO,KAAK,EACV,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,SAAS,EACV,MAAM,gBAAgB,CAAC;AAOxB,wBAAgB,UAAU,CACxB,OAAO,EAAE,YAAY,EACrB,WAAW,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,EACpC,qBAAqB,EAAE,CAAC,SAAS,EAAE,aAAa,EAAE,IAAI,EAAE,MAAM,KAAK,MAAM,EACzE,MAAM,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC;;;;;;;;;;;;4BAOvB,CAAA;;;;;;;;;;;;;;;4BAAA,CAAA;;;;;;;;;;;;wBAAA,CAAA;;;;;;;;;;wBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAsO0B,MAAM,sBAAqB,OAAO;uCA+GtB,QAAQ,GAAG,YAAY,GAAG,SAAS;+BAQ3C,MAAM,GAAG,KAAK,GAAG,UAAU;uBAsCnC,QAAQ,QAAQ,QAAQ;+BAlBhB,QAAQ,QAAQ,QAAQ,KAAG,MAAM;0CAKxB,MAAM;+BAwJf,QAAQ,GAAG,OAAO;0BA6LxB;QAAE,UAAU,CAAC,EAAE,OAAO,CAAA;KAAE;EAsDrD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataViewer.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/data-viewer/components/DataViewer.vue"],"names":[],"mappings":"AAoFA;
|
|
1
|
+
{"version":3,"file":"DataViewer.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/data-viewer/components/DataViewer.vue"],"names":[],"mappings":"AAoFA;AA6VA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAI9D,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,YAAY,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;;;;;AA2ZF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeletePanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/delete/components/DeletePanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DeletePanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/delete/components/DeletePanel.vue"],"names":[],"mappings":"AA4CA;AA+DA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAGpD,KAAK,WAAW,GAAG;IACjB,sBAAsB,EAAE,aAAa,GAAG,IAAI,CAAC;IAC7C,WAAW,EAAE,MAAM,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,CAAC;IACnD,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;;;;;;;;;;AAwKF,wBAOG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContextMenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/ContextMenu.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ContextMenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/ContextMenu.vue"],"names":[],"mappings":"AA8CA;AA0EA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE/D,KAAK,WAAW,GAAG;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACnC,WAAW,EAAE,UAAU,CAAC;CACzB,CAAC;;;;;;;;AAsKF,wBAOG"}
|
|
@@ -22,31 +22,13 @@ type __VLS_Props = {
|
|
|
22
22
|
imagesIndividual: ImageData[];
|
|
23
23
|
imagesSpecial: ImageData[];
|
|
24
24
|
previewMode?: boolean;
|
|
25
|
-
imageModalActions?: {
|
|
26
|
-
common?: {
|
|
27
|
-
add?: boolean;
|
|
28
|
-
delete?: boolean;
|
|
29
|
-
};
|
|
30
|
-
individual?: {
|
|
31
|
-
add?: boolean;
|
|
32
|
-
delete?: boolean;
|
|
33
|
-
};
|
|
34
|
-
special?: {
|
|
35
|
-
add?: boolean;
|
|
36
|
-
delete?: boolean;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
25
|
};
|
|
40
26
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
27
|
close: () => any;
|
|
42
|
-
"add-image": (imageData: ImageData, target: "common" | "individual" | "special") => any;
|
|
43
|
-
"delete-image": (imageId: string) => any;
|
|
44
28
|
"select-parent": () => any;
|
|
45
29
|
"save-field": (field: any) => any;
|
|
46
30
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
47
31
|
onClose?: (() => any) | undefined;
|
|
48
|
-
"onAdd-image"?: ((imageData: ImageData, target: "common" | "individual" | "special") => any) | undefined;
|
|
49
|
-
"onDelete-image"?: ((imageId: string) => any) | undefined;
|
|
50
32
|
"onSelect-parent"?: (() => any) | undefined;
|
|
51
33
|
"onSave-field"?: ((field: any) => any) | undefined;
|
|
52
34
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/EditPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"EditPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/EditPanel.vue"],"names":[],"mappings":"AAoPA;AAucA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAK/D,KAAK,WAAW,GAAG;IACjB,gBAAgB,EAAE,aAAa,GAAG,IAAI,CAAC;IACvC,sBAAsB,EAAE,KAAK,CAAC;QAC5B,IAAI,EACA,MAAM,GACN,UAAU,GACV,OAAO,GACP,UAAU,GACV,SAAS,GACT,MAAM,GACN,OAAO,GACP,QAAQ,GACR,iBAAiB,GACjB,KAAK,CAAC;QACV,SAAS,EAAE,MAAM,CAAC;QAClB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,KAAK,EAAE,MAAM,CAAC;QACd,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;QACnB,YAAY,EAAE,GAAG,CAAC;QAClB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;KACpB,CAAC,CAAC;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,WAAW,EAAE,MAAM,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,CAAC;IACnD,eAAe,EAAE,OAAO,CAAC;IACzB,YAAY,EAAE,SAAS,EAAE,CAAC;IAC1B,gBAAgB,EAAE,SAAS,EAAE,CAAC;IAC9B,aAAa,EAAE,SAAS,EAAE,CAAC;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;;;;;;;;;;AAqrBF,wBAOG"}
|
|
@@ -5,33 +5,13 @@ type __VLS_Props = {
|
|
|
5
5
|
imagesIndividual: ImageData[];
|
|
6
6
|
imagesSpecial: ImageData[];
|
|
7
7
|
currentValue?: string;
|
|
8
|
-
imageModalActions?: {
|
|
9
|
-
common?: {
|
|
10
|
-
add?: boolean;
|
|
11
|
-
delete?: boolean;
|
|
12
|
-
};
|
|
13
|
-
individual?: {
|
|
14
|
-
add?: boolean;
|
|
15
|
-
delete?: boolean;
|
|
16
|
-
};
|
|
17
|
-
special?: {
|
|
18
|
-
add?: boolean;
|
|
19
|
-
delete?: boolean;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
8
|
};
|
|
23
9
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
24
10
|
close: () => any;
|
|
25
11
|
"update:model-value": (imageId: string | null) => any;
|
|
26
|
-
"add-image": (imageData: ImageData, target: "common" | "individual" | "special") => any;
|
|
27
|
-
"delete-image": (imageId: string) => any;
|
|
28
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
29
13
|
onClose?: (() => any) | undefined;
|
|
30
14
|
"onUpdate:model-value"?: ((imageId: string | null) => any) | undefined;
|
|
31
|
-
|
|
32
|
-
"onDelete-image"?: ((imageId: string) => any) | undefined;
|
|
33
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
34
|
-
fileInput: HTMLInputElement;
|
|
35
|
-
}, any>;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
36
16
|
export default _default;
|
|
37
17
|
//# sourceMappingURL=ImageSelectModal.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageSelectModal.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/ImageSelectModal.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ImageSelectModal.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/ImageSelectModal.vue"],"names":[],"mappings":"AAqFA;AA6IA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAGhD,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,OAAO,CAAC;IAChB,YAAY,EAAE,SAAS,EAAE,CAAC;IAC1B,gBAAgB,EAAE,SAAS,EAAE,CAAC;IAC9B,aAAa,EAAE,SAAS,EAAE,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;;;;;;;;AA4NF,wBAOG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RichTextEditor.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/RichTextEditor.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RichTextEditor.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/RichTextEditor.vue"],"names":[],"mappings":"AA+DA;AA4KA,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;;;;;;AA8PF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SettingsPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/SettingsPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SettingsPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/SettingsPanel.vue"],"names":[],"mappings":"AA8IA;AA0MA,KAAK,YAAY,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEzC,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,YAAY,CAAC;IACvB,IAAI,CAAC,EAAE,SAAS,GAAG,UAAU,CAAC;IAC9B,8BAA8B,CAAC,EAAE,OAAO,CAAC;IACzC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B,CAAC;;;;;;;;;;;;;;AA0VF,wBAOG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Toolbar.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/Toolbar.vue"],"names":[],"mappings":"AAuDA;
|
|
1
|
+
{"version":3,"file":"Toolbar.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/components/Toolbar.vue"],"names":[],"mappings":"AAuDA;AA6FA,KAAK,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,CAAC;AACtD,KAAK,YAAY,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEzC,KAAK,WAAW,GAAG;IACjB,WAAW,EAAE,QAAQ,CAAC;IACtB,QAAQ,EAAE,YAAY,CAAC;IACvB,cAAc,CAAC,EAAE,QAAQ,EAAE,CAAC;IAC5B,8BAA8B,EAAE,OAAO,CAAC;CACzC,CAAC;;;;;;;;;;;;AA8LF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useClickHandlers.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/composables/useClickHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AACzC,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAGlE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAElD,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,YAAY,EACrB,WAAW,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,EACpC,WAAW,EAAE,GAAG,CAAC,UAAU,CAAC,EAC5B,oBAAoB,EAAE,GAAG,CAAC,MAAM,CAAC,EACjC,aAAa,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,EACjC,iBAAiB,EAAE,GAAG,CAAC,MAAM,CAAC,EAC9B,iBAAiB,EAAE,GAAG,CAAC,MAAM,CAAC,EAC9B,eAAe,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,KAAK,IAAI,EACjE,cAAc,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EACtC,kBAAkB,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAC1C,iBAAiB,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,KAAK,IAAI,EACnE,cAAc,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,KAAK,OAAO,EACnE,UAAU,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,EACtC,8BAA8B,EAAE,GAAG,CAAC,OAAO,CAAC;;;
|
|
1
|
+
{"version":3,"file":"useClickHandlers.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/composables/useClickHandlers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,GAAG,EAAE,MAAM,KAAK,CAAC;AACzC,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAGlE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAElD,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,YAAY,EACrB,WAAW,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,EACpC,WAAW,EAAE,GAAG,CAAC,UAAU,CAAC,EAC5B,oBAAoB,EAAE,GAAG,CAAC,MAAM,CAAC,EACjC,aAAa,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,EACjC,iBAAiB,EAAE,GAAG,CAAC,MAAM,CAAC,EAC9B,iBAAiB,EAAE,GAAG,CAAC,MAAM,CAAC,EAC9B,eAAe,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,KAAK,IAAI,EACjE,cAAc,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EACtC,kBAAkB,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,EAC1C,iBAAiB,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,aAAa,KAAK,IAAI,EACnE,cAAc,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,KAAK,OAAO,EACnE,UAAU,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,EACtC,8BAA8B,EAAE,GAAG,CAAC,OAAO,CAAC;;;EA4X7C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useOutlineManager.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/composables/useOutlineManager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useOutlineManager.d.ts","sourceRoot":"","sources":["../../../../src/features/editor/composables/useOutlineManager.ts"],"names":[],"mappings":"AASA,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,QAIlE;AAGD,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,WAAW,QAGvD;AAGD,wBAAgB,eAAe,CAAC,OAAO,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,QAIjE;AAGD,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,WAAW,QAGtD"}
|
|
@@ -2,6 +2,7 @@ import { ZeroCodeData, CMSConfig } from '../../../types';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
cmsData: ZeroCodeData;
|
|
4
4
|
config?: Partial<CMSConfig>;
|
|
5
|
+
fixedCategory?: 'common' | 'individual' | 'special';
|
|
5
6
|
};
|
|
6
7
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
7
8
|
activeCategory: import('vue').Ref<"common" | "individual" | "special", "common" | "individual" | "special">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImagesManagerPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/images-manager/components/ImagesManagerPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ImagesManagerPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/images-manager/components/ImagesManagerPanel.vue"],"names":[],"mappings":"AA4MA;AAoVA,OAAO,KAAK,EAAE,YAAY,EAAa,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAOzE,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,YAAY,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IAC5B,aAAa,CAAC,EAAE,QAAQ,GAAG,YAAY,GAAG,SAAS,CAAC;CACrD,CAAC;;;;;;;AAgkBF,wBASG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MonacoEditor.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/parts-manager/components/MonacoEditor.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MonacoEditor.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/parts-manager/components/MonacoEditor.vue"],"names":[],"mappings":"AAQA;AAkjBA,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,IAAI,GAAG,SAAS,GAAG,UAAU,CAAC;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B,CAAC;;6BAogByB,MAAM;;;;;;;;AAmFjC,wBAUG"}
|
|
@@ -2,10 +2,12 @@ import { ZeroCodeData, CMSConfig } from '../../../types';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
cmsData: ZeroCodeData;
|
|
4
4
|
config?: Partial<CMSConfig>;
|
|
5
|
+
fixedCategory?: 'common' | 'individual' | 'special';
|
|
5
6
|
};
|
|
6
7
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
7
8
|
activeCategory: import('vue').Ref<"common" | "individual" | "special", "common" | "individual" | "special">;
|
|
8
9
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
10
|
+
partOptionsRef: HTMLDivElement;
|
|
9
11
|
monacoEditorRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
10
12
|
modelValue: string;
|
|
11
13
|
language?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PartsManagerPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/parts-manager/components/PartsManagerPanel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PartsManagerPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/features/parts-manager/components/PartsManagerPanel.vue"],"names":[],"mappings":"AAu3BA;AAs+CA,OAAO,KAAK,EAAE,YAAY,EAAY,SAAS,EAAiB,MAAM,gBAAgB,CAAC;AA2BvF,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,YAAY,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IAC5B,aAAa,CAAC,EAAE,QAAQ,GAAG,YAAY,GAAG,SAAS,CAAC;CACrD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmsEF,wBASG"}
|
|
@@ -6,7 +6,11 @@ type EditingPart = {
|
|
|
6
6
|
part: PartData;
|
|
7
7
|
isNewPart?: boolean;
|
|
8
8
|
};
|
|
9
|
-
export
|
|
9
|
+
export interface PartsManagerOptions {
|
|
10
|
+
beforeSavePart?: (body: string) => string | Promise<string>;
|
|
11
|
+
sanitize?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare function usePartsManager(cmsData: ZeroCodeData, options?: PartsManagerOptions): {
|
|
10
14
|
reorderSourcePart: import('vue').Ref<{
|
|
11
15
|
type: string;
|
|
12
16
|
partIndex: number;
|
|
@@ -40,6 +44,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
40
44
|
allowedParts?: string[];
|
|
41
45
|
}> | undefined;
|
|
42
46
|
slotOnly?: boolean | undefined;
|
|
47
|
+
outlinePosition?: "inner" | undefined;
|
|
43
48
|
}[];
|
|
44
49
|
} | null, TypeData | {
|
|
45
50
|
id: string;
|
|
@@ -54,6 +59,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
54
59
|
allowedParts?: string[];
|
|
55
60
|
}> | undefined;
|
|
56
61
|
slotOnly?: boolean | undefined;
|
|
62
|
+
outlinePosition?: "inner" | undefined;
|
|
57
63
|
}[];
|
|
58
64
|
} | null>;
|
|
59
65
|
editingType: import('vue').Ref<{
|
|
@@ -69,6 +75,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
69
75
|
allowedParts?: string[];
|
|
70
76
|
}> | undefined;
|
|
71
77
|
slotOnly?: boolean | undefined;
|
|
78
|
+
outlinePosition?: "inner" | undefined;
|
|
72
79
|
}[];
|
|
73
80
|
} | null, TypeData | {
|
|
74
81
|
id: string;
|
|
@@ -83,6 +90,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
83
90
|
allowedParts?: string[];
|
|
84
91
|
}> | undefined;
|
|
85
92
|
slotOnly?: boolean | undefined;
|
|
93
|
+
outlinePosition?: "inner" | undefined;
|
|
86
94
|
}[];
|
|
87
95
|
} | null>;
|
|
88
96
|
editingPart: import('vue').Ref<{
|
|
@@ -99,6 +107,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
99
107
|
allowedParts?: string[];
|
|
100
108
|
}> | undefined;
|
|
101
109
|
slotOnly?: boolean | undefined;
|
|
110
|
+
outlinePosition?: "inner" | undefined;
|
|
102
111
|
}[];
|
|
103
112
|
};
|
|
104
113
|
partIndex: number;
|
|
@@ -111,6 +120,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
111
120
|
allowedParts?: string[];
|
|
112
121
|
}> | undefined;
|
|
113
122
|
slotOnly?: boolean | undefined;
|
|
123
|
+
outlinePosition?: "inner" | undefined;
|
|
114
124
|
};
|
|
115
125
|
isNewPart?: boolean | undefined;
|
|
116
126
|
} | null, EditingPart | {
|
|
@@ -127,6 +137,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
127
137
|
allowedParts?: string[];
|
|
128
138
|
}> | undefined;
|
|
129
139
|
slotOnly?: boolean | undefined;
|
|
140
|
+
outlinePosition?: "inner" | undefined;
|
|
130
141
|
}[];
|
|
131
142
|
};
|
|
132
143
|
partIndex: number;
|
|
@@ -139,6 +150,7 @@ export declare function usePartsManager(cmsData: ZeroCodeData): {
|
|
|
139
150
|
allowedParts?: string[];
|
|
140
151
|
}> | undefined;
|
|
141
152
|
slotOnly?: boolean | undefined;
|
|
153
|
+
outlinePosition?: "inner" | undefined;
|
|
142
154
|
};
|
|
143
155
|
isNewPart?: boolean | undefined;
|
|
144
156
|
} | null>;
|