@measured/puck 0.16.0-canary.6d43ba0 → 0.16.0-canary.72b8720
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/{Config-XUGMjfT5.d.mts → actions-9pHbVtMU.d.mts} +217 -55
- package/dist/{Config-XUGMjfT5.d.ts → actions-9pHbVtMU.d.ts} +217 -55
- package/dist/{chunk-TM7CT64S.mjs → chunk-LM7YWFFF.mjs} +3 -2
- package/dist/index.css +96 -77
- package/dist/index.d.mts +51 -190
- package/dist/index.d.ts +51 -190
- package/dist/index.js +885 -697
- package/dist/index.mjs +855 -670
- package/dist/rsc.d.mts +1 -1
- package/dist/rsc.d.ts +1 -1
- package/dist/rsc.js +3 -2
- package/dist/rsc.mjs +1 -1
- package/package.json +1 -1
package/dist/rsc.d.mts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
-
import { C as Config, D as Data } from './
|
2
|
+
import { C as Config, D as Data } from './actions-9pHbVtMU.mjs';
|
3
3
|
import 'react';
|
4
4
|
|
5
5
|
declare function Render<UserConfig extends Config = Config>({ config, data, }: {
|
package/dist/rsc.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
2
|
-
import { C as Config, D as Data } from './
|
2
|
+
import { C as Config, D as Data } from './actions-9pHbVtMU.js';
|
3
3
|
import 'react';
|
4
4
|
|
5
5
|
declare function Render<UserConfig extends Config = Config>({ config, data, }: {
|
package/dist/rsc.js
CHANGED
@@ -62,8 +62,9 @@ var setupZone = (data, zoneKey) => {
|
|
62
62
|
if (zoneKey === rootDroppableId) {
|
63
63
|
return data;
|
64
64
|
}
|
65
|
-
const newData = __spreadValues({}, data)
|
66
|
-
|
65
|
+
const newData = __spreadProps(__spreadValues({}, data), {
|
66
|
+
zones: data.zones || {}
|
67
|
+
});
|
67
68
|
newData.zones[zoneKey] = newData.zones[zoneKey] || [];
|
68
69
|
return newData;
|
69
70
|
};
|
package/dist/rsc.mjs
CHANGED
package/package.json
CHANGED