@arkts/image-manager 0.5.12-beta.3 → 0.5.12-beta.4
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.cjs +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -32,7 +32,7 @@ let base64_js = require("base64-js");
|
|
|
32
32
|
let vscode_fs = require("vscode-fs");
|
|
33
33
|
|
|
34
34
|
//#region package.json
|
|
35
|
-
var version = "0.5.12-beta.
|
|
35
|
+
var version = "0.5.12-beta.4";
|
|
36
36
|
|
|
37
37
|
//#endregion
|
|
38
38
|
//#region src/common/serializable-content.ts
|
|
@@ -979,9 +979,9 @@ var LocalImageImpl = class extends BaseImageImpl {
|
|
|
979
979
|
"hw.lcd.single.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.singleDiagonalSize?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.diagonalSize?.toString() : void 0,
|
|
980
980
|
"hw.lcd.single.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.singleResolutionHeight?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.resolutionHeight?.toString() : void 0,
|
|
981
981
|
"hw.lcd.single.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.singleResolutionWidth?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.resolutionWidth?.toString() : void 0,
|
|
982
|
-
"hw.lcd.double.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleDiagonalSize?.toString() : void 0,
|
|
983
|
-
"hw.lcd.double.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionHeight?.toString() : void 0,
|
|
984
|
-
"hw.lcd.double.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionWidth?.toString() : void 0,
|
|
982
|
+
"hw.lcd.double.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleDiagonalSize?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? productConfigItem.getContent()?.screenDiagonal?.toString() : void 0,
|
|
983
|
+
"hw.lcd.double.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionHeight?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? productConfigItem.getContent()?.screenHeight?.toString() : void 0,
|
|
984
|
+
"hw.lcd.double.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionWidth?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? productConfigItem.getContent()?.screenWidth?.toString() : void 0,
|
|
985
985
|
"hw.lcd.triple.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent().diagonalSize.toString() : void 0,
|
|
986
986
|
"hw.lcd.triple.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent().resolutionHeight.toString() : void 0,
|
|
987
987
|
"hw.lcd.triple.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent().resolutionWidth.toString() : void 0,
|
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import { fromByteArray } from "base64-js";
|
|
|
3
3
|
import { RelativePattern, WriteableFlags, createNodeFileSystem } from "vscode-fs";
|
|
4
4
|
|
|
5
5
|
//#region package.json
|
|
6
|
-
var version = "0.5.12-beta.
|
|
6
|
+
var version = "0.5.12-beta.4";
|
|
7
7
|
|
|
8
8
|
//#endregion
|
|
9
9
|
//#region src/common/serializable-content.ts
|
|
@@ -950,9 +950,9 @@ var LocalImageImpl = class extends BaseImageImpl {
|
|
|
950
950
|
"hw.lcd.single.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.singleDiagonalSize?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.diagonalSize?.toString() : void 0,
|
|
951
951
|
"hw.lcd.single.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.singleResolutionHeight?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.resolutionHeight?.toString() : void 0,
|
|
952
952
|
"hw.lcd.single.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.singleResolutionWidth?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.resolutionWidth?.toString() : void 0,
|
|
953
|
-
"hw.lcd.double.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleDiagonalSize?.toString() : void 0,
|
|
954
|
-
"hw.lcd.double.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionHeight?.toString() : void 0,
|
|
955
|
-
"hw.lcd.double.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionWidth?.toString() : void 0,
|
|
953
|
+
"hw.lcd.double.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleDiagonalSize?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? productConfigItem.getContent()?.screenDiagonal?.toString() : void 0,
|
|
954
|
+
"hw.lcd.double.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionHeight?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? productConfigItem.getContent()?.screenHeight?.toString() : void 0,
|
|
955
|
+
"hw.lcd.double.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent()?.doubleResolutionWidth?.toString() : EmulatorFoldItem.is(emulatorDeviceItem) ? productConfigItem.getContent()?.screenWidth?.toString() : void 0,
|
|
956
956
|
"hw.lcd.triple.diagonalSize": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent().diagonalSize.toString() : void 0,
|
|
957
957
|
"hw.lcd.triple.height": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent().resolutionHeight.toString() : void 0,
|
|
958
958
|
"hw.lcd.triple.width": EmulatorTripleFoldItem.is(emulatorDeviceItem) ? emulatorDeviceItem.getContent().resolutionWidth.toString() : void 0,
|
package/package.json
CHANGED