Compare commits

...

2 Commits
master ... v4

Author SHA1 Message Date
shadowwind
a7419022fc
fix(themeable-browser):update option type (#4306)
change ThemeableBrowserOptions.fullscreen type

https://github.com/initialxy/cordova-plugin-themeablebrowser/blob/master/src/android/ThemeableBrowser.java#L1406
2022-10-09 16:41:12 +02:00
rupendraa
ca7ab1569b
feat(camera-preview): add storeToFile option (#4294)
/** Capture images to a file and return back the file path instead of returning base64 encoded data. */
  storeToFile: boolean;
2022-09-05 19:00:12 +02:00
2 changed files with 4 additions and 1 deletions

View File

@ -31,6 +31,9 @@ export interface CameraPreviewOptions {
/** Preview box drag across the screen, default 'false' */
previewDrag?: boolean;
/** Capture images to a file and return back the file path instead of returning base64 encoded data. */
storeToFile: boolean;
/** Preview box to the back of the webview (true => back, false => front) , default false */
toBack?: boolean;

View File

@ -64,7 +64,7 @@ export interface ThemeableBrowserOptions {
presentationstyle?: string;
transitionstyle?: string;
toolbarposition?: string;
fullscreen?: string;
fullscreen?: boolean;
}
/**