zerocodejs 1.0.1-beta.0
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/LICENSE +21 -0
- package/README.md +161 -0
- package/dist/__tests__/fixtures/sample-data.d.ts +23 -0
- package/dist/__tests__/fixtures/sample-data.d.ts.map +1 -0
- package/dist/__tests__/fixtures/sample-templates.d.ts +25 -0
- package/dist/__tests__/fixtures/sample-templates.d.ts.map +1 -0
- package/dist/components/ZeroCodeCMS.vue.d.ts +142 -0
- package/dist/components/ZeroCodeCMS.vue.d.ts.map +1 -0
- package/dist/components/ZeroCodeEditor.vue.d.ts +341 -0
- package/dist/components/ZeroCodeEditor.vue.d.ts.map +1 -0
- package/dist/components/ZeroCodePreview.vue.d.ts +36 -0
- package/dist/components/ZeroCodePreview.vue.d.ts.map +1 -0
- package/dist/core/composables/useZeroCodeData.d.ts +91 -0
- package/dist/core/composables/useZeroCodeData.d.ts.map +1 -0
- package/dist/core/composables/useZeroCodeRenderer.d.ts +7 -0
- package/dist/core/composables/useZeroCodeRenderer.d.ts.map +1 -0
- package/dist/core/renderer/renderer.d.ts +20 -0
- package/dist/core/renderer/renderer.d.ts.map +1 -0
- package/dist/core/utils/component-initializer.d.ts +6 -0
- package/dist/core/utils/component-initializer.d.ts.map +1 -0
- package/dist/core/utils/component-initializer.test.d.ts +2 -0
- package/dist/core/utils/component-initializer.test.d.ts.map +1 -0
- package/dist/core/utils/css-manager.d.ts +41 -0
- package/dist/core/utils/css-manager.d.ts.map +1 -0
- package/dist/core/utils/dom-utils.d.ts +29 -0
- package/dist/core/utils/dom-utils.d.ts.map +1 -0
- package/dist/core/utils/field-extractor.d.ts +8 -0
- package/dist/core/utils/field-extractor.d.ts.map +1 -0
- package/dist/core/utils/field-extractor.test.d.ts +2 -0
- package/dist/core/utils/field-extractor.test.d.ts.map +1 -0
- package/dist/core/utils/i18n-setup.d.ts +26 -0
- package/dist/core/utils/i18n-setup.d.ts.map +1 -0
- package/dist/core/utils/image-utils.d.ts +7 -0
- package/dist/core/utils/image-utils.d.ts.map +1 -0
- package/dist/core/utils/image-utils.test.d.ts +2 -0
- package/dist/core/utils/image-utils.test.d.ts.map +1 -0
- package/dist/core/utils/path-utils.d.ts +18 -0
- package/dist/core/utils/path-utils.d.ts.map +1 -0
- package/dist/core/utils/path-utils.test.d.ts +2 -0
- package/dist/core/utils/path-utils.test.d.ts.map +1 -0
- package/dist/core/utils/sanitize.d.ts +10 -0
- package/dist/core/utils/sanitize.d.ts.map +1 -0
- package/dist/core/utils/storage.d.ts +16 -0
- package/dist/core/utils/storage.d.ts.map +1 -0
- package/dist/core/utils/storage.test.d.ts +2 -0
- package/dist/core/utils/storage.test.d.ts.map +1 -0
- package/dist/core/utils/template-processor.d.ts +12 -0
- package/dist/core/utils/template-processor.d.ts.map +1 -0
- package/dist/core/utils/template-processor.test.d.ts +2 -0
- package/dist/core/utils/template-processor.test.d.ts.map +1 -0
- package/dist/core/utils/template-regex.d.ts +29 -0
- package/dist/core/utils/template-regex.d.ts.map +1 -0
- package/dist/core/utils/template-utils.d.ts +14 -0
- package/dist/core/utils/template-utils.d.ts.map +1 -0
- package/dist/core/utils/template-utils.test.d.ts +2 -0
- package/dist/core/utils/template-utils.test.d.ts.map +1 -0
- package/dist/core/utils/validation.d.ts +2 -0
- package/dist/core/utils/validation.d.ts.map +1 -0
- package/dist/core/utils/validation.test.d.ts +2 -0
- package/dist/core/utils/validation.test.d.ts.map +1 -0
- package/dist/css/common.css +677 -0
- package/dist/css/docs.css +396 -0
- package/dist/css/index.css +1039 -0
- package/dist/css/page.css +290 -0
- package/dist/css/sample.css +26 -0
- package/dist/css/site-common.css +218 -0
- package/dist/features/add/components/AddPanel.vue.d.ts +41 -0
- package/dist/features/add/components/AddPanel.vue.d.ts.map +1 -0
- package/dist/features/add/composables/useAddMode.d.ts +84 -0
- package/dist/features/add/composables/useAddMode.d.ts.map +1 -0
- package/dist/features/data-viewer/components/DataViewer.vue.d.ts +11 -0
- package/dist/features/data-viewer/components/DataViewer.vue.d.ts.map +1 -0
- package/dist/features/delete/components/DeletePanel.vue.d.ts +17 -0
- package/dist/features/delete/components/DeletePanel.vue.d.ts.map +1 -0
- package/dist/features/delete/composables/useDeleteMode.d.ts +20 -0
- package/dist/features/delete/composables/useDeleteMode.d.ts.map +1 -0
- package/dist/features/editor/components/ContextMenu.vue.d.ts +18 -0
- package/dist/features/editor/components/ContextMenu.vue.d.ts.map +1 -0
- package/dist/features/editor/components/EditPanel.vue.d.ts +39 -0
- package/dist/features/editor/components/EditPanel.vue.d.ts.map +1 -0
- package/dist/features/editor/components/ImageSelectModal.vue.d.ts +23 -0
- package/dist/features/editor/components/ImageSelectModal.vue.d.ts.map +1 -0
- package/dist/features/editor/components/RichTextEditor.vue.d.ts +11 -0
- package/dist/features/editor/components/RichTextEditor.vue.d.ts.map +1 -0
- package/dist/features/editor/components/SettingsPanel.vue.d.ts +25 -0
- package/dist/features/editor/components/SettingsPanel.vue.d.ts.map +1 -0
- package/dist/features/editor/components/Toolbar.vue.d.ts +21 -0
- package/dist/features/editor/components/Toolbar.vue.d.ts.map +1 -0
- package/dist/features/editor/composables/useClickHandlers.d.ts +8 -0
- package/dist/features/editor/composables/useClickHandlers.d.ts.map +1 -0
- package/dist/features/editor/composables/useContextMenu.d.ts +20 -0
- package/dist/features/editor/composables/useContextMenu.d.ts.map +1 -0
- package/dist/features/editor/composables/useEditMode.d.ts +66 -0
- package/dist/features/editor/composables/useEditMode.d.ts.map +1 -0
- package/dist/features/editor/composables/useEditorMode.d.ts +7 -0
- package/dist/features/editor/composables/useEditorMode.d.ts.map +1 -0
- package/dist/features/editor/composables/useModeSwitcher.d.ts +7 -0
- package/dist/features/editor/composables/useModeSwitcher.d.ts.map +1 -0
- package/dist/features/editor/composables/useOutlineManager.d.ts +5 -0
- package/dist/features/editor/composables/useOutlineManager.d.ts.map +1 -0
- package/dist/features/images-manager/components/ImagesManagerPanel.vue.d.ts +12 -0
- package/dist/features/images-manager/components/ImagesManagerPanel.vue.d.ts.map +1 -0
- package/dist/features/images-manager/composables/useImagesManager.d.ts +47 -0
- package/dist/features/images-manager/composables/useImagesManager.d.ts.map +1 -0
- package/dist/features/parent-selector/composables/useParentSelector.d.ts +9 -0
- package/dist/features/parent-selector/composables/useParentSelector.d.ts.map +1 -0
- package/dist/features/parts-manager/components/MonacoEditor.vue.d.ts +20 -0
- package/dist/features/parts-manager/components/MonacoEditor.vue.d.ts.map +1 -0
- package/dist/features/parts-manager/components/PartsManagerPanel.vue.d.ts +10 -0
- package/dist/features/parts-manager/components/PartsManagerPanel.vue.d.ts.map +1 -0
- package/dist/features/parts-manager/composables/usePartsManager.d.ts +190 -0
- package/dist/features/parts-manager/composables/usePartsManager.d.ts.map +1 -0
- package/dist/features/preview/PreviewArea.vue.d.ts +15 -0
- package/dist/features/preview/PreviewArea.vue.d.ts.map +1 -0
- package/dist/features/reorder/components/ReorderPanel.vue.d.ts +14 -0
- package/dist/features/reorder/components/ReorderPanel.vue.d.ts.map +1 -0
- package/dist/features/reorder/composables/useReorderMode.d.ts +9 -0
- package/dist/features/reorder/composables/useReorderMode.d.ts.map +1 -0
- package/dist/footer.html +10 -0
- package/dist/header.html +10 -0
- package/dist/i18n/index.d.ts +454 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/locales/en.d.ts +231 -0
- package/dist/i18n/locales/en.d.ts.map +1 -0
- package/dist/i18n/locales/ja.d.ts +223 -0
- package/dist/i18n/locales/ja.d.ts.map +1 -0
- package/dist/images/customer-avatar.jpg +0 -0
- package/dist/images/default-avatar.jpg +0 -0
- package/dist/images/default.jpg +0 -0
- package/dist/images/hero-bg.jpg +0 -0
- package/dist/images/kv_image.jpg +0 -0
- package/dist/images/page-specific-hero.jpg +0 -0
- package/dist/images/sample-1.jpg +0 -0
- package/dist/images/sample-2.jpg +0 -0
- package/dist/images/sample-3.jpg +0 -0
- package/dist/images/zcode_top_01.png +0 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/js/accordion.js +24 -0
- package/dist/js/common.js +1093 -0
- package/dist/types/index.d.ts +96 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/web-component.d.ts +14 -0
- package/dist/web-component.d.ts.map +1 -0
- package/dist/web-components/zcode-cms.d.ts +29 -0
- package/dist/web-components/zcode-cms.d.ts.map +1 -0
- package/dist/web-components/zcode-editor.d.ts +29 -0
- package/dist/web-components/zcode-editor.d.ts.map +1 -0
- package/dist/zerocode.es.js +28710 -0
- package/dist/zerocode.es.js.map +1 -0
- package/dist/zerocode.umd.js +490 -0
- package/dist/zerocode.umd.js.map +1 -0
- package/dist/zerocodejs.css +1 -0
- package/package.json +94 -0
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
export type SupportedLocale = 'ja' | 'en';
|
|
2
|
+
export declare function createZeroCodeI18n(locale?: SupportedLocale): import('vue-i18n').I18n<{
|
|
3
|
+
ja: {
|
|
4
|
+
common: {
|
|
5
|
+
close: string;
|
|
6
|
+
save: string;
|
|
7
|
+
cancel: string;
|
|
8
|
+
delete: string;
|
|
9
|
+
edit: string;
|
|
10
|
+
add: string;
|
|
11
|
+
reorder: string;
|
|
12
|
+
preview: string;
|
|
13
|
+
settings: string;
|
|
14
|
+
manage: string;
|
|
15
|
+
view: string;
|
|
16
|
+
confirm: string;
|
|
17
|
+
clear: string;
|
|
18
|
+
select: string;
|
|
19
|
+
replace: string;
|
|
20
|
+
copy: string;
|
|
21
|
+
copied: string;
|
|
22
|
+
};
|
|
23
|
+
toolbar: {
|
|
24
|
+
editMode: string;
|
|
25
|
+
addMode: string;
|
|
26
|
+
reorderMode: string;
|
|
27
|
+
deleteMode: string;
|
|
28
|
+
viewMode: string;
|
|
29
|
+
settings: string;
|
|
30
|
+
};
|
|
31
|
+
settings: {
|
|
32
|
+
title: string;
|
|
33
|
+
language: {
|
|
34
|
+
label: string;
|
|
35
|
+
ja: string;
|
|
36
|
+
en: string;
|
|
37
|
+
};
|
|
38
|
+
enableDynamicContent: string;
|
|
39
|
+
enableDynamicContentDescription: string;
|
|
40
|
+
devRightPadding: string;
|
|
41
|
+
devRightPaddingDescription: string;
|
|
42
|
+
enableContextMenu: string;
|
|
43
|
+
enableContextMenuDescription: string;
|
|
44
|
+
showSaveConfirm: string;
|
|
45
|
+
showSaveConfirmDescription: string;
|
|
46
|
+
previewModeInfo: string;
|
|
47
|
+
noSettings: string;
|
|
48
|
+
};
|
|
49
|
+
addPanel: {
|
|
50
|
+
title: string;
|
|
51
|
+
selectParent: string;
|
|
52
|
+
category: {
|
|
53
|
+
common: string;
|
|
54
|
+
individual: string;
|
|
55
|
+
selected: string;
|
|
56
|
+
};
|
|
57
|
+
typeAll: string;
|
|
58
|
+
activeParts: string;
|
|
59
|
+
activePartsDescription: string;
|
|
60
|
+
clickPartInPreview: string;
|
|
61
|
+
noPartsAvailable: string;
|
|
62
|
+
addBefore: string;
|
|
63
|
+
addAfter: string;
|
|
64
|
+
continueAdding: string;
|
|
65
|
+
};
|
|
66
|
+
editPanel: {
|
|
67
|
+
title: string;
|
|
68
|
+
editing: string;
|
|
69
|
+
id: string;
|
|
70
|
+
selectImage: string;
|
|
71
|
+
replaceImage: string;
|
|
72
|
+
clearImage: string;
|
|
73
|
+
clearImageTitle: string;
|
|
74
|
+
noFields: string;
|
|
75
|
+
};
|
|
76
|
+
deletePanel: {
|
|
77
|
+
title: string;
|
|
78
|
+
confirmMessage: string;
|
|
79
|
+
selectParent: string;
|
|
80
|
+
};
|
|
81
|
+
reorderPanel: {
|
|
82
|
+
title: string;
|
|
83
|
+
instruction: string;
|
|
84
|
+
source: string;
|
|
85
|
+
selectParent: string;
|
|
86
|
+
};
|
|
87
|
+
saveConfirm: {
|
|
88
|
+
title: string;
|
|
89
|
+
message: string;
|
|
90
|
+
simpleMessage: string;
|
|
91
|
+
targets: {
|
|
92
|
+
page: string;
|
|
93
|
+
'parts-common': string;
|
|
94
|
+
'parts-individual': string;
|
|
95
|
+
'parts-special': string;
|
|
96
|
+
'parts-common-css': string;
|
|
97
|
+
'parts-individual-css': string;
|
|
98
|
+
'parts-special-css': string;
|
|
99
|
+
'images-common': string;
|
|
100
|
+
'images-individual': string;
|
|
101
|
+
'images-special': string;
|
|
102
|
+
};
|
|
103
|
+
saveButton: string;
|
|
104
|
+
};
|
|
105
|
+
partsManager: {
|
|
106
|
+
createType: string;
|
|
107
|
+
editType: string;
|
|
108
|
+
typeName: string;
|
|
109
|
+
typeDescription: string;
|
|
110
|
+
typeNamePlaceholder: string;
|
|
111
|
+
typeDescriptionPlaceholder: string;
|
|
112
|
+
editPart: string;
|
|
113
|
+
partTitle: string;
|
|
114
|
+
partDescription: string;
|
|
115
|
+
partDescriptionPlaceholder: string;
|
|
116
|
+
deletePartConfirm: string;
|
|
117
|
+
deleteTypeConfirm: string;
|
|
118
|
+
deleteTypeWithUsagesConfirm: string;
|
|
119
|
+
deleteSlotConfirm: string;
|
|
120
|
+
selectImage: string;
|
|
121
|
+
addPart: string;
|
|
122
|
+
editTypeButton: string;
|
|
123
|
+
reorderType: string;
|
|
124
|
+
deleteTypeButton: string;
|
|
125
|
+
editPartButton: string;
|
|
126
|
+
reorderPart: string;
|
|
127
|
+
deletePartButton: string;
|
|
128
|
+
source: string;
|
|
129
|
+
noDescription: string;
|
|
130
|
+
partNumber: string;
|
|
131
|
+
allowedParts: string;
|
|
132
|
+
searchParts: string;
|
|
133
|
+
addSlot: string;
|
|
134
|
+
selectSlot: string;
|
|
135
|
+
defaultSlot: string;
|
|
136
|
+
codeEdit: string;
|
|
137
|
+
cssEditInfo: string;
|
|
138
|
+
templateSuggestions: string;
|
|
139
|
+
preview: string;
|
|
140
|
+
cssEditWarning: string;
|
|
141
|
+
cssEditWarningMessageCommon: string;
|
|
142
|
+
cssEditWarningMessageIndividual: string;
|
|
143
|
+
cssEditWarningMessageSpecial: string;
|
|
144
|
+
understood: string;
|
|
145
|
+
dontShowAgain: string;
|
|
146
|
+
templateHelp: {
|
|
147
|
+
textField: string;
|
|
148
|
+
richText: string;
|
|
149
|
+
textarea: string;
|
|
150
|
+
image: string;
|
|
151
|
+
radio: string;
|
|
152
|
+
checkbox: string;
|
|
153
|
+
selectSingle: string;
|
|
154
|
+
selectMultiple: string;
|
|
155
|
+
conditional: string;
|
|
156
|
+
slot: string;
|
|
157
|
+
note: string;
|
|
158
|
+
suggestionNote: string;
|
|
159
|
+
fieldNameNote: string;
|
|
160
|
+
defaultValueNote: string;
|
|
161
|
+
};
|
|
162
|
+
validationError: string;
|
|
163
|
+
dangerousTagWarning: string;
|
|
164
|
+
dangerousAttrWarning: string;
|
|
165
|
+
slotSettings: string;
|
|
166
|
+
slot: string;
|
|
167
|
+
templateHelpButton: string;
|
|
168
|
+
clickToEnlarge: string;
|
|
169
|
+
};
|
|
170
|
+
imagesManager: {
|
|
171
|
+
addImage: string;
|
|
172
|
+
editImage: string;
|
|
173
|
+
imageId: string;
|
|
174
|
+
imageName: string;
|
|
175
|
+
altText: string;
|
|
176
|
+
deleteImageConfirm: string;
|
|
177
|
+
deleteImageWithUsagesConfirm: string;
|
|
178
|
+
deleteImageFromModalConfirm: string;
|
|
179
|
+
addImageFailed: string;
|
|
180
|
+
selectImage: string;
|
|
181
|
+
currentlySelected: string;
|
|
182
|
+
select: string;
|
|
183
|
+
};
|
|
184
|
+
dataViewer: {
|
|
185
|
+
page: string;
|
|
186
|
+
parts: string;
|
|
187
|
+
images: string;
|
|
188
|
+
common: string;
|
|
189
|
+
individual: string;
|
|
190
|
+
special: string;
|
|
191
|
+
json: string;
|
|
192
|
+
html: string;
|
|
193
|
+
categoryInfo: {
|
|
194
|
+
title: string;
|
|
195
|
+
common: {
|
|
196
|
+
title: string;
|
|
197
|
+
description: string;
|
|
198
|
+
};
|
|
199
|
+
individual: {
|
|
200
|
+
title: string;
|
|
201
|
+
description: string;
|
|
202
|
+
};
|
|
203
|
+
special: {
|
|
204
|
+
title: string;
|
|
205
|
+
description: string;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
contextMenu: {
|
|
210
|
+
edit: string;
|
|
211
|
+
add: string;
|
|
212
|
+
reorder: string;
|
|
213
|
+
delete: string;
|
|
214
|
+
close: string;
|
|
215
|
+
};
|
|
216
|
+
editor: {
|
|
217
|
+
pageManagement: string;
|
|
218
|
+
partsManagement: string;
|
|
219
|
+
imagesManagement: string;
|
|
220
|
+
dataViewer: string;
|
|
221
|
+
loading: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
en: {
|
|
225
|
+
common: {
|
|
226
|
+
close: string;
|
|
227
|
+
save: string;
|
|
228
|
+
cancel: string;
|
|
229
|
+
delete: string;
|
|
230
|
+
edit: string;
|
|
231
|
+
add: string;
|
|
232
|
+
reorder: string;
|
|
233
|
+
preview: string;
|
|
234
|
+
settings: string;
|
|
235
|
+
manage: string;
|
|
236
|
+
view: string;
|
|
237
|
+
confirm: string;
|
|
238
|
+
clear: string;
|
|
239
|
+
select: string;
|
|
240
|
+
replace: string;
|
|
241
|
+
copy: string;
|
|
242
|
+
copied: string;
|
|
243
|
+
};
|
|
244
|
+
toolbar: {
|
|
245
|
+
editMode: string;
|
|
246
|
+
addMode: string;
|
|
247
|
+
reorderMode: string;
|
|
248
|
+
deleteMode: string;
|
|
249
|
+
viewMode: string;
|
|
250
|
+
settings: string;
|
|
251
|
+
};
|
|
252
|
+
settings: {
|
|
253
|
+
title: string;
|
|
254
|
+
language: {
|
|
255
|
+
label: string;
|
|
256
|
+
ja: string;
|
|
257
|
+
en: string;
|
|
258
|
+
};
|
|
259
|
+
enableDynamicContent: string;
|
|
260
|
+
enableDynamicContentDescription: string;
|
|
261
|
+
devRightPadding: string;
|
|
262
|
+
devRightPaddingDescription: string;
|
|
263
|
+
enableContextMenu: string;
|
|
264
|
+
enableContextMenuDescription: string;
|
|
265
|
+
showSaveConfirm: string;
|
|
266
|
+
showSaveConfirmDescription: string;
|
|
267
|
+
previewModeInfo: string;
|
|
268
|
+
noSettings: string;
|
|
269
|
+
};
|
|
270
|
+
addPanel: {
|
|
271
|
+
title: string;
|
|
272
|
+
selectParent: string;
|
|
273
|
+
category: {
|
|
274
|
+
common: string;
|
|
275
|
+
individual: string;
|
|
276
|
+
selected: string;
|
|
277
|
+
};
|
|
278
|
+
typeAll: string;
|
|
279
|
+
activeParts: string;
|
|
280
|
+
activePartsDescription: string;
|
|
281
|
+
clickPartInPreview: string;
|
|
282
|
+
noPartsAvailable: string;
|
|
283
|
+
addBefore: string;
|
|
284
|
+
addAfter: string;
|
|
285
|
+
continueAdding: string;
|
|
286
|
+
};
|
|
287
|
+
editPanel: {
|
|
288
|
+
title: string;
|
|
289
|
+
editing: string;
|
|
290
|
+
id: string;
|
|
291
|
+
selectImage: string;
|
|
292
|
+
replaceImage: string;
|
|
293
|
+
clearImage: string;
|
|
294
|
+
clearImageTitle: string;
|
|
295
|
+
noFields: string;
|
|
296
|
+
};
|
|
297
|
+
deletePanel: {
|
|
298
|
+
title: string;
|
|
299
|
+
confirmMessage: string;
|
|
300
|
+
selectParent: string;
|
|
301
|
+
};
|
|
302
|
+
reorderPanel: {
|
|
303
|
+
title: string;
|
|
304
|
+
instruction: string;
|
|
305
|
+
source: string;
|
|
306
|
+
selectParent: string;
|
|
307
|
+
};
|
|
308
|
+
saveConfirm: {
|
|
309
|
+
title: string;
|
|
310
|
+
message: string;
|
|
311
|
+
simpleMessage: string;
|
|
312
|
+
targets: {
|
|
313
|
+
page: string;
|
|
314
|
+
'parts-common': string;
|
|
315
|
+
'parts-individual': string;
|
|
316
|
+
'parts-special': string;
|
|
317
|
+
'images-common': string;
|
|
318
|
+
'images-individual': string;
|
|
319
|
+
'images-special': string;
|
|
320
|
+
'parts-common-css': string;
|
|
321
|
+
'parts-individual-css': string;
|
|
322
|
+
'parts-special-css': string;
|
|
323
|
+
};
|
|
324
|
+
saveButton: string;
|
|
325
|
+
};
|
|
326
|
+
partsManager: {
|
|
327
|
+
createType: string;
|
|
328
|
+
editType: string;
|
|
329
|
+
typeName: string;
|
|
330
|
+
typeDescription: string;
|
|
331
|
+
typeNamePlaceholder: string;
|
|
332
|
+
typeDescriptionPlaceholder: string;
|
|
333
|
+
editPart: string;
|
|
334
|
+
partTitle: string;
|
|
335
|
+
partDescription: string;
|
|
336
|
+
partDescriptionPlaceholder: string;
|
|
337
|
+
deletePartConfirm: string;
|
|
338
|
+
deleteTypeConfirm: string;
|
|
339
|
+
deleteTypeWithUsagesConfirm: string;
|
|
340
|
+
deleteSlotConfirm: string;
|
|
341
|
+
selectImage: string;
|
|
342
|
+
addPart: string;
|
|
343
|
+
editTypeButton: string;
|
|
344
|
+
reorderType: string;
|
|
345
|
+
deleteTypeButton: string;
|
|
346
|
+
editPartButton: string;
|
|
347
|
+
reorderPart: string;
|
|
348
|
+
deletePartButton: string;
|
|
349
|
+
source: string;
|
|
350
|
+
noDescription: string;
|
|
351
|
+
partNumber: string;
|
|
352
|
+
allowedParts: string;
|
|
353
|
+
searchParts: string;
|
|
354
|
+
addSlot: string;
|
|
355
|
+
selectSlot: string;
|
|
356
|
+
defaultSlot: string;
|
|
357
|
+
codeEdit: string;
|
|
358
|
+
cssEditInfo: string;
|
|
359
|
+
templateSuggestions: string;
|
|
360
|
+
preview: string;
|
|
361
|
+
cssEditWarning: string;
|
|
362
|
+
cssEditWarningMessageCommon: string;
|
|
363
|
+
cssEditWarningMessageIndividual: string;
|
|
364
|
+
cssEditWarningMessageSpecial: string;
|
|
365
|
+
dontShowAgain: string;
|
|
366
|
+
templateHelp: {
|
|
367
|
+
textField: string;
|
|
368
|
+
richText: string;
|
|
369
|
+
textarea: string;
|
|
370
|
+
image: string;
|
|
371
|
+
radio: string;
|
|
372
|
+
checkbox: string;
|
|
373
|
+
selectSingle: string;
|
|
374
|
+
selectMultiple: string;
|
|
375
|
+
conditional: string;
|
|
376
|
+
slot: string;
|
|
377
|
+
note: string;
|
|
378
|
+
suggestionNote: string;
|
|
379
|
+
fieldNameNote: string;
|
|
380
|
+
defaultValueNote: string;
|
|
381
|
+
};
|
|
382
|
+
validationError: string;
|
|
383
|
+
dangerousTagWarning: string;
|
|
384
|
+
dangerousAttrWarning: string;
|
|
385
|
+
slotSettings: string;
|
|
386
|
+
slot: string;
|
|
387
|
+
templateHelpTitle: string;
|
|
388
|
+
clickToEnlarge: string;
|
|
389
|
+
understood: string;
|
|
390
|
+
syntax: string;
|
|
391
|
+
description: string;
|
|
392
|
+
example: string;
|
|
393
|
+
templateHelpButton: string;
|
|
394
|
+
};
|
|
395
|
+
imagesManager: {
|
|
396
|
+
addImage: string;
|
|
397
|
+
editImage: string;
|
|
398
|
+
imageId: string;
|
|
399
|
+
imageName: string;
|
|
400
|
+
altText: string;
|
|
401
|
+
deleteImageConfirm: string;
|
|
402
|
+
deleteImageWithUsagesConfirm: string;
|
|
403
|
+
deleteImageFromModalConfirm: string;
|
|
404
|
+
addImageFailed: string;
|
|
405
|
+
selectImage: string;
|
|
406
|
+
currentlySelected: string;
|
|
407
|
+
select: string;
|
|
408
|
+
};
|
|
409
|
+
dataViewer: {
|
|
410
|
+
page: string;
|
|
411
|
+
parts: string;
|
|
412
|
+
images: string;
|
|
413
|
+
common: string;
|
|
414
|
+
individual: string;
|
|
415
|
+
special: string;
|
|
416
|
+
json: string;
|
|
417
|
+
html: string;
|
|
418
|
+
categoryInfo: {
|
|
419
|
+
title: string;
|
|
420
|
+
common: {
|
|
421
|
+
title: string;
|
|
422
|
+
description: string;
|
|
423
|
+
};
|
|
424
|
+
individual: {
|
|
425
|
+
title: string;
|
|
426
|
+
description: string;
|
|
427
|
+
};
|
|
428
|
+
special: {
|
|
429
|
+
title: string;
|
|
430
|
+
description: string;
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
};
|
|
434
|
+
contextMenu: {
|
|
435
|
+
edit: string;
|
|
436
|
+
add: string;
|
|
437
|
+
reorder: string;
|
|
438
|
+
delete: string;
|
|
439
|
+
close: string;
|
|
440
|
+
};
|
|
441
|
+
editor: {
|
|
442
|
+
pageManagement: string;
|
|
443
|
+
partsManagement: string;
|
|
444
|
+
imagesManagement: string;
|
|
445
|
+
dataViewer: string;
|
|
446
|
+
loading: string;
|
|
447
|
+
saveFailed: string;
|
|
448
|
+
saveFailedWithCount: string;
|
|
449
|
+
saveFailedWithMessage: string;
|
|
450
|
+
noSaveTargets: string;
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
}, {}, {}, SupportedLocale, false>;
|
|
454
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +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"}
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
common: {
|
|
3
|
+
close: string;
|
|
4
|
+
save: string;
|
|
5
|
+
cancel: string;
|
|
6
|
+
delete: string;
|
|
7
|
+
edit: string;
|
|
8
|
+
add: string;
|
|
9
|
+
reorder: string;
|
|
10
|
+
preview: string;
|
|
11
|
+
settings: string;
|
|
12
|
+
manage: string;
|
|
13
|
+
view: string;
|
|
14
|
+
confirm: string;
|
|
15
|
+
clear: string;
|
|
16
|
+
select: string;
|
|
17
|
+
replace: string;
|
|
18
|
+
copy: string;
|
|
19
|
+
copied: string;
|
|
20
|
+
};
|
|
21
|
+
toolbar: {
|
|
22
|
+
editMode: string;
|
|
23
|
+
addMode: string;
|
|
24
|
+
reorderMode: string;
|
|
25
|
+
deleteMode: string;
|
|
26
|
+
viewMode: string;
|
|
27
|
+
settings: string;
|
|
28
|
+
};
|
|
29
|
+
settings: {
|
|
30
|
+
title: string;
|
|
31
|
+
language: {
|
|
32
|
+
label: string;
|
|
33
|
+
ja: string;
|
|
34
|
+
en: string;
|
|
35
|
+
};
|
|
36
|
+
enableDynamicContent: string;
|
|
37
|
+
enableDynamicContentDescription: string;
|
|
38
|
+
devRightPadding: string;
|
|
39
|
+
devRightPaddingDescription: string;
|
|
40
|
+
enableContextMenu: string;
|
|
41
|
+
enableContextMenuDescription: string;
|
|
42
|
+
showSaveConfirm: string;
|
|
43
|
+
showSaveConfirmDescription: string;
|
|
44
|
+
previewModeInfo: string;
|
|
45
|
+
noSettings: string;
|
|
46
|
+
};
|
|
47
|
+
addPanel: {
|
|
48
|
+
title: string;
|
|
49
|
+
selectParent: string;
|
|
50
|
+
category: {
|
|
51
|
+
common: string;
|
|
52
|
+
individual: string;
|
|
53
|
+
selected: string;
|
|
54
|
+
};
|
|
55
|
+
typeAll: string;
|
|
56
|
+
activeParts: string;
|
|
57
|
+
activePartsDescription: string;
|
|
58
|
+
clickPartInPreview: string;
|
|
59
|
+
noPartsAvailable: string;
|
|
60
|
+
addBefore: string;
|
|
61
|
+
addAfter: string;
|
|
62
|
+
continueAdding: string;
|
|
63
|
+
};
|
|
64
|
+
editPanel: {
|
|
65
|
+
title: string;
|
|
66
|
+
editing: string;
|
|
67
|
+
id: string;
|
|
68
|
+
selectImage: string;
|
|
69
|
+
replaceImage: string;
|
|
70
|
+
clearImage: string;
|
|
71
|
+
clearImageTitle: string;
|
|
72
|
+
noFields: string;
|
|
73
|
+
};
|
|
74
|
+
deletePanel: {
|
|
75
|
+
title: string;
|
|
76
|
+
confirmMessage: string;
|
|
77
|
+
selectParent: string;
|
|
78
|
+
};
|
|
79
|
+
reorderPanel: {
|
|
80
|
+
title: string;
|
|
81
|
+
instruction: string;
|
|
82
|
+
source: string;
|
|
83
|
+
selectParent: string;
|
|
84
|
+
};
|
|
85
|
+
saveConfirm: {
|
|
86
|
+
title: string;
|
|
87
|
+
message: string;
|
|
88
|
+
simpleMessage: string;
|
|
89
|
+
targets: {
|
|
90
|
+
page: string;
|
|
91
|
+
'parts-common': string;
|
|
92
|
+
'parts-individual': string;
|
|
93
|
+
'parts-special': string;
|
|
94
|
+
'images-common': string;
|
|
95
|
+
'images-individual': string;
|
|
96
|
+
'images-special': string;
|
|
97
|
+
'parts-common-css': string;
|
|
98
|
+
'parts-individual-css': string;
|
|
99
|
+
'parts-special-css': string;
|
|
100
|
+
};
|
|
101
|
+
saveButton: string;
|
|
102
|
+
};
|
|
103
|
+
partsManager: {
|
|
104
|
+
createType: string;
|
|
105
|
+
editType: string;
|
|
106
|
+
typeName: string;
|
|
107
|
+
typeDescription: string;
|
|
108
|
+
typeNamePlaceholder: string;
|
|
109
|
+
typeDescriptionPlaceholder: string;
|
|
110
|
+
editPart: string;
|
|
111
|
+
partTitle: string;
|
|
112
|
+
partDescription: string;
|
|
113
|
+
partDescriptionPlaceholder: string;
|
|
114
|
+
deletePartConfirm: string;
|
|
115
|
+
deleteTypeConfirm: string;
|
|
116
|
+
deleteTypeWithUsagesConfirm: string;
|
|
117
|
+
deleteSlotConfirm: string;
|
|
118
|
+
selectImage: string;
|
|
119
|
+
addPart: string;
|
|
120
|
+
editTypeButton: string;
|
|
121
|
+
reorderType: string;
|
|
122
|
+
deleteTypeButton: string;
|
|
123
|
+
editPartButton: string;
|
|
124
|
+
reorderPart: string;
|
|
125
|
+
deletePartButton: string;
|
|
126
|
+
source: string;
|
|
127
|
+
noDescription: string;
|
|
128
|
+
partNumber: string;
|
|
129
|
+
allowedParts: string;
|
|
130
|
+
searchParts: string;
|
|
131
|
+
addSlot: string;
|
|
132
|
+
selectSlot: string;
|
|
133
|
+
defaultSlot: string;
|
|
134
|
+
codeEdit: string;
|
|
135
|
+
cssEditInfo: string;
|
|
136
|
+
templateSuggestions: string;
|
|
137
|
+
preview: string;
|
|
138
|
+
cssEditWarning: string;
|
|
139
|
+
cssEditWarningMessageCommon: string;
|
|
140
|
+
cssEditWarningMessageIndividual: string;
|
|
141
|
+
cssEditWarningMessageSpecial: string;
|
|
142
|
+
dontShowAgain: string;
|
|
143
|
+
templateHelp: {
|
|
144
|
+
textField: string;
|
|
145
|
+
richText: string;
|
|
146
|
+
textarea: string;
|
|
147
|
+
image: string;
|
|
148
|
+
radio: string;
|
|
149
|
+
checkbox: string;
|
|
150
|
+
selectSingle: string;
|
|
151
|
+
selectMultiple: string;
|
|
152
|
+
conditional: string;
|
|
153
|
+
slot: string;
|
|
154
|
+
note: string;
|
|
155
|
+
suggestionNote: string;
|
|
156
|
+
fieldNameNote: string;
|
|
157
|
+
defaultValueNote: string;
|
|
158
|
+
};
|
|
159
|
+
validationError: string;
|
|
160
|
+
dangerousTagWarning: string;
|
|
161
|
+
dangerousAttrWarning: string;
|
|
162
|
+
slotSettings: string;
|
|
163
|
+
slot: string;
|
|
164
|
+
templateHelpTitle: string;
|
|
165
|
+
clickToEnlarge: string;
|
|
166
|
+
understood: string;
|
|
167
|
+
syntax: string;
|
|
168
|
+
description: string;
|
|
169
|
+
example: string;
|
|
170
|
+
templateHelpButton: string;
|
|
171
|
+
};
|
|
172
|
+
imagesManager: {
|
|
173
|
+
addImage: string;
|
|
174
|
+
editImage: string;
|
|
175
|
+
imageId: string;
|
|
176
|
+
imageName: string;
|
|
177
|
+
altText: string;
|
|
178
|
+
deleteImageConfirm: string;
|
|
179
|
+
deleteImageWithUsagesConfirm: string;
|
|
180
|
+
deleteImageFromModalConfirm: string;
|
|
181
|
+
addImageFailed: string;
|
|
182
|
+
selectImage: string;
|
|
183
|
+
currentlySelected: string;
|
|
184
|
+
select: string;
|
|
185
|
+
};
|
|
186
|
+
dataViewer: {
|
|
187
|
+
page: string;
|
|
188
|
+
parts: string;
|
|
189
|
+
images: string;
|
|
190
|
+
common: string;
|
|
191
|
+
individual: string;
|
|
192
|
+
special: string;
|
|
193
|
+
json: string;
|
|
194
|
+
html: string;
|
|
195
|
+
categoryInfo: {
|
|
196
|
+
title: string;
|
|
197
|
+
common: {
|
|
198
|
+
title: string;
|
|
199
|
+
description: string;
|
|
200
|
+
};
|
|
201
|
+
individual: {
|
|
202
|
+
title: string;
|
|
203
|
+
description: string;
|
|
204
|
+
};
|
|
205
|
+
special: {
|
|
206
|
+
title: string;
|
|
207
|
+
description: string;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
contextMenu: {
|
|
212
|
+
edit: string;
|
|
213
|
+
add: string;
|
|
214
|
+
reorder: string;
|
|
215
|
+
delete: string;
|
|
216
|
+
close: string;
|
|
217
|
+
};
|
|
218
|
+
editor: {
|
|
219
|
+
pageManagement: string;
|
|
220
|
+
partsManagement: string;
|
|
221
|
+
imagesManagement: string;
|
|
222
|
+
dataViewer: string;
|
|
223
|
+
loading: string;
|
|
224
|
+
saveFailed: string;
|
|
225
|
+
saveFailedWithCount: string;
|
|
226
|
+
saveFailedWithMessage: string;
|
|
227
|
+
noSaveTargets: string;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
export default _default;
|
|
231
|
+
//# sourceMappingURL=en.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/i18n/locales/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAoOE"}
|