@g1cloud/page-builder-editor 1.0.0-alpha.6 → 1.0.0-alpha.7
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/css/page-builder-editor.scss +74 -12
- package/css/property-editor-color.scss +5 -0
- package/css/property-editor-html.scss +16 -0
- package/css/property-group-editor-background.scss +0 -12
- package/css/property-group-editor-border.scss +6 -12
- package/css/property-group-editor-margin.scss +0 -11
- package/css/property-group-editor-padding.scss +0 -11
- package/css/property-group-editor-position.scss +0 -11
- package/css/property-group-editor-size.scss +0 -11
- package/css/property-localpart.scss +2 -2
- package/dist/HtmlEditorModal-BV5E6G70.js +90 -0
- package/dist/PbPropertyEditorColor-y7y6ZUQs.js +57 -0
- package/dist/PbPropertyEditorHtml-CbQR_BzH.js +67 -0
- package/dist/{PbPropertyEditorImage-D85hteOg.js → PbPropertyEditorImage-BXEXm2Px.js} +2 -2
- package/dist/{PbPropertyEditorMultilineText-BFzT7dlG.js → PbPropertyEditorMultilineText-sb-oS_gz.js} +2 -2
- package/dist/{PbPropertyEditorProduct-CUSpnV8o.js → PbPropertyEditorProduct-p0zOCA9R.js} +2 -2
- package/dist/{PbPropertyEditorReadonlyText-Bk0WJxA0.js → PbPropertyEditorReadonlyText-Dgp_AVOD.js} +1 -1
- package/dist/{PbPropertyEditorSelect-BJovN1su.js → PbPropertyEditorSelect-CWedbXJI.js} +1 -1
- package/dist/{PbPropertyEditorText-DNdXl-Tr.js → PbPropertyEditorText-BWOKvwD9.js} +1 -1
- package/dist/components/modal/HtmlEditorModal.vue.d.ts +23 -0
- package/dist/components/sidebar/property/PbPropertyEditorColor.vue.d.ts +23 -0
- package/dist/components/sidebar/property/PbPropertyEditorHtml.vue.d.ts +23 -0
- package/dist/components/ui/PbColorPicker.vue.d.ts +2 -2
- package/dist/{index-DQLcq5fP.js → index-BTlwA7HP.js} +628 -380
- package/dist/model/context.d.ts +3 -3
- package/dist/model/model.d.ts +1 -1
- package/dist/model/page-builder-editor.d.ts +2 -2
- package/dist/model/part-definintion.d.ts +1 -0
- package/dist/page-builder-editor.js +23 -22
- package/dist/page-builder-editor.umd.cjs +1060 -604
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@g1cloud/page-builder-editor",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.0-alpha.
|
|
4
|
+
"version": "1.0.0-alpha.7",
|
|
5
5
|
"engins": {
|
|
6
6
|
"node": ">= 20.0.0"
|
|
7
7
|
},
|
|
@@ -16,18 +16,19 @@
|
|
|
16
16
|
"author": "zag@g1project.net",
|
|
17
17
|
"license": "LicenseRef-LICENSE",
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@g1cloud/bluesea": "5.0.0-alpha.
|
|
19
|
+
"@g1cloud/bluesea": "5.0.0-alpha.58"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@ckpack/vue-color": "^1.5.0",
|
|
23
23
|
"dayjs": "^1.11.11",
|
|
24
24
|
"mitt": "^3.0.1",
|
|
25
25
|
"short-unique-id": "^5.0.3",
|
|
26
|
+
"vite-svg-loader": "^5.1.0",
|
|
26
27
|
"vue": "^3.4.26",
|
|
27
28
|
"vue-router": "^4.3.2",
|
|
28
29
|
"vue3-click-away": "^1.2.4",
|
|
29
30
|
"yjs": "^13.6.14",
|
|
30
|
-
"@g1cloud/page-builder-viewer": "1.0.0-alpha.
|
|
31
|
+
"@g1cloud/page-builder-viewer": "1.0.0-alpha.7"
|
|
31
32
|
},
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@types/node": "^20.12.7",
|