@duet3d/objectmodel 3.7.0-alpha.8 → 3.7.0-alpha.9
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/ModelCollection.d.ts +1 -1
- package/dist/ModelDictionary.d.ts +1 -1
- package/dist/boards/directDisplay/DirectDisplayScreen.d.ts +1 -1
- package/dist/boards/directDisplay/DirectDisplayScreenBase.js +1 -0
- package/dist/boards/directDisplay/DirectDisplayScreenST7567.d.ts +1 -1
- package/dist/boards/directDisplay/index.js +1 -0
- package/dist/boards/index.js +1 -0
- package/dist/move/DriverId.d.ts +2 -1
- package/dist/move/index.js +1 -1
- package/dist/move/kinematics/CoreKinematics.d.ts +1 -1
- package/dist/move/kinematics/CoreKinematics.js +1 -1
- package/dist/move/kinematics/DeltaKinematics.d.ts +2 -1
- package/dist/move/kinematics/DeltaKinematics.js +1 -1
- package/dist/move/kinematics/HangprinterKinematics.d.ts +1 -1
- package/dist/move/kinematics/PolarKinematics.d.ts +1 -1
- package/dist/move/kinematics/ScaraKinematics.d.ts +1 -1
- package/dist/move/kinematics/index.d.ts +1 -1
- package/dist/plugins/PluginManifest.d.ts +2 -1
- package/dist/sensors/FilamentMonitors/LaserFilamentMonitor.d.ts +2 -1
- package/dist/sensors/FilamentMonitors/PulsedFilamentMonitor.d.ts +2 -1
- package/dist/sensors/FilamentMonitors/RotatingMagnetFilamentMonitor.d.ts +2 -1
- package/dist/sensors/FilamentMonitors/index.d.ts +1 -1
- package/dist/state/MessageBox.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IModelObject } from "../../ModelObject";
|
|
1
|
+
import type { IModelObject } from "../../ModelObject";
|
|
2
2
|
import DirectDisplayScreenBase from "./DirectDisplayScreenBase";
|
|
3
3
|
export declare class DirectDisplayScreen extends DirectDisplayScreenBase {
|
|
4
4
|
update(jsonElement: any): IModelObject | null;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import ModelObject from "../../ModelObject";
|
|
2
|
+
import DirectDisplayScreenBase from "./DirectDisplayScreenBase";
|
|
2
3
|
import DirectDisplayScreen from "./DirectDisplayScreen";
|
|
3
4
|
import { DirectDisplayScreenST7567 } from "./DirectDisplayScreenST7567";
|
|
4
5
|
export var DirectDisplayController;
|
package/dist/boards/index.js
CHANGED
package/dist/move/DriverId.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import ModelObject
|
|
1
|
+
import ModelObject from "../ModelObject";
|
|
2
|
+
import type { IModelObject } from "../ModelObject";
|
|
2
3
|
export declare function isDriverId(value: any): value is DriverId;
|
|
3
4
|
export declare class DriverId extends ModelObject {
|
|
4
5
|
board: number | null;
|
package/dist/move/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import KeepoutZone from "./KeepoutZone";
|
|
|
7
7
|
import MotionSystem from "./MotionSystem";
|
|
8
8
|
import MoveCalibration from "./MoveCalibration";
|
|
9
9
|
import MoveCompensation from "./MoveCompensation";
|
|
10
|
-
import { CoreKinematics, KinematicsName } from "./kinematics";
|
|
10
|
+
import Kinematics, { CoreKinematics, KinematicsName } from "./kinematics";
|
|
11
11
|
export class CurrentMove extends ModelObject {
|
|
12
12
|
constructor() {
|
|
13
13
|
super(...arguments);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IModelObject } from "../../ModelObject";
|
|
1
|
+
import type { IModelObject } from "../../ModelObject";
|
|
2
2
|
import { KinematicsName, ZLeadscrewKinematics } from "./KinematicsBase";
|
|
3
3
|
export declare class CoreKinematics extends ZLeadscrewKinematics {
|
|
4
4
|
constructor(name: KinematicsName);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import ModelCollection from "../../ModelCollection";
|
|
2
|
-
import ModelObject
|
|
2
|
+
import ModelObject from "../../ModelObject";
|
|
3
|
+
import type { IModelObject } from "../../ModelObject";
|
|
3
4
|
import KinematicsBase from "./KinematicsBase";
|
|
4
5
|
export declare class DeltaTower extends ModelObject {
|
|
5
6
|
angleCorrection: number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IModelObject } from "../../ModelObject";
|
|
1
|
+
import type { IModelObject } from "../../ModelObject";
|
|
2
2
|
import KinematicsBase, { KinematicsName } from "./KinematicsBase";
|
|
3
3
|
export declare class Kinematics extends KinematicsBase {
|
|
4
4
|
constructor(name?: KinematicsName);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import ModelObject
|
|
1
|
+
import ModelObject from "../../ModelObject";
|
|
2
|
+
import type { IModelObject } from "../../ModelObject";
|
|
2
3
|
import { Duet3DFilamentMonitor } from "./Duet3DFilamentMonitor";
|
|
3
4
|
export declare class LaserFilamentMonitorCalibrated extends ModelObject {
|
|
4
5
|
percentMax: number;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import ModelObject
|
|
1
|
+
import ModelObject from "../../ModelObject";
|
|
2
|
+
import type { IModelObject } from "../../ModelObject";
|
|
2
3
|
import FilamentMonitorBase from "./FilamentMonitorBase";
|
|
3
4
|
export declare class PulsedFilamentMonitorCalibrated extends ModelObject {
|
|
4
5
|
mmPerPulse: number;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import ModelObject
|
|
1
|
+
import ModelObject from "../../ModelObject";
|
|
2
|
+
import type { IModelObject } from "../../ModelObject";
|
|
2
3
|
import { Duet3DFilamentMonitor } from "./Duet3DFilamentMonitor";
|
|
3
4
|
export declare class RotatingMagnetFilamentMonitorCalibrated extends ModelObject {
|
|
4
5
|
mmPerPulse: number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IModelObject } from "../../ModelObject";
|
|
1
|
+
import type { IModelObject } from "../../ModelObject";
|
|
2
2
|
import FilamentMonitorBase, { FilamentMonitorType } from "./FilamentMonitorBase";
|
|
3
3
|
export declare class FilamentMonitor extends FilamentMonitorBase {
|
|
4
4
|
update(jsonElement: any): IModelObject | null;
|