@appkit/dek-lib 0.2.5 → 0.2.6
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/index.es.js +3 -1
- package/dist/index.umd.js +3 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -86191,9 +86191,10 @@ const ComponentScreen = () => {
|
|
|
86191
86191
|
Object.keys(json).forEach((key) => {
|
|
86192
86192
|
componentProps.push({
|
|
86193
86193
|
key,
|
|
86194
|
-
value:
|
|
86194
|
+
value: JSON.stringify(json[key])
|
|
86195
86195
|
});
|
|
86196
86196
|
});
|
|
86197
|
+
console.log("componentProps", componentProps);
|
|
86197
86198
|
setPropsArray(componentProps);
|
|
86198
86199
|
}
|
|
86199
86200
|
}, [propsString]);
|
|
@@ -86204,6 +86205,7 @@ const ComponentScreen = () => {
|
|
|
86204
86205
|
props[key] = schema[key].default;
|
|
86205
86206
|
}
|
|
86206
86207
|
});
|
|
86208
|
+
console.log("schemaToProps", schema, props);
|
|
86207
86209
|
return props;
|
|
86208
86210
|
};
|
|
86209
86211
|
const propsToJson = (propsString2) => {
|
package/dist/index.umd.js
CHANGED
|
@@ -86208,9 +86208,10 @@ Arguments: ` + Array.prototype.slice.call(n10).join("") + `
|
|
|
86208
86208
|
Object.keys(json).forEach((key) => {
|
|
86209
86209
|
componentProps.push({
|
|
86210
86210
|
key,
|
|
86211
|
-
value:
|
|
86211
|
+
value: JSON.stringify(json[key])
|
|
86212
86212
|
});
|
|
86213
86213
|
});
|
|
86214
|
+
console.log("componentProps", componentProps);
|
|
86214
86215
|
setPropsArray(componentProps);
|
|
86215
86216
|
}
|
|
86216
86217
|
}, [propsString]);
|
|
@@ -86221,6 +86222,7 @@ Arguments: ` + Array.prototype.slice.call(n10).join("") + `
|
|
|
86221
86222
|
props[key] = schema[key].default;
|
|
86222
86223
|
}
|
|
86223
86224
|
});
|
|
86225
|
+
console.log("schemaToProps", schema, props);
|
|
86224
86226
|
return props;
|
|
86225
86227
|
};
|
|
86226
86228
|
const propsToJson = (propsString2) => {
|