@sitecore-content-sdk/react 0.1.0-beta.8 → 0.1.0-beta.9
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sitecore-content-sdk/react",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.9",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"react-dom": "^18.2.0"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@sitecore-content-sdk/core": "0.1.0-beta.
|
|
67
|
+
"@sitecore-content-sdk/core": "0.1.0-beta.9",
|
|
68
68
|
"fast-deep-equal": "^3.1.3",
|
|
69
69
|
"prop-types": "^15.8.1"
|
|
70
70
|
},
|
|
71
71
|
"description": "",
|
|
72
72
|
"types": "types/index.d.ts",
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "119f924ced30a80f183049cce1477365aeadb1c3",
|
|
74
74
|
"files": [
|
|
75
75
|
"dist",
|
|
76
76
|
"types"
|
|
@@ -27,7 +27,7 @@ export interface PlaceholderProps {
|
|
|
27
27
|
* Any component or placeholder rendered by a placeholder will have access to this data via `props.fields`.
|
|
28
28
|
*/
|
|
29
29
|
fields?: {
|
|
30
|
-
[name: string]: Field | Item[];
|
|
30
|
+
[name: string]: Field | Item | Item[];
|
|
31
31
|
};
|
|
32
32
|
/**
|
|
33
33
|
* An object of rendering parameter names/values that are aggregated and propagated through the component tree created by a placeholder.
|