@vcmap/ui 6.0.0-rc.2 → 6.0.0-rc.3

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.
Files changed (178) hide show
  1. package/build/build.js +40 -60
  2. package/build/buildHelpers.js +2 -8
  3. package/build/info/conf.json +1 -1
  4. package/config/projects.config.json +2 -1
  5. package/config/splashscreen.config.json +45 -0
  6. package/dist/.htaccess +7 -0
  7. package/dist/assets/@mdi/font/README.md +25 -0
  8. package/dist/assets/@mdi/font/css/materialdesignicons.min-7a4f6be0.css +3 -0
  9. package/dist/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
  10. package/dist/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
  11. package/dist/assets/cesium.js +1 -1
  12. package/dist/assets/{core.cbf44a.js → core-72f21835.js} +673 -641
  13. package/dist/assets/core.js +1 -1
  14. package/dist/assets/{ol.86e93c.js → ol-2d33bc8b.js} +42505 -44282
  15. package/dist/assets/ol.js +1 -1
  16. package/dist/assets/ui-2ab43a16.css +1 -0
  17. package/dist/assets/{ui.7c276c.js → ui-2ab43a16.js} +12026 -12100
  18. package/dist/assets/ui.js +1 -1
  19. package/dist/assets/vue.js +1 -1
  20. package/dist/assets/{vuetify.4d18fe.css → vuetify-760ced3b.css} +1 -1
  21. package/dist/assets/{vuetify.4d18fe.js → vuetify-760ced3b.js} +5720 -5662
  22. package/dist/assets/vuetify.js +1 -1
  23. package/dist/index.html +11 -10
  24. package/index.d.ts +7 -5
  25. package/index.html +5 -5
  26. package/index.js +3 -3
  27. package/lib/olLib.js +84 -23
  28. package/package.json +5 -5
  29. package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +41 -1
  30. package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +70 -30
  31. package/plugins/@vcmap-show-case/form-inputs-example/src/exampleActions.js +7 -11
  32. package/plugins/@vcmap-show-case/form-inputs-example/src/index.js +2 -2
  33. package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +21 -8
  34. package/plugins/@vcmap-show-case/style-input-example/src/StyleExample.vue +29 -90
  35. package/public/assets/@mdi/font/README.md +25 -0
  36. package/public/assets/@mdi/font/css/materialdesignicons.min.css +2 -2
  37. package/public/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
  38. package/public/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
  39. package/src/actions/actionHelper.js +20 -20
  40. package/src/actions/flightActions.js +5 -5
  41. package/src/actions/listActions.d.ts +0 -7
  42. package/src/actions/listActions.js +4 -20
  43. package/src/actions/stateRefAction.js +2 -2
  44. package/src/application/VcsApp.vue +52 -27
  45. package/src/application/VcsApp.vue.d.ts +1 -0
  46. package/src/application/VcsAttributions.vue +2 -13
  47. package/src/application/VcsAttributionsFooter.vue +10 -11
  48. package/src/application/VcsPositionDisplay.vue +8 -23
  49. package/src/application/VcsPositionDisplay.vue.d.ts +0 -1
  50. package/src/application/VcsSettings.vue +10 -17
  51. package/src/application/VcsSplashScreen.vue +25 -42
  52. package/src/application/VcsSplashScreen.vue.d.ts +0 -2
  53. package/src/application/VcsTextPage.vue +12 -43
  54. package/src/application/VcsTextPage.vue.d.ts +4 -8
  55. package/src/application/VcsTextPageFooter.vue +22 -40
  56. package/src/components/extent/VcsExtentEditor.vue +1 -1
  57. package/src/components/flight/VcsFlightAnchorsComponent.vue +63 -36
  58. package/src/components/flight/VcsFlightComponent.vue +16 -21
  59. package/src/components/flight/VcsFlightPlayer.vue +27 -5
  60. package/src/components/form-inputs-controls/VcsCheckbox.vue +9 -5
  61. package/src/components/form-inputs-controls/VcsCoordinate.vue +13 -1
  62. package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +5 -2
  63. package/src/components/form-inputs-controls/VcsDatePicker.vue +34 -60
  64. package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +1 -63
  65. package/src/components/form-inputs-controls/VcsFileInput.vue +17 -18
  66. package/src/components/form-inputs-controls/VcsFileInput.vue.d.ts +1 -0
  67. package/src/components/form-inputs-controls/VcsLabel.vue +1 -1
  68. package/src/components/form-inputs-controls/VcsRadio.vue +17 -3
  69. package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +1 -0
  70. package/src/components/form-inputs-controls/VcsSelect.vue +39 -27
  71. package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +5 -2
  72. package/src/components/form-inputs-controls/VcsSlider.vue +14 -1
  73. package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +5 -2
  74. package/src/components/form-inputs-controls/VcsTextArea.vue +26 -22
  75. package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +1 -0
  76. package/src/components/form-inputs-controls/VcsTextField.vue +6 -4
  77. package/src/components/form-inputs-controls/VcsWizardStep.vue +1 -1
  78. package/src/components/form-inputs-controls/vcsTextField.scss +8 -8
  79. package/src/components/form-output/VcsFormattedNumber.vue +15 -1
  80. package/src/components/form-output/VcsFormattedNumber.vue.d.ts +9 -0
  81. package/src/components/lists/VcsActionList.vue +7 -7
  82. package/src/components/lists/VcsList.vue +10 -17
  83. package/src/components/lists/VcsList.vue.d.ts +3 -7
  84. package/src/components/lists/VcsListItem.vue +51 -21
  85. package/src/components/lists/VcsListItem.vue.d.ts +11 -5
  86. package/src/components/section/VcsExpansionPanel.vue +101 -0
  87. package/src/components/section/VcsExpansionPanel.vue.d.ts +19 -0
  88. package/src/components/style/MenuWrapper.vue +24 -26
  89. package/src/components/style/MenuWrapper.vue.d.ts +4 -4
  90. package/src/components/style/VcsFillMenu.vue +9 -16
  91. package/src/components/style/VcsFillMenu.vue.d.ts +0 -18
  92. package/src/components/style/VcsFillSelector.vue +13 -16
  93. package/src/components/style/VcsImageMenu.vue +8 -25
  94. package/src/components/style/VcsImageMenu.vue.d.ts +0 -27
  95. package/src/components/style/VcsImageSelector.vue +102 -167
  96. package/src/components/style/VcsImageSelector.vue.d.ts +15 -15
  97. package/src/components/style/VcsStrokeMenu.vue +8 -15
  98. package/src/components/style/VcsStrokeMenu.vue.d.ts +0 -18
  99. package/src/components/style/VcsStrokeSelector.vue +11 -18
  100. package/src/components/style/VcsTextMenu.vue +9 -12
  101. package/src/components/style/VcsTextMenu.vue.d.ts +0 -9
  102. package/src/components/style/VcsTextSelector.vue +79 -95
  103. package/src/components/style/VcsTextSelector.vue.d.ts +20 -22
  104. package/src/components/style/VcsVectorStyleComponent.vue +7 -18
  105. package/src/components/style/VcsVectorStyleComponent.vue.d.ts +1 -1
  106. package/src/components/style/composables.d.ts +0 -14
  107. package/src/components/style/composables.js +0 -49
  108. package/src/components/vector-properties/VcsFeatureEditingWindow.vue +39 -6
  109. package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +1 -1
  110. package/src/components/viewpoint/VcsViewpointComponent.vue +21 -8
  111. package/src/components/viewpoint/VcsViewpointEditor.vue +1 -0
  112. package/src/contentTree/contentTreeItem.d.ts +2 -2
  113. package/src/contentTree/contentTreeItem.js +7 -7
  114. package/src/featureInfo/featureInfo.js +8 -10
  115. package/src/init.d.ts +5 -38
  116. package/src/init.js +19 -18
  117. package/src/legend/StyleLegendItem.vue +4 -9
  118. package/src/legend/VcsLegend.vue +28 -54
  119. package/src/manager/buttonManager.js +4 -4
  120. package/src/manager/collectionManager/CollectionComponent.vue +17 -42
  121. package/src/manager/collectionManager/CollectionComponent.vue.d.ts +4 -2
  122. package/src/manager/collectionManager/CollectionComponentContent.vue +7 -6
  123. package/src/manager/collectionManager/CollectionComponentContent.vue.d.ts +3 -1
  124. package/src/manager/collectionManager/CollectionComponentList.vue +10 -8
  125. package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +4 -2
  126. package/src/manager/collectionManager/CollectionComponentProvider.vue +1 -1
  127. package/src/manager/collectionManager/CollectionComponentStandalone.vue +3 -2
  128. package/src/manager/collectionManager/CollectionManager.vue +1 -1
  129. package/src/manager/collectionManager/collectionComponentClass.js +6 -9
  130. package/src/manager/collectionManager/collectionManager.js +10 -10
  131. package/src/manager/collectionManager/editorCollectionComponentClass.js +4 -4
  132. package/src/manager/contextMenu/contextMenuManager.js +2 -2
  133. package/src/manager/navbarManager.js +2 -2
  134. package/src/manager/panel/panelManager.js +3 -3
  135. package/src/manager/toolbox/toolboxManager.js +10 -10
  136. package/src/manager/window/windowManager.d.ts +2 -2
  137. package/src/manager/window/windowManager.js +4 -4
  138. package/src/search/search.js +2 -2
  139. package/src/siteConfig.js +1 -1
  140. package/src/state.js +4 -4
  141. package/src/vcsUiApp.d.ts +14 -10
  142. package/src/vcsUiApp.js +1 -1
  143. package/src/vuePlugins/vuetify.d.ts +2 -0
  144. package/src/vuePlugins/vuetify.js +11 -0
  145. package/dist/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
  146. package/dist/assets/@mdi/font/css/materialdesignicons.min.e3f476.css +0 -3
  147. package/dist/assets/index-8eGauqjA.js +0 -1
  148. package/dist/assets/ui.7c276c.css +0 -1
  149. package/public/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
  150. package/src/application/VcsCustomScreen.vue +0 -45
  151. package/src/application/VcsCustomScreen.vue.d.ts +0 -15
  152. /package/dist/assets/{cesium.0b750d.js → cesium-cb4dbfba.js} +0 -0
  153. /package/dist/assets/{favicon-128.4c4ce5.png → favicon-128-4c4ce5df.png} +0 -0
  154. /package/dist/assets/{favicon-180.5b99c0.png → favicon-180-4c4ce5df.png} +0 -0
  155. /package/dist/assets/{favicon-192.0e205e.png → favicon-192-4c4ce5df.png} +0 -0
  156. /package/dist/assets/{favicon-32.6b9add.png → favicon-32-4c4ce5df.png} +0 -0
  157. /package/dist/assets/{favicon.d5ec97.svg → favicon-4c4ce5df.svg} +0 -0
  158. /package/dist/assets/font/{TitilliumWeb-Regular.9ca076.woff2 → TitilliumWeb-Regular-9ca076be.woff2} +0 -0
  159. /package/dist/assets/style/{icon-marker.70960f.png → icon-marker-70960f05.png} +0 -0
  160. /package/dist/assets/style/{icon-marker-blue.534e37.png → icon-marker-blue-534e374b.png} +0 -0
  161. /package/dist/assets/style/{icon-marker-green.0b6a92.png → icon-marker-green-0b6a92bc.png} +0 -0
  162. /package/dist/assets/style/{icon-marker-o.036477.png → icon-marker-o-036477fa.png} +0 -0
  163. /package/dist/assets/style/{icon-marker-o-blue.7b6d62.png → icon-marker-o-blue-7b6d6279.png} +0 -0
  164. /package/dist/assets/style/{icon-marker-o-green.c863c0.png → icon-marker-o-green-c863c0fa.png} +0 -0
  165. /package/dist/assets/style/{icon-marker-o-red.93ff58.png → icon-marker-o-red-93ff58df.png} +0 -0
  166. /package/dist/assets/style/{icon-marker-red.313d03.png → icon-marker-red-313d03e8.png} +0 -0
  167. /package/dist/assets/style/{icon-pin.b7ce77.png → icon-pin-b7ce771e.png} +0 -0
  168. /package/dist/assets/style/{icon-pin-blue.7be369.png → icon-pin-blue-7be369a3.png} +0 -0
  169. /package/dist/assets/style/{icon-pin-green.cbb935.png → icon-pin-green-cbb935fe.png} +0 -0
  170. /package/dist/assets/style/{icon-pin-red.3f25b2.png → icon-pin-red-3f25b245.png} +0 -0
  171. /package/dist/assets/{vue.a3cd64.js → vue-03b265aa.js} +0 -0
  172. /package/public/assets/{favicon-128.png → favicon-128-4c4ce5df.png} +0 -0
  173. /package/public/assets/{favicon-180.png → favicon-180-4c4ce5df.png} +0 -0
  174. /package/public/assets/{favicon-192.png → favicon-192-4c4ce5df.png} +0 -0
  175. /package/public/assets/{favicon-32.png → favicon-32-4c4ce5df.png} +0 -0
  176. /package/public/assets/{favicon.svg → favicon-4c4ce5df.svg} +0 -0
  177. /package/src/components/{form-inputs-controls → section}/VcsFormSection.vue +0 -0
  178. /package/src/components/{form-inputs-controls → section}/VcsFormSection.vue.d.ts +0 -0
package/build/build.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import path from 'path';
2
2
  import fs from 'fs';
3
+ import { readFile, writeFile } from 'node:fs/promises';
3
4
  import { build } from 'vite';
4
5
  import { v4 as uuid } from 'uuid';
5
6
 
@@ -13,7 +14,6 @@ import {
13
14
  getFileMd5,
14
15
  getFilesInDirectory,
15
16
  libraries,
16
- writeRewrittenFile,
17
17
  } from './buildHelpers.js';
18
18
 
19
19
  /**
@@ -97,8 +97,8 @@ function hashLibraries() {
97
97
  throw new Error(`Trying to build unexported library ${key}`);
98
98
  }
99
99
  value.lib = libraries[key];
100
- value.hash = `${uuid().substring(0, 6)}`;
101
- libraryPaths[key] = `./${value.lib}.${value.hash}.js`;
100
+ value.hash = `${uuid().substring(0, 8)}`;
101
+ libraryPaths[key] = `./${value.lib}-${value.hash}.js`;
102
102
  value.rollupOptions = value.rollupOptions ? value.rollupOptions : {};
103
103
  });
104
104
 
@@ -121,11 +121,13 @@ const { libraryBuildOptions, libraryPaths } = hashLibraries();
121
121
  console.log('Building ol dump file');
122
122
  await generateOLLib();
123
123
 
124
+ const distFolder = path.join(process.cwd(), 'dist');
125
+ const assetsFolder = path.join(distFolder, 'assets');
126
+
124
127
  /** Cleaning/recreating Dist Folder */
125
- if (await fs.existsSync(path.join(process.cwd(), 'dist'))) {
126
- await fs.promises.rm(path.join(process.cwd(), 'dist'), { recursive: true });
128
+ if (await fs.existsSync(distFolder)) {
129
+ await fs.promises.rm(distFolder, { recursive: true });
127
130
  }
128
- const assetsFolder = path.join(process.cwd(), 'dist', 'assets');
129
131
  await fs.promises.mkdir(assetsFolder, { recursive: true });
130
132
 
131
133
  /**
@@ -141,6 +143,8 @@ const fileTypesToHash = ['.png', '.css', '.svg', '.woff2'];
141
143
  * we exclude the materialDesignIcons font because we do not want to also rewrite the materialDesignIcons.css file.
142
144
  * The .woff2 is loaded with the materialDesignIcons Version number as a query parameter. So this also makes sure,
143
145
  * that the browser can cache the file.
146
+ *
147
+ * we also exclude favicons from hashing, to just use the index.html as is.
144
148
  */
145
149
  const filesToExclude = [
146
150
  path.join(
@@ -150,6 +154,11 @@ const filesToExclude = [
150
154
  'fonts',
151
155
  'materialdesignicons-webfont.woff2',
152
156
  ),
157
+ path.join('assets', 'favicon-4c4ce5df.svg'),
158
+ path.join('assets', 'favicon-32-4c4ce5df.png'),
159
+ path.join('assets', 'favicon-128-4c4ce5df.png'),
160
+ path.join('assets', 'favicon-180-4c4ce5df.png'),
161
+ path.join('assets', 'favicon-192-4c4ce5df.png'),
153
162
  ];
154
163
  const hashedPublicFiles = new Map();
155
164
  const filesToCopy = new Map();
@@ -165,7 +174,7 @@ for await (const filePath of getFilesInDirectory(publicAssetsFolder)) {
165
174
  const fileHash = await getFileMd5(filePath);
166
175
  const hashedFileUrl = path.posix.join(
167
176
  ...path.dirname(relativePathInDist).split(path.sep),
168
- `${path.basename(filePath, fileType)}.${fileHash.slice(0, 6)}${fileType}`,
177
+ `${path.basename(filePath, fileType)}-${fileHash.slice(0, 8)}${fileType}`,
169
178
  );
170
179
  hashedPublicFiles.set(
171
180
  path.posix.join(...relativePath.split(path.sep)),
@@ -174,9 +183,9 @@ for await (const filePath of getFilesInDirectory(publicAssetsFolder)) {
174
183
  const newFilePath = path.join(
175
184
  assetsFolder,
176
185
  path.dirname(relativePathInDist),
177
- `${path.basename(relativePath, fileType)}.${fileHash.slice(
186
+ `${path.basename(relativePath, fileType)}-${fileHash.slice(
178
187
  0,
179
- 6,
188
+ 8,
180
189
  )}${fileType}`,
181
190
  );
182
191
  filesToCopy.set(filePath, newFilePath);
@@ -191,57 +200,28 @@ for await (const [originalFilePath, newFilePath] of filesToCopy) {
191
200
  }
192
201
 
193
202
  console.log('Building app');
194
- const buildoutput = await build({
195
- configFile: './build/commonViteConfig.js',
196
- base: './',
197
- define: {
198
- 'process.env.NODE_ENV': '"production"',
199
- },
200
- build: {
201
- write: false,
202
- modulePreload: false,
203
- emptyOutDir: true,
204
- rollupOptions: {
205
- external: Object.keys(libraries),
206
- output: {
207
- paths: libraryPaths,
208
- },
209
- },
210
- },
211
- });
212
-
213
- /**
214
- * Building the Main entrypoint (index.html + index.js)
215
- * This will ensure that all references to public assets will be rewritten to the hashed filename
216
- */
217
- await Promise.all(
218
- buildoutput.output?.map((output) => {
219
- if (output.type === 'asset') {
220
- const { source, fileName } = output;
221
- // remove loading of materialdesignicons from index.html, we will later inject this in the ui.js
222
- const fileContent = source.replace(
223
- /<link[^>]*href=".*materialdesignicons\.min\.css"[^>]*(>[^<]*<\/link>|\/>)/,
224
- '',
225
- );
226
- return writeRewrittenFile(
227
- path.join(process.cwd(), 'dist', fileName),
228
- fileContent,
229
- hashedPublicFiles,
230
- 'assets',
231
- );
232
- }
233
- if (output.type === 'chunk') {
234
- const { code, fileName } = output;
235
- return writeRewrittenFile(
236
- path.join(process.cwd(), 'dist', fileName),
237
- code,
238
- hashedPublicFiles,
239
- 'assets',
240
- );
241
- }
242
- return undefined;
243
- }),
203
+ let indexHTMLContent = await readFile('./index.html', { encoding: 'utf8' });
204
+ // remove mdi icons link, will be later loaded from the ui.js
205
+ indexHTMLContent = indexHTMLContent.replace(
206
+ /<link[^>]*href=".*materialdesignicons\.min\.css"[^>]*>/,
207
+ '',
244
208
  );
209
+ // replace @vcmap/ui with './assets/ui.js'
210
+ indexHTMLContent = indexHTMLContent.replace(/@vcmap\/ui/, './assets/ui.js');
211
+ await writeFile(path.join(distFolder, 'index.html'), indexHTMLContent, {
212
+ encoding: 'utf8',
213
+ });
214
+ const htaccessContent = `
215
+ <FilesMatch "-[\\w\\d]{8}\\.(js|css)$">
216
+ Header set Cache-Control "public, max-age=31540000, immutable"
217
+ </FilesMatch>
218
+ <FilesMatch "(index\\.html|config\\.json|ui\\.js|vue\\.js|vuetify\\.js|ol\\.js|cesium\\.js|core\\.js)$">
219
+ Header set Cache-Control "no-store, max-age=0"
220
+ </FilesMatch>
221
+ `;
222
+ await writeFile(path.join(distFolder, '.htaccess'), htaccessContent, {
223
+ encoding: 'utf8',
224
+ });
245
225
 
246
226
  /**
247
227
  * Building the Libraries, (vue, vuetify, openlayers, cesium, core, and ui). This will build one hashed library.hash.js
@@ -271,7 +251,7 @@ await Promise.all(
271
251
  lib: {
272
252
  entry: path.resolve(process.cwd(), value.entry),
273
253
  formats: ['es'],
274
- fileName: `${value.lib}.${value.hash}`,
254
+ fileName: `${value.lib}-${value.hash}`,
275
255
  },
276
256
  rollupOptions: {
277
257
  ...value.rollupOptions,
@@ -159,18 +159,12 @@ export async function buildLibrary(
159
159
  base64Css = false,
160
160
  rewrittenPublicAssets = undefined,
161
161
  ) {
162
- // Base64 contains the characters '+', '/', and '=', which have a reserved meaning in URLs.
163
- // Base64url solves this by replacing '+' with '-' and '/' with '_'.
164
- // See https://stackoverflow.com/a/55389212
165
162
  const cssInjectorCode = `
166
163
  function loadCss(href) {
167
- const base64url = href
168
- .replace(/-/g, '+')
169
- .replace(/_/g, '/');
170
164
  return new Promise((resolve, reject) => {
171
165
  const elem = document.createElement('link');
172
166
  elem.rel = 'stylesheet';
173
- elem.href = base64url;
167
+ elem.href = href;
174
168
  elem.defer = false;
175
169
  elem.async = false;
176
170
  elem.onload = resolve;
@@ -180,7 +174,7 @@ function loadCss(href) {
180
174
  }`;
181
175
 
182
176
  const write = async (output) => {
183
- const addedHash = hash ? `.${hash}` : '';
177
+ const addedHash = hash ? `-${hash}` : '';
184
178
  let css = false;
185
179
  if (output[1] && output[1].type === 'asset') {
186
180
  if (base64Css) {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "source": {
10
10
  "includePattern": "\\.js$",
11
- "exclude": ["dist"]
11
+ "exclude": ["dist", "node_modules/ol/node_modules"]
12
12
  },
13
13
  "plugins": [
14
14
  "jsdoc-plugin-intersection",
@@ -22,7 +22,8 @@
22
22
  "modules": [
23
23
  "config/dev.config.json",
24
24
  "config/codes.config.json",
25
- "config/graphFeatureInfo.config.json"
25
+ "config/graphFeatureInfo.config.json",
26
+ "config/splashscreen.config.json"
26
27
  ]
27
28
  }
28
29
  ]
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "SplashScreen Examples",
3
+ "uiConfig": [
4
+ {
5
+ "name": "splashScreen",
6
+ "value": {
7
+ "name": "MyCustomScreen.name",
8
+ "title": "MyCustomScreen.tooltip",
9
+ "icon": "mdi-information-slab-circle-outline",
10
+ "content": "![image](https://vc.systems/wp-content/uploads/2020/07/vcs_logo.png)\nSplash Screen Template\n-------------------\nErste Schritte\n-------------------\n\nDies ist ein <em> Beispieltext</em>, der Ihnen den Einstieg erleichtern soll. **Marked** wird verwendet, um Ihren Text <u>von Markdown nach HTML</u> zu konvertieren. Um mehr über die <u><em>korrekte Syntax</em></u>zu erfahren, besuchen Sie bitte diesen [Link](https://marked.js.org/demo/) für eine Demo. \n\nWie man Listen hinzufügt\n\n1. Punkt 1 einer Aufzählung\n2. Punkt 2 einer Aufzählung.\n\nWenn Sie Aufzählungen nicht mögen, wie wäre es mit Aufzählungspunkten? \n- Punkt 1: einer Liste mit Aufzählungspunkten. \n- Punkt 2: einer Aufzählungsliste.",
11
+ "acceptInput": true,
12
+ "menuEntry": false,
13
+ "checkBoxText": "components.splashScreen.checkBoxText",
14
+ "buttonTitle": "components.splashScreen.buttonTitle",
15
+ "position": {
16
+ "width": "800px",
17
+ "height": "500px",
18
+ "maxWidth": "800px",
19
+ "maxHeight": "500px"
20
+ }
21
+ },
22
+ "properties": {
23
+ "title": "appConfigurator.editors.uiConfig.splashScreen"
24
+ }
25
+ },
26
+ {
27
+ "name": "customScreen",
28
+ "value": {
29
+ "content": "![image](https://vc.systems/wp-content/uploads/2020/07/vcs_logo.png)\n\n<br/>Projekt: \n--------\n\nErste Schritte\n\nZusammenfassung:\n--------\nDies ist ein <em> Beispieltext</em>, der Ihnen den Einstieg erleichtern soll. **Marked** wird verwendet, um Ihren Text <u>von Markdown nach HTML</u> zu konvertieren. Um mehr über die <u><em>korrekte Syntax</em></u>zu erfahren, besuchen Sie bitte diesen [Link](https://marked.js.org/demo/) für eine Demo. \n \nInhalt:\n-------\nLorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.\n \nDuis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\n \nHow to add lists:\n-----------------\n\n<br/>1. Enumeration, lorem ipsum dolor sit amet.\n2. Enumeration, lorem ipsum dolor sit amet.\n\n\n- Punkt 1: einer Liste mit Aufzählungspunkten.\n- Punkt 2: einer Liste mit Aufzählungspunkten.\n\n<br/>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.",
30
+ "icon": "mdi-information",
31
+ "name": "MyCustomScreen.name",
32
+ "title": "MyCustomScreen.tooltip",
33
+ "windowPosition": {
34
+ "left": "30%",
35
+ "right": "30%",
36
+ "top": "10%",
37
+ "bottom": "20%"
38
+ }
39
+ },
40
+ "properties": {
41
+ "title": "appConfigurator.editors.uiConfig.customScreen"
42
+ }
43
+ }
44
+ ]
45
+ }
package/dist/.htaccess ADDED
@@ -0,0 +1,7 @@
1
+
2
+ <FilesMatch "-[\w\d]{8}\.(js|css)$">
3
+ Header set Cache-Control "public, max-age=31540000, immutable"
4
+ </FilesMatch>
5
+ <FilesMatch "(index\.html|config\.json|ui\.js|vue\.js|vuetify\.js|ol\.js|cesium\.js|core\.js)$">
6
+ Header set Cache-Control "no-store, max-age=0"
7
+ </FilesMatch>
@@ -0,0 +1,25 @@
1
+ > *Note:* Please use the main [MaterialDesign](https://github.com/Templarian/MaterialDesign/issues) repo to report issues. This repo is for distribution of the Webfont files only.
2
+
3
+ # Webfont - Material Design Icons
4
+
5
+ Webfont distribution for the [Material Design Icons](https://materialdesignicons.com).
6
+
7
+ ```
8
+ npm install @mdi/font
9
+ ```
10
+
11
+ > Package built with [@mdi/font-build](https://github.com/Templarian/MaterialDesign-Font-Build).
12
+
13
+ ## Related Packages
14
+
15
+ [NPM @MDI Organization](https://npmjs.com/org/mdi)
16
+
17
+ - JavaScript/Typescript: [MaterialDesign-JS](https://github.com/Templarian/MaterialDesign-JS)
18
+ - SVG: [MaterialDesign-SVG](https://github.com/Templarian/MaterialDesign-SVG)
19
+ - Font-Build [MaterialDesign-Font-Build](https://github.com/Templarian/MaterialDesign-Font-Build)
20
+ - Desktop Font: [MaterialDesign-Font](https://github.com/Templarian/MaterialDesign-Font)
21
+
22
+ ## Learn More
23
+
24
+ - [MaterialDesignIcons.com](https://materialdesignicons.com)
25
+ - https://github.com/Templarian/MaterialDesign