@measured/puck 0.18.1-canary.486a863 → 0.18.1-canary.7649086
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/README.md +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -93,8 +93,8 @@ npx create-puck-app my-app
|
|
93
93
|
|
94
94
|
Available recipes include:
|
95
95
|
|
96
|
-
- [**next**](https://github.com/measuredco/puck/tree/main/recipes/next): Next.js
|
97
|
-
- [**remix**](https://github.com/measuredco/puck/tree/main/recipes/remix): Remix Run v2
|
96
|
+
- [**next**](https://github.com/measuredco/puck/tree/main/recipes/next): Next.js example, using App Router and static page generation
|
97
|
+
- [**remix**](https://github.com/measuredco/puck/tree/main/recipes/remix): Remix Run v2 example, using dynamic routes at root-level
|
98
98
|
|
99
99
|
## Community
|
100
100
|
|
package/dist/index.js
CHANGED
@@ -5832,7 +5832,7 @@ var Fields = ({ wrapFields = true }) => {
|
|
5832
5832
|
const newProps = __spreadProps(__spreadValues({}, currentProps), {
|
5833
5833
|
[fieldName]: value
|
5834
5834
|
});
|
5835
|
-
if (itemSelector) {
|
5835
|
+
if (selectedItem && itemSelector) {
|
5836
5836
|
const replaceActionData = {
|
5837
5837
|
type: "replace",
|
5838
5838
|
destinationIndex: itemSelector.index,
|
package/dist/index.mjs
CHANGED
@@ -5690,7 +5690,7 @@ var Fields = ({ wrapFields = true }) => {
|
|
5690
5690
|
const newProps = __spreadProps(__spreadValues({}, currentProps), {
|
5691
5691
|
[fieldName]: value
|
5692
5692
|
});
|
5693
|
-
if (itemSelector) {
|
5693
|
+
if (selectedItem && itemSelector) {
|
5694
5694
|
const replaceActionData = {
|
5695
5695
|
type: "replace",
|
5696
5696
|
destinationIndex: itemSelector.index,
|
package/package.json
CHANGED