├── .eslintrc.cjs ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── auto-imports.d.ts ├── components.d.ts ├── env.d.ts ├── package.json ├── packages ├── demo │ ├── .env.demo │ ├── .env.development │ ├── .env.production │ ├── .gitignore │ ├── README.md │ ├── auto-imports.d.ts │ ├── components.d.ts │ ├── index.html │ ├── package.json │ ├── src │ │ ├── App.vue │ │ ├── api │ │ │ ├── login.ts │ │ │ ├── module.ts │ │ │ ├── moduleGroup.ts │ │ │ └── template.ts │ │ ├── assets │ │ │ ├── cprint-icon.svg │ │ │ ├── cprint-logo.png │ │ │ └── myprint-icon.svg │ │ ├── components │ │ │ ├── dialog │ │ │ │ ├── delete-dialog.vue │ │ │ │ └── rename-dialog.vue │ │ │ └── popover │ │ │ │ └── popover-menu-list.vue │ │ ├── constants │ │ │ ├── img64 │ │ │ │ └── img.ts │ │ │ └── keys.ts │ │ ├── locales │ │ │ ├── en-us │ │ │ │ ├── index.ts │ │ │ │ └── main.ts │ │ │ ├── index.ts │ │ │ └── zh-cn │ │ │ │ ├── index.ts │ │ │ │ └── main.ts │ │ ├── main.ts │ │ ├── router │ │ │ └── index.ts │ │ ├── stores │ │ │ ├── app.ts │ │ │ └── keepAliveStore.ts │ │ ├── style.css │ │ ├── styles │ │ │ ├── module.scss │ │ │ └── var.scss │ │ ├── types │ │ │ ├── R.ts │ │ │ ├── entity.ts │ │ │ └── eventType.ts │ │ ├── utils │ │ │ ├── errorCode.ts │ │ │ ├── gzipUtil.ts │ │ │ ├── request.ts │ │ │ └── util.ts │ │ ├── views │ │ │ ├── design │ │ │ │ └── index.vue │ │ │ ├── layout │ │ │ │ └── index.vue │ │ │ ├── module │ │ │ │ ├── field-setting │ │ │ │ │ ├── field-setting.vue │ │ │ │ │ ├── field-table.vue │ │ │ │ │ └── provider-setting.vue │ │ │ │ ├── index.vue │ │ │ │ ├── module-group.vue │ │ │ │ ├── module-item.vue │ │ │ │ └── preview-data │ │ │ │ │ ├── preview-data-table.vue │ │ │ │ │ ├── preview-data.vue │ │ │ │ │ └── recursive-table-column.vue │ │ │ ├── template │ │ │ │ └── index.vue │ │ │ └── templateCenter │ │ │ │ └── index.vue │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── design │ ├── .npmignore │ ├── components.d.ts │ ├── package.json │ ├── shims-vue.d.ts │ ├── src │ │ ├── README.md │ │ ├── api │ │ │ └── pdfServer.ts │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── AlimamaFangYuanTiVF-Thin.ttf │ │ │ │ ├── AlimamaFangYuanTiVF-Thin.woff2 │ │ │ │ ├── AlimamaShuHeiTi-Bold.ttf │ │ │ │ ├── iconfont-color.woff2 │ │ │ │ └── iconfont.woff2 │ │ │ ├── myprint-icon.svg │ │ │ └── myprint-logo.png │ │ ├── components │ │ │ ├── content │ │ │ │ ├── handle-panel │ │ │ │ │ ├── history-line-text.vue │ │ │ │ │ ├── history-panel.vue │ │ │ │ │ ├── minimap-panel.vue │ │ │ │ │ ├── operation-panel │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── my-element-setting.vue │ │ │ │ │ │ └── my-panel-setting.vue │ │ │ │ │ └── setting │ │ │ │ │ │ ├── setting-about.vue │ │ │ │ │ │ ├── setting-design.vue │ │ │ │ │ │ ├── setting-panel.vue │ │ │ │ │ │ └── setting-printer.vue │ │ │ │ ├── index.ts │ │ │ │ ├── index.vue │ │ │ │ ├── panel │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── index.vue │ │ │ │ │ └── my-panel.vue │ │ │ │ ├── toolbar │ │ │ │ │ ├── style-design.vue │ │ │ │ │ ├── toolbar-style │ │ │ │ │ │ ├── element-align.vue │ │ │ │ │ │ ├── font-family.vue │ │ │ │ │ │ └── font-size.vue │ │ │ │ │ └── toolbar.vue │ │ │ │ └── widget │ │ │ │ │ ├── base-widget.vue │ │ │ │ │ ├── basic.vue │ │ │ │ │ ├── business.vue │ │ │ │ │ ├── dragWrapper.vue │ │ │ │ │ └── index.vue │ │ │ ├── design │ │ │ │ ├── auxiliary │ │ │ │ │ └── auxiliary-line.vue │ │ │ │ ├── barcode │ │ │ │ │ ├── barcode.vue │ │ │ │ │ └── index.ts │ │ │ │ ├── container │ │ │ │ │ ├── container │ │ │ │ │ │ ├── containerView.vue │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── design.vue │ │ │ │ ├── element-list.vue │ │ │ │ ├── element.vue │ │ │ │ ├── image │ │ │ │ │ ├── image.vue │ │ │ │ │ └── index.ts │ │ │ │ ├── qrcode │ │ │ │ │ ├── index.ts │ │ │ │ │ └── qrcode.vue │ │ │ │ ├── shape │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── line │ │ │ │ │ │ ├── computeStyle.ts │ │ │ │ │ │ ├── dottedHorizontalLine │ │ │ │ │ │ │ ├── dottedHorizontalLine.vue │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── dottedVerticalLine │ │ │ │ │ │ │ ├── dottedVerticalLine.vue │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── horizontalLine │ │ │ │ │ │ │ ├── horizontalLine.vue │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── verticalLine │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── verticalLine.vue │ │ │ │ │ └── rect │ │ │ │ │ │ ├── dottedRect │ │ │ │ │ │ ├── dottedRect.vue │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── rect │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── rect.vue │ │ │ │ ├── svg │ │ │ │ │ ├── draw-panel.vue │ │ │ │ │ ├── svg-base.vue │ │ │ │ │ ├── svg-bezier-curve-three.vue │ │ │ │ │ ├── svg-bezier-curve.vue │ │ │ │ │ ├── svg-circle.vue │ │ │ │ │ ├── svg-ellipse.vue │ │ │ │ │ ├── svg-line.vue │ │ │ │ │ └── svg-polygon-line.vue │ │ │ │ ├── table │ │ │ │ │ └── data-table │ │ │ │ │ │ ├── column-view.vue │ │ │ │ │ │ ├── data-table.vue │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── table-design.vue │ │ │ │ └── text │ │ │ │ │ ├── index.ts │ │ │ │ │ └── text.vue │ │ │ ├── my │ │ │ │ ├── button │ │ │ │ │ └── my-Button.vue │ │ │ │ ├── collapse │ │ │ │ │ ├── my-collapse.vue │ │ │ │ │ └── my-widget-collapse.vue │ │ │ │ ├── color-picker │ │ │ │ │ └── my-color-picker.vue │ │ │ │ ├── dialog │ │ │ │ │ └── my-dialog.vue │ │ │ │ ├── divider │ │ │ │ │ ├── my-divider-panel.vue │ │ │ │ │ └── my-divider.vue │ │ │ │ ├── form │ │ │ │ │ ├── my-form-item.vue │ │ │ │ │ └── my-form.vue │ │ │ │ ├── group │ │ │ │ │ └── my-group.vue │ │ │ │ ├── icon │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── ArrowLeft.vue │ │ │ │ │ │ ├── ArrowRight.vue │ │ │ │ │ │ ├── Check.vue │ │ │ │ │ │ ├── Close.vue │ │ │ │ │ │ ├── CloseBold.vue │ │ │ │ │ │ ├── Crop.vue │ │ │ │ │ │ ├── Plus.vue │ │ │ │ │ │ ├── Printer.vue │ │ │ │ │ │ ├── QuestionFilled.vue │ │ │ │ │ │ ├── RefreshLeft.vue │ │ │ │ │ │ ├── RefreshRight.vue │ │ │ │ │ │ ├── ZoomIn.vue │ │ │ │ │ │ └── ZoomOut.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── my-icon.vue │ │ │ │ │ ├── style-icon.vue │ │ │ │ │ ├── tip-icon.vue │ │ │ │ │ └── tool-icon-popover.vue │ │ │ │ ├── input │ │ │ │ │ ├── history-input-number.vue │ │ │ │ │ ├── history-input.vue │ │ │ │ │ ├── history-select.vue │ │ │ │ │ ├── history.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── my-input-number.vue │ │ │ │ │ ├── my-input.vue │ │ │ │ │ └── unit.vue │ │ │ │ ├── message │ │ │ │ │ ├── my-message.ts │ │ │ │ │ └── my-message.vue │ │ │ │ ├── mouse-tips │ │ │ │ │ └── my-mouse-tips.vue │ │ │ │ ├── popover │ │ │ │ │ ├── my-icon-popover.vue │ │ │ │ │ └── my-popover.vue │ │ │ │ ├── radio │ │ │ │ │ └── my-radio.vue │ │ │ │ ├── rule │ │ │ │ │ └── rule.vue │ │ │ │ ├── scrollbar │ │ │ │ │ └── my-scrollbar.vue │ │ │ │ ├── select │ │ │ │ │ └── my-select.vue │ │ │ │ ├── slider │ │ │ │ │ └── my-slider.vue │ │ │ │ ├── switch │ │ │ │ │ └── my-switch.vue │ │ │ │ ├── tabs │ │ │ │ │ └── my-tabs.vue │ │ │ │ ├── tooltip │ │ │ │ │ └── my-tooltip.vue │ │ │ │ └── tree-list │ │ │ │ │ └── my-tree-list.vue │ │ │ ├── preview │ │ │ │ ├── autoPage.ts │ │ │ │ ├── preview-panel.vue │ │ │ │ └── preview.vue │ │ │ └── print │ │ │ │ └── print.vue │ │ ├── constants │ │ │ ├── common.ts │ │ │ ├── keys.ts │ │ │ ├── provider │ │ │ │ ├── auxiliary.ts │ │ │ │ └── custom.ts │ │ │ └── settingPanel.ts │ │ ├── design.ts │ │ ├── index.ts │ │ ├── install.ts │ │ ├── locales │ │ │ ├── en-us │ │ │ │ ├── barcodeMsg.ts │ │ │ │ ├── common.ts │ │ │ │ ├── font.ts │ │ │ │ ├── handle-panel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── preview.ts │ │ │ │ ├── provider.ts │ │ │ │ ├── setting.ts │ │ │ │ └── toolbar.ts │ │ │ ├── index.ts │ │ │ └── zh-cn │ │ │ │ ├── barcodeMsg.ts │ │ │ │ ├── common.ts │ │ │ │ ├── font.ts │ │ │ │ ├── handle-panel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── preview.ts │ │ │ │ ├── provider.ts │ │ │ │ ├── setting.ts │ │ │ │ └── toolbar.ts │ │ ├── plugins │ │ │ ├── moveable │ │ │ │ ├── moveable.ts │ │ │ │ ├── moveable_js.js │ │ │ │ ├── moveable_local.ts │ │ │ │ ├── selecto.ts │ │ │ │ └── types │ │ │ │ │ └── index.ts │ │ │ └── myprintClientService.ts │ │ ├── printer.ts │ │ ├── stores │ │ │ ├── app.ts │ │ │ ├── config.ts │ │ │ ├── dragStore.ts │ │ │ └── socket.ts │ │ ├── styles │ │ │ ├── commStyle.scss │ │ │ ├── design.scss │ │ │ ├── element-plus-ui-cover.scss │ │ │ ├── font.scss │ │ │ ├── handle-panel.scss │ │ │ ├── iconfont-color.css │ │ │ ├── iconfont.css │ │ │ ├── index.scss │ │ │ ├── moveable.scss │ │ │ ├── moveable1.scss │ │ │ ├── my-button.scss │ │ │ ├── my-collapse.scss │ │ │ ├── my-colorPicker.scss │ │ │ ├── my-component.scss │ │ │ ├── my-icon.scss │ │ │ ├── my-image.scss │ │ │ ├── my-input-group.scss │ │ │ ├── my-other.scss │ │ │ ├── my-popover.scss │ │ │ ├── my-slider.scss │ │ │ ├── my-tabs.scss │ │ │ ├── options.scss │ │ │ ├── panel.scss │ │ │ ├── preview.scss │ │ │ ├── printStyle.scss │ │ │ ├── rule.scss │ │ │ ├── style.scss │ │ │ ├── toolbar.scss │ │ │ └── var.scss │ │ ├── types │ │ │ ├── R.ts │ │ │ ├── d3Type.ts │ │ │ ├── entity.ts │ │ │ └── eventType.ts │ │ └── utils │ │ │ ├── arrays.ts │ │ │ ├── bezierUtil.ts │ │ │ ├── devicePixelRatio.ts │ │ │ ├── elementUtil.ts │ │ │ ├── event.ts │ │ │ ├── historyUtil.ts │ │ │ ├── keyboardUtil.ts │ │ │ ├── memoryClipboardUtil.ts │ │ │ ├── mouseTips.ts │ │ │ ├── myprint.ts │ │ │ ├── numberUtil.ts │ │ │ ├── pdfUtil.ts │ │ │ ├── printProtocol │ │ │ ├── lodop.ts │ │ │ └── myPrint.ts │ │ │ ├── scaleUtil.ts │ │ │ ├── svgUtil.ts │ │ │ ├── table │ │ │ └── dataTable.ts │ │ │ ├── timeUtil.ts │ │ │ └── utils.ts │ └── tsconfig.json └── docs │ ├── .vitepress │ ├── config.ts │ ├── en.ts │ ├── plugins.ts │ ├── plugins │ │ └── table-wrapper.ts │ ├── shared.ts │ ├── theme │ │ ├── index.ts │ │ └── style.css │ └── zh.ts │ ├── en │ ├── api-examples.md │ ├── dg.md │ ├── guide │ │ └── whatIs-my-print.md │ └── markdown-examples.md │ ├── examples │ └── constant.ts │ ├── guide │ ├── deploy │ │ ├── centos.md │ │ ├── client.md │ │ ├── debian.md │ │ ├── docker.md │ │ └── k8s.md │ ├── getting-started.md │ ├── install.md │ ├── reference │ │ ├── join.md │ │ └── question.md │ ├── use-api │ │ ├── api-example.md │ │ ├── design-panel-use.md │ │ └── design-panel.md │ └── whatIs-my-print.md │ ├── index.md │ ├── package.json │ ├── public │ ├── base-icon-01.png │ ├── base-icon-mac.svg │ ├── client-macos-nostart.png │ ├── client-macos.png │ ├── client-win-nostart.png │ ├── client-win.png │ ├── myprint-icon.svg │ ├── myprint-icon_doc_right.svg │ ├── qq.png │ └── weixin.png │ ├── tsconfig.json │ └── vite.config.ts ├── pnpm-workspace.yaml ├── readme ├── client_design.png ├── client_preview.png ├── demo_main.png ├── jj_design.png ├── jj_preview.png ├── mail_design.png ├── mail_preview.png ├── order_design.png ├── order_preview.png ├── qq.png └── weixin.png ├── scripts ├── build-css.ts ├── build-dts.ts ├── build-full-bundle.ts ├── build-module.ts ├── build-moveable.ts ├── dev-business.ts ├── dev-components.ts ├── gen-version.ts ├── package.json ├── publish.sh ├── util.ts └── utils.ts ├── shims-vue.d.ts ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.web.build.json └── tsconfig.web.json /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/README.md -------------------------------------------------------------------------------- /auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/auto-imports.d.ts -------------------------------------------------------------------------------- /components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/components.d.ts -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/package.json -------------------------------------------------------------------------------- /packages/demo/.env.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/.env.demo -------------------------------------------------------------------------------- /packages/demo/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/.env.development -------------------------------------------------------------------------------- /packages/demo/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/.env.production -------------------------------------------------------------------------------- /packages/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/.gitignore -------------------------------------------------------------------------------- /packages/demo/README.md: -------------------------------------------------------------------------------- 1 | 示例 2 | -------------------------------------------------------------------------------- /packages/demo/auto-imports.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/auto-imports.d.ts -------------------------------------------------------------------------------- /packages/demo/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/components.d.ts -------------------------------------------------------------------------------- /packages/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/index.html -------------------------------------------------------------------------------- /packages/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/package.json -------------------------------------------------------------------------------- /packages/demo/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/App.vue -------------------------------------------------------------------------------- /packages/demo/src/api/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/api/login.ts -------------------------------------------------------------------------------- /packages/demo/src/api/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/api/module.ts -------------------------------------------------------------------------------- /packages/demo/src/api/moduleGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/api/moduleGroup.ts -------------------------------------------------------------------------------- /packages/demo/src/api/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/api/template.ts -------------------------------------------------------------------------------- /packages/demo/src/assets/cprint-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/assets/cprint-icon.svg -------------------------------------------------------------------------------- /packages/demo/src/assets/cprint-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/assets/cprint-logo.png -------------------------------------------------------------------------------- /packages/demo/src/assets/myprint-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/assets/myprint-icon.svg -------------------------------------------------------------------------------- /packages/demo/src/components/dialog/delete-dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/components/dialog/delete-dialog.vue -------------------------------------------------------------------------------- /packages/demo/src/components/dialog/rename-dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/components/dialog/rename-dialog.vue -------------------------------------------------------------------------------- /packages/demo/src/components/popover/popover-menu-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/components/popover/popover-menu-list.vue -------------------------------------------------------------------------------- /packages/demo/src/constants/img64/img.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/constants/img64/img.ts -------------------------------------------------------------------------------- /packages/demo/src/constants/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/constants/keys.ts -------------------------------------------------------------------------------- /packages/demo/src/locales/en-us/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/locales/en-us/index.ts -------------------------------------------------------------------------------- /packages/demo/src/locales/en-us/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/locales/en-us/main.ts -------------------------------------------------------------------------------- /packages/demo/src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/locales/index.ts -------------------------------------------------------------------------------- /packages/demo/src/locales/zh-cn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/locales/zh-cn/index.ts -------------------------------------------------------------------------------- /packages/demo/src/locales/zh-cn/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/locales/zh-cn/main.ts -------------------------------------------------------------------------------- /packages/demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/main.ts -------------------------------------------------------------------------------- /packages/demo/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/router/index.ts -------------------------------------------------------------------------------- /packages/demo/src/stores/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/stores/app.ts -------------------------------------------------------------------------------- /packages/demo/src/stores/keepAliveStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/stores/keepAliveStore.ts -------------------------------------------------------------------------------- /packages/demo/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/style.css -------------------------------------------------------------------------------- /packages/demo/src/styles/module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/styles/module.scss -------------------------------------------------------------------------------- /packages/demo/src/styles/var.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/styles/var.scss -------------------------------------------------------------------------------- /packages/demo/src/types/R.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/types/R.ts -------------------------------------------------------------------------------- /packages/demo/src/types/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/types/entity.ts -------------------------------------------------------------------------------- /packages/demo/src/types/eventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/types/eventType.ts -------------------------------------------------------------------------------- /packages/demo/src/utils/errorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/utils/errorCode.ts -------------------------------------------------------------------------------- /packages/demo/src/utils/gzipUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/utils/gzipUtil.ts -------------------------------------------------------------------------------- /packages/demo/src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/utils/request.ts -------------------------------------------------------------------------------- /packages/demo/src/utils/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/utils/util.ts -------------------------------------------------------------------------------- /packages/demo/src/views/design/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/design/index.vue -------------------------------------------------------------------------------- /packages/demo/src/views/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/layout/index.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/field-setting/field-setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/field-setting/field-setting.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/field-setting/field-table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/field-setting/field-table.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/field-setting/provider-setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/field-setting/provider-setting.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/index.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/module-group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/module-group.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/module-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/module-item.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/preview-data/preview-data-table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/preview-data/preview-data-table.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/preview-data/preview-data.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/preview-data/preview-data.vue -------------------------------------------------------------------------------- /packages/demo/src/views/module/preview-data/recursive-table-column.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/module/preview-data/recursive-table-column.vue -------------------------------------------------------------------------------- /packages/demo/src/views/template/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/template/index.vue -------------------------------------------------------------------------------- /packages/demo/src/views/templateCenter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/src/views/templateCenter/index.vue -------------------------------------------------------------------------------- /packages/demo/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/tsconfig.json -------------------------------------------------------------------------------- /packages/demo/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/tsconfig.node.json -------------------------------------------------------------------------------- /packages/demo/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/demo/vite.config.ts -------------------------------------------------------------------------------- /packages/design/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/.npmignore -------------------------------------------------------------------------------- /packages/design/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/components.d.ts -------------------------------------------------------------------------------- /packages/design/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/package.json -------------------------------------------------------------------------------- /packages/design/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/shims-vue.d.ts -------------------------------------------------------------------------------- /packages/design/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/README.md -------------------------------------------------------------------------------- /packages/design/src/api/pdfServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/api/pdfServer.ts -------------------------------------------------------------------------------- /packages/design/src/assets/fonts/AlimamaFangYuanTiVF-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/assets/fonts/AlimamaFangYuanTiVF-Thin.ttf -------------------------------------------------------------------------------- /packages/design/src/assets/fonts/AlimamaFangYuanTiVF-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/assets/fonts/AlimamaFangYuanTiVF-Thin.woff2 -------------------------------------------------------------------------------- /packages/design/src/assets/fonts/AlimamaShuHeiTi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/assets/fonts/AlimamaShuHeiTi-Bold.ttf -------------------------------------------------------------------------------- /packages/design/src/assets/fonts/iconfont-color.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/assets/fonts/iconfont-color.woff2 -------------------------------------------------------------------------------- /packages/design/src/assets/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/assets/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /packages/design/src/assets/myprint-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/assets/myprint-icon.svg -------------------------------------------------------------------------------- /packages/design/src/assets/myprint-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/assets/myprint-logo.png -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/history-line-text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/history-line-text.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/history-panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/history-panel.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/minimap-panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/minimap-panel.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/operation-panel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/operation-panel/index.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/operation-panel/my-element-setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/operation-panel/my-element-setting.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/operation-panel/my-panel-setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/operation-panel/my-panel-setting.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/setting/setting-about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/setting/setting-about.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/setting/setting-design.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/setting/setting-design.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/setting/setting-panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/setting/setting-panel.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/handle-panel/setting/setting-printer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/handle-panel/setting/setting-printer.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/content/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/index.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/panel/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/design/src/components/content/panel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/panel/index.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/panel/my-panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/panel/my-panel.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/toolbar/style-design.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/toolbar/style-design.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/toolbar/toolbar-style/element-align.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/toolbar/toolbar-style/element-align.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/toolbar/toolbar-style/font-family.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/toolbar/toolbar-style/font-family.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/toolbar/toolbar-style/font-size.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/toolbar/toolbar-style/font-size.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/toolbar/toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/toolbar/toolbar.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/widget/base-widget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/widget/base-widget.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/widget/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/widget/basic.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/widget/business.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/widget/business.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/widget/dragWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/widget/dragWrapper.vue -------------------------------------------------------------------------------- /packages/design/src/components/content/widget/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/content/widget/index.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/auxiliary/auxiliary-line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/auxiliary/auxiliary-line.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/barcode/barcode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/barcode/barcode.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/barcode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/barcode/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/container/container/containerView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/container/container/containerView.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/container/container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/container/container/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/container/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/design.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/design.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/element-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/element-list.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/element.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/element.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/image/image.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/image/image.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/image/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/qrcode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/qrcode/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/qrcode/qrcode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/qrcode/qrcode.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/computeStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/computeStyle.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/dottedHorizontalLine/dottedHorizontalLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/dottedHorizontalLine/dottedHorizontalLine.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/dottedHorizontalLine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/dottedHorizontalLine/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/dottedVerticalLine/dottedVerticalLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/dottedVerticalLine/dottedVerticalLine.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/dottedVerticalLine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/dottedVerticalLine/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/horizontalLine/horizontalLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/horizontalLine/horizontalLine.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/horizontalLine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/horizontalLine/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/verticalLine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/verticalLine/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/line/verticalLine/verticalLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/line/verticalLine/verticalLine.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/rect/dottedRect/dottedRect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/rect/dottedRect/dottedRect.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/rect/dottedRect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/rect/dottedRect/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/rect/rect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/rect/rect/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/shape/rect/rect/rect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/shape/rect/rect/rect.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/draw-panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/draw-panel.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/svg-base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/svg-base.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/svg-bezier-curve-three.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/svg-bezier-curve-three.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/svg-bezier-curve.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/svg-bezier-curve.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/svg-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/svg-circle.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/svg-ellipse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/svg-ellipse.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/svg-line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/svg-line.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/svg/svg-polygon-line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/svg/svg-polygon-line.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/table/data-table/column-view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/table/data-table/column-view.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/table/data-table/data-table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/table/data-table/data-table.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/table/data-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/table/data-table/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/table/data-table/table-design.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/table/data-table/table-design.vue -------------------------------------------------------------------------------- /packages/design/src/components/design/text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/text/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/design/text/text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/design/text/text.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/button/my-Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/button/my-Button.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/collapse/my-collapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/collapse/my-collapse.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/collapse/my-widget-collapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/collapse/my-widget-collapse.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/color-picker/my-color-picker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/color-picker/my-color-picker.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/dialog/my-dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/dialog/my-dialog.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/divider/my-divider-panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/divider/my-divider-panel.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/divider/my-divider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/divider/my-divider.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/form/my-form-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/form/my-form-item.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/form/my-form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/form/my-form.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/group/my-group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/group/my-group.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/ArrowLeft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/ArrowLeft.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/ArrowRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/ArrowRight.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/Check.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/Check.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/Close.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/Close.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/CloseBold.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/CloseBold.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/Crop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/Crop.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/Plus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/Plus.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/Printer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/Printer.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/QuestionFilled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/QuestionFilled.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/RefreshLeft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/RefreshLeft.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/RefreshRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/RefreshRight.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/ZoomIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/ZoomIn.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/icons/ZoomOut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/icons/ZoomOut.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/my-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/my-icon.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/style-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/style-icon.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/tip-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/tip-icon.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/icon/tool-icon-popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/icon/tool-icon-popover.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/input/history-input-number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/history-input-number.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/input/history-input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/history-input.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/input/history-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/history-select.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/input/history.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/history.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/index.ts -------------------------------------------------------------------------------- /packages/design/src/components/my/input/my-input-number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/my-input-number.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/input/my-input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/my-input.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/input/unit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/input/unit.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/message/my-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/message/my-message.ts -------------------------------------------------------------------------------- /packages/design/src/components/my/message/my-message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/message/my-message.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/mouse-tips/my-mouse-tips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/mouse-tips/my-mouse-tips.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/popover/my-icon-popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/popover/my-icon-popover.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/popover/my-popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/popover/my-popover.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/radio/my-radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/radio/my-radio.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/rule/rule.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/rule/rule.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/scrollbar/my-scrollbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/scrollbar/my-scrollbar.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/select/my-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/select/my-select.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/slider/my-slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/slider/my-slider.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/switch/my-switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/switch/my-switch.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/tabs/my-tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/tabs/my-tabs.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/tooltip/my-tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/tooltip/my-tooltip.vue -------------------------------------------------------------------------------- /packages/design/src/components/my/tree-list/my-tree-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/my/tree-list/my-tree-list.vue -------------------------------------------------------------------------------- /packages/design/src/components/preview/autoPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/preview/autoPage.ts -------------------------------------------------------------------------------- /packages/design/src/components/preview/preview-panel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/preview/preview-panel.vue -------------------------------------------------------------------------------- /packages/design/src/components/preview/preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/preview/preview.vue -------------------------------------------------------------------------------- /packages/design/src/components/print/print.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/components/print/print.vue -------------------------------------------------------------------------------- /packages/design/src/constants/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/constants/common.ts -------------------------------------------------------------------------------- /packages/design/src/constants/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/constants/keys.ts -------------------------------------------------------------------------------- /packages/design/src/constants/provider/auxiliary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/constants/provider/auxiliary.ts -------------------------------------------------------------------------------- /packages/design/src/constants/provider/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/constants/provider/custom.ts -------------------------------------------------------------------------------- /packages/design/src/constants/settingPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/constants/settingPanel.ts -------------------------------------------------------------------------------- /packages/design/src/design.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/design.ts -------------------------------------------------------------------------------- /packages/design/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/index.ts -------------------------------------------------------------------------------- /packages/design/src/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/install.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/barcodeMsg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/barcodeMsg.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/common.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/font.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/handle-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/handle-panel.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/index.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/preview.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/provider.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/setting.ts -------------------------------------------------------------------------------- /packages/design/src/locales/en-us/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/en-us/toolbar.ts -------------------------------------------------------------------------------- /packages/design/src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/index.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/barcodeMsg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/barcodeMsg.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/common.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/font.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/handle-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/handle-panel.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/index.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/preview.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | 'preview.download.pdf': '下载PDF' 3 | 4 | }; 5 | -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/provider.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/setting.ts -------------------------------------------------------------------------------- /packages/design/src/locales/zh-cn/toolbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/locales/zh-cn/toolbar.ts -------------------------------------------------------------------------------- /packages/design/src/plugins/moveable/moveable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/plugins/moveable/moveable.ts -------------------------------------------------------------------------------- /packages/design/src/plugins/moveable/moveable_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/plugins/moveable/moveable_js.js -------------------------------------------------------------------------------- /packages/design/src/plugins/moveable/moveable_local.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/design/src/plugins/moveable/selecto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/plugins/moveable/selecto.ts -------------------------------------------------------------------------------- /packages/design/src/plugins/moveable/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/plugins/moveable/types/index.ts -------------------------------------------------------------------------------- /packages/design/src/plugins/myprintClientService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/plugins/myprintClientService.ts -------------------------------------------------------------------------------- /packages/design/src/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/printer.ts -------------------------------------------------------------------------------- /packages/design/src/stores/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/stores/app.ts -------------------------------------------------------------------------------- /packages/design/src/stores/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/stores/config.ts -------------------------------------------------------------------------------- /packages/design/src/stores/dragStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/stores/dragStore.ts -------------------------------------------------------------------------------- /packages/design/src/stores/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/stores/socket.ts -------------------------------------------------------------------------------- /packages/design/src/styles/commStyle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/commStyle.scss -------------------------------------------------------------------------------- /packages/design/src/styles/design.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/design.scss -------------------------------------------------------------------------------- /packages/design/src/styles/element-plus-ui-cover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/element-plus-ui-cover.scss -------------------------------------------------------------------------------- /packages/design/src/styles/font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/font.scss -------------------------------------------------------------------------------- /packages/design/src/styles/handle-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/handle-panel.scss -------------------------------------------------------------------------------- /packages/design/src/styles/iconfont-color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/iconfont-color.css -------------------------------------------------------------------------------- /packages/design/src/styles/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/iconfont.css -------------------------------------------------------------------------------- /packages/design/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/index.scss -------------------------------------------------------------------------------- /packages/design/src/styles/moveable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/moveable.scss -------------------------------------------------------------------------------- /packages/design/src/styles/moveable1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/moveable1.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-button.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-collapse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-collapse.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-colorPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-colorPicker.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-component.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-icon.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-image.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-input-group.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-other.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-other.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-popover.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-slider.scss -------------------------------------------------------------------------------- /packages/design/src/styles/my-tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/my-tabs.scss -------------------------------------------------------------------------------- /packages/design/src/styles/options.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/options.scss -------------------------------------------------------------------------------- /packages/design/src/styles/panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/panel.scss -------------------------------------------------------------------------------- /packages/design/src/styles/preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/preview.scss -------------------------------------------------------------------------------- /packages/design/src/styles/printStyle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/printStyle.scss -------------------------------------------------------------------------------- /packages/design/src/styles/rule.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/rule.scss -------------------------------------------------------------------------------- /packages/design/src/styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/style.scss -------------------------------------------------------------------------------- /packages/design/src/styles/toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/toolbar.scss -------------------------------------------------------------------------------- /packages/design/src/styles/var.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/styles/var.scss -------------------------------------------------------------------------------- /packages/design/src/types/R.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/types/R.ts -------------------------------------------------------------------------------- /packages/design/src/types/d3Type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/types/d3Type.ts -------------------------------------------------------------------------------- /packages/design/src/types/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/types/entity.ts -------------------------------------------------------------------------------- /packages/design/src/types/eventType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/types/eventType.ts -------------------------------------------------------------------------------- /packages/design/src/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/arrays.ts -------------------------------------------------------------------------------- /packages/design/src/utils/bezierUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/bezierUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/devicePixelRatio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/devicePixelRatio.ts -------------------------------------------------------------------------------- /packages/design/src/utils/elementUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/elementUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/event.ts -------------------------------------------------------------------------------- /packages/design/src/utils/historyUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/historyUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/keyboardUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/keyboardUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/memoryClipboardUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/memoryClipboardUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/mouseTips.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/mouseTips.ts -------------------------------------------------------------------------------- /packages/design/src/utils/myprint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/myprint.ts -------------------------------------------------------------------------------- /packages/design/src/utils/numberUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/numberUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/pdfUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/pdfUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/printProtocol/lodop.ts: -------------------------------------------------------------------------------- 1 | // lodop协议 2 | -------------------------------------------------------------------------------- /packages/design/src/utils/printProtocol/myPrint.ts: -------------------------------------------------------------------------------- 1 | // myprint协议 2 | -------------------------------------------------------------------------------- /packages/design/src/utils/scaleUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/scaleUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/svgUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/svgUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/table/dataTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/table/dataTable.ts -------------------------------------------------------------------------------- /packages/design/src/utils/timeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/timeUtil.ts -------------------------------------------------------------------------------- /packages/design/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/src/utils/utils.ts -------------------------------------------------------------------------------- /packages/design/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/design/tsconfig.json -------------------------------------------------------------------------------- /packages/docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /packages/docs/.vitepress/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/en.ts -------------------------------------------------------------------------------- /packages/docs/.vitepress/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/plugins.ts -------------------------------------------------------------------------------- /packages/docs/.vitepress/plugins/table-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/plugins/table-wrapper.ts -------------------------------------------------------------------------------- /packages/docs/.vitepress/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/shared.ts -------------------------------------------------------------------------------- /packages/docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /packages/docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /packages/docs/.vitepress/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/.vitepress/zh.ts -------------------------------------------------------------------------------- /packages/docs/en/api-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/en/api-examples.md -------------------------------------------------------------------------------- /packages/docs/en/dg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/en/dg.md -------------------------------------------------------------------------------- /packages/docs/en/guide/whatIs-my-print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/en/guide/whatIs-my-print.md -------------------------------------------------------------------------------- /packages/docs/en/markdown-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/en/markdown-examples.md -------------------------------------------------------------------------------- /packages/docs/examples/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/examples/constant.ts -------------------------------------------------------------------------------- /packages/docs/guide/deploy/centos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/deploy/centos.md -------------------------------------------------------------------------------- /packages/docs/guide/deploy/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/deploy/client.md -------------------------------------------------------------------------------- /packages/docs/guide/deploy/debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/deploy/debian.md -------------------------------------------------------------------------------- /packages/docs/guide/deploy/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/deploy/docker.md -------------------------------------------------------------------------------- /packages/docs/guide/deploy/k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/deploy/k8s.md -------------------------------------------------------------------------------- /packages/docs/guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/getting-started.md -------------------------------------------------------------------------------- /packages/docs/guide/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/install.md -------------------------------------------------------------------------------- /packages/docs/guide/reference/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/reference/join.md -------------------------------------------------------------------------------- /packages/docs/guide/reference/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/reference/question.md -------------------------------------------------------------------------------- /packages/docs/guide/use-api/api-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/use-api/api-example.md -------------------------------------------------------------------------------- /packages/docs/guide/use-api/design-panel-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/use-api/design-panel-use.md -------------------------------------------------------------------------------- /packages/docs/guide/use-api/design-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/use-api/design-panel.md -------------------------------------------------------------------------------- /packages/docs/guide/whatIs-my-print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/guide/whatIs-my-print.md -------------------------------------------------------------------------------- /packages/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/index.md -------------------------------------------------------------------------------- /packages/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/package.json -------------------------------------------------------------------------------- /packages/docs/public/base-icon-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/base-icon-01.png -------------------------------------------------------------------------------- /packages/docs/public/base-icon-mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/base-icon-mac.svg -------------------------------------------------------------------------------- /packages/docs/public/client-macos-nostart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/client-macos-nostart.png -------------------------------------------------------------------------------- /packages/docs/public/client-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/client-macos.png -------------------------------------------------------------------------------- /packages/docs/public/client-win-nostart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/client-win-nostart.png -------------------------------------------------------------------------------- /packages/docs/public/client-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/client-win.png -------------------------------------------------------------------------------- /packages/docs/public/myprint-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/myprint-icon.svg -------------------------------------------------------------------------------- /packages/docs/public/myprint-icon_doc_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/myprint-icon_doc_right.svg -------------------------------------------------------------------------------- /packages/docs/public/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/qq.png -------------------------------------------------------------------------------- /packages/docs/public/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/public/weixin.png -------------------------------------------------------------------------------- /packages/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/tsconfig.json -------------------------------------------------------------------------------- /packages/docs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/packages/docs/vite.config.ts -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /readme/client_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/client_design.png -------------------------------------------------------------------------------- /readme/client_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/client_preview.png -------------------------------------------------------------------------------- /readme/demo_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/demo_main.png -------------------------------------------------------------------------------- /readme/jj_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/jj_design.png -------------------------------------------------------------------------------- /readme/jj_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/jj_preview.png -------------------------------------------------------------------------------- /readme/mail_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/mail_design.png -------------------------------------------------------------------------------- /readme/mail_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/mail_preview.png -------------------------------------------------------------------------------- /readme/order_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/order_design.png -------------------------------------------------------------------------------- /readme/order_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/order_preview.png -------------------------------------------------------------------------------- /readme/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/qq.png -------------------------------------------------------------------------------- /readme/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/readme/weixin.png -------------------------------------------------------------------------------- /scripts/build-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/build-css.ts -------------------------------------------------------------------------------- /scripts/build-dts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/build-dts.ts -------------------------------------------------------------------------------- /scripts/build-full-bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/build-full-bundle.ts -------------------------------------------------------------------------------- /scripts/build-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/build-module.ts -------------------------------------------------------------------------------- /scripts/build-moveable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/build-moveable.ts -------------------------------------------------------------------------------- /scripts/dev-business.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/dev-business.ts -------------------------------------------------------------------------------- /scripts/dev-components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/dev-components.ts -------------------------------------------------------------------------------- /scripts/gen-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/gen-version.ts -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /scripts/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/util.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /shims-vue.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'vue-cropper' 2 | -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/tsconfig.web.build.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyPrintDesign/myprint/HEAD/tsconfig.web.json --------------------------------------------------------------------------------