@raclettejs/workbench 0.0.1
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.md +1 -0
- package/config/compositions.js +282 -0
- package/config/interactionLinks.js +164 -0
- package/i18n/de-DE.json +245 -0
- package/i18n/en-EU.json +245 -0
- package/i18n/sk-SK.json +245 -0
- package/package.json +63 -0
- package/packages.json +33 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionConfiguration.vue +140 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionIntegration.vue +3 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/CompositionWidgetsLayout.vue +129 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetContextMenu.vue +53 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetIcon.vue +99 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetList.vue +122 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetRenderer.vue +65 -0
- package/plugins/pacifico__compositions/frontend/components/compositionConfiguration/widgetsLayout/WidgetSettings.vue +96 -0
- package/plugins/pacifico__compositions/frontend/widgets/CompositionCreateWidget.vue +51 -0
- package/plugins/pacifico__compositions/frontend/widgets/CompositionEditWidget.vue +66 -0
- package/plugins/pacifico__compositions/frontend/widgets/CompositionListWidget.vue +132 -0
- package/plugins/pacifico__compositions/raclette.plugin.ts +8 -0
- package/plugins/pacifico__core/backend/index.ts +25 -0
- package/plugins/pacifico__core/backend/routes.ts +220 -0
- package/plugins/pacifico__core/raclette.plugin.ts +9 -0
- package/plugins/pacifico__interactionLinks/frontend/components/InteractionLinkConfiguration.vue +145 -0
- package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkCreateWidget.vue +48 -0
- package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkEditWidget.vue +66 -0
- package/plugins/pacifico__interactionLinks/frontend/widgets/InteractionLinkListWidget.vue +126 -0
- package/plugins/pacifico__interactionLinks/raclette.plugin.ts +8 -0
- package/plugins/pacifico__plugins/frontend/index.ts +42 -0
- package/plugins/pacifico__plugins/frontend/widgets/PluginDetailWidget.vue +26 -0
- package/plugins/pacifico__plugins/frontend/widgets/PluginListWidget.vue +59 -0
- package/plugins/pacifico__plugins/raclette.plugin.ts +8 -0
- package/plugins/pacifico__tags/frontend/components/TagConfiguration.vue +99 -0
- package/plugins/pacifico__tags/frontend/widgets/TagCreateWidget.vue +43 -0
- package/plugins/pacifico__tags/frontend/widgets/TagEditWidget.vue +64 -0
- package/plugins/pacifico__tags/frontend/widgets/TagListWidget.vue +71 -0
- package/plugins/pacifico__tags/raclette.plugin.ts +8 -0
- package/plugins/pacifico__users/frontend/components/UserConfiguration.vue +110 -0
- package/plugins/pacifico__users/frontend/widgets/UserCreateWidget.vue +48 -0
- package/plugins/pacifico__users/frontend/widgets/UserEditWidget.vue +64 -0
- package/plugins/pacifico__users/frontend/widgets/UserListWidget.vue +86 -0
- package/plugins/pacifico__users/raclette.plugin.ts +8 -0
- package/raclette.config.js +150 -0
- package/services/frontend/.DS_Store +0 -0
- package/services/frontend/public/favicon.png +0 -0
- package/services/frontend/public/home-icon.png +0 -0
- package/services/frontend/public/logo.png +0 -0
- package/services/frontend/src/app/.DS_Store +0 -0
- package/services/frontend/src/app/components/BaseDataTable.vue +284 -0
- package/services/frontend/src/app/components/dynamicForm/DynamicForm.vue +207 -0
- package/services/frontend/src/app/components/dynamicForm/DynamicFormTypes.ts +63 -0
- package/services/frontend/src/app/components/dynamicForm/DynamicInput.vue +344 -0
- package/services/frontend/src/app/components/dynamicForm/TextDivider.vue +13 -0
- package/services/frontend/src/app/components/dynamicForm/testing/DynamicFormInputTesting.vue +477 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/CheckboxInput.vue +16 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/ColorInput.vue +52 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/CompositionInput.vue +32 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/IconInput.vue +40 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/ListInput.vue +51 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/LocalizedInput.vue +51 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/PasswordInput.vue +23 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/RecordInput.vue +91 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/SwitchInput.vue +17 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/TagsInput.vue +58 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/TriggerInput.vue +159 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/UserInput.vue +63 -0
- package/services/frontend/src/app/components/dynamicForm/typedInputs/mdi-icons.ts +7002 -0
- package/services/frontend/src/app/components/dynamicForm/validators.ts +19 -0
- package/services/frontend/src/app/components/stepNavigator/StepNavigator.vue +331 -0
- package/services/frontend/src/app/components/stepNavigator/StepNavigatorTypes.ts +12 -0
- package/services/frontend/src/app/composables/useUserHelper.ts +254 -0
- package/services/frontend/src/app/composables/useVantaFog.ts +37 -0
- package/services/frontend/src/app/composables/useWorkbenchPlugins.ts +44 -0
- package/services/frontend/src/orchestrator/.DS_Store +0 -0
- package/services/frontend/src/orchestrator/LoginApp.vue +62 -0
- package/services/frontend/src/orchestrator/WelcomeScreen.vue +39 -0
- package/services/frontend/src/orchestrator/assets/styles/themes/dark.ts +39 -0
- package/services/frontend/src/orchestrator/assets/styles/themes/highContrast.ts +39 -0
- package/services/frontend/src/orchestrator/assets/styles/themes/light.ts +39 -0
- package/services/frontend/src/orchestrator/components/InitProjectScreen.vue +298 -0
- package/services/frontend/src/orchestrator/components/LoginScreen.vue +73 -0
- package/services/frontend/src/orchestrator/components/RacletteAdCorner.vue +313 -0
- package/services/frontend/src/orchestrator/components/layout/AppButton.vue +109 -0
- package/services/frontend/src/orchestrator/components/layout/AppHeadline.vue +46 -0
- package/services/frontend/src/orchestrator/components/layout/AppLabelledInput.vue +94 -0
- package/services/frontend/src/orchestrator/components/layout/AppModal.vue +28 -0
- package/services/frontend/src/orchestrator/components/layout/SvgButtonArrow.vue +14 -0
- package/services/frontend/src/orchestrator/composables/useWelcomeScreen.ts +19 -0
- package/yarn.lock +3435 -0
package/i18n/en-EU.json
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workbench": {
|
|
3
|
+
"global": {
|
|
4
|
+
"back": "Back",
|
|
5
|
+
"save": "Save",
|
|
6
|
+
"next_step": "Next Step",
|
|
7
|
+
"save_finish": "Save & Finish"
|
|
8
|
+
},
|
|
9
|
+
"loginScreen": {
|
|
10
|
+
"title": "Welcome to the Raclette Workspace",
|
|
11
|
+
"eMail": "Email",
|
|
12
|
+
"password": "Password",
|
|
13
|
+
"login": "Login"
|
|
14
|
+
},
|
|
15
|
+
"welcomeScreen": {
|
|
16
|
+
"title": "Welcome to the Raclette Workspace!",
|
|
17
|
+
"whatIsWhat": "What is what?",
|
|
18
|
+
"compositionInfo": "Create compositions to define the layout of your pages or modals",
|
|
19
|
+
"interactionLinkInfo": "Create InteractionLinks to define how users can access pages or modals",
|
|
20
|
+
"userInfo": "Create users so they can use your app and get some cheese!",
|
|
21
|
+
"tagInfo": "Create tags to... well... tag things!",
|
|
22
|
+
"pluginInfo": "Check out your installed plugins, add configurations, or just enjoy the view of the table",
|
|
23
|
+
"wizard": {
|
|
24
|
+
"title": "Welcome to your",
|
|
25
|
+
"setupTitle": "Let’s set up your application",
|
|
26
|
+
"projectTitle_title": "What should your application be called?",
|
|
27
|
+
"projectTitle_description": "Don’t worry, you can change this anytime later",
|
|
28
|
+
"adminUser": "Register your admin user",
|
|
29
|
+
"yourFirstName": "Your First Name",
|
|
30
|
+
"yourLastName": "Your Last Name",
|
|
31
|
+
"email_title": "Enter your email address",
|
|
32
|
+
"email_description": "This email won’t be verified and is only used for login",
|
|
33
|
+
"password": "Enter your secure password",
|
|
34
|
+
"thatsIt": "That’s it!",
|
|
35
|
+
"submitText": "Once you click \"Submit\", we’ll create your application",
|
|
36
|
+
"loginWithAccount": "You will be logged in with the newly created admin user",
|
|
37
|
+
"submit": "Submit",
|
|
38
|
+
"continue": "Continue"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"baseDataTable": {
|
|
42
|
+
"searchPlaceholder": "Search {dataName}",
|
|
43
|
+
"createDataButton": "Create {dataName}",
|
|
44
|
+
"deleteDataTitle": "Delete {dataName}",
|
|
45
|
+
"deleteDataConfirmMessage": "Are you sure you want to delete {article} {dataName} <strong>{value}</strong>?",
|
|
46
|
+
"deleteDataConfirmButton": "Delete",
|
|
47
|
+
"deleteDataConfirmCancel": "Cancel"
|
|
48
|
+
},
|
|
49
|
+
"compositionList": {
|
|
50
|
+
"dataName": "Composition",
|
|
51
|
+
"dataArticle": "the",
|
|
52
|
+
"tableHeaders": {
|
|
53
|
+
"title": "Title",
|
|
54
|
+
"status": "Status",
|
|
55
|
+
"tags": "Tags",
|
|
56
|
+
"lastEditor": "Last Editor",
|
|
57
|
+
"author": "Author",
|
|
58
|
+
"updatedAt": "Last Modified"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"compositionCreate": {
|
|
62
|
+
"title": "New Composition"
|
|
63
|
+
},
|
|
64
|
+
"compositionEdit": {
|
|
65
|
+
"title": "Edit Composition"
|
|
66
|
+
},
|
|
67
|
+
"compositionConfiguration": {
|
|
68
|
+
"steps": {
|
|
69
|
+
"configuration": {
|
|
70
|
+
"title": "Configuration",
|
|
71
|
+
"subtitle": "Set basic settings"
|
|
72
|
+
},
|
|
73
|
+
"widgetLayout": {
|
|
74
|
+
"title": "Widget Layout",
|
|
75
|
+
"subtitle": "Configure page content"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"divider": {
|
|
79
|
+
"general": "General",
|
|
80
|
+
"navigation": "Navigation"
|
|
81
|
+
},
|
|
82
|
+
"title": {
|
|
83
|
+
"title": "Title",
|
|
84
|
+
"description": "This field is only used for internal identification of the composition and is not displayed in the product."
|
|
85
|
+
},
|
|
86
|
+
"description": {
|
|
87
|
+
"title": "Description",
|
|
88
|
+
"description": "This field is only used for internal description of the composition and is not displayed in the product."
|
|
89
|
+
},
|
|
90
|
+
"tags": {
|
|
91
|
+
"title": "Tags",
|
|
92
|
+
"description": "This field is only used for internal categorization of the composition and is not displayed in the product."
|
|
93
|
+
},
|
|
94
|
+
"pathname": {
|
|
95
|
+
"title": "Pathname",
|
|
96
|
+
"description": "Describes the technical title used as a URL path, query parameter, or other reference. Must not contain spaces."
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"interactionLinkList": {
|
|
100
|
+
"dataName": "InteractionLink",
|
|
101
|
+
"dataArticle": "the",
|
|
102
|
+
"tableHeaders": {
|
|
103
|
+
"composition": "Composition",
|
|
104
|
+
"tags": "Tags",
|
|
105
|
+
"lastEditor": "Last Editor",
|
|
106
|
+
"slotType": "Slot Type",
|
|
107
|
+
"triggers": "Triggers",
|
|
108
|
+
"author": "Author",
|
|
109
|
+
"updatedAt": "Last Modified"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"interactionLinkCreate": {
|
|
113
|
+
"title": "Create Interaction Link"
|
|
114
|
+
},
|
|
115
|
+
"interactionLinkEdit": {
|
|
116
|
+
"title": "Edit Interaction Link"
|
|
117
|
+
},
|
|
118
|
+
"interactionLinkConfiguration": {
|
|
119
|
+
"dividers": {
|
|
120
|
+
"general": "General",
|
|
121
|
+
"behavior": "Behavior"
|
|
122
|
+
},
|
|
123
|
+
"isLandingPage": {
|
|
124
|
+
"title": "Landing Page",
|
|
125
|
+
"description": "Used as a landing page"
|
|
126
|
+
},
|
|
127
|
+
"composition": {
|
|
128
|
+
"title": "Composition",
|
|
129
|
+
"description": "The linked composition"
|
|
130
|
+
},
|
|
131
|
+
"description": {
|
|
132
|
+
"title": "Description",
|
|
133
|
+
"description": "This field is only used for internal description of the composition and is not displayed in the product."
|
|
134
|
+
},
|
|
135
|
+
"tags": {
|
|
136
|
+
"title": "Tags",
|
|
137
|
+
"description": "This field is only used for internal categorization of the composition and is not displayed in the product."
|
|
138
|
+
},
|
|
139
|
+
"slotType": {
|
|
140
|
+
"title": "Slot Type",
|
|
141
|
+
"description": "How should the linked composition be displayed?"
|
|
142
|
+
},
|
|
143
|
+
"triggers": {
|
|
144
|
+
"title": "Triggers",
|
|
145
|
+
"description": "How is the InteractionLink triggered?"
|
|
146
|
+
},
|
|
147
|
+
"queryParameters": {
|
|
148
|
+
"title": "Query Parameters",
|
|
149
|
+
"description": "Which query parameters are available?"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"userList": {
|
|
153
|
+
"dataName": "User",
|
|
154
|
+
"dataArticle": "the",
|
|
155
|
+
"tableHeaders": {
|
|
156
|
+
"email": "Email",
|
|
157
|
+
"lastname": "Last Name",
|
|
158
|
+
"firstname": "First Name",
|
|
159
|
+
"tags": "Tags",
|
|
160
|
+
"updatedAt": "Last Modified"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"userCreate": {
|
|
164
|
+
"title": "Create User"
|
|
165
|
+
},
|
|
166
|
+
"userEdit": {
|
|
167
|
+
"title": "Edit User"
|
|
168
|
+
},
|
|
169
|
+
"userConfiguration": {
|
|
170
|
+
"dividers": {
|
|
171
|
+
"general": "General"
|
|
172
|
+
},
|
|
173
|
+
"email": {
|
|
174
|
+
"title": "Email Address",
|
|
175
|
+
"description": "Used for login."
|
|
176
|
+
},
|
|
177
|
+
"password": {
|
|
178
|
+
"title": "Password"
|
|
179
|
+
},
|
|
180
|
+
"lastname": {
|
|
181
|
+
"title": "Last Name"
|
|
182
|
+
},
|
|
183
|
+
"firstname": {
|
|
184
|
+
"title": "First Name"
|
|
185
|
+
},
|
|
186
|
+
"tags": {
|
|
187
|
+
"title": "Tags",
|
|
188
|
+
"description": "This field is only used for internal categorization of the composition and is not displayed in the product."
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"tagList": {
|
|
192
|
+
"dataName": "Tag",
|
|
193
|
+
"dataArticle": "the",
|
|
194
|
+
"tableHeaders": {
|
|
195
|
+
"title": "Title",
|
|
196
|
+
"type": "Type",
|
|
197
|
+
"tags": "Tags",
|
|
198
|
+
"updatedAt": "Last Modified"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"tagCreate": {
|
|
202
|
+
"title": "Create Tag"
|
|
203
|
+
},
|
|
204
|
+
"tagEdit": {
|
|
205
|
+
"title": "Edit Tag"
|
|
206
|
+
},
|
|
207
|
+
"tagConfiguration": {
|
|
208
|
+
"dividers": {
|
|
209
|
+
"general": "General"
|
|
210
|
+
},
|
|
211
|
+
"title": {
|
|
212
|
+
"title": "Title"
|
|
213
|
+
},
|
|
214
|
+
"color": {
|
|
215
|
+
"title": "Color"
|
|
216
|
+
},
|
|
217
|
+
"type": {
|
|
218
|
+
"title": "Type",
|
|
219
|
+
"description": "The type of the tag."
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"dynamicInputs": {
|
|
223
|
+
"triggers": {
|
|
224
|
+
"triggerTypeLabel": "Trigger Type",
|
|
225
|
+
"titleLabel": "Title",
|
|
226
|
+
"sortOrderLabel": "Sort Order",
|
|
227
|
+
"navigationBarTypeLabel": "Navigation Bar Type",
|
|
228
|
+
"newTriggerLabel": "New Trigger"
|
|
229
|
+
},
|
|
230
|
+
"user": {
|
|
231
|
+
"label": "User",
|
|
232
|
+
"placeholder": "Select User"
|
|
233
|
+
},
|
|
234
|
+
"validation": {
|
|
235
|
+
"required": "{field} is required",
|
|
236
|
+
"minLength": "{field} must be at least {minLength} characters long",
|
|
237
|
+
"maxLength": "{field} must be no more than {maxLength} characters long",
|
|
238
|
+
"invalidFormat": "{field} format is invalid",
|
|
239
|
+
"defaultValueRequired": "At least one default value is required.",
|
|
240
|
+
"invalidEmail": "Please enter a valid email address",
|
|
241
|
+
"invalidUrl": "Please enter a valid URL"
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
package/i18n/sk-SK.json
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workbench": {
|
|
3
|
+
"global": {
|
|
4
|
+
"back": "Späť",
|
|
5
|
+
"save": "Uložiť",
|
|
6
|
+
"next_step": "Ďalší krok",
|
|
7
|
+
"save_finish": "Uložiť a dokončiť"
|
|
8
|
+
},
|
|
9
|
+
"loginScreen": {
|
|
10
|
+
"title": "Vitajte v Raclette Workspace",
|
|
11
|
+
"eMail": "Email",
|
|
12
|
+
"password": "Heslo",
|
|
13
|
+
"login": "Prihlásiť sa"
|
|
14
|
+
},
|
|
15
|
+
"welcomeScreen": {
|
|
16
|
+
"title": "Vitajte v Raclette Workspace!",
|
|
17
|
+
"whatIsWhat": "Čo je čo?",
|
|
18
|
+
"compositionInfo": "Vytvorte kompozície na definovanie rozloženia vašich stránok alebo modálov",
|
|
19
|
+
"interactionLinkInfo": "Vytvorte InteractionLinks na definovanie, ako môžu používatelia pristupovať k stránkam alebo modálom",
|
|
20
|
+
"userInfo": "Vytvorte používateľov, aby mohli používať vašu aplikáciu a získať trochu syra!",
|
|
21
|
+
"tagInfo": "Vytvorte značky na... no... označovanie vecí!",
|
|
22
|
+
"pluginInfo": "Skontrolujte nainštalované pluginy, pridajte konfigurácie alebo si len vychutnajte pohľad na tabuľku",
|
|
23
|
+
"wizard": {
|
|
24
|
+
"title": "Vitajte vo vašej",
|
|
25
|
+
"setupTitle": "Poďme nastaviť vašu aplikáciu",
|
|
26
|
+
"projectTitle_title": "Ako by sa mala volať vaša aplikácia?",
|
|
27
|
+
"projectTitle_description": "Nebojte sa, môžete to neskôr kedykoľvek zmeniť",
|
|
28
|
+
"adminUser": "Zaregistrujte svojho administrátora",
|
|
29
|
+
"yourFirstName": "Vaše meno",
|
|
30
|
+
"yourLastName": "Vaše priezvisko",
|
|
31
|
+
"email_title": "Zadajte vašu emailovú adresu",
|
|
32
|
+
"email_description": "Tento email nebude overený a slúži iba na prihlásenie",
|
|
33
|
+
"password": "Zadajte svoje bezpečné heslo",
|
|
34
|
+
"thatsIt": "To je všetko!",
|
|
35
|
+
"submitText": "Po kliknutí na \"Odoslať\" vytvoríme vašu aplikáciu",
|
|
36
|
+
"loginWithAccount": "Budete prihlásený ako novo vytvorený administrátor",
|
|
37
|
+
"submit": "Odoslať",
|
|
38
|
+
"continue": "Pokračovať"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"baseDataTable": {
|
|
42
|
+
"searchPlaceholder": "Hľadať {dataName}",
|
|
43
|
+
"createDataButton": "Vytvoriť {dataName}",
|
|
44
|
+
"deleteDataTitle": "Odstrániť {dataName}",
|
|
45
|
+
"deleteDataConfirmMessage": "Naozaj chcete odstrániť {article} {dataName} <strong>{value}</strong>?",
|
|
46
|
+
"deleteDataConfirmButton": "Odstrániť",
|
|
47
|
+
"deleteDataConfirmCancel": "Zrušiť"
|
|
48
|
+
},
|
|
49
|
+
"compositionList": {
|
|
50
|
+
"dataName": "Kompozícia",
|
|
51
|
+
"dataArticle": "",
|
|
52
|
+
"tableHeaders": {
|
|
53
|
+
"title": "Názov",
|
|
54
|
+
"status": "Stav",
|
|
55
|
+
"tags": "Značky",
|
|
56
|
+
"lastEditor": "Posledný editor",
|
|
57
|
+
"author": "Autor",
|
|
58
|
+
"updatedAt": "Naposledy upravené"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"compositionCreate": {
|
|
62
|
+
"title": "Nová kompozícia"
|
|
63
|
+
},
|
|
64
|
+
"compositionEdit": {
|
|
65
|
+
"title": "Upraviť kompozíciu"
|
|
66
|
+
},
|
|
67
|
+
"compositionConfiguration": {
|
|
68
|
+
"steps": {
|
|
69
|
+
"configuration": {
|
|
70
|
+
"title": "Konfigurácia",
|
|
71
|
+
"subtitle": "Nastavte základné nastavenia"
|
|
72
|
+
},
|
|
73
|
+
"widgetLayout": {
|
|
74
|
+
"title": "Rozloženie widgetov",
|
|
75
|
+
"subtitle": "Nakonfigurujte obsah stránky"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"divider": {
|
|
79
|
+
"general": "Všeobecné",
|
|
80
|
+
"navigation": "Navigácia"
|
|
81
|
+
},
|
|
82
|
+
"title": {
|
|
83
|
+
"title": "Názov",
|
|
84
|
+
"description": "Toto pole slúži len na internú identifikáciu kompozície a nezobrazuje sa v produkte."
|
|
85
|
+
},
|
|
86
|
+
"description": {
|
|
87
|
+
"title": "Popis",
|
|
88
|
+
"description": "Toto pole slúži len na interný popis kompozície a nezobrazuje sa v produkte."
|
|
89
|
+
},
|
|
90
|
+
"tags": {
|
|
91
|
+
"title": "Značky",
|
|
92
|
+
"description": "Toto pole slúži len na internú kategorizáciu kompozície a nezobrazuje sa v produkte."
|
|
93
|
+
},
|
|
94
|
+
"pathname": {
|
|
95
|
+
"title": "Cesta (Pathname)",
|
|
96
|
+
"description": "Popisuje technický názov používaný ako URL cesta, parameter dotazu alebo iný odkaz. Nesmie obsahovať medzery."
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"interactionLinkList": {
|
|
100
|
+
"dataName": "InteractionLink",
|
|
101
|
+
"dataArticle": "",
|
|
102
|
+
"tableHeaders": {
|
|
103
|
+
"composition": "Kompozícia",
|
|
104
|
+
"tags": "Značky",
|
|
105
|
+
"lastEditor": "Posledný editor",
|
|
106
|
+
"slotType": "Typ slotu",
|
|
107
|
+
"triggers": "Spúšťače",
|
|
108
|
+
"author": "Autor",
|
|
109
|
+
"updatedAt": "Naposledy upravené"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"interactionLinkCreate": {
|
|
113
|
+
"title": "Vytvoriť Interaction Link"
|
|
114
|
+
},
|
|
115
|
+
"interactionLinkEdit": {
|
|
116
|
+
"title": "Upraviť Interaction Link"
|
|
117
|
+
},
|
|
118
|
+
"interactionLinkConfiguration": {
|
|
119
|
+
"dividers": {
|
|
120
|
+
"general": "Všeobecné",
|
|
121
|
+
"behavior": "Správanie"
|
|
122
|
+
},
|
|
123
|
+
"isLandingPage": {
|
|
124
|
+
"title": "Vstupná stránka",
|
|
125
|
+
"description": "Používané ako vstupná stránka"
|
|
126
|
+
},
|
|
127
|
+
"composition": {
|
|
128
|
+
"title": "Kompozícia",
|
|
129
|
+
"description": "Prepojená kompozícia"
|
|
130
|
+
},
|
|
131
|
+
"description": {
|
|
132
|
+
"title": "Popis",
|
|
133
|
+
"description": "Toto pole slúži len na interný popis kompozície a nezobrazuje sa v produkte."
|
|
134
|
+
},
|
|
135
|
+
"tags": {
|
|
136
|
+
"title": "Značky",
|
|
137
|
+
"description": "Toto pole slúži len na internú kategorizáciu kompozície a nezobrazuje sa v produkte."
|
|
138
|
+
},
|
|
139
|
+
"slotType": {
|
|
140
|
+
"title": "Typ slotu",
|
|
141
|
+
"description": "Ako by sa mala zobraziť prepojená kompozícia?"
|
|
142
|
+
},
|
|
143
|
+
"triggers": {
|
|
144
|
+
"title": "Spúšťače",
|
|
145
|
+
"description": "Ako sa InteractionLink spúšťa?"
|
|
146
|
+
},
|
|
147
|
+
"queryParameters": {
|
|
148
|
+
"title": "Parametre dotazu",
|
|
149
|
+
"description": "Ktoré parametre dotazu sú dostupné?"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"userList": {
|
|
153
|
+
"dataName": "Používateľ",
|
|
154
|
+
"dataArticle": "",
|
|
155
|
+
"tableHeaders": {
|
|
156
|
+
"email": "Email",
|
|
157
|
+
"lastname": "Priezvisko",
|
|
158
|
+
"firstname": "Meno",
|
|
159
|
+
"tags": "Značky",
|
|
160
|
+
"updatedAt": "Naposledy upravené"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"userCreate": {
|
|
164
|
+
"title": "Vytvoriť používateľa"
|
|
165
|
+
},
|
|
166
|
+
"userEdit": {
|
|
167
|
+
"title": "Upraviť používateľa"
|
|
168
|
+
},
|
|
169
|
+
"userConfiguration": {
|
|
170
|
+
"dividers": {
|
|
171
|
+
"general": "Všeobecné"
|
|
172
|
+
},
|
|
173
|
+
"email": {
|
|
174
|
+
"title": "Emailová adresa",
|
|
175
|
+
"description": "Používa sa na prihlásenie."
|
|
176
|
+
},
|
|
177
|
+
"password": {
|
|
178
|
+
"title": "Heslo"
|
|
179
|
+
},
|
|
180
|
+
"lastname": {
|
|
181
|
+
"title": "Priezvisko"
|
|
182
|
+
},
|
|
183
|
+
"firstname": {
|
|
184
|
+
"title": "Meno"
|
|
185
|
+
},
|
|
186
|
+
"tags": {
|
|
187
|
+
"title": "Značky",
|
|
188
|
+
"description": "Toto pole slúži len na internú kategorizáciu kompozície a nezobrazuje sa v produkte."
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"tagList": {
|
|
192
|
+
"dataName": "Značka",
|
|
193
|
+
"dataArticle": "",
|
|
194
|
+
"tableHeaders": {
|
|
195
|
+
"title": "Názov",
|
|
196
|
+
"type": "Typ",
|
|
197
|
+
"tags": "Značky",
|
|
198
|
+
"updatedAt": "Naposledy upravené"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"tagCreate": {
|
|
202
|
+
"title": "Vytvoriť značku"
|
|
203
|
+
},
|
|
204
|
+
"tagEdit": {
|
|
205
|
+
"title": "Upraviť značku"
|
|
206
|
+
},
|
|
207
|
+
"tagConfiguration": {
|
|
208
|
+
"dividers": {
|
|
209
|
+
"general": "Všeobecné"
|
|
210
|
+
},
|
|
211
|
+
"title": {
|
|
212
|
+
"title": "Názov"
|
|
213
|
+
},
|
|
214
|
+
"color": {
|
|
215
|
+
"title": "Farba"
|
|
216
|
+
},
|
|
217
|
+
"type": {
|
|
218
|
+
"title": "Typ",
|
|
219
|
+
"description": "Typ značky."
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"dynamicInputs": {
|
|
223
|
+
"triggers": {
|
|
224
|
+
"triggerTypeLabel": "Typ spúšťača",
|
|
225
|
+
"titleLabel": "Názov",
|
|
226
|
+
"sortOrderLabel": "Poradie",
|
|
227
|
+
"navigationBarTypeLabel": "Typ navigačného panela",
|
|
228
|
+
"newTriggerLabel": "Nový spúšťač"
|
|
229
|
+
},
|
|
230
|
+
"user": {
|
|
231
|
+
"label": "Používateľ",
|
|
232
|
+
"placeholder": "Vyberte používateľa"
|
|
233
|
+
},
|
|
234
|
+
"validation": {
|
|
235
|
+
"required": "{field} je povinné",
|
|
236
|
+
"minLength": "{field} musí mať aspoň {minLength} znakov",
|
|
237
|
+
"maxLength": "{field} môže mať najviac {maxLength} znakov",
|
|
238
|
+
"invalidFormat": "Formát poľa {field} je neplatný",
|
|
239
|
+
"defaultValueRequired": "Vyžaduje sa aspoň jedna predvolená hodnota.",
|
|
240
|
+
"invalidEmail": "Zadajte platnú emailovú adresu",
|
|
241
|
+
"invalidUrl": "Zadajte platnú URL adresu"
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@raclettejs/workbench",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "AGPL-3.0-only",
|
|
5
|
+
"description": "racletteJS Workbench - used to configure your application, for dev and prod",
|
|
6
|
+
"author": "Pacifico Digital Explorations GmbH",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"dev": "raclette dev",
|
|
10
|
+
"down": "raclette down",
|
|
11
|
+
"build": "raclette build",
|
|
12
|
+
"update": "raclette update",
|
|
13
|
+
"restart": "raclette restart",
|
|
14
|
+
"add-package": "raclette add-package",
|
|
15
|
+
"lint": "eslint",
|
|
16
|
+
"lint:fix": "eslint --fix"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"services",
|
|
20
|
+
"i18n",
|
|
21
|
+
"workbench",
|
|
22
|
+
"plugins",
|
|
23
|
+
"config",
|
|
24
|
+
"README.md",
|
|
25
|
+
"yarn.lock",
|
|
26
|
+
"raclette.config.js",
|
|
27
|
+
"packages.json"
|
|
28
|
+
],
|
|
29
|
+
"exports": {
|
|
30
|
+
".": "./index.ts"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@raclettejs/core": "^0.0.1"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@eslint/js": "^9.31.0",
|
|
37
|
+
"@raclettejs/types": "^0.0.1",
|
|
38
|
+
"@sinclair/typebox": "^0.34.37",
|
|
39
|
+
"@types/ramda": "^0.30.2",
|
|
40
|
+
"@vueuse/core": "^13.5.0",
|
|
41
|
+
"@vueuse/rxjs": "^13.5.0",
|
|
42
|
+
"axios": "^1.10.0",
|
|
43
|
+
"date-fns": "^4.1.0",
|
|
44
|
+
"eslint": "^9.31.0",
|
|
45
|
+
"eslint-config-prettier": "^10.1.5",
|
|
46
|
+
"eslint-plugin-import": "^2.32.0",
|
|
47
|
+
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
|
|
48
|
+
"eslint-plugin-prettier": "^5.5.1",
|
|
49
|
+
"eslint-plugin-vue": "^10.3.0",
|
|
50
|
+
"fastify": "^5.4.0",
|
|
51
|
+
"globals": "^16.3.0",
|
|
52
|
+
"prettier": "^3.6.2",
|
|
53
|
+
"ramda": "^0.31.3",
|
|
54
|
+
"typescript": "^5.8.3",
|
|
55
|
+
"typescript-eslint": "^8.36.0",
|
|
56
|
+
"uuid": "^11.1.0",
|
|
57
|
+
"vite": "^7.0.4",
|
|
58
|
+
"vue": "^3.5.17",
|
|
59
|
+
"vue-eslint-parser": "^10.2.0",
|
|
60
|
+
"vue-i18n": "^11.1.9",
|
|
61
|
+
"vuetify": "3.9.0"
|
|
62
|
+
}
|
|
63
|
+
}
|
package/packages.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"frontend": {
|
|
3
|
+
"dependencies": {
|
|
4
|
+
"apexcharts": "4.7.0",
|
|
5
|
+
"vue3-apexcharts": "1.8.0",
|
|
6
|
+
"@marp-team/marp-core": "4.0.1",
|
|
7
|
+
"@marp-team/marpit": "3.1.2",
|
|
8
|
+
"@milkdown/crepe": "7.10.3",
|
|
9
|
+
"@milkdown/vue": "7.10.3",
|
|
10
|
+
"@milkdown/kit": "7.10.3",
|
|
11
|
+
"@milkdown/theme-nord": "7.10.3",
|
|
12
|
+
"@milkdown/preset-commonmark": "7.10.3",
|
|
13
|
+
"@milkdown/plugin-history": "7.10.3",
|
|
14
|
+
"@milkdown/plugin-listener": "7.10.3",
|
|
15
|
+
"@vueuse/core": "13.0.0",
|
|
16
|
+
"ansi-to-html": "0.7.2",
|
|
17
|
+
"@vue-leaflet/vue-leaflet": "^0.10.1",
|
|
18
|
+
"konva": "^9.3.20",
|
|
19
|
+
"leaflet": "^1.9.4",
|
|
20
|
+
"vue-konva": "^3.2.0",
|
|
21
|
+
"vue-command": "35.2.1",
|
|
22
|
+
"three": "0.179.1",
|
|
23
|
+
"vanta": "0.5.24"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {}
|
|
26
|
+
},
|
|
27
|
+
"backend": {
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"uuid": "11.1.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {}
|
|
32
|
+
}
|
|
33
|
+
}
|