dynamsoft-camera-enhancer
Advanced tools
Comparing version 4.0.1 to 4.0.2-iv-202403142349
@@ -196,2 +196,1 @@ import { ImageSourceAdapter, EnumImagePixelFormat, Point, DSRect, Rect, Warning, ImageSourceErrorListener } from "dynamsoft-core"; | ||
} | ||
//# sourceMappingURL=CameraEnhancer.d.ts.map |
export declare class CameraEnhancerModule { | ||
static getVersion(): string; | ||
} | ||
//# sourceMappingURL=CameraEnhancerModule.d.ts.map |
@@ -229,2 +229,1 @@ import { DSRect, Rect } from "dynamsoft-core"; | ||
} | ||
//# sourceMappingURL=CameraView.d.ts.map |
@@ -19,6 +19,5 @@ import { DrawingStyle } from "../interface"; | ||
static getDrawingStyle(styleId: number): DrawingStyle; | ||
static getDrawingStyles(): Array<DrawingStyle>; | ||
static getAllDrawingStyles(): Array<DrawingStyle>; | ||
private static _updateDrawingStyle; | ||
static updateDrawingStyle(styleId: number, styleDefinition: DrawingStyle): void; | ||
} | ||
//# sourceMappingURL=DrawingStyleManager.d.ts.map |
@@ -9,2 +9,1 @@ export declare class Feedback { | ||
} | ||
//# sourceMappingURL=Feedback.d.ts.map |
import { DSImageData } from "dynamsoft-core"; | ||
import { View } from "./View"; | ||
import DrawingLayer from "./drawinglayer"; | ||
import { DrawingLayer } from "./DrawingLayer"; | ||
export declare class ImageEditorView extends View { | ||
@@ -65,2 +65,1 @@ #private; | ||
} | ||
//# sourceMappingURL=ImageEditorView.d.ts.map |
@@ -9,2 +9,1 @@ export declare class InnerComponent extends HTMLElement { | ||
} | ||
//# sourceMappingURL=InnerComponent.d.ts.map |
@@ -8,2 +8,1 @@ export declare class TimeCharger { | ||
} | ||
//# sourceMappingURL=TimeCharger.d.ts.map |
@@ -1,5 +0,5 @@ | ||
import DrawingLayer from "./drawinglayer"; | ||
import { DrawingLayersManager } from "./drawinglayermanager"; | ||
import { DrawingLayer } from "./DrawingLayer"; | ||
import { DrawingLayerManager } from "./DrawingLayerManager"; | ||
import { InnerComponent } from "./InnerComponent"; | ||
import { DT_Text } from "./drawingItem"; | ||
import { DrawingItem, DT_Text } from "./DrawingItem"; | ||
import { TipConfig } from "../interface"; | ||
@@ -23,3 +23,3 @@ declare class DT_Tip extends DT_Text { | ||
/** @ignore */ | ||
_drawingLayersManager: DrawingLayersManager; | ||
_drawingLayerManager: DrawingLayerManager; | ||
/** @ignore */ | ||
@@ -69,3 +69,3 @@ _layerBaseCvs: HTMLCanvasElement; | ||
}): void; | ||
getSelectedDrawingItems(): any[]; | ||
getSelectedDrawingItems(): Array<DrawingItem>; | ||
setTipConfig(tipConfig: TipConfig): void; | ||
@@ -78,2 +78,1 @@ getTipConfig(): TipConfig; | ||
export {}; | ||
//# sourceMappingURL=View.d.ts.map |
@@ -11,2 +11,1 @@ export declare enum EnumDrawingItemMediaType { | ||
} | ||
//# sourceMappingURL=EnumDrawingItemMediaType.d.ts.map |
@@ -5,2 +5,1 @@ export declare enum EnumDrawingItemState { | ||
} | ||
//# sourceMappingURL=EnumDrawingItemState.d.ts.map |
@@ -6,2 +6,1 @@ export declare enum EnumEnhancedFeatures { | ||
} | ||
//# sourceMappingURL=EnumEnhancedFeatures.d.ts.map |
export * from "./EnumDrawingItemMediaType"; | ||
export * from "./EnumDrawingItemState"; | ||
export * from "./EnumEnhancedFeatures"; | ||
export * from "./enumPixelFormat"; | ||
//# sourceMappingURL=index.d.ts.map | ||
export * from "./EnumPixelFormat"; |
import { CameraEnhancerModule } from "./class/CameraEnhancerModule"; | ||
import { CameraView } from "./class/CameraView"; | ||
import { CameraEnhancer } from "./class/CameraEnhancer"; | ||
import { ImageEditorView } from "./class/ImageEditorView"; | ||
import { CameraEnhancer } from "./class/CameraEnhancer"; | ||
import { DT_Rect, DT_Image, DT_Text, DT_Line, DT_Quad } from "./class/drawingItem"; | ||
import { DrawingLayer } from './class/DrawingLayer'; | ||
import { DT_Rect as RectDrawingItem, DT_Image as ImageDrawingItem, DT_Text as TextDrawingItem, DT_Line as LineDrawingItem, DT_Quad as QuadDrawingItem, DrawingItem } from "./class/DrawingItem"; | ||
import { Feedback } from "./class/Feedback"; | ||
@@ -10,10 +11,2 @@ import { DrawingStyleManager } from "./class/DrawingStyleManager"; | ||
export * from "./interface"; | ||
declare const DrawingItem: { | ||
RectDrawingItem: typeof DT_Rect; | ||
ImageDrawingItem: typeof DT_Image; | ||
TextDrawingItem: typeof DT_Text; | ||
LineDrawingItem: typeof DT_Line; | ||
QuadDrawingItem: typeof DT_Quad; | ||
}; | ||
export { CameraEnhancerModule, CameraView, ImageEditorView, DrawingStyleManager, CameraEnhancer, Feedback, DrawingItem, }; | ||
//# sourceMappingURL=index.d.ts.map | ||
export { CameraEnhancerModule, CameraView, ImageEditorView, CameraEnhancer, Feedback, type DrawingLayer, type DrawingItem, RectDrawingItem, ImageDrawingItem, TextDrawingItem, LineDrawingItem, QuadDrawingItem, DrawingStyleManager, }; |
@@ -8,2 +8,1 @@ import { DSImageData } from "dynamsoft-core"; | ||
} | ||
//# sourceMappingURL=DCEFrame.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import { DrawingItem } from "../class/drawingItem"; | ||
import { DrawingItem } from "../class/DrawingItem"; | ||
export interface DrawingItemEvent extends Event { | ||
@@ -9,2 +9,1 @@ targetItem: DrawingItem; | ||
} | ||
//# sourceMappingURL=DrawingItemEvent.d.ts.map |
@@ -10,2 +10,1 @@ export interface DrawingStyle { | ||
} | ||
//# sourceMappingURL=DrawingStyle.d.ts.map |
@@ -5,7 +5,6 @@ export * from "./DCEFrame"; | ||
export * from "./Note"; | ||
export * from "./playcallbackinfo"; | ||
export * from "./PlayCallbackInfo"; | ||
export * from "./Resolution"; | ||
export * from "./TipConfig"; | ||
export * from "./videodeviceinfo"; | ||
export * from "./VideoDeviceInfo"; | ||
export * from "./VideoFrameTag"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -5,2 +5,1 @@ export interface Note { | ||
} | ||
//# sourceMappingURL=Note.d.ts.map |
@@ -5,2 +5,1 @@ export interface Resolution { | ||
} | ||
//# sourceMappingURL=Resolution.d.ts.map |
@@ -8,2 +8,1 @@ import { Point } from "dynamsoft-core"; | ||
} | ||
//# sourceMappingURL=TipConfig.d.ts.map |
@@ -12,2 +12,1 @@ import { ImageTag, DSRect } from "dynamsoft-core"; | ||
} | ||
//# sourceMappingURL=VideoFrameTag.d.ts.map |
@@ -14,2 +14,1 @@ export declare class EventHandler { | ||
} | ||
//# sourceMappingURL=EventHandler.d.ts.map |
export declare const fetchHtml: (url: string) => Promise<HTMLElement>; | ||
//# sourceMappingURL=fetchHtml.d.ts.map |
@@ -8,2 +8,1 @@ type PointInit = { | ||
export {}; | ||
//# sourceMappingURL=geometric.d.ts.map |
@@ -6,2 +6,1 @@ export * from "./TypeCheck"; | ||
export * from "./fetchHtml"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -12,2 +12,1 @@ export declare class Matrix3 { | ||
} | ||
//# sourceMappingURL=Matrix3.d.ts.map |
@@ -17,2 +17,1 @@ import { DSRect, Rect } from "dynamsoft-core"; | ||
} | ||
//# sourceMappingURL=ScanRegionConverter.d.ts.map |
@@ -104,2 +104,1 @@ import { DCEFrame, DrawingStyle, Note, Resolution, TipConfig, VideoFrameTag } from "../interface"; | ||
export declare const isVideoFrameTag: (value: any) => value is VideoFrameTag; | ||
//# sourceMappingURL=TypeCheck.d.ts.map |
@@ -0,1 +1,5 @@ | ||
=================================================================================== | ||
>>>>>>>>>>>>>>>>>>>>>>>>>>>> dynamsoft-camera-enhancer <<<<<<<<<<<<<<<<<<<<<<<<<<<< | ||
=================================================================================== | ||
Legal Notices: | ||
@@ -2,0 +6,0 @@ |
{ | ||
"name": "dynamsoft-camera-enhancer", | ||
"version": "4.0.1", | ||
"version": "4.0.2-iv-202403142349", | ||
"description": "Allow your website to easily control cameras on desktop and mobile devices.", | ||
@@ -23,3 +23,3 @@ "private": false, | ||
"registry": "https://registry.npmjs.org/", | ||
"tag": "latest" | ||
"tag": "iv" | ||
}, | ||
@@ -62,2 +62,8 @@ "author": { | ||
"updateDBR:dev": "updateImportedPkg --package=dynamsoft-barcode-reader --dev", | ||
"overridesCore:prod": "npm pkg delete overrides.dynamsoft-core && npm pkg set dependencies.dynamsoft-core=version", | ||
"overridesCore:dev": "npm pkg set overrides.dynamsoft-core=$dynamsoft-core && npm pkg set dependencies.dynamsoft-core=npm:@dynamsoft/dynamsoft-core@latest && npm update dynamsoft-core --no-package-lock", | ||
"overridesDBR:prod": "npm pkg delete overrides.dynamsoft-barcode-reader && npm pkg set devDependencies.dynamsoft-barcode-reader=version", | ||
"overridesDBR:dev": "npm pkg set overrides.dynamsoft-barcode-reader=$dynamsoft-barcode-reader && npm pkg set devDependencies.dynamsoft-barcode-reader=npm:@dynamsoft/dynamsoft-barcode-reader@latest && npm update dynamsoft-barcode-reader --no-package-lock", | ||
"overridesCVR:prod": "npm pkg delete overrides.dynamsoft-capture-vision-router && npm pkg set devDependencies.dynamsoft-capture-vision-router=version", | ||
"overridesCVR:dev": "npm pkg set overrides.dynamsoft-capture-vision-router=$dynamsoft-capture-vision-router && npm pkg set devDependencies.dynamsoft-capture-vision-router=npm:@dynamsoft/dynamsoft-capture-vision-router@latest && npm update dynamsoft-capture-vision-router --no-package-lock", | ||
"_getSamples": "getSamples --url=https://github.com/Dynamsoft/camera-enhancer-javascript-samples.git --branch=_dev", | ||
@@ -84,5 +90,4 @@ "makeZip": "makeZip --package=dynamsoft-camera-enhancer --version=auto --sampleBranch=_dev --structure=new --otherPkgs=dynamsoft-capture-vision-std dynamsoft-core dynamsoft-license", | ||
"devDependencies": { | ||
"@dynamsoft/camera-manager": "^2.0.0", | ||
"@dynamsoft/dynamsoft-barcode-reader": "^10.0.20-dev-20231222153407", | ||
"@dynamsoft/rd2-scripts": "^0.1.4", | ||
"@dynamsoft/camera-manager": "^2.0.3", | ||
"@dynamsoft/rd2-scripts": "^0.1.15", | ||
"@dynamsoft/tools": "^0.0.1", | ||
@@ -96,2 +101,6 @@ "@rollup/plugin-node-resolve": "^13.3.0", | ||
"@types/node": "^20.4.2", | ||
"dm-fabric": "^5.1.17", | ||
"dm-howler": "^2.2.4", | ||
"dynamsoft-barcode-reader": "10.0.21", | ||
"dynamsoft-capture-vision-router": "2.0.32", | ||
"eruda": "^3.0.1", | ||
@@ -103,6 +112,5 @@ "rollup": "^2.79.1", | ||
"dependencies": { | ||
"dm-fabric": "^5.1.17", | ||
"dm-howler": "^2.2.4", | ||
"dynamsoft-core": "^3.0.30" | ||
} | ||
}, | ||
"overrides": {} | ||
} |
@@ -48,3 +48,3 @@ # Dynamsoft Camera Enhancer for Your Website | ||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.30/dist/core.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-core@3.0.30/dist/js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-license@3.0.20/dist/license.js"></script> | ||
@@ -57,3 +57,3 @@ <script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script> | ||
```html | ||
<script src="https://unpkg.com/dynamsoft-core@3.0.30/dist/core.js"></script> | ||
<script src="https://unpkg.com/dynamsoft-core@3.0.30/dist/js"></script> | ||
<script src="https://unpkg.com/dynamsoft-license@3.0.20/dist/license.js"></script> | ||
@@ -64,3 +64,3 @@ <script src="https://unpkg.com/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script> | ||
> In some rare cases, you might not be able to access the CDN. If this happens, you can use | ||
>- [https://download2.dynamsoft.com/packages/dynamsoft-core@3.0.30/dist/core.js](https://download2.dynamsoft.com/packages/dynamsoft-core@3.0.30/dist/core.js) | ||
>- [https://download2.dynamsoft.com/packages/dynamsoft-core@3.0.30/dist/js](https://download2.dynamsoft.com/packages/dynamsoft-core@3.0.30/dist/js) | ||
>- [https://download2.dynamsoft.com/packages/dynamsoft-license@3.0.20/dist/license.js](https://download2.dynamsoft.com/packages/dynamsoft-license@3.0.20/dist/license.js) | ||
@@ -96,3 +96,3 @@ >- [https://download2.dynamsoft.com/packages/dynamsoft-camera-enhancer@4.0.1/dist/dce.js](https://download2.dynamsoft.com/packages/dynamsoft-camera-enhancer@4.0.1/dist/dce.js) | ||
```html | ||
<script src="./dynamsoft-camera-enhancer-js-4.0.1/dynamsoft/distributables/dynamsoft-core@3.0.30/dist/core.js"></script> | ||
<script src="./dynamsoft-camera-enhancer-js-4.0.1/dynamsoft/distributables/dynamsoft-core@3.0.30/dist/js"></script> | ||
<script src="./dynamsoft-camera-enhancer-js-4.0.1/dynamsoft/distributables/dynamsoft-camera-enhancer@4.0.1/dist/dce.js"></script> | ||
@@ -104,3 +104,3 @@ ``` | ||
```html | ||
<script src="./node_modules/dynamsoft-core/dist/core.js"></script> | ||
<script src="./node_modules/dynamsoft-core/dist/js"></script> | ||
<script src="./node_modules/dynamsoft-camera-enhancer/dist/dce.js"></script> | ||
@@ -107,0 +107,0 @@ ``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1732578
1
7525
18
4
- Removeddm-fabric@^5.1.17
- Removeddm-howler@^2.2.4
- Removeddm-fabric@5.1.17(transitive)
- Removeddm-howler@2.2.4(transitive)