scandit-datacapture-frameworks-core 6.28.1 → 7.0.0-beta.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scandit-datacapture-frameworks-core",
3
- "version": "6.28.1",
3
+ "version": "7.0.0-beta.2",
4
4
  "description": "Core common package",
5
5
  "author": {
6
6
  "name": "Scandit",
@@ -1,18 +0,0 @@
1
- import { NumberWithUnit, Color } from "../common";
2
- import { DefaultSerializeable } from "../serializable";
3
- import { Viewfinder } from "./Viewfinder";
4
- import { LaserlineViewfinderStyle } from "./LaserlineViewfinderStyle";
5
- /**
6
- * @deprecated LaserlineViewfinder is deprecated.
7
- */
8
- export declare class LaserlineViewfinder extends DefaultSerializeable implements Viewfinder {
9
- private type;
10
- private readonly _style;
11
- width: NumberWithUnit;
12
- enabledColor: Color;
13
- disabledColor: Color;
14
- private get coreDefaults();
15
- constructor();
16
- constructor(style: LaserlineViewfinderStyle);
17
- get style(): LaserlineViewfinderStyle;
18
- }
@@ -1,7 +0,0 @@
1
- /**
2
- * @deprecated LaserlineViewfinderStyle is deprecated.
3
- */
4
- export declare enum LaserlineViewfinderStyle {
5
- Legacy = "legacy",
6
- Animated = "animated"
7
- }
@@ -1,19 +0,0 @@
1
- import { Color } from "../common/Color";
2
- import { NumberWithUnit } from "../common/NumberWithUnit";
3
- import { SizeWithUnit } from "../common/SizeWithUnit";
4
- import { SizeWithUnitAndAspect } from "../common/SizeWithUnitAndAspect";
5
- import { DefaultSerializeable } from "../serializable";
6
- import { Viewfinder } from "./Viewfinder";
7
- export declare class SpotlightViewfinder extends DefaultSerializeable implements Viewfinder {
8
- private type;
9
- private _sizeWithUnitAndAspect;
10
- enabledBorderColor: Color;
11
- disabledBorderColor: Color;
12
- backgroundColor: Color;
13
- get sizeWithUnitAndAspect(): SizeWithUnitAndAspect;
14
- private get coreDefaults();
15
- constructor();
16
- setSize(size: SizeWithUnit): void;
17
- setWidthAndAspectRatio(width: NumberWithUnit, heightToWidthAspectRatio: number): void;
18
- setHeightAndAspectRatio(height: NumberWithUnit, widthToHeightAspectRatio: number): void;
19
- }