New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

scandit-datacapture-frameworks-barcode

Package Overview
Dependencies
Maintainers
0
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scandit-datacapture-frameworks-barcode - npm Package Compare versions

Comparing version 6.27.1 to 6.28.0-beta.1

dist/dts/barcodecount/private/PrivateBarcodeCountFeedback.d.ts

10

dist/dts/barcodecount/BarcodeCountFeedback.d.ts
import { DefaultSerializeable, Feedback } from "scandit-datacapture-frameworks-core";
export declare class BarcodeCountFeedback extends DefaultSerializeable {
private listenerController;
static get default(): BarcodeCountFeedback;
success: Feedback;
failure: Feedback;
private _success;
get success(): Feedback;
set success(success: Feedback);
private _failure;
get failure(): Feedback;
set failure(failure: Feedback);
private updateFeedback;
private static fromJSON;

@@ -7,0 +13,0 @@ private static get barcodeCountDefaults();

2

dist/dts/barcodecount/controller/BarcodeCountListenerController.d.ts

@@ -21,2 +21,3 @@ import { BarcodeCount } from "../BarcodeCount";

setModeEnabledState(enabled: boolean): void;
updateFeedback(feedbackJson: string): void;
}

@@ -37,2 +38,3 @@ export declare class BarcodeCountListenerController {

endScanningPhase(): void;
updateFeedback(feedbackJson: string): void;
setBarcodeCountCaptureList(barcodeCountCaptureList: BarcodeCountCaptureList): void;

@@ -39,0 +41,0 @@ private notifyListenersOfDidScanSession;

import { DefaultSerializeable, Feedback } from "scandit-datacapture-frameworks-core";
export declare class BarcodeFindFeedback extends DefaultSerializeable {
found: Feedback;
itemListUpdated: Feedback;
private controller;
private _found;
get found(): Feedback;
set found(success: Feedback);
private _itemListUpdated;
get itemListUpdated(): Feedback;
set itemListUpdated(failure: Feedback);
private updateFeedback;
private static get barcodeFindDefaults();
static get defaultFeedback(): BarcodeFindFeedback;
}

@@ -16,2 +16,3 @@ import { BaseController } from "scandit-datacapture-frameworks-core";

submitBarcodeFindTransformerResult(transformedBarcode: string | null): Promise<void>;
updateFeedback(feedbackJson: string): Promise<void>;
}

@@ -41,2 +42,3 @@ export declare enum BarcodeFindListenerEvents {

dispose(): void;
updateFeedback(feedbackJson: string): Promise<void>;
}

@@ -5,3 +5,3 @@ import { BaseController } from "scandit-datacapture-frameworks-core";

export declare enum BarcodeFindViewEvents {
onFinishButtonTappedEventName = "FrameworksBarcodeFindViewUiListener.onFinishButtonTapped"
onFinishButtonTappedEventName = "BarcodeFindViewUiListener.onFinishButtonTapped"
}

@@ -8,0 +8,0 @@ export interface BarcodeFindViewProxy {

@@ -21,2 +21,3 @@ export * from "./BarcodePick";

export * from "./private/BrushForStateObject";
export * from "./BarcodePickStatusIconSettings";
export * from './Dot';

@@ -23,0 +24,0 @@ export * from './DotWithIcons';

@@ -7,2 +7,4 @@ import { Brush, DefaultSerializeable } from "scandit-datacapture-frameworks-core";

private _brushesForState;
private _minimumHighlightWidth;
private _minimumHighlightHeight;
private static get barcodePickDefaults();

@@ -12,2 +14,6 @@ constructor();

setBrushForState(brush: Brush, state: BarcodePickState): void;
get minimumHighlightHeight(): number;
set minimumHighlightHeight(value: number);
get minimumHighlightWidth(): number;
set minimumHighlightWidth(value: number);
}

@@ -5,2 +5,3 @@ import { Brush, DefaultSerializeable } from "scandit-datacapture-frameworks-core";

import { BarcodePickState } from "./BarcodePickState";
import { BarcodePickStatusIconSettings } from "./BarcodePickStatusIconSettings";
export declare class RectangularWithIcons extends DefaultSerializeable implements BarcodePickViewHighlightStyle {

@@ -11,2 +12,5 @@ private _type;

private _iconStyle;
private _statusIconSettings;
private _minimumHighlightWidth;
private _minimumHighlightHeight;
private static get barcodePickDefaults();

@@ -19,2 +23,8 @@ constructor();

set iconStyle(style: BarcodePickIconStyle);
get statusIconSettings(): BarcodePickStatusIconSettings;
set statusIconSettings(value: BarcodePickStatusIconSettings);
get minimumHighlightHeight(): number;
set minimumHighlightHeight(value: number);
get minimumHighlightWidth(): number;
set minimumHighlightWidth(value: number);
}

@@ -6,2 +6,7 @@ import { CameraSettings } from "scandit-datacapture-frameworks-core";

import { ArucoDictionary, SymbologySettings } from "../symbology";
interface BarcodePickStatusIconSettings {
maxSize: number;
minSize: number;
ratioToHighlightSize: number;
}
export interface BarcodePickDefaults {

@@ -41,2 +46,4 @@ RecommendedCameraSettings: CameraSettings;

brushesForState: BrushForStateObject[];
minimumHighlightWidth: number;
minimumHighlightHeight: number;
};

@@ -46,2 +53,5 @@ RectangularWithIcons: {

brushesForState: BrushForStateObject[];
statusIconSettings: BarcodePickStatusIconSettings;
minimumHighlightWidth: number;
minimumHighlightHeight: number;
};

@@ -52,4 +62,6 @@ };

};
BarcodePickStatusIconSettings: BarcodePickStatusIconSettings;
}
export declare function getBarcodePickDefaults(): BarcodePickDefaults;
export declare function parseBarcodePickDefaults(jsonDefaults: any): BarcodePickDefaults;
export {};
{
"name": "scandit-datacapture-frameworks-barcode",
"version": "6.27.1",
"version": "6.28.0-beta.1",
"description": "Barcode common package",

@@ -20,4 +20,4 @@ "author": {

"dependencies": {
"scandit-datacapture-frameworks-core": "6.27.1"
"scandit-datacapture-frameworks-core": "6.28.0-beta.1"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc