unione-form-vue 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.umd.js +24 -11
- package/dist/lib/debounce.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/typing.d.ts +1 -0
- package/dist/version/version.d.ts +1 -1
- package/dist/widgets/advance/rickText/Dialog.d.ts +34 -0
- package/dist/widgets/advance/rickText/richText.vue.d.ts +95 -0
- package/dist/widgets/advance/rickText/toolbar.vue.d.ts +51 -0
- package/dist/widgets/form/checkBox.vue.d.ts +21 -5
- package/dist/widgets/form/radioBox.vue.d.ts +6 -0
- package/dist/widgets/form/selectBox.vue.d.ts +6 -0
- package/dist/widgets/widget.vue.d.ts +6 -1
- package/package.json +7 -4
package/dist/lib/debounce.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function useDebounce(callback: Function, time?: number): (value:
|
|
1
|
+
export default function useDebounce(callback: Function, time?: number): (value: any) => void;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}@media (prefers-color-scheme: dark){:root{--color-background: var(--vt-c-black);--color-background-soft: var(--vt-c-black-soft);--color-background-mute: var(--vt-c-black-mute);--color-border: var(--vt-c-divider-dark-2);--color-border-hover: var(--vt-c-divider-dark-1);--color-heading: var(--vt-c-text-dark-1);--color-text: var(--vt-c-text-dark-2)}}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100vh;color:var(--color-text);background:var(--color-background);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}::-webkit-scrollbar{width:7px;height:7px}::-webkit-scrollbar-track{background-color:#fff;border-radius:3px}::-webkit-scrollbar-thumb{background-color:#1677ff;border-radius:6px;border:2px solid #f1f1f1;background-color:transparent}::-webkit-scrollbar-thumb:hover{background-color:#1677ff}#app{width:100vw;height:100vh;font-weight:400}.ant-switch{background-color:#1677ff}.unione-page{padding:10px 5px}.unione-page.edit .page-setting{cursor:pointer;position:absolute;right:12px;margin-top:25px;display:none}.unione-page.edit .page-setting:hover{font-size:20px;margin-right:-2px;margin-top:23px}.unione-page.edit .btn-save{cursor:pointer;position:absolute;right:12px;margin-top:55px;display:none}.unione-page.edit .btn-save:hover{font-size:20px;margin-right:-2px;margin-top:52px}.unione-page.edit:hover .page-setting{display:block;animation:rotates 2s linear infinite}.unione-page.edit:hover .btn-save{display:block}.unione-page .btn-edit{cursor:pointer;position:absolute;right:12px;margin-top:-5px}.unione-page .btn-edit:hover{font-size:20px;margin-right:-2px;margin-top:-7px}@keyframes rotates{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(-90deg)}50%{-webkit-transform:rotate(-180deg)}70%{-webkit-transform:rotate(-270deg)}to{-webkit-transform:rotate(-360deg)}}.page-setting-dialog{height:75vh;overflow-y:auto}.unione-page-form{padding:10px;height:100%;overflow-y:auto}.unione-page-form .form-btns{width:100%;margin:10px;text-align:center}.unione-page-form .form-btns .btn{margin:auto 5px}.unione-page-tree{display:flex;height:100%;overflow-y:auto}.unione-page-tree .tree-warp{width:250px;padding-right:10px;border-right:1px solid #d9d9d9}.unione-page-tree .tree-warp .input-search{margin:0 0 5px 5px}.unione-page-tree .tree-warp .unione-btn-add{margin-bottom:5px}.unione-page-tree .tree-warp .ant-tree-icon__customize+.ant-tree-title{width:calc(100% - 25px);display:inline-block}.unione-page-tree .tree-warp .ant-tree-icon__customize:empty+.ant-tree-title{width:100%}.unione-page-tree .tree-warp .node-label{width:100%}.unione-page-tree .tree-warp .node-opts{float:right}.unione-page-tree .tree-warp .node-opts .unione-btn{margin:0}.unione-page-tree .form-warp{width:calc(100% - 250px)}.unione-page-tree .form-warp .form-btns{width:100%;margin:10px;text-align:center}.unione-page-tree .form-warp .form-btns .btn{margin:auto 5px}.unione-page-list{padding:10px;height:100%;overflow-y:auto}.ant-table .ant-table-content{border-inline-start:1px solid #cfcfcf;border-top-left-radius:8px;border-top-right-radius:8px;overflow:hidden}.ant-table .ant-table-content table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell .ant-table-column-title{font-weight:600}.ant-table .ant-table-content .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.ant-table .ant-table-container .ant-table-thead table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.unione-iframe{border:none;width:100%;height:100%}.unione-widget.edit .widget-setting[data-v-3a88c0c0]{cursor:pointer;float:right;margin-right:-6px;margin-top:6px;display:none}.unione-widget.edit .widget-setting[data-v-3a88c0c0]:hover{font-size:20px;margin-right:-10px;margin-top:6px;animation:rotates-3a88c0c0 1s linear infinite!important}.unione-widget.edit[data-v-3a88c0c0]:hover{background-color:#e6f7ff}.unione-widget.edit:hover>.widget-setting[data-v-3a88c0c0]{display:block;animation:rotates-3a88c0c0 2s linear infinite}@keyframes rotates-3a88c0c0{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}70%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.widget-setting-dialog[data-v-3a88c0c0]{height:75vh;overflow-y:auto}.form-mix[data-v-75055a2b] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-75055a2b] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-75055a2b] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.btn-setting-form[data-v-75055a2b]{min-height:400px}.btn-setting-form .param-btn[data-v-75055a2b]{margin:auto 10px}.btn-setting-form .edit-field[data-v-75055a2b]{width:100%;height:100%}.btn-setting-form .edit-field.empty[data-v-75055a2b]{position:absolute;top:0;left:0}.btn-setting-form .edit-field.empty[data-v-75055a2b] .ant-btn{padding:4px 7px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-input-number{width:calc(100% - 5px)}.btn-setting-form .edit-field[data-v-75055a2b] .ant-select{width:100%}.btn-setting-form .edit-field[data-v-75055a2b] .ant-btn{padding:4px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-checkbox{margin-top:8px}.btn-setting-form .edit-field .field-txt[data-v-75055a2b]{line-height:30px}.unione-btn[data-v-b868da76]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-b868da76]{width:100%}.unione-btn[data-v-b868da76] .widget-setting{position:absolute;z-index:1;transform:scale(.8);margin-top:-5px!important;margin-left:-5px}.unione-btn-drawer .ant-drawer-body[data-v-b868da76]{padding:5px!important;background-color:red}.dropdown-overlay[data-v-b868da76]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.dropdown-overlay.vertical[data-v-b868da76]{display:flex;flex-direction:column}.dropdown-overlay .item[data-v-b868da76]{padding:2px 6px}.unione-layout-section .head[data-v-e75e9a84]{padding:5px 15px}.unione-layout-section .head.right[data-v-e75e9a84]{text-align:right}.unione-layout-section .head.reactive[data-v-e75e9a84]{cursor:pointer}.unione-layout-section .head .title[data-v-e75e9a84]{font-size:17px;display:inline-block}.unione-layout-section .head .title .type[data-v-e75e9a84]{background-color:#1677ff;display:inline-block;width:12px;height:12px;margin-right:2px}.unione-layout-section .head .title .type.circle[data-v-e75e9a84]{border-radius:6px}.unione-layout-section .head .title .type.square[data-v-e75e9a84]{margin-right:2px}.unione-layout-section .head .title .type.line[data-v-e75e9a84]{width:5px;margin-right:2px}.unione-layout-section .head .opts[data-v-e75e9a84]{float:right}.unione-layout-section .head .reactive[data-v-e75e9a84]{float:right;margin-top:3px}.unione-form-setting .unione-form-btns[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-btns .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-btns .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-btns .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]:hover{color:red;text-decoration:line-through}.unione-form-setting .unione-form-btns[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting .unione-form-opts[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-opts .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-opts .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-opts .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-opts[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-thead tr th{font-weight:400}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-tbody tr td{padding:3px}.unione-form-setting .edit-field[data-v-c0f75bb9]{width:100%;height:100%}.unione-form-setting .edit-field.empty[data-v-c0f75bb9]{position:absolute;top:0;left:0}.unione-form-setting .edit-field.empty[data-v-c0f75bb9] .ant-btn{padding:4px 7px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-input-number{width:calc(100% - 5px)}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-select{width:100%}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-btn{padding:4px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-checkbox{margin-top:8px}.unione-form-setting .edit-field .field-txt[data-v-c0f75bb9]{line-height:30px}.form-mix[data-v-c0f75bb9] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c0f75bb9] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c0f75bb9] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-form-widget[data-v-9a034019]{padding:10px}.unione-form-widget[data-v-9a034019] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form.edit[data-v-9a034019]{padding:0 20px}.unione-form-widget .unione-form .unione-widget[data-v-9a034019]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-9a034019]{width:100%!important}.unione-form-widget .unione-form .unione-widget.2in_line[data-v-9a034019]{width:66.66%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-9a034019]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-9a034019]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-9a034019]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-9a034019]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-9a034019]{margin:auto 5px}.unione-form-item .ant-form-item[data-v-c633076a]{margin-bottom:6px}.unione-form-item .ant-form-item[data-v-c633076a] .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.unione-query-setting .unione-query-tools[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-tools .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-tools .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-tools .btn:hover .bool-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]:hover{color:red;text-decoration:line-through}.unione-query-setting .unione-query-tools[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting .unione-query-opts[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-opts .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-opts .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-opts .btn:hover .btn-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-opts[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-thead tr th{font-weight:400}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-tbody tr td{padding:3px}.unione-query-setting .edit-field[data-v-ce575063]{width:100%;height:100%}.unione-query-setting .edit-field.empty[data-v-ce575063]{position:absolute;top:0;left:0}.unione-query-setting .edit-field.empty[data-v-ce575063] .ant-btn{padding:4px 7px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-input-number{width:calc(100% - 5px)}.unione-query-setting .edit-field[data-v-ce575063] .ant-select{width:100%}.unione-query-setting .edit-field[data-v-ce575063] .ant-btn{padding:4px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-checkbox{margin-top:8px}.unione-query-setting .edit-field .field-txt[data-v-ce575063]{line-height:30px}.form-mix[data-v-ce575063] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ce575063] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-ce575063] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-query-form .query-field[data-v-05f95e36]{display:inline-block;margin-bottom:5px;min-width:250px;width:25%}.unione-query-form.edit .query-field[data-v-05f95e36]{width:calc(25% - 7px)}.unione-query-form .query-btn[data-v-05f95e36]{display:inline-block;white-space:nowrap}.unione-query-form .query-btn .btn[data-v-05f95e36]{margin:auto 5px}.unione-query-form .query-btn .btn.save-search[data-v-05f95e36]{float:right;position:absolute;right:10px}.btn-advanced-overlay[data-v-05f95e36]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;display:flex;flex-direction:column}.btn-advanced-overlay .item[data-v-05f95e36]{padding:3px 5px}.unione-table-setting .unione-table-tools[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-tools .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-tools .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-tools .btn:hover .bool-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]:hover{color:red;text-decoration:line-through}.unione-table-setting .unione-table-tools[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting .unione-table-opts[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-opts .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-opts .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-opts .btn:hover .btn-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-opts[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-thead tr th{font-weight:400}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-tbody tr td{padding:3px}.unione-table-setting .edit-field[data-v-c966c24c]{width:100%;height:100%}.unione-table-setting .edit-field.empty[data-v-c966c24c]{position:absolute;top:0;left:0}.unione-table-setting .edit-field.empty[data-v-c966c24c] .ant-btn{padding:4px 7px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-input-number{width:calc(100% - 5px)}.unione-table-setting .edit-field[data-v-c966c24c] .ant-select{width:100%}.unione-table-setting .edit-field[data-v-c966c24c] .ant-btn{padding:4px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-checkbox{margin-top:8px}.unione-table-setting .edit-field .field-txt[data-v-c966c24c]{line-height:30px}.form-mix[data-v-c966c24c] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c966c24c] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c966c24c] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-table-list[data-v-d11fa152]{margin-top:10px}.unione-table-list .unione-table-tools[data-v-d11fa152]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-d11fa152]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-d11fa152]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-d11fa152]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-d11fa152]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-d11fa152] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-d11fa152]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-d11fa152] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt-more.small[data-v-d11fa152]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-d11fa152] .widget-setting{display:block}.opt-more-overlay[data-v-d11fa152]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.opt-more-overlay.vertical[data-v-d11fa152]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-d11fa152]{padding:2px 6px}.data-field-manage .btn[data-v-f6307a23]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-f6307a23]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-f6307a23]{margin-right:5px}.data-field-manage .edit-field[data-v-f6307a23]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-f6307a23]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-f6307a23] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-f6307a23] .ant-select{width:100%}.data-field-manage[data-v-f6307a23] .ant-table-thead tr th,.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-ef9b9849]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-ef9b9849]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-ef9b9849] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-ef9b9849] .ant-select{width:100%}.data-field-setting .edit-field[data-v-ef9b9849] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-ef9b9849]{line-height:30px}.form-mix[data-v-ef9b9849] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ef9b9849] .ant-checkbox-wrapper{color:#999}.data-define[data-v-6be2cc50]{height:100%;overflow-y:auto}.data-define.center[data-v-6be2cc50]{display:flex}.data-define .data-model-list[data-v-6be2cc50]{width:180px;height:100%;border-right:1px solid #d9d9d9;display:flex;align-items:flex-start;flex-direction:column;float:left}.data-define .data-model-list .title[data-v-6be2cc50]{height:35px;width:100%;cursor:pointer;line-height:35px;padding:0 5px}.data-define .data-model-list .title.slt[data-v-6be2cc50]{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-list .title.btn-add[data-v-6be2cc50]{text-align:center;font-size:20px;margin-top:5px;margin-left:5px;border:1px solid #d9d9d9;width:calc(100% - 10px);line-height:30px}.data-define .data-model-list .title[data-v-6be2cc50]:hover{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-form[data-v-6be2cc50]{display:inline-block;width:calc(100% - 180px);padding:0 10px}.data-define .data-model-form.center[data-v-6be2cc50]{margin:0 auto}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-form-item{margin-bottom:5px!important}.unione-page-setting .form-mix .checkbox-tips[data-v-2420ce7a] .ant-checkbox-wrapper{color:#999}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-page-view[data-v-f792d0b4]{padding:10px;height:100%;overflow-y:auto}.load-table-form[data-v-165bc175] .query-field{width:300px}.data-field-manage[data-v-4020e3f0]{min-height:200px}.data-field-manage .btn[data-v-4020e3f0]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-4020e3f0]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-4020e3f0]{margin-right:5px}.data-field-manage .edit-field[data-v-4020e3f0]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-4020e3f0]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-4020e3f0] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-4020e3f0] .ant-select{width:100%}.data-field-manage[data-v-4020e3f0] .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8]{min-height:200px}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-d5938ab8]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-d5938ab8]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-d5938ab8] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-d5938ab8] .ant-select{width:100%}.data-field-setting .edit-field[data-v-d5938ab8] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-d5938ab8]{line-height:30px}.form-mix[data-v-d5938ab8] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-d5938ab8] .ant-checkbox-wrapper{color:#999}.field-setting-form[data-v-d5938ab8]{padding-top:10px}.field-setting-form[data-v-d5938ab8] .ant-input-number{width:100%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item{width:50%;display:inline-block}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-label{width:50%;max-width:50%;flex:0 0 50%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-control{width:50%;max-width:50%}.data-field-fkey[data-v-84143692]{min-height:200px}.data-field-fkey[data-v-84143692] .ant-table-cell{font-weight:unset}.data-field-fkey .edit-field[data-v-84143692]{width:100%;height:100%}.data-field-fkey .edit-field.empty[data-v-84143692]{position:absolute;top:0;left:0}.data-field-fkey .edit-field[data-v-84143692] .ant-input-number{width:calc(100% - 5px)}.data-field-fkey .edit-field[data-v-84143692] .ant-select{width:100%}.data-filter[data-v-a600b93f]{height:100%;min-height:200px}.data-filter .filter-box[data-v-a600b93f]{width:calc(25% - 10px);margin:5px;height:100px;display:inline-flex}.data-filter .filter-box[data-v-a600b93f] .ant-card-body{width:100%}.data-filter .filter-box .action[data-v-a600b93f]{margin-top:10px;text-align:center}.data-filter .filter-box .action .ant-btn[data-v-a600b93f]{width:30%;margin:auto 10px}.data-filter .filter-box.btn-add[data-v-a600b93f]{line-height:80px;cursor:pointer}.data-filter .filter-box.btn-add[data-v-a600b93f] .ant-card-body{text-align:center}.data-filter .filter-box.btn-add .btn[data-v-a600b93f]{font-size:30px;color:#00000080}.data-filter .filter-box[data-v-a600b93f]:hover{background-color:#e6f7ff}.data-filter[data-v-a600b93f] .ant-card-bordered{border:1px solid #d9d9d9}.data-filter .btn-tmpl[data-v-a600b93f]{position:absolute;right:-7px;cursor:pointer}.form-mix[data-v-a600b93f] .ant-form-item{margin-bottom:5px!important}.form-mix[data-v-a600b93f] .ant-form-item .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.form-mix .checkbox-tips[data-v-a600b93f] .ant-checkbox-wrapper{color:#999}.data-define-edit[data-v-3eeab6e6]{overflow-y:auto;height:100%}.data-define-edit[data-v-3eeab6e6] .page-setting-section .title{font-size:14px}.data-define-edit[data-v-3eeab6e6] .page-setting-section .reactive{font-size:12px}.data-define-edit[data-v-3eeab6e6] .page-setting-section.open .type{margin-top:6px!important}.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .title,.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .reactive{color:#00bd7e}.data-define-edit .actions[data-v-3eeab6e6]{width:100%;bottom:10px;text-align:center}.data-define-edit .actions .ant-btn[data-v-3eeab6e6]{margin:15px 10px}
|
|
1
|
+
:root{--vt-c-white: #ffffff;--vt-c-white-soft: #f8f8f8;--vt-c-white-mute: #f2f2f2;--vt-c-black: #181818;--vt-c-black-soft: #222222;--vt-c-black-mute: #282828;--vt-c-indigo: #2c3e50;--vt-c-divider-light-1: rgba(60, 60, 60, .29);--vt-c-divider-light-2: rgba(60, 60, 60, .12);--vt-c-divider-dark-1: rgba(84, 84, 84, .65);--vt-c-divider-dark-2: rgba(84, 84, 84, .48);--vt-c-text-light-1: var(--vt-c-indigo);--vt-c-text-light-2: rgba(60, 60, 60, .66);--vt-c-text-dark-1: var(--vt-c-white);--vt-c-text-dark-2: rgba(235, 235, 235, .64)}:root{--color-background: var(--vt-c-white);--color-background-soft: var(--vt-c-white-soft);--color-background-mute: var(--vt-c-white-mute);--color-border: var(--vt-c-divider-light-2);--color-border-hover: var(--vt-c-divider-light-1);--color-heading: var(--vt-c-text-light-1);--color-text: var(--vt-c-text-light-1);--section-gap: 160px}@media (prefers-color-scheme: dark){:root{--color-background: var(--vt-c-black);--color-background-soft: var(--vt-c-black-soft);--color-background-mute: var(--vt-c-black-mute);--color-border: var(--vt-c-divider-dark-2);--color-border-hover: var(--vt-c-divider-dark-1);--color-heading: var(--vt-c-text-dark-1);--color-text: var(--vt-c-text-dark-2)}}*,*:before,*:after{box-sizing:border-box;margin:0;font-weight:400}body{min-height:100vh;color:var(--color-text);background:var(--color-background);transition:color .5s,background-color .5s;line-height:1.6;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-size:15px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}::-webkit-scrollbar{width:7px;height:7px}::-webkit-scrollbar-track{background-color:#fff;border-radius:3px}::-webkit-scrollbar-thumb{background-color:#1677ff;border-radius:6px;border:2px solid #f1f1f1;background-color:transparent}::-webkit-scrollbar-thumb:hover{background-color:#1677ff}#app{width:100vw;height:100vh;font-weight:400}.ant-switch{background-color:#1677ff}.unione-page{padding:10px 5px}.unione-page.edit .page-setting{cursor:pointer;position:absolute;right:12px;margin-top:25px;display:none}.unione-page.edit .page-setting:hover{font-size:20px;margin-right:-2px;margin-top:23px}.unione-page.edit .btn-save{cursor:pointer;position:absolute;right:12px;margin-top:55px;display:none}.unione-page.edit .btn-save:hover{font-size:20px;margin-right:-2px;margin-top:52px}.unione-page.edit:hover .page-setting{display:block;animation:rotates 2s linear infinite}.unione-page.edit:hover .btn-save{display:block}.unione-page .btn-edit{cursor:pointer;position:absolute;right:12px;margin-top:-5px}.unione-page .btn-edit:hover{font-size:20px;margin-right:-2px;margin-top:-7px}@keyframes rotates{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(-90deg)}50%{-webkit-transform:rotate(-180deg)}70%{-webkit-transform:rotate(-270deg)}to{-webkit-transform:rotate(-360deg)}}.page-setting-dialog{height:75vh;overflow-y:auto}.unione-page-form{padding:10px;height:100%;overflow-y:auto}.unione-page-form .form-btns{width:100%;margin:10px;text-align:center}.unione-page-form .form-btns .btn{margin:auto 5px}.unione-page-tree{display:flex;height:100%;overflow-y:auto}.unione-page-tree .tree-warp{width:250px;padding-right:10px;border-right:1px solid #d9d9d9}.unione-page-tree .tree-warp .input-search{margin:0 0 5px 5px}.unione-page-tree .tree-warp .unione-btn-add{margin-bottom:5px}.unione-page-tree .tree-warp .ant-tree-icon__customize+.ant-tree-title{width:calc(100% - 25px);display:inline-block}.unione-page-tree .tree-warp .ant-tree-icon__customize:empty+.ant-tree-title{width:100%}.unione-page-tree .tree-warp .node-label{width:100%}.unione-page-tree .tree-warp .node-opts{float:right}.unione-page-tree .tree-warp .node-opts .unione-btn{margin:0}.unione-page-tree .form-warp{width:calc(100% - 250px)}.unione-page-tree .form-warp .form-btns{width:100%;margin:10px;text-align:center}.unione-page-tree .form-warp .form-btns .btn{margin:auto 5px}.unione-page-list{padding:10px;height:100%;overflow-y:auto}.ant-table .ant-table-content{border-inline-start:1px solid #cfcfcf;border-top-left-radius:8px;border-top-right-radius:8px;overflow:hidden}.ant-table .ant-table-content table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-thead .ant-table-cell .ant-table-column-title{font-weight:600}.ant-table .ant-table-content .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-content .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.ant-table .ant-table-container .ant-table-thead table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-thead .ant-table-cell{background:#f0f0f0;border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody table{border-top:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-cell{border-inline-end:1px solid #cfcfcf!important;border-bottom:1px solid #cfcfcf!important}.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover,.ant-table .ant-table-container .ant-table-tbody .ant-table-row:hover .ant-table-cell{background-color:#e6f7ff;color:#2795f9}.unione-iframe{border:none;width:100%;height:100%}.ck .ck-powered-by{display:none!important}.unione-widget.edit .widget-setting[data-v-17b517f5]{cursor:pointer;float:right;margin-right:-6px;margin-top:6px;display:none}.unione-widget.edit .widget-setting[data-v-17b517f5]:hover{font-size:20px;margin-right:-10px;margin-top:6px;animation:rotates-17b517f5 1s linear infinite!important}.unione-widget.edit[data-v-17b517f5]:hover{background-color:#e6f7ff}.unione-widget.edit:hover>.widget-setting[data-v-17b517f5]{display:block;animation:rotates-17b517f5 2s linear infinite}@keyframes rotates-17b517f5{0%{-webkit-transform:rotate(0deg)}30%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}70%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.widget-setting-dialog[data-v-17b517f5]{height:75vh;overflow-y:auto}.form-mix[data-v-75055a2b] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-75055a2b] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-75055a2b] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.btn-setting-form[data-v-75055a2b]{min-height:400px}.btn-setting-form .param-btn[data-v-75055a2b]{margin:auto 10px}.btn-setting-form .edit-field[data-v-75055a2b]{width:100%;height:100%}.btn-setting-form .edit-field.empty[data-v-75055a2b]{position:absolute;top:0;left:0}.btn-setting-form .edit-field.empty[data-v-75055a2b] .ant-btn{padding:4px 7px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-input-number{width:calc(100% - 5px)}.btn-setting-form .edit-field[data-v-75055a2b] .ant-select{width:100%}.btn-setting-form .edit-field[data-v-75055a2b] .ant-btn{padding:4px;float:right}.btn-setting-form .edit-field[data-v-75055a2b] .ant-checkbox{margin-top:8px}.btn-setting-form .edit-field .field-txt[data-v-75055a2b]{line-height:30px}.unione-btn[data-v-b868da76]{display:inline-block;margin:auto 5px}.unione-btn.unione-btn-block[data-v-b868da76]{width:100%}.unione-btn[data-v-b868da76] .widget-setting{position:absolute;z-index:1;transform:scale(.8);margin-top:-5px!important;margin-left:-5px}.unione-btn-drawer .ant-drawer-body[data-v-b868da76]{padding:5px!important;background-color:red}.dropdown-overlay[data-v-b868da76]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.dropdown-overlay.vertical[data-v-b868da76]{display:flex;flex-direction:column}.dropdown-overlay .item[data-v-b868da76]{padding:2px 6px}.unione-layout-section .head[data-v-e75e9a84]{padding:5px 15px}.unione-layout-section .head.right[data-v-e75e9a84]{text-align:right}.unione-layout-section .head.reactive[data-v-e75e9a84]{cursor:pointer}.unione-layout-section .head .title[data-v-e75e9a84]{font-size:17px;display:inline-block}.unione-layout-section .head .title .type[data-v-e75e9a84]{background-color:#1677ff;display:inline-block;width:12px;height:12px;margin-right:2px}.unione-layout-section .head .title .type.circle[data-v-e75e9a84]{border-radius:6px}.unione-layout-section .head .title .type.square[data-v-e75e9a84]{margin-right:2px}.unione-layout-section .head .title .type.line[data-v-e75e9a84]{width:5px;margin-right:2px}.unione-layout-section .head .opts[data-v-e75e9a84]{float:right}.unione-layout-section .head .reactive[data-v-e75e9a84]{float:right;margin-top:3px}.unione-form-setting .unione-form-btns[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-btns .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-btns .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-btns .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-btns .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-btns .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-form-setting .unione-form-btns .selected-info[data-v-c0f75bb9]:hover{color:red;text-decoration:line-through}.unione-form-setting .unione-form-btns[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting .unione-form-opts[data-v-c0f75bb9]{padding-bottom:10px}.unione-form-setting .unione-form-opts .btn[data-v-c0f75bb9]{margin:auto 5px}.unione-form-setting .unione-form-opts .btn.right[data-v-c0f75bb9]{float:right}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-form-setting .unione-form-opts .btn .btn-del[data-v-c0f75bb9]:hover{background-color:#f0f0f0}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9]{color:#999;border-color:#999}.unione-form-setting .unione-form-opts .btn.deleted[data-v-c0f75bb9] span{text-decoration:line-through}.unione-form-setting .unione-form-opts .btn:hover .btn-del[data-v-c0f75bb9]{display:block}.unione-form-setting .unione-form-opts[data-v-c0f75bb9] .ant-btn-sm{height:27px}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-thead tr th{font-weight:400}.unione-form-setting[data-v-c0f75bb9] .ant-table .ant-table-tbody tr td{padding:3px}.unione-form-setting .edit-field[data-v-c0f75bb9]{width:100%;height:100%}.unione-form-setting .edit-field.empty[data-v-c0f75bb9]{position:absolute;top:0;left:0}.unione-form-setting .edit-field.empty[data-v-c0f75bb9] .ant-btn{padding:4px 7px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-input-number{width:calc(100% - 5px)}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-select{width:100%}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-btn{padding:4px;float:right}.unione-form-setting .edit-field[data-v-c0f75bb9] .ant-checkbox{margin-top:8px}.unione-form-setting .edit-field .field-txt[data-v-c0f75bb9]{line-height:30px}.form-mix[data-v-c0f75bb9] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c0f75bb9] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c0f75bb9] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-form-widget[data-v-cecc4588]{padding:10px}.unione-form-widget[data-v-cecc4588] .widget-setting{margin-top:-5px!important}.unione-form-widget .unione-form.edit[data-v-cecc4588]{padding:0 20px}.unione-form-widget .unione-form .unione-widget[data-v-cecc4588]{display:block}.unione-form-widget .unione-form .unione-widget.all-line[data-v-cecc4588]{width:100%!important}.unione-form-widget .unione-form .unione-widget.2in_line[data-v-cecc4588]{width:66.66%!important}.unione-form-widget .unione-form.form-layout-col-1 .unione-widget[data-v-cecc4588]{width:100%}.unione-form-widget .unione-form.form-layout-col-2 .unione-widget[data-v-cecc4588]{width:50%;display:inline-block}.unione-form-widget .unione-form.form-layout-col-3 .unione-widget[data-v-cecc4588]{width:33.33%;display:inline-block}.unione-form-widget .form-btns[data-v-cecc4588]{width:100%;margin:10px;text-align:center}.unione-form-widget .form-btns .btn[data-v-cecc4588]{margin:auto 5px}.unione-form-item .ant-form-item[data-v-6d78617a]{margin-bottom:6px}.unione-form-item .ant-form-item[data-v-6d78617a] .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.unione-query-setting .unione-query-tools[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-tools .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-tools .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-tools .btn .bool-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-tools .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-tools .btn:hover .bool-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-query-setting .unione-query-tools .selected-info[data-v-ce575063]:hover{color:red;text-decoration:line-through}.unione-query-setting .unione-query-tools[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting .unione-query-opts[data-v-ce575063]{padding-bottom:10px}.unione-query-setting .unione-query-opts .btn[data-v-ce575063]{margin:auto 5px}.unione-query-setting .unione-query-opts .btn.right[data-v-ce575063]{float:right}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-query-setting .unione-query-opts .btn .btn-del[data-v-ce575063]:hover{background-color:#f0f0f0}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063]{color:#999;border-color:#999}.unione-query-setting .unione-query-opts .btn.deleted[data-v-ce575063] span{text-decoration:line-through}.unione-query-setting .unione-query-opts .btn:hover .btn-del[data-v-ce575063]{display:block}.unione-query-setting .unione-query-opts[data-v-ce575063] .ant-btn-sm{height:27px}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-thead tr th{font-weight:400}.unione-query-setting[data-v-ce575063] .ant-table .ant-table-tbody tr td{padding:3px}.unione-query-setting .edit-field[data-v-ce575063]{width:100%;height:100%}.unione-query-setting .edit-field.empty[data-v-ce575063]{position:absolute;top:0;left:0}.unione-query-setting .edit-field.empty[data-v-ce575063] .ant-btn{padding:4px 7px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-input-number{width:calc(100% - 5px)}.unione-query-setting .edit-field[data-v-ce575063] .ant-select{width:100%}.unione-query-setting .edit-field[data-v-ce575063] .ant-btn{padding:4px;float:right}.unione-query-setting .edit-field[data-v-ce575063] .ant-checkbox{margin-top:8px}.unione-query-setting .edit-field .field-txt[data-v-ce575063]{line-height:30px}.form-mix[data-v-ce575063] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ce575063] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-ce575063] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-query-form .query-field[data-v-05f95e36]{display:inline-block;margin-bottom:5px;min-width:250px;width:25%}.unione-query-form.edit .query-field[data-v-05f95e36]{width:calc(25% - 7px)}.unione-query-form .query-btn[data-v-05f95e36]{display:inline-block;white-space:nowrap}.unione-query-form .query-btn .btn[data-v-05f95e36]{margin:auto 5px}.unione-query-form .query-btn .btn.save-search[data-v-05f95e36]{float:right;position:absolute;right:10px}.btn-advanced-overlay[data-v-05f95e36]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;display:flex;flex-direction:column}.btn-advanced-overlay .item[data-v-05f95e36]{padding:3px 5px}.unione-table-setting .unione-table-tools[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-tools .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-tools .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-tools .btn .bool-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-tools .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-tools .btn:hover .bool-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-setting .unione-table-tools .selected-info[data-v-c966c24c]:hover{color:red;text-decoration:line-through}.unione-table-setting .unione-table-tools[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting .unione-table-opts[data-v-c966c24c]{padding-bottom:10px}.unione-table-setting .unione-table-opts .btn[data-v-c966c24c]{margin:auto 5px}.unione-table-setting .unione-table-opts .btn.right[data-v-c966c24c]{float:right}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]{display:none;position:absolute;margin-top:-25px;right:0;color:#000}.unione-table-setting .unione-table-opts .btn .btn-del[data-v-c966c24c]:hover{background-color:#f0f0f0}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c]{color:#999;border-color:#999}.unione-table-setting .unione-table-opts .btn.deleted[data-v-c966c24c] span{text-decoration:line-through}.unione-table-setting .unione-table-opts .btn:hover .btn-del[data-v-c966c24c]{display:block}.unione-table-setting .unione-table-opts[data-v-c966c24c] .ant-btn-sm{height:27px}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-thead tr th{font-weight:400}.unione-table-setting[data-v-c966c24c] .ant-table .ant-table-tbody tr td{padding:3px}.unione-table-setting .edit-field[data-v-c966c24c]{width:100%;height:100%}.unione-table-setting .edit-field.empty[data-v-c966c24c]{position:absolute;top:0;left:0}.unione-table-setting .edit-field.empty[data-v-c966c24c] .ant-btn{padding:4px 7px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-input-number{width:calc(100% - 5px)}.unione-table-setting .edit-field[data-v-c966c24c] .ant-select{width:100%}.unione-table-setting .edit-field[data-v-c966c24c] .ant-btn{padding:4px;float:right}.unione-table-setting .edit-field[data-v-c966c24c] .ant-checkbox{margin-top:8px}.unione-table-setting .edit-field .field-txt[data-v-c966c24c]{line-height:30px}.form-mix[data-v-c966c24c] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-c966c24c] .ant-checkbox-wrapper{color:#999}.form-mix[data-v-c966c24c] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-table-list[data-v-d11fa152]{margin-top:10px}.unione-table-list .unione-table-tools[data-v-d11fa152]{padding-bottom:10px}.unione-table-list .unione-table-tools .btn[data-v-d11fa152]{margin:auto 5px}.unione-table-list .unione-table-tools .btn.right[data-v-d11fa152]{float:right}.unione-table-list .unione-table-tools .selected-info[data-v-d11fa152]{margin:auto 5px;color:#2795f9;cursor:pointer}.unione-table-list .unione-table-tools .selected-info[data-v-d11fa152]:hover{color:red;text-decoration:line-through}.unione-table-list .unione-table-tools[data-v-d11fa152] .ant-btn-sm{height:27px}.unione-table-list .unione-table-opts .opt[data-v-d11fa152]{margin:auto 2px}.unione-table-list .unione-table-opts .opt[data-v-d11fa152] .widget-setting{display:block}.unione-table-list .unione-table-opts .opt-more.small[data-v-d11fa152]{padding:0 5px 2px;height:24px}.unione-table-list .unione-table-opts .item[data-v-d11fa152] .widget-setting{display:block}.opt-more-overlay[data-v-d11fa152]{padding:3px 5px;list-style-type:none;background-color:#fff;background-clip:padding-box;border:1px solid #e6f7ff;border-radius:8px;outline:none;box-shadow:0 6px 16px #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d}.opt-more-overlay.vertical[data-v-d11fa152]{display:flex;flex-direction:column}.opt-more-overlay .item[data-v-d11fa152]{padding:2px 6px}.dialog-mask{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000;z-index:99}.dialog-container{position:fixed;inset:0;overflow:auto;z-index:999;margin:0;display:flex;justify-content:center;align-items:center}.dialog{position:absolute;padding:0 30px 30px;background:#fff;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;border-radius:2px}.dialog-title{position:relative;border-bottom:1px solid #e2e6ed;margin-bottom:30px;height:60px;display:flex;align-items:center;justify-content:space-between}.dialog-title i{width:16px;height:16px;cursor:pointer;display:inline-block;background:url(../../assets/images/close.svg)}.dialog-option__item{margin-bottom:18px;display:flex;align-items:center;justify-content:space-between}.dialog-option__item span{margin-right:12px;font-size:14px;color:#3d4757;position:relative}.dialog-option__item input,.dialog-option__item textarea,.dialog-option__item select{width:276px;height:30px;border-radius:2px;border:1px solid #d3d3d3;min-height:30px;padding:5px;box-sizing:border-box;outline:none;appearance:none;user-select:none;font-family:inherit}.dialog-option__item input:focus,.dialog-option__item textarea:focus{border-color:#4991f2}.dialog-option__item--require:before{content:"*";color:#f56c6c;margin-right:4px;position:absolute;left:-8px}.dialog-menu{display:flex;align-items:center;justify-content:flex-end}.dialog-menu button{position:relative;display:inline-block;border:1px solid #e2e6ed;border-radius:2px;background:#fff;line-height:22px;padding:0 16px;white-space:nowrap;cursor:pointer}.dialog-menu button:hover{background:#1937580a}.dialog-menu__cancel{margin-right:16px}.dialog-menu button[type=submit]{color:#fff;background:#4991f2;border-color:#4991f2}.dialog-menu button[type=submit]:hover{background:#5b9cf3;border-color:#5b9cf3}.unione-rich-toolbar[data-v-b97ae666]{width:100%;min-height:35px;top:0;z-index:9;display:flex;align-items:center;justify-content:left;background:#f2f4f7;box-shadow:0 2px 4px 0 transparent;flex-wrap:wrap}.unione-rich-toolbar ul[data-v-b97ae666]{list-style:none;padding:0}.unione-rich-toolbar .menu-divider[data-v-b97ae666]{width:1px;height:16px;margin:0 8px;display:inline-block;background-color:#cfd2d8}.unione-rich-toolbar .menu-item[data-v-b97ae666]{height:24px;min-width:24px;position:relative;cursor:pointer;display:flex;align-items:center;justify-content:center;margin:0 2px}.unione-rich-toolbar .menu-item[data-v-b97ae666]:hover{background:#1937580a}.unione-rich-toolbar .menu-item.active[data-v-b97ae666]{background:#19375814}.unione-rich-toolbar .menu-item i[data-v-b97ae666]{width:16px;height:16px;display:inline-block;background-repeat:no-repeat;background-size:100% 100%}.unione-rich-toolbar .menu-item>span[data-v-b97ae666]{width:16px;height:3px;display:inline-block;border:1px solid #e2e6ed}.unione-rich-toolbar .menu-item .select[data-v-b97ae666]{border:none;font-size:12px;line-height:24px;user-select:none}.unione-rich-toolbar .menu-item .select[data-v-b97ae666]:after{position:absolute;content:"";top:11px;width:0;height:0;right:2px;border-color:#767c85 transparent transparent;border-style:solid solid none;border-width:3px 3px 0}.unione-rich-toolbar .menu-item .options[data-v-b97ae666]{position:fixed;padding:10px;background:#fff;font-size:14px;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;border-radius:2px;display:none;z-index:1}.unione-rich-toolbar .menu-item .options.visible[data-v-b97ae666]{display:block}.unione-rich-toolbar .menu-item .options li[data-v-b97ae666]{margin:5px 0;user-select:none;transition:all .3s}.unione-rich-toolbar .menu-item .options li[data-v-b97ae666]:hover{background-color:#ebecef}.unione-rich-toolbar .menu-item .options li.active[data-v-b97ae666]{background-color:#e2e6ed}.unione-rich-toolbar .menu-item .menu-item__font[data-v-b97ae666]{width:65px;position:relative}.unione-rich-toolbar .menu-item .menu-item__size[data-v-b97ae666]{width:50px;text-align:center;position:relative}.unione-rich-toolbar .menu-item__font .select[data-v-b97ae666],.unione-rich-toolbar .menu-item__size .select[data-v-b97ae666]{width:100%;height:100%}.unione-rich-toolbar .menu-item__undo.no-allow[data-v-b97ae666],.unione-rich-toolbar .menu-item__redo.no-allow[data-v-b97ae666],.unione-rich-toolbar .menu-item>div.disable[data-v-b97ae666]{color:#c0c4cc;cursor:not-allowed;opacity:.4;pointer-events:none}.unione-rich-toolbar .menu-item__underline[data-v-b97ae666]{width:30px;position:relative}.unione-rich-toolbar .menu-item__underline>i[data-v-b97ae666]{flex-shrink:0}.unione-rich-toolbar .menu-item__underline .select[data-v-b97ae666]{width:100%;height:100%}.unione-rich-toolbar .menu-item__underline .options[data-v-b97ae666]{width:128px}.unione-rich-toolbar .menu-item__underline li[data-v-b97ae666]{padding:1px 5px}.unione-rich-toolbar .menu-item__underline li i[data-v-b97ae666]{pointer-events:none;width:100%}.unione-rich-toolbar .menu-item__color[data-v-b97ae666],.unione-rich-toolbar .menu-item__highlight[data-v-b97ae666]{display:flex;flex-direction:column}.unione-rich-toolbar .menu-item__color .input-color[data-v-b97ae666],.unione-rich-toolbar .menu-item__highlight .input-highlight[data-v-b97ae666]{width:1px;height:1px;visibility:hidden;outline:none;appearance:none}.unione-rich-toolbar .menu-item__color span[data-v-b97ae666]{background-color:#000}.unione-rich-toolbar .menu-item__highlight span[data-v-b97ae666]{background-color:#ff0}.unione-rich-toolbar .menu-item .menu-item__title[data-v-b97ae666]{width:60px;position:relative}.unione-rich-toolbar .menu-item__title .select[data-v-b97ae666]{width:40px;height:100%}.unione-rich-toolbar .menu-item__title i[data-v-b97ae666]{transform:translate(-5px)}.unione-rich-toolbar .menu-item__row-margin[data-v-b97ae666],.unione-rich-toolbar .menu-item__list[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__list .options>ul>li[data-v-b97ae666] *{pointer-events:none;padding:0}.unione-rich-toolbar .menu-item__list .options>ul>li li[data-v-b97ae666]{margin-left:18px}.unione-rich-toolbar .menu-item__list .options>ul>li[data-list-style=checkbox] li[data-v-b97ae666]::marker{font-size:11px}.unione-rich-toolbar .menu-item__image input[data-v-b97ae666]{display:none}.unione-rich-toolbar .menu-item__table[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__table__collapse[data-v-b97ae666]{width:270px;height:310px;background:#fff;box-shadow:0 2px 12px #38383833;border:1px solid #e2e6ed;box-sizing:border-box;border-radius:2px;position:fixed;display:none;z-index:99;top:25px;left:0;padding:14px 27px;cursor:auto}.unione-rich-toolbar .menu-item__table__collapse .table-close[data-v-b97ae666]{position:absolute;right:10px;top:5px;cursor:pointer}.unione-rich-toolbar .menu-item__table__collapse .table-close[data-v-b97ae666]:hover{color:#7d7e80}.unione-rich-toolbar .menu-item__table__collapse[data-v-b97ae666]:hover{background:#fff}.unione-rich-toolbar .menu-item__table__collapse .table-title[data-v-b97ae666]{display:flex;justify-content:flex-start;padding-bottom:5px;border-bottom:1px solid #e2e6ed}.unione-rich-toolbar .table-title span[data-v-b97ae666]{font-size:12px;color:#3d4757;display:inline;margin:0}.unione-rich-toolbar .table-panel[data-v-b97ae666]{cursor:pointer}.unione-rich-toolbar .table-panel .table-row[data-v-b97ae666]{display:flex;flex-wrap:nowrap;margin-top:10px;pointer-events:none}.unione-rich-toolbar .table-panel .table-cel[data-v-b97ae666]{width:16px;height:16px;box-sizing:border-box;border:1px solid #e2e6ed;background:#fff;position:relative;margin-right:6px;pointer-events:none}.unione-rich-toolbar .table-panel .table-cel.active[data-v-b97ae666]{border:1px solid rgba(73,145,242,.2);background:#4991f226}.unione-rich-toolbar .table-panel .table-row .table-cel[data-v-b97ae666]:last-child{margin-right:0}.unione-rich-toolbar .menu-item__separator[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__separator .options[data-v-b97ae666]{width:128px}.unione-rich-toolbar .menu-item__separator li[data-v-b97ae666]{padding:1px 5px}.unione-rich-toolbar .menu-item__separator li i[data-v-b97ae666]{width:100%;pointer-events:none}.unione-rich-toolbar .menu-item__watermark[data-v-b97ae666],.unione-rich-toolbar .menu-item__control[data-v-b97ae666],.unione-rich-toolbar .menu-item__date[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__date .options[data-v-b97ae666]{width:160px}.unione-rich-toolbar .menu-item .menu-item__control .options[data-v-b97ae666]{width:55px}.unione-rich-toolbar .menu-item__search[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__search__collapse[data-v-b97ae666]{width:260px;height:72px;box-sizing:border-box;position:absolute;display:none;z-index:99;top:25px;left:0;background:#fff;box-shadow:0 5px 5px #e3dfdf}.unione-rich-toolbar .menu-item__search__collapse[data-v-b97ae666]:hover{background:#fff}.unione-rich-toolbar .menu-item__search__collapse>div[data-v-b97ae666]{width:250px;height:36px;padding:0 5px;line-height:36px;display:flex;align-items:center;justify-content:space-between;border-radius:4px}.unione-rich-toolbar .menu-item__search__collapse>div input[data-v-b97ae666]{width:205px;height:27px;appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #ebebeb;box-sizing:border-box;color:#606266;display:inline-block;line-height:27px;outline:none;padding:0 5px}.unione-rich-toolbar .menu-item__search__collapse>div span[data-v-b97ae666]{height:100%;color:#dcdfe6;font-size:25px;display:inline-block;border:0;padding:0 10px}.unione-rich-toolbar .menu-item__search__collapse__replace button[data-v-b97ae666]{display:inline-block;border:1px solid #e2e6ed;border-radius:2px;background:#fff;line-height:22px;padding:0 6px;white-space:nowrap;margin-left:4px;cursor:pointer;font-size:12px}.unione-rich-toolbar .menu-item__search__collapse__replace button[data-v-b97ae666]:hover{background:#1937580a}.unione-rich-toolbar .menu-item__search__collapse__search[data-v-b97ae666]{position:relative}.unione-rich-toolbar .menu-item__search__collapse__search label[data-v-b97ae666]{right:110px;font-size:12px;color:#3d4757;position:absolute}.unione-rich-toolbar .menu-item__search__collapse__search>input[data-v-b97ae666]{padding:5px 90px 5px 5px!important}.unione-rich-toolbar .menu-item__search__collapse__search>div[data-v-b97ae666]{width:28px;height:27px;display:flex;justify-content:center;align-items:center;position:absolute;border-left:1px solid #e2e6ed;transition:all .5s}.unione-rich-toolbar .menu-item__search__collapse__search>div[data-v-b97ae666]:hover{background-color:#1937580a}.unione-rich-toolbar .menu-item__search__collapse__search i[data-v-b97ae666]{width:6px;height:8px;transform:translateY(1px)}.unione-rich-toolbar .menu-item__search__collapse__search .arrow-left[data-v-b97ae666]{right:76px}.unione-rich-toolbar .menu-item__search__collapse__search .arrow-right[data-v-b97ae666]{right:48px}.unione-rich-text[data-v-b4ce35d9]{height:100%;border:1px solid #d9d9d9;border-radius:7px}.unione-rich-text .canvas-editor[data-v-b4ce35d9]{min-height:200px}.unione-rich-text[data-v-b4ce35d9] .canvas-editor>div{width:100%!important}.unione-rich-text[data-v-b4ce35d9] .canvas-editor>div>div>canvas{width:100%!important}.data-field-manage .btn[data-v-f6307a23]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-f6307a23]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-f6307a23]{margin-right:5px}.data-field-manage .edit-field[data-v-f6307a23]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-f6307a23]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-f6307a23] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-f6307a23] .ant-select{width:100%}.data-field-manage[data-v-f6307a23] .ant-table-thead tr th,.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-ef9b9849] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-ef9b9849]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-ef9b9849]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-ef9b9849] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-ef9b9849] .ant-select{width:100%}.data-field-setting .edit-field[data-v-ef9b9849] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-ef9b9849] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-ef9b9849]{line-height:30px}.form-mix[data-v-ef9b9849] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-ef9b9849] .ant-checkbox-wrapper{color:#999}.data-define[data-v-6be2cc50]{height:100%;overflow-y:auto}.data-define.center[data-v-6be2cc50]{display:flex}.data-define .data-model-list[data-v-6be2cc50]{width:180px;height:100%;border-right:1px solid #d9d9d9;display:flex;align-items:flex-start;flex-direction:column;float:left}.data-define .data-model-list .title[data-v-6be2cc50]{height:35px;width:100%;cursor:pointer;line-height:35px;padding:0 5px}.data-define .data-model-list .title.slt[data-v-6be2cc50]{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-list .title.btn-add[data-v-6be2cc50]{text-align:center;font-size:20px;margin-top:5px;margin-left:5px;border:1px solid #d9d9d9;width:calc(100% - 10px);line-height:30px}.data-define .data-model-list .title[data-v-6be2cc50]:hover{background-color:#e6f7ff;color:#2795f9}.data-define .data-model-form[data-v-6be2cc50]{display:inline-block;width:calc(100% - 180px);padding:0 10px}.data-define .data-model-form.center[data-v-6be2cc50]{margin:0 auto}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-form-item{margin-bottom:5px!important}.unione-page-setting .form-mix .checkbox-tips[data-v-2420ce7a] .ant-checkbox-wrapper{color:#999}.unione-page-setting .form-mix[data-v-2420ce7a] .ant-tabs-tabpane{max-height:calc(60vh - 60px);overflow-y:auto}.unione-page-view[data-v-f792d0b4]{padding:10px;height:100%;overflow-y:auto}.load-table-form[data-v-165bc175] .query-field{width:300px}.data-field-manage[data-v-4020e3f0]{min-height:200px}.data-field-manage .btn[data-v-4020e3f0]{margin-top:-50px;float:right}.data-field-manage .btn.btn-add[data-v-4020e3f0]{margin-right:70px}.data-field-manage .btn.btn-delete[data-v-4020e3f0]{margin-right:5px}.data-field-manage .edit-field[data-v-4020e3f0]{width:100%;height:100%}.data-field-manage .edit-field.empty[data-v-4020e3f0]{position:absolute;top:0;left:0}.data-field-manage .edit-field[data-v-4020e3f0] .ant-input-number{width:calc(100% - 5px)}.data-field-manage .edit-field[data-v-4020e3f0] .ant-select{width:100%}.data-field-manage[data-v-4020e3f0] .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8]{min-height:200px}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-thead tr th{font-weight:400}.data-field-setting[data-v-d5938ab8] .ant-table .ant-table-tbody tr td{padding:3px}.data-field-setting .edit-field[data-v-d5938ab8]{width:100%;height:100%}.data-field-setting .edit-field.empty[data-v-d5938ab8]{position:absolute;top:0;left:0}.data-field-setting .edit-field.empty[data-v-d5938ab8] .ant-btn{padding:4px 7px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-input-number{width:calc(100% - 5px)}.data-field-setting .edit-field[data-v-d5938ab8] .ant-select{width:100%}.data-field-setting .edit-field[data-v-d5938ab8] .ant-btn{padding:4px;float:right}.data-field-setting .edit-field[data-v-d5938ab8] .ant-checkbox{margin-top:8px}.data-field-setting .edit-field .field-txt[data-v-d5938ab8]{line-height:30px}.form-mix[data-v-d5938ab8] .ant-form-item{margin-bottom:5px!important}.form-mix .checkbox-tips[data-v-d5938ab8] .ant-checkbox-wrapper{color:#999}.field-setting-form[data-v-d5938ab8]{padding-top:10px}.field-setting-form[data-v-d5938ab8] .ant-input-number{width:100%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item{width:50%;display:inline-block}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-label{width:50%;max-width:50%;flex:0 0 50%}.field-setting-form.sort[data-v-d5938ab8] .ant-form-item .ant-form-item-control{width:50%;max-width:50%}.data-field-fkey[data-v-84143692]{min-height:200px}.data-field-fkey[data-v-84143692] .ant-table-cell{font-weight:unset}.data-field-fkey .edit-field[data-v-84143692]{width:100%;height:100%}.data-field-fkey .edit-field.empty[data-v-84143692]{position:absolute;top:0;left:0}.data-field-fkey .edit-field[data-v-84143692] .ant-input-number{width:calc(100% - 5px)}.data-field-fkey .edit-field[data-v-84143692] .ant-select{width:100%}.data-filter[data-v-a600b93f]{height:100%;min-height:200px}.data-filter .filter-box[data-v-a600b93f]{width:calc(25% - 10px);margin:5px;height:100px;display:inline-flex}.data-filter .filter-box[data-v-a600b93f] .ant-card-body{width:100%}.data-filter .filter-box .action[data-v-a600b93f]{margin-top:10px;text-align:center}.data-filter .filter-box .action .ant-btn[data-v-a600b93f]{width:30%;margin:auto 10px}.data-filter .filter-box.btn-add[data-v-a600b93f]{line-height:80px;cursor:pointer}.data-filter .filter-box.btn-add[data-v-a600b93f] .ant-card-body{text-align:center}.data-filter .filter-box.btn-add .btn[data-v-a600b93f]{font-size:30px;color:#00000080}.data-filter .filter-box[data-v-a600b93f]:hover{background-color:#e6f7ff}.data-filter[data-v-a600b93f] .ant-card-bordered{border:1px solid #d9d9d9}.data-filter .btn-tmpl[data-v-a600b93f]{position:absolute;right:-7px;cursor:pointer}.form-mix[data-v-a600b93f] .ant-form-item{margin-bottom:5px!important}.form-mix[data-v-a600b93f] .ant-form-item .ant-form-item-explain-error{right:5px;margin-top:-27px;position:absolute}.form-mix .checkbox-tips[data-v-a600b93f] .ant-checkbox-wrapper{color:#999}.data-define-edit[data-v-3eeab6e6]{overflow-y:auto;height:100%}.data-define-edit[data-v-3eeab6e6] .page-setting-section .title{font-size:14px}.data-define-edit[data-v-3eeab6e6] .page-setting-section .reactive{font-size:12px}.data-define-edit[data-v-3eeab6e6] .page-setting-section.open .type{margin-top:6px!important}.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .title,.data-define-edit[data-v-3eeab6e6] .page-setting-section.close .reactive{color:#00bd7e}.data-define-edit .actions[data-v-3eeab6e6]{width:100%;bottom:10px;text-align:center}.data-define-edit .actions .ant-btn[data-v-3eeab6e6]{margin:15px 10px}
|
package/dist/typing.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "0.0.
|
|
1
|
+
declare const _default: "0.0.18";
|
|
2
2
|
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export interface IDialogData {
|
|
2
|
+
type: string;
|
|
3
|
+
label?: string;
|
|
4
|
+
name: string;
|
|
5
|
+
value?: string;
|
|
6
|
+
options?: {
|
|
7
|
+
label: string;
|
|
8
|
+
value: string;
|
|
9
|
+
}[];
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
width?: number;
|
|
12
|
+
height?: number;
|
|
13
|
+
required?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export interface IDialogConfirm {
|
|
16
|
+
name: string;
|
|
17
|
+
value: string;
|
|
18
|
+
}
|
|
19
|
+
export interface IDialogOptions {
|
|
20
|
+
onClose?: () => void;
|
|
21
|
+
onCancel?: () => void;
|
|
22
|
+
onConfirm?: (payload: IDialogConfirm[]) => void;
|
|
23
|
+
title: string;
|
|
24
|
+
data: IDialogData[];
|
|
25
|
+
}
|
|
26
|
+
export declare class Dialog {
|
|
27
|
+
private options;
|
|
28
|
+
private mask;
|
|
29
|
+
private container;
|
|
30
|
+
private inputList;
|
|
31
|
+
constructor(options: IDialogOptions);
|
|
32
|
+
private _render;
|
|
33
|
+
private _dispose;
|
|
34
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { WidgetModel } from '../../../typing';
|
|
3
|
+
import { IEditorData } from '../../../../preview/srchufe921/canvas-editor';
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
wid: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
required: false;
|
|
8
|
+
};
|
|
9
|
+
editor: {
|
|
10
|
+
type: ObjectConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
};
|
|
13
|
+
widget: {
|
|
14
|
+
type: PropType<WidgetModel>;
|
|
15
|
+
required: false;
|
|
16
|
+
};
|
|
17
|
+
model: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
options: {
|
|
22
|
+
type: ObjectConstructor;
|
|
23
|
+
default: () => {};
|
|
24
|
+
};
|
|
25
|
+
toolbar: {
|
|
26
|
+
type: {
|
|
27
|
+
(arrayLength: number): any[];
|
|
28
|
+
(...items: any[]): any[];
|
|
29
|
+
new (arrayLength: number): any[];
|
|
30
|
+
new (...items: any[]): any[];
|
|
31
|
+
isArray(arg: any): arg is any[];
|
|
32
|
+
readonly prototype: any[];
|
|
33
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
34
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
35
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
36
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
37
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
38
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
39
|
+
};
|
|
40
|
+
default: () => string[];
|
|
41
|
+
};
|
|
42
|
+
value: {
|
|
43
|
+
type: PropType<IEditorData>;
|
|
44
|
+
};
|
|
45
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
|
+
"update:value": (value: IEditorData) => any;
|
|
47
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
48
|
+
wid: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
required: false;
|
|
51
|
+
};
|
|
52
|
+
editor: {
|
|
53
|
+
type: ObjectConstructor;
|
|
54
|
+
required: false;
|
|
55
|
+
};
|
|
56
|
+
widget: {
|
|
57
|
+
type: PropType<WidgetModel>;
|
|
58
|
+
required: false;
|
|
59
|
+
};
|
|
60
|
+
model: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: string;
|
|
63
|
+
};
|
|
64
|
+
options: {
|
|
65
|
+
type: ObjectConstructor;
|
|
66
|
+
default: () => {};
|
|
67
|
+
};
|
|
68
|
+
toolbar: {
|
|
69
|
+
type: {
|
|
70
|
+
(arrayLength: number): any[];
|
|
71
|
+
(...items: any[]): any[];
|
|
72
|
+
new (arrayLength: number): any[];
|
|
73
|
+
new (...items: any[]): any[];
|
|
74
|
+
isArray(arg: any): arg is any[];
|
|
75
|
+
readonly prototype: any[];
|
|
76
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
77
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
78
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
79
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
80
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
81
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
82
|
+
};
|
|
83
|
+
default: () => string[];
|
|
84
|
+
};
|
|
85
|
+
value: {
|
|
86
|
+
type: PropType<IEditorData>;
|
|
87
|
+
};
|
|
88
|
+
}>> & Readonly<{
|
|
89
|
+
"onUpdate:value"?: ((value: IEditorData) => any) | undefined;
|
|
90
|
+
}>, {
|
|
91
|
+
model: string;
|
|
92
|
+
options: Record<string, any>;
|
|
93
|
+
toolbar: any[];
|
|
94
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
95
|
+
export default _default;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
declare function getHeight(): any;
|
|
2
|
+
declare function getWidth(): any;
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
items: {
|
|
5
|
+
type: {
|
|
6
|
+
(arrayLength: number): any[];
|
|
7
|
+
(...items: any[]): any[];
|
|
8
|
+
new (arrayLength: number): any[];
|
|
9
|
+
new (...items: any[]): any[];
|
|
10
|
+
isArray(arg: any): arg is any[];
|
|
11
|
+
readonly prototype: any[];
|
|
12
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
13
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
14
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
15
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
16
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
17
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
18
|
+
};
|
|
19
|
+
default(): string[];
|
|
20
|
+
};
|
|
21
|
+
editor: {
|
|
22
|
+
type: ObjectConstructor;
|
|
23
|
+
};
|
|
24
|
+
}>, {
|
|
25
|
+
getHeight: typeof getHeight;
|
|
26
|
+
getWidth: typeof getWidth;
|
|
27
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
28
|
+
items: {
|
|
29
|
+
type: {
|
|
30
|
+
(arrayLength: number): any[];
|
|
31
|
+
(...items: any[]): any[];
|
|
32
|
+
new (arrayLength: number): any[];
|
|
33
|
+
new (...items: any[]): any[];
|
|
34
|
+
isArray(arg: any): arg is any[];
|
|
35
|
+
readonly prototype: any[];
|
|
36
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
37
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
38
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
39
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
40
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
41
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
42
|
+
};
|
|
43
|
+
default(): string[];
|
|
44
|
+
};
|
|
45
|
+
editor: {
|
|
46
|
+
type: ObjectConstructor;
|
|
47
|
+
};
|
|
48
|
+
}>> & Readonly<{}>, {
|
|
49
|
+
items: any[];
|
|
50
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
51
|
+
export default _default;
|
|
@@ -9,6 +9,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
9
9
|
type: ObjectConstructor;
|
|
10
10
|
required: false;
|
|
11
11
|
};
|
|
12
|
+
returnType: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
12
16
|
widget: {
|
|
13
17
|
type: PropType<WidgetModel>;
|
|
14
18
|
required: false;
|
|
@@ -21,11 +25,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
21
25
|
type: ArrayConstructor;
|
|
22
26
|
required: false;
|
|
23
27
|
};
|
|
28
|
+
formValue: {
|
|
29
|
+
type: ObjectConstructor;
|
|
30
|
+
};
|
|
24
31
|
value: {
|
|
25
|
-
type: PropType<
|
|
32
|
+
type: PropType<String | String[]>;
|
|
26
33
|
};
|
|
27
34
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
-
|
|
35
|
+
change: (...args: any[]) => void;
|
|
29
36
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
30
37
|
wid: {
|
|
31
38
|
type: StringConstructor;
|
|
@@ -35,6 +42,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
35
42
|
type: ObjectConstructor;
|
|
36
43
|
required: false;
|
|
37
44
|
};
|
|
45
|
+
returnType: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
38
49
|
widget: {
|
|
39
50
|
type: PropType<WidgetModel>;
|
|
40
51
|
required: false;
|
|
@@ -47,10 +58,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
47
58
|
type: ArrayConstructor;
|
|
48
59
|
required: false;
|
|
49
60
|
};
|
|
61
|
+
formValue: {
|
|
62
|
+
type: ObjectConstructor;
|
|
63
|
+
};
|
|
50
64
|
value: {
|
|
51
|
-
type: PropType<
|
|
65
|
+
type: PropType<String | String[]>;
|
|
52
66
|
};
|
|
53
67
|
}>> & Readonly<{
|
|
54
|
-
|
|
55
|
-
}>, {
|
|
68
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
69
|
+
}>, {
|
|
70
|
+
returnType: string;
|
|
71
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
56
72
|
export default _default;
|
|
@@ -21,6 +21,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
21
21
|
type: ArrayConstructor;
|
|
22
22
|
required: false;
|
|
23
23
|
};
|
|
24
|
+
formValue: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
};
|
|
24
27
|
value: {
|
|
25
28
|
type: PropType<string | number>;
|
|
26
29
|
};
|
|
@@ -47,6 +50,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
47
50
|
type: ArrayConstructor;
|
|
48
51
|
required: false;
|
|
49
52
|
};
|
|
53
|
+
formValue: {
|
|
54
|
+
type: ObjectConstructor;
|
|
55
|
+
};
|
|
50
56
|
value: {
|
|
51
57
|
type: PropType<string | number>;
|
|
52
58
|
};
|
|
@@ -21,6 +21,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
21
21
|
type: ArrayConstructor;
|
|
22
22
|
required: false;
|
|
23
23
|
};
|
|
24
|
+
formValue: {
|
|
25
|
+
type: ObjectConstructor;
|
|
26
|
+
};
|
|
24
27
|
value: {
|
|
25
28
|
type: PropType<string | number>;
|
|
26
29
|
};
|
|
@@ -47,6 +50,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
47
50
|
type: ArrayConstructor;
|
|
48
51
|
required: false;
|
|
49
52
|
};
|
|
53
|
+
formValue: {
|
|
54
|
+
type: ObjectConstructor;
|
|
55
|
+
};
|
|
50
56
|
value: {
|
|
51
57
|
type: PropType<string | number>;
|
|
52
58
|
};
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
declare function getHeight(): any;
|
|
2
|
+
declare function getWidth(): any;
|
|
1
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
4
|
model: {
|
|
3
5
|
type: StringConstructor;
|
|
@@ -11,7 +13,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
11
13
|
type: BooleanConstructor;
|
|
12
14
|
default: boolean;
|
|
13
15
|
};
|
|
14
|
-
}>, {
|
|
16
|
+
}>, {
|
|
17
|
+
getHeight: typeof getHeight;
|
|
18
|
+
getWidth: typeof getWidth;
|
|
19
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
20
|
setting: (...args: any[]) => void;
|
|
16
21
|
saving: (...args: any[]) => void;
|
|
17
22
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unione-form-vue",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "npm run version && vite serve preview --mode development",
|
|
@@ -30,9 +30,8 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
"devDependencies": {
|
|
33
|
+
"@hufe921/canvas-editor": "^0.9.113",
|
|
34
|
+
"unione-base-vue": "^0.0.12",
|
|
36
35
|
"@ant-design/icons-vue": "^7.0.1",
|
|
37
36
|
"@codemirror/lang-javascript": "^6.2.2",
|
|
38
37
|
"@codemirror/lang-json": "^6.0.1",
|
|
@@ -72,6 +71,7 @@
|
|
|
72
71
|
"pinia": "^2.1.7",
|
|
73
72
|
"prettier": "^3.2.5",
|
|
74
73
|
"sm-crypto": "^0.3.13",
|
|
74
|
+
"prismjs": "^1.30.0",
|
|
75
75
|
"start-server-and-test": "^2.0.3",
|
|
76
76
|
"typescript": "~5.4.0",
|
|
77
77
|
"uuid": "^10.0.0",
|
|
@@ -84,5 +84,8 @@
|
|
|
84
84
|
"vue-i18n": "^9.13.1",
|
|
85
85
|
"vue-router": "^4.3.0",
|
|
86
86
|
"vue-tsc": "^2.0.11"
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
|
|
87
90
|
}
|
|
88
91
|
}
|