print-designer 1.0.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.
@@ -0,0 +1,43 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <meta name="theme-color" content="#000000" />
8
+ <meta
9
+ name="description"
10
+ content="Web site created using create-react-app"
11
+ />
12
+ <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13
+ <!--
14
+ manifest.json provides metadata used when your web app is installed on a
15
+ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16
+ -->
17
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18
+ <!--
19
+ Notice the use of %PUBLIC_URL% in the tags above.
20
+ It will be replaced with the URL of the `public` folder during the build.
21
+ Only files inside the `public` folder can be referenced from the HTML.
22
+
23
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24
+ work correctly both with client-side routing and a non-root public URL.
25
+ Learn how to configure a non-root public URL by running `npm run build`.
26
+ -->
27
+ <title>React App</title>
28
+ </head>
29
+ <body>
30
+ <noscript>You need to enable JavaScript to run this app.</noscript>
31
+ <div id="root"></div>
32
+ <!--
33
+ This HTML file is a template.
34
+ If you open it directly in the browser, you will see an empty page.
35
+
36
+ You can add webfonts, meta tags, or analytics to this file.
37
+ The build step will place the bundled scripts into the <body> tag.
38
+
39
+ To begin the development, run `npm start` or `yarn start`.
40
+ To create a production bundle, use `npm run build` or `yarn build`.
41
+ -->
42
+ </body>
43
+ </html>
@@ -0,0 +1,15 @@
1
+ export { default as BandBoundaryDesigner } from '../components/BandBoundaryDesigner';
2
+ export { default as PrintPreview } from '../components/PrintPreview';
3
+ export { default as ObjectPropertyPanel } from '../components/ObjectPropertyPanel';
4
+ export { default as BandPropertyPanel } from '../components/BandPropertyPanel';
5
+ export { default as Toolbar } from '../components/Toolbar';
6
+ export { default as CanvasArea } from '../components/CanvasArea';
7
+ export { default as ColorPicker } from '../components/ColorPicker';
8
+ export { default as FormulaEditor } from '../components/FormulaEditor';
9
+ export { default as RichTextEditor } from '../components/RichTextEditor';
10
+ export type { Band, ControlObject, ControlObjectAll, DataField, DesignerOptions, DesignerState, BandBoundaryDesignerProps, } from '../types/types';
11
+ export { controlTypes, defaultBands, defaultOptions, fontWeightOptions, fontStyleOptions, textAlignOptions, textVerticalAlignOptions, borderStyles, lineStyleOptions, dateFormatOptions, formatTypeOptions, imageObjectFitOptions, barcodeTypeOptions, qrcodeErrorLevelOptions, bandTypeOptions, pageSizePresets, marginPresets, defaultFontSettings, getDetailDataKey, } from '../types/constants';
12
+ export { getBandObjectsRenderData, getObjectRenderData, getObjectContent, } from '../utils/renderUtils';
13
+ export { evaluateFormula, validateFormula, registerFunction, getRegisteredFunctions, } from '../utils/formulaUtils';
14
+ export { useBandDesigner } from '../hooks/useBandDesigner';
15
+ export { default as useHistory } from '../hooks/useHistory';
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,42 @@
1
+ (function(){"use strict";try{if(typeof document<"u"){var o=document.createElement("style");o.appendChild(document.createTextNode('.react-band-designer{display:flex;flex-direction:column;height:100vh;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:#f5f5f5}.toolbar{display:flex;justify-content:space-between;align-items:center;padding:10px 20px;background:#fff;border-bottom:1px solid #ddd;box-shadow:0 2px 4px #0000001a}.toolbar-left,.toolbar-right{display:flex;align-items:center;gap:10px}.btn{padding:6px 12px;border:1px solid #ddd;border-radius:4px;background:#fff;cursor:pointer;font-size:14px;transition:all .2s}.btn:hover{background:#f0f0f0}.btn-primary{background:#4d90fe;color:#fff;border-color:#357ae8}.btn-primary:hover{background:#357ae8}.btn-danger{background:#ff6b6b;color:#fff;border-color:#ff5252}.btn-danger:hover{background:#ff5252}.btn-small{padding:3px 8px;font-size:12px}.checkbox{display:flex;align-items:center;gap:5px;font-size:14px;cursor:pointer}.workspace{display:flex;flex:1;overflow:hidden}.control-panel{width:155px;background:#fafafa;border-right:1px solid #ddd;padding:15px;overflow-y:auto}.control-panel h3{margin:0 0 15px;font-size:16px;color:#333}.control-group{margin-bottom:20px}.control-group h4{margin:0 0 10px;font-size:14px;color:#666;font-weight:500}.control-list{display:flex;flex-direction:row;gap:8px;flex-wrap:wrap}.control-item{display:flex;align-items:center;flex-direction:column;justify-content:center;background:#fff;border:1px solid #ddd;border-radius:4px;cursor:pointer;transition:all .2s;width:48px;font-size:12px;padding:8px}.control-item:hover{border-color:#4d90fe;background:#f0f7ff}.control-icon{width:24px;height:24px;background:#4d90fe;color:#fff;border-radius:3px;display:flex;align-items:center;justify-content:center;font-size:12px}.data-fields-panel{margin-top:20px;padding-top:20px;border-top:1px solid #eee}.panel-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}.panel-header h4{margin:0;font-size:14px;color:#333}.field-list{display:flex;flex-direction:column;gap:6px}.field-item{padding:6px 10px;background:#fff;border:1px solid #ddd;border-radius:4px;cursor:pointer;font-size:13px;transition:all .2s;margin-bottom:6px}.field-item:last-child{margin-bottom:0}.field-item:hover{border-color:#4d90fe;background:#f0f7ff}.field-group{margin-bottom:12px}.field-group-title{font-size:12px;color:#666;font-weight:500;padding:4px 0;margin-bottom:6px;border-bottom:1px solid #eee}.field-item.detail-field{background:#fff8e6;border-color:#ffd666}.field-item.detail-field:hover{background:#fff2cc;border-color:#faad14}.design-area{flex:1;display:flex;flex-direction:column;background:#f9f9f9}.canvas-nav{padding:10px 20px;background:#fff;border-bottom:1px solid #ddd;display:flex;justify-content:space-between;align-items:center;font-size:14px;color:#666}.position-info,.selected-info{display:flex;align-items:center;gap:5px}.canvas-wrapper{flex:1;overflow:auto;position:relative}.canvas-container{position:relative;width:100%;height:100%;margin:0 auto;background:#fff;box-shadow:0 2px 10px #0000001a}.grid-layer{position:absolute;top:0;left:0;right:0;bottom:0;background-image:linear-gradient(to right,rgba(0,0,0,.1) 1px,transparent 1px),linear-gradient(to bottom,rgba(0,0,0,.1) 1px,transparent 1px);pointer-events:none;opacity:.3}.boundary-layer{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:auto}.boundary-line{position:absolute;left:0;right:0;height:4px;cursor:ns-resize;z-index:100}.boundary-line:hover,.boundary-line.dragging{background-color:#666!important}.boundary-label{position:absolute;left:10px;top:-20px;background:inherit;color:#fff;padding:2px 8px;font-size:12px;border-radius:3px;pointer-events:none}.band-layer{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}.band-placeholder{position:absolute;left:0;right:0;height:2px;background:repeating-linear-gradient(90deg,#999,#999 5px,transparent 5px,transparent 10px);cursor:pointer}.band-placeholder:hover{background:#ff6b6b!important}.band-area{position:absolute;left:0;right:0;box-sizing:border-box;cursor:pointer;overflow:hidden;opacity:.85;transition:all .3s}.band-area:hover,.band-area.selected{opacity:.95}.band-area.selected{border-color:#ff6b6b!important}.band-label{position:absolute;top:5px;left:5px;background:#ffffffe6;padding:2px 6px;font-size:12px;color:#333;border-radius:3px;pointer-events:none}.object-layer{position:absolute;top:0;left:0;right:0;bottom:0}.design-object{position:absolute;cursor:move;-webkit-user-select:none;user-select:none}.band-controls{padding:10px 20px;background:#fff;border-top:1px solid #ddd;display:flex;gap:20px;flex-wrap:wrap}.band-control{display:flex;align-items:center;gap:10px;padding:8px 12px;background:#f8f9fa;border-radius:4px;font-size:14px}.band-name{font-weight:500;min-width:60px}.band-height{min-width:50px;text-align:right;color:#666}.property-panel{width:300px;background:#fafafa;border-left:1px solid #ddd;overflow-y:auto}.property-panel h3{margin:0 0 15px;font-size:16px;color:#333}.property-editor{display:flex;flex-direction:column;gap:20px}.property-group{border:1px solid #eee}.property-group h4{margin:0 0 10px;font-size:14px;color:#333;font-weight:500}.property-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}.property-row:last-child{margin-bottom:0}.property-row label{font-size:14px;color:#666;min-width:80px}.property-row input[type=text],.property-row input[type=number]{width:150px;padding:4px 8px;border:1px solid #ddd;border-radius:4px;font-size:14px}.property-row input[type=color]{width:50px;height:30px;border:1px solid #ddd;border-radius:4px;cursor:pointer}.color-input-wrapper{display:flex;align-items:center;gap:4px}.btn-clear-color{width:24px;height:24px;padding:0;border:1px solid #ddd;border-radius:4px;background:#fff;color:#999;font-size:16px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s ease}.btn-clear-color:hover{background:#fff1f0;border-color:#ff4d4f;color:#ff4d4f}.property-row input[type=checkbox]{width:16px;height:16px;cursor:pointer}.property-value{font-size:14px;color:#333;font-weight:500}.property-actions{margin-top:20px;padding-top:20px;border-top:1px solid #eee;text-align:center}.empty-state{color:#999;text-align:center;padding:40px 20px}.empty-state p{margin:10px 0 0}.status-bar{padding:8px 20px;background:#fff;border-top:1px solid #ddd;display:flex;gap:30px;font-size:13px;color:#666}.status-item{display:flex;align-items:center;gap:5px}.status-item span:first-child{font-weight:500;color:#333}@media(max-width:1200px){.canvas-container{width:600px;height:900px}}@media(max-width:900px){.workspace{flex-direction:column}.control-panel{width:100%;height:200px;border-right:none;border-bottom:1px solid #ddd}.property-panel{width:100%;height:300px;border-left:none;border-top:1px solid #ddd}.canvas-container{width:100%;height:600px}}.band-area.dragging{transition:all .1s ease}.band-object-count{position:absolute;bottom:5px;right:5px;background:#0000001a;padding:2px 6px;font-size:10px;border-radius:3px;color:#666}.boundary-line{position:absolute;left:0;right:0;height:20px;background-color:#f3f3f3;cursor:ns-resize;z-index:1000;transition:background-color .2s ease;border-top:1px solid #aeadad;border-bottom:1px solid #aeadad}.boundary-label{position:absolute;top:50%;left:0%;transform:translateY(-50%);padding:2px 8px;border-radius:4px;font-size:12px;color:#c3c3c3;white-space:nowrap;background:transparent}.text-content-wrapper{display:flex;flex-direction:column;width:100%;height:100%;box-sizing:border-box;margin:0;padding:0}.text-content{box-sizing:border-box;white-space:pre-wrap;word-break:break-word;overflow:hidden;width:100%}.multi-selection-info{margin-top:15px;padding:10px;background:#f5f5f5;border-radius:4px;border-left:3px solid #4d90fe}.multi-selection-info p{margin:5px 0;font-size:12px;color:#666}.multi-selection-info .btn-small{margin-top:8px;padding:4px 12px;font-size:12px}.status-bar .status-item:last-child{color:#4d90fe;font-weight:700}.toolbar .selected-count{background:#4d90fe;color:#fff;padding:2px 8px;border-radius:10px;font-size:12px;margin-left:5px}.band-controls{max-height:200px;overflow-y:auto}@keyframes object-focus-blink{0%,to{outline:2px solid #4d90fe;outline-offset:2px;box-shadow:0 0 8px #4d90fe99}50%{outline:2px solid #ff9800;outline-offset:2px;box-shadow:0 0 12px #ff9800cc}}.object-focus-blink{animation:object-focus-blink .5s ease-in-out 3;z-index:9999!important}.context-menu{background:#fff;border:1px solid #d9d9d9;border-radius:6px;box-shadow:0 6px 16px #0000001f;min-width:180px;padding:4px 0;font-size:13px;-webkit-user-select:none;user-select:none}.context-menu-item{display:flex;align-items:center;padding:6px 12px;cursor:pointer;position:relative;transition:background-color .15s}.context-menu-item:hover{background-color:#f5f5f5}.context-menu-item[data-disabled=true]{opacity:.4;cursor:not-allowed;pointer-events:none}.context-menu-item.delete:hover{background-color:#fff1f0;color:#ff4d4f}.menu-icon{width:20px;margin-right:8px;text-align:center;font-size:12px}.menu-label{flex:1}.menu-shortcut{color:#999;font-size:11px;margin-left:16px}.menu-arrow{color:#999;font-size:10px;margin-left:8px}.context-menu-divider{height:1px;background-color:#e8e8e8;margin:4px 0}.context-menu-submenu{position:relative}.context-submenu{position:absolute;left:100%;top:-4px;background:#fff;border:1px solid #d9d9d9;border-radius:6px;box-shadow:0 6px 16px #0000001f;min-width:150px;padding:4px 0;display:none;z-index:1}.context-menu-submenu:hover>.context-submenu{display:block}.context-submenu .context-menu-item{padding:6px 16px}.context-submenu .context-menu-item:hover{background-color:#f5f5f5}@keyframes contextMenuFadeIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.context-menu{animation:contextMenuFadeIn .1s ease-out}.selection-rect{box-sizing:border-box}.selected-object-border{box-sizing:border-box;animation:pulse-border 2s infinite}@keyframes pulse-border{0%{border-color:#4d90fe}50%{border-color:#4d90fe80}to{border-color:#4d90fe}}.canvas-nav{display:flex;justify-content:space-between;align-items:center;padding:8px 16px;background:#f5f5f5;border-bottom:1px solid #ddd}.keyboard-hint{font-size:12px;color:#666;background:#fff;padding:4px 8px;border-radius:4px;border:1px solid #ddd}.canvas-container.selecting{cursor:crosshair!important}.canvas-container.moving{cursor:move!important}.shortcut-hint{position:fixed;bottom:20px;right:20px;background:#000c;color:#fff;padding:10px 15px;border-radius:6px;font-size:12px;z-index:3000}.shortcut-hint kbd{background:#333;padding:2px 6px;border-radius:3px;margin:0 2px;font-family:monospace}.rich-text-content{width:100%;height:100%;overflow:hidden}.rich-text-content p{margin:0 0 .3em}.rich-text-content p:last-child{margin-bottom:0}.rich-text-content ul,.rich-text-content ol{margin:.3em 0;padding-left:1.2em}.rich-text-content li{margin:.1em 0}.rich-text-content b,.rich-text-content strong{font-weight:700}.rich-text-content i,.rich-text-content em{font-style:italic}.rich-text-content u{text-decoration:underline}.rich-text-content strike,.rich-text-content s{text-decoration:line-through}.color-picker{position:relative;display:inline-flex}.color-picker.disabled{opacity:.6;cursor:not-allowed}.color-preview-btn{display:flex;align-items:center;gap:4px;padding:2px;border:1px solid #d9d9d9;border-radius:4px;background:#fff;cursor:pointer;transition:border-color .2s}.color-preview-btn:hover{border-color:#1890ff}.color-picker.disabled .color-preview-btn{cursor:not-allowed;background:#f5f5f5}.color-swatch{width:24px;height:20px;border-radius:2px;border:1px solid #e8e8e8;display:flex;align-items:center;justify-content:center}.no-color-icon{font-size:18px;color:#999}.dropdown-arrow{display:flex;align-items:center;color:#999;margin-left:2px}.color-panel{position:absolute;top:100%;left:0;margin-top:4px;padding:8px;background:#fff;border:1px solid #e8e8e8;border-radius:6px;box-shadow:0 4px 12px #00000026;z-index:10000;width:190px}.preset-colors{display:grid;grid-template-columns:repeat(6,1fr);gap:4px;margin-bottom:8px}.color-item{width:24px;height:24px;border-radius:4px;cursor:pointer;border:2px solid transparent;transition:all .15s}.color-item:hover{transform:scale(1.1);border-color:#1890ff}.color-item.active{border-color:#1890ff;box-shadow:0 0 0 2px #1890ff4d}.color-item.clear-color{background:#fff!important;border:1px solid #d9d9d9!important;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}.color-item.clear-color:after{content:"";position:absolute;width:30px;height:2px;background:#ff4d4f;transform:rotate(-45deg);left:50%;top:50%;margin-left:-15px;margin-top:-1px}.color-item.clear-color:hover{border-color:#ff4d4f!important}.clear-icon{display:none}.custom-color-row{border-top:1px solid #f0f0f0;padding-top:8px}.btn-custom-color{width:100%;padding:6px 12px;border:1px solid #d9d9d9;border-radius:4px;background:#fafafa;color:#666;font-size:12px;cursor:pointer;transition:all .15s}.btn-custom-color:hover{background:#e6f7ff;border-color:#1890ff;color:#1890ff}.band-property-panel{width:300px;background:#fafafa;border-left:1px solid #e8e8e8;display:flex;flex-direction:column;height:100%;overflow:hidden}.band-property-panel h3{margin:0;padding:12px 16px;font-size:14px;font-weight:600;color:#333;background:#fff;border-bottom:1px solid #e8e8e8;flex-shrink:0}.band-property-editor{flex:1;overflow-y:auto;padding:12px;display:flex;flex-direction:column;gap:12px}.band-property-editor::-webkit-scrollbar{width:6px}.band-property-editor::-webkit-scrollbar-track{background:transparent}.band-property-editor::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:3px}.band-property-editor::-webkit-scrollbar-thumb:hover{background:#bfbfbf}.band-property-group{background:#fff;border:1px solid #e8e8e8;border-radius:6px;flex-shrink:0}.band-property-group.control-list-group{flex:1;flex-shrink:1;min-height:0;display:flex;flex-direction:column;overflow:hidden}.band-property-group.control-list-group .object-list{flex:1;min-height:0;overflow-y:auto;border-top:1px solid #e8e8e8;background-color:#fafafa}.band-property-group.control-list-group .object-list::-webkit-scrollbar{width:6px}.band-property-group.control-list-group .object-list::-webkit-scrollbar-track{background:transparent}.band-property-group.control-list-group .object-list::-webkit-scrollbar-thumb{background:#d9d9d9;border-radius:3px}.band-property-group.control-list-group .object-list::-webkit-scrollbar-thumb:hover{background:#bfbfbf}.band-property-group h4{margin:0;padding:10px 12px;font-size:13px;font-weight:600;color:#333;background:#fafafa;border-bottom:1px solid #e8e8e8}.band-property-row{display:flex;align-items:center;padding:10px 12px;border-bottom:1px solid #f0f0f0;gap:8px}.band-property-row:last-child{border-bottom:none}.band-property-row label{font-size:13px;color:#666;width:80px;flex-shrink:0}.band-property-row>div{flex:1;min-width:0}.band-property-value{font-size:13px;color:#333;padding:4px 8px;background:#f5f5f5;border-radius:4px}.band-property-row input[type=text],.band-property-row input[type=number]{padding:6px 10px;border:1px solid #d9d9d9;border-radius:4px;font-size:13px;color:#333;background:#fff;outline:none;transition:border-color .2s;min-width:0}.band-property-row input[type=number]{width:80px}.band-property-row input[type=text]{flex:1}.band-property-row input[type=text]:hover,.band-property-row input[type=number]:hover{border-color:#40a9ff}.band-property-row input[type=text]:focus,.band-property-row input[type=number]:focus{border-color:#40a9ff;box-shadow:0 0 0 2px #1890ff1a}.band-property-row select{flex:1;padding:6px 10px;border:1px solid #d9d9d9;border-radius:4px;font-size:13px;color:#333;background:#fff;cursor:pointer;outline:none}.band-property-row select:hover{border-color:#40a9ff}.band-property-row select:focus{border-color:#40a9ff;box-shadow:0 0 0 2px #1890ff1a}.band-property-row input[type=color]{width:32px;height:24px;padding:0;border:1px solid #d9d9d9;border-radius:4px;cursor:pointer}@media(max-width:1200px){.band-property-panel{width:280px}}.rich-text-editor{border:1px solid #d9d9d9;border-radius:4px;background:#fff}.rte-toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:2px;padding:4px 6px;background:#fafafa;border-bottom:1px solid #e8e8e8}.rte-btn{display:flex;align-items:center;justify-content:center;width:26px;height:26px;padding:0;border:1px solid transparent;border-radius:4px;background:transparent;color:#333;font-size:13px;cursor:pointer;transition:all .15s}.rte-btn:hover{background:#e6f7ff;border-color:#91d5ff}.rte-btn:active{background:#bae7ff}.rte-select{height:26px;min-width:80px!important;padding:0 6px!important;border:1px solid #d9d9d9;border-radius:4px;font-size:12px;cursor:pointer;background:#fff}.rte-select:focus{outline:none;border-color:#1890ff}.rte-color{width:26px;height:26px;padding:2px;border:1px solid #d9d9d9;border-radius:4px;cursor:pointer;background:#fff}.rte-color::-webkit-color-swatch-wrapper{padding:2px}.rte-color::-webkit-color-swatch{border:none;border-radius:2px}.rte-separator{width:1px;height:20px;margin:0 4px;background:#e8e8e8}.rte-content{padding:8px 10px;min-height:120px;max-height:300px;overflow-y:auto;font-size:14px;line-height:1.6;outline:none}.rte-content:empty:before{content:attr(data-placeholder);color:#bfbfbf;pointer-events:none}.rte-content:focus{background:#fafafa}.rte-content p{margin:0 0 .5em}.rte-content ul,.rte-content ol{margin:.5em 0;padding-left:1.5em}.rte-content li{margin:.25em 0}.property-panel{width:300px;background:linear-gradient(180deg,#fafbfc,#f6f8fa);border-left:1px solid #e1e4e8;display:flex;flex-direction:column;height:100%;overflow:hidden}.property-panel-header{display:flex;align-items:center;gap:10px;padding:8px;flex-shrink:0}.property-panel-header .type-icon{width:36px;height:36px;background:#4d90fe;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:16px;font-weight:600}.property-panel-header .type-info{flex:1}.property-panel-header .type-name{font-size:15px;font-weight:600;color:#24292e;margin:0 0 2px}.property-panel-header .type-id{font-size:11px;color:#6a737d;font-family:SFMono-Regular,Consolas,monospace}.property-editor{flex:1;overflow-y:auto;display:flex;flex-direction:column;gap:12px}.property-editor::-webkit-scrollbar{width:6px}.property-editor::-webkit-scrollbar-track{background:transparent}.property-editor::-webkit-scrollbar-thumb{background:#d1d5da;border-radius:3px}.property-editor::-webkit-scrollbar-thumb:hover{background:#959da5}.property-group{background:#fff;border:1px solid #e1e4e8;box-shadow:0 1px 3px #0000000a}.property-group-header{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;background:linear-gradient(180deg,#fafbfc,#f6f8fa);border-bottom:1px solid #e1e4e8;cursor:pointer;-webkit-user-select:none;user-select:none;transition:background .15s ease}.property-group-header:hover{background:linear-gradient(180deg,#f3f4f6,#ebedf0)}.property-group-header h4{margin:0;font-size:12px;font-weight:600;color:#24292e;text-transform:uppercase;letter-spacing:.5px;display:flex;align-items:center;gap:6px}.property-group-header h4:before{content:"";width:3px;height:12px;background:linear-gradient(180deg,#667eea,#764ba2);border-radius:2px}.property-group-header .collapse-icon{font-size:10px;color:#6a737d;transition:transform .2s ease}.property-group-header .collapse-icon.collapsed{transform:rotate(-90deg)}.property-group-content{padding:12px}.property-group-content.collapsed{display:none}.property-panel .property-row{display:flex;align-items:center;margin-bottom:12px}.property-panel .property-row:last-child{margin-bottom:0}.property-panel .property-row label{font-size:13px;color:#586069;width:72px;flex-shrink:0}.property-panel .property-row .property-value{font-size:13px;color:#24292e;font-weight:500;padding:6px 10px;background:#f6f8fa;border-radius:4px;flex:1}.property-panel .property-row input[type=text],.property-panel .property-row textarea{flex:1;padding:6px 10px;border:1px solid #d1d5da;border-radius:4px;font-size:13px;color:#24292e;background:#fff;outline:none;min-width:0}.property-panel .property-row input[type=number]{flex:1;flex-shrink:0;padding:6px 10px;border:1px solid #d1d5da;border-radius:4px;font-size:13px;color:#24292e;background:#fff;outline:none}.property-panel .property-row input:hover,.property-panel .property-row textarea:hover,.property-panel .property-row select:hover{border-color:#0366d6}.property-panel .property-row input:focus,.property-panel .property-row textarea:focus,.property-panel .property-row select:focus{border-color:#0366d6;box-shadow:0 0 0 2px #0366d61a}.property-panel .property-row input:disabled{background:#f6f8fa;color:#6a737d;cursor:not-allowed}.property-panel .property-row select{flex:1;padding:6px 10px;border:1px solid #d1d5da;border-radius:4px;font-size:13px;color:#24292e;background:#fff;cursor:pointer;outline:none;min-width:0}.property-panel .property-row input[type=checkbox]{width:16px;height:16px;cursor:pointer;accent-color:#0366d6;flex-shrink:0}.property-panel .checkbox-wrapper{display:flex;align-items:center;gap:8px}.property-panel .checkbox-wrapper .checkbox-label{font-size:12px;color:#586069}.property-panel .color-input-wrapper{display:flex;align-items:center;gap:6px;flex:1}.property-panel .property-row input[type=color]{width:36px;height:32px;border:1px solid #d1d5da;border-radius:6px;cursor:pointer;padding:2px;background:#fff;flex-shrink:0}.property-panel .property-row input[type=color]:hover{border-color:#0366d6}.property-panel .color-value{font-size:11px;color:#6a737d;font-family:SFMono-Regular,Consolas,monospace;background:#f6f8fa;padding:4px 8px;border-radius:4px;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis}.property-panel .btn-clear-color{width:28px;height:28px;padding:0;border:1px solid #d1d5da;border-radius:6px;background:#fff;color:#6a737d;font-size:14px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s ease;flex-shrink:0}.property-panel .btn-clear-color:hover{background:#ffeef0;border-color:#d73a49;color:#d73a49}.btn-sm{padding:5px 12px;font-size:12px;font-weight:500;border-radius:6px;border:1px solid transparent;cursor:pointer;transition:all .15s ease}.btn-primary{background:linear-gradient(180deg,#0366d6,#0256b9);color:#fff;border-color:#0256b9}.btn-primary:hover{background:linear-gradient(180deg,#0256b9,#044289)}.btn-secondary{background:#f6f8fa;color:#24292e;border-color:#d1d5da}.btn-secondary:hover{background:#e1e4e8}.alignment-buttons{display:flex;gap:4px;flex:1}.alignment-btn{flex:1;height:32px;border:1px solid #d1d5da;border-radius:6px;background:#fff;color:#6a737d;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s ease}.alignment-btn:hover{border-color:#0366d6;color:#0366d6}.alignment-btn.active{background:linear-gradient(180deg,#0366d6,#0256b9);border-color:#0256b9;color:#fff}.padding-inputs{display:grid;grid-template-columns:1fr 1fr;gap:8px;flex:1}.padding-input-item{display:flex;align-items:center;gap:4px}.padding-input-item .padding-label{font-size:11px;color:#6a737d;min-width:16px}.padding-inputs input{width:50px!important;text-align:center;padding:4px 6px!important;font-size:12px}.padding-hint{display:none}.zindex-controls{display:flex;align-items:center;gap:6px;flex:1}.zindex-controls input{width:60px!important}.zindex-btn{padding:4px 8px;font-size:11px;border:1px solid #d1d5da;border-radius:4px;background:#f6f8fa;color:#586069;cursor:pointer;transition:all .15s ease;display:flex;align-items:center;gap:3px}.zindex-btn:hover{background:#e1e4e8;border-color:#959da5}.image-preview-container{width:100%;height:80px;border:1px solid #e1e4e8;border-radius:6px;overflow:hidden;display:flex;align-items:center;justify-content:center;background:#f6f8fa;margin-top:8px}.image-preview-container img{max-width:100%;max-height:100%;object-fit:contain}.file-upload-btn{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;background:linear-gradient(180deg,#0366d6,#0256b9);color:#fff;border-radius:6px;font-size:12px;font-weight:500;cursor:pointer;transition:all .15s ease}.file-upload-btn:hover{background:linear-gradient(180deg,#0256b9,#044289)}.file-clear-btn{padding:6px 10px;background:#fff;color:#d73a49;border:1px solid #d73a49;border-radius:6px;font-size:12px;cursor:pointer;transition:all .15s ease}.file-clear-btn:hover{background:#ffeef0}.formula-input-wrapper{display:flex;gap:6px;flex:1;min-width:0}.formula-input-wrapper input{flex:1;min-width:0}.btn-edit-formula{padding:6px 12px;background:linear-gradient(180deg,#28a745,#22863a);color:#fff;border:none;border-radius:6px;font-size:12px;font-weight:500;cursor:pointer;white-space:nowrap;transition:all .15s ease;flex-shrink:0}.btn-edit-formula:hover{background:linear-gradient(180deg,#22863a,#176f2c)}.property-actions{padding:12px;background:#fff;border-top:1px solid #e1e4e8;flex-shrink:0}.btn-danger{width:100%;padding:10px;background:linear-gradient(180deg,#d73a49,#cb2431);color:#fff;border:none;border-radius:6px;font-size:13px;font-weight:500;cursor:pointer;transition:all .15s ease;display:flex;align-items:center;justify-content:center;gap:6px}.btn-danger:hover{background:linear-gradient(180deg,#cb2431,#9e1c23)}.btn-danger:before{content:"🗑";font-size:14px}.empty-state{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px 20px;color:#6a737d;text-align:center}.empty-state-icon{font-size:48px;margin-bottom:16px;opacity:.5}.empty-state-text{font-size:14px;line-height:1.5}@media(max-width:1200px){.property-panel{width:280px}}@media(max-width:900px){.property-panel{width:100%;height:300px;border-left:none;border-top:1px solid #e1e4e8}}.multi-select-toolbar{display:flex;align-items:center;padding:8px 12px;background:#fff;border-bottom:1px solid #e8e8e8;flex-wrap:wrap;width:100%;box-sizing:border-box;gap:4px}.toolbar-section{display:flex;align-items:center;gap:8px}.toolbar-section:last-child{border-right:none}.section-label{font-size:12px;font-weight:600;color:#1890ff;white-space:nowrap;margin-right:4px}.type-hint{font-size:11px;color:#999;margin-left:4px}.section-title{font-size:12px;color:#666;font-weight:500}.toolbar-buttons{display:flex;align-items:center;gap:2px}.toolbar-btn{display:flex;align-items:center;justify-content:center;min-width:28px;height:28px;border:1px solid #d9d9d9;border-radius:4px;background:#fff;color:#333;font-size:12px;cursor:pointer;transition:all .15s ease}.toolbar-btn:hover{background:#e6f7ff;border-color:#1890ff;color:#1890ff}.toolbar-btn:active{background:#bae7ff}.toolbar-btn:disabled{background:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf;cursor:not-allowed;opacity:.6}.toolbar-btn:disabled:hover{background:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf}.toolbar-btn.active{background:#1890ff;border-color:#1890ff;color:#fff}.toolbar-btn svg{flex-shrink:0}.toolbar-btn.btn-clear{background:#fff;border-color:#ff7875;color:#ff4d4f}.toolbar-btn.btn-clear:hover{background:#fff1f0;border-color:#ff4d4f}.toolbar-btn.btn-delete{display:flex;align-items:center;gap:4px;background:#fff;border-color:#d9d9d9;color:#333}.toolbar-btn.btn-delete:hover:not(:disabled){background:#fff1f0;border-color:#ff4d4f;color:#ff4d4f}.toolbar-btn.btn-delete:disabled{background:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf}.separator{width:1px;height:20px;background:#e8e8e8;margin:0 4px}.toolbar-controls{display:flex;align-items:center;gap:6px}.toolbar-control-item{display:flex;align-items:center;gap:4px;font-size:12px;color:#666}.toolbar-control-item span{font-size:12px;color:#666}.toolbar-control-item input[type=number]{width:56px;height:26px;border:1px solid #d9d9d9;border-radius:4px;font-size:12px;text-align:center;margin:0;padding:0}.toolbar-control-item input[type=number]:focus{outline:none;border-color:#1890ff;box-shadow:0 0 0 2px #1890ff1a}.toolbar-control-item input[type=color]{width:28px;height:26px;padding:2px;border:1px solid #d9d9d9;border-radius:4px;cursor:pointer;overflow:hidden}.toolbar-control-item input[type=color]::-webkit-color-swatch-wrapper{padding:2px}.toolbar-control-item input[type=color]::-webkit-color-swatch{border:none;border-radius:2px}.toolbar-control-item input:disabled,.toolbar-control-item select:disabled{background:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf;cursor:not-allowed;opacity:.6}.toolbar-control-item select{height:26px;padding:2px 8px;border:1px solid #d9d9d9;border-radius:4px;font-size:12px;background:#fff;cursor:pointer}.toolbar-control-item select:focus{outline:none;border-color:#1890ff;box-shadow:0 0 0 2px #1890ff1a}.toolbar-actions{display:flex;align-items:center}.color-input-group{display:flex;align-items:center;gap:2px}.btn-clear-sm{width:20px;height:20px;padding:0;border:1px solid #d9d9d9;border-radius:4px;background:#fff;color:#999;font-size:12px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s ease}.btn-clear-sm:hover:not(:disabled){background:#fff1f0;border-color:#ff4d4f;color:#ff4d4f}.btn-clear-sm:disabled{background:#f5f5f5;border-color:#d9d9d9;color:#d9d9d9;cursor:not-allowed}@media(max-width:1400px){.multi-select-toolbar{gap:4px;padding:8px 12px}.toolbar-section{padding:4px 8px}}@media(max-width:1200px){.section-title{display:none}}.toolbar-dropdown-btn{gap:4px;padding:0 8px}.dropdown-arrow{font-size:8px;color:#999;margin-left:2px}.toolbar-dropdown-menu{position:fixed;margin-top:4px;background:#fff;border:1px solid #e8e8e8;border-radius:6px;box-shadow:0 6px 16px #0000001f;z-index:10000;min-width:160px;padding:4px 0}.control-dropdown{min-width:180px}.dropdown-category{padding:4px 0}.category-title{padding:6px 12px 4px;font-size:11px;color:#999;font-weight:500;text-transform:uppercase;letter-spacing:.5px}.dropdown-item{display:flex;align-items:center;padding:8px 12px;cursor:pointer;transition:background .15s}.dropdown-item:hover{background:#e6f7ff}.item-icon{width:24px;font-size:14px;text-align:center;margin-right:8px}.item-name{font-size:13px;color:#333}.dropdown-divider{height:1px;background:#e8e8e8;margin:4px 0}.toolbar-section{position:relative}.field-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000073;display:flex;align-items:center;justify-content:center;z-index:2000}.field-modal{background:#fff;border-radius:8px;box-shadow:0 8px 24px #0003;width:520px;max-height:80vh;display:flex;flex-direction:column;animation:modalFadeIn .2s ease-out}@keyframes modalFadeIn{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.field-modal-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid #e8e8e8}.field-modal-header h3{margin:0;font-size:16px;font-weight:600;color:#333}.modal-close-btn{width:28px;height:28px;border:none;background:transparent;font-size:20px;color:#999;cursor:pointer;border-radius:4px;display:flex;align-items:center;justify-content:center;transition:all .15s}.modal-close-btn:hover{background:#f5f5f5;color:#333}.field-modal-body{padding:16px 20px;max-height:400px;overflow-y:auto}.field-group{margin-bottom:16px}.field-group:last-child{margin-bottom:0}.field-group-title{font-size:13px;font-weight:600;color:#333;margin-bottom:8px;padding:4px 8px;background:#f5f5f5;border-radius:4px}.field-list{display:flex;flex-wrap:wrap;gap:8px}.field-item{display:flex;align-items:center;gap:8px;padding:8px 12px;border:1px solid #d9d9d9;border-radius:4px;cursor:pointer;transition:all .15s;flex:0 0 calc(50% - 4px);box-sizing:border-box}.field-item:hover,.field-item.selected{border-color:#1890ff;background:#e6f7ff}.field-item input[type=checkbox]{width:16px;height:16px;cursor:pointer}.field-label{font-size:13px;color:#333;font-weight:500}.field-name{font-size:11px;color:#999;margin-left:auto}.field-modal-footer{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-top:1px solid #e8e8e8;background:#fafafa;border-radius:0 0 8px 8px}.arrangement-options{display:flex;align-items:center;gap:12px;font-size:13px;color:#666}.arrangement-options label{display:flex;align-items:center;gap:4px;cursor:pointer}.arrangement-options input[type=radio]{width:14px;height:14px;cursor:pointer}.modal-buttons{display:flex;gap:8px}.modal-buttons .btn{padding:6px 16px;border-radius:4px;font-size:13px;cursor:pointer;transition:all .15s}.modal-buttons .btn-cancel{border:1px solid #d9d9d9;background:#fff;color:#666}.modal-buttons .btn-cancel:hover{border-color:#40a9ff;color:#40a9ff}.modal-buttons .btn-confirm{border:1px solid #1890ff;background:#1890ff;color:#fff}.modal-buttons .btn-confirm:hover{background:#40a9ff;border-color:#40a9ff}.modal-buttons .btn-confirm:disabled{background:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf;cursor:not-allowed}.toolbar-btn.btn-primary{background:#1890ff;border-color:#1890ff;color:#fff}.toolbar-btn.btn-primary:hover{background:#40a9ff;border-color:#40a9ff}.print-preview-modal{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;display:flex;justify-content:center;align-items:center;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif}.preview-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background-color:#0009;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);animation:fadeIn .2s ease-out}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.preview-container{position:relative;background:#fff;border-radius:12px;box-shadow:0 10px 40px #0003,0 0 0 1px #ffffff1a;width:900px;max-width:95%;height:95vh;display:flex;flex-direction:column;animation:slideIn .3s ease-out}@keyframes slideIn{0%{opacity:0;transform:translateY(20px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.preview-toolbar{padding:12px 20px;background:linear-gradient(135deg,#f8f9fa,#e9ecef);border-bottom:1px solid #dee2e6;display:flex;justify-content:space-between;align-items:center;flex-shrink:0;min-height:60px;box-shadow:0 2px 8px #0000000d}.toolbar-left,.toolbar-center,.toolbar-right{display:flex;align-items:center;gap:12px}.btn{padding:8px 16px;border:1px solid #d9d9d9;background:#fff;border-radius:6px;cursor:pointer;font-size:14px;font-weight:500;transition:all .2s cubic-bezier(.645,.045,.355,1);color:#333;display:inline-flex;align-items:center;justify-content:center;gap:6px;position:relative;overflow:hidden}.btn:before{content:"";position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:#0000001a;transform:translate(-50%,-50%);transition:width .4s,height .4s}.btn:hover:before{width:200px;height:200px}.btn:hover{border-color:#40a9ff;color:#40a9ff;transform:translateY(-1px);box-shadow:0 4px 12px #1890ff33}.btn:active{transform:translateY(0);box-shadow:0 2px 6px #1890ff33}.btn-primary{background:linear-gradient(135deg,#1890ff,#096dd9);color:#fff;border:none;box-shadow:0 2px 8px #1890ff4d}.btn-primary:hover{background:linear-gradient(135deg,#40a9ff,#1890ff);color:#fff;border:none;box-shadow:0 4px 12px #1890ff66}.btn-danger{background:#ff4d4f;color:#fff;border:none}.btn-danger:hover{background:#ff7875;color:#fff;border:none}.btn-small{padding:4px 12px;font-size:13px;min-height:28px}.zoom-select{padding:6px 10px;border:1px solid #d9d9d9;border-radius:6px;background:#fff;font-size:14px;color:#333;cursor:pointer;transition:all .2s;min-width:90px}.zoom-select:hover{border-color:#40a9ff}.zoom-select:focus{outline:none;border-color:#1890ff;box-shadow:0 0 0 2px #1890ff33}.page-controls{display:flex;align-items:center;gap:8px;margin-left:20px;background:#fffc;padding:6px 12px;border-radius:8px;border:1px solid #e8e8e8}.page-info{display:flex;align-items:center;gap:8px;font-size:14px;color:#595959;font-weight:500}.page-input{width:60px;padding:4px 8px;border:1px solid #d9d9d9;border-radius:4px;text-align:center;font-size:14px;color:#333;transition:all .2s}.page-input:focus{outline:none;border-color:#1890ff;box-shadow:0 0 0 2px #1890ff33}.data-info{font-size:14px;color:#595959;background:#fff;padding:6px 12px;border-radius:6px;border:1px solid #e8e8e8;display:flex;align-items:center;gap:8px}.data-info:before{content:"📊";font-size:16px}.preview-content{flex:1;padding:20px;background:linear-gradient(135deg,#f5f5f5,#f0f0f0);position:relative;overflow-y:scroll}.preview-page{width:794px;height:1123px;background-color:#fff;box-shadow:0 8px 32px #00000026;position:relative;margin:0 auto;transform-origin:top center;border-radius:2px;overflow:hidden;border:1px solid #e0e0e0}.page-margins{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}.margin-top{position:absolute;top:0;left:0;right:0;height:40px;border-bottom:2px dashed rgba(64,169,255,.3)}.margin-bottom{position:absolute;bottom:0;left:0;right:0;height:40px;border-top:2px dashed rgba(64,169,255,.3)}.margin-left{position:absolute;top:0;bottom:0;left:0;width:30px;border-right:2px dashed rgba(64,169,255,.3)}.margin-right{position:absolute;top:0;bottom:0;right:0;width:30px;border-left:2px dashed rgba(64,169,255,.3)}.preview-band{position:absolute;overflow:visible}.detail-row{position:absolute;left:0;width:100%}.page-number{position:absolute;bottom:15px;right:35px;font-size:12px;color:#8c8c8c;background:#ffffffe6;padding:4px 12px;border-radius:12px;border:1px solid #f0f0f0;font-family:Arial,sans-serif}.preview-stats{padding:16px 20px;background:linear-gradient(135deg,#fafafa,#f5f5f5);border-top:1px solid #f0f0f0;display:flex;gap:32px;flex-shrink:0;justify-content:center;align-items:center}.stat-item{display:flex;align-items:center;gap:8px;font-size:13px;color:#666;padding:8px 16px;background:#fff;border-radius:8px;border:1px solid #e8e8e8;box-shadow:0 2px 4px #00000005;transition:all .2s}.stat-item:hover{transform:translateY(-1px);box-shadow:0 4px 8px #0000000d;border-color:#d9d9d9}.stat-item span:first-child{color:#8c8c8c;font-weight:500}.stat-item span:last-child{color:#1890ff;font-weight:600}.preview-content::-webkit-scrollbar{width:8px;height:8px}.preview-content::-webkit-scrollbar-track{background:#0000000d;border-radius:4px}.preview-content::-webkit-scrollbar-thumb{background:#0003;border-radius:4px}.preview-content::-webkit-scrollbar-thumb:hover{background:#0000004d}@media(max-width:1400px){.preview-container{width:98%}.preview-page{transform:scale(.9)}}@media(max-width:1200px){.preview-page{transform:scale(.8)}.preview-toolbar{flex-wrap:wrap;gap:10px}.toolbar-center{order:3;width:100%;justify-content:center;margin-top:10px}}@media(max-width:768px){.preview-container{height:95vh;border-radius:0;width:100%}.preview-page{transform:scale(.7)}.preview-stats{flex-wrap:wrap;gap:12px;justify-content:flex-start;overflow-x:auto}.stat-item{flex-shrink:0}}@media print{.print-preview-modal{position:static;background:#fff}.preview-overlay,.preview-toolbar,.preview-stats,.page-margins,.margin-top,.margin-bottom,.margin-left,.margin-right,.data-info,.page-controls,.multi-select-toolbar,.status-bar{display:none!important}.preview-container{width:100%;height:auto;box-shadow:none;border:none;border-radius:0}.preview-content{padding:0;background:#fff}.preview-page{box-shadow:none!important;margin:0!important;transform:none!important;page-break-after:always;border:none;height:1123px}.preview-page:last-child{page-break-after:auto}.page-margins{display:none!important}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.6}}.loading{animation:pulse 1.5s ease-in-out infinite}.empty-state{display:flex;flex-direction:column;align-items:center;justify-content:center;height:200px;color:#bfbfbf;gap:16px}.empty-state svg{width:64px;height:64px;opacity:.3}.empty-state p{font-size:16px;font-weight:500}.tooltip{position:relative;display:inline-block}.tooltip .tooltip-text{visibility:hidden;width:200px;background-color:#333;color:#fff;text-align:center;border-radius:6px;padding:8px;position:absolute;z-index:1;bottom:125%;left:50%;margin-left:-100px;opacity:0;transition:opacity .3s;font-size:12px;line-height:1.4}.tooltip:hover .tooltip-text{visibility:visible;opacity:.9}.custom-scrollbar{scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.2) transparent}')),document.head.appendChild(o)}}catch(e){console.error("vite-plugin-css-injected-by-js",e)}})();
2
+ import { B as s, a as t, C as n, b as o, F as r, O as i, P as l, R as d, T as p, r as O, p as g, k as c, d as u, m as y, e as b, v as P, f as m, A as F, i as f, h as B, n as D, x as T, w as j, z as v, y as x, G as R, o as S, l as A, u as C, s as E, q as h, E as k, t as q, j as w, H as z, I as H, D as G } from "./index-GF96Y9CT.mjs";
3
+ export {
4
+ s as BandBoundaryDesigner,
5
+ t as BandPropertyPanel,
6
+ n as CanvasArea,
7
+ o as ColorPicker,
8
+ r as FormulaEditor,
9
+ i as ObjectPropertyPanel,
10
+ l as PrintPreview,
11
+ d as RichTextEditor,
12
+ p as Toolbar,
13
+ O as bandTypeOptions,
14
+ g as barcodeTypeOptions,
15
+ c as borderStyles,
16
+ u as controlTypes,
17
+ y as dateFormatOptions,
18
+ b as defaultBands,
19
+ P as defaultFontSettings,
20
+ m as defaultOptions,
21
+ F as evaluateFormula,
22
+ f as fontStyleOptions,
23
+ B as fontWeightOptions,
24
+ D as formatTypeOptions,
25
+ T as getBandObjectsRenderData,
26
+ j as getDetailDataKey,
27
+ v as getObjectContent,
28
+ x as getObjectRenderData,
29
+ R as getRegisteredFunctions,
30
+ S as imageObjectFitOptions,
31
+ A as lineStyleOptions,
32
+ C as marginPresets,
33
+ E as pageSizePresets,
34
+ h as qrcodeErrorLevelOptions,
35
+ k as registerFunction,
36
+ q as textAlignOptions,
37
+ w as textVerticalAlignOptions,
38
+ z as useBandDesigner,
39
+ H as useHistory,
40
+ G as validateFormula
41
+ };
42
+ //# sourceMappingURL=print-designer.es.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"print-designer.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}