@kitconcept/core 2.0.0-alpha.4 → 2.0.0-alpha.5
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.draft +5 -3
- package/CHANGELOG.md +8 -0
- package/babel.config.js +1 -1
- package/package.json +3 -3
- package/src/components/Contents/Contents.jsx +2006 -0
- package/src/components/Contents/DropZoneContent.jsx +307 -0
- package/src/customizations/volto/components/manage/Contents/Contents.jsx +20 -0
- package/src/theme/_main.scss +1 -0
- package/src/theme/components/dragDropFolderContent.scss +62 -0
package/.changelog.draft
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
## 2.0.0-alpha.
|
|
1
|
+
## 2.0.0-alpha.5 (2025-12-08)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### Feature
|
|
4
4
|
|
|
5
|
-
-
|
|
5
|
+
- Add feature of drag and drop files in folder contents @Tishasoumya-02
|
|
6
|
+
- Update to VLT 8a9:
|
|
7
|
+
https://github.com/kitconcept/volto-light-theme/releases/tag/8.0.0a9 @sneridagh
|
|
6
8
|
|
|
7
9
|
|
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
|
|
9
9
|
<!-- towncrier release notes start -->
|
|
10
10
|
|
|
11
|
+
## 2.0.0-alpha.5 (2025-12-08)
|
|
12
|
+
|
|
13
|
+
### Feature
|
|
14
|
+
|
|
15
|
+
- Add feature of drag and drop files in folder contents @Tishasoumya-02
|
|
16
|
+
- Update to VLT 8a9:
|
|
17
|
+
https://github.com/kitconcept/volto-light-theme/releases/tag/8.0.0a9 @sneridagh
|
|
18
|
+
|
|
11
19
|
## 2.0.0-alpha.4 (2025-12-01)
|
|
12
20
|
|
|
13
21
|
### Internal
|
package/babel.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitconcept/core",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.5",
|
|
4
4
|
"description": "Core setup for kitconcept GmbH distributions built on top of Plone",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@plone-collective/volto-authomatic": "3.0.0-alpha.6",
|
|
24
|
-
"@kitconcept/volto-light-theme": "^8.0.0-alpha.
|
|
24
|
+
"@kitconcept/volto-light-theme": "^8.0.0-alpha.9",
|
|
25
25
|
"@mbarde/volto-image-crop-widget": "^0.5.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"release-it": "^19.0.5",
|
|
40
40
|
"typescript": "^5.7.3",
|
|
41
41
|
"vitest": "^3.1.2",
|
|
42
|
-
"@plone/types": "
|
|
42
|
+
"@plone/types": "2.0.0-alpha.11"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"i18n": "rm -rf build/messages && NODE_ENV=production i18n --addon",
|