@uniformdev/assets 20.39.3-alpha.1 → 20.40.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 +14 -0
- package/dist/index.d.ts +14 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -909,6 +909,20 @@ interface components$1 {
|
|
|
909
909
|
value?: string;
|
|
910
910
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
|
911
911
|
helpText?: string;
|
|
912
|
+
/** @description Configuration for providing a list of allowed values for this query string */
|
|
913
|
+
optionsSource?: {
|
|
914
|
+
/**
|
|
915
|
+
* @description The source type for the options
|
|
916
|
+
* @enum {string}
|
|
917
|
+
*/
|
|
918
|
+
source: "static";
|
|
919
|
+
options: {
|
|
920
|
+
/** @description Display name for the option */
|
|
921
|
+
name: string;
|
|
922
|
+
/** @description The actual value to be used */
|
|
923
|
+
value: string;
|
|
924
|
+
}[];
|
|
925
|
+
};
|
|
912
926
|
};
|
|
913
927
|
ProjectMapNodeData: {
|
|
914
928
|
/** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
|
package/dist/index.d.ts
CHANGED
|
@@ -909,6 +909,20 @@ interface components$1 {
|
|
|
909
909
|
value?: string;
|
|
910
910
|
/** @description Help text for authors who might be setting up a preview value for this query string */
|
|
911
911
|
helpText?: string;
|
|
912
|
+
/** @description Configuration for providing a list of allowed values for this query string */
|
|
913
|
+
optionsSource?: {
|
|
914
|
+
/**
|
|
915
|
+
* @description The source type for the options
|
|
916
|
+
* @enum {string}
|
|
917
|
+
*/
|
|
918
|
+
source: "static";
|
|
919
|
+
options: {
|
|
920
|
+
/** @description Display name for the option */
|
|
921
|
+
name: string;
|
|
922
|
+
/** @description The actual value to be used */
|
|
923
|
+
value: string;
|
|
924
|
+
}[];
|
|
925
|
+
};
|
|
912
926
|
};
|
|
913
927
|
ProjectMapNodeData: {
|
|
914
928
|
/** @description While performing a search if a node is a hit, this property will return true. If it's supporting structure, like a parent of a search hit, it will return false */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/assets",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.40.0",
|
|
4
4
|
"description": "Uniform Assets",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@uniformdev/context": "20.
|
|
39
|
+
"@uniformdev/context": "20.40.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"ts-xor": "^1.3.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "5a63373f91355d8865feac0d3fc11be59a5e38bd"
|
|
45
45
|
}
|