shop-components 0.1.66 → 0.1.67
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/device-viewer/amr.d.ts +1 -1
- package/dist/device-viewer/index.stories.d.ts +0 -1
- package/dist/device-viewer/pin/pin.d.ts +4 -0
- package/dist/device-viewer/scene.d.ts +1 -1
- package/dist/devices/index.d.ts +5 -0
- package/dist/{test → devices}/index.stories.d.ts +2 -3
- package/dist/devices/src/connector.d.ts +8 -0
- package/dist/devices/src/constraints/constraint.d.ts +16 -0
- package/dist/devices/src/constraints/same-device-constraint.d.ts +9 -0
- package/dist/devices/src/constraints/single-connection-constraint.d.ts +9 -0
- package/dist/devices/src/device.d.ts +11 -0
- package/dist/devices/src/pin.d.ts +43 -0
- package/dist/shop-components.mjs +28 -21
- package/dist/shop-components.umd.js +4 -4
- package/dist/step-viewer/index.stories.d.ts +0 -1
- package/package.json +1 -1
- package/dist/smap-viewer/index.d.ts +0 -14
- package/dist/smap-viewer/index.stories.d.ts +0 -22
- package/dist/test/index.d.ts +0 -25
- package/dist/test/scene.d.ts +0 -20
|
@@ -73,7 +73,7 @@ export declare class Amr extends Object3D {
|
|
|
73
73
|
set bodyOpacity(o: number);
|
|
74
74
|
constructor(_props: AmrProps);
|
|
75
75
|
init(app: Scene3D): void;
|
|
76
|
-
load(url: string): Promise<void>;
|
|
76
|
+
load(url: string, type?: string): Promise<void>;
|
|
77
77
|
changeSkin(skin: Skin, value: string): void;
|
|
78
78
|
changeLogo(logo: Logo, configs: CropperConfigs): void;
|
|
79
79
|
setShapeKey(key: string, value: number): void;
|
|
@@ -123,7 +123,7 @@ export declare class Scene3D {
|
|
|
123
123
|
exportAMR(): Promise<ArrayBuffer | {
|
|
124
124
|
[key: string]: any;
|
|
125
125
|
}>;
|
|
126
|
-
addAMR(url: string): Promise<void>;
|
|
126
|
+
addAMR(url: string, type?: string): Promise<void>;
|
|
127
127
|
fit: () => void;
|
|
128
128
|
select(obj: string | Object3D | Object3D[]): void;
|
|
129
129
|
appendTo(parent: HTMLElement): void;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import ShopDevices from '../../../../../../../stories/devices/index';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
title: string;
|
|
4
|
-
|
|
5
|
-
render: (args: Props) => TestViewer;
|
|
4
|
+
render: (args: any) => ShopDevices;
|
|
6
5
|
argTypes: {};
|
|
7
6
|
};
|
|
8
7
|
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface ConstraintExecResult {
|
|
2
|
+
valid: boolean;
|
|
3
|
+
message?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare abstract class Constraintable {
|
|
6
|
+
protected _valid: boolean;
|
|
7
|
+
protected constructor();
|
|
8
|
+
get isValid(): boolean;
|
|
9
|
+
abstract exec(): ConstraintExecResult;
|
|
10
|
+
}
|
|
11
|
+
export default class Constraint extends Constraintable {
|
|
12
|
+
constructor();
|
|
13
|
+
exec(): ConstraintExecResult;
|
|
14
|
+
addConnection(): void;
|
|
15
|
+
describe(): void;
|
|
16
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ConstraintExecResult, Constraintable } from '../../../../../../../../../stories/devices/src/constraints/constraint';
|
|
2
|
+
import Pin from '../../../../../../../../../stories/devices/src/pin';
|
|
3
|
+
export default class SameDeviceConstraint extends Constraintable {
|
|
4
|
+
source: Pin;
|
|
5
|
+
target: Pin;
|
|
6
|
+
constructor(source: Pin, target: Pin);
|
|
7
|
+
setTarget(target: Pin): this;
|
|
8
|
+
exec(): ConstraintExecResult;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Constraintable, ConstraintExecResult } from '../../../../../../../../../stories/devices/src/constraints/constraint';
|
|
2
|
+
import Pin from '../../../../../../../../../stories/devices/src/pin';
|
|
3
|
+
export default class SingleConnectionConstraint extends Constraintable {
|
|
4
|
+
source: Pin;
|
|
5
|
+
target: Pin;
|
|
6
|
+
constructor(source: Pin, target: Pin);
|
|
7
|
+
setTarget(target: Pin): this;
|
|
8
|
+
exec(): ConstraintExecResult;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import Pin from '../../../../../../../../stories/devices/src/pin';
|
|
2
|
+
export default class Device {
|
|
3
|
+
private _deviceId;
|
|
4
|
+
private _name;
|
|
5
|
+
pins: Pin[];
|
|
6
|
+
get deviceId(): string;
|
|
7
|
+
get name(): string;
|
|
8
|
+
constructor(_deviceId: string, _name: string);
|
|
9
|
+
addPin(pin: Pin): void;
|
|
10
|
+
describe(): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export declare enum PIN_TYPES {
|
|
2
|
+
VCC = "VCC",
|
|
3
|
+
'24VDC IN-' = "24VDC IN-",
|
|
4
|
+
GND = "GND",
|
|
5
|
+
'DI-NPN' = "DI-NPN",
|
|
6
|
+
PDO = "PDO",
|
|
7
|
+
'485-B' = "485-B",
|
|
8
|
+
'485-A' = "485-A",
|
|
9
|
+
'232-T' = "232-T",
|
|
10
|
+
'232-R' = "232-R",
|
|
11
|
+
'CAN-L' = "CAN-L",
|
|
12
|
+
'CAN-H' = "CAN-H",
|
|
13
|
+
'SWITCH-N' = "SWITCH-N",
|
|
14
|
+
'SWITCH-O' = "SWITCH-O",
|
|
15
|
+
'BOOT-KEY' = "BOOT-KEY",
|
|
16
|
+
'BOOT-LIGHT' = "BOOT-LIGHT",
|
|
17
|
+
'MANUAL-CHARGING' = "MANUAL-CHARGING",
|
|
18
|
+
'EMC IN' = "EMC IN",
|
|
19
|
+
'EMC P-' = "EMC P-",
|
|
20
|
+
'EMC P+' = "EMC P+",
|
|
21
|
+
LAN = "LAN",
|
|
22
|
+
USB = "USB",
|
|
23
|
+
HDMI = "HDMI",
|
|
24
|
+
SPK = "SPK",
|
|
25
|
+
MIC = "MIC",
|
|
26
|
+
WIFI = "WIFI",
|
|
27
|
+
'Contactor O' = "Contactor O",
|
|
28
|
+
'Contactor N' = "Contactor N"
|
|
29
|
+
}
|
|
30
|
+
export default class Pin {
|
|
31
|
+
private pinID;
|
|
32
|
+
private pinType;
|
|
33
|
+
private group;
|
|
34
|
+
private voltageMin;
|
|
35
|
+
private voltageMax;
|
|
36
|
+
private currentMax;
|
|
37
|
+
private _deviceId;
|
|
38
|
+
private _constraints;
|
|
39
|
+
get deviceId(): string;
|
|
40
|
+
set deviceId(deviceId: string);
|
|
41
|
+
constructor(pinID: string, pinType: PIN_TYPES, group: any, voltageMin: number, voltageMax: number, currentMax: number);
|
|
42
|
+
describe(): void;
|
|
43
|
+
}
|
package/dist/shop-components.mjs
CHANGED
|
@@ -57462,7 +57462,7 @@ class kx extends V0 {
|
|
|
57462
57462
|
const i = this.props.follows.get(A);
|
|
57463
57463
|
if (i) {
|
|
57464
57464
|
let r = "x";
|
|
57465
|
-
|
|
57465
|
+
["height", "mast"].includes(A) ? r = "y" : ["width", "liftOuterWidth"].includes(A) && (r = "z");
|
|
57466
57466
|
const s = ((t = this.props.slot) == null ? void 0 : t.position[r]) > 0 ? 1 : -1;
|
|
57467
57467
|
this._wrapper.position[r] = (e - i.origin) * i.scale * s;
|
|
57468
57468
|
}
|
|
@@ -62047,11 +62047,18 @@ class Vu extends Ie {
|
|
|
62047
62047
|
this._textWrapper.lookAt(A);
|
|
62048
62048
|
}
|
|
62049
62049
|
updateSize(A) {
|
|
62050
|
-
var
|
|
62051
|
-
const e = (
|
|
62050
|
+
var r;
|
|
62051
|
+
const e = (r = this.parent) == null ? void 0 : r.position.clone();
|
|
62052
62052
|
e == null || e.setY(this.position.y);
|
|
62053
62053
|
let t = (e == null ? void 0 : e.distanceTo(A)) || 1;
|
|
62054
|
-
|
|
62054
|
+
if (this._tw && this._tw.isPlaying()) {
|
|
62055
|
+
this._tw.stop();
|
|
62056
|
+
return;
|
|
62057
|
+
}
|
|
62058
|
+
let i = t / 80;
|
|
62059
|
+
i > 0.25 && (i = 0.25), i < 0.025 && (i = 0.025), this._tw = new Is.Tween(this._text).to({ fontSize: i }).duration(300).easing(Is.Easing.Quintic.InOut).onComplete(() => {
|
|
62060
|
+
this._text.sync();
|
|
62061
|
+
}).start();
|
|
62055
62062
|
}
|
|
62056
62063
|
destroy() {
|
|
62057
62064
|
this._text.dispose(), this.children.forEach((A) => Oi(A)), this.removeFromParent();
|
|
@@ -62588,18 +62595,18 @@ class Pj extends Ie {
|
|
|
62588
62595
|
}), this.sizeBox.translateCache = this.sizeBox.originOffset, this.sizeBox.generate(this._container))) : this.sizeBox.generate(this._container), ["width", "length", "height"].includes(e) && this._emitter.emit("size-changed", e, t);
|
|
62589
62596
|
});
|
|
62590
62597
|
}
|
|
62591
|
-
async load(A) {
|
|
62598
|
+
async load(A, e = "") {
|
|
62592
62599
|
this._url = A, this.name || (this.name = A.substring(A.lastIndexOf("/") + 1, A.lastIndexOf("."))), !A.startsWith("blob") && A.endsWith(".sglb");
|
|
62593
|
-
let
|
|
62594
|
-
if (A.endsWith(".glb"))
|
|
62595
|
-
|
|
62600
|
+
let t;
|
|
62601
|
+
if (e === "glb" || A.endsWith(".glb"))
|
|
62602
|
+
t = (await _c.loadAsync(A)).scene;
|
|
62596
62603
|
else {
|
|
62597
|
-
const
|
|
62598
|
-
if (!
|
|
62604
|
+
const r = await new Of({ useCache: !0 }).loadAsync(A);
|
|
62605
|
+
if (!r.glb)
|
|
62599
62606
|
return;
|
|
62600
|
-
|
|
62607
|
+
t = r.glb;
|
|
62601
62608
|
}
|
|
62602
|
-
this._generateAmr(
|
|
62609
|
+
this._generateAmr(t.clone(!0)), t = null, this._emitter.emit("amr-loaded");
|
|
62603
62610
|
}
|
|
62604
62611
|
changeSkin(A, e) {
|
|
62605
62612
|
A && (A.change(e), this._app && this._app.usePathTracing && (this._app.sampleCount = 0, this._app.usePathTracing && (this._app.pathTracer.pausePathTracing = !1, this._app.pathTracer.updateMaterials())));
|
|
@@ -64965,7 +64972,7 @@ class nG {
|
|
|
64965
64972
|
let u = Math.max(a.x, a.y, a.z) + Math.max(a.x, a.y);
|
|
64966
64973
|
const c = b9(this.camera.fov, 0.8) * 3 - 1.2;
|
|
64967
64974
|
u += c;
|
|
64968
|
-
const h = Math.min(a.x, a.y, a.z) + 0.
|
|
64975
|
+
const h = Math.min(a.x, a.y, a.z) + 0.2, p = this.camera.position.clone().normalize().multiplyScalar(u);
|
|
64969
64976
|
p.setY(u * Math.sin(30 / 180 * Math.PI)), this._fitAnimation = new Jf(this.camera.position).to(p, 600).easing(Is.Easing.Quintic.InOut).onStart(() => {
|
|
64970
64977
|
this.controls.enabled = !1;
|
|
64971
64978
|
}).onComplete(() => {
|
|
@@ -65120,15 +65127,15 @@ class nG {
|
|
|
65120
65127
|
binary: !0
|
|
65121
65128
|
});
|
|
65122
65129
|
}
|
|
65123
|
-
async addAMR(A) {
|
|
65124
|
-
this.amr.init(this), await this.amr.load(A), this.amr.addEventListener("shape-key-changed", (
|
|
65125
|
-
this.pathTracer.reset(), this.sampleCount = 0, this.pathTracer.setScene(this.scene, this.camera), this.overlayScene.traverse((
|
|
65126
|
-
if (!Object.keys(
|
|
65130
|
+
async addAMR(A, e = "") {
|
|
65131
|
+
this.amr.init(this), await this.amr.load(A, e), this.amr.addEventListener("shape-key-changed", (t, i) => {
|
|
65132
|
+
this.pathTracer.reset(), this.sampleCount = 0, this.pathTracer.setScene(this.scene, this.camera), this.overlayScene.traverse((r) => {
|
|
65133
|
+
if (!Object.keys(r.morphTargetDictionary || {}).includes(t))
|
|
65127
65134
|
return;
|
|
65128
|
-
let
|
|
65129
|
-
|
|
65130
|
-
const
|
|
65131
|
-
|
|
65135
|
+
let s = i;
|
|
65136
|
+
r.userData[`origin_${t}`] && (s -= r.userData[`origin_${t}`]);
|
|
65137
|
+
const o = r.morphTargetDictionary[t];
|
|
65138
|
+
r.morphTargetInfluences && (r.morphTargetInfluences[o] = s), r instanceof Pe && r.geometry.translate(0, 0, 1e-5);
|
|
65132
65139
|
});
|
|
65133
65140
|
});
|
|
65134
65141
|
}
|