@uniformdev/canvas 18.26.0 → 18.27.1-alpha.12
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 +24 -4
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
@@ -1178,6 +1178,11 @@ interface paths$3 {
|
|
1178
1178
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
1179
1179
|
*/
|
1180
1180
|
uiStatus?: components$1["parameters"]["uiStatus"];
|
1181
|
+
/**
|
1182
|
+
* Filters out compositions without attached node or filters out compositions with attached nodes
|
1183
|
+
* in case of FALSE. If not specified - no filtration applied.
|
1184
|
+
*/
|
1185
|
+
attachedToProjectMap?: components$1["parameters"]["attachedToProjectMap"];
|
1181
1186
|
/** Filters composition lists by the user who last updated them. The user is specified by their identity subject. */
|
1182
1187
|
updatedBy?: components$1["parameters"]["updatedBy"];
|
1183
1188
|
/**
|
@@ -1405,6 +1410,11 @@ interface components$1 {
|
|
1405
1410
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
1406
1411
|
*/
|
1407
1412
|
uiStatus: ("Draft" | "Modified" | "Published" | "Orphan")[];
|
1413
|
+
/**
|
1414
|
+
* @description Filters out compositions without attached node or filters out compositions with attached nodes
|
1415
|
+
* in case of FALSE. If not specified - no filtration applied.
|
1416
|
+
*/
|
1417
|
+
attachedToProjectMap: boolean;
|
1408
1418
|
/** @description Includes project map node information in the composition results */
|
1409
1419
|
withProjectMapNodes: boolean;
|
1410
1420
|
/** @description Filters composition lists by the user who created them. The user is specified by their identity subject. */
|
@@ -2645,6 +2655,11 @@ interface external$3 {
|
|
2645
2655
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
2646
2656
|
*/
|
2647
2657
|
uiStatus?: external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["parameters"]["uiStatus"];
|
2658
|
+
/**
|
2659
|
+
* Filters out compositions without attached node or filters out compositions with attached nodes
|
2660
|
+
* in case of FALSE. If not specified - no filtration applied.
|
2661
|
+
*/
|
2662
|
+
attachedToProjectMap?: external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["parameters"]["attachedToProjectMap"];
|
2648
2663
|
/** Filters composition lists by the user who last updated them. The user is specified by their identity subject. */
|
2649
2664
|
updatedBy?: external$3["../../../lambda/functions/v1-canvas.swagger.yml"]["components"]["parameters"]["updatedBy"];
|
2650
2665
|
/**
|
@@ -2872,6 +2887,11 @@ interface external$3 {
|
|
2872
2887
|
* This internal status is subject to change without notice, and is thus marked deprecated to discourage use of internal data.
|
2873
2888
|
*/
|
2874
2889
|
uiStatus: ("Draft" | "Modified" | "Published" | "Orphan")[];
|
2890
|
+
/**
|
2891
|
+
* @description Filters out compositions without attached node or filters out compositions with attached nodes
|
2892
|
+
* in case of FALSE. If not specified - no filtration applied.
|
2893
|
+
*/
|
2894
|
+
attachedToProjectMap: boolean;
|
2875
2895
|
/** @description Includes project map node information in the composition results */
|
2876
2896
|
withProjectMapNodes: boolean;
|
2877
2897
|
/** @description Filters composition lists by the user who created them. The user is specified by their identity subject. */
|
@@ -5316,12 +5336,12 @@ declare class ChildEnhancerBuilder {
|
|
5316
5336
|
* Resolves the parameter enhancer for a given parameter, if one exists.
|
5317
5337
|
* The first matching enhancer by registration order is returned, if more than one could match.
|
5318
5338
|
*/
|
5319
|
-
resolveParameterEnhancer(parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer
|
5339
|
+
resolveParameterEnhancer(parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer | undefined;
|
5320
5340
|
/**
|
5321
5341
|
* Resolves component enhancer(s) for a given component.
|
5322
5342
|
* Returns a Map where the key is the name of the data property and the value is the enhancer.
|
5323
5343
|
*/
|
5324
|
-
resolveComponentEnhancers(): Map<string, ComponentEnhancer
|
5344
|
+
resolveComponentEnhancers(): Map<string, ComponentEnhancer>;
|
5325
5345
|
private _resolveParameterEnhancer;
|
5326
5346
|
}
|
5327
5347
|
/**
|
@@ -5351,12 +5371,12 @@ declare class EnhancerBuilder {
|
|
5351
5371
|
* Resolves the parameter enhancer for a given parameter, if one exists.
|
5352
5372
|
* The first matching enhancer by registration order is returned, if more than one could match.
|
5353
5373
|
*/
|
5354
|
-
resolveParameterEnhancer(component: ComponentInstance, parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer
|
5374
|
+
resolveParameterEnhancer(component: ComponentInstance, parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer | undefined;
|
5355
5375
|
/**
|
5356
5376
|
* Resolves component enhancer(s) for a given component.
|
5357
5377
|
* Returns a Map where the key is the name of the data property and the value is the enhancer.
|
5358
5378
|
*/
|
5359
|
-
resolveComponentEnhancers(component: ComponentInstance): Map<string, ComponentEnhancer
|
5379
|
+
resolveComponentEnhancers(component: ComponentInstance): Map<string, ComponentEnhancer>;
|
5360
5380
|
}
|
5361
5381
|
|
5362
5382
|
type EnhancerError = {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.27.1-alpha.12+a2ae84d4d",
|
4
4
|
"description": "Common functionality and types for Uniform Canvas",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -47,7 +47,7 @@
|
|
47
47
|
"pusher-js": "8.0.1"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@uniformdev/context": "18.
|
50
|
+
"@uniformdev/context": "18.27.1-alpha.12+a2ae84d4d"
|
51
51
|
},
|
52
52
|
"files": [
|
53
53
|
"/dist"
|
@@ -55,5 +55,5 @@
|
|
55
55
|
"publishConfig": {
|
56
56
|
"access": "public"
|
57
57
|
},
|
58
|
-
"gitHead": "
|
58
|
+
"gitHead": "a2ae84d4d88dab29f6291a75d7628663dc2df8bd"
|
59
59
|
}
|