@uniformdev/canvas-react 17.1.1-alpha.452 → 17.1.1-alpha.752
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.d.ts +10 -10
- package/package.json +6 -6
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.1.1-alpha.
|
|
3
|
+
"version": "17.1.1-alpha.752+3e63e24bd",
|
|
4
4
|
"description": "React SDK for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\""
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@uniformdev/canvas": "^17.1.1-alpha.
|
|
27
|
-
"@uniformdev/context": "^17.1.1-alpha.
|
|
28
|
-
"@uniformdev/context-react": "^17.1.1-alpha.
|
|
26
|
+
"@uniformdev/canvas": "^17.1.1-alpha.752+3e63e24bd",
|
|
27
|
+
"@uniformdev/context": "^17.1.1-alpha.752+3e63e24bd",
|
|
28
|
+
"@uniformdev/context-react": "^17.1.1-alpha.752+3e63e24bd"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"react": ">= 16",
|
|
32
32
|
"react-dom": ">=16"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/react": "18.0.
|
|
35
|
+
"@types/react": "18.0.21",
|
|
36
36
|
"react": "18.2.0",
|
|
37
37
|
"react-dom": "18.2.0"
|
|
38
38
|
},
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "3e63e24bdfe658b80cc14a2dbc84748694637c52"
|
|
46
46
|
}
|