@bluepic/embed 0.4.0-next.90 → 0.4.0-next.92
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/bluepic-embed.iife.js +109 -109
- package/dist/bluepic-embed.umd.js +109 -109
- package/dist/components/fields/ImageEdit.vue.d.ts +7 -0
- package/dist/main.cjs +112 -112
- package/dist/main.d.ts +2 -0
- package/dist/main.mjs +40609 -39630
- package/dist/style.css +1 -1
- package/dist/util/autoCrop/applyAutoCrop.d.ts +20 -0
- package/dist/util/autoCrop/index.d.ts +5 -0
- package/dist/util/autoCrop/registry.d.ts +12 -0
- package/dist/util/autoCrop/solveAutoCrop.d.ts +39 -0
- package/dist/util/autoCrop/types.d.ts +29 -0
- package/dist/util/backgroundRemoval.d.ts +51 -0
- package/dist/util/cloudflareImages.d.ts +2 -0
- package/package.json +6 -4
|
@@ -19,6 +19,12 @@ type __VLS_Props = {
|
|
|
19
19
|
aspectRatio: number;
|
|
20
20
|
resetCropOnChange?: boolean;
|
|
21
21
|
allowPadding?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Frame the crop on detected faces after a new image arrives. Requires a
|
|
24
|
+
* detector registered via `setFaceDetector()`; without one this is a no-op,
|
|
25
|
+
* so it is safe to enable on hosts that don't ship the runtime.
|
|
26
|
+
*/
|
|
27
|
+
autoCrop?: boolean;
|
|
22
28
|
labelId?: string;
|
|
23
29
|
};
|
|
24
30
|
type __VLS_PublicProps = __VLS_Props & {
|
|
@@ -35,5 +41,6 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
35
41
|
mobile: boolean;
|
|
36
42
|
resetCropOnChange: boolean;
|
|
37
43
|
allowPadding: boolean;
|
|
44
|
+
autoCrop: boolean;
|
|
38
45
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
46
|
export default _default;
|