@measured/puck 0.21.0-canary.c78dc826 → 0.21.0-canary.cbc526d1
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/dist/{Editor-N46HUQEC.mjs → Editor-32UYWE6W.mjs} +13 -10
- package/dist/{Editor-F2LSS6SE.css → Editor-IQP25PUX.css} +28 -27
- package/dist/{Render-QEMDIDQC.css → Render-3OV4N4MT.css} +28 -27
- package/dist/{Render-Y567PGZ7.mjs → Render-FXZX6NFH.mjs} +6 -4
- package/dist/{walk-tree-Ja9bNCM9.d.mts → actions-BkBoKAc5.d.mts} +26 -36
- package/dist/{walk-tree-Ja9bNCM9.d.ts → actions-BkBoKAc5.d.ts} +26 -36
- package/dist/{chunk-3QHWXJEI.mjs → chunk-3VQHXASI.mjs} +2 -2
- package/dist/{chunk-K3V4LVUL.mjs → chunk-6KNQXLQR.mjs} +14 -10
- package/dist/chunk-AOEDIUVK.mjs +11 -0
- package/dist/{chunk-GQKMOYLG.mjs → chunk-GVKHZNTR.mjs} +2 -2
- package/dist/{chunk-7KY6RHEY.mjs → chunk-K562SEXI.mjs} +109 -526
- package/dist/chunk-KN3XDS7U.mjs +528 -0
- package/dist/{chunk-DCSQEDMK.mjs → chunk-M6W7YEVX.mjs} +1 -100
- package/dist/{chunk-DNF2EMM4.mjs → chunk-MEL7FUSF.mjs} +2 -2
- package/dist/{chunk-C2TVYIYC.mjs → chunk-NYGQH27S.mjs} +105 -75
- package/dist/{chunk-DJSH5REF.mjs → chunk-Q3TJ2VYO.mjs} +25 -126
- package/dist/chunk-REWRIUGR.mjs +156 -0
- package/dist/{chunk-FNWOH4R6.mjs → chunk-V2IQTPPK.mjs} +8 -6
- package/dist/{chunk-R6CVX2IY.mjs → chunk-V5I7CVLT.mjs} +1 -1
- package/dist/{chunk-TB3SSIAY.mjs → chunk-WD3LNSAC.mjs} +5258 -4424
- package/dist/chunk-Y2EFNT5P.mjs +108 -0
- package/dist/{full-NLUNPJWS.mjs → full-4OS3O57Y.mjs} +10 -7
- package/dist/index-bqD1SEOb.d.mts +118 -0
- package/dist/index-lt1zf5WR.d.ts +118 -0
- package/dist/index.css +732 -341
- package/dist/index.d.mts +31 -120
- package/dist/index.d.ts +31 -120
- package/dist/index.js +3494 -2436
- package/dist/index.mjs +22 -16
- package/dist/internal.d.mts +27 -0
- package/dist/internal.d.ts +27 -0
- package/dist/internal.js +927 -0
- package/dist/internal.mjs +13 -0
- package/dist/{loaded-ZXOU6S6R.mjs → loaded-DCQVLO7I.mjs} +7 -4
- package/dist/{loaded-HMSPJUZM.mjs → loaded-JGRO7BH7.mjs} +7 -4
- package/dist/{loaded-EV34KGYJ.mjs → loaded-KKVJE5KH.mjs} +7 -4
- package/dist/no-external.css +870 -475
- package/dist/no-external.d.mts +4 -2
- package/dist/no-external.d.ts +4 -2
- package/dist/no-external.js +3412 -2351
- package/dist/no-external.mjs +22 -11
- package/dist/rsc.css +28 -27
- package/dist/rsc.d.mts +2 -2
- package/dist/rsc.d.ts +2 -2
- package/dist/rsc.js +146 -83
- package/dist/rsc.mjs +6 -4
- package/dist/walk-tree-CRRDqx6_.d.mts +29 -0
- package/dist/walk-tree-CS7sEpfG.d.ts +29 -0
- package/package.json +9 -4
- package/dist/chunk-WUWXFMEM.mjs +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@measured/puck",
|
|
3
|
-
"version": "0.21.0-canary.
|
|
3
|
+
"version": "0.21.0-canary.cbc526d1",
|
|
4
4
|
"description": "The open-source visual editor for React",
|
|
5
5
|
"author": "Chris Villa <chris@puckeditor.com>",
|
|
6
6
|
"repository": "measuredco/puck",
|
|
@@ -45,6 +45,11 @@
|
|
|
45
45
|
"import": "./dist/rsc.mjs",
|
|
46
46
|
"require": "./dist/rsc.js"
|
|
47
47
|
},
|
|
48
|
+
"./internal": {
|
|
49
|
+
"types": "./dist/internal.d.ts",
|
|
50
|
+
"import": "./dist/internal.mjs",
|
|
51
|
+
"require": "./dist/internal.js"
|
|
52
|
+
},
|
|
48
53
|
"./puck.css": "./dist/index.css",
|
|
49
54
|
"./no-external.css": "./dist/no-external.css",
|
|
50
55
|
"./dist/index.css": "./dist/index.css",
|
|
@@ -60,7 +65,7 @@
|
|
|
60
65
|
"license": "MIT",
|
|
61
66
|
"scripts": {
|
|
62
67
|
"lint": "eslint \"**/*.ts*\"",
|
|
63
|
-
"build": "rm -rf dist && tsup bundle/index.ts bundle/rsc.tsx bundle/no-external.ts",
|
|
68
|
+
"build": "rm -rf dist && tsup bundle/index.ts bundle/rsc.tsx bundle/no-external.ts bundle/internal.ts",
|
|
64
69
|
"test": "jest",
|
|
65
70
|
"prepare": "cp ../../README.md . && yarn build",
|
|
66
71
|
"postpublish": "rm README.md"
|
|
@@ -76,8 +81,8 @@
|
|
|
76
81
|
"@types/flat": "^5.0.5",
|
|
77
82
|
"@types/jest": "^29.5.14",
|
|
78
83
|
"@types/object-hash": "^3.0.6",
|
|
79
|
-
"@types/react": "^19.
|
|
80
|
-
"@types/react-dom": "^19.
|
|
84
|
+
"@types/react": "^19.2.7",
|
|
85
|
+
"@types/react-dom": "^19.2.3",
|
|
81
86
|
"@types/uuid": "^10.0.0",
|
|
82
87
|
"css-box-model": "^1.2.1",
|
|
83
88
|
"eslint": "^7.32.0",
|
package/dist/chunk-WUWXFMEM.mjs
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
init_react_import
|
|
3
|
-
} from "./chunk-DCSQEDMK.mjs";
|
|
4
|
-
|
|
5
|
-
// css-module:/home/runner/work/puck/puck/packages/core/components/RichTextEditor/styles.module.css#css-module
|
|
6
|
-
init_react_import();
|
|
7
|
-
var styles_module_default = { "RichTextEditor": "_RichTextEditor_1elol_1", "RichTextEditor--editor": "_RichTextEditor--editor_1elol_50", "RichTextEditor--disabled": "_RichTextEditor--disabled_1elol_106", "RichTextEditor--isActive": "_RichTextEditor--isActive_1elol_110", "RichTextEditor-menu": "_RichTextEditor-menu_1elol_116" };
|
|
8
|
-
|
|
9
|
-
export {
|
|
10
|
-
styles_module_default
|
|
11
|
-
};
|