reykit 1.0.138 → 1.0.140
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/index.js +9 -7
- package/dist/src/image.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -49440,15 +49440,17 @@ async function xI(a, i = "qrcode.png") {
|
|
|
49440
49440
|
const u = await cC.toDataURL(a), m = await (await fetch(u)).blob();
|
|
49441
49441
|
kj(m, i);
|
|
49442
49442
|
}
|
|
49443
|
-
async function SI(a, i
|
|
49443
|
+
async function SI(a, i, {
|
|
49444
|
+
width: u,
|
|
49445
|
+
margin: d = 4
|
|
49446
|
+
}) {
|
|
49444
49447
|
if (typeof i == "string") {
|
|
49445
|
-
const
|
|
49446
|
-
if (!
|
|
49447
|
-
i =
|
|
49448
|
+
const g = document.getElementById(i);
|
|
49449
|
+
if (!g) throw new Error("element id not exists");
|
|
49450
|
+
i = g;
|
|
49448
49451
|
}
|
|
49449
|
-
|
|
49450
|
-
|
|
49451
|
-
i.setAttribute("src", u);
|
|
49452
|
+
const m = await cC.toDataURL(a, { width: u, margin: d });
|
|
49453
|
+
i.setAttribute("src", m);
|
|
49452
49454
|
}
|
|
49453
49455
|
const EI = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
49454
49456
|
__proto__: null,
|
package/dist/src/image.d.ts
CHANGED
|
@@ -22,5 +22,10 @@ export declare function downloadQrcode(text: string, fileName?: string): Promise
|
|
|
22
22
|
*
|
|
23
23
|
* @param text - QRCode Text.
|
|
24
24
|
* @param element - Element instance or id.
|
|
25
|
+
* @param options.width - Width of Minimum pixel.
|
|
26
|
+
* @param options.margin - Number of margin blank square.
|
|
25
27
|
*/
|
|
26
|
-
export declare function setElementQrcode(text: string, element: HTMLElement | string
|
|
28
|
+
export declare function setElementQrcode(text: string, element: HTMLElement | string, { width, margin }: {
|
|
29
|
+
width?: number;
|
|
30
|
+
margin?: number;
|
|
31
|
+
}): Promise<void>;
|