@uniformdev/assets 19.99.1-alpha.0 → 19.103.0
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 +7 -1
- package/dist/index.d.ts +7 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -618,6 +618,8 @@ interface external {
|
|
|
618
618
|
* Future updates that do not break the overrides-applied state of a composition may be made without notice.
|
|
619
619
|
*/
|
|
620
620
|
_overridability?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverridability"];
|
|
621
|
+
/** @description Array of locales which have data defined. Only set for pattern references or composition defaults. */
|
|
622
|
+
_locales?: string[];
|
|
621
623
|
};
|
|
622
624
|
/** @description Defines the shape of the root component in a composition */
|
|
623
625
|
RootComponentInstance: {
|
|
@@ -749,7 +751,11 @@ interface external {
|
|
|
749
751
|
localeMapping?: {
|
|
750
752
|
[key: string]: string;
|
|
751
753
|
};
|
|
752
|
-
/** @description Custom configuration
|
|
754
|
+
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets. */
|
|
755
|
+
customPublic?: {
|
|
756
|
+
[key: string]: unknown;
|
|
757
|
+
};
|
|
758
|
+
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors. */
|
|
753
759
|
custom?: {
|
|
754
760
|
[key: string]: unknown;
|
|
755
761
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -618,6 +618,8 @@ interface external {
|
|
|
618
618
|
* Future updates that do not break the overrides-applied state of a composition may be made without notice.
|
|
619
619
|
*/
|
|
620
620
|
_overridability?: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentOverridability"];
|
|
621
|
+
/** @description Array of locales which have data defined. Only set for pattern references or composition defaults. */
|
|
622
|
+
_locales?: string[];
|
|
621
623
|
};
|
|
622
624
|
/** @description Defines the shape of the root component in a composition */
|
|
623
625
|
RootComponentInstance: {
|
|
@@ -749,7 +751,11 @@ interface external {
|
|
|
749
751
|
localeMapping?: {
|
|
750
752
|
[key: string]: string;
|
|
751
753
|
};
|
|
752
|
-
/** @description Custom configuration
|
|
754
|
+
/** @description Custom configuration accessible to all data connector UIs (data source, data type, and data resource editors) and custom edgehancers. This data should not contain secrets. */
|
|
755
|
+
customPublic?: {
|
|
756
|
+
[key: string]: unknown;
|
|
757
|
+
};
|
|
758
|
+
/** @description Custom configuration accessible to the data source editor UI and custom edgehancer that may contain secrets. This cannot be read by the data type or data resource editors. */
|
|
753
759
|
custom?: {
|
|
754
760
|
[key: string]: unknown;
|
|
755
761
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.103.0",
|
|
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.
|
|
39
|
+
"@uniformdev/context": "19.103.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "ebdcac3a77d293bff272925f62f8c1c10be855bc"
|
|
42
42
|
}
|