UNPKG

react-pdf-selection

Version:

Library of React components needed for text and area selections in PDF documents.

24 lines (23 loc) 1.04 kB
"use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.AreaSelection = void 0; var react_1 = __importDefault(require("react")); var AreaSelection = function (_a) { var areaSelection = _a.areaSelection; return (react_1.default.createElement("div", { style: __assign(__assign({}, areaSelection.position.boundingRect), { position: "absolute", border: "1px dashed #333", background: "rgba(252, 232, 151, 1)", mixBlendMode: "multiply" }) })); }; exports.AreaSelection = AreaSelection;