@uniformdev/canvas-react 19.147.0 → 19.147.1-alpha.10
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.mts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -170,6 +170,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
170
170
|
type: string;
|
|
171
171
|
isPatternParameter?: boolean | undefined;
|
|
172
172
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
173
|
+
optionalPatternParameter?: boolean | undefined;
|
|
173
174
|
variables?: {
|
|
174
175
|
[key: string]: string;
|
|
175
176
|
} | undefined;
|
|
@@ -180,6 +181,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
180
181
|
type: string;
|
|
181
182
|
isPatternParameter?: boolean | undefined;
|
|
182
183
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
184
|
+
optionalPatternParameter?: boolean | undefined;
|
|
183
185
|
variables?: {
|
|
184
186
|
[key: string]: string;
|
|
185
187
|
} | undefined;
|
|
@@ -223,12 +225,17 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
223
225
|
_id: string;
|
|
224
226
|
_slug?: string | null | undefined;
|
|
225
227
|
_name: string;
|
|
228
|
+
_author?: string | undefined;
|
|
229
|
+
_authorSubject?: string | undefined;
|
|
230
|
+
_creator?: string | undefined;
|
|
231
|
+
_creatorSubject?: string | undefined;
|
|
226
232
|
_pattern?: string | undefined;
|
|
227
233
|
_patternDataResources?: {
|
|
228
234
|
[key: string]: {
|
|
229
235
|
type: string;
|
|
230
236
|
isPatternParameter?: boolean | undefined;
|
|
231
237
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
238
|
+
optionalPatternParameter?: boolean | undefined;
|
|
232
239
|
variables?: {
|
|
233
240
|
[key: string]: string;
|
|
234
241
|
} | undefined;
|
|
@@ -239,6 +246,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
239
246
|
type: string;
|
|
240
247
|
isPatternParameter?: boolean | undefined;
|
|
241
248
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
249
|
+
optionalPatternParameter?: boolean | undefined;
|
|
242
250
|
variables?: {
|
|
243
251
|
[key: string]: string;
|
|
244
252
|
} | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -170,6 +170,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
170
170
|
type: string;
|
|
171
171
|
isPatternParameter?: boolean | undefined;
|
|
172
172
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
173
|
+
optionalPatternParameter?: boolean | undefined;
|
|
173
174
|
variables?: {
|
|
174
175
|
[key: string]: string;
|
|
175
176
|
} | undefined;
|
|
@@ -180,6 +181,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
180
181
|
type: string;
|
|
181
182
|
isPatternParameter?: boolean | undefined;
|
|
182
183
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
184
|
+
optionalPatternParameter?: boolean | undefined;
|
|
183
185
|
variables?: {
|
|
184
186
|
[key: string]: string;
|
|
185
187
|
} | undefined;
|
|
@@ -223,12 +225,17 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
223
225
|
_id: string;
|
|
224
226
|
_slug?: string | null | undefined;
|
|
225
227
|
_name: string;
|
|
228
|
+
_author?: string | undefined;
|
|
229
|
+
_authorSubject?: string | undefined;
|
|
230
|
+
_creator?: string | undefined;
|
|
231
|
+
_creatorSubject?: string | undefined;
|
|
226
232
|
_pattern?: string | undefined;
|
|
227
233
|
_patternDataResources?: {
|
|
228
234
|
[key: string]: {
|
|
229
235
|
type: string;
|
|
230
236
|
isPatternParameter?: boolean | undefined;
|
|
231
237
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
238
|
+
optionalPatternParameter?: boolean | undefined;
|
|
232
239
|
variables?: {
|
|
233
240
|
[key: string]: string;
|
|
234
241
|
} | undefined;
|
|
@@ -239,6 +246,7 @@ declare const useUniformContextualEditing: ({ initialCompositionValue, enhance,
|
|
|
239
246
|
type: string;
|
|
240
247
|
isPatternParameter?: boolean | undefined;
|
|
241
248
|
ignorePatternParameterDefault?: boolean | undefined;
|
|
249
|
+
optionalPatternParameter?: boolean | undefined;
|
|
242
250
|
variables?: {
|
|
243
251
|
[key: string]: string;
|
|
244
252
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-react",
|
|
3
|
-
"version": "19.147.
|
|
3
|
+
"version": "19.147.1-alpha.10+6efbd31548",
|
|
4
4
|
"description": "React SDK for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"document": "api-extractor run --local"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@uniformdev/canvas": "19.147.
|
|
49
|
-
"@uniformdev/context": "19.147.
|
|
50
|
-
"@uniformdev/context-react": "19.147.
|
|
51
|
-
"@uniformdev/richtext": "19.147.
|
|
48
|
+
"@uniformdev/canvas": "19.147.1-alpha.10+6efbd31548",
|
|
49
|
+
"@uniformdev/context": "19.147.1-alpha.10+6efbd31548",
|
|
50
|
+
"@uniformdev/context-react": "19.147.1-alpha.10+6efbd31548",
|
|
51
|
+
"@uniformdev/richtext": "19.147.1-alpha.10+6efbd31548"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": ">= 16 || 17 || 18",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "6efbd31548d4190f950f425f10ec9398de1aacb2"
|
|
69
69
|
}
|