@plone/volto 15.0.0 → 15.1.2
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/CHANGELOG.md +29 -0
- package/README.md +8 -5
- package/addon-registry.js +3 -1
- package/dist/assets.json +1 -1
- package/dist/chunks.json +22 -22
- package/dist/loadable-stats.json +56 -56
- package/dist/public/static/css/{client.7ff60f09.chunk.css → client.8417f0bd.chunk.css} +1 -1
- package/dist/public/static/css/{plone-volto-components-manage-Widgets-DatetimeWidget.77a7ad0d.chunk.css → plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.css} +1 -1
- package/dist/public/static/js/client.8417f0bd.chunk.js +2 -0
- package/dist/public/static/js/{plone-volto-components-manage-Widgets-DatetimeWidget.77a7ad0d.chunk.js → plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js} +2 -2
- package/dist/public/static/js/{plone-volto-components-theme-View-EventView.c500936a.chunk.js → plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js} +2 -2
- package/dist/public/static/js/{react-select.43f17559.chunk.js → react-select.6ac1d612.chunk.js} +2 -2
- package/dist/public/static/js/{runtime~client.c5015e27.js → runtime~client.5ca655c6.js} +2 -2
- package/dist/server.js +1 -1
- package/package.json +1 -1
- package/razzle.config.js +2 -1
- package/src/components/index.js +2 -0
- package/src/components/manage/Blocks/Listing/SummaryTemplate.jsx +2 -11
- package/src/components/theme/PreviewImage/PreviewImage.jsx +30 -0
- package/src/components/theme/PreviewImage/PreviewImage.test.js +89 -0
- package/src/config/Components.jsx +5 -0
- package/src/config/index.js +2 -0
- package/src/reducers/querystringsearch/querystringsearch.js +2 -0
- package/dist/public/static/js/client.7ff60f09.chunk.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.1.2 (2022-03-17)
|
|
4
|
+
|
|
5
|
+
### Bugfix
|
|
6
|
+
|
|
7
|
+
- Fix the alt prop in `PreviewImage` component @sneridagh
|
|
8
|
+
|
|
9
|
+
## 15.1.1 (2022-03-16)
|
|
10
|
+
|
|
11
|
+
### Bugfix
|
|
12
|
+
|
|
13
|
+
- Add optional alt tag to `PreviewImage` props @kindermann
|
|
14
|
+
- Remove non add-on names from `addonNames` list in Addons Registry. Update the list in the `addonsInfo` for the addons loader as well. @sneridagh
|
|
15
|
+
|
|
16
|
+
## 15.1.0 (2022-03-15)
|
|
17
|
+
|
|
18
|
+
### Feature
|
|
19
|
+
|
|
20
|
+
- Added a new component, PreviewImage. It renders a preview image for a catalog brain (based on the `image_field` prop). @tiberiuichim
|
|
21
|
+
|
|
22
|
+
### Bugfix
|
|
23
|
+
|
|
24
|
+
- Clear search results before new query is done. @robgietema
|
|
25
|
+
|
|
26
|
+
### Documentation
|
|
27
|
+
|
|
28
|
+
- Updated README.md @ktsrivastava29
|
|
29
|
+
- Added language to codeblocks in md files @ktsrivastava29
|
|
30
|
+
- Replaced `docs.voltocms.com` with MyST references. @stevepiercy
|
|
31
|
+
|
|
3
32
|
## 15.0.0 (2022-03-14)
|
|
4
33
|
|
|
5
34
|
### Breaking
|
package/README.md
CHANGED
|
@@ -63,12 +63,15 @@ Create a new Volto project by using the `@plone/generator-volto` utility.
|
|
|
63
63
|
It will bootstrap a Volto project in a folder of your choice with all the required
|
|
64
64
|
boilerplate to start customizing your Volto site.
|
|
65
65
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
```
|
|
67
|
+
npm install -g yo @plone/generator-volto
|
|
68
|
+
yo @plone/volto
|
|
69
|
+
```
|
|
69
70
|
follow the prompts questions, provide `myvoltoproject` as project name then, when it finishes:
|
|
70
71
|
|
|
71
|
-
|
|
72
|
+
```
|
|
73
|
+
cd myvoltoproject
|
|
74
|
+
```
|
|
72
75
|
|
|
73
76
|
### Bootstrap the Plone API backend
|
|
74
77
|
|
|
@@ -372,7 +375,7 @@ This directory is hot reloaded with your changes as you write the tests. For mor
|
|
|
372
375
|
|
|
373
376
|
## Translations
|
|
374
377
|
|
|
375
|
-
If you would like contribute to translate Volto into several languages, please, read the [Internationalization (i18n) guide](https://docs.
|
|
378
|
+
If you would like contribute to translate Volto into several languages, please, read the [Internationalization (i18n) guide](https://6.dev-docs.plone.org/volto/recipes/i18n.html).
|
|
376
379
|
|
|
377
380
|
## Contributors
|
|
378
381
|
|
package/addon-registry.js
CHANGED
|
@@ -157,7 +157,6 @@ class AddonConfigurationRegistry {
|
|
|
157
157
|
const pathsConfig = jsConfig.paths;
|
|
158
158
|
|
|
159
159
|
Object.keys(pathsConfig).forEach((name) => {
|
|
160
|
-
if (!this.addonNames.includes(name)) this.addonNames.push(name);
|
|
161
160
|
const packagePath = `${this.projectRootPath}/${jsConfig.baseUrl}/${pathsConfig[name][0]}`;
|
|
162
161
|
const packageJsonPath = `${getPackageBasePath(
|
|
163
162
|
packagePath,
|
|
@@ -167,6 +166,7 @@ class AddonConfigurationRegistry {
|
|
|
167
166
|
packageJson: packageJsonPath,
|
|
168
167
|
version: require(packageJsonPath).version,
|
|
169
168
|
isPublishedPackage: false,
|
|
169
|
+
isRegisteredAddon: this.addonNames.includes(name),
|
|
170
170
|
name,
|
|
171
171
|
addons: require(packageJsonPath).addons || [],
|
|
172
172
|
};
|
|
@@ -199,6 +199,7 @@ class AddonConfigurationRegistry {
|
|
|
199
199
|
name,
|
|
200
200
|
version: pkg.version,
|
|
201
201
|
isPublishedPackage: true,
|
|
202
|
+
isRegisteredAddon: this.addonNames.includes(name),
|
|
202
203
|
modulePath,
|
|
203
204
|
packageJson,
|
|
204
205
|
addons: pkg.addons || [],
|
|
@@ -229,6 +230,7 @@ class AddonConfigurationRegistry {
|
|
|
229
230
|
version: require(packageJson).version,
|
|
230
231
|
packageJson: packageJson,
|
|
231
232
|
isPublishedPackage: false,
|
|
233
|
+
isRegisteredAddon: this.addonNames.includes(name),
|
|
232
234
|
name: normalizedAddonName,
|
|
233
235
|
addons: require(packageJson).addons || [],
|
|
234
236
|
};
|
package/dist/assets.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"react-select":{"js":"/static/js/react-select.
|
|
1
|
+
{"react-select":{"js":"/static/js/react-select.6ac1d612.chunk.js"},"moment":{"js":"/static/js/moment.dfd83abb.chunk.js"},"client":{"css":"/static/css/client.8417f0bd.chunk.css","js":"/static/js/client.8417f0bd.chunk.js"},"draft-js-lib-isSoftNewlineEvent":{"js":"/static/js/draft-js-lib-isSoftNewlineEvent.ad4b1307.chunk.js"},"plone-volto-components-manage-Widgets-DatetimeWidget":{"css":"/static/css/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.css","js":"/static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js"},"plone-volto-components-theme-View-EventView":{"js":"/static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js"},"react-dates":{"js":"/static/js/react-dates.d94a34ee.chunk.js"},"react-simple-code-editor":{"js":"/static/js/react-simple-code-editor.484ec69f.chunk.js"},"runtime~client":{"js":"/static/js/runtime~client.5ca655c6.js"},"":{"json":"/../chunks.json","png":["/android-chrome-192x192.png","/android-chrome-512x512.png","/apple-touch-icon.png","/favicon-16x16.png","/favicon-32x32.png","/static/media/flags.9c74e172.png"],"ico":"/favicon.ico","svg":["/icon.svg","/static/media/Logo.16e25cdf.svg","/static/media/block-image.8a4a14d5.svg","/static/media/block-maps.731e84f6.svg","/static/media/block-video.832fa3ff.svg","/static/media/default-image.9451b251.svg","/static/media/icons.022583c4.svg"],"spa":"/index.html.spa","txt":["/robots.txt","/static/js/1.fece2b93.chunk.js.LICENSE.txt","/static/js/14.803b450c.chunk.js.LICENSE.txt","/static/js/15.c1eb25b4.chunk.js.LICENSE.txt","/static/js/19.61ef8815.chunk.js.LICENSE.txt","/static/js/34.aec37d56.chunk.js.LICENSE.txt","/static/js/35.73887e02.chunk.js.LICENSE.txt","/static/js/36.19d2e05a.chunk.js.LICENSE.txt","/static/js/37.96925a5f.chunk.js.LICENSE.txt"],"webmanifest":"/site.webmanifest","css":["/static/css/14.803b450c.chunk.css","/static/css/3.a3490306.chunk.css"],"js":["/static/js/0.3e794c57.chunk.js","/static/js/1.fece2b93.chunk.js","/static/js/14.803b450c.chunk.js","/static/js/15.c1eb25b4.chunk.js","/static/js/16.70e24cba.chunk.js","/static/js/17.f03d2a82.chunk.js","/static/js/18.0f0b1dfa.chunk.js","/static/js/19.61ef8815.chunk.js","/static/js/20.6b37f925.chunk.js","/static/js/21.8704b265.chunk.js","/static/js/22.5a2b56ff.chunk.js","/static/js/23.a53c8d7b.chunk.js","/static/js/24.d44c620a.chunk.js","/static/js/25.455376b6.chunk.js","/static/js/26.a821045d.chunk.js","/static/js/27.efbb318a.chunk.js","/static/js/28.b4840d60.chunk.js","/static/js/29.690d4b54.chunk.js","/static/js/3.a3490306.chunk.js","/static/js/30.5f174f94.chunk.js","/static/js/31.4a7cf109.chunk.js","/static/js/32.2247dcf7.chunk.js","/static/js/33.87874f33.chunk.js","/static/js/34.aec37d56.chunk.js","/static/js/35.73887e02.chunk.js","/static/js/36.19d2e05a.chunk.js","/static/js/37.96925a5f.chunk.js","/static/js/38.701a2e85.chunk.js","/static/js/39.4cbf0549.chunk.js","/static/js/4.bdc4a5c5.chunk.js","/static/js/6.69ba4792.chunk.js"],"ttf":"/static/media/icons.06400145.ttf","eot":"/static/media/icons.dbc1ef8b.eot","woff":"/static/media/icons.df45b7de.woff"}}
|
package/dist/chunks.json
CHANGED
|
@@ -263,8 +263,8 @@
|
|
|
263
263
|
"js": [
|
|
264
264
|
"/static/js/3.a3490306.chunk.js",
|
|
265
265
|
"/static/js/3.a3490306.chunk.js.map",
|
|
266
|
-
"/static/js/react-select.
|
|
267
|
-
"/static/js/react-select.
|
|
266
|
+
"/static/js/react-select.6ac1d612.chunk.js",
|
|
267
|
+
"/static/js/react-select.6ac1d612.chunk.js.map"
|
|
268
268
|
],
|
|
269
269
|
"chunks": [
|
|
270
270
|
3,
|
|
@@ -278,8 +278,8 @@
|
|
|
278
278
|
"js": [
|
|
279
279
|
"/static/js/3.a3490306.chunk.js",
|
|
280
280
|
"/static/js/3.a3490306.chunk.js.map",
|
|
281
|
-
"/static/js/react-select.
|
|
282
|
-
"/static/js/react-select.
|
|
281
|
+
"/static/js/react-select.6ac1d612.chunk.js",
|
|
282
|
+
"/static/js/react-select.6ac1d612.chunk.js.map"
|
|
283
283
|
],
|
|
284
284
|
"chunks": [
|
|
285
285
|
3,
|
|
@@ -293,8 +293,8 @@
|
|
|
293
293
|
"js": [
|
|
294
294
|
"/static/js/3.a3490306.chunk.js",
|
|
295
295
|
"/static/js/3.a3490306.chunk.js.map",
|
|
296
|
-
"/static/js/react-select.
|
|
297
|
-
"/static/js/react-select.
|
|
296
|
+
"/static/js/react-select.6ac1d612.chunk.js",
|
|
297
|
+
"/static/js/react-select.6ac1d612.chunk.js.map"
|
|
298
298
|
],
|
|
299
299
|
"chunks": [
|
|
300
300
|
3,
|
|
@@ -308,8 +308,8 @@
|
|
|
308
308
|
"js": [
|
|
309
309
|
"/static/js/3.a3490306.chunk.js",
|
|
310
310
|
"/static/js/3.a3490306.chunk.js.map",
|
|
311
|
-
"/static/js/react-select.
|
|
312
|
-
"/static/js/react-select.
|
|
311
|
+
"/static/js/react-select.6ac1d612.chunk.js",
|
|
312
|
+
"/static/js/react-select.6ac1d612.chunk.js.map"
|
|
313
313
|
],
|
|
314
314
|
"chunks": [
|
|
315
315
|
3,
|
|
@@ -323,8 +323,8 @@
|
|
|
323
323
|
"js": [
|
|
324
324
|
"/static/js/3.a3490306.chunk.js",
|
|
325
325
|
"/static/js/3.a3490306.chunk.js.map",
|
|
326
|
-
"/static/js/react-select.
|
|
327
|
-
"/static/js/react-select.
|
|
326
|
+
"/static/js/react-select.6ac1d612.chunk.js",
|
|
327
|
+
"/static/js/react-select.6ac1d612.chunk.js.map"
|
|
328
328
|
],
|
|
329
329
|
"chunks": [
|
|
330
330
|
3,
|
|
@@ -338,8 +338,8 @@
|
|
|
338
338
|
"js": [
|
|
339
339
|
"/static/js/3.a3490306.chunk.js",
|
|
340
340
|
"/static/js/3.a3490306.chunk.js.map",
|
|
341
|
-
"/static/js/react-select.
|
|
342
|
-
"/static/js/react-select.
|
|
341
|
+
"/static/js/react-select.6ac1d612.chunk.js",
|
|
342
|
+
"/static/js/react-select.6ac1d612.chunk.js.map"
|
|
343
343
|
],
|
|
344
344
|
"chunks": [
|
|
345
345
|
3,
|
|
@@ -400,15 +400,15 @@
|
|
|
400
400
|
"client": {
|
|
401
401
|
"css": [
|
|
402
402
|
"/static/css/14.803b450c.chunk.css",
|
|
403
|
-
"/static/css/client.
|
|
403
|
+
"/static/css/client.8417f0bd.chunk.css"
|
|
404
404
|
],
|
|
405
405
|
"js": [
|
|
406
|
-
"/static/js/runtime~client.
|
|
407
|
-
"/static/js/runtime~client.
|
|
406
|
+
"/static/js/runtime~client.5ca655c6.js",
|
|
407
|
+
"/static/js/runtime~client.5ca655c6.js.map",
|
|
408
408
|
"/static/js/14.803b450c.chunk.js",
|
|
409
409
|
"/static/js/14.803b450c.chunk.js.map",
|
|
410
|
-
"/static/js/client.
|
|
411
|
-
"/static/js/client.
|
|
410
|
+
"/static/js/client.8417f0bd.chunk.js",
|
|
411
|
+
"/static/js/client.8417f0bd.chunk.js.map"
|
|
412
412
|
],
|
|
413
413
|
"chunks": [
|
|
414
414
|
13,
|
|
@@ -428,11 +428,11 @@
|
|
|
428
428
|
},
|
|
429
429
|
"plone-volto-components-manage-Widgets-DatetimeWidget": {
|
|
430
430
|
"css": [
|
|
431
|
-
"/static/css/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
431
|
+
"/static/css/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.css"
|
|
432
432
|
],
|
|
433
433
|
"js": [
|
|
434
|
-
"/static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
435
|
-
"/static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
434
|
+
"/static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js",
|
|
435
|
+
"/static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js.map"
|
|
436
436
|
],
|
|
437
437
|
"chunks": [
|
|
438
438
|
9
|
|
@@ -441,8 +441,8 @@
|
|
|
441
441
|
"plone-volto-components-theme-View-EventView": {
|
|
442
442
|
"css": [],
|
|
443
443
|
"js": [
|
|
444
|
-
"/static/js/plone-volto-components-theme-View-EventView.
|
|
445
|
-
"/static/js/plone-volto-components-theme-View-EventView.
|
|
444
|
+
"/static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js",
|
|
445
|
+
"/static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js.map"
|
|
446
446
|
],
|
|
447
447
|
"chunks": [
|
|
448
448
|
10
|
package/dist/loadable-stats.json
CHANGED
|
@@ -2,35 +2,35 @@
|
|
|
2
2
|
"errors": [],
|
|
3
3
|
"warnings": [],
|
|
4
4
|
"version": "4.43.0",
|
|
5
|
-
"hash": "
|
|
5
|
+
"hash": "1d967711a2a58d0de609",
|
|
6
6
|
"publicPath": "/",
|
|
7
7
|
"outputPath": "/Users/sneridagh/Development/plone/volto/build/public",
|
|
8
8
|
"assetsByChunkName": {
|
|
9
9
|
"react-select": [
|
|
10
|
-
"static/js/react-select.
|
|
11
|
-
"static/js/react-select.
|
|
10
|
+
"static/js/react-select.6ac1d612.chunk.js",
|
|
11
|
+
"static/js/react-select.6ac1d612.chunk.js.map"
|
|
12
12
|
],
|
|
13
13
|
"moment": [
|
|
14
14
|
"static/js/moment.dfd83abb.chunk.js",
|
|
15
15
|
"static/js/moment.dfd83abb.chunk.js.map"
|
|
16
16
|
],
|
|
17
17
|
"client": [
|
|
18
|
-
"static/css/client.
|
|
19
|
-
"static/js/client.
|
|
20
|
-
"static/js/client.
|
|
18
|
+
"static/css/client.8417f0bd.chunk.css",
|
|
19
|
+
"static/js/client.8417f0bd.chunk.js",
|
|
20
|
+
"static/js/client.8417f0bd.chunk.js.map"
|
|
21
21
|
],
|
|
22
22
|
"draft-js-lib-isSoftNewlineEvent": [
|
|
23
23
|
"static/js/draft-js-lib-isSoftNewlineEvent.ad4b1307.chunk.js",
|
|
24
24
|
"static/js/draft-js-lib-isSoftNewlineEvent.ad4b1307.chunk.js.map"
|
|
25
25
|
],
|
|
26
26
|
"plone-volto-components-manage-Widgets-DatetimeWidget": [
|
|
27
|
-
"static/css/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
28
|
-
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
29
|
-
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
27
|
+
"static/css/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.css",
|
|
28
|
+
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js",
|
|
29
|
+
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js.map"
|
|
30
30
|
],
|
|
31
31
|
"plone-volto-components-theme-View-EventView": [
|
|
32
|
-
"static/js/plone-volto-components-theme-View-EventView.
|
|
33
|
-
"static/js/plone-volto-components-theme-View-EventView.
|
|
32
|
+
"static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js",
|
|
33
|
+
"static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js.map"
|
|
34
34
|
],
|
|
35
35
|
"react-dates": [
|
|
36
36
|
"static/js/react-dates.d94a34ee.chunk.js",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"static/js/react-simple-code-editor.484ec69f.chunk.js.map"
|
|
42
42
|
],
|
|
43
43
|
"runtime~client": [
|
|
44
|
-
"static/js/runtime~client.
|
|
45
|
-
"static/js/runtime~client.
|
|
44
|
+
"static/js/runtime~client.5ca655c6.js",
|
|
45
|
+
"static/js/runtime~client.5ca655c6.js.map"
|
|
46
46
|
]
|
|
47
47
|
},
|
|
48
48
|
"assets": [
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
"emitted": false
|
|
168
168
|
},
|
|
169
169
|
{
|
|
170
|
-
"name": "static/css/client.
|
|
170
|
+
"name": "static/css/client.8417f0bd.chunk.css",
|
|
171
171
|
"size": 127644,
|
|
172
172
|
"chunks": [
|
|
173
173
|
7
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
"emitted": false
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
|
-
"name": "static/css/client.
|
|
184
|
+
"name": "static/css/client.8417f0bd.chunk.css.map",
|
|
185
185
|
"size": 227501,
|
|
186
186
|
"chunks": [],
|
|
187
187
|
"chunkNames": [],
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"emitted": false
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
|
-
"name": "static/css/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
192
|
+
"name": "static/css/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.css",
|
|
193
193
|
"size": 2768,
|
|
194
194
|
"chunks": [
|
|
195
195
|
9
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"emitted": false
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
|
-
"name": "static/css/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
206
|
+
"name": "static/css/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.css.map",
|
|
207
207
|
"size": 4960,
|
|
208
208
|
"chunks": [],
|
|
209
209
|
"chunkNames": [],
|
|
@@ -1019,8 +1019,8 @@
|
|
|
1019
1019
|
"emitted": false
|
|
1020
1020
|
},
|
|
1021
1021
|
{
|
|
1022
|
-
"name": "static/js/client.
|
|
1023
|
-
"size":
|
|
1022
|
+
"name": "static/js/client.8417f0bd.chunk.js",
|
|
1023
|
+
"size": 889619,
|
|
1024
1024
|
"chunks": [
|
|
1025
1025
|
7
|
|
1026
1026
|
],
|
|
@@ -1033,8 +1033,8 @@
|
|
|
1033
1033
|
"emitted": false
|
|
1034
1034
|
},
|
|
1035
1035
|
{
|
|
1036
|
-
"name": "static/js/client.
|
|
1037
|
-
"size":
|
|
1036
|
+
"name": "static/js/client.8417f0bd.chunk.js.map",
|
|
1037
|
+
"size": 2328383,
|
|
1038
1038
|
"chunks": [
|
|
1039
1039
|
7
|
|
1040
1040
|
],
|
|
@@ -1105,7 +1105,7 @@
|
|
|
1105
1105
|
"emitted": false
|
|
1106
1106
|
},
|
|
1107
1107
|
{
|
|
1108
|
-
"name": "static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
1108
|
+
"name": "static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js",
|
|
1109
1109
|
"size": 5054,
|
|
1110
1110
|
"chunks": [
|
|
1111
1111
|
9
|
|
@@ -1119,7 +1119,7 @@
|
|
|
1119
1119
|
"emitted": false
|
|
1120
1120
|
},
|
|
1121
1121
|
{
|
|
1122
|
-
"name": "static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
1122
|
+
"name": "static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js.map",
|
|
1123
1123
|
"size": 12276,
|
|
1124
1124
|
"chunks": [
|
|
1125
1125
|
9
|
|
@@ -1133,7 +1133,7 @@
|
|
|
1133
1133
|
"emitted": false
|
|
1134
1134
|
},
|
|
1135
1135
|
{
|
|
1136
|
-
"name": "static/js/plone-volto-components-theme-View-EventView.
|
|
1136
|
+
"name": "static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js",
|
|
1137
1137
|
"size": 2201,
|
|
1138
1138
|
"chunks": [
|
|
1139
1139
|
10
|
|
@@ -1147,7 +1147,7 @@
|
|
|
1147
1147
|
"emitted": false
|
|
1148
1148
|
},
|
|
1149
1149
|
{
|
|
1150
|
-
"name": "static/js/plone-volto-components-theme-View-EventView.
|
|
1150
|
+
"name": "static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js.map",
|
|
1151
1151
|
"size": 4929,
|
|
1152
1152
|
"chunks": [
|
|
1153
1153
|
10
|
|
@@ -1191,7 +1191,7 @@
|
|
|
1191
1191
|
"emitted": false
|
|
1192
1192
|
},
|
|
1193
1193
|
{
|
|
1194
|
-
"name": "static/js/react-select.
|
|
1194
|
+
"name": "static/js/react-select.6ac1d612.chunk.js",
|
|
1195
1195
|
"size": 34641,
|
|
1196
1196
|
"chunks": [
|
|
1197
1197
|
2
|
|
@@ -1205,7 +1205,7 @@
|
|
|
1205
1205
|
"emitted": false
|
|
1206
1206
|
},
|
|
1207
1207
|
{
|
|
1208
|
-
"name": "static/js/react-select.
|
|
1208
|
+
"name": "static/js/react-select.6ac1d612.chunk.js.map",
|
|
1209
1209
|
"size": 104690,
|
|
1210
1210
|
"chunks": [
|
|
1211
1211
|
2
|
|
@@ -1247,7 +1247,7 @@
|
|
|
1247
1247
|
"emitted": false
|
|
1248
1248
|
},
|
|
1249
1249
|
{
|
|
1250
|
-
"name": "static/js/runtime~client.
|
|
1250
|
+
"name": "static/js/runtime~client.5ca655c6.js",
|
|
1251
1251
|
"size": 4671,
|
|
1252
1252
|
"chunks": [
|
|
1253
1253
|
13
|
|
@@ -1261,7 +1261,7 @@
|
|
|
1261
1261
|
"emitted": false
|
|
1262
1262
|
},
|
|
1263
1263
|
{
|
|
1264
|
-
"name": "static/js/runtime~client.
|
|
1264
|
+
"name": "static/js/runtime~client.5ca655c6.js.map",
|
|
1265
1265
|
"size": 18750,
|
|
1266
1266
|
"chunks": [
|
|
1267
1267
|
13
|
|
@@ -1364,14 +1364,14 @@
|
|
|
1364
1364
|
7
|
|
1365
1365
|
],
|
|
1366
1366
|
"assets": [
|
|
1367
|
-
"static/js/runtime~client.
|
|
1368
|
-
"static/js/runtime~client.
|
|
1367
|
+
"static/js/runtime~client.5ca655c6.js",
|
|
1368
|
+
"static/js/runtime~client.5ca655c6.js.map",
|
|
1369
1369
|
"static/css/14.803b450c.chunk.css",
|
|
1370
1370
|
"static/js/14.803b450c.chunk.js",
|
|
1371
1371
|
"static/js/14.803b450c.chunk.js.map",
|
|
1372
|
-
"static/css/client.
|
|
1373
|
-
"static/js/client.
|
|
1374
|
-
"static/js/client.
|
|
1372
|
+
"static/css/client.8417f0bd.chunk.css",
|
|
1373
|
+
"static/js/client.8417f0bd.chunk.js",
|
|
1374
|
+
"static/js/client.8417f0bd.chunk.js.map"
|
|
1375
1375
|
],
|
|
1376
1376
|
"children": {},
|
|
1377
1377
|
"childAssets": {}
|
|
@@ -1385,14 +1385,14 @@
|
|
|
1385
1385
|
7
|
|
1386
1386
|
],
|
|
1387
1387
|
"assets": [
|
|
1388
|
-
"static/js/runtime~client.
|
|
1389
|
-
"static/js/runtime~client.
|
|
1388
|
+
"static/js/runtime~client.5ca655c6.js",
|
|
1389
|
+
"static/js/runtime~client.5ca655c6.js.map",
|
|
1390
1390
|
"static/css/14.803b450c.chunk.css",
|
|
1391
1391
|
"static/js/14.803b450c.chunk.js",
|
|
1392
1392
|
"static/js/14.803b450c.chunk.js.map",
|
|
1393
|
-
"static/css/client.
|
|
1394
|
-
"static/js/client.
|
|
1395
|
-
"static/js/client.
|
|
1393
|
+
"static/css/client.8417f0bd.chunk.css",
|
|
1394
|
+
"static/js/client.8417f0bd.chunk.js",
|
|
1395
|
+
"static/js/client.8417f0bd.chunk.js.map"
|
|
1396
1396
|
],
|
|
1397
1397
|
"children": {},
|
|
1398
1398
|
"childAssets": {}
|
|
@@ -1402,9 +1402,9 @@
|
|
|
1402
1402
|
9
|
|
1403
1403
|
],
|
|
1404
1404
|
"assets": [
|
|
1405
|
-
"static/css/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
1406
|
-
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
1407
|
-
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.
|
|
1405
|
+
"static/css/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.css",
|
|
1406
|
+
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js",
|
|
1407
|
+
"static/js/plone-volto-components-manage-Widgets-DatetimeWidget.c6a47163.chunk.js.map"
|
|
1408
1408
|
],
|
|
1409
1409
|
"children": {},
|
|
1410
1410
|
"childAssets": {}
|
|
@@ -1418,8 +1418,8 @@
|
|
|
1418
1418
|
"static/css/3.a3490306.chunk.css",
|
|
1419
1419
|
"static/js/3.a3490306.chunk.js",
|
|
1420
1420
|
"static/js/3.a3490306.chunk.js.map",
|
|
1421
|
-
"static/js/react-select.
|
|
1422
|
-
"static/js/react-select.
|
|
1421
|
+
"static/js/react-select.6ac1d612.chunk.js",
|
|
1422
|
+
"static/js/react-select.6ac1d612.chunk.js.map"
|
|
1423
1423
|
],
|
|
1424
1424
|
"children": {},
|
|
1425
1425
|
"childAssets": {}
|
|
@@ -1429,8 +1429,8 @@
|
|
|
1429
1429
|
10
|
|
1430
1430
|
],
|
|
1431
1431
|
"assets": [
|
|
1432
|
-
"static/js/plone-volto-components-theme-View-EventView.
|
|
1433
|
-
"static/js/plone-volto-components-theme-View-EventView.
|
|
1432
|
+
"static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js",
|
|
1433
|
+
"static/js/plone-volto-components-theme-View-EventView.d0a7e38a.chunk.js.map"
|
|
1434
1434
|
],
|
|
1435
1435
|
"children": {},
|
|
1436
1436
|
"childAssets": {}
|
|
@@ -1530,8 +1530,8 @@
|
|
|
1530
1530
|
"static/css/3.a3490306.chunk.css",
|
|
1531
1531
|
"static/js/3.a3490306.chunk.js",
|
|
1532
1532
|
"static/js/3.a3490306.chunk.js.map",
|
|
1533
|
-
"static/js/react-select.
|
|
1534
|
-
"static/js/react-select.
|
|
1533
|
+
"static/js/react-select.6ac1d612.chunk.js",
|
|
1534
|
+
"static/js/react-select.6ac1d612.chunk.js.map"
|
|
1535
1535
|
],
|
|
1536
1536
|
"children": {},
|
|
1537
1537
|
"childAssets": {}
|
|
@@ -1567,8 +1567,8 @@
|
|
|
1567
1567
|
"static/css/3.a3490306.chunk.css",
|
|
1568
1568
|
"static/js/3.a3490306.chunk.js",
|
|
1569
1569
|
"static/js/3.a3490306.chunk.js.map",
|
|
1570
|
-
"static/js/react-select.
|
|
1571
|
-
"static/js/react-select.
|
|
1570
|
+
"static/js/react-select.6ac1d612.chunk.js",
|
|
1571
|
+
"static/js/react-select.6ac1d612.chunk.js.map"
|
|
1572
1572
|
],
|
|
1573
1573
|
"children": {},
|
|
1574
1574
|
"childAssets": {}
|
|
@@ -1582,8 +1582,8 @@
|
|
|
1582
1582
|
"static/css/3.a3490306.chunk.css",
|
|
1583
1583
|
"static/js/3.a3490306.chunk.js",
|
|
1584
1584
|
"static/js/3.a3490306.chunk.js.map",
|
|
1585
|
-
"static/js/react-select.
|
|
1586
|
-
"static/js/react-select.
|
|
1585
|
+
"static/js/react-select.6ac1d612.chunk.js",
|
|
1586
|
+
"static/js/react-select.6ac1d612.chunk.js.map"
|
|
1587
1587
|
],
|
|
1588
1588
|
"children": {},
|
|
1589
1589
|
"childAssets": {}
|
|
@@ -1597,8 +1597,8 @@
|
|
|
1597
1597
|
"static/css/3.a3490306.chunk.css",
|
|
1598
1598
|
"static/js/3.a3490306.chunk.js",
|
|
1599
1599
|
"static/js/3.a3490306.chunk.js.map",
|
|
1600
|
-
"static/js/react-select.
|
|
1601
|
-
"static/js/react-select.
|
|
1600
|
+
"static/js/react-select.6ac1d612.chunk.js",
|
|
1601
|
+
"static/js/react-select.6ac1d612.chunk.js.map"
|
|
1602
1602
|
],
|
|
1603
1603
|
"children": {},
|
|
1604
1604
|
"childAssets": {}
|
|
@@ -1612,8 +1612,8 @@
|
|
|
1612
1612
|
"static/css/3.a3490306.chunk.css",
|
|
1613
1613
|
"static/js/3.a3490306.chunk.js",
|
|
1614
1614
|
"static/js/3.a3490306.chunk.js.map",
|
|
1615
|
-
"static/js/react-select.
|
|
1616
|
-
"static/js/react-select.
|
|
1615
|
+
"static/js/react-select.6ac1d612.chunk.js",
|
|
1616
|
+
"static/js/react-select.6ac1d612.chunk.js.map"
|
|
1617
1617
|
],
|
|
1618
1618
|
"children": {},
|
|
1619
1619
|
"childAssets": {}
|