@uniformdev/assets 19.80.1-alpha.192 → 19.80.1-alpha.252
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 +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -622,6 +622,15 @@ interface external {
|
|
|
622
622
|
_slug?: string | null;
|
|
623
623
|
/** @description Friendly name of this component. */
|
|
624
624
|
_name: string;
|
|
625
|
+
/** @description Indicates this component instance should be sourced from a pattern library pattern. */
|
|
626
|
+
_pattern?: string;
|
|
627
|
+
/**
|
|
628
|
+
* @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
|
|
629
|
+
* Means nothing for PUTs; it will be ignored.
|
|
630
|
+
*/
|
|
631
|
+
_patternDataResources?: {
|
|
632
|
+
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
|
|
633
|
+
};
|
|
625
634
|
_dataResources?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
|
|
626
635
|
/**
|
|
627
636
|
* @description Defines patch overrides to component IDs that live in the composition.
|
package/dist/index.d.ts
CHANGED
|
@@ -622,6 +622,15 @@ interface external {
|
|
|
622
622
|
_slug?: string | null;
|
|
623
623
|
/** @description Friendly name of this component. */
|
|
624
624
|
_name: string;
|
|
625
|
+
/** @description Indicates this component instance should be sourced from a pattern library pattern. */
|
|
626
|
+
_pattern?: string;
|
|
627
|
+
/**
|
|
628
|
+
* @description Data definitions coming from a pattern resolved for this component. Merged with _dataResources during resolution.
|
|
629
|
+
* Means nothing for PUTs; it will be ignored.
|
|
630
|
+
*/
|
|
631
|
+
_patternDataResources?: {
|
|
632
|
+
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinition"];
|
|
633
|
+
};
|
|
625
634
|
_dataResources?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["DataResourceDefinitions"];
|
|
626
635
|
/**
|
|
627
636
|
* @description Defines patch overrides to component IDs that live in the composition.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.80.1-alpha.
|
|
3
|
+
"version": "19.80.1-alpha.252+d847608721",
|
|
4
4
|
"description": "Uniform Assets",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniformdev/context": "19.80.1-alpha.
|
|
39
|
+
"@uniformdev/context": "19.80.1-alpha.252+d847608721"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "d8476087216a62a77ce086ac719e6bb457a4fb34"
|
|
42
42
|
}
|