@uniformdev/assets 19.121.0 → 19.121.1-alpha.3
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
|
@@ -723,6 +723,9 @@ interface external {
|
|
|
723
723
|
parameters?: {
|
|
724
724
|
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
|
|
725
725
|
};
|
|
726
|
+
slots?: {
|
|
727
|
+
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentInstance"][];
|
|
728
|
+
};
|
|
726
729
|
variant?: string;
|
|
727
730
|
};
|
|
728
731
|
/**
|
|
@@ -739,6 +742,12 @@ interface external {
|
|
|
739
742
|
};
|
|
740
743
|
/** @description Allows overriding a display variant is allowed, if it is defined on the component the pattern is derived from. Default = false. */
|
|
741
744
|
variants?: boolean;
|
|
745
|
+
/**
|
|
746
|
+
* @description If true, parameters that are not overridable will be hidden by default on pattern instances' editors.
|
|
747
|
+
* If false, all parameters will be shown on pattern instances' editors, but locked parameters will be read-only.
|
|
748
|
+
* If not set, the default is false.
|
|
749
|
+
*/
|
|
750
|
+
hideLockedParameters?: boolean;
|
|
742
751
|
};
|
|
743
752
|
/**
|
|
744
753
|
* @description Whether a parameter is overridable
|
package/dist/index.d.ts
CHANGED
|
@@ -723,6 +723,9 @@ interface external {
|
|
|
723
723
|
parameters?: {
|
|
724
724
|
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentParameter"];
|
|
725
725
|
};
|
|
726
|
+
slots?: {
|
|
727
|
+
[key: string]: external["uniform-canvas-types.swagger.yml"]["components"]["schemas"]["ComponentInstance"][];
|
|
728
|
+
};
|
|
726
729
|
variant?: string;
|
|
727
730
|
};
|
|
728
731
|
/**
|
|
@@ -739,6 +742,12 @@ interface external {
|
|
|
739
742
|
};
|
|
740
743
|
/** @description Allows overriding a display variant is allowed, if it is defined on the component the pattern is derived from. Default = false. */
|
|
741
744
|
variants?: boolean;
|
|
745
|
+
/**
|
|
746
|
+
* @description If true, parameters that are not overridable will be hidden by default on pattern instances' editors.
|
|
747
|
+
* If false, all parameters will be shown on pattern instances' editors, but locked parameters will be read-only.
|
|
748
|
+
* If not set, the default is false.
|
|
749
|
+
*/
|
|
750
|
+
hideLockedParameters?: boolean;
|
|
742
751
|
};
|
|
743
752
|
/**
|
|
744
753
|
* @description Whether a parameter is overridable
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "19.121.
|
|
3
|
+
"version": "19.121.1-alpha.3+7d8c709610",
|
|
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.121.
|
|
39
|
+
"@uniformdev/context": "19.121.1-alpha.3+7d8c709610"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "7d8c70961033e6ec47b7f8874b5e49b224367cf5"
|
|
42
42
|
}
|