@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,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React$c = require('react');
|
|
4
|
-
var helper = require('./chunks/helper-
|
|
5
|
-
var pluginRegistry = require('./chunks/pluginRegistry-
|
|
4
|
+
var helper = require('./chunks/helper-C2o2tpNj.js');
|
|
5
|
+
var pluginRegistry = require('./chunks/pluginRegistry-Ba3ANzzx.js');
|
|
6
6
|
var expression = require('./chunks/expression-CoTzcL7v.js');
|
|
7
|
-
var index$2 = require('./chunks/index-
|
|
7
|
+
var index$2 = require('./chunks/index-CXm3doOM.js');
|
|
8
8
|
var ReactDOM__default = require('react-dom');
|
|
9
|
-
var index = require('./chunks/index-
|
|
9
|
+
var index = require('./chunks/index-dHRmLCnu.js');
|
|
10
10
|
require('zod');
|
|
11
11
|
require('buffer');
|
|
12
12
|
require('acorn');
|
|
@@ -1939,7 +1939,7 @@ var parseStyle = function a(s) {
|
|
|
1939
1939
|
function uniqueHash(a, s) {
|
|
1940
1940
|
return murmur2("".concat(a.join("%")).concat(s));
|
|
1941
1941
|
}
|
|
1942
|
-
function Empty$
|
|
1942
|
+
function Empty$3() {
|
|
1943
1943
|
return null;
|
|
1944
1944
|
}
|
|
1945
1945
|
var STYLE_PREFIX = "style";
|
|
@@ -2009,7 +2009,7 @@ function useStyleRegister(a, s) {
|
|
|
2009
2009
|
), V = _slicedToArray$e(z, 3), U = V[0], G = V[1], Z = V[2];
|
|
2010
2010
|
return function(ie) {
|
|
2011
2011
|
var J;
|
|
2012
|
-
return !N || H || !C ? J = /* @__PURE__ */ React$c__namespace.createElement(Empty$
|
|
2012
|
+
return !N || H || !C ? J = /* @__PURE__ */ React$c__namespace.createElement(Empty$3, null) : J = /* @__PURE__ */ React$c__namespace.createElement("style", _extends$1({}, _defineProperty$c(_defineProperty$c({}, ATTR_TOKEN, G), ATTR_MARK, Z), {
|
|
2013
2013
|
dangerouslySetInnerHTML: {
|
|
2014
2014
|
__html: U
|
|
2015
2015
|
}
|
|
@@ -15613,7 +15613,7 @@ function getStatusClassNames(a, s, x) {
|
|
|
15613
15613
|
[`${a}-has-feedback`]: x
|
|
15614
15614
|
});
|
|
15615
15615
|
}
|
|
15616
|
-
const getMergedStatus = (a, s) => s || a, Empty$
|
|
15616
|
+
const getMergedStatus = (a, s) => s || a, Empty$2 = () => {
|
|
15617
15617
|
const [, a] = useToken$1(), [s] = useLocale$2("Empty"), y = new FastColor(a.colorBgBase).toHsl().l < 0.5 ? {
|
|
15618
15618
|
opacity: 0.65
|
|
15619
15619
|
} : {};
|
|
@@ -15662,7 +15662,7 @@ const getMergedStatus = (a, s) => s || a, Empty$3 = () => {
|
|
|
15662
15662
|
}), /* @__PURE__ */ React$c__namespace.createElement("path", {
|
|
15663
15663
|
d: "M5.698 5.63H0L2.898.704zM9.259.704h4.985V5.63H9.259z"
|
|
15664
15664
|
}))));
|
|
15665
|
-
}, DefaultEmptyImg = Empty$
|
|
15665
|
+
}, DefaultEmptyImg = Empty$2, Simple = () => {
|
|
15666
15666
|
const [, a] = useToken$1(), [s] = useLocale$2("Empty"), {
|
|
15667
15667
|
colorFill: x,
|
|
15668
15668
|
colorFillTertiary: y,
|
|
@@ -15778,7 +15778,7 @@ var __rest$$ = globalThis && globalThis.__rest || function(a, s) {
|
|
|
15778
15778
|
s.indexOf(y[$]) < 0 && Object.prototype.propertyIsEnumerable.call(a, y[$]) && (x[y[$]] = a[y[$]]);
|
|
15779
15779
|
return x;
|
|
15780
15780
|
};
|
|
15781
|
-
const defaultEmptyImg = /* @__PURE__ */ React$c__namespace.createElement(DefaultEmptyImg, null), simpleEmptyImg = /* @__PURE__ */ React$c__namespace.createElement(SimpleEmptyImg, null), Empty
|
|
15781
|
+
const defaultEmptyImg = /* @__PURE__ */ React$c__namespace.createElement(DefaultEmptyImg, null), simpleEmptyImg = /* @__PURE__ */ React$c__namespace.createElement(SimpleEmptyImg, null), Empty = (a) => {
|
|
15782
15782
|
var s;
|
|
15783
15783
|
const {
|
|
15784
15784
|
className: x,
|
|
@@ -15822,9 +15822,9 @@ const defaultEmptyImg = /* @__PURE__ */ React$c__namespace.createElement(Default
|
|
|
15822
15822
|
style: Object.assign(Object.assign({}, B.footer), P == null ? void 0 : P.footer)
|
|
15823
15823
|
}, E)));
|
|
15824
15824
|
};
|
|
15825
|
-
Empty
|
|
15826
|
-
Empty
|
|
15827
|
-
const Empty$
|
|
15825
|
+
Empty.PRESENTED_IMAGE_DEFAULT = defaultEmptyImg;
|
|
15826
|
+
Empty.PRESENTED_IMAGE_SIMPLE = simpleEmptyImg;
|
|
15827
|
+
const Empty$1 = Empty, DefaultRenderEmpty = (a) => {
|
|
15828
15828
|
const {
|
|
15829
15829
|
componentName: s
|
|
15830
15830
|
} = a, {
|
|
@@ -15833,22 +15833,22 @@ const Empty$2 = Empty$1, DefaultRenderEmpty = (a) => {
|
|
|
15833
15833
|
switch (s) {
|
|
15834
15834
|
case "Table":
|
|
15835
15835
|
case "List":
|
|
15836
|
-
return /* @__PURE__ */ React$c__namespace.default.createElement(Empty$
|
|
15837
|
-
image: Empty$
|
|
15836
|
+
return /* @__PURE__ */ React$c__namespace.default.createElement(Empty$1, {
|
|
15837
|
+
image: Empty$1.PRESENTED_IMAGE_SIMPLE
|
|
15838
15838
|
});
|
|
15839
15839
|
case "Select":
|
|
15840
15840
|
case "TreeSelect":
|
|
15841
15841
|
case "Cascader":
|
|
15842
15842
|
case "Transfer":
|
|
15843
15843
|
case "Mentions":
|
|
15844
|
-
return /* @__PURE__ */ React$c__namespace.default.createElement(Empty$
|
|
15845
|
-
image: Empty$
|
|
15844
|
+
return /* @__PURE__ */ React$c__namespace.default.createElement(Empty$1, {
|
|
15845
|
+
image: Empty$1.PRESENTED_IMAGE_SIMPLE,
|
|
15846
15846
|
className: `${y}-small`
|
|
15847
15847
|
});
|
|
15848
15848
|
case "Table.filter":
|
|
15849
15849
|
return null;
|
|
15850
15850
|
default:
|
|
15851
|
-
return /* @__PURE__ */ React$c__namespace.default.createElement(Empty$
|
|
15851
|
+
return /* @__PURE__ */ React$c__namespace.default.createElement(Empty$1, null);
|
|
15852
15852
|
}
|
|
15853
15853
|
}, DefaultRenderEmpty$1 = DefaultRenderEmpty, useVariant = (a, s, x) => {
|
|
15854
15854
|
var y, $;
|
|
@@ -36918,10 +36918,10 @@ var _excluded$j = ["visible", "onVisibleChange", "getContainer", "current", "mov
|
|
|
36918
36918
|
imageRender: V,
|
|
36919
36919
|
onChange: ye
|
|
36920
36920
|
}, U)));
|
|
36921
|
-
}, uid$
|
|
36921
|
+
}, uid$3 = 0;
|
|
36922
36922
|
function useRegisterImage(a, s) {
|
|
36923
36923
|
var x = React$c__namespace.useState(function() {
|
|
36924
|
-
return uid$
|
|
36924
|
+
return uid$3 += 1, String(uid$3);
|
|
36925
36925
|
}), y = _slicedToArray$e(x, 1), $ = y[0], S = React$c__namespace.useContext(PreviewGroupContext), _ = {
|
|
36926
36926
|
data: s,
|
|
36927
36927
|
canPreview: a
|
|
@@ -46011,8 +46011,8 @@ const FilterDropdown = (a) => {
|
|
|
46011
46011
|
else {
|
|
46012
46012
|
const we = ee() || [], Re = () => {
|
|
46013
46013
|
var Pe, Ie;
|
|
46014
|
-
const Te = (Pe = Ee == null ? void 0 : Ee("Table.filter")) !== null && Pe !== void 0 ? Pe : /* @__PURE__ */ React$c__namespace.createElement(Empty$
|
|
46015
|
-
image: Empty$
|
|
46014
|
+
const Te = (Pe = Ee == null ? void 0 : Ee("Table.filter")) !== null && Pe !== void 0 ? Pe : /* @__PURE__ */ React$c__namespace.createElement(Empty$1, {
|
|
46015
|
+
image: Empty$1.PRESENTED_IMAGE_SIMPLE,
|
|
46016
46016
|
description: M.filterEmptyText,
|
|
46017
46017
|
styles: {
|
|
46018
46018
|
image: {
|
|
@@ -50346,7 +50346,7 @@ var traverseFileTree = /* @__PURE__ */ function() {
|
|
|
50346
50346
|
return a.apply(this, arguments);
|
|
50347
50347
|
};
|
|
50348
50348
|
}(), now$1 = +/* @__PURE__ */ new Date(), index$n = 0;
|
|
50349
|
-
function uid$
|
|
50349
|
+
function uid$2() {
|
|
50350
50350
|
return "rc-upload-".concat(now$1, "-").concat(++index$n);
|
|
50351
50351
|
}
|
|
50352
50352
|
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) {
|
|
@@ -50358,7 +50358,7 @@ var _excluded$1 = ["component", "prefixCls", "className", "classNames", "disable
|
|
|
50358
50358
|
for (var $ = arguments.length, S = new Array($), _ = 0; _ < $; _++)
|
|
50359
50359
|
S[_] = arguments[_];
|
|
50360
50360
|
return y = s.call.apply(s, [this].concat(S)), _defineProperty$c(_assertThisInitialized(y), "state", {
|
|
50361
|
-
uid: uid$
|
|
50361
|
+
uid: uid$2()
|
|
50362
50362
|
}), _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) {
|
|
50363
50363
|
var A = y.props, w = A.accept, T = A.directory, P = E.target.files, C = _toConsumableArray$e(P).filter(function(R) {
|
|
50364
50364
|
return !T || attrAccept(R, w);
|
|
@@ -50462,7 +50462,7 @@ var _excluded$1 = ["component", "prefixCls", "className", "classNames", "disable
|
|
|
50462
50462
|
};
|
|
50463
50463
|
}()), _defineProperty$c(_assertThisInitialized(y), "uploadFiles", function(E) {
|
|
50464
50464
|
var A = _toConsumableArray$e(E), w = A.map(function(T) {
|
|
50465
|
-
return T.uid = uid$
|
|
50465
|
+
return T.uid = uid$2(), y.processFile(T, A);
|
|
50466
50466
|
});
|
|
50467
50467
|
Promise.all(w).then(function(T) {
|
|
50468
50468
|
var P = y.props.onBatchStart;
|
|
@@ -50605,7 +50605,7 @@ var _excluded$1 = ["component", "prefixCls", "className", "classNames", "disable
|
|
|
50605
50605
|
key: "reset",
|
|
50606
50606
|
value: function() {
|
|
50607
50607
|
this.setState({
|
|
50608
|
-
uid: uid$
|
|
50608
|
+
uid: uid$2()
|
|
50609
50609
|
});
|
|
50610
50610
|
}
|
|
50611
50611
|
}, {
|
|
@@ -52805,7 +52805,7 @@ function getMods(a, s) {
|
|
|
52805
52805
|
x[y] = a[x[y].toLowerCase()];
|
|
52806
52806
|
return x;
|
|
52807
52807
|
}
|
|
52808
|
-
function getKeys$
|
|
52808
|
+
function getKeys$2(a) {
|
|
52809
52809
|
typeof a != "string" && (a = ""), a = a.replace(/\s/g, "");
|
|
52810
52810
|
const s = a.split(",");
|
|
52811
52811
|
let x = s.lastIndexOf("");
|
|
@@ -53011,7 +53011,7 @@ const eachUnbind = (a) => {
|
|
|
53011
53011
|
method: y,
|
|
53012
53012
|
splitKey: $ = "+"
|
|
53013
53013
|
} = a;
|
|
53014
|
-
getKeys$
|
|
53014
|
+
getKeys$2(s).forEach((_) => {
|
|
53015
53015
|
const E = _.split($), A = E.length, w = E[A - 1], T = w === "*" ? "*" : code$1(w);
|
|
53016
53016
|
if (!_handlers[T])
|
|
53017
53017
|
return;
|
|
@@ -53074,7 +53074,7 @@ function dispatch(a, s) {
|
|
|
53074
53074
|
}
|
|
53075
53075
|
function hotkeys$1(a, s, x) {
|
|
53076
53076
|
_downKeys = [];
|
|
53077
|
-
const y = getKeys$
|
|
53077
|
+
const y = getKeys$2(a);
|
|
53078
53078
|
let $ = [], S = "all", _ = document, E = 0, A = false, w = true, T = "+", P = false, C = false;
|
|
53079
53079
|
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++)
|
|
53080
53080
|
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({
|
|
@@ -98845,7 +98845,7 @@ strings$6.utf8border = function(a, s) {
|
|
|
98845
98845
|
function ZStream$6() {
|
|
98846
98846
|
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;
|
|
98847
98847
|
}
|
|
98848
|
-
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$
|
|
98848
|
+
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;
|
|
98849
98849
|
function Deflate$3(a) {
|
|
98850
98850
|
if (!(this instanceof Deflate$3))
|
|
98851
98851
|
return new Deflate$3(a);
|
|
@@ -98872,7 +98872,7 @@ function Deflate$3(a) {
|
|
|
98872
98872
|
throw new Error(msg$4[x]);
|
|
98873
98873
|
if (s.header && zlib_deflate$1.deflateSetHeader(this.strm, s.header), s.dictionary) {
|
|
98874
98874
|
var y;
|
|
98875
|
-
if (typeof s.dictionary == "string" ? y = strings$5.string2buf(s.dictionary) : toString$
|
|
98875
|
+
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)
|
|
98876
98876
|
throw new Error(msg$4[x]);
|
|
98877
98877
|
this._dict_set = true;
|
|
98878
98878
|
}
|
|
@@ -98881,7 +98881,7 @@ Deflate$3.prototype.push = function(a, s) {
|
|
|
98881
98881
|
var x = this.strm, y = this.options.chunkSize, $, S;
|
|
98882
98882
|
if (this.ended)
|
|
98883
98883
|
return false;
|
|
98884
|
-
S = s === ~~s ? s : s === true ? Z_FINISH$6 : Z_NO_FLUSH$4, typeof a == "string" ? x.input = strings$5.string2buf(a) : toString$
|
|
98884
|
+
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;
|
|
98885
98885
|
do {
|
|
98886
98886
|
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)
|
|
98887
98887
|
return this.onEnd($), this.ended = true, false;
|
|
@@ -99722,7 +99722,7 @@ var constants$5 = {
|
|
|
99722
99722
|
function GZheader$4() {
|
|
99723
99723
|
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;
|
|
99724
99724
|
}
|
|
99725
|
-
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$
|
|
99725
|
+
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;
|
|
99726
99726
|
function Inflate$3(a) {
|
|
99727
99727
|
if (!(this instanceof Inflate$3))
|
|
99728
99728
|
return new Inflate$3(a);
|
|
@@ -99739,14 +99739,14 @@ function Inflate$3(a) {
|
|
|
99739
99739
|
);
|
|
99740
99740
|
if (x !== c$1.Z_OK)
|
|
99741
99741
|
throw new Error(msg$3[x]);
|
|
99742
|
-
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$
|
|
99742
|
+
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)))
|
|
99743
99743
|
throw new Error(msg$3[x]);
|
|
99744
99744
|
}
|
|
99745
99745
|
Inflate$3.prototype.push = function(a, s) {
|
|
99746
99746
|
var x = this.strm, y = this.options.chunkSize, $ = this.options.dictionary, S, _, E, A, w, T = false;
|
|
99747
99747
|
if (this.ended)
|
|
99748
99748
|
return false;
|
|
99749
|
-
_ = s === ~~s ? s : s === true ? c$1.Z_FINISH : c$1.Z_NO_FLUSH, typeof a == "string" ? x.input = strings$4.binstring2buf(a) : toString$
|
|
99749
|
+
_ = 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;
|
|
99750
99750
|
do {
|
|
99751
99751
|
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)
|
|
99752
99752
|
return this.onEnd(S), this.ended = true, false;
|
|
@@ -101837,7 +101837,7 @@ function GZheader$2() {
|
|
|
101837
101837
|
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;
|
|
101838
101838
|
}
|
|
101839
101839
|
var gzheader$1 = GZheader$2;
|
|
101840
|
-
const toString$
|
|
101840
|
+
const toString$5 = Object.prototype.toString, {
|
|
101841
101841
|
Z_NO_FLUSH: Z_NO_FLUSH$3,
|
|
101842
101842
|
Z_FINISH: Z_FINISH$4,
|
|
101843
101843
|
Z_OK: Z_OK$4,
|
|
@@ -101861,7 +101861,7 @@ function Inflate$1(a) {
|
|
|
101861
101861
|
);
|
|
101862
101862
|
if (x !== Z_OK$4)
|
|
101863
101863
|
throw new Error(messages$1[x]);
|
|
101864
|
-
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$
|
|
101864
|
+
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)))
|
|
101865
101865
|
throw new Error(messages$1[x]);
|
|
101866
101866
|
}
|
|
101867
101867
|
Inflate$1.prototype.push = function(a, s) {
|
|
@@ -101869,7 +101869,7 @@ Inflate$1.prototype.push = function(a, s) {
|
|
|
101869
101869
|
let S, _, E;
|
|
101870
101870
|
if (this.ended)
|
|
101871
101871
|
return false;
|
|
101872
|
-
for (s === ~~s ? _ = s : _ = s === true ? Z_FINISH$4 : Z_NO_FLUSH$3, toString$
|
|
101872
|
+
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; ; ) {
|
|
101873
101873
|
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; )
|
|
101874
101874
|
inflate_1$2.inflateReset(x), S = inflate_1$2.inflate(x, _);
|
|
101875
101875
|
switch (S) {
|
|
@@ -105152,7 +105152,7 @@ strings$2.utf8border = function(a, s) {
|
|
|
105152
105152
|
function ZStream$2() {
|
|
105153
105153
|
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;
|
|
105154
105154
|
}
|
|
105155
|
-
var zstream = ZStream$2, zlib_deflate = deflate$3, utils$5 = common$1, strings$1 = strings$2, msg$1 = messages, ZStream$1 = zstream, toString$
|
|
105155
|
+
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;
|
|
105156
105156
|
function Deflate(a) {
|
|
105157
105157
|
if (!(this instanceof Deflate))
|
|
105158
105158
|
return new Deflate(a);
|
|
@@ -105179,7 +105179,7 @@ function Deflate(a) {
|
|
|
105179
105179
|
throw new Error(msg$1[x]);
|
|
105180
105180
|
if (s.header && zlib_deflate.deflateSetHeader(this.strm, s.header), s.dictionary) {
|
|
105181
105181
|
var y;
|
|
105182
|
-
if (typeof s.dictionary == "string" ? y = strings$1.string2buf(s.dictionary) : toString$
|
|
105182
|
+
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)
|
|
105183
105183
|
throw new Error(msg$1[x]);
|
|
105184
105184
|
this._dict_set = true;
|
|
105185
105185
|
}
|
|
@@ -105188,7 +105188,7 @@ Deflate.prototype.push = function(a, s) {
|
|
|
105188
105188
|
var x = this.strm, y = this.options.chunkSize, $, S;
|
|
105189
105189
|
if (this.ended)
|
|
105190
105190
|
return false;
|
|
105191
|
-
S = s === ~~s ? s : s === true ? Z_FINISH$1 : Z_NO_FLUSH, typeof a == "string" ? x.input = strings$1.string2buf(a) : toString$
|
|
105191
|
+
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;
|
|
105192
105192
|
do {
|
|
105193
105193
|
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)
|
|
105194
105194
|
return this.onEnd($), this.ended = true, false;
|
|
@@ -106029,7 +106029,7 @@ var constants$1 = {
|
|
|
106029
106029
|
function GZheader$1() {
|
|
106030
106030
|
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;
|
|
106031
106031
|
}
|
|
106032
|
-
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$
|
|
106032
|
+
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;
|
|
106033
106033
|
function Inflate(a) {
|
|
106034
106034
|
if (!(this instanceof Inflate))
|
|
106035
106035
|
return new Inflate(a);
|
|
@@ -106046,14 +106046,14 @@ function Inflate(a) {
|
|
|
106046
106046
|
);
|
|
106047
106047
|
if (x !== c.Z_OK)
|
|
106048
106048
|
throw new Error(msg[x]);
|
|
106049
|
-
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$
|
|
106049
|
+
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)))
|
|
106050
106050
|
throw new Error(msg[x]);
|
|
106051
106051
|
}
|
|
106052
106052
|
Inflate.prototype.push = function(a, s) {
|
|
106053
106053
|
var x = this.strm, y = this.options.chunkSize, $ = this.options.dictionary, S, _, E, A, w, T = false;
|
|
106054
106054
|
if (this.ended)
|
|
106055
106055
|
return false;
|
|
106056
|
-
_ = s === ~~s ? s : s === true ? c.Z_FINISH : c.Z_NO_FLUSH, typeof a == "string" ? x.input = strings.binstring2buf(a) : toString$
|
|
106056
|
+
_ = 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;
|
|
106057
106057
|
do {
|
|
106058
106058
|
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)
|
|
106059
106059
|
return this.onEnd(S), this.ended = true, false;
|
|
@@ -126361,7 +126361,7 @@ var requestAnimationFrame$1 = /* @__PURE__ */ function() {
|
|
|
126361
126361
|
clearTimeout(s);
|
|
126362
126362
|
};
|
|
126363
126363
|
}();
|
|
126364
|
-
function getKeys$
|
|
126364
|
+
function getKeys$1(a) {
|
|
126365
126365
|
return Object.keys(a);
|
|
126366
126366
|
}
|
|
126367
126367
|
function convertUnitSize(a, s) {
|
|
@@ -130068,7 +130068,7 @@ function renderDirectionControlsByInfos(a, s, x, y) {
|
|
|
130068
130068
|
return null;
|
|
130069
130069
|
C[D] = true;
|
|
130070
130070
|
var F = (throttle(w, 15) + R * DIRECTION_ROTATIONS[D] + 720) % 180, L = {};
|
|
130071
|
-
return getKeys$
|
|
130071
|
+
return getKeys$1(N).forEach(function(O) {
|
|
130072
130072
|
L["data-".concat(O)] = N[O];
|
|
130073
130073
|
}), 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) {
|
|
130074
130074
|
return S[O];
|
|
@@ -130118,7 +130118,7 @@ function renderAroundControls(a, s, x, y) {
|
|
|
130118
130118
|
var $ = a.renderState;
|
|
130119
130119
|
$.renderDirectionMap || ($.renderDirectionMap = {});
|
|
130120
130120
|
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;
|
|
130121
|
-
return (y || getKeys$
|
|
130121
|
+
return (y || getKeys$1(w)).map(function(R) {
|
|
130122
130122
|
var I = DIRECTION_INDEXES[R];
|
|
130123
130123
|
if (!I)
|
|
130124
130124
|
return null;
|
|
@@ -131730,7 +131730,7 @@ cursor: move;
|
|
|
131730
131730
|
} })
|
|
131731
131731
|
));
|
|
131732
131732
|
}), _) {
|
|
131733
|
-
var I = getKeys$
|
|
131733
|
+
var I = getKeys$1(A || {}), N = {};
|
|
131734
131734
|
I.forEach(function(D) {
|
|
131735
131735
|
A[D].forEach(function(B) {
|
|
131736
131736
|
N[B] = D;
|
|
@@ -133259,7 +133259,7 @@ function fillCSSObject(a, s) {
|
|
|
133259
133259
|
}
|
|
133260
133260
|
return {
|
|
133261
133261
|
style: a,
|
|
133262
|
-
cssText: getKeys$
|
|
133262
|
+
cssText: getKeys$1(a).map(function(y) {
|
|
133263
133263
|
return "".concat(decamelize(y, "-"), ": ").concat(a[y], ";");
|
|
133264
133264
|
}).join("")
|
|
133265
133265
|
};
|
|
@@ -136090,7 +136090,7 @@ var MoveableManager = /* @__PURE__ */ function(a) {
|
|
|
136090
136090
|
var y = this.props, $ = y.dragTarget || y.target, S = this._prevOriginalDragTarget, _ = this._prevDragArea, E = y.dragArea, A = !E && S !== $, w = (x || E) && _ !== E;
|
|
136091
136091
|
return A || w || this._prevPropTarget != this._propTarget;
|
|
136092
136092
|
}, s.prototype._updateNativeEvents = function() {
|
|
136093
|
-
var x = this, y = this.props, $ = y.dragArea ? this.areaElement : this.state.target, S = this.events, _ = getKeys$
|
|
136093
|
+
var x = this, y = this.props, $ = y.dragArea ? this.areaElement : this.state.target, S = this.events, _ = getKeys$1(S);
|
|
136094
136094
|
if (this._isTargetChanged())
|
|
136095
136095
|
for (var E in S) {
|
|
136096
136096
|
var A = S[E];
|
|
@@ -136704,7 +136704,7 @@ var InitialMoveable = /* @__PURE__ */ function(a) {
|
|
|
136704
136704
|
x[E] = true;
|
|
136705
136705
|
});
|
|
136706
136706
|
});
|
|
136707
|
-
var $ = getKeys$
|
|
136707
|
+
var $ = getKeys$1(x).join(`
|
|
136708
136708
|
`);
|
|
136709
136709
|
this.defaultStyled = styled("div", prefixCSS(PREFIX, MOVEABLE_CSS + $));
|
|
136710
136710
|
}, s.getTotalAbles = function() {
|
|
@@ -138995,11 +138995,11 @@ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\
|
|
|
138995
138995
|
}), s;
|
|
138996
138996
|
});
|
|
138997
138997
|
const stringToPath$1 = stringToPath;
|
|
138998
|
-
function toString$
|
|
138998
|
+
function toString$2(a) {
|
|
138999
138999
|
return a == null ? "" : baseToString(a);
|
|
139000
139000
|
}
|
|
139001
139001
|
function castPath(a, s) {
|
|
139002
|
-
return isArray$3(a) ? a : isKey(a, s) ? [a] : stringToPath$1(toString$
|
|
139002
|
+
return isArray$3(a) ? a : isKey(a, s) ? [a] : stringToPath$1(toString$2(a));
|
|
139003
139003
|
}
|
|
139004
139004
|
function toKey(a) {
|
|
139005
139005
|
if (typeof a == "string" || isSymbol$2(a))
|
|
@@ -139528,7 +139528,7 @@ var objectProto$3 = Object.prototype, hasOwnProperty$4 = objectProto$3.hasOwnPro
|
|
|
139528
139528
|
function baseHas(a, s) {
|
|
139529
139529
|
return a != null && hasOwnProperty$4.call(a, s);
|
|
139530
139530
|
}
|
|
139531
|
-
function has$
|
|
139531
|
+
function has$6(a, s) {
|
|
139532
139532
|
return a != null && hasPath(a, s, baseHas);
|
|
139533
139533
|
}
|
|
139534
139534
|
function parent(a, s) {
|
|
@@ -140198,7 +140198,7 @@ var executeCallBack = function a(s, x, y, $) {
|
|
|
140198
140198
|
allValues: x,
|
|
140199
140199
|
flatValues: S
|
|
140200
140200
|
}), Object.keys(y).forEach(function(_) {
|
|
140201
|
-
if (has$
|
|
140201
|
+
if (has$6(S, _)) {
|
|
140202
140202
|
var E = _get(S, _), A = E.value, w = E.index, T = y[_];
|
|
140203
140203
|
executeCallBack(T, A, _, w);
|
|
140204
140204
|
}
|
|
@@ -144416,11 +144416,11 @@ var _ie8DomDefine = !_descriptors && !_fails(function() {
|
|
|
144416
144416
|
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)))
|
|
144417
144417
|
return y;
|
|
144418
144418
|
throw TypeError("Can't convert object to primitive value");
|
|
144419
|
-
}, anObject$
|
|
144419
|
+
}, anObject$1 = _anObject, IE8_DOM_DEFINE$1 = _ie8DomDefine, toPrimitive$2 = _toPrimitive$5, dP$2 = Object.defineProperty;
|
|
144420
144420
|
_objectDp.f = _descriptors ? Object.defineProperty : function a(s, x, y) {
|
|
144421
|
-
if (anObject$
|
|
144421
|
+
if (anObject$1(s), x = toPrimitive$2(x, true), anObject$1(y), IE8_DOM_DEFINE$1)
|
|
144422
144422
|
try {
|
|
144423
|
-
return dP$
|
|
144423
|
+
return dP$2(s, x, y);
|
|
144424
144424
|
} catch {
|
|
144425
144425
|
}
|
|
144426
144426
|
if ("get" in y || "set" in y)
|
|
@@ -144434,17 +144434,17 @@ var _propertyDesc = function(a, s) {
|
|
|
144434
144434
|
writable: !(a & 4),
|
|
144435
144435
|
value: s
|
|
144436
144436
|
};
|
|
144437
|
-
}, dP$
|
|
144438
|
-
return dP$
|
|
144437
|
+
}, dP$1 = _objectDp, createDesc$2 = _propertyDesc, _hide = _descriptors ? function(a, s, x) {
|
|
144438
|
+
return dP$1.f(a, s, createDesc$2(1, x));
|
|
144439
144439
|
} : function(a, s, x) {
|
|
144440
144440
|
return a[s] = x, a;
|
|
144441
144441
|
}, hasOwnProperty$1 = {}.hasOwnProperty, _has = function(a, s) {
|
|
144442
144442
|
return hasOwnProperty$1.call(a, s);
|
|
144443
|
-
}, global$4 = _globalExports, core$2 = _coreExports, ctx = _ctx, hide$2 = _hide, has$
|
|
144444
|
-
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$
|
|
144443
|
+
}, global$4 = _globalExports, core$2 = _coreExports, ctx = _ctx, hide$2 = _hide, has$5 = _has, PROTOTYPE$1 = "prototype", $export$6 = function(a, s, x) {
|
|
144444
|
+
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;
|
|
144445
144445
|
$ && (x = s);
|
|
144446
144446
|
for (C in x)
|
|
144447
|
-
R = !y && P && P[C] !== void 0, !(R && has$
|
|
144447
|
+
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) {
|
|
144448
144448
|
var M = function(D, B, F) {
|
|
144449
144449
|
if (this instanceof N) {
|
|
144450
144450
|
switch (arguments.length) {
|
|
@@ -144459,7 +144459,7 @@ var _propertyDesc = function(a, s) {
|
|
|
144459
144459
|
}
|
|
144460
144460
|
return N.apply(this, arguments);
|
|
144461
144461
|
};
|
|
144462
|
-
return M[PROTOTYPE$
|
|
144462
|
+
return M[PROTOTYPE$1] = N[PROTOTYPE$1], M;
|
|
144463
144463
|
}(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)));
|
|
144464
144464
|
};
|
|
144465
144465
|
$export$6.F = 1;
|
|
@@ -144470,39 +144470,80 @@ $export$6.B = 16;
|
|
|
144470
144470
|
$export$6.W = 32;
|
|
144471
144471
|
$export$6.U = 64;
|
|
144472
144472
|
$export$6.R = 128;
|
|
144473
|
-
var _export = $export$6,
|
|
144474
|
-
|
|
144475
|
-
|
|
144473
|
+
var _export = $export$6, _cof, hasRequired_cof;
|
|
144474
|
+
function require_cof() {
|
|
144475
|
+
if (hasRequired_cof)
|
|
144476
|
+
return _cof;
|
|
144477
|
+
hasRequired_cof = 1;
|
|
144478
|
+
var a = {}.toString;
|
|
144479
|
+
return _cof = function(s) {
|
|
144480
|
+
return a.call(s).slice(8, -1);
|
|
144481
|
+
}, _cof;
|
|
144482
|
+
}
|
|
144483
|
+
var _iobject, hasRequired_iobject;
|
|
144476
144484
|
function require_iobject() {
|
|
144477
144485
|
if (hasRequired_iobject)
|
|
144478
144486
|
return _iobject;
|
|
144479
144487
|
hasRequired_iobject = 1;
|
|
144480
|
-
var a =
|
|
144488
|
+
var a = require_cof();
|
|
144481
144489
|
return _iobject = Object("z").propertyIsEnumerable(0) ? Object : function(s) {
|
|
144482
144490
|
return a(s) == "String" ? s.split("") : Object(s);
|
|
144483
144491
|
}, _iobject;
|
|
144484
144492
|
}
|
|
144485
|
-
var _defined
|
|
144486
|
-
|
|
144487
|
-
|
|
144488
|
-
|
|
144489
|
-
|
|
144490
|
-
|
|
144493
|
+
var _defined, hasRequired_defined;
|
|
144494
|
+
function require_defined() {
|
|
144495
|
+
return hasRequired_defined || (hasRequired_defined = 1, _defined = function(a) {
|
|
144496
|
+
if (a == null)
|
|
144497
|
+
throw TypeError("Can't call method on " + a);
|
|
144498
|
+
return a;
|
|
144499
|
+
}), _defined;
|
|
144500
|
+
}
|
|
144501
|
+
var IObject = require_iobject(), defined$1 = require_defined(), _toIobject = function(a) {
|
|
144502
|
+
return IObject(defined$1(a));
|
|
144491
144503
|
}, ceil = Math.ceil, floor = Math.floor, _toInteger = function(a) {
|
|
144492
144504
|
return isNaN(a = +a) ? 0 : (a > 0 ? floor : ceil)(a);
|
|
144493
|
-
},
|
|
144494
|
-
|
|
144495
|
-
|
|
144496
|
-
|
|
144497
|
-
|
|
144498
|
-
|
|
144499
|
-
|
|
144500
|
-
|
|
144501
|
-
|
|
144502
|
-
|
|
144503
|
-
|
|
144504
|
-
|
|
144505
|
-
|
|
144505
|
+
}, _toLength, hasRequired_toLength;
|
|
144506
|
+
function require_toLength() {
|
|
144507
|
+
if (hasRequired_toLength)
|
|
144508
|
+
return _toLength;
|
|
144509
|
+
hasRequired_toLength = 1;
|
|
144510
|
+
var a = _toInteger, s = Math.min;
|
|
144511
|
+
return _toLength = function(x) {
|
|
144512
|
+
return x > 0 ? s(a(x), 9007199254740991) : 0;
|
|
144513
|
+
}, _toLength;
|
|
144514
|
+
}
|
|
144515
|
+
var _toAbsoluteIndex, hasRequired_toAbsoluteIndex;
|
|
144516
|
+
function require_toAbsoluteIndex() {
|
|
144517
|
+
if (hasRequired_toAbsoluteIndex)
|
|
144518
|
+
return _toAbsoluteIndex;
|
|
144519
|
+
hasRequired_toAbsoluteIndex = 1;
|
|
144520
|
+
var a = _toInteger, s = Math.max, x = Math.min;
|
|
144521
|
+
return _toAbsoluteIndex = function(y, $) {
|
|
144522
|
+
return y = a(y), y < 0 ? s(y + $, 0) : x(y, $);
|
|
144523
|
+
}, _toAbsoluteIndex;
|
|
144524
|
+
}
|
|
144525
|
+
var _arrayIncludes, hasRequired_arrayIncludes;
|
|
144526
|
+
function require_arrayIncludes() {
|
|
144527
|
+
if (hasRequired_arrayIncludes)
|
|
144528
|
+
return _arrayIncludes;
|
|
144529
|
+
hasRequired_arrayIncludes = 1;
|
|
144530
|
+
var a = _toIobject, s = require_toLength(), x = require_toAbsoluteIndex();
|
|
144531
|
+
return _arrayIncludes = function(y) {
|
|
144532
|
+
return function($, S, _) {
|
|
144533
|
+
var E = a($), A = s(E.length), w = x(_, A), T;
|
|
144534
|
+
if (y && S != S) {
|
|
144535
|
+
for (; A > w; )
|
|
144536
|
+
if (T = E[w++], T != T)
|
|
144537
|
+
return true;
|
|
144538
|
+
} else
|
|
144539
|
+
for (; A > w; w++)
|
|
144540
|
+
if ((y || w in E) && E[w] === S)
|
|
144541
|
+
return y || w || 0;
|
|
144542
|
+
return !y && -1;
|
|
144543
|
+
};
|
|
144544
|
+
}, _arrayIncludes;
|
|
144545
|
+
}
|
|
144546
|
+
var _shared = { exports: {} }, core$1 = _coreExports, global$3 = _globalExports, SHARED = "__core-js_shared__", store$1 = global$3[SHARED] || (global$3[SHARED] = {});
|
|
144506
144547
|
(_shared.exports = function(a, s) {
|
|
144507
144548
|
return store$1[a] || (store$1[a] = s !== void 0 ? s : {});
|
|
144508
144549
|
})("versions", []).push({
|
|
@@ -144512,31 +144553,69 @@ var _defined = function(a) {
|
|
|
144512
144553
|
});
|
|
144513
144554
|
var _sharedExports = _shared.exports, id$1 = 0, px = Math.random(), _uid = function(a) {
|
|
144514
144555
|
return "Symbol(".concat(a === void 0 ? "" : a, ")_", (++id$1 + px).toString(36));
|
|
144515
|
-
},
|
|
144516
|
-
|
|
144517
|
-
|
|
144518
|
-
|
|
144519
|
-
|
|
144520
|
-
|
|
144521
|
-
|
|
144522
|
-
|
|
144523
|
-
|
|
144524
|
-
}
|
|
144525
|
-
|
|
144526
|
-
|
|
144527
|
-
|
|
144556
|
+
}, _sharedKey, hasRequired_sharedKey;
|
|
144557
|
+
function require_sharedKey() {
|
|
144558
|
+
if (hasRequired_sharedKey)
|
|
144559
|
+
return _sharedKey;
|
|
144560
|
+
hasRequired_sharedKey = 1;
|
|
144561
|
+
var a = _sharedExports("keys"), s = _uid;
|
|
144562
|
+
return _sharedKey = function(x) {
|
|
144563
|
+
return a[x] || (a[x] = s(x));
|
|
144564
|
+
}, _sharedKey;
|
|
144565
|
+
}
|
|
144566
|
+
var _objectKeysInternal, hasRequired_objectKeysInternal;
|
|
144567
|
+
function require_objectKeysInternal() {
|
|
144568
|
+
if (hasRequired_objectKeysInternal)
|
|
144569
|
+
return _objectKeysInternal;
|
|
144570
|
+
hasRequired_objectKeysInternal = 1;
|
|
144571
|
+
var a = _has, s = _toIobject, x = require_arrayIncludes()(false), y = require_sharedKey()("IE_PROTO");
|
|
144572
|
+
return _objectKeysInternal = function($, S) {
|
|
144573
|
+
var _ = s($), E = 0, A = [], w;
|
|
144574
|
+
for (w in _)
|
|
144575
|
+
w != y && a(_, w) && A.push(w);
|
|
144576
|
+
for (; S.length > E; )
|
|
144577
|
+
a(_, w = S[E++]) && (~x(A, w) || A.push(w));
|
|
144578
|
+
return A;
|
|
144579
|
+
}, _objectKeysInternal;
|
|
144580
|
+
}
|
|
144581
|
+
var _enumBugKeys, hasRequired_enumBugKeys;
|
|
144582
|
+
function require_enumBugKeys() {
|
|
144583
|
+
return hasRequired_enumBugKeys || (hasRequired_enumBugKeys = 1, _enumBugKeys = "constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")), _enumBugKeys;
|
|
144584
|
+
}
|
|
144585
|
+
var _objectKeys, hasRequired_objectKeys;
|
|
144586
|
+
function require_objectKeys() {
|
|
144587
|
+
if (hasRequired_objectKeys)
|
|
144588
|
+
return _objectKeys;
|
|
144589
|
+
hasRequired_objectKeys = 1;
|
|
144590
|
+
var a = require_objectKeysInternal(), s = require_enumBugKeys();
|
|
144591
|
+
return _objectKeys = Object.keys || function(y) {
|
|
144592
|
+
return a(y, s);
|
|
144593
|
+
}, _objectKeys;
|
|
144594
|
+
}
|
|
144595
|
+
var _objectGops = {}, hasRequired_objectGops;
|
|
144596
|
+
function require_objectGops() {
|
|
144597
|
+
return hasRequired_objectGops || (hasRequired_objectGops = 1, _objectGops.f = Object.getOwnPropertySymbols), _objectGops;
|
|
144598
|
+
}
|
|
144528
144599
|
var _objectPie = {}, hasRequired_objectPie;
|
|
144529
144600
|
function require_objectPie() {
|
|
144530
144601
|
return hasRequired_objectPie || (hasRequired_objectPie = 1, _objectPie.f = {}.propertyIsEnumerable), _objectPie;
|
|
144531
144602
|
}
|
|
144532
|
-
var
|
|
144533
|
-
|
|
144534
|
-
|
|
144603
|
+
var _toObject, hasRequired_toObject;
|
|
144604
|
+
function require_toObject() {
|
|
144605
|
+
if (hasRequired_toObject)
|
|
144606
|
+
return _toObject;
|
|
144607
|
+
hasRequired_toObject = 1;
|
|
144608
|
+
var a = require_defined();
|
|
144609
|
+
return _toObject = function(s) {
|
|
144610
|
+
return Object(a(s));
|
|
144611
|
+
}, _toObject;
|
|
144612
|
+
}
|
|
144613
|
+
var _objectAssign, hasRequired_objectAssign;
|
|
144535
144614
|
function require_objectAssign() {
|
|
144536
144615
|
if (hasRequired_objectAssign)
|
|
144537
144616
|
return _objectAssign;
|
|
144538
144617
|
hasRequired_objectAssign = 1;
|
|
144539
|
-
var a = _descriptors, s =
|
|
144618
|
+
var a = _descriptors, s = require_objectKeys(), x = require_objectGops(), y = require_objectPie(), $ = require_toObject(), S = require_iobject(), _ = Object.assign;
|
|
144540
144619
|
return _objectAssign = !_ || _fails(function() {
|
|
144541
144620
|
var E = {}, A = {}, w = Symbol(), T = "abcdefghijklmnopqrst";
|
|
144542
144621
|
return E[w] = 7, T.split("").forEach(function(P) {
|
|
@@ -145258,17 +145337,25 @@ var _default$6 = function() {
|
|
|
145258
145337
|
return function(s, x, y) {
|
|
145259
145338
|
return x && a(s.prototype, x), y && a(s, y), s;
|
|
145260
145339
|
};
|
|
145261
|
-
}(), _typeof$i = {}, toInteger = _toInteger, defined =
|
|
145340
|
+
}(), _typeof$i = {}, toInteger = _toInteger, defined = require_defined(), _stringAt = function(a) {
|
|
145262
145341
|
return function(s, x) {
|
|
145263
145342
|
var y = String(defined(s)), $ = toInteger(x), S = y.length, _, E;
|
|
145264
145343
|
return $ < 0 || $ >= S ? "" : (_ = y.charCodeAt($), _ < 55296 || _ > 56319 || $ + 1 === S || (E = y.charCodeAt($ + 1)) < 56320 || E > 57343 ? y.charAt($) : y.slice($, $ + 2) );
|
|
145265
145344
|
};
|
|
145266
|
-
}, _redefine = _hide, _iterators = {},
|
|
145267
|
-
|
|
145268
|
-
|
|
145269
|
-
|
|
145270
|
-
|
|
145271
|
-
|
|
145345
|
+
}, _redefine = _hide, _iterators = {}, _objectDps, hasRequired_objectDps;
|
|
145346
|
+
function require_objectDps() {
|
|
145347
|
+
if (hasRequired_objectDps)
|
|
145348
|
+
return _objectDps;
|
|
145349
|
+
hasRequired_objectDps = 1;
|
|
145350
|
+
var a = _objectDp, s = _anObject, x = require_objectKeys();
|
|
145351
|
+
return _objectDps = _descriptors ? Object.defineProperties : function($, S) {
|
|
145352
|
+
s($);
|
|
145353
|
+
for (var _ = x(S), E = _.length, A = 0, w; E > A; )
|
|
145354
|
+
a.f($, w = _[A++], S[w]);
|
|
145355
|
+
return $;
|
|
145356
|
+
}, _objectDps;
|
|
145357
|
+
}
|
|
145358
|
+
var _html, hasRequired_html;
|
|
145272
145359
|
function require_html() {
|
|
145273
145360
|
if (hasRequired_html)
|
|
145274
145361
|
return _html;
|
|
@@ -145276,28 +145363,36 @@ function require_html() {
|
|
|
145276
145363
|
var a = _globalExports.document;
|
|
145277
145364
|
return _html = a && a.documentElement, _html;
|
|
145278
145365
|
}
|
|
145279
|
-
var
|
|
145280
|
-
|
|
145281
|
-
|
|
145282
|
-
|
|
145283
|
-
|
|
145284
|
-
|
|
145285
|
-
},
|
|
145286
|
-
|
|
145287
|
-
|
|
145288
|
-
|
|
145366
|
+
var _objectCreate, hasRequired_objectCreate;
|
|
145367
|
+
function require_objectCreate() {
|
|
145368
|
+
if (hasRequired_objectCreate)
|
|
145369
|
+
return _objectCreate;
|
|
145370
|
+
hasRequired_objectCreate = 1;
|
|
145371
|
+
var a = _anObject, s = require_objectDps(), x = require_enumBugKeys(), y = require_sharedKey()("IE_PROTO"), $ = function() {
|
|
145372
|
+
}, S = "prototype", _ = function() {
|
|
145373
|
+
var E = require_domCreate()("iframe"), A = x.length, w = "<", T = ">", P;
|
|
145374
|
+
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--; )
|
|
145375
|
+
delete _[S][x[A]];
|
|
145376
|
+
return _();
|
|
145377
|
+
};
|
|
145378
|
+
return _objectCreate = Object.create || function(A, w) {
|
|
145379
|
+
var T;
|
|
145380
|
+
return A !== null ? ($[S] = a(A), T = new $(), $[S] = null, T[y] = A) : T = _(), w === void 0 ? T : s(T, w);
|
|
145381
|
+
}, _objectCreate;
|
|
145382
|
+
}
|
|
145383
|
+
var _wks = { exports: {} }, store = _sharedExports("wks"), uid$1 = _uid, Symbol$1 = _globalExports.Symbol, USE_SYMBOL = typeof Symbol$1 == "function", $exports = _wks.exports = function(a) {
|
|
145289
145384
|
return store[a] || (store[a] = USE_SYMBOL && Symbol$1[a] || (USE_SYMBOL ? Symbol$1 : uid$1)("Symbol." + a));
|
|
145290
145385
|
};
|
|
145291
145386
|
$exports.store = store;
|
|
145292
145387
|
var _wksExports = _wks.exports, def = _objectDp.f, has$4 = _has, TAG = _wksExports("toStringTag"), _setToStringTag = function(a, s, x) {
|
|
145293
145388
|
a && !has$4(a = x ? a : a.prototype, TAG) && def(a, TAG, { configurable: true, value: s });
|
|
145294
|
-
}, create$2 =
|
|
145389
|
+
}, create$2 = require_objectCreate(), descriptor = _propertyDesc, setToStringTag$2 = _setToStringTag, IteratorPrototype = {};
|
|
145295
145390
|
_hide(IteratorPrototype, _wksExports("iterator"), function() {
|
|
145296
145391
|
return this;
|
|
145297
145392
|
});
|
|
145298
145393
|
var _iterCreate = function(a, s, x) {
|
|
145299
145394
|
a.prototype = create$2(IteratorPrototype, { next: descriptor(1, x) }), setToStringTag$2(a, s + " Iterator");
|
|
145300
|
-
}, has$3 = _has, toObject$1 =
|
|
145395
|
+
}, has$3 = _has, toObject$1 = require_toObject(), IE_PROTO = require_sharedKey()("IE_PROTO"), ObjectProto$1 = Object.prototype, _objectGpo = Object.getPrototypeOf || function(a) {
|
|
145301
145396
|
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;
|
|
145302
145397
|
}, $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() {
|
|
145303
145398
|
return this;
|
|
@@ -145398,20 +145493,20 @@ var iterator$1 = _wksExt.f("iterator"), iterator = { default: iterator$1, __esMo
|
|
|
145398
145493
|
}, _metaExports = _meta.exports, core = _coreExports, wksExt$1 = _wksExt, defineProperty = _objectDp.f, _wksDefine = function(a) {
|
|
145399
145494
|
var s = core.Symbol || (core.Symbol = {});
|
|
145400
145495
|
a.charAt(0) != "_" && !(a in s) && defineProperty(s, a, { value: wksExt$1.f(a) });
|
|
145401
|
-
}, getKeys =
|
|
145496
|
+
}, getKeys = require_objectKeys(), gOPS = require_objectGops(), pIE$1 = require_objectPie(), _enumKeys = function(a) {
|
|
145402
145497
|
var s = getKeys(a), x = gOPS.f;
|
|
145403
145498
|
if (x)
|
|
145404
145499
|
for (var y = x(a), $ = pIE$1.f, S = 0, _; y.length > S; )
|
|
145405
145500
|
$.call(a, _ = y[S++]) && s.push(_);
|
|
145406
145501
|
return s;
|
|
145407
|
-
}, cof =
|
|
145502
|
+
}, cof = require_cof(), _isArray = Array.isArray || function a(s) {
|
|
145408
145503
|
return cof(s) == "Array";
|
|
145409
145504
|
}, _objectGopnExt = {}, _objectGopn = {}, hasRequired_objectGopn;
|
|
145410
145505
|
function require_objectGopn() {
|
|
145411
145506
|
if (hasRequired_objectGopn)
|
|
145412
145507
|
return _objectGopn;
|
|
145413
145508
|
hasRequired_objectGopn = 1;
|
|
145414
|
-
var a =
|
|
145509
|
+
var a = require_objectKeysInternal(), s = require_enumBugKeys().concat("length", "prototype");
|
|
145415
145510
|
return _objectGopn.f = Object.getOwnPropertyNames || function(y) {
|
|
145416
145511
|
return a(y, s);
|
|
145417
145512
|
}, _objectGopn;
|
|
@@ -145436,7 +145531,7 @@ _objectGopd.f = _descriptors ? gOPD$1 : function a(s, x) {
|
|
|
145436
145531
|
if (has$1(s, x))
|
|
145437
145532
|
return createDesc$1(!pIE.f.call(s, x), s[x]);
|
|
145438
145533
|
};
|
|
145439
|
-
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 =
|
|
145534
|
+
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() {
|
|
145440
145535
|
return _create$1(dP({}, "a", {
|
|
145441
145536
|
get: function() {
|
|
145442
145537
|
return dP(this, "a", { value: 7 }).a;
|
|
@@ -145611,7 +145706,7 @@ function require_setProto() {
|
|
|
145611
145706
|
var $export$1 = _export;
|
|
145612
145707
|
$export$1($export$1.S, "Object", { setPrototypeOf: require_setProto().set });
|
|
145613
145708
|
var setPrototypeOf$1 = _coreExports.Object.setPrototypeOf, setPrototypeOf = { default: setPrototypeOf$1, __esModule: true }, $export = _export;
|
|
145614
|
-
$export($export.S, "Object", { create:
|
|
145709
|
+
$export($export.S, "Object", { create: require_objectCreate() });
|
|
145615
145710
|
var $Object = _coreExports.Object, create$1 = function a(s, x) {
|
|
145616
145711
|
return $Object.create(s, x);
|
|
145617
145712
|
}, 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);
|
|
@@ -154958,7 +155053,7 @@ const FormRenderComponent = withProvider(FormCore, defaultWidgets), AlignWidget
|
|
|
154958
155053
|
return a;
|
|
154959
155054
|
};
|
|
154960
155055
|
async function convertPdfToBase64(a) {
|
|
154961
|
-
const { getB64BasePdf: s } = await Promise.resolve().then(function () { return require('./chunks/index-
|
|
155056
|
+
const { getB64BasePdf: s } = await Promise.resolve().then(function () { return require('./chunks/index-qB7eb2BC.js'); }), x = await a.arrayBuffer();
|
|
154962
155057
|
return s(new Uint8Array(x));
|
|
154963
155058
|
}
|
|
154964
155059
|
const ENCODING_MAPPING = {
|