@uniformdev/mesh-sdk 19.159.1-alpha.9 → 19.161.2-alpha.1
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 -0
- package/dist/index.d.ts +7 -0
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -963,6 +963,13 @@ type AssetParameterLocationMetadata<TIntegrationConfiguration = unknown> = Commo
|
|
|
963
963
|
* Default: 1
|
|
964
964
|
*/
|
|
965
965
|
maxAssets?: number;
|
|
966
|
+
/**
|
|
967
|
+
* The target locale being edited.
|
|
968
|
+
* If the parameter is not defined as localizable, then this is always undefined.
|
|
969
|
+
* If the parameter is localizable, then this is the current editor language.
|
|
970
|
+
* Note that setValue() always sets the target language automatically.
|
|
971
|
+
*/
|
|
972
|
+
targetLocale: string | undefined;
|
|
966
973
|
}, TIntegrationConfiguration>;
|
|
967
974
|
type AssetLibraryLocation = MeshLocationCore<unknown, AssetLibraryLocationMetadata, unknown, 'assetLibrary'> & GetDataResourceLocation;
|
|
968
975
|
type AssetParameterLocation = MeshLocationCore<AssetParamValue, AssetParameterLocationMetadata, AssetParamValue, 'assetParameter'> & GetDataResourceLocation;
|
package/dist/index.d.ts
CHANGED
|
@@ -963,6 +963,13 @@ type AssetParameterLocationMetadata<TIntegrationConfiguration = unknown> = Commo
|
|
|
963
963
|
* Default: 1
|
|
964
964
|
*/
|
|
965
965
|
maxAssets?: number;
|
|
966
|
+
/**
|
|
967
|
+
* The target locale being edited.
|
|
968
|
+
* If the parameter is not defined as localizable, then this is always undefined.
|
|
969
|
+
* If the parameter is localizable, then this is the current editor language.
|
|
970
|
+
* Note that setValue() always sets the target language automatically.
|
|
971
|
+
*/
|
|
972
|
+
targetLocale: string | undefined;
|
|
966
973
|
}, TIntegrationConfiguration>;
|
|
967
974
|
type AssetLibraryLocation = MeshLocationCore<unknown, AssetLibraryLocationMetadata, unknown, 'assetLibrary'> & GetDataResourceLocation;
|
|
968
975
|
type AssetParameterLocation = MeshLocationCore<AssetParamValue, AssetParameterLocationMetadata, AssetParamValue, 'assetParameter'> & GetDataResourceLocation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.161.2-alpha.1+d59167950a",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/canvas": "19.
|
|
37
|
-
"@uniformdev/context": "19.
|
|
38
|
-
"@uniformdev/project-map": "19.
|
|
36
|
+
"@uniformdev/canvas": "19.161.2-alpha.1+d59167950a",
|
|
37
|
+
"@uniformdev/context": "19.161.2-alpha.1+d59167950a",
|
|
38
|
+
"@uniformdev/project-map": "19.161.2-alpha.1+d59167950a",
|
|
39
39
|
"imagesloaded": "^5.0.0",
|
|
40
40
|
"mitt": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/imagesloaded": "^4.1.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "d59167950aa13607d01052f435e2e6b440e8cee6"
|
|
46
46
|
}
|