@uniformdev/canvas 18.27.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 +4 -4
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
@@ -5336,12 +5336,12 @@ declare class ChildEnhancerBuilder {
|
|
5336
5336
|
* Resolves the parameter enhancer for a given parameter, if one exists.
|
5337
5337
|
* The first matching enhancer by registration order is returned, if more than one could match.
|
5338
5338
|
*/
|
5339
|
-
resolveParameterEnhancer(parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer
|
5339
|
+
resolveParameterEnhancer(parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer | undefined;
|
5340
5340
|
/**
|
5341
5341
|
* Resolves component enhancer(s) for a given component.
|
5342
5342
|
* Returns a Map where the key is the name of the data property and the value is the enhancer.
|
5343
5343
|
*/
|
5344
|
-
resolveComponentEnhancers(): Map<string, ComponentEnhancer
|
5344
|
+
resolveComponentEnhancers(): Map<string, ComponentEnhancer>;
|
5345
5345
|
private _resolveParameterEnhancer;
|
5346
5346
|
}
|
5347
5347
|
/**
|
@@ -5371,12 +5371,12 @@ declare class EnhancerBuilder {
|
|
5371
5371
|
* Resolves the parameter enhancer for a given parameter, if one exists.
|
5372
5372
|
* The first matching enhancer by registration order is returned, if more than one could match.
|
5373
5373
|
*/
|
5374
|
-
resolveParameterEnhancer(component: ComponentInstance, parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer
|
5374
|
+
resolveParameterEnhancer(component: ComponentInstance, parameterName: string, parameter: ComponentParameter): ComponentParameterEnhancer | undefined;
|
5375
5375
|
/**
|
5376
5376
|
* Resolves component enhancer(s) for a given component.
|
5377
5377
|
* Returns a Map where the key is the name of the data property and the value is the enhancer.
|
5378
5378
|
*/
|
5379
|
-
resolveComponentEnhancers(component: ComponentInstance): Map<string, ComponentEnhancer
|
5379
|
+
resolveComponentEnhancers(component: ComponentInstance): Map<string, ComponentEnhancer>;
|
5380
5380
|
}
|
5381
5381
|
|
5382
5382
|
type EnhancerError = {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/canvas",
|
3
|
-
"version": "18.27.
|
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.27.
|
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
|
}
|