@uniformdev/canvas-react 17.3.0 → 17.3.1-alpha.146

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +10 -10
  2. package/package.json +5 -5
package/dist/index.d.ts CHANGED
@@ -105,7 +105,7 @@ declare const createApiEnhancer: ({ apiUrl }: {
105
105
  [key: string]: {
106
106
  value: unknown;
107
107
  type: string;
108
- binding?: {
108
+ connectedData?: {
109
109
  pointer: string;
110
110
  syntax: "jptr";
111
111
  required?: boolean | undefined;
@@ -120,7 +120,7 @@ declare const createApiEnhancer: ({ apiUrl }: {
120
120
  [key: string]: {
121
121
  value: unknown;
122
122
  type: string;
123
- binding?: {
123
+ connectedData?: {
124
124
  pointer: string;
125
125
  syntax: "jptr";
126
126
  required?: boolean | undefined;
@@ -133,7 +133,7 @@ declare const createApiEnhancer: ({ apiUrl }: {
133
133
  } | undefined;
134
134
  _id?: string | undefined;
135
135
  _pattern?: string | undefined;
136
- _data?: {
136
+ _dataResources?: {
137
137
  [key: string]: {
138
138
  type: string;
139
139
  isPatternParameter?: boolean | undefined;
@@ -142,7 +142,7 @@ declare const createApiEnhancer: ({ apiUrl }: {
142
142
  } | undefined;
143
143
  };
144
144
  } | undefined;
145
- _patternData?: {
145
+ _patternDataResources?: {
146
146
  [key: string]: {
147
147
  type: string;
148
148
  isPatternParameter?: boolean | undefined;
@@ -157,7 +157,7 @@ declare const createApiEnhancer: ({ apiUrl }: {
157
157
  _id: string;
158
158
  _slug?: string | null | undefined;
159
159
  _name: string;
160
- _data?: {
160
+ _dataResources?: {
161
161
  [key: string]: {
162
162
  type: string;
163
163
  isPatternParameter?: boolean | undefined;
@@ -177,7 +177,7 @@ declare const useCompositionInstance: ({ composition, enhance, }: {
177
177
  [key: string]: {
178
178
  value: unknown;
179
179
  type: string;
180
- binding?: {
180
+ connectedData?: {
181
181
  pointer: string;
182
182
  syntax: "jptr";
183
183
  required?: boolean | undefined;
@@ -192,7 +192,7 @@ declare const useCompositionInstance: ({ composition, enhance, }: {
192
192
  [key: string]: {
193
193
  value: unknown;
194
194
  type: string;
195
- binding?: {
195
+ connectedData?: {
196
196
  pointer: string;
197
197
  syntax: "jptr";
198
198
  required?: boolean | undefined;
@@ -205,7 +205,7 @@ declare const useCompositionInstance: ({ composition, enhance, }: {
205
205
  } | undefined;
206
206
  _id?: string | undefined;
207
207
  _pattern?: string | undefined;
208
- _data?: {
208
+ _dataResources?: {
209
209
  [key: string]: {
210
210
  type: string;
211
211
  isPatternParameter?: boolean | undefined;
@@ -214,7 +214,7 @@ declare const useCompositionInstance: ({ composition, enhance, }: {
214
214
  } | undefined;
215
215
  };
216
216
  } | undefined;
217
- _patternData?: {
217
+ _patternDataResources?: {
218
218
  [key: string]: {
219
219
  type: string;
220
220
  isPatternParameter?: boolean | undefined;
@@ -229,7 +229,7 @@ declare const useCompositionInstance: ({ composition, enhance, }: {
229
229
  _id: string;
230
230
  _slug?: string | null | undefined;
231
231
  _name: string;
232
- _data?: {
232
+ _dataResources?: {
233
233
  [key: string]: {
234
234
  type: string;
235
235
  isPatternParameter?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-react",
3
- "version": "17.3.0",
3
+ "version": "17.3.1-alpha.146+33ba1d5c7",
4
4
  "description": "React SDK for Uniform Canvas",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -23,9 +23,9 @@
23
23
  "format": "prettier --write \"src/**/*.{js,ts,tsx}\""
24
24
  },
25
25
  "dependencies": {
26
- "@uniformdev/canvas": "^17.3.0",
27
- "@uniformdev/context": "^17.3.0",
28
- "@uniformdev/context-react": "^17.3.0"
26
+ "@uniformdev/canvas": "^17.3.1-alpha.146+33ba1d5c7",
27
+ "@uniformdev/context": "^17.3.1-alpha.146+33ba1d5c7",
28
+ "@uniformdev/context-react": "^17.3.1-alpha.146+33ba1d5c7"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "react": ">= 16",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "4b7411414239d033ceea81c61360995e4920a3f3"
45
+ "gitHead": "33ba1d5c7cf8aca1d9d5c7c14e0d97c0805f6840"
46
46
  }