@awesomeqr/react
Advanced tools
Comparing version 0.0.1-beta.12 to 0.0.1-beta.13
@@ -1,123 +0,3 @@ | ||
/// <reference types="node" /> | ||
import { Options } from "awesome-qr"; | ||
import React from "react"; | ||
export declare type Options = { | ||
/** | ||
* Text to be encoded in the QR code. | ||
*/ | ||
text: string; | ||
/** | ||
* Size of the QR code in pixel. | ||
* | ||
* @defaultValue 400 | ||
*/ | ||
size?: number; | ||
/** | ||
* Size of margins around the QR code body in pixel. | ||
* | ||
* @defaultValue 20 | ||
*/ | ||
margin?: number; | ||
/** | ||
* Error correction level of the QR code. | ||
* | ||
* Accepts a value provided by _QRErrorCorrectLevel_. | ||
* | ||
* For more information, please refer to [https://www.qrcode.com/en/about/error_correction.html](https://www.qrcode.com/en/about/error_correction.html). | ||
* | ||
* @defaultValue 0 | ||
*/ | ||
correctLevel?: number; | ||
/** | ||
* Color of the blocks on the QR code. | ||
* | ||
* Accepts a CSS <color>. | ||
* | ||
* For more information about CSS <color>, please refer to [https://developer.mozilla.org/en-US/docs/Web/CSS/color_value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value). | ||
* | ||
* @defaultValue "#000000" | ||
*/ | ||
colorDark?: string; | ||
/** | ||
* Color of the empty areas on the QR code. | ||
* | ||
* Accepts a CSS <color>. | ||
* | ||
* For more information about CSS <color>, please refer to [https://developer.mozilla.org/en-US/docs/Web/CSS/color_value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value). | ||
* | ||
* @defaultValue "#ffffff" | ||
*/ | ||
colorLight?: string; | ||
/** | ||
* Automatically calculate the _colorLight_ value from the QR code's background. | ||
* | ||
* @defaultValue true | ||
*/ | ||
autoColor?: boolean; | ||
/** | ||
* Background image to be used in the QR code. | ||
* | ||
* Accepts a `data:` string in web browsers or a Buffer in Node.js. | ||
* | ||
* @defaultValue undefined | ||
*/ | ||
backgroundImage?: string | Buffer; | ||
/** | ||
* Color of the dimming mask above the background image. | ||
* | ||
* Accepts a CSS <color>. | ||
* | ||
* For more information about CSS <color>, please refer to [https://developer.mozilla.org/en-US/docs/Web/CSS/color_value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value). | ||
* | ||
* @defaultValue "rgba(0, 0, 0, 0)" | ||
*/ | ||
backgroundDimming?: string; | ||
/** | ||
* GIF background image to be used in the QR code. | ||
* | ||
* @defaultValue undefined | ||
*/ | ||
gifBackground?: ArrayBuffer; | ||
/** | ||
* Use a white margin instead of a transparent one which reveals the background of the QR code on margins. | ||
* | ||
* @defaultValue true | ||
*/ | ||
whiteMargin?: boolean; | ||
/** | ||
* Ratio of the real size to the full size of the blocks. | ||
* | ||
* This can be helpful when you want to make more parts of the background visible. | ||
* | ||
* @deafultValue 0.4 | ||
*/ | ||
dotScale?: number; | ||
/** | ||
* Logo image to be displayed at the center of the QR code. | ||
* | ||
* Accepts a `data:` string in web browsers or a Buffer in Node.js. | ||
* | ||
* When set to `undefined` or `null`, the logo is disabled. | ||
* | ||
* @defaultValue undefined | ||
*/ | ||
logoImage?: string; | ||
/** | ||
* Ratio of the logo size to the QR code size. | ||
* | ||
* @defaultValue 0.2 | ||
*/ | ||
logoScale?: number; | ||
/** | ||
* Size of margins around the logo image in pixels. | ||
* | ||
* @defaultValue 6 | ||
*/ | ||
logoMargin?: number; | ||
/** | ||
* Corner radius of the logo image in pixels. | ||
* | ||
* @defaultValue 8 | ||
*/ | ||
logoCornerRadius?: number; | ||
}; | ||
export declare const AwesomeQRCode: React.FC<Partial<Options>>; |
{ | ||
"name": "@awesomeqr/react", | ||
"version": "0.0.1-beta.12", | ||
"version": "0.0.1-beta.13", | ||
"description": "A React Component for Awesome-qr.js", | ||
@@ -24,3 +24,3 @@ "keywords": [ | ||
"build": "rollup -c", | ||
"prepare": "rollup -c" | ||
"prepublishOnly": "rollup -c" | ||
}, | ||
@@ -67,2 +67,3 @@ "author": "Makito <sumimakito@hotmail.com>", | ||
"rollup-plugin-delete": "^2.0.0", | ||
"rollup-plugin-dts": "^2.0.1", | ||
"rollup-plugin-peer-deps-external": "^2.2.4", | ||
@@ -69,0 +70,0 @@ "rollup-plugin-typescript2": "^0.29.0", |
@@ -5,29 +5,37 @@ import commonjs from "@rollup/plugin-commonjs"; | ||
import typescript from "rollup-plugin-typescript2"; | ||
import dts from "rollup-plugin-dts"; | ||
import packageJson from "./package.json"; | ||
export default { | ||
input: "./src/index.ts", | ||
output: [ | ||
{ | ||
file: packageJson.main, | ||
format: "cjs", | ||
sourcemap: true, | ||
}, | ||
{ | ||
file: packageJson.module, | ||
format: "esm", | ||
sourcemap: true, | ||
}, | ||
], | ||
plugins: [ | ||
peerDepsExternal(), | ||
resolve({ | ||
module: true, | ||
jsnext: true, | ||
main: true, | ||
browser: true, | ||
}), | ||
commonjs(), | ||
typescript(), | ||
], | ||
}; | ||
export default [ | ||
{ | ||
input: "./src/index.ts", | ||
output: [ | ||
{ | ||
file: packageJson.main, | ||
format: "cjs", | ||
sourcemap: true, | ||
}, | ||
{ | ||
file: packageJson.module, | ||
format: "esm", | ||
sourcemap: true, | ||
}, | ||
], | ||
plugins: [ | ||
peerDepsExternal(), | ||
resolve({ | ||
module: true, | ||
jsnext: true, | ||
main: true, | ||
browser: true, | ||
}), | ||
commonjs(), | ||
typescript(), | ||
], | ||
}, | ||
{ | ||
input: "./src/index.ts", | ||
output: [{ file: "./lib/index.d.ts", format: "es" }], | ||
plugins: [dts({ respectExternal: true })], | ||
}, | ||
]; |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
1692236
14038
25