@campxdev/pdfme 1.1.0 → 1.2.1
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/cjs/chunks/{helper-DU7Bm8ZQ.js → helper-C2o2tpNj.js} +2 -1
- package/dist/cjs/chunks/{index-Co0Y0KJj.js → index-CXm3doOM.js} +31 -4
- package/dist/cjs/chunks/{index-mgS9yYj7.js → index-dHRmLCnu.js} +4 -4
- package/dist/cjs/chunks/{index-BzWo8eqh.js → index-qB7eb2BC.js} +2 -2
- package/dist/cjs/chunks/{pluginRegistry-DlJQZP6L.js → pluginRegistry-Ba3ANzzx.js} +1 -1
- package/dist/cjs/common.js +3 -3
- package/dist/cjs/converter.js +1 -1
- package/dist/cjs/generator.js +3 -3
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/print-designer-editor.js +223 -128
- package/dist/cjs/schemas.js +3 -3
- package/dist/cjs/ui.js +106 -83
- package/dist/esm/chunks/{helper-C8LqGaF4.js → helper-D7XF1bxK.js} +2 -1
- package/dist/esm/chunks/{index-d0iAk7OA.js → index-D1FuD_XZ.js} +3 -3
- package/dist/esm/chunks/{index-Rwcd_Vzj.js → index-pDt5vVVj.js} +4 -4
- package/dist/esm/chunks/{index-CwqHuiCe.js → index-qTsnfbi7.js} +32 -5
- package/dist/esm/chunks/{pluginRegistry-C0a91XEw.js → pluginRegistry-DEA2P0ud.js} +1 -1
- package/dist/esm/common.js +3 -3
- package/dist/esm/converter.js +1 -1
- package/dist/esm/generator.js +3 -3
- package/dist/esm/index.js +5 -5
- package/dist/esm/print-designer-editor.js +224 -129
- package/dist/esm/schemas.js +5 -5
- package/dist/esm/ui.js +106 -83
- package/dist/types/_vendors/common/constants.d.ts +20 -0
- package/dist/types/_vendors/common/dynamicTemplate.d.ts +27 -0
- package/dist/types/_vendors/common/expression.d.ts +6 -0
- package/dist/types/_vendors/common/fontData.d.ts +29 -0
- package/dist/types/_vendors/common/helper.d.ts +37 -0
- package/dist/types/_vendors/common/index.d.ts +9 -0
- package/dist/types/_vendors/common/pluginRegistry.d.ts +5 -0
- package/dist/types/_vendors/common/schema.d.ts +822 -0
- package/dist/types/_vendors/common/types.d.ts +189 -0
- package/dist/types/_vendors/common/version.d.ts +1 -0
- package/dist/types/_vendors/converter/img2pdf.d.ts +12 -0
- package/dist/types/_vendors/converter/index.browser.d.ts +8 -0
- package/dist/types/_vendors/converter/index.node.d.ts +8 -0
- package/dist/types/_vendors/converter/pdf2img.d.ts +17 -0
- package/dist/types/_vendors/converter/pdf2size.d.ts +10 -0
- package/dist/types/_vendors/generator/constants.d.ts +1 -0
- package/dist/types/_vendors/generator/generate.d.ts +3 -0
- package/dist/types/_vendors/generator/helper.d.ts +29 -0
- package/dist/types/_vendors/generator/index.d.ts +2 -0
- package/dist/types/_vendors/generator/types.d.ts +20 -0
- package/dist/types/_vendors/manipulator/index.d.ts +46 -0
- package/dist/types/_vendors/pdf-lib/api/Embeddable.d.ts +7 -0
- package/dist/types/_vendors/pdf-lib/api/PDFDocument.d.ts +778 -0
- package/dist/types/_vendors/pdf-lib/api/PDFDocumentOptions.d.ts +38 -0
- package/dist/types/_vendors/pdf-lib/api/PDFEmbeddedFile.d.ts +38 -0
- package/dist/types/_vendors/pdf-lib/api/PDFEmbeddedPage.d.ts +73 -0
- package/dist/types/_vendors/pdf-lib/api/PDFFont.d.ts +94 -0
- package/dist/types/_vendors/pdf-lib/api/PDFImage.d.ts +95 -0
- package/dist/types/_vendors/pdf-lib/api/PDFJavaScript.d.ts +38 -0
- package/dist/types/_vendors/pdf-lib/api/PDFPage.d.ts +910 -0
- package/dist/types/_vendors/pdf-lib/api/PDFPageOptions.d.ts +172 -0
- package/dist/types/_vendors/pdf-lib/api/StandardFonts.d.ts +16 -0
- package/dist/types/_vendors/pdf-lib/api/colors.d.ts +34 -0
- package/dist/types/_vendors/pdf-lib/api/errors.d.ts +42 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFButton.d.ts +137 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFCheckBox.d.ts +142 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFDropdown.d.ts +402 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFField.d.ts +203 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFForm.d.ts +411 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFOptionList.d.ts +335 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFRadioGroup.d.ts +252 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFSignature.d.ts +29 -0
- package/dist/types/_vendors/pdf-lib/api/form/PDFTextField.d.ts +537 -0
- package/dist/types/_vendors/pdf-lib/api/form/appearances.d.ts +41 -0
- package/dist/types/_vendors/pdf-lib/api/form/index.d.ts +10 -0
- package/dist/types/_vendors/pdf-lib/api/image/alignment.d.ts +5 -0
- package/dist/types/_vendors/pdf-lib/api/image/index.d.ts +1 -0
- package/dist/types/_vendors/pdf-lib/api/index.d.ts +20 -0
- package/dist/types/_vendors/pdf-lib/api/objects.d.ts +4 -0
- package/dist/types/_vendors/pdf-lib/api/operations.d.ts +226 -0
- package/dist/types/_vendors/pdf-lib/api/operators.d.ts +90 -0
- package/dist/types/_vendors/pdf-lib/api/rotations.d.ts +38 -0
- package/dist/types/_vendors/pdf-lib/api/sizes.d.ts +52 -0
- package/dist/types/_vendors/pdf-lib/api/svg.d.ts +70 -0
- package/dist/types/_vendors/pdf-lib/api/svgPath.d.ts +2 -0
- package/dist/types/_vendors/pdf-lib/api/text/alignment.d.ts +5 -0
- package/dist/types/_vendors/pdf-lib/api/text/index.d.ts +2 -0
- package/dist/types/_vendors/pdf-lib/api/text/layout.d.ts +54 -0
- package/dist/types/_vendors/pdf-lib/core/PDFContext.d.ts +84 -0
- package/dist/types/_vendors/pdf-lib/core/PDFObjectCopier.d.ts +37 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroButton.d.ts +21 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroCheckBox.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroChoice.d.ts +20 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroComboBox.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroField.d.ts +36 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroForm.d.ts +20 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroListBox.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroNonTerminal.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroPushButton.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroRadioButton.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroSignature.d.ts +7 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroTerminal.d.ts +16 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/PDFAcroText.d.ts +22 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/flags.d.ts +141 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/index.d.ts +15 -0
- package/dist/types/_vendors/pdf-lib/core/acroform/utils.d.ts +6 -0
- package/dist/types/_vendors/pdf-lib/core/annotation/AppearanceCharacteristics.d.ts +33 -0
- package/dist/types/_vendors/pdf-lib/core/annotation/BorderStyle.d.ts +11 -0
- package/dist/types/_vendors/pdf-lib/core/annotation/PDFAnnotation.d.ts +51 -0
- package/dist/types/_vendors/pdf-lib/core/annotation/PDFWidgetAnnotation.d.ts +26 -0
- package/dist/types/_vendors/pdf-lib/core/annotation/flags.d.ts +79 -0
- package/dist/types/_vendors/pdf-lib/core/annotation/index.d.ts +4 -0
- package/dist/types/_vendors/pdf-lib/core/crypto.d.ts +95 -0
- package/dist/types/_vendors/pdf-lib/core/document/PDFCrossRefSection.d.ts +27 -0
- package/dist/types/_vendors/pdf-lib/core/document/PDFHeader.d.ts +10 -0
- package/dist/types/_vendors/pdf-lib/core/document/PDFTrailer.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/core/document/PDFTrailerDict.d.ts +10 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/CMap.d.ts +3 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/CustomFontEmbedder.d.ts +44 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/CustomFontSubsetEmbedder.d.ts +20 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/FileEmbedder.d.ts +33 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/FontFlags.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/JavaScriptEmbedder.d.ts +10 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/JpegEmbedder.d.ts +23 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/PDFPageEmbedder.d.ts +37 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/PngEmbedder.d.ts +19 -0
- package/dist/types/_vendors/pdf-lib/core/embedders/StandardFontEmbedder.d.ts +36 -0
- package/dist/types/_vendors/pdf-lib/core/errors.d.ts +91 -0
- package/dist/types/_vendors/pdf-lib/core/index.d.ts +47 -0
- package/dist/types/_vendors/pdf-lib/core/interactive/ViewerPreferences.d.ts +347 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFArray.d.ts +63 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFBool.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFDict.d.ts +62 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFHexString.d.ts +16 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFInvalidObject.d.ts +11 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFName.d.ts +41 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFNull.d.ts +10 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFNumber.d.ts +15 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFObject.d.ts +8 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFRawStream.d.ts +16 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFRef.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFStream.d.ts +16 -0
- package/dist/types/_vendors/pdf-lib/core/objects/PDFString.d.ts +16 -0
- package/dist/types/_vendors/pdf-lib/core/operators/PDFOperator.d.ts +19 -0
- package/dist/types/_vendors/pdf-lib/core/operators/PDFOperatorNames.d.ts +76 -0
- package/dist/types/_vendors/pdf-lib/core/parser/BaseParser.d.ts +14 -0
- package/dist/types/_vendors/pdf-lib/core/parser/ByteStream.d.ts +26 -0
- package/dist/types/_vendors/pdf-lib/core/parser/PDFObjectParser.d.ts +31 -0
- package/dist/types/_vendors/pdf-lib/core/parser/PDFObjectStreamParser.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/parser/PDFParser.d.ts +46 -0
- package/dist/types/_vendors/pdf-lib/core/parser/PDFXRefStreamParser.d.ts +21 -0
- package/dist/types/_vendors/pdf-lib/core/streams/Ascii85Stream.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/core/streams/AsciiHexStream.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/core/streams/DecodeStream.d.ts +26 -0
- package/dist/types/_vendors/pdf-lib/core/streams/DecryptStream.d.ts +12 -0
- package/dist/types/_vendors/pdf-lib/core/streams/FlateStream.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/streams/LZWStream.d.ts +12 -0
- package/dist/types/_vendors/pdf-lib/core/streams/RunLengthStream.d.ts +8 -0
- package/dist/types/_vendors/pdf-lib/core/streams/Stream.d.ts +34 -0
- package/dist/types/_vendors/pdf-lib/core/streams/decode.d.ts +3 -0
- package/dist/types/_vendors/pdf-lib/core/structures/PDFCatalog.d.ts +27 -0
- package/dist/types/_vendors/pdf-lib/core/structures/PDFContentStream.d.ts +15 -0
- package/dist/types/_vendors/pdf-lib/core/structures/PDFCrossRefStream.d.ts +53 -0
- package/dist/types/_vendors/pdf-lib/core/structures/PDFFlateStream.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/core/structures/PDFObjectStream.d.ts +20 -0
- package/dist/types/_vendors/pdf-lib/core/structures/PDFPageLeaf.d.ts +54 -0
- package/dist/types/_vendors/pdf-lib/core/structures/PDFPageTree.d.ts +41 -0
- package/dist/types/_vendors/pdf-lib/core/syntax/CharCodes.d.ts +61 -0
- package/dist/types/_vendors/pdf-lib/core/syntax/Delimiters.d.ts +1 -0
- package/dist/types/_vendors/pdf-lib/core/syntax/Irregular.d.ts +1 -0
- package/dist/types/_vendors/pdf-lib/core/syntax/Keywords.d.ts +22 -0
- package/dist/types/_vendors/pdf-lib/core/syntax/Numeric.d.ts +3 -0
- package/dist/types/_vendors/pdf-lib/core/syntax/Whitespace.d.ts +1 -0
- package/dist/types/_vendors/pdf-lib/core/writers/PDFStreamWriter.d.ts +19 -0
- package/dist/types/_vendors/pdf-lib/core/writers/PDFWriter.d.ts +29 -0
- package/dist/types/_vendors/pdf-lib/index.d.ts +4 -0
- package/dist/types/_vendors/pdf-lib/types/fontkit.d.ts +597 -0
- package/dist/types/_vendors/pdf-lib/types/index.d.ts +25 -0
- package/dist/types/_vendors/pdf-lib/types/matrix.d.ts +21 -0
- package/dist/types/_vendors/pdf-lib/utils/Cache.d.ts +10 -0
- package/dist/types/_vendors/pdf-lib/utils/arrays.d.ts +16 -0
- package/dist/types/_vendors/pdf-lib/utils/async.d.ts +5 -0
- package/dist/types/_vendors/pdf-lib/utils/base64.d.ts +10 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Arc.d.ts +22 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Circle.d.ts +14 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Ellipse.d.ts +20 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/GraphElement.d.ts +6 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Line.d.ts +23 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Plot.d.ts +11 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Point.d.ts +18 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Rectangle.d.ts +21 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/Segment.d.ts +19 -0
- package/dist/types/_vendors/pdf-lib/utils/elements/index.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/utils/errors.d.ts +1 -0
- package/dist/types/_vendors/pdf-lib/utils/index.d.ts +11 -0
- package/dist/types/_vendors/pdf-lib/utils/intersections.d.ts +9 -0
- package/dist/types/_vendors/pdf-lib/utils/maths.d.ts +45 -0
- package/dist/types/_vendors/pdf-lib/utils/numbers.d.ts +23 -0
- package/dist/types/_vendors/pdf-lib/utils/objects.d.ts +15 -0
- package/dist/types/_vendors/pdf-lib/utils/pdfDocEncoding.d.ts +7 -0
- package/dist/types/_vendors/pdf-lib/utils/png.d.ts +17 -0
- package/dist/types/_vendors/pdf-lib/utils/rng.d.ts +13 -0
- package/dist/types/_vendors/pdf-lib/utils/strings.d.ts +25 -0
- package/dist/types/_vendors/pdf-lib/utils/unicode.d.ts +186 -0
- package/dist/types/_vendors/pdf-lib/utils/validators.d.ts +26 -0
- package/dist/types/_vendors/print-designer-editor/Canvas.d.ts +12 -0
- package/dist/types/_vendors/print-designer-editor/PdfmeProvider.d.ts +4 -0
- package/dist/types/_vendors/print-designer-editor/PropPanel.d.ts +10 -0
- package/dist/types/_vendors/print-designer-editor/SchemaList.d.ts +10 -0
- package/dist/types/_vendors/print-designer-editor/index.d.ts +14 -0
- package/dist/types/_vendors/print-designer-editor/plugins.d.ts +1 -0
- package/dist/types/_vendors/print-designer-editor/types.d.ts +64 -0
- package/dist/types/_vendors/print-designer-editor/useDesigner.d.ts +84 -0
- package/dist/types/_vendors/print-designer-editor/useDesignerContext.d.ts +1 -0
- package/dist/types/_vendors/print-designer-editor/utils.d.ts +9 -0
- package/dist/types/_vendors/schemas/barcodes/constants.d.ts +4 -0
- package/dist/types/_vendors/schemas/barcodes/helper.d.ts +21 -0
- package/dist/types/_vendors/schemas/barcodes/index.d.ts +4 -0
- package/dist/types/_vendors/schemas/barcodes/pdfRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/barcodes/propPanel.d.ts +3 -0
- package/dist/types/_vendors/schemas/barcodes/types.d.ts +10 -0
- package/dist/types/_vendors/schemas/barcodes/uiRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/checkbox/index.d.ts +6 -0
- package/dist/types/_vendors/schemas/constants.d.ts +2 -0
- package/dist/types/_vendors/schemas/date/date.d.ts +2 -0
- package/dist/types/_vendors/schemas/date/dateTime.d.ts +2 -0
- package/dist/types/_vendors/schemas/date/helper.d.ts +8 -0
- package/dist/types/_vendors/schemas/date/time.d.ts +2 -0
- package/dist/types/_vendors/schemas/date/types.d.ts +17 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/core/cell.d.ts +17 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/core/index.d.ts +2 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/core/settings-validator.d.ts +10 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/core/table.d.ts +130 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/engines/layout.engine.d.ts +66 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/engines/overflow.engine.d.ts +36 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/index.d.ts +16 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/core/cell.interface.d.ts +13 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/core/index.d.ts +1 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/engines/index.d.ts +1 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/engines/layout-engine.interface.d.ts +36 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/index.d.ts +5 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/rules/index.d.ts +3 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/rules/rule-engine.interface.d.ts +21 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/rules/rule-registry.interface.d.ts +19 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/stores/cell-registry.interface.d.ts +12 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/stores/index.d.ts +3 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/stores/merge-registry.interface.d.ts +42 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/stores/structure-store.interface.d.ts +31 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/table/index.d.ts +1 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/interfaces/table/table.inteface.d.ts +63 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/renderers/types/renderable-types.d.ts +79 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/renderers/types/serialization.types.d.ts +46 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/ast.types.d.ts +117 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/compiler.d.ts +54 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/evaluator.d.ts +36 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/extract-deps.d.ts +8 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/functions/registry.d.ts +47 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/index.d.ts +20 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/lexer.d.ts +36 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/parser.d.ts +45 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/range-resolver.d.ts +25 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/scope-vocabulary.d.ts +25 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/text-measurer.d.ts +88 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/expression/var-catalog.d.ts +34 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/index.d.ts +13 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/rule-engine.d.ts +36 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/rule-matcher.d.ts +28 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/rule-registry.d.ts +32 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/types/evaluation.types.d.ts +178 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/types/index.d.ts +5 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/rules/types/rule.types.d.ts +78 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/stores/cell-registry.store.d.ts +20 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/stores/merge-registry.stores.d.ts +51 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/stores/structure.store.d.ts +39 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/styles/defaults.d.ts +7 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/styles/index.d.ts +2 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/styles/resolve.d.ts +12 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/types/common.d.ts +138 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/types/index.d.ts +1 -0
- package/dist/types/_vendors/schemas/dynamicTable/engine/types/rule-target.types.d.ts +89 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/cellSchemaMapper.d.ts +21 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/cellStyleControls.d.ts +6 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/domUtils.d.ts +24 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/propPanelWidgets.d.ts +13 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/regionStyleControls.d.ts +5 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/toast.d.ts +5 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/widgets/settingsWidgets.d.ts +16 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/widgets/structureWidget.d.ts +13 -0
- package/dist/types/_vendors/schemas/dynamicTable/helpers/widgets/styleWidgets.d.ts +20 -0
- package/dist/types/_vendors/schemas/dynamicTable/index.d.ts +4 -0
- package/dist/types/_vendors/schemas/dynamicTable/instanceManager.d.ts +18 -0
- package/dist/types/_vendors/schemas/dynamicTable/pdfRender.d.ts +8 -0
- package/dist/types/_vendors/schemas/dynamicTable/propPanel.d.ts +15 -0
- package/dist/types/_vendors/schemas/dynamicTable/types.d.ts +39 -0
- package/dist/types/_vendors/schemas/dynamicTable/uiComponents/addRemoveButtons.d.ts +6 -0
- package/dist/types/_vendors/schemas/dynamicTable/uiComponents/cellResizeInteractions.d.ts +17 -0
- package/dist/types/_vendors/schemas/dynamicTable/uiComponents/cellSelection.d.ts +16 -0
- package/dist/types/_vendors/schemas/dynamicTable/uiComponents/createButton.d.ts +14 -0
- package/dist/types/_vendors/schemas/dynamicTable/uiComponents/index.d.ts +4 -0
- package/dist/types/_vendors/schemas/dynamicTable/uiRender.d.ts +26 -0
- package/dist/types/_vendors/schemas/graphics/image.d.ts +5 -0
- package/dist/types/_vendors/schemas/graphics/imagehelper.d.ts +4 -0
- package/dist/types/_vendors/schemas/graphics/signature.d.ts +5 -0
- package/dist/types/_vendors/schemas/graphics/svg.d.ts +4 -0
- package/dist/types/_vendors/schemas/index.d.ts +22 -0
- package/dist/types/_vendors/schemas/insertVariableWidget.d.ts +9 -0
- package/dist/types/_vendors/schemas/multiVariableText/helper.d.ts +3 -0
- package/dist/types/_vendors/schemas/multiVariableText/index.d.ts +4 -0
- package/dist/types/_vendors/schemas/multiVariableText/pdfRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/multiVariableText/propPanel.d.ts +3 -0
- package/dist/types/_vendors/schemas/multiVariableText/types.d.ts +5 -0
- package/dist/types/_vendors/schemas/multiVariableText/uiRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/radioGroup/index.d.ts +7 -0
- package/dist/types/_vendors/schemas/select/index.d.ts +7 -0
- package/dist/types/_vendors/schemas/shapes/line.d.ts +6 -0
- package/dist/types/_vendors/schemas/shapes/rectAndEllipse.d.ts +175 -0
- package/dist/types/_vendors/schemas/tables/cell.d.ts +4 -0
- package/dist/types/_vendors/schemas/tables/classes.d.ts +69 -0
- package/dist/types/_vendors/schemas/tables/dynamicTemplate.d.ts +7 -0
- package/dist/types/_vendors/schemas/tables/helper.d.ts +265 -0
- package/dist/types/_vendors/schemas/tables/index.d.ts +4 -0
- package/dist/types/_vendors/schemas/tables/pdfRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/tables/propPanel.d.ts +3 -0
- package/dist/types/_vendors/schemas/tables/tableHelper.d.ts +10 -0
- package/dist/types/_vendors/schemas/tables/types.d.ts +88 -0
- package/dist/types/_vendors/schemas/tables/uiRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/text/constants.d.ts +23 -0
- package/dist/types/_vendors/schemas/text/extraFormatter.d.ts +27 -0
- package/dist/types/_vendors/schemas/text/helper.d.ts +40 -0
- package/dist/types/_vendors/schemas/text/icons/index.d.ts +11 -0
- package/dist/types/_vendors/schemas/text/index.d.ts +4 -0
- package/dist/types/_vendors/schemas/text/pdfRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/text/propPanel.d.ts +3 -0
- package/dist/types/_vendors/schemas/text/types.d.ts +30 -0
- package/dist/types/_vendors/schemas/text/uiRender.d.ts +11 -0
- package/dist/types/_vendors/schemas/utils.d.ts +40 -0
- package/dist/types/_vendors/schemas/variableBarcode/helper.d.ts +10 -0
- package/dist/types/_vendors/schemas/variableBarcode/index.d.ts +6 -0
- package/dist/types/_vendors/schemas/variableBarcode/pdfRender.d.ts +3 -0
- package/dist/types/_vendors/schemas/variableBarcode/propPanel.d.ts +4 -0
- package/dist/types/_vendors/schemas/variableBarcode/types.d.ts +7 -0
- package/dist/types/_vendors/schemas/variableBarcode/uiRender.d.ts +3 -0
- package/dist/types/_vendors/ui/Designer.d.ts +23 -0
- package/dist/types/_vendors/ui/Form.d.ts +26 -0
- package/dist/types/_vendors/ui/Viewer.d.ts +17 -0
- package/dist/types/_vendors/ui/class.d.ts +89 -0
- package/dist/types/_vendors/ui/components/AppContextProvider.d.ts +11 -0
- package/dist/types/_vendors/ui/components/CtlBar.d.ts +18 -0
- package/dist/types/_vendors/ui/components/Designer/Canvas/Guides.d.ts +9 -0
- package/dist/types/_vendors/ui/components/Designer/Canvas/Mask.d.ts +4 -0
- package/dist/types/_vendors/ui/components/Designer/Canvas/Moveable.d.ts +37 -0
- package/dist/types/_vendors/ui/components/Designer/Canvas/Padding.d.ts +6 -0
- package/dist/types/_vendors/ui/components/Designer/Canvas/Selecto.d.ts +10 -0
- package/dist/types/_vendors/ui/components/Designer/Canvas/index.d.ts +22 -0
- package/dist/types/_vendors/ui/components/Designer/LeftSidebar.d.ts +8 -0
- package/dist/types/_vendors/ui/components/Designer/PluginIcon.d.ts +10 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/DetailView/AlignWidget.d.ts +4 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/DetailView/ButtonGroupWidget.d.ts +4 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/DetailView/WidgetRenderer.d.ts +7 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/DetailView/index.d.ts +9 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/ListView/Item.d.ts +45 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/ListView/SelectableSortableContainer.d.ts +4 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/ListView/SelectableSortableItem.d.ts +14 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/ListView/index.d.ts +4 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/index.d.ts +4 -0
- package/dist/types/_vendors/ui/components/Designer/RightSidebar/layout.d.ts +15 -0
- package/dist/types/_vendors/ui/components/Designer/index.d.ts +11 -0
- package/dist/types/_vendors/ui/components/ErrorScreen.d.ts +7 -0
- package/dist/types/_vendors/ui/components/Paper.d.ts +20 -0
- package/dist/types/_vendors/ui/components/Preview.d.ts +15 -0
- package/dist/types/_vendors/ui/components/Renderer.d.ts +13 -0
- package/dist/types/_vendors/ui/components/Root.d.ts +9 -0
- package/dist/types/_vendors/ui/components/Spinner.d.ts +3 -0
- package/dist/types/_vendors/ui/components/StaticSchema.d.ts +10 -0
- package/dist/types/_vendors/ui/components/UnitPager.d.ts +10 -0
- package/dist/types/_vendors/ui/constants.d.ts +11 -0
- package/dist/types/_vendors/ui/contexts.d.ts +10 -0
- package/dist/types/_vendors/ui/helper.d.ts +73 -0
- package/dist/types/_vendors/ui/hooks.d.ts +46 -0
- package/dist/types/_vendors/ui/i18n.d.ts +3 -0
- package/dist/types/_vendors/ui/index.d.ts +4 -0
- package/dist/types/_vendors/ui/theme.d.ts +2 -0
- package/dist/types/_vendors/ui/types.d.ts +19 -0
- package/dist/types/common.d.ts +1 -2
- package/dist/types/converter.d.ts +1 -2
- package/dist/types/generator.d.ts +1 -2
- package/dist/types/index.d.ts +7 -9
- package/dist/types/manipulator.d.ts +1 -2
- package/dist/types/print-designer-editor.d.ts +1 -2
- package/dist/types/schemas.d.ts +1 -2
- package/dist/types/ui.d.ts +1 -2
- package/package.json +12 -11
- package/dist/types/common.d.ts.map +0 -1
- package/dist/types/converter.d.ts.map +0 -1
- package/dist/types/generator.d.ts.map +0 -1
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/manipulator.d.ts.map +0 -1
- package/dist/types/print-designer-editor.d.ts.map +0 -1
- package/dist/types/schemas.d.ts.map +0 -1
- package/dist/types/ui.d.ts.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as React$c from 'react';
|
|
2
2
|
import React$c__default, { useContext as useContext$1, useCallback, useMemo as useMemo$2, createContext as createContext$1, forwardRef, memo, useReducer, useState as useState$1, useRef as useRef$1, useEffect as useEffect$2, useLayoutEffect as useLayoutEffect$3, Children, cloneElement as cloneElement$1, createElement as createElement$1, useImperativeHandle, createRef, isValidElement, version as version$2, PureComponent, Component } from 'react';
|
|
3
|
-
import { s as isBlankPdf, Z as ZOOM, m as getAllFonts, f as checkGenerateProps, l as cloneDeep$1, v as pt2mm, x as px2mm, n as getB64BasePdf, q as getFallbackFontName, p as getDefaultFont, c as b64toUint8Array, u as mm2pt } from './chunks/helper-
|
|
4
|
-
export { o as getBuiltinFontsData, r as getInputFromTemplate } from './chunks/helper-
|
|
5
|
-
import { p as pluginRegistry, g as getDynamicTemplate } from './chunks/pluginRegistry-
|
|
3
|
+
import { s as isBlankPdf, Z as ZOOM, m as getAllFonts, f as checkGenerateProps, l as cloneDeep$1, v as pt2mm, x as px2mm, n as getB64BasePdf, q as getFallbackFontName, p as getDefaultFont, c as b64toUint8Array, u as mm2pt } from './chunks/helper-D7XF1bxK.js';
|
|
4
|
+
export { o as getBuiltinFontsData, r as getInputFromTemplate } from './chunks/helper-D7XF1bxK.js';
|
|
5
|
+
import { p as pluginRegistry, g as getDynamicTemplate } from './chunks/pluginRegistry-DEA2P0ud.js';
|
|
6
6
|
import { r as replacePlaceholders } from './chunks/expression-B-F1KCfk.js';
|
|
7
|
-
import { s as schema, g as getDynamicHeightsForTable, b as builtInPlugins } from './chunks/index-
|
|
7
|
+
import { s as schema, g as getDynamicHeightsForTable, b as builtInPlugins } from './chunks/index-qTsnfbi7.js';
|
|
8
8
|
import * as ReactDOM__default from 'react-dom';
|
|
9
9
|
import ReactDOM__default__default, { unstable_batchedUpdates, createPortal, flushSync, findDOMNode as findDOMNode$1 } from 'react-dom';
|
|
10
|
-
import { d as dynamicBarcode, a as dynamicQrCode, e as ellipse, r as rectangle$1, l as lineSchema, b as dynamicTableSchema, s as signature, i as imageSchema } from './chunks/index-
|
|
10
|
+
import { d as dynamicBarcode, a as dynamicQrCode, e as ellipse, r as rectangle$1, l as lineSchema, b as dynamicTableSchema, s as signature, i as imageSchema } from './chunks/index-pDt5vVVj.js';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import 'buffer';
|
|
13
13
|
import 'acorn';
|
|
@@ -1919,7 +1919,7 @@ var parseStyle = function a(s) {
|
|
|
1919
1919
|
function uniqueHash(a, s) {
|
|
1920
1920
|
return murmur2("".concat(a.join("%")).concat(s));
|
|
1921
1921
|
}
|
|
1922
|
-
function Empty$
|
|
1922
|
+
function Empty$3() {
|
|
1923
1923
|
return null;
|
|
1924
1924
|
}
|
|
1925
1925
|
var STYLE_PREFIX = "style";
|
|
@@ -1989,7 +1989,7 @@ function useStyleRegister(a, s) {
|
|
|
1989
1989
|
), V = _slicedToArray$e(z, 3), U = V[0], G = V[1], Z = V[2];
|
|
1990
1990
|
return function(ie) {
|
|
1991
1991
|
var J;
|
|
1992
|
-
return !N || H || !C ? J = /* @__PURE__ */ React$c.createElement(Empty$
|
|
1992
|
+
return !N || H || !C ? J = /* @__PURE__ */ React$c.createElement(Empty$3, null) : J = /* @__PURE__ */ React$c.createElement("style", _extends$1({}, _defineProperty$c(_defineProperty$c({}, ATTR_TOKEN, G), ATTR_MARK, Z), {
|
|
1993
1993
|
dangerouslySetInnerHTML: {
|
|
1994
1994
|
__html: U
|
|
1995
1995
|
}
|
|
@@ -15593,7 +15593,7 @@ function getStatusClassNames(a, s, x) {
|
|
|
15593
15593
|
[`${a}-has-feedback`]: x
|
|
15594
15594
|
});
|
|
15595
15595
|
}
|
|
15596
|
-
const getMergedStatus = (a, s) => s || a, Empty$
|
|
15596
|
+
const getMergedStatus = (a, s) => s || a, Empty$2 = () => {
|
|
15597
15597
|
const [, a] = useToken$1(), [s] = useLocale$2("Empty"), y = new FastColor(a.colorBgBase).toHsl().l < 0.5 ? {
|
|
15598
15598
|
opacity: 0.65
|
|
15599
15599
|
} : {};
|
|
@@ -15642,7 +15642,7 @@ const getMergedStatus = (a, s) => s || a, Empty$3 = () => {
|
|
|
15642
15642
|
}), /* @__PURE__ */ React$c.createElement("path", {
|
|
15643
15643
|
d: "M5.698 5.63H0L2.898.704zM9.259.704h4.985V5.63H9.259z"
|
|
15644
15644
|
}))));
|
|
15645
|
-
}, DefaultEmptyImg = Empty$
|
|
15645
|
+
}, DefaultEmptyImg = Empty$2, Simple = () => {
|
|
15646
15646
|
const [, a] = useToken$1(), [s] = useLocale$2("Empty"), {
|
|
15647
15647
|
colorFill: x,
|
|
15648
15648
|
colorFillTertiary: y,
|
|
@@ -15758,7 +15758,7 @@ var __rest$$ = globalThis && globalThis.__rest || function(a, s) {
|
|
|
15758
15758
|
s.indexOf(y[$]) < 0 && Object.prototype.propertyIsEnumerable.call(a, y[$]) && (x[y[$]] = a[y[$]]);
|
|
15759
15759
|
return x;
|
|
15760
15760
|
};
|
|
15761
|
-
const defaultEmptyImg = /* @__PURE__ */ React$c.createElement(DefaultEmptyImg, null), simpleEmptyImg = /* @__PURE__ */ React$c.createElement(SimpleEmptyImg, null), Empty
|
|
15761
|
+
const defaultEmptyImg = /* @__PURE__ */ React$c.createElement(DefaultEmptyImg, null), simpleEmptyImg = /* @__PURE__ */ React$c.createElement(SimpleEmptyImg, null), Empty = (a) => {
|
|
15762
15762
|
var s;
|
|
15763
15763
|
const {
|
|
15764
15764
|
className: x,
|
|
@@ -15802,9 +15802,9 @@ const defaultEmptyImg = /* @__PURE__ */ React$c.createElement(DefaultEmptyImg, n
|
|
|
15802
15802
|
style: Object.assign(Object.assign({}, B.footer), P == null ? void 0 : P.footer)
|
|
15803
15803
|
}, E)));
|
|
15804
15804
|
};
|
|
15805
|
-
Empty
|
|
15806
|
-
Empty
|
|
15807
|
-
const Empty$
|
|
15805
|
+
Empty.PRESENTED_IMAGE_DEFAULT = defaultEmptyImg;
|
|
15806
|
+
Empty.PRESENTED_IMAGE_SIMPLE = simpleEmptyImg;
|
|
15807
|
+
const Empty$1 = Empty, DefaultRenderEmpty = (a) => {
|
|
15808
15808
|
const {
|
|
15809
15809
|
componentName: s
|
|
15810
15810
|
} = a, {
|
|
@@ -15813,22 +15813,22 @@ const Empty$2 = Empty$1, DefaultRenderEmpty = (a) => {
|
|
|
15813
15813
|
switch (s) {
|
|
15814
15814
|
case "Table":
|
|
15815
15815
|
case "List":
|
|
15816
|
-
return /* @__PURE__ */ React$c__default.createElement(Empty$
|
|
15817
|
-
image: Empty$
|
|
15816
|
+
return /* @__PURE__ */ React$c__default.createElement(Empty$1, {
|
|
15817
|
+
image: Empty$1.PRESENTED_IMAGE_SIMPLE
|
|
15818
15818
|
});
|
|
15819
15819
|
case "Select":
|
|
15820
15820
|
case "TreeSelect":
|
|
15821
15821
|
case "Cascader":
|
|
15822
15822
|
case "Transfer":
|
|
15823
15823
|
case "Mentions":
|
|
15824
|
-
return /* @__PURE__ */ React$c__default.createElement(Empty$
|
|
15825
|
-
image: Empty$
|
|
15824
|
+
return /* @__PURE__ */ React$c__default.createElement(Empty$1, {
|
|
15825
|
+
image: Empty$1.PRESENTED_IMAGE_SIMPLE,
|
|
15826
15826
|
className: `${y}-small`
|
|
15827
15827
|
});
|
|
15828
15828
|
case "Table.filter":
|
|
15829
15829
|
return null;
|
|
15830
15830
|
default:
|
|
15831
|
-
return /* @__PURE__ */ React$c__default.createElement(Empty$
|
|
15831
|
+
return /* @__PURE__ */ React$c__default.createElement(Empty$1, null);
|
|
15832
15832
|
}
|
|
15833
15833
|
}, DefaultRenderEmpty$1 = DefaultRenderEmpty, useVariant = (a, s, x) => {
|
|
15834
15834
|
var y, $;
|
|
@@ -36898,10 +36898,10 @@ var _excluded$j = ["visible", "onVisibleChange", "getContainer", "current", "mov
|
|
|
36898
36898
|
imageRender: V,
|
|
36899
36899
|
onChange: ye
|
|
36900
36900
|
}, U)));
|
|
36901
|
-
}, uid$
|
|
36901
|
+
}, uid$3 = 0;
|
|
36902
36902
|
function useRegisterImage(a, s) {
|
|
36903
36903
|
var x = React$c.useState(function() {
|
|
36904
|
-
return uid$
|
|
36904
|
+
return uid$3 += 1, String(uid$3);
|
|
36905
36905
|
}), y = _slicedToArray$e(x, 1), $ = y[0], S = React$c.useContext(PreviewGroupContext), _ = {
|
|
36906
36906
|
data: s,
|
|
36907
36907
|
canPreview: a
|
|
@@ -45991,8 +45991,8 @@ const FilterDropdown = (a) => {
|
|
|
45991
45991
|
else {
|
|
45992
45992
|
const we = ee() || [], Re = () => {
|
|
45993
45993
|
var Pe, Ie;
|
|
45994
|
-
const Te = (Pe = Ee == null ? void 0 : Ee("Table.filter")) !== null && Pe !== void 0 ? Pe : /* @__PURE__ */ React$c.createElement(Empty$
|
|
45995
|
-
image: Empty$
|
|
45994
|
+
const Te = (Pe = Ee == null ? void 0 : Ee("Table.filter")) !== null && Pe !== void 0 ? Pe : /* @__PURE__ */ React$c.createElement(Empty$1, {
|
|
45995
|
+
image: Empty$1.PRESENTED_IMAGE_SIMPLE,
|
|
45996
45996
|
description: M.filterEmptyText,
|
|
45997
45997
|
styles: {
|
|
45998
45998
|
image: {
|
|
@@ -50326,7 +50326,7 @@ var traverseFileTree = /* @__PURE__ */ function() {
|
|
|
50326
50326
|
return a.apply(this, arguments);
|
|
50327
50327
|
};
|
|
50328
50328
|
}(), now$1 = +/* @__PURE__ */ new Date(), index$n = 0;
|
|
50329
|
-
function uid$
|
|
50329
|
+
function uid$2() {
|
|
50330
50330
|
return "rc-upload-".concat(now$1, "-").concat(++index$n);
|
|
50331
50331
|
}
|
|
50332
50332
|
var _excluded$1 = ["component", "prefixCls", "className", "classNames", "disabled", "id", "name", "style", "styles", "multiple", "accept", "capture", "children", "directory", "folder", "openFileDialogOnClick", "onMouseEnter", "onMouseLeave", "hasControlInside"], AjaxUploader = /* @__PURE__ */ function(a) {
|
|
@@ -50338,7 +50338,7 @@ var _excluded$1 = ["component", "prefixCls", "className", "classNames", "disable
|
|
|
50338
50338
|
for (var $ = arguments.length, S = new Array($), _ = 0; _ < $; _++)
|
|
50339
50339
|
S[_] = arguments[_];
|
|
50340
50340
|
return y = s.call.apply(s, [this].concat(S)), _defineProperty$c(_assertThisInitialized(y), "state", {
|
|
50341
|
-
uid: uid$
|
|
50341
|
+
uid: uid$2()
|
|
50342
50342
|
}), _defineProperty$c(_assertThisInitialized(y), "reqs", {}), _defineProperty$c(_assertThisInitialized(y), "fileInput", void 0), _defineProperty$c(_assertThisInitialized(y), "_isMounted", void 0), _defineProperty$c(_assertThisInitialized(y), "onChange", function(E) {
|
|
50343
50343
|
var A = y.props, w = A.accept, T = A.directory, P = E.target.files, C = _toConsumableArray$e(P).filter(function(R) {
|
|
50344
50344
|
return !T || attrAccept(R, w);
|
|
@@ -50442,7 +50442,7 @@ var _excluded$1 = ["component", "prefixCls", "className", "classNames", "disable
|
|
|
50442
50442
|
};
|
|
50443
50443
|
}()), _defineProperty$c(_assertThisInitialized(y), "uploadFiles", function(E) {
|
|
50444
50444
|
var A = _toConsumableArray$e(E), w = A.map(function(T) {
|
|
50445
|
-
return T.uid = uid$
|
|
50445
|
+
return T.uid = uid$2(), y.processFile(T, A);
|
|
50446
50446
|
});
|
|
50447
50447
|
Promise.all(w).then(function(T) {
|
|
50448
50448
|
var P = y.props.onBatchStart;
|
|
@@ -50585,7 +50585,7 @@ var _excluded$1 = ["component", "prefixCls", "className", "classNames", "disable
|
|
|
50585
50585
|
key: "reset",
|
|
50586
50586
|
value: function() {
|
|
50587
50587
|
this.setState({
|
|
50588
|
-
uid: uid$
|
|
50588
|
+
uid: uid$2()
|
|
50589
50589
|
});
|
|
50590
50590
|
}
|
|
50591
50591
|
}, {
|
|
@@ -52785,7 +52785,7 @@ function getMods(a, s) {
|
|
|
52785
52785
|
x[y] = a[x[y].toLowerCase()];
|
|
52786
52786
|
return x;
|
|
52787
52787
|
}
|
|
52788
|
-
function getKeys$
|
|
52788
|
+
function getKeys$2(a) {
|
|
52789
52789
|
typeof a != "string" && (a = ""), a = a.replace(/\s/g, "");
|
|
52790
52790
|
const s = a.split(",");
|
|
52791
52791
|
let x = s.lastIndexOf("");
|
|
@@ -52991,7 +52991,7 @@ const eachUnbind = (a) => {
|
|
|
52991
52991
|
method: y,
|
|
52992
52992
|
splitKey: $ = "+"
|
|
52993
52993
|
} = a;
|
|
52994
|
-
getKeys$
|
|
52994
|
+
getKeys$2(s).forEach((_) => {
|
|
52995
52995
|
const E = _.split($), A = E.length, w = E[A - 1], T = w === "*" ? "*" : code$1(w);
|
|
52996
52996
|
if (!_handlers[T])
|
|
52997
52997
|
return;
|
|
@@ -53054,7 +53054,7 @@ function dispatch(a, s) {
|
|
|
53054
53054
|
}
|
|
53055
53055
|
function hotkeys$1(a, s, x) {
|
|
53056
53056
|
_downKeys = [];
|
|
53057
|
-
const y = getKeys$
|
|
53057
|
+
const y = getKeys$2(a);
|
|
53058
53058
|
let $ = [], S = "all", _ = document, E = 0, A = false, w = true, T = "+", P = false, C = false;
|
|
53059
53059
|
for (x === void 0 && typeof s == "function" && (x = s), Object.prototype.toString.call(s) === "[object Object]" && (s.scope && (S = s.scope), s.element && (_ = s.element), s.keyup && (A = s.keyup), s.keydown !== void 0 && (w = s.keydown), s.capture !== void 0 && (P = s.capture), typeof s.splitKey == "string" && (T = s.splitKey), s.single === true && (C = true)), typeof s == "string" && (S = s), C && unbind(a, S); E < y.length; E++)
|
|
53060
53060
|
a = y[E].split(T), $ = [], a.length > 1 && ($ = getMods(_modifier, a)), a = a[a.length - 1], a = a === "*" ? "*" : code$1(a), a in _handlers || (_handlers[a] = []), _handlers[a].push({
|
|
@@ -98825,7 +98825,7 @@ strings$6.utf8border = function(a, s) {
|
|
|
98825
98825
|
function ZStream$6() {
|
|
98826
98826
|
this.input = null, this.next_in = 0, this.avail_in = 0, this.total_in = 0, this.output = null, this.next_out = 0, this.avail_out = 0, this.total_out = 0, this.msg = "", this.state = null, this.data_type = 2, this.adler = 0;
|
|
98827
98827
|
}
|
|
98828
|
-
var zstream$2 = ZStream$6, zlib_deflate$1 = deflate$9, utils$c = common$3, strings$5 = strings$6, msg$4 = messages$2, ZStream$5 = zstream$2, toString$
|
|
98828
|
+
var zstream$2 = ZStream$6, zlib_deflate$1 = deflate$9, utils$c = common$3, strings$5 = strings$6, msg$4 = messages$2, ZStream$5 = zstream$2, toString$7 = Object.prototype.toString, Z_NO_FLUSH$4 = 0, Z_FINISH$6 = 4, Z_OK$6 = 0, Z_STREAM_END$6 = 1, Z_SYNC_FLUSH$2 = 2, Z_DEFAULT_COMPRESSION$3 = -1, Z_DEFAULT_STRATEGY$3 = 0, Z_DEFLATED$5 = 8;
|
|
98829
98829
|
function Deflate$3(a) {
|
|
98830
98830
|
if (!(this instanceof Deflate$3))
|
|
98831
98831
|
return new Deflate$3(a);
|
|
@@ -98852,7 +98852,7 @@ function Deflate$3(a) {
|
|
|
98852
98852
|
throw new Error(msg$4[x]);
|
|
98853
98853
|
if (s.header && zlib_deflate$1.deflateSetHeader(this.strm, s.header), s.dictionary) {
|
|
98854
98854
|
var y;
|
|
98855
|
-
if (typeof s.dictionary == "string" ? y = strings$5.string2buf(s.dictionary) : toString$
|
|
98855
|
+
if (typeof s.dictionary == "string" ? y = strings$5.string2buf(s.dictionary) : toString$7.call(s.dictionary) === "[object ArrayBuffer]" ? y = new Uint8Array(s.dictionary) : y = s.dictionary, x = zlib_deflate$1.deflateSetDictionary(this.strm, y), x !== Z_OK$6)
|
|
98856
98856
|
throw new Error(msg$4[x]);
|
|
98857
98857
|
this._dict_set = true;
|
|
98858
98858
|
}
|
|
@@ -98861,7 +98861,7 @@ Deflate$3.prototype.push = function(a, s) {
|
|
|
98861
98861
|
var x = this.strm, y = this.options.chunkSize, $, S;
|
|
98862
98862
|
if (this.ended)
|
|
98863
98863
|
return false;
|
|
98864
|
-
S = s === ~~s ? s : s === true ? Z_FINISH$6 : Z_NO_FLUSH$4, typeof a == "string" ? x.input = strings$5.string2buf(a) : toString$
|
|
98864
|
+
S = s === ~~s ? s : s === true ? Z_FINISH$6 : Z_NO_FLUSH$4, typeof a == "string" ? x.input = strings$5.string2buf(a) : toString$7.call(a) === "[object ArrayBuffer]" ? x.input = new Uint8Array(a) : x.input = a, x.next_in = 0, x.avail_in = x.input.length;
|
|
98865
98865
|
do {
|
|
98866
98866
|
if (x.avail_out === 0 && (x.output = new utils$c.Buf8(y), x.next_out = 0, x.avail_out = y), $ = zlib_deflate$1.deflate(x, S), $ !== Z_STREAM_END$6 && $ !== Z_OK$6)
|
|
98867
98867
|
return this.onEnd($), this.ended = true, false;
|
|
@@ -99702,7 +99702,7 @@ var constants$5 = {
|
|
|
99702
99702
|
function GZheader$4() {
|
|
99703
99703
|
this.text = 0, this.time = 0, this.xflags = 0, this.os = 0, this.extra = null, this.extra_len = 0, this.name = "", this.comment = "", this.hcrc = 0, this.done = false;
|
|
99704
99704
|
}
|
|
99705
|
-
var gzheader$2 = GZheader$4, zlib_inflate$1 = inflate$a, utils$9 = common$3, strings$4 = strings$6, c$1 = constants$5, msg$3 = messages$2, ZStream$4 = zstream$2, GZheader$3 = gzheader$2, toString$
|
|
99705
|
+
var gzheader$2 = GZheader$4, zlib_inflate$1 = inflate$a, utils$9 = common$3, strings$4 = strings$6, c$1 = constants$5, msg$3 = messages$2, ZStream$4 = zstream$2, GZheader$3 = gzheader$2, toString$6 = Object.prototype.toString;
|
|
99706
99706
|
function Inflate$3(a) {
|
|
99707
99707
|
if (!(this instanceof Inflate$3))
|
|
99708
99708
|
return new Inflate$3(a);
|
|
@@ -99719,14 +99719,14 @@ function Inflate$3(a) {
|
|
|
99719
99719
|
);
|
|
99720
99720
|
if (x !== c$1.Z_OK)
|
|
99721
99721
|
throw new Error(msg$3[x]);
|
|
99722
|
-
if (this.header = new GZheader$3(), zlib_inflate$1.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings$4.string2buf(s.dictionary) : toString$
|
|
99722
|
+
if (this.header = new GZheader$3(), zlib_inflate$1.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings$4.string2buf(s.dictionary) : toString$6.call(s.dictionary) === "[object ArrayBuffer]" && (s.dictionary = new Uint8Array(s.dictionary)), s.raw && (x = zlib_inflate$1.inflateSetDictionary(this.strm, s.dictionary), x !== c$1.Z_OK)))
|
|
99723
99723
|
throw new Error(msg$3[x]);
|
|
99724
99724
|
}
|
|
99725
99725
|
Inflate$3.prototype.push = function(a, s) {
|
|
99726
99726
|
var x = this.strm, y = this.options.chunkSize, $ = this.options.dictionary, S, _, E, A, w, T = false;
|
|
99727
99727
|
if (this.ended)
|
|
99728
99728
|
return false;
|
|
99729
|
-
_ = s === ~~s ? s : s === true ? c$1.Z_FINISH : c$1.Z_NO_FLUSH, typeof a == "string" ? x.input = strings$4.binstring2buf(a) : toString$
|
|
99729
|
+
_ = s === ~~s ? s : s === true ? c$1.Z_FINISH : c$1.Z_NO_FLUSH, typeof a == "string" ? x.input = strings$4.binstring2buf(a) : toString$6.call(a) === "[object ArrayBuffer]" ? x.input = new Uint8Array(a) : x.input = a, x.next_in = 0, x.avail_in = x.input.length;
|
|
99730
99730
|
do {
|
|
99731
99731
|
if (x.avail_out === 0 && (x.output = new utils$9.Buf8(y), x.next_out = 0, x.avail_out = y), S = zlib_inflate$1.inflate(x, c$1.Z_NO_FLUSH), S === c$1.Z_NEED_DICT && $ && (S = zlib_inflate$1.inflateSetDictionary(this.strm, $)), S === c$1.Z_BUF_ERROR && T === true && (S = c$1.Z_OK, T = false), S !== c$1.Z_STREAM_END && S !== c$1.Z_OK)
|
|
99732
99732
|
return this.onEnd(S), this.ended = true, false;
|
|
@@ -101817,7 +101817,7 @@ function GZheader$2() {
|
|
|
101817
101817
|
this.text = 0, this.time = 0, this.xflags = 0, this.os = 0, this.extra = null, this.extra_len = 0, this.name = "", this.comment = "", this.hcrc = 0, this.done = false;
|
|
101818
101818
|
}
|
|
101819
101819
|
var gzheader$1 = GZheader$2;
|
|
101820
|
-
const toString$
|
|
101820
|
+
const toString$5 = Object.prototype.toString, {
|
|
101821
101821
|
Z_NO_FLUSH: Z_NO_FLUSH$3,
|
|
101822
101822
|
Z_FINISH: Z_FINISH$4,
|
|
101823
101823
|
Z_OK: Z_OK$4,
|
|
@@ -101841,7 +101841,7 @@ function Inflate$1(a) {
|
|
|
101841
101841
|
);
|
|
101842
101842
|
if (x !== Z_OK$4)
|
|
101843
101843
|
throw new Error(messages$1[x]);
|
|
101844
|
-
if (this.header = new gzheader$1(), inflate_1$2.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings$3.string2buf(s.dictionary) : toString$
|
|
101844
|
+
if (this.header = new gzheader$1(), inflate_1$2.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings$3.string2buf(s.dictionary) : toString$5.call(s.dictionary) === "[object ArrayBuffer]" && (s.dictionary = new Uint8Array(s.dictionary)), s.raw && (x = inflate_1$2.inflateSetDictionary(this.strm, s.dictionary), x !== Z_OK$4)))
|
|
101845
101845
|
throw new Error(messages$1[x]);
|
|
101846
101846
|
}
|
|
101847
101847
|
Inflate$1.prototype.push = function(a, s) {
|
|
@@ -101849,7 +101849,7 @@ Inflate$1.prototype.push = function(a, s) {
|
|
|
101849
101849
|
let S, _, E;
|
|
101850
101850
|
if (this.ended)
|
|
101851
101851
|
return false;
|
|
101852
|
-
for (s === ~~s ? _ = s : _ = s === true ? Z_FINISH$4 : Z_NO_FLUSH$3, toString$
|
|
101852
|
+
for (s === ~~s ? _ = s : _ = s === true ? Z_FINISH$4 : Z_NO_FLUSH$3, toString$5.call(a) === "[object ArrayBuffer]" ? x.input = new Uint8Array(a) : x.input = a, x.next_in = 0, x.avail_in = x.input.length; ; ) {
|
|
101853
101853
|
for (x.avail_out === 0 && (x.output = new Uint8Array(y), x.next_out = 0, x.avail_out = y), S = inflate_1$2.inflate(x, _), S === Z_NEED_DICT$2 && $ && (S = inflate_1$2.inflateSetDictionary(x, $), S === Z_OK$4 ? S = inflate_1$2.inflate(x, _) : S === Z_DATA_ERROR$3 && (S = Z_NEED_DICT$2)); x.avail_in > 0 && S === Z_STREAM_END$4 && x.state.wrap > 0 && a[x.next_in] !== 0; )
|
|
101854
101854
|
inflate_1$2.inflateReset(x), S = inflate_1$2.inflate(x, _);
|
|
101855
101855
|
switch (S) {
|
|
@@ -105132,7 +105132,7 @@ strings$2.utf8border = function(a, s) {
|
|
|
105132
105132
|
function ZStream$2() {
|
|
105133
105133
|
this.input = null, this.next_in = 0, this.avail_in = 0, this.total_in = 0, this.output = null, this.next_out = 0, this.avail_out = 0, this.total_out = 0, this.msg = "", this.state = null, this.data_type = 2, this.adler = 0;
|
|
105134
105134
|
}
|
|
105135
|
-
var zstream = ZStream$2, zlib_deflate = deflate$3, utils$5 = common$1, strings$1 = strings$2, msg$1 = messages, ZStream$1 = zstream, toString$
|
|
105135
|
+
var zstream = ZStream$2, zlib_deflate = deflate$3, utils$5 = common$1, strings$1 = strings$2, msg$1 = messages, ZStream$1 = zstream, toString$4 = Object.prototype.toString, Z_NO_FLUSH = 0, Z_FINISH$1 = 4, Z_OK$1 = 0, Z_STREAM_END$1 = 1, Z_SYNC_FLUSH = 2, Z_DEFAULT_COMPRESSION = -1, Z_DEFAULT_STRATEGY = 0, Z_DEFLATED$1 = 8;
|
|
105136
105136
|
function Deflate(a) {
|
|
105137
105137
|
if (!(this instanceof Deflate))
|
|
105138
105138
|
return new Deflate(a);
|
|
@@ -105159,7 +105159,7 @@ function Deflate(a) {
|
|
|
105159
105159
|
throw new Error(msg$1[x]);
|
|
105160
105160
|
if (s.header && zlib_deflate.deflateSetHeader(this.strm, s.header), s.dictionary) {
|
|
105161
105161
|
var y;
|
|
105162
|
-
if (typeof s.dictionary == "string" ? y = strings$1.string2buf(s.dictionary) : toString$
|
|
105162
|
+
if (typeof s.dictionary == "string" ? y = strings$1.string2buf(s.dictionary) : toString$4.call(s.dictionary) === "[object ArrayBuffer]" ? y = new Uint8Array(s.dictionary) : y = s.dictionary, x = zlib_deflate.deflateSetDictionary(this.strm, y), x !== Z_OK$1)
|
|
105163
105163
|
throw new Error(msg$1[x]);
|
|
105164
105164
|
this._dict_set = true;
|
|
105165
105165
|
}
|
|
@@ -105168,7 +105168,7 @@ Deflate.prototype.push = function(a, s) {
|
|
|
105168
105168
|
var x = this.strm, y = this.options.chunkSize, $, S;
|
|
105169
105169
|
if (this.ended)
|
|
105170
105170
|
return false;
|
|
105171
|
-
S = s === ~~s ? s : s === true ? Z_FINISH$1 : Z_NO_FLUSH, typeof a == "string" ? x.input = strings$1.string2buf(a) : toString$
|
|
105171
|
+
S = s === ~~s ? s : s === true ? Z_FINISH$1 : Z_NO_FLUSH, typeof a == "string" ? x.input = strings$1.string2buf(a) : toString$4.call(a) === "[object ArrayBuffer]" ? x.input = new Uint8Array(a) : x.input = a, x.next_in = 0, x.avail_in = x.input.length;
|
|
105172
105172
|
do {
|
|
105173
105173
|
if (x.avail_out === 0 && (x.output = new utils$5.Buf8(y), x.next_out = 0, x.avail_out = y), $ = zlib_deflate.deflate(x, S), $ !== Z_STREAM_END$1 && $ !== Z_OK$1)
|
|
105174
105174
|
return this.onEnd($), this.ended = true, false;
|
|
@@ -106009,7 +106009,7 @@ var constants$1 = {
|
|
|
106009
106009
|
function GZheader$1() {
|
|
106010
106010
|
this.text = 0, this.time = 0, this.xflags = 0, this.os = 0, this.extra = null, this.extra_len = 0, this.name = "", this.comment = "", this.hcrc = 0, this.done = false;
|
|
106011
106011
|
}
|
|
106012
|
-
var gzheader = GZheader$1, zlib_inflate = inflate$4, utils$2 = common$1, strings = strings$2, c = constants$1, msg = messages, ZStream = zstream, GZheader = gzheader, toString$
|
|
106012
|
+
var gzheader = GZheader$1, zlib_inflate = inflate$4, utils$2 = common$1, strings = strings$2, c = constants$1, msg = messages, ZStream = zstream, GZheader = gzheader, toString$3 = Object.prototype.toString;
|
|
106013
106013
|
function Inflate(a) {
|
|
106014
106014
|
if (!(this instanceof Inflate))
|
|
106015
106015
|
return new Inflate(a);
|
|
@@ -106026,14 +106026,14 @@ function Inflate(a) {
|
|
|
106026
106026
|
);
|
|
106027
106027
|
if (x !== c.Z_OK)
|
|
106028
106028
|
throw new Error(msg[x]);
|
|
106029
|
-
if (this.header = new GZheader(), zlib_inflate.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings.string2buf(s.dictionary) : toString$
|
|
106029
|
+
if (this.header = new GZheader(), zlib_inflate.inflateGetHeader(this.strm, this.header), s.dictionary && (typeof s.dictionary == "string" ? s.dictionary = strings.string2buf(s.dictionary) : toString$3.call(s.dictionary) === "[object ArrayBuffer]" && (s.dictionary = new Uint8Array(s.dictionary)), s.raw && (x = zlib_inflate.inflateSetDictionary(this.strm, s.dictionary), x !== c.Z_OK)))
|
|
106030
106030
|
throw new Error(msg[x]);
|
|
106031
106031
|
}
|
|
106032
106032
|
Inflate.prototype.push = function(a, s) {
|
|
106033
106033
|
var x = this.strm, y = this.options.chunkSize, $ = this.options.dictionary, S, _, E, A, w, T = false;
|
|
106034
106034
|
if (this.ended)
|
|
106035
106035
|
return false;
|
|
106036
|
-
_ = s === ~~s ? s : s === true ? c.Z_FINISH : c.Z_NO_FLUSH, typeof a == "string" ? x.input = strings.binstring2buf(a) : toString$
|
|
106036
|
+
_ = s === ~~s ? s : s === true ? c.Z_FINISH : c.Z_NO_FLUSH, typeof a == "string" ? x.input = strings.binstring2buf(a) : toString$3.call(a) === "[object ArrayBuffer]" ? x.input = new Uint8Array(a) : x.input = a, x.next_in = 0, x.avail_in = x.input.length;
|
|
106037
106037
|
do {
|
|
106038
106038
|
if (x.avail_out === 0 && (x.output = new utils$2.Buf8(y), x.next_out = 0, x.avail_out = y), S = zlib_inflate.inflate(x, c.Z_NO_FLUSH), S === c.Z_NEED_DICT && $ && (S = zlib_inflate.inflateSetDictionary(this.strm, $)), S === c.Z_BUF_ERROR && T === true && (S = c.Z_OK, T = false), S !== c.Z_STREAM_END && S !== c.Z_OK)
|
|
106039
106039
|
return this.onEnd(S), this.ended = true, false;
|
|
@@ -126341,7 +126341,7 @@ var requestAnimationFrame$1 = /* @__PURE__ */ function() {
|
|
|
126341
126341
|
clearTimeout(s);
|
|
126342
126342
|
};
|
|
126343
126343
|
}();
|
|
126344
|
-
function getKeys$
|
|
126344
|
+
function getKeys$1(a) {
|
|
126345
126345
|
return Object.keys(a);
|
|
126346
126346
|
}
|
|
126347
126347
|
function convertUnitSize(a, s) {
|
|
@@ -130048,7 +130048,7 @@ function renderDirectionControlsByInfos(a, s, x, y) {
|
|
|
130048
130048
|
return null;
|
|
130049
130049
|
C[D] = true;
|
|
130050
130050
|
var F = (throttle(w, 15) + R * DIRECTION_ROTATIONS[D] + 720) % 180, L = {};
|
|
130051
|
-
return getKeys$
|
|
130051
|
+
return getKeys$1(N).forEach(function(O) {
|
|
130052
130052
|
L["data-".concat(O)] = N[O];
|
|
130053
130053
|
}), y.createElement("div", __assign$1({ className: prefix$2.apply(void 0, __spreadArray$1(["control", "direction", D, s], __read(M), false)), "data-rotation": F, "data-direction": D }, L, { key: "direction-".concat(D), style: getControlTransform.apply(void 0, __spreadArray$1([_, A], __read(B.map(function(O) {
|
|
130054
130054
|
return S[O];
|
|
@@ -130098,7 +130098,7 @@ function renderAroundControls(a, s, x, y) {
|
|
|
130098
130098
|
var $ = a.renderState;
|
|
130099
130099
|
$.renderDirectionMap || ($.renderDirectionMap = {});
|
|
130100
130100
|
var S = a.getState(), _ = S.renderPoses, E = S.rotation, A = S.direction, w = $.renderDirectionMap, T = a.props.zoom, P = sign(A), C = E / Math.PI * 180;
|
|
130101
|
-
return (y || getKeys$
|
|
130101
|
+
return (y || getKeys$1(w)).map(function(R) {
|
|
130102
130102
|
var I = DIRECTION_INDEXES[R];
|
|
130103
130103
|
if (!I)
|
|
130104
130104
|
return null;
|
|
@@ -131710,7 +131710,7 @@ cursor: move;
|
|
|
131710
131710
|
} })
|
|
131711
131711
|
));
|
|
131712
131712
|
}), _) {
|
|
131713
|
-
var I = getKeys$
|
|
131713
|
+
var I = getKeys$1(A || {}), N = {};
|
|
131714
131714
|
I.forEach(function(D) {
|
|
131715
131715
|
A[D].forEach(function(B) {
|
|
131716
131716
|
N[B] = D;
|
|
@@ -133239,7 +133239,7 @@ function fillCSSObject(a, s) {
|
|
|
133239
133239
|
}
|
|
133240
133240
|
return {
|
|
133241
133241
|
style: a,
|
|
133242
|
-
cssText: getKeys$
|
|
133242
|
+
cssText: getKeys$1(a).map(function(y) {
|
|
133243
133243
|
return "".concat(decamelize(y, "-"), ": ").concat(a[y], ";");
|
|
133244
133244
|
}).join("")
|
|
133245
133245
|
};
|
|
@@ -136070,7 +136070,7 @@ var MoveableManager = /* @__PURE__ */ function(a) {
|
|
|
136070
136070
|
var y = this.props, $ = y.dragTarget || y.target, S = this._prevOriginalDragTarget, _ = this._prevDragArea, E = y.dragArea, A = !E && S !== $, w = (x || E) && _ !== E;
|
|
136071
136071
|
return A || w || this._prevPropTarget != this._propTarget;
|
|
136072
136072
|
}, s.prototype._updateNativeEvents = function() {
|
|
136073
|
-
var x = this, y = this.props, $ = y.dragArea ? this.areaElement : this.state.target, S = this.events, _ = getKeys$
|
|
136073
|
+
var x = this, y = this.props, $ = y.dragArea ? this.areaElement : this.state.target, S = this.events, _ = getKeys$1(S);
|
|
136074
136074
|
if (this._isTargetChanged())
|
|
136075
136075
|
for (var E in S) {
|
|
136076
136076
|
var A = S[E];
|
|
@@ -136684,7 +136684,7 @@ var InitialMoveable = /* @__PURE__ */ function(a) {
|
|
|
136684
136684
|
x[E] = true;
|
|
136685
136685
|
});
|
|
136686
136686
|
});
|
|
136687
|
-
var $ = getKeys$
|
|
136687
|
+
var $ = getKeys$1(x).join(`
|
|
136688
136688
|
`);
|
|
136689
136689
|
this.defaultStyled = styled("div", prefixCSS(PREFIX, MOVEABLE_CSS + $));
|
|
136690
136690
|
}, s.getTotalAbles = function() {
|
|
@@ -138975,11 +138975,11 @@ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\
|
|
|
138975
138975
|
}), s;
|
|
138976
138976
|
});
|
|
138977
138977
|
const stringToPath$1 = stringToPath;
|
|
138978
|
-
function toString$
|
|
138978
|
+
function toString$2(a) {
|
|
138979
138979
|
return a == null ? "" : baseToString(a);
|
|
138980
138980
|
}
|
|
138981
138981
|
function castPath(a, s) {
|
|
138982
|
-
return isArray$3(a) ? a : isKey(a, s) ? [a] : stringToPath$1(toString$
|
|
138982
|
+
return isArray$3(a) ? a : isKey(a, s) ? [a] : stringToPath$1(toString$2(a));
|
|
138983
138983
|
}
|
|
138984
138984
|
function toKey(a) {
|
|
138985
138985
|
if (typeof a == "string" || isSymbol$2(a))
|
|
@@ -139508,7 +139508,7 @@ var objectProto$3 = Object.prototype, hasOwnProperty$4 = objectProto$3.hasOwnPro
|
|
|
139508
139508
|
function baseHas(a, s) {
|
|
139509
139509
|
return a != null && hasOwnProperty$4.call(a, s);
|
|
139510
139510
|
}
|
|
139511
|
-
function has$
|
|
139511
|
+
function has$6(a, s) {
|
|
139512
139512
|
return a != null && hasPath(a, s, baseHas);
|
|
139513
139513
|
}
|
|
139514
139514
|
function parent(a, s) {
|
|
@@ -140178,7 +140178,7 @@ var executeCallBack = function a(s, x, y, $) {
|
|
|
140178
140178
|
allValues: x,
|
|
140179
140179
|
flatValues: S
|
|
140180
140180
|
}), Object.keys(y).forEach(function(_) {
|
|
140181
|
-
if (has$
|
|
140181
|
+
if (has$6(S, _)) {
|
|
140182
140182
|
var E = _get(S, _), A = E.value, w = E.index, T = y[_];
|
|
140183
140183
|
executeCallBack(T, A, _, w);
|
|
140184
140184
|
}
|
|
@@ -144396,11 +144396,11 @@ var _ie8DomDefine = !_descriptors && !_fails(function() {
|
|
|
144396
144396
|
if (s && typeof (x = a.toString) == "function" && !isObject$2(y = x.call(a)) || typeof (x = a.valueOf) == "function" && !isObject$2(y = x.call(a)) || !s && typeof (x = a.toString) == "function" && !isObject$2(y = x.call(a)))
|
|
144397
144397
|
return y;
|
|
144398
144398
|
throw TypeError("Can't convert object to primitive value");
|
|
144399
|
-
}, anObject$
|
|
144399
|
+
}, anObject$1 = _anObject, IE8_DOM_DEFINE$1 = _ie8DomDefine, toPrimitive$2 = _toPrimitive$5, dP$2 = Object.defineProperty;
|
|
144400
144400
|
_objectDp.f = _descriptors ? Object.defineProperty : function a(s, x, y) {
|
|
144401
|
-
if (anObject$
|
|
144401
|
+
if (anObject$1(s), x = toPrimitive$2(x, true), anObject$1(y), IE8_DOM_DEFINE$1)
|
|
144402
144402
|
try {
|
|
144403
|
-
return dP$
|
|
144403
|
+
return dP$2(s, x, y);
|
|
144404
144404
|
} catch {
|
|
144405
144405
|
}
|
|
144406
144406
|
if ("get" in y || "set" in y)
|
|
@@ -144414,17 +144414,17 @@ var _propertyDesc = function(a, s) {
|
|
|
144414
144414
|
writable: !(a & 4),
|
|
144415
144415
|
value: s
|
|
144416
144416
|
};
|
|
144417
|
-
}, dP$
|
|
144418
|
-
return dP$
|
|
144417
|
+
}, dP$1 = _objectDp, createDesc$2 = _propertyDesc, _hide = _descriptors ? function(a, s, x) {
|
|
144418
|
+
return dP$1.f(a, s, createDesc$2(1, x));
|
|
144419
144419
|
} : function(a, s, x) {
|
|
144420
144420
|
return a[s] = x, a;
|
|
144421
144421
|
}, hasOwnProperty$1 = {}.hasOwnProperty, _has = function(a, s) {
|
|
144422
144422
|
return hasOwnProperty$1.call(a, s);
|
|
144423
|
-
}, global$4 = _globalExports, core$2 = _coreExports, ctx = _ctx, hide$2 = _hide, has$
|
|
144424
|
-
var y = a & $export$6.F, $ = a & $export$6.G, S = a & $export$6.S, _ = a & $export$6.P, E = a & $export$6.B, A = a & $export$6.W, w = $ ? core$2 : core$2[s] || (core$2[s] = {}), T = w[PROTOTYPE$
|
|
144423
|
+
}, global$4 = _globalExports, core$2 = _coreExports, ctx = _ctx, hide$2 = _hide, has$5 = _has, PROTOTYPE$1 = "prototype", $export$6 = function(a, s, x) {
|
|
144424
|
+
var y = a & $export$6.F, $ = a & $export$6.G, S = a & $export$6.S, _ = a & $export$6.P, E = a & $export$6.B, A = a & $export$6.W, w = $ ? core$2 : core$2[s] || (core$2[s] = {}), T = w[PROTOTYPE$1], P = $ ? global$4 : S ? global$4[s] : (global$4[s] || {})[PROTOTYPE$1], C, R, I;
|
|
144425
144425
|
$ && (x = s);
|
|
144426
144426
|
for (C in x)
|
|
144427
|
-
R = !y && P && P[C] !== void 0, !(R && has$
|
|
144427
|
+
R = !y && P && P[C] !== void 0, !(R && has$5(w, C)) && (I = R ? P[C] : x[C], w[C] = $ && typeof P[C] != "function" ? x[C] : E && R ? ctx(I, global$4) : A && P[C] == I ? function(N) {
|
|
144428
144428
|
var M = function(D, B, F) {
|
|
144429
144429
|
if (this instanceof N) {
|
|
144430
144430
|
switch (arguments.length) {
|
|
@@ -144439,7 +144439,7 @@ var _propertyDesc = function(a, s) {
|
|
|
144439
144439
|
}
|
|
144440
144440
|
return N.apply(this, arguments);
|
|
144441
144441
|
};
|
|
144442
|
-
return M[PROTOTYPE$
|
|
144442
|
+
return M[PROTOTYPE$1] = N[PROTOTYPE$1], M;
|
|
144443
144443
|
}(I) : _ && typeof I == "function" ? ctx(Function.call, I) : I, _ && ((w.virtual || (w.virtual = {}))[C] = I, a & $export$6.R && T && !T[C] && hide$2(T, C, I)));
|
|
144444
144444
|
};
|
|
144445
144445
|
$export$6.F = 1;
|
|
@@ -144450,39 +144450,80 @@ $export$6.B = 16;
|
|
|
144450
144450
|
$export$6.W = 32;
|
|
144451
144451
|
$export$6.U = 64;
|
|
144452
144452
|
$export$6.R = 128;
|
|
144453
|
-
var _export = $export$6,
|
|
144454
|
-
|
|
144455
|
-
|
|
144453
|
+
var _export = $export$6, _cof, hasRequired_cof;
|
|
144454
|
+
function require_cof() {
|
|
144455
|
+
if (hasRequired_cof)
|
|
144456
|
+
return _cof;
|
|
144457
|
+
hasRequired_cof = 1;
|
|
144458
|
+
var a = {}.toString;
|
|
144459
|
+
return _cof = function(s) {
|
|
144460
|
+
return a.call(s).slice(8, -1);
|
|
144461
|
+
}, _cof;
|
|
144462
|
+
}
|
|
144463
|
+
var _iobject, hasRequired_iobject;
|
|
144456
144464
|
function require_iobject() {
|
|
144457
144465
|
if (hasRequired_iobject)
|
|
144458
144466
|
return _iobject;
|
|
144459
144467
|
hasRequired_iobject = 1;
|
|
144460
|
-
var a =
|
|
144468
|
+
var a = require_cof();
|
|
144461
144469
|
return _iobject = Object("z").propertyIsEnumerable(0) ? Object : function(s) {
|
|
144462
144470
|
return a(s) == "String" ? s.split("") : Object(s);
|
|
144463
144471
|
}, _iobject;
|
|
144464
144472
|
}
|
|
144465
|
-
var _defined
|
|
144466
|
-
|
|
144467
|
-
|
|
144468
|
-
|
|
144469
|
-
|
|
144470
|
-
|
|
144473
|
+
var _defined, hasRequired_defined;
|
|
144474
|
+
function require_defined() {
|
|
144475
|
+
return hasRequired_defined || (hasRequired_defined = 1, _defined = function(a) {
|
|
144476
|
+
if (a == null)
|
|
144477
|
+
throw TypeError("Can't call method on " + a);
|
|
144478
|
+
return a;
|
|
144479
|
+
}), _defined;
|
|
144480
|
+
}
|
|
144481
|
+
var IObject = require_iobject(), defined$1 = require_defined(), _toIobject = function(a) {
|
|
144482
|
+
return IObject(defined$1(a));
|
|
144471
144483
|
}, ceil = Math.ceil, floor = Math.floor, _toInteger = function(a) {
|
|
144472
144484
|
return isNaN(a = +a) ? 0 : (a > 0 ? floor : ceil)(a);
|
|
144473
|
-
},
|
|
144474
|
-
|
|
144475
|
-
|
|
144476
|
-
|
|
144477
|
-
|
|
144478
|
-
|
|
144479
|
-
|
|
144480
|
-
|
|
144481
|
-
|
|
144482
|
-
|
|
144483
|
-
|
|
144484
|
-
|
|
144485
|
-
|
|
144485
|
+
}, _toLength, hasRequired_toLength;
|
|
144486
|
+
function require_toLength() {
|
|
144487
|
+
if (hasRequired_toLength)
|
|
144488
|
+
return _toLength;
|
|
144489
|
+
hasRequired_toLength = 1;
|
|
144490
|
+
var a = _toInteger, s = Math.min;
|
|
144491
|
+
return _toLength = function(x) {
|
|
144492
|
+
return x > 0 ? s(a(x), 9007199254740991) : 0;
|
|
144493
|
+
}, _toLength;
|
|
144494
|
+
}
|
|
144495
|
+
var _toAbsoluteIndex, hasRequired_toAbsoluteIndex;
|
|
144496
|
+
function require_toAbsoluteIndex() {
|
|
144497
|
+
if (hasRequired_toAbsoluteIndex)
|
|
144498
|
+
return _toAbsoluteIndex;
|
|
144499
|
+
hasRequired_toAbsoluteIndex = 1;
|
|
144500
|
+
var a = _toInteger, s = Math.max, x = Math.min;
|
|
144501
|
+
return _toAbsoluteIndex = function(y, $) {
|
|
144502
|
+
return y = a(y), y < 0 ? s(y + $, 0) : x(y, $);
|
|
144503
|
+
}, _toAbsoluteIndex;
|
|
144504
|
+
}
|
|
144505
|
+
var _arrayIncludes, hasRequired_arrayIncludes;
|
|
144506
|
+
function require_arrayIncludes() {
|
|
144507
|
+
if (hasRequired_arrayIncludes)
|
|
144508
|
+
return _arrayIncludes;
|
|
144509
|
+
hasRequired_arrayIncludes = 1;
|
|
144510
|
+
var a = _toIobject, s = require_toLength(), x = require_toAbsoluteIndex();
|
|
144511
|
+
return _arrayIncludes = function(y) {
|
|
144512
|
+
return function($, S, _) {
|
|
144513
|
+
var E = a($), A = s(E.length), w = x(_, A), T;
|
|
144514
|
+
if (y && S != S) {
|
|
144515
|
+
for (; A > w; )
|
|
144516
|
+
if (T = E[w++], T != T)
|
|
144517
|
+
return true;
|
|
144518
|
+
} else
|
|
144519
|
+
for (; A > w; w++)
|
|
144520
|
+
if ((y || w in E) && E[w] === S)
|
|
144521
|
+
return y || w || 0;
|
|
144522
|
+
return !y && -1;
|
|
144523
|
+
};
|
|
144524
|
+
}, _arrayIncludes;
|
|
144525
|
+
}
|
|
144526
|
+
var _shared = { exports: {} }, core$1 = _coreExports, global$3 = _globalExports, SHARED = "__core-js_shared__", store$1 = global$3[SHARED] || (global$3[SHARED] = {});
|
|
144486
144527
|
(_shared.exports = function(a, s) {
|
|
144487
144528
|
return store$1[a] || (store$1[a] = s !== void 0 ? s : {});
|
|
144488
144529
|
})("versions", []).push({
|
|
@@ -144492,31 +144533,69 @@ var _defined = function(a) {
|
|
|
144492
144533
|
});
|
|
144493
144534
|
var _sharedExports = _shared.exports, id$1 = 0, px = Math.random(), _uid = function(a) {
|
|
144494
144535
|
return "Symbol(".concat(a === void 0 ? "" : a, ")_", (++id$1 + px).toString(36));
|
|
144495
|
-
},
|
|
144496
|
-
|
|
144497
|
-
|
|
144498
|
-
|
|
144499
|
-
|
|
144500
|
-
|
|
144501
|
-
|
|
144502
|
-
|
|
144503
|
-
|
|
144504
|
-
}
|
|
144505
|
-
|
|
144506
|
-
|
|
144507
|
-
|
|
144536
|
+
}, _sharedKey, hasRequired_sharedKey;
|
|
144537
|
+
function require_sharedKey() {
|
|
144538
|
+
if (hasRequired_sharedKey)
|
|
144539
|
+
return _sharedKey;
|
|
144540
|
+
hasRequired_sharedKey = 1;
|
|
144541
|
+
var a = _sharedExports("keys"), s = _uid;
|
|
144542
|
+
return _sharedKey = function(x) {
|
|
144543
|
+
return a[x] || (a[x] = s(x));
|
|
144544
|
+
}, _sharedKey;
|
|
144545
|
+
}
|
|
144546
|
+
var _objectKeysInternal, hasRequired_objectKeysInternal;
|
|
144547
|
+
function require_objectKeysInternal() {
|
|
144548
|
+
if (hasRequired_objectKeysInternal)
|
|
144549
|
+
return _objectKeysInternal;
|
|
144550
|
+
hasRequired_objectKeysInternal = 1;
|
|
144551
|
+
var a = _has, s = _toIobject, x = require_arrayIncludes()(false), y = require_sharedKey()("IE_PROTO");
|
|
144552
|
+
return _objectKeysInternal = function($, S) {
|
|
144553
|
+
var _ = s($), E = 0, A = [], w;
|
|
144554
|
+
for (w in _)
|
|
144555
|
+
w != y && a(_, w) && A.push(w);
|
|
144556
|
+
for (; S.length > E; )
|
|
144557
|
+
a(_, w = S[E++]) && (~x(A, w) || A.push(w));
|
|
144558
|
+
return A;
|
|
144559
|
+
}, _objectKeysInternal;
|
|
144560
|
+
}
|
|
144561
|
+
var _enumBugKeys, hasRequired_enumBugKeys;
|
|
144562
|
+
function require_enumBugKeys() {
|
|
144563
|
+
return hasRequired_enumBugKeys || (hasRequired_enumBugKeys = 1, _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")), _enumBugKeys;
|
|
144564
|
+
}
|
|
144565
|
+
var _objectKeys, hasRequired_objectKeys;
|
|
144566
|
+
function require_objectKeys() {
|
|
144567
|
+
if (hasRequired_objectKeys)
|
|
144568
|
+
return _objectKeys;
|
|
144569
|
+
hasRequired_objectKeys = 1;
|
|
144570
|
+
var a = require_objectKeysInternal(), s = require_enumBugKeys();
|
|
144571
|
+
return _objectKeys = Object.keys || function(y) {
|
|
144572
|
+
return a(y, s);
|
|
144573
|
+
}, _objectKeys;
|
|
144574
|
+
}
|
|
144575
|
+
var _objectGops = {}, hasRequired_objectGops;
|
|
144576
|
+
function require_objectGops() {
|
|
144577
|
+
return hasRequired_objectGops || (hasRequired_objectGops = 1, _objectGops.f = Object.getOwnPropertySymbols), _objectGops;
|
|
144578
|
+
}
|
|
144508
144579
|
var _objectPie = {}, hasRequired_objectPie;
|
|
144509
144580
|
function require_objectPie() {
|
|
144510
144581
|
return hasRequired_objectPie || (hasRequired_objectPie = 1, _objectPie.f = {}.propertyIsEnumerable), _objectPie;
|
|
144511
144582
|
}
|
|
144512
|
-
var
|
|
144513
|
-
|
|
144514
|
-
|
|
144583
|
+
var _toObject, hasRequired_toObject;
|
|
144584
|
+
function require_toObject() {
|
|
144585
|
+
if (hasRequired_toObject)
|
|
144586
|
+
return _toObject;
|
|
144587
|
+
hasRequired_toObject = 1;
|
|
144588
|
+
var a = require_defined();
|
|
144589
|
+
return _toObject = function(s) {
|
|
144590
|
+
return Object(a(s));
|
|
144591
|
+
}, _toObject;
|
|
144592
|
+
}
|
|
144593
|
+
var _objectAssign, hasRequired_objectAssign;
|
|
144515
144594
|
function require_objectAssign() {
|
|
144516
144595
|
if (hasRequired_objectAssign)
|
|
144517
144596
|
return _objectAssign;
|
|
144518
144597
|
hasRequired_objectAssign = 1;
|
|
144519
|
-
var a = _descriptors, s =
|
|
144598
|
+
var a = _descriptors, s = require_objectKeys(), x = require_objectGops(), y = require_objectPie(), $ = require_toObject(), S = require_iobject(), _ = Object.assign;
|
|
144520
144599
|
return _objectAssign = !_ || _fails(function() {
|
|
144521
144600
|
var E = {}, A = {}, w = Symbol(), T = "abcdefghijklmnopqrst";
|
|
144522
144601
|
return E[w] = 7, T.split("").forEach(function(P) {
|
|
@@ -145238,17 +145317,25 @@ var _default$6 = function() {
|
|
|
145238
145317
|
return function(s, x, y) {
|
|
145239
145318
|
return x && a(s.prototype, x), y && a(s, y), s;
|
|
145240
145319
|
};
|
|
145241
|
-
}(), _typeof$i = {}, toInteger = _toInteger, defined =
|
|
145320
|
+
}(), _typeof$i = {}, toInteger = _toInteger, defined = require_defined(), _stringAt = function(a) {
|
|
145242
145321
|
return function(s, x) {
|
|
145243
145322
|
var y = String(defined(s)), $ = toInteger(x), S = y.length, _, E;
|
|
145244
145323
|
return $ < 0 || $ >= S ? "" : (_ = y.charCodeAt($), _ < 55296 || _ > 56319 || $ + 1 === S || (E = y.charCodeAt($ + 1)) < 56320 || E > 57343 ? y.charAt($) : y.slice($, $ + 2) );
|
|
145245
145324
|
};
|
|
145246
|
-
}, _redefine = _hide, _iterators = {},
|
|
145247
|
-
|
|
145248
|
-
|
|
145249
|
-
|
|
145250
|
-
|
|
145251
|
-
|
|
145325
|
+
}, _redefine = _hide, _iterators = {}, _objectDps, hasRequired_objectDps;
|
|
145326
|
+
function require_objectDps() {
|
|
145327
|
+
if (hasRequired_objectDps)
|
|
145328
|
+
return _objectDps;
|
|
145329
|
+
hasRequired_objectDps = 1;
|
|
145330
|
+
var a = _objectDp, s = _anObject, x = require_objectKeys();
|
|
145331
|
+
return _objectDps = _descriptors ? Object.defineProperties : function($, S) {
|
|
145332
|
+
s($);
|
|
145333
|
+
for (var _ = x(S), E = _.length, A = 0, w; E > A; )
|
|
145334
|
+
a.f($, w = _[A++], S[w]);
|
|
145335
|
+
return $;
|
|
145336
|
+
}, _objectDps;
|
|
145337
|
+
}
|
|
145338
|
+
var _html, hasRequired_html;
|
|
145252
145339
|
function require_html() {
|
|
145253
145340
|
if (hasRequired_html)
|
|
145254
145341
|
return _html;
|
|
@@ -145256,28 +145343,36 @@ function require_html() {
|
|
|
145256
145343
|
var a = _globalExports.document;
|
|
145257
145344
|
return _html = a && a.documentElement, _html;
|
|
145258
145345
|
}
|
|
145259
|
-
var
|
|
145260
|
-
|
|
145261
|
-
|
|
145262
|
-
|
|
145263
|
-
|
|
145264
|
-
|
|
145265
|
-
},
|
|
145266
|
-
|
|
145267
|
-
|
|
145268
|
-
|
|
145346
|
+
var _objectCreate, hasRequired_objectCreate;
|
|
145347
|
+
function require_objectCreate() {
|
|
145348
|
+
if (hasRequired_objectCreate)
|
|
145349
|
+
return _objectCreate;
|
|
145350
|
+
hasRequired_objectCreate = 1;
|
|
145351
|
+
var a = _anObject, s = require_objectDps(), x = require_enumBugKeys(), y = require_sharedKey()("IE_PROTO"), $ = function() {
|
|
145352
|
+
}, S = "prototype", _ = function() {
|
|
145353
|
+
var E = require_domCreate()("iframe"), A = x.length, w = "<", T = ">", P;
|
|
145354
|
+
for (E.style.display = "none", require_html().appendChild(E), E.src = "javascript:", P = E.contentWindow.document, P.open(), P.write(w + "script" + T + "document.F=Object" + w + "/script" + T), P.close(), _ = P.F; A--; )
|
|
145355
|
+
delete _[S][x[A]];
|
|
145356
|
+
return _();
|
|
145357
|
+
};
|
|
145358
|
+
return _objectCreate = Object.create || function(A, w) {
|
|
145359
|
+
var T;
|
|
145360
|
+
return A !== null ? ($[S] = a(A), T = new $(), $[S] = null, T[y] = A) : T = _(), w === void 0 ? T : s(T, w);
|
|
145361
|
+
}, _objectCreate;
|
|
145362
|
+
}
|
|
145363
|
+
var _wks = { exports: {} }, store = _sharedExports("wks"), uid$1 = _uid, Symbol$1 = _globalExports.Symbol, USE_SYMBOL = typeof Symbol$1 == "function", $exports = _wks.exports = function(a) {
|
|
145269
145364
|
return store[a] || (store[a] = USE_SYMBOL && Symbol$1[a] || (USE_SYMBOL ? Symbol$1 : uid$1)("Symbol." + a));
|
|
145270
145365
|
};
|
|
145271
145366
|
$exports.store = store;
|
|
145272
145367
|
var _wksExports = _wks.exports, def = _objectDp.f, has$4 = _has, TAG = _wksExports("toStringTag"), _setToStringTag = function(a, s, x) {
|
|
145273
145368
|
a && !has$4(a = x ? a : a.prototype, TAG) && def(a, TAG, { configurable: true, value: s });
|
|
145274
|
-
}, create$2 =
|
|
145369
|
+
}, create$2 = require_objectCreate(), descriptor = _propertyDesc, setToStringTag$2 = _setToStringTag, IteratorPrototype = {};
|
|
145275
145370
|
_hide(IteratorPrototype, _wksExports("iterator"), function() {
|
|
145276
145371
|
return this;
|
|
145277
145372
|
});
|
|
145278
145373
|
var _iterCreate = function(a, s, x) {
|
|
145279
145374
|
a.prototype = create$2(IteratorPrototype, { next: descriptor(1, x) }), setToStringTag$2(a, s + " Iterator");
|
|
145280
|
-
}, has$3 = _has, toObject$1 =
|
|
145375
|
+
}, has$3 = _has, toObject$1 = require_toObject(), IE_PROTO = require_sharedKey()("IE_PROTO"), ObjectProto$1 = Object.prototype, _objectGpo = Object.getPrototypeOf || function(a) {
|
|
145281
145376
|
return a = toObject$1(a), has$3(a, IE_PROTO) ? a[IE_PROTO] : typeof a.constructor == "function" && a instanceof a.constructor ? a.constructor.prototype : a instanceof Object ? ObjectProto$1 : null;
|
|
145282
145377
|
}, $export$3 = _export, Iterators$2 = _iterators, $iterCreate = _iterCreate, setToStringTag$1 = _setToStringTag, getPrototypeOf = _objectGpo, ITERATOR = _wksExports("iterator"), BUGGY = !([].keys && "next" in [].keys()), FF_ITERATOR = "@@iterator", KEYS = "keys", VALUES = "values", returnThis = function() {
|
|
145283
145378
|
return this;
|
|
@@ -145378,20 +145473,20 @@ var iterator$1 = _wksExt.f("iterator"), iterator = { default: iterator$1, __esMo
|
|
|
145378
145473
|
}, _metaExports = _meta.exports, core = _coreExports, wksExt$1 = _wksExt, defineProperty = _objectDp.f, _wksDefine = function(a) {
|
|
145379
145474
|
var s = core.Symbol || (core.Symbol = {});
|
|
145380
145475
|
a.charAt(0) != "_" && !(a in s) && defineProperty(s, a, { value: wksExt$1.f(a) });
|
|
145381
|
-
}, getKeys =
|
|
145476
|
+
}, getKeys = require_objectKeys(), gOPS = require_objectGops(), pIE$1 = require_objectPie(), _enumKeys = function(a) {
|
|
145382
145477
|
var s = getKeys(a), x = gOPS.f;
|
|
145383
145478
|
if (x)
|
|
145384
145479
|
for (var y = x(a), $ = pIE$1.f, S = 0, _; y.length > S; )
|
|
145385
145480
|
$.call(a, _ = y[S++]) && s.push(_);
|
|
145386
145481
|
return s;
|
|
145387
|
-
}, cof =
|
|
145482
|
+
}, cof = require_cof(), _isArray = Array.isArray || function a(s) {
|
|
145388
145483
|
return cof(s) == "Array";
|
|
145389
145484
|
}, _objectGopnExt = {}, _objectGopn = {}, hasRequired_objectGopn;
|
|
145390
145485
|
function require_objectGopn() {
|
|
145391
145486
|
if (hasRequired_objectGopn)
|
|
145392
145487
|
return _objectGopn;
|
|
145393
145488
|
hasRequired_objectGopn = 1;
|
|
145394
|
-
var a =
|
|
145489
|
+
var a = require_objectKeysInternal(), s = require_enumBugKeys().concat("length", "prototype");
|
|
145395
145490
|
return _objectGopn.f = Object.getOwnPropertyNames || function(y) {
|
|
145396
145491
|
return a(y, s);
|
|
145397
145492
|
}, _objectGopn;
|
|
@@ -145416,7 +145511,7 @@ _objectGopd.f = _descriptors ? gOPD$1 : function a(s, x) {
|
|
|
145416
145511
|
if (has$1(s, x))
|
|
145417
145512
|
return createDesc$1(!pIE.f.call(s, x), s[x]);
|
|
145418
145513
|
};
|
|
145419
|
-
var global$1 = _globalExports, has = _has, DESCRIPTORS = _descriptors, $export$2 = _export, redefine = _redefine, META = _metaExports.KEY, $fails = _fails, shared = _sharedExports, setToStringTag = _setToStringTag, uid = _uid, wks = _wksExports, wksExt = _wksExt, wksDefine = _wksDefine, enumKeys = _enumKeys, isArray = _isArray, anObject = _anObject, isObject = _isObject, toObject =
|
|
145514
|
+
var global$1 = _globalExports, has = _has, DESCRIPTORS = _descriptors, $export$2 = _export, redefine = _redefine, META = _metaExports.KEY, $fails = _fails, shared = _sharedExports, setToStringTag = _setToStringTag, uid = _uid, wks = _wksExports, wksExt = _wksExt, wksDefine = _wksDefine, enumKeys = _enumKeys, isArray = _isArray, anObject = _anObject, isObject = _isObject, toObject = require_toObject(), toIObject = _toIobject, toPrimitive = _toPrimitive$5, createDesc = _propertyDesc, _create$1 = require_objectCreate(), gOPNExt = _objectGopnExt, $GOPD = _objectGopd, $GOPS = require_objectGops(), $DP = _objectDp, $keys = require_objectKeys(), gOPD = $GOPD.f, dP = $DP.f, gOPN = gOPNExt.f, $Symbol = global$1.Symbol, $JSON = global$1.JSON, _stringify = $JSON && $JSON.stringify, PROTOTYPE = "prototype", HIDDEN = wks("_hidden"), TO_PRIMITIVE = wks("toPrimitive"), isEnum = {}.propertyIsEnumerable, SymbolRegistry = shared("symbol-registry"), AllSymbols = shared("symbols"), OPSymbols = shared("op-symbols"), ObjectProto = Object[PROTOTYPE], USE_NATIVE = typeof $Symbol == "function" && !!$GOPS.f, QObject = global$1.QObject, setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild, setSymbolDesc = DESCRIPTORS && $fails(function() {
|
|
145420
145515
|
return _create$1(dP({}, "a", {
|
|
145421
145516
|
get: function() {
|
|
145422
145517
|
return dP(this, "a", { value: 7 }).a;
|
|
@@ -145591,7 +145686,7 @@ function require_setProto() {
|
|
|
145591
145686
|
var $export$1 = _export;
|
|
145592
145687
|
$export$1($export$1.S, "Object", { setPrototypeOf: require_setProto().set });
|
|
145593
145688
|
var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf, setPrototypeOf = { default: setPrototypeOf$1, __esModule: true }, $export = _export;
|
|
145594
|
-
$export($export.S, "Object", { create:
|
|
145689
|
+
$export($export.S, "Object", { create: require_objectCreate() });
|
|
145595
145690
|
var $Object = _coreExports.Object, create$1 = function a(s, x) {
|
|
145596
145691
|
return $Object.create(s, x);
|
|
145597
145692
|
}, create = { default: create$1, __esModule: true }, _setPrototypeOf = setPrototypeOf, _setPrototypeOf2 = _interopRequireDefault$c(_setPrototypeOf), _create = create, _create2 = _interopRequireDefault$c(_create), _typeof2 = _typeof$i, _typeof3 = _interopRequireDefault$c(_typeof2);
|
|
@@ -154938,7 +155033,7 @@ const FormRenderComponent = withProvider(FormCore, defaultWidgets), AlignWidget
|
|
|
154938
155033
|
return a;
|
|
154939
155034
|
};
|
|
154940
155035
|
async function convertPdfToBase64(a) {
|
|
154941
|
-
const { getB64BasePdf: s } = await import('./chunks/index-
|
|
155036
|
+
const { getB64BasePdf: s } = await import('./chunks/index-D1FuD_XZ.js'), x = await a.arrayBuffer();
|
|
154942
155037
|
return s(new Uint8Array(x));
|
|
154943
155038
|
}
|
|
154944
155039
|
const ENCODING_MAPPING = {
|