@ibiz-template/runtime 0.0.3-beta.2 → 0.0.3-beta.4
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/system/index.system.js +1 -1
- package/out/config/global-config.d.ts +3 -0
- package/out/config/global-config.d.ts.map +1 -1
- package/out/config/global-config.js +3 -0
- package/out/controller/constant/control/index.d.ts +1 -0
- package/out/controller/constant/control/index.d.ts.map +1 -1
- package/out/controller/constant/control/index.js +1 -0
- package/out/controller/constant/control/panel/panel-notify-state.d.ts +6 -0
- package/out/controller/constant/control/panel/panel-notify-state.d.ts.map +1 -0
- package/out/controller/constant/control/panel/panel-notify-state.js +7 -0
- package/out/controller/control/control.d.ts +6 -0
- package/out/controller/control/control.d.ts.map +1 -1
- package/out/controller/control/control.js +1 -0
- package/out/controller/control/dataview.d.ts +112 -0
- package/out/controller/control/dataview.d.ts.map +1 -0
- package/out/controller/control/dataview.js +274 -0
- package/out/controller/control/form/edit-form.d.ts +8 -0
- package/out/controller/control/form/edit-form.d.ts.map +1 -1
- package/out/controller/control/form/edit-form.js +28 -1
- package/out/controller/control/form/form-button.d.ts.map +1 -1
- package/out/controller/control/form/form-button.js +1 -1
- package/out/controller/control/form/form-detail.d.ts +2 -2
- package/out/controller/control/form/form-detail.d.ts.map +1 -1
- package/out/controller/control/form/form-detail.js +38 -26
- package/out/controller/control/form/form-druipart.d.ts +2 -2
- package/out/controller/control/form/form-druipart.d.ts.map +1 -1
- package/out/controller/control/form/form-druipart.js +4 -4
- package/out/controller/control/form/form-item.d.ts +2 -2
- package/out/controller/control/form/form-item.d.ts.map +1 -1
- package/out/controller/control/form/form-item.js +4 -4
- package/out/controller/control/form/form.d.ts +1 -1
- package/out/controller/control/form/form.d.ts.map +1 -1
- package/out/controller/control/form/form.js +23 -11
- package/out/controller/control/form/search-form.d.ts +1 -1
- package/out/controller/control/form/search-form.d.ts.map +1 -1
- package/out/controller/control/form/search-form.js +2 -2
- package/out/controller/control/grid/grid-field-column.d.ts +1 -1
- package/out/controller/control/grid/grid-field-column.d.ts.map +1 -1
- package/out/controller/control/grid/grid-field-column.js +8 -2
- package/out/controller/control/grid/grid-row.d.ts +10 -9
- package/out/controller/control/grid/grid-row.d.ts.map +1 -1
- package/out/controller/control/grid/grid-row.js +12 -4
- package/out/controller/control/grid/grid-ua-column.d.ts.map +1 -1
- package/out/controller/control/grid/grid-ua-column.js +12 -5
- package/out/controller/control/grid/grid.d.ts +1 -24
- package/out/controller/control/grid/grid.d.ts.map +1 -1
- package/out/controller/control/grid/grid.js +30 -39
- package/out/controller/control/index.d.ts +4 -0
- package/out/controller/control/index.d.ts.map +1 -1
- package/out/controller/control/index.js +4 -0
- package/out/controller/control/kanban.d.ts +120 -0
- package/out/controller/control/kanban.d.ts.map +1 -0
- package/out/controller/control/kanban.js +299 -0
- package/out/controller/control/list.d.ts +75 -2
- package/out/controller/control/list.d.ts.map +1 -1
- package/out/controller/control/list.js +205 -1
- package/out/controller/control/md/index.d.ts +3 -0
- package/out/controller/control/md/index.d.ts.map +1 -0
- package/out/controller/control/md/index.js +2 -0
- package/out/controller/control/md/md-item.d.ts +23 -0
- package/out/controller/control/md/md-item.d.ts.map +1 -0
- package/out/controller/control/md/md-item.js +20 -0
- package/out/controller/control/{md.d.ts → md/md.d.ts} +25 -37
- package/out/controller/control/md/md.d.ts.map +1 -0
- package/out/controller/control/{md.js → md/md.js} +60 -63
- package/out/controller/control/panel/index.d.ts +10 -0
- package/out/controller/control/panel/index.d.ts.map +1 -0
- package/out/controller/control/panel/index.js +9 -0
- package/out/controller/control/panel/layout-panel.d.ts +120 -0
- package/out/controller/control/panel/layout-panel.d.ts.map +1 -0
- package/out/controller/control/panel/layout-panel.js +204 -0
- package/out/controller/control/panel/panel-button.d.ts +43 -0
- package/out/controller/control/panel/panel-button.d.ts.map +1 -0
- package/out/controller/control/panel/panel-button.js +60 -0
- package/out/controller/control/panel/panel-container.d.ts +15 -0
- package/out/controller/control/panel/panel-container.d.ts.map +1 -0
- package/out/controller/control/panel/panel-container.js +15 -0
- package/out/controller/control/panel/panel-field.d.ts +75 -0
- package/out/controller/control/panel/panel-field.d.ts.map +1 -0
- package/out/controller/control/panel/panel-field.js +93 -0
- package/out/controller/control/panel/panel-item.d.ts +91 -0
- package/out/controller/control/panel/panel-item.d.ts.map +1 -0
- package/out/controller/control/panel/panel-item.js +135 -0
- package/out/controller/control/panel/panel-raw-item.d.ts +17 -0
- package/out/controller/control/panel/panel-raw-item.d.ts.map +1 -0
- package/out/controller/control/panel/panel-raw-item.js +17 -0
- package/out/controller/control/panel/panel-tab-page.d.ts +15 -0
- package/out/controller/control/panel/panel-tab-page.d.ts.map +1 -0
- package/out/controller/control/panel/panel-tab-page.js +15 -0
- package/out/controller/control/panel/panel-tab-panel.d.ts +15 -0
- package/out/controller/control/panel/panel-tab-panel.d.ts.map +1 -0
- package/out/controller/control/panel/panel-tab-panel.js +15 -0
- package/out/controller/control/panel/view-layout-panel.d.ts +18 -0
- package/out/controller/control/panel/view-layout-panel.d.ts.map +1 -0
- package/out/controller/control/panel/view-layout-panel.js +19 -0
- package/out/controller/control/portlet/portlet-part.d.ts +34 -10
- package/out/controller/control/portlet/portlet-part.d.ts.map +1 -1
- package/out/controller/control/portlet/portlet-part.js +63 -21
- package/out/controller/control/portlet/view-portlet.d.ts +17 -0
- package/out/controller/control/portlet/view-portlet.d.ts.map +1 -1
- package/out/controller/control/portlet/view-portlet.js +10 -0
- package/out/controller/control/tree.d.ts +1 -1
- package/out/controller/control/tree.d.ts.map +1 -1
- package/out/controller/control/tree.js +5 -5
- package/out/controller/control/wizard-panel.d.ts +117 -0
- package/out/controller/control/wizard-panel.d.ts.map +1 -0
- package/out/controller/control/wizard-panel.js +194 -0
- package/out/controller/editor/autocomplete.d.ts +73 -0
- package/out/controller/editor/autocomplete.d.ts.map +1 -0
- package/out/controller/editor/autocomplete.js +117 -0
- package/out/controller/editor/check-box.d.ts +12 -0
- package/out/controller/editor/check-box.d.ts.map +1 -0
- package/out/controller/editor/check-box.js +10 -0
- package/out/controller/editor/code-list-editor.d.ts.map +1 -1
- package/out/controller/editor/code-list-editor.js +1 -1
- package/out/controller/editor/editor.d.ts +4 -1
- package/out/controller/editor/editor.d.ts.map +1 -1
- package/out/controller/editor/editor.js +22 -6
- package/out/controller/editor/index.d.ts +9 -0
- package/out/controller/editor/index.d.ts.map +1 -1
- package/out/controller/editor/index.js +9 -0
- package/out/controller/editor/list-box-picker.d.ts +42 -0
- package/out/controller/editor/list-box-picker.d.ts.map +1 -0
- package/out/controller/editor/list-box-picker.js +67 -0
- package/out/controller/editor/list-box.d.ts +11 -0
- package/out/controller/editor/list-box.d.ts.map +1 -0
- package/out/controller/editor/list-box.js +9 -0
- package/out/controller/editor/picker.d.ts +6 -2
- package/out/controller/editor/picker.d.ts.map +1 -1
- package/out/controller/editor/picker.js +26 -10
- package/out/controller/editor/rate.d.ts +12 -0
- package/out/controller/editor/rate.d.ts.map +1 -0
- package/out/controller/editor/rate.js +10 -0
- package/out/controller/editor/raw.d.ts +12 -0
- package/out/controller/editor/raw.d.ts.map +1 -0
- package/out/controller/editor/raw.js +10 -0
- package/out/controller/editor/slider.d.ts +12 -0
- package/out/controller/editor/slider.d.ts.map +1 -0
- package/out/controller/editor/slider.js +10 -0
- package/out/controller/editor/stepper.d.ts +12 -0
- package/out/controller/editor/stepper.d.ts.map +1 -0
- package/out/controller/editor/stepper.js +10 -0
- package/out/controller/editor/switch.d.ts +12 -0
- package/out/controller/editor/switch.d.ts.map +1 -0
- package/out/controller/editor/switch.js +10 -0
- package/out/controller/interface/ability/control/i-dataview-ability.d.ts +21 -0
- package/out/controller/interface/ability/control/i-dataview-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/control/i-dataview-ability.js +1 -0
- package/out/controller/interface/ability/control/i-edit-form-ability.d.ts +8 -0
- package/out/controller/interface/ability/control/i-edit-form-ability.d.ts.map +1 -1
- package/out/controller/interface/ability/control/i-kanban-ability.d.ts +12 -0
- package/out/controller/interface/ability/control/i-kanban-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/control/i-kanban-ability.js +1 -0
- package/out/controller/interface/ability/control/i-layout-panel-ability.d.ts +11 -0
- package/out/controller/interface/ability/control/i-layout-panel-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/control/i-layout-panel-ability.js +1 -0
- package/out/controller/interface/ability/control/i-view-layout-panel-ability.d.ts +11 -0
- package/out/controller/interface/ability/control/i-view-layout-panel-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/control/i-view-layout-panel-ability.js +1 -0
- package/out/controller/interface/ability/control/i-wizard-panel-ability.d.ts +20 -0
- package/out/controller/interface/ability/control/i-wizard-panel-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/control/i-wizard-panel-ability.js +1 -0
- package/out/controller/interface/ability/control/index.d.ts +5 -0
- package/out/controller/interface/ability/control/index.d.ts.map +1 -1
- package/out/controller/interface/ability/control/index.js +5 -0
- package/out/controller/interface/ability/view/i-dataview-view-ability.d.ts +20 -0
- package/out/controller/interface/ability/view/i-dataview-view-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/view/i-dataview-view-ability.js +1 -0
- package/out/controller/interface/ability/view/i-kanban-view-ability.d.ts +20 -0
- package/out/controller/interface/ability/view/i-kanban-view-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/view/i-kanban-view-ability.js +1 -0
- package/out/controller/interface/ability/view/i-list-exp-view-ability.d.ts +20 -0
- package/out/controller/interface/ability/view/i-list-exp-view-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/view/i-list-exp-view-ability.js +1 -0
- package/out/controller/interface/ability/view/i-list-view-ability.d.ts +20 -0
- package/out/controller/interface/ability/view/i-list-view-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/view/i-list-view-ability.js +1 -0
- package/out/controller/interface/ability/view/i-wizard-view-ability.d.ts +12 -0
- package/out/controller/interface/ability/view/i-wizard-view-ability.d.ts.map +1 -0
- package/out/controller/interface/ability/view/i-wizard-view-ability.js +1 -0
- package/out/controller/interface/ability/view/index.d.ts +5 -0
- package/out/controller/interface/ability/view/index.d.ts.map +1 -1
- package/out/controller/interface/ability/view/index.js +5 -0
- package/out/controller/interface/common/button-state/i-button-state.d.ts +1 -1
- package/out/controller/interface/common/button-state/i-button-state.d.ts.map +1 -1
- package/out/controller/interface/controller/layout/i-layout-controller.d.ts +9 -0
- package/out/controller/interface/controller/layout/i-layout-controller.d.ts.map +1 -1
- package/out/controller/interface/event/control/i-dataview-event.d.ts +11 -0
- package/out/controller/interface/event/control/i-dataview-event.d.ts.map +1 -0
- package/out/controller/interface/event/control/i-dataview-event.js +1 -0
- package/out/controller/interface/event/control/i-kanban-event.d.ts +11 -0
- package/out/controller/interface/event/control/i-kanban-event.d.ts.map +1 -0
- package/out/controller/interface/event/control/i-kanban-event.js +1 -0
- package/out/controller/interface/event/control/i-layout-panel-event.d.ts +11 -0
- package/out/controller/interface/event/control/i-layout-panel-event.d.ts.map +1 -0
- package/out/controller/interface/event/control/i-layout-panel-event.js +1 -0
- package/out/controller/interface/event/control/i-md-control-event.d.ts +11 -0
- package/out/controller/interface/event/control/i-md-control-event.d.ts.map +1 -1
- package/out/controller/interface/event/control/i-view-layout-panel-event.d.ts +11 -0
- package/out/controller/interface/event/control/i-view-layout-panel-event.d.ts.map +1 -0
- package/out/controller/interface/event/control/i-view-layout-panel-event.js +1 -0
- package/out/controller/interface/event/control/i-wizard-panel-event.d.ts +20 -0
- package/out/controller/interface/event/control/i-wizard-panel-event.d.ts.map +1 -0
- package/out/controller/interface/event/control/i-wizard-panel-event.js +1 -0
- package/out/controller/interface/event/control/index.d.ts +5 -0
- package/out/controller/interface/event/control/index.d.ts.map +1 -1
- package/out/controller/interface/event/control/index.js +5 -0
- package/out/controller/interface/event/view/i-dataview-view-event.d.ts +12 -0
- package/out/controller/interface/event/view/i-dataview-view-event.d.ts.map +1 -0
- package/out/controller/interface/event/view/i-dataview-view-event.js +1 -0
- package/out/controller/interface/event/view/i-kanban-view-event.d.ts +12 -0
- package/out/controller/interface/event/view/i-kanban-view-event.d.ts.map +1 -0
- package/out/controller/interface/event/view/i-kanban-view-event.js +1 -0
- package/out/controller/interface/event/view/i-list-exp-view-event.d.ts +10 -0
- package/out/controller/interface/event/view/i-list-exp-view-event.d.ts.map +1 -0
- package/out/controller/interface/event/view/i-list-exp-view-event.js +1 -0
- package/out/controller/interface/event/view/i-list-view-event.d.ts +12 -0
- package/out/controller/interface/event/view/i-list-view-event.d.ts.map +1 -0
- package/out/controller/interface/event/view/i-list-view-event.js +1 -0
- package/out/controller/interface/event/view/i-wizard-view-event.d.ts +12 -0
- package/out/controller/interface/event/view/i-wizard-view-event.d.ts.map +1 -0
- package/out/controller/interface/event/view/i-wizard-view-event.js +1 -0
- package/out/controller/interface/event/view/index.d.ts +5 -0
- package/out/controller/interface/event/view/index.d.ts.map +1 -1
- package/out/controller/interface/event/view/index.js +5 -0
- package/out/controller/interface/provider/i-panel-item-provider.d.ts +31 -0
- package/out/controller/interface/provider/i-panel-item-provider.d.ts.map +1 -0
- package/out/controller/interface/provider/i-panel-item-provider.js +1 -0
- package/out/controller/interface/provider/index.d.ts +1 -0
- package/out/controller/interface/provider/index.d.ts.map +1 -1
- package/out/controller/interface/provider/index.js +1 -0
- package/out/controller/interface/register/i-panel-item-register.d.ts +24 -0
- package/out/controller/interface/register/i-panel-item-register.d.ts.map +1 -0
- package/out/controller/interface/register/i-panel-item-register.js +1 -0
- package/out/controller/interface/register/i-view-register.d.ts +2 -2
- package/out/controller/interface/register/i-view-register.d.ts.map +1 -1
- package/out/controller/interface/register/index.d.ts +1 -0
- package/out/controller/interface/register/index.d.ts.map +1 -1
- package/out/controller/interface/register/index.js +1 -0
- package/out/controller/neuron/nerve/control/daraview-nerve.d.ts +25 -0
- package/out/controller/neuron/nerve/control/daraview-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/control/daraview-nerve.js +19 -0
- package/out/controller/neuron/nerve/control/edit-form-nerve.d.ts +1 -0
- package/out/controller/neuron/nerve/control/edit-form-nerve.d.ts.map +1 -1
- package/out/controller/neuron/nerve/control/edit-form-nerve.js +1 -1
- package/out/controller/neuron/nerve/control/index.d.ts +5 -0
- package/out/controller/neuron/nerve/control/index.d.ts.map +1 -1
- package/out/controller/neuron/nerve/control/index.js +5 -0
- package/out/controller/neuron/nerve/control/kanban-nerve.d.ts +16 -0
- package/out/controller/neuron/nerve/control/kanban-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/control/kanban-nerve.js +16 -0
- package/out/controller/neuron/nerve/control/layout-panel-nerve.d.ts +20 -0
- package/out/controller/neuron/nerve/control/layout-panel-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/control/layout-panel-nerve.js +19 -0
- package/out/controller/neuron/nerve/control/view-layout-panel-nerve.d.ts +20 -0
- package/out/controller/neuron/nerve/control/view-layout-panel-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/control/view-layout-panel-nerve.js +19 -0
- package/out/controller/neuron/nerve/control/wizard-panel-nerve.d.ts +29 -0
- package/out/controller/neuron/nerve/control/wizard-panel-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/control/wizard-panel-nerve.js +46 -0
- package/out/controller/neuron/nerve/view/dataview-view-nerve.d.ts +32 -0
- package/out/controller/neuron/nerve/view/dataview-view-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/view/dataview-view-nerve.js +43 -0
- package/out/controller/neuron/nerve/view/grid-exp-view-nerve.d.ts.map +1 -1
- package/out/controller/neuron/nerve/view/grid-exp-view-nerve.js +1 -0
- package/out/controller/neuron/nerve/view/index.d.ts +5 -0
- package/out/controller/neuron/nerve/view/index.d.ts.map +1 -1
- package/out/controller/neuron/nerve/view/index.js +5 -0
- package/out/controller/neuron/nerve/view/kanban-view-nerve.d.ts +32 -0
- package/out/controller/neuron/nerve/view/kanban-view-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/view/kanban-view-nerve.js +44 -0
- package/out/controller/neuron/nerve/view/list-exp-view-nerve.d.ts +27 -0
- package/out/controller/neuron/nerve/view/list-exp-view-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/view/list-exp-view-nerve.js +48 -0
- package/out/controller/neuron/nerve/view/list-view-nerve.d.ts +32 -0
- package/out/controller/neuron/nerve/view/list-view-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/view/list-view-nerve.js +43 -0
- package/out/controller/neuron/nerve/view/wizard-view-nerve.d.ts +19 -0
- package/out/controller/neuron/nerve/view/wizard-view-nerve.d.ts.map +1 -0
- package/out/controller/neuron/nerve/view/wizard-view-nerve.js +29 -0
- package/out/controller/neuron/neuron/view.d.ts +12 -2
- package/out/controller/neuron/neuron/view.d.ts.map +1 -1
- package/out/controller/neuron/neuron/view.js +10 -0
- package/out/controller/neuron/neuron/widget.d.ts +12 -2
- package/out/controller/neuron/neuron/widget.d.ts.map +1 -1
- package/out/controller/neuron/neuron/widget.js +10 -0
- package/out/controller/register/control-register.d.ts.map +1 -1
- package/out/controller/register/control-register.js +1 -0
- package/out/controller/register/editor-register.d.ts.map +1 -1
- package/out/controller/register/editor-register.js +2 -0
- package/out/controller/register/index.d.ts +1 -0
- package/out/controller/register/index.d.ts.map +1 -1
- package/out/controller/register/index.js +1 -0
- package/out/controller/register/panel-item-register.d.ts +17 -0
- package/out/controller/register/panel-item-register.d.ts.map +1 -0
- package/out/controller/register/panel-item-register.js +32 -0
- package/out/controller/register/view-register.d.ts +2 -2
- package/out/controller/register/view-register.d.ts.map +1 -1
- package/out/controller/register/view-register.js +10 -12
- package/out/controller/state/control/dataview-state.d.ts +22 -0
- package/out/controller/state/control/dataview-state.d.ts.map +1 -0
- package/out/controller/state/control/dataview-state.js +23 -0
- package/out/controller/state/control/form/form-detail/form-detail-state.d.ts +12 -7
- package/out/controller/state/control/form/form-detail/form-detail-state.d.ts.map +1 -1
- package/out/controller/state/control/form/form-detail/form-detail-state.js +27 -24
- package/out/controller/state/control/form/form-detail/form-item-state.d.ts +0 -9
- package/out/controller/state/control/form/form-detail/form-item-state.d.ts.map +1 -1
- package/out/controller/state/control/form/form-detail/form-item-state.js +15 -16
- package/out/controller/state/control/form/form-detail/form-page-state.d.ts +0 -9
- package/out/controller/state/control/form/form-detail/form-page-state.d.ts.map +1 -1
- package/out/controller/state/control/form/form-detail/form-page-state.js +0 -11
- package/out/controller/state/control/form/form-state.d.ts +8 -0
- package/out/controller/state/control/form/form-state.d.ts.map +1 -1
- package/out/controller/state/control/form/form-state.js +8 -0
- package/out/controller/state/control/index.d.ts +12 -0
- package/out/controller/state/control/index.d.ts.map +1 -1
- package/out/controller/state/control/index.js +14 -0
- package/out/controller/state/control/kanban-state.d.ts +22 -0
- package/out/controller/state/control/kanban-state.d.ts.map +1 -0
- package/out/controller/state/control/kanban-state.js +23 -0
- package/out/controller/state/control/list-state.d.ts +22 -0
- package/out/controller/state/control/list-state.d.ts.map +1 -0
- package/out/controller/state/control/list-state.js +23 -0
- package/out/controller/state/control/panel/layout-panel-state.d.ts +22 -0
- package/out/controller/state/control/panel/layout-panel-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/layout-panel-state.js +24 -0
- package/out/controller/state/control/panel/panel-item/panel-button-state.d.ts +13 -0
- package/out/controller/state/control/panel/panel-item/panel-button-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/panel-item/panel-button-state.js +12 -0
- package/out/controller/state/control/panel/panel-item/panel-container-state.d.ts +13 -0
- package/out/controller/state/control/panel/panel-item/panel-container-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/panel-item/panel-container-state.js +12 -0
- package/out/controller/state/control/panel/panel-item/panel-field-state.d.ts +21 -0
- package/out/controller/state/control/panel/panel-item/panel-field-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/panel-item/panel-field-state.js +23 -0
- package/out/controller/state/control/panel/panel-item/panel-item-state.d.ts +48 -0
- package/out/controller/state/control/panel/panel-item/panel-item-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/panel-item/panel-item-state.js +59 -0
- package/out/controller/state/control/panel/panel-item/panel-raw-item-state.d.ts +13 -0
- package/out/controller/state/control/panel/panel-item/panel-raw-item-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/panel-item/panel-raw-item-state.js +12 -0
- package/out/controller/state/control/panel/panel-item/panel-tab-page-state.d.ts +11 -0
- package/out/controller/state/control/panel/panel-item/panel-tab-page-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/panel-item/panel-tab-page-state.js +10 -0
- package/out/controller/state/control/panel/panel-item/panel-tab-panel-state.d.ts +11 -0
- package/out/controller/state/control/panel/panel-item/panel-tab-panel-state.d.ts.map +1 -0
- package/out/controller/state/control/panel/panel-item/panel-tab-panel-state.js +10 -0
- package/out/controller/state/control/portlet/portlet-part-state.d.ts +25 -0
- package/out/controller/state/control/portlet/portlet-part-state.d.ts.map +1 -0
- package/out/controller/state/control/portlet/portlet-part-state.js +32 -0
- package/out/controller/state/control/wizard-panel-state.d.ts +13 -0
- package/out/controller/state/control/wizard-panel-state.d.ts.map +1 -0
- package/out/controller/state/control/wizard-panel-state.js +15 -0
- package/out/controller/state/view/dataview-view-state.d.ts +11 -0
- package/out/controller/state/view/dataview-view-state.d.ts.map +1 -0
- package/out/controller/state/view/dataview-view-state.js +10 -0
- package/out/controller/state/view/grid-exp-view-state.d.ts +8 -1
- package/out/controller/state/view/grid-exp-view-state.d.ts.map +1 -1
- package/out/controller/state/view/grid-exp-view-state.js +1 -1
- package/out/controller/state/view/index.d.ts +4 -0
- package/out/controller/state/view/index.d.ts.map +1 -1
- package/out/controller/state/view/index.js +4 -0
- package/out/controller/state/view/kanban-view-state.d.ts +11 -0
- package/out/controller/state/view/kanban-view-state.d.ts.map +1 -0
- package/out/controller/state/view/kanban-view-state.js +10 -0
- package/out/controller/state/view/list-exp-view-state.d.ts +24 -0
- package/out/controller/state/view/list-exp-view-state.d.ts.map +1 -0
- package/out/controller/state/view/list-exp-view-state.js +19 -0
- package/out/controller/state/view/list-view-state.d.ts +11 -0
- package/out/controller/state/view/list-view-state.d.ts.map +1 -0
- package/out/controller/state/view/list-view-state.js +10 -0
- package/out/controller/state/view/tree-exp-view-state.d.ts +22 -0
- package/out/controller/state/view/tree-exp-view-state.d.ts.map +1 -1
- package/out/controller/state/view/tree-exp-view-state.js +17 -0
- package/out/controller/utils/button-state/button-state.d.ts +2 -2
- package/out/controller/utils/button-state/button-state.d.ts.map +1 -1
- package/out/controller/utils/button-state/button-state.js +6 -1
- package/out/controller/utils/index.d.ts +1 -0
- package/out/controller/utils/index.d.ts.map +1 -1
- package/out/controller/utils/index.js +1 -0
- package/out/controller/utils/layout-helper/layout-helper.d.ts +24 -0
- package/out/controller/utils/layout-helper/layout-helper.d.ts.map +1 -0
- package/out/controller/utils/layout-helper/layout-helper.js +84 -0
- package/out/controller/utils/value-rule/value-rule.js +2 -2
- package/out/controller/view/dataview-view.d.ts +36 -0
- package/out/controller/view/dataview-view.d.ts.map +1 -0
- package/out/controller/view/dataview-view.js +51 -0
- package/out/controller/view/edit-view.d.ts +0 -1
- package/out/controller/view/edit-view.d.ts.map +1 -1
- package/out/controller/view/edit-view.js +0 -9
- package/out/controller/view/grid-exp-view.d.ts +0 -8
- package/out/controller/view/grid-exp-view.d.ts.map +1 -1
- package/out/controller/view/grid-exp-view.js +54 -64
- package/out/controller/view/index.d.ts +5 -0
- package/out/controller/view/index.d.ts.map +1 -1
- package/out/controller/view/index.js +5 -0
- package/out/controller/view/kanban-view.d.ts +34 -0
- package/out/controller/view/kanban-view.d.ts.map +1 -0
- package/out/controller/view/kanban-view.js +49 -0
- package/out/controller/view/list-exp-view.d.ts +44 -0
- package/out/controller/view/list-exp-view.d.ts.map +1 -0
- package/out/controller/view/list-exp-view.js +139 -0
- package/out/controller/view/list-view.d.ts +34 -0
- package/out/controller/view/list-view.d.ts.map +1 -0
- package/out/controller/view/list-view.js +49 -0
- package/out/controller/view/md-view.d.ts +0 -27
- package/out/controller/view/md-view.d.ts.map +1 -1
- package/out/controller/view/md-view.js +1 -28
- package/out/controller/view/opt-view.js +1 -1
- package/out/controller/view/pickup-grid-view.js +1 -1
- package/out/controller/view/tree-exp-view.d.ts.map +1 -1
- package/out/controller/view/tree-exp-view.js +17 -21
- package/out/controller/view/view.d.ts.map +1 -1
- package/out/controller/view/view.js +15 -4
- package/out/controller/view/wizard-view.d.ts +33 -0
- package/out/controller/view/wizard-view.d.ts.map +1 -0
- package/out/controller/view/wizard-view.js +47 -0
- package/out/de-logic/de-logic-context.d.ts +28 -0
- package/out/de-logic/de-logic-context.d.ts.map +1 -0
- package/out/de-logic/de-logic-context.js +29 -0
- package/out/de-logic/de-logic-link/de-logic-link-cond/de-logic-link-cond.d.ts +11 -0
- package/out/de-logic/de-logic-link/de-logic-link-cond/de-logic-link-cond.d.ts.map +1 -0
- package/out/de-logic/de-logic-link/de-logic-link-cond/de-logic-link-cond.js +10 -0
- package/out/de-logic/de-logic-link/de-logic-link-group-cond/de-logic-link-group-cond.d.ts +58 -0
- package/out/de-logic/de-logic-link/de-logic-link-group-cond/de-logic-link-group-cond.d.ts.map +1 -0
- package/out/de-logic/de-logic-link/de-logic-link-group-cond/de-logic-link-group-cond.js +79 -0
- package/out/de-logic/de-logic-link/de-logic-link-single-cond/de-logic-link-single-cond.d.ts +48 -0
- package/out/de-logic/de-logic-link/de-logic-link-single-cond/de-logic-link-single-cond.d.ts.map +1 -0
- package/out/de-logic/de-logic-link/de-logic-link-single-cond/de-logic-link-single-cond.js +65 -0
- package/out/de-logic/de-logic-link/de-logic-link.d.ts +59 -0
- package/out/de-logic/de-logic-link/de-logic-link.d.ts.map +1 -0
- package/out/de-logic/de-logic-link/de-logic-link.js +67 -0
- package/out/de-logic/de-logic-node/bind-param-node/bind-param-node.d.ts +15 -0
- package/out/de-logic/de-logic-node/bind-param-node/bind-param-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/bind-param-node/bind-param-node.js +25 -0
- package/out/de-logic/de-logic-node/data-set-node/data-set-node.d.ts +15 -0
- package/out/de-logic/de-logic-node/data-set-node/data-set-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/data-set-node/data-set-node.js +29 -0
- package/out/de-logic/de-logic-node/de-action-node/de-action-node.d.ts +15 -0
- package/out/de-logic/de-logic-node/de-action-node/de-action-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/de-action-node/de-action-node.js +36 -0
- package/out/de-logic/de-logic-node/de-logic-node.d.ts +43 -0
- package/out/de-logic/de-logic-node/de-logic-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/de-logic-node.js +22 -0
- package/out/de-logic/de-logic-node/end-node/end-node.d.ts +15 -0
- package/out/de-logic/de-logic-node/end-node/end-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/end-node/end-node.js +37 -0
- package/out/de-logic/de-logic-node/index.d.ts +8 -0
- package/out/de-logic/de-logic-node/index.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/index.js +7 -0
- package/out/de-logic/de-logic-node/prepare-param-node/prepare-param-node.d.ts +15 -0
- package/out/de-logic/de-logic-node/prepare-param-node/prepare-param-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/prepare-param-node/prepare-param-node.js +15 -0
- package/out/de-logic/de-logic-node/start-node/start-node.d.ts +15 -0
- package/out/de-logic/de-logic-node/start-node/start-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/start-node/start-node.js +15 -0
- package/out/de-logic/de-logic-node/throw-exception-node/throw-exception-node.d.ts +15 -0
- package/out/de-logic/de-logic-node/throw-exception-node/throw-exception-node.d.ts.map +1 -0
- package/out/de-logic/de-logic-node/throw-exception-node/throw-exception-node.js +23 -0
- package/out/de-logic/de-logic-param/de-logic-param.d.ts +33 -0
- package/out/de-logic/de-logic-param/de-logic-param.d.ts.map +1 -0
- package/out/de-logic/de-logic-param/de-logic-param.js +93 -0
- package/out/de-logic/de-logic.d.ts +79 -0
- package/out/de-logic/de-logic.d.ts.map +1 -0
- package/out/de-logic/de-logic.js +157 -0
- package/out/de-logic/index.d.ts +17 -0
- package/out/de-logic/index.d.ts.map +1 -0
- package/out/de-logic/index.js +38 -0
- package/out/interface/i-global-config/i-global-config.d.ts +31 -0
- package/out/interface/i-global-config/i-global-config.d.ts.map +1 -1
- package/out/interface/i-plugin-factory/i-plugin-factory.d.ts +31 -4
- package/out/interface/i-plugin-factory/i-plugin-factory.d.ts.map +1 -1
- package/out/interface/i-plugin-item/i-plugin-item.d.ts +28 -0
- package/out/interface/i-plugin-item/i-plugin-item.d.ts.map +1 -0
- package/out/interface/i-plugin-item/i-plugin-item.js +1 -0
- package/out/interface/i-ui-action-result/i-ui-action-result.d.ts +17 -0
- package/out/interface/i-ui-action-result/i-ui-action-result.d.ts.map +1 -1
- package/out/interface/index.d.ts +1 -0
- package/out/interface/index.d.ts.map +1 -1
- package/out/model.d.ts.map +1 -1
- package/out/model.js +7 -1
- package/out/plugin/remote-plugin-item/remote-plugin-item.d.ts +12 -3
- package/out/plugin/remote-plugin-item/remote-plugin-item.d.ts.map +1 -1
- package/out/plugin/remote-plugin-item/remote-plugin-item.js +5 -3
- package/out/register/register-center.d.ts +10 -1
- package/out/register/register-center.d.ts.map +1 -1
- package/out/register/register-center.js +10 -1
- package/out/service/authority/authority.service.d.ts +3 -12
- package/out/service/authority/authority.service.d.ts.map +1 -1
- package/out/service/authority/authority.service.js +20 -27
- package/out/service/dto/method.dto.d.ts +3 -3
- package/out/service/dto/method.dto.d.ts.map +1 -1
- package/out/service/dto/method.dto.js +22 -22
- package/out/service/entity/entity.d.ts +9 -0
- package/out/service/entity/entity.d.ts.map +1 -1
- package/out/service/entity/entity.js +11 -2
- package/out/service/interface/i-tree-node-data/i-tree-node-data.d.ts +8 -0
- package/out/service/interface/i-tree-node-data/i-tree-node-data.d.ts.map +1 -1
- package/out/service/service/entity/method/de-action.d.ts.map +1 -1
- package/out/service/service/entity/method/de-action.js +13 -5
- package/out/service/service/entity/method/method-renturn.js +2 -2
- package/out/service/service/entity/method/method.d.ts +1 -1
- package/out/service/service/entity/method/method.d.ts.map +1 -1
- package/out/service/service/entity/method/method.js +28 -25
- package/out/service/service/widget/control-service.d.ts +1 -1
- package/out/service/service/widget/control-service.d.ts.map +1 -1
- package/out/service/service/widget/control-service.js +2 -2
- package/out/service/service/widget/dataview-service.d.ts +12 -0
- package/out/service/service/widget/dataview-service.d.ts.map +1 -0
- package/out/service/service/widget/dataview-service.js +34 -0
- package/out/service/service/widget/edit-form-service.d.ts +10 -0
- package/out/service/service/widget/edit-form-service.d.ts.map +1 -1
- package/out/service/service/widget/edit-form-service.js +27 -7
- package/out/service/service/widget/index.d.ts +3 -0
- package/out/service/service/widget/index.d.ts.map +1 -1
- package/out/service/service/widget/index.js +3 -0
- package/out/service/service/widget/kanban-service.d.ts +12 -0
- package/out/service/service/widget/kanban-service.d.ts.map +1 -0
- package/out/service/service/widget/kanban-service.js +34 -0
- package/out/service/service/widget/md-control-service.d.ts.map +1 -1
- package/out/service/service/widget/md-control-service.js +3 -3
- package/out/service/service/widget/tree-service.d.ts +5 -2
- package/out/service/service/widget/tree-service.d.ts.map +1 -1
- package/out/service/service/widget/tree-service.js +31 -14
- package/out/service/service/widget/wizard-panel-service.d.ts +37 -0
- package/out/service/service/widget/wizard-panel-service.d.ts.map +1 -0
- package/out/service/service/widget/wizard-panel-service.js +42 -0
- package/out/service/utils/dynamic-code-list/dynamic-code-list.d.ts.map +1 -1
- package/out/service/utils/dynamic-code-list/dynamic-code-list.js +5 -2
- package/out/service/utils/index.d.ts +0 -1
- package/out/service/utils/index.d.ts.map +1 -1
- package/out/service/utils/index.js +0 -1
- package/out/service/utils/route-context/route-context.d.ts +9 -1
- package/out/service/utils/route-context/route-context.d.ts.map +1 -1
- package/out/service/utils/route-context/route-context.js +31 -1
- package/out/service/vo/control.vo.d.ts.map +1 -1
- package/out/service/vo/control.vo.js +2 -1
- package/out/service/vo/tree-node-data/tree-data-set-node-data.d.ts +3 -3
- package/out/service/vo/tree-node-data/tree-data-set-node-data.d.ts.map +1 -1
- package/out/service/vo/tree-node-data/tree-data-set-node-data.js +8 -4
- package/out/service/vo/tree-node-data/tree-node-data.d.ts +11 -3
- package/out/service/vo/tree-node-data/tree-node-data.d.ts.map +1 -1
- package/out/service/vo/tree-node-data/tree-node-data.js +8 -1
- package/out/service/vo/tree-node-data/tree-static-node-data.d.ts +4 -3
- package/out/service/vo/tree-node-data/tree-static-node-data.d.ts.map +1 -1
- package/out/service/vo/tree-node-data/tree-static-node-data.js +16 -4
- package/out/ui-logic/index.d.ts +17 -0
- package/out/ui-logic/index.d.ts.map +1 -0
- package/out/ui-logic/index.js +29 -0
- package/out/ui-logic/ui-logic-context.d.ts +28 -0
- package/out/ui-logic/ui-logic-context.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-context.js +29 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-cond/ui-logic-link-cond.d.ts +11 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-cond/ui-logic-link-cond.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-cond/ui-logic-link-cond.js +10 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-group-cond/ui-logic-link-group-cond.d.ts +58 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-group-cond/ui-logic-link-group-cond.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-group-cond/ui-logic-link-group-cond.js +79 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-single-cond/ui-logic-link-single-cond.d.ts +48 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-single-cond/ui-logic-link-single-cond.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link-single-cond/ui-logic-link-single-cond.js +65 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link.d.ts +61 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-link/ui-logic-link.js +86 -0
- package/out/ui-logic/ui-logic-node/de-action-node/de-action-node.d.ts +16 -0
- package/out/ui-logic/ui-logic-node/de-action-node/de-action-node.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-node/de-action-node/de-action-node.js +36 -0
- package/out/ui-logic/ui-logic-node/de-ui-action-node/de-ui-action-node.d.ts +16 -0
- package/out/ui-logic/ui-logic-node/de-ui-action-node/de-ui-action-node.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-node/de-ui-action-node/de-ui-action-node.js +33 -0
- package/out/ui-logic/ui-logic-node/end-node/end-node.d.ts +16 -0
- package/out/ui-logic/ui-logic-node/end-node/end-node.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-node/end-node/end-node.js +32 -0
- package/out/ui-logic/ui-logic-node/index.d.ts +7 -0
- package/out/ui-logic/ui-logic-node/index.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-node/index.js +6 -0
- package/out/ui-logic/ui-logic-node/prepare-js-param-node/prepare-js-param-node.d.ts +16 -0
- package/out/ui-logic/ui-logic-node/prepare-js-param-node/prepare-js-param-node.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-node/prepare-js-param-node/prepare-js-param-node.js +15 -0
- package/out/ui-logic/ui-logic-node/start-node/start-node.d.ts +16 -0
- package/out/ui-logic/ui-logic-node/start-node/start-node.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-node/start-node/start-node.js +15 -0
- package/out/ui-logic/ui-logic-node/ui-logic-node.d.ts +44 -0
- package/out/ui-logic/ui-logic-node/ui-logic-node.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-node/ui-logic-node.js +22 -0
- package/out/ui-logic/ui-logic-param/ui-logic-param.d.ts +34 -0
- package/out/ui-logic/ui-logic-param/ui-logic-param.d.ts.map +1 -0
- package/out/ui-logic/ui-logic-param/ui-logic-param.js +94 -0
- package/out/ui-logic/ui-logic.d.ts +80 -0
- package/out/ui-logic/ui-logic.d.ts.map +1 -0
- package/out/ui-logic/ui-logic.js +163 -0
- package/out/utils/app-de-ui-action-util/handler/backend-ui-action-handler.d.ts.map +1 -1
- package/out/utils/app-de-ui-action-util/handler/backend-ui-action-handler.js +9 -2
- package/out/utils/app-de-ui-action-util/handler/front-ui-action-handler.d.ts +1 -1
- package/out/utils/app-de-ui-action-util/handler/front-ui-action-handler.d.ts.map +1 -1
- package/out/utils/app-de-ui-action-util/handler/front-ui-action-handler.js +19 -6
- package/out/utils/app-de-ui-action-util/handler/ui-action-handler.d.ts +0 -9
- package/out/utils/app-de-ui-action-util/handler/ui-action-handler.d.ts.map +1 -1
- package/out/utils/app-de-ui-action-util/handler/ui-action-handler.js +26 -31
- package/out/utils/index.d.ts +1 -0
- package/out/utils/index.d.ts.map +1 -1
- package/out/utils/index.js +1 -0
- package/out/utils/nav-params/nav-params.d.ts +1 -1
- package/out/utils/nav-params/nav-params.d.ts.map +1 -1
- package/out/utils/nav-params/nav-params.js +5 -0
- package/out/utils/open-redirect-view/open-redirect-view.d.ts +13 -1
- package/out/utils/open-redirect-view/open-redirect-view.d.ts.map +1 -1
- package/out/utils/open-redirect-view/open-redirect-view.js +72 -2
- package/out/utils/verify/de-rule-verify.d.ts +15 -0
- package/out/utils/verify/de-rule-verify.d.ts.map +1 -0
- package/out/utils/verify/de-rule-verify.js +379 -0
- package/out/utils/verify/form-dynamic-logic.d.ts +12 -0
- package/out/utils/verify/form-dynamic-logic.d.ts.map +1 -0
- package/out/utils/verify/form-dynamic-logic.js +51 -0
- package/out/utils/verify/index.d.ts +5 -0
- package/out/utils/verify/index.d.ts.map +1 -0
- package/out/utils/verify/index.js +4 -0
- package/out/utils/verify/panel-dynamic-logic.d.ts +12 -0
- package/out/utils/verify/panel-dynamic-logic.d.ts.map +1 -0
- package/out/utils/verify/panel-dynamic-logic.js +51 -0
- package/out/utils/verify/verify.d.ts +60 -0
- package/out/utils/verify/verify.d.ts.map +1 -0
- package/out/utils/verify/verify.js +179 -0
- package/package.json +6 -6
- package/src/config/global-config.ts +6 -0
- package/src/controller/constant/control/index.ts +1 -0
- package/src/controller/constant/control/panel/panel-notify-state.ts +6 -0
- package/src/controller/control/control.ts +8 -0
- package/src/controller/control/dataview.ts +333 -0
- package/src/controller/control/form/edit-form.ts +29 -1
- package/src/controller/control/form/form-button.ts +4 -1
- package/src/controller/control/form/form-detail.ts +41 -27
- package/src/controller/control/form/form-druipart.ts +4 -4
- package/src/controller/control/form/form-item.ts +7 -4
- package/src/controller/control/form/form.ts +25 -11
- package/src/controller/control/form/search-form.ts +2 -2
- package/src/controller/control/grid/grid-field-column.ts +8 -2
- package/src/controller/control/grid/grid-row.ts +13 -13
- package/src/controller/control/grid/grid-ua-column.ts +23 -9
- package/src/controller/control/grid/grid.ts +35 -43
- package/src/controller/control/index.ts +4 -0
- package/src/controller/control/kanban.ts +364 -0
- package/src/controller/control/list.ts +240 -2
- package/src/controller/control/md/index.ts +2 -0
- package/src/controller/control/md/md-item.ts +30 -0
- package/src/controller/control/{md.ts → md/md.ts} +74 -75
- package/src/controller/control/panel/index.ts +9 -0
- package/src/controller/control/panel/layout-panel.ts +257 -0
- package/src/controller/control/panel/panel-button.ts +87 -0
- package/src/controller/control/panel/panel-container.ts +18 -0
- package/src/controller/control/panel/panel-field.ts +111 -0
- package/src/controller/control/panel/panel-item.ts +187 -0
- package/src/controller/control/panel/panel-raw-item.ts +20 -0
- package/src/controller/control/panel/panel-tab-page.ts +18 -0
- package/src/controller/control/panel/panel-tab-panel.ts +18 -0
- package/src/controller/control/panel/view-layout-panel.ts +26 -0
- package/src/controller/control/portlet/portlet-part.ts +79 -24
- package/src/controller/control/portlet/view-portlet.ts +22 -1
- package/src/controller/control/tree.ts +11 -11
- package/src/controller/control/wizard-panel.ts +222 -0
- package/src/controller/editor/autocomplete.ts +138 -0
- package/src/controller/editor/check-box.ts +11 -0
- package/src/controller/editor/code-list-editor.ts +5 -1
- package/src/controller/editor/editor.ts +29 -16
- package/src/controller/editor/index.ts +9 -0
- package/src/controller/editor/list-box-picker.ts +78 -0
- package/src/controller/editor/list-box.ts +10 -0
- package/src/controller/editor/picker.ts +39 -10
- package/src/controller/editor/rate.ts +11 -0
- package/src/controller/editor/raw.ts +11 -0
- package/src/controller/editor/slider.ts +11 -0
- package/src/controller/editor/stepper.ts +11 -0
- package/src/controller/editor/switch.ts +11 -0
- package/src/controller/interface/ability/control/i-dataview-ability.ts +21 -0
- package/src/controller/interface/ability/control/i-edit-form-ability.ts +9 -0
- package/src/controller/interface/ability/control/i-kanban-ability.ts +12 -0
- package/src/controller/interface/ability/control/i-layout-panel-ability.ts +11 -0
- package/src/controller/interface/ability/control/i-view-layout-panel-ability.ts +11 -0
- package/src/controller/interface/ability/control/i-wizard-panel-ability.ts +20 -0
- package/src/controller/interface/ability/control/index.ts +5 -0
- package/src/controller/interface/ability/view/i-dataview-view-ability.ts +20 -0
- package/src/controller/interface/ability/view/i-kanban-view-ability.ts +20 -0
- package/src/controller/interface/ability/view/i-list-exp-view-ability.ts +20 -0
- package/src/controller/interface/ability/view/i-list-view-ability.ts +20 -0
- package/src/controller/interface/ability/view/i-wizard-view-ability.ts +12 -0
- package/src/controller/interface/ability/view/index.ts +5 -0
- package/src/controller/interface/common/button-state/i-button-state.ts +1 -1
- package/src/controller/interface/controller/layout/i-layout-controller.ts +10 -0
- package/src/controller/interface/event/control/i-dataview-event.ts +11 -0
- package/src/controller/interface/event/control/i-kanban-event.ts +11 -0
- package/src/controller/interface/event/control/i-layout-panel-event.ts +11 -0
- package/src/controller/interface/event/control/i-md-control-event.ts +12 -0
- package/src/controller/interface/event/control/i-view-layout-panel-event.ts +11 -0
- package/src/controller/interface/event/control/i-wizard-panel-event.ts +20 -0
- package/src/controller/interface/event/control/index.ts +5 -0
- package/src/controller/interface/event/view/i-dataview-view-event.ts +12 -0
- package/src/controller/interface/event/view/i-kanban-view-event.ts +12 -0
- package/src/controller/interface/event/view/i-list-exp-view-event.ts +10 -0
- package/src/controller/interface/event/view/i-list-view-event.ts +12 -0
- package/src/controller/interface/event/view/i-wizard-view-event.ts +12 -0
- package/src/controller/interface/event/view/index.ts +5 -0
- package/src/controller/interface/provider/i-panel-item-provider.ts +37 -0
- package/src/controller/interface/provider/index.ts +1 -0
- package/src/controller/interface/register/i-panel-item-register.ts +24 -0
- package/src/controller/interface/register/i-view-register.ts +2 -2
- package/src/controller/interface/register/index.ts +1 -0
- package/src/controller/neuron/nerve/control/daraview-nerve.ts +28 -0
- package/src/controller/neuron/nerve/control/edit-form-nerve.ts +1 -0
- package/src/controller/neuron/nerve/control/index.ts +5 -0
- package/src/controller/neuron/nerve/control/kanban-nerve.ts +21 -0
- package/src/controller/neuron/nerve/control/layout-panel-nerve.ts +27 -0
- package/src/controller/neuron/nerve/control/view-layout-panel-nerve.ts +27 -0
- package/src/controller/neuron/nerve/control/wizard-panel-nerve.ts +55 -0
- package/src/controller/neuron/nerve/view/dataview-view-nerve.ts +70 -0
- package/src/controller/neuron/nerve/view/grid-exp-view-nerve.ts +4 -0
- package/src/controller/neuron/nerve/view/index.ts +5 -0
- package/src/controller/neuron/nerve/view/kanban-view-nerve.ts +74 -0
- package/src/controller/neuron/nerve/view/list-exp-view-nerve.ts +86 -0
- package/src/controller/neuron/nerve/view/list-view-nerve.ts +70 -0
- package/src/controller/neuron/nerve/view/wizard-view-nerve.ts +42 -0
- package/src/controller/neuron/neuron/view.ts +27 -0
- package/src/controller/neuron/neuron/widget.ts +24 -0
- package/src/controller/register/control-register.ts +5 -0
- package/src/controller/register/editor-register.ts +6 -0
- package/src/controller/register/index.ts +1 -0
- package/src/controller/register/panel-item-register.ts +38 -0
- package/src/controller/register/view-register.ts +14 -14
- package/src/controller/state/control/dataview-state.ts +23 -0
- package/src/controller/state/control/form/form-detail/form-detail-state.ts +31 -22
- package/src/controller/state/control/form/form-detail/form-item-state.ts +16 -18
- package/src/controller/state/control/form/form-detail/form-page-state.ts +1 -13
- package/src/controller/state/control/form/form-state.ts +9 -0
- package/src/controller/state/control/index.ts +16 -0
- package/src/controller/state/control/kanban-state.ts +23 -0
- package/src/controller/state/control/list-state.ts +23 -0
- package/src/controller/state/control/panel/layout-panel-state.ts +22 -0
- package/src/controller/state/control/panel/panel-item/panel-button-state.ts +12 -0
- package/src/controller/state/control/panel/panel-item/panel-container-state.ts +12 -0
- package/src/controller/state/control/panel/panel-item/panel-field-state.ts +21 -0
- package/src/controller/state/control/panel/panel-item/panel-item-state.ts +72 -0
- package/src/controller/state/control/panel/panel-item/panel-raw-item-state.ts +12 -0
- package/src/controller/state/control/panel/panel-item/panel-tab-page-state.ts +10 -0
- package/src/controller/state/control/panel/panel-item/panel-tab-panel-state.ts +10 -0
- package/src/controller/state/control/portlet/portlet-part-state.ts +33 -0
- package/src/controller/state/control/wizard-panel-state.ts +13 -0
- package/src/controller/state/view/dataview-view-state.ts +10 -0
- package/src/controller/state/view/grid-exp-view-state.ts +8 -1
- package/src/controller/state/view/index.ts +4 -0
- package/src/controller/state/view/kanban-view-state.ts +10 -0
- package/src/controller/state/view/list-exp-view-state.ts +24 -0
- package/src/controller/state/view/list-view-state.ts +10 -0
- package/src/controller/state/view/tree-exp-view-state.ts +25 -1
- package/src/controller/utils/button-state/button-state.ts +8 -3
- package/src/controller/utils/index.ts +1 -0
- package/src/controller/utils/layout-helper/layout-helper.ts +86 -0
- package/src/controller/utils/value-rule/value-rule.ts +3 -3
- package/src/controller/view/dataview-view.ts +56 -0
- package/src/controller/view/edit-view.ts +0 -10
- package/src/controller/view/grid-exp-view.ts +55 -79
- package/src/controller/view/index.ts +5 -0
- package/src/controller/view/kanban-view.ts +54 -0
- package/src/controller/view/list-exp-view.ts +155 -0
- package/src/controller/view/list-view.ts +54 -0
- package/src/controller/view/md-view.ts +1 -31
- package/src/controller/view/opt-view.ts +1 -1
- package/src/controller/view/pickup-grid-view.ts +1 -1
- package/src/controller/view/tree-exp-view.ts +25 -38
- package/src/controller/view/view.ts +26 -7
- package/src/controller/view/wizard-view.ts +59 -0
- package/src/de-logic/de-logic-context.ts +28 -0
- package/src/de-logic/de-logic-link/de-logic-link-cond/de-logic-link-cond.ts +9 -0
- package/src/de-logic/de-logic-link/de-logic-link-group-cond/de-logic-link-group-cond.ts +97 -0
- package/src/de-logic/de-logic-link/de-logic-link-single-cond/de-logic-link-single-cond.ts +96 -0
- package/src/de-logic/de-logic-link/de-logic-link.ts +80 -0
- package/src/de-logic/de-logic-node/bind-param-node/bind-param-node.ts +33 -0
- package/src/de-logic/de-logic-node/data-set-node/data-set-node.ts +42 -0
- package/src/de-logic/de-logic-node/de-action-node/de-action-node.ts +49 -0
- package/src/de-logic/de-logic-node/de-logic-node.ts +52 -0
- package/src/de-logic/de-logic-node/end-node/end-node.ts +49 -0
- package/src/de-logic/de-logic-node/index.ts +7 -0
- package/src/de-logic/de-logic-node/prepare-param-node/prepare-param-node.ts +23 -0
- package/src/de-logic/de-logic-node/start-node/start-node.ts +23 -0
- package/src/de-logic/de-logic-node/throw-exception-node/throw-exception-node.ts +32 -0
- package/src/de-logic/de-logic-param/de-logic-param.ts +90 -0
- package/src/de-logic/de-logic.ts +190 -0
- package/src/de-logic/index.ts +45 -0
- package/src/interface/i-global-config/i-global-config.ts +34 -0
- package/src/interface/i-plugin-factory/i-plugin-factory.ts +31 -4
- package/src/interface/i-plugin-item/i-plugin-item.ts +27 -0
- package/src/interface/i-ui-action-result/i-ui-action-result.ts +20 -0
- package/src/interface/index.ts +1 -0
- package/src/model.ts +21 -1
- package/src/plugin/remote-plugin-item/remote-plugin-item.ts +14 -3
- package/src/register/register-center.ts +12 -0
- package/src/service/authority/authority.service.ts +31 -32
- package/src/service/dto/method.dto.ts +25 -23
- package/src/service/entity/entity.ts +12 -2
- package/src/service/interface/i-tree-node-data/i-tree-node-data.ts +9 -0
- package/src/service/service/entity/method/de-action.ts +16 -5
- package/src/service/service/entity/method/method-renturn.ts +2 -2
- package/src/service/service/entity/method/method.ts +33 -26
- package/src/service/service/widget/control-service.ts +7 -1
- package/src/service/service/widget/dataview-service.ts +34 -0
- package/src/service/service/widget/edit-form-service.ts +45 -7
- package/src/service/service/widget/index.ts +3 -0
- package/src/service/service/widget/kanban-service.ts +34 -0
- package/src/service/service/widget/md-control-service.ts +13 -3
- package/src/service/service/widget/tree-service.ts +55 -21
- package/src/service/service/widget/wizard-panel-service.ts +56 -0
- package/src/service/utils/dynamic-code-list/dynamic-code-list.ts +6 -2
- package/src/service/utils/index.ts +0 -1
- package/src/service/utils/route-context/route-context.ts +33 -0
- package/src/service/vo/control.vo.ts +4 -1
- package/src/service/vo/tree-node-data/tree-data-set-node-data.ts +11 -5
- package/src/service/vo/tree-node-data/tree-node-data.ts +20 -2
- package/src/service/vo/tree-node-data/tree-static-node-data.ts +21 -5
- package/src/ui-logic/index.ts +38 -0
- package/src/ui-logic/ui-logic-context.ts +28 -0
- package/src/ui-logic/ui-logic-link/ui-logic-link-cond/ui-logic-link-cond.ts +9 -0
- package/src/ui-logic/ui-logic-link/ui-logic-link-group-cond/ui-logic-link-group-cond.ts +97 -0
- package/src/ui-logic/ui-logic-link/ui-logic-link-single-cond/ui-logic-link-single-cond.ts +96 -0
- package/src/ui-logic/ui-logic-link/ui-logic-link.ts +112 -0
- package/src/ui-logic/ui-logic-node/de-action-node/de-action-node.ts +50 -0
- package/src/ui-logic/ui-logic-node/de-ui-action-node/de-ui-action-node.ts +52 -0
- package/src/ui-logic/ui-logic-node/end-node/end-node.ts +44 -0
- package/src/ui-logic/ui-logic-node/index.ts +6 -0
- package/src/ui-logic/ui-logic-node/prepare-js-param-node/prepare-js-param-node.ts +24 -0
- package/src/ui-logic/ui-logic-node/start-node/start-node.ts +24 -0
- package/src/ui-logic/ui-logic-node/ui-logic-node.ts +53 -0
- package/src/ui-logic/ui-logic-param/ui-logic-param.ts +86 -0
- package/src/ui-logic/ui-logic.ts +197 -0
- package/src/utils/app-de-ui-action-util/handler/backend-ui-action-handler.ts +16 -2
- package/src/utils/app-de-ui-action-util/handler/front-ui-action-handler.ts +27 -9
- package/src/utils/app-de-ui-action-util/handler/ui-action-handler.ts +40 -34
- package/src/utils/index.ts +1 -0
- package/src/utils/nav-params/nav-params.ts +7 -1
- package/src/utils/open-redirect-view/open-redirect-view.ts +106 -2
- package/src/utils/verify/de-rule-verify.ts +512 -0
- package/src/utils/verify/form-dynamic-logic.ts +69 -0
- package/src/utils/verify/index.ts +4 -0
- package/src/utils/verify/panel-dynamic-logic.ts +73 -0
- package/src/utils/verify/verify.ts +201 -0
- package/out/controller/control/md.d.ts.map +0 -1
- package/out/service/utils/ibiz-verify/ibiz-verify.d.ts +0 -209
- package/out/service/utils/ibiz-verify/ibiz-verify.d.ts.map +0 -1
- package/out/service/utils/ibiz-verify/ibiz-verify.js +0 -653
- package/src/service/utils/ibiz-verify/ibiz-verify.ts +0 -795
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ListViewNeuron } from '../..';
|
|
2
|
+
import { MDViewNerve } from './md-view-nerve';
|
|
3
|
+
/**
|
|
4
|
+
* 列表视图神经系统
|
|
5
|
+
*
|
|
6
|
+
* @author lxm
|
|
7
|
+
* @date 2022-09-13 16:09:59
|
|
8
|
+
* @export
|
|
9
|
+
* @class ControlNerve
|
|
10
|
+
* @extends {Nerve<T, C>}
|
|
11
|
+
* @template T
|
|
12
|
+
* @template C
|
|
13
|
+
*/
|
|
14
|
+
export class ListViewNerve extends MDViewNerve {
|
|
15
|
+
createNeuron() {
|
|
16
|
+
return new ListViewNeuron(this.bindAbility());
|
|
17
|
+
}
|
|
18
|
+
bindAbility() {
|
|
19
|
+
return Object.assign(Object.assign({}, super.bindAbility()), { remove: this.controller.remove.bind(this.controller) });
|
|
20
|
+
}
|
|
21
|
+
inclusive(name) {
|
|
22
|
+
return name === 'list' || super.inclusive(name);
|
|
23
|
+
}
|
|
24
|
+
connect(name, neuron) {
|
|
25
|
+
super.connect(name, neuron);
|
|
26
|
+
// 连接表格神经元,并监听其事件
|
|
27
|
+
if (name === 'list') {
|
|
28
|
+
this.list = neuron;
|
|
29
|
+
this.list.evt.on('destroyed', () => {
|
|
30
|
+
this.list = undefined;
|
|
31
|
+
});
|
|
32
|
+
this.list.evt.on('beforeLoad', this.controller.onBeforeLoad.bind(this.controller));
|
|
33
|
+
this.list.evt.on('dataActive', this.controller.onDataActive.bind(this.controller));
|
|
34
|
+
this.list.evt.on('selectionChange', this.controller.onSelectionChange.bind(this.controller));
|
|
35
|
+
this.list.evt.on('afterSave', (...args) => this.controller.onAfterSave(...args, name));
|
|
36
|
+
this.list.evt.on('afterRemove', (...args) => this.controller.onAfterRemove(...args, name));
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
destroy() {
|
|
40
|
+
super.destroy();
|
|
41
|
+
this.list = undefined;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ViewNerve, WizardViewNeuron, WizardPanelNeuron, Neuron } from '../..';
|
|
2
|
+
import { WizardViewController } from '../../..';
|
|
3
|
+
/**
|
|
4
|
+
* 向导视图神经系统
|
|
5
|
+
*
|
|
6
|
+
* @author lxm
|
|
7
|
+
* @date 2022-10-14 14:10:48
|
|
8
|
+
* @export
|
|
9
|
+
* @class WizardViewNerve
|
|
10
|
+
* @extends {ViewNerve<WizardViewNeuron, WizardViewController>}
|
|
11
|
+
*/
|
|
12
|
+
export declare class WizardViewNerve extends ViewNerve<WizardViewNeuron, WizardViewController> {
|
|
13
|
+
wizardPanel: WizardPanelNeuron;
|
|
14
|
+
protected createNeuron(): WizardViewNeuron;
|
|
15
|
+
inclusive(name: string): boolean;
|
|
16
|
+
connect(name: string, neuron: Neuron): void;
|
|
17
|
+
destroy(): void;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=wizard-view-nerve.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wizard-view-nerve.d.ts","sourceRoot":"","sources":["../../../../../src/controller/neuron/nerve/view/wizard-view-nerve.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAC/E,OAAO,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAEhD;;;;;;;;GAQG;AACH,qBAAa,eAAgB,SAAQ,SAAS,CAC5C,gBAAgB,EAChB,oBAAoB,CACrB;IACC,WAAW,EAAG,iBAAiB,CAAC;IAEhC,SAAS,CAAC,YAAY,IAAI,gBAAgB;IAI1C,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAIhC,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI;IAW3C,OAAO,IAAI,IAAI;CAIhB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ViewNerve, WizardViewNeuron } from '../..';
|
|
2
|
+
/**
|
|
3
|
+
* 向导视图神经系统
|
|
4
|
+
*
|
|
5
|
+
* @author lxm
|
|
6
|
+
* @date 2022-10-14 14:10:48
|
|
7
|
+
* @export
|
|
8
|
+
* @class WizardViewNerve
|
|
9
|
+
* @extends {ViewNerve<WizardViewNeuron, WizardViewController>}
|
|
10
|
+
*/
|
|
11
|
+
export class WizardViewNerve extends ViewNerve {
|
|
12
|
+
createNeuron() {
|
|
13
|
+
return new WizardViewNeuron(this.bindAbility());
|
|
14
|
+
}
|
|
15
|
+
inclusive(name) {
|
|
16
|
+
return name === 'wizardpanel' || super.inclusive(name);
|
|
17
|
+
}
|
|
18
|
+
connect(name, neuron) {
|
|
19
|
+
super.connect(name, neuron);
|
|
20
|
+
if (name === 'wizardpanel') {
|
|
21
|
+
this.wizardPanel = neuron;
|
|
22
|
+
this.wizardPanel.evt.on('afterFinish', this.controller.onAfterFinish.bind(this.controller));
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
destroy() {
|
|
26
|
+
super.destroy();
|
|
27
|
+
this.wizardPanel = undefined;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Neuron } from '..';
|
|
2
|
-
import { IAppPortalViewAbility, IEditView3Ability, IEditViewAbility, IGridViewAbility, IMDViewAbility, IMPickupViewAbility, IOptViewAbility, IPickupGridViewAbility, IPickupViewAbility, ITabExpViewAbility, ITreeExpViewAbility, IViewAbility, IWFDynaActionViewAbility, IWFDynaEditView3Ability, IWFDynaEditViewAbility, IWFDynaStartViewAbility, IWFEditViewAbility, IWFViewAbility, IGridExpViewAbility, IDashboardViewAbility } from '../../interface/ability';
|
|
3
|
-
import { IEditView3Event, IEditViewEvent, IGridViewEvent, IMDViewEvent, IMPickupViewEvent, IOptViewEvent, IPickupGridViewEvent, IPickupViewEvent, ITabExpViewEvent, ITreeExpViewEvent, IViewEvent, IWFDynaActionViewEvent, IWFDynaEditView3Event, IWFDynaEditViewEvent, IWFDynaStartViewEvent, IWFEditViewEvent, IWFViewEvent, IGridExpViewEvent, IDashboardViewEvent } from '../../interface/event';
|
|
2
|
+
import { IAppPortalViewAbility, IEditView3Ability, IEditViewAbility, IGridViewAbility, IMDViewAbility, IMPickupViewAbility, IOptViewAbility, IPickupGridViewAbility, IPickupViewAbility, ITabExpViewAbility, ITreeExpViewAbility, IViewAbility, IWFDynaActionViewAbility, IWFDynaEditView3Ability, IWFDynaEditViewAbility, IWFDynaStartViewAbility, IWFEditViewAbility, IWFViewAbility, IGridExpViewAbility, IDashboardViewAbility, IDataViewViewAbility, IListViewAbility, IWizardViewAbility, IListExpViewAbility, IKanbanViewAbility } from '../../interface/ability';
|
|
3
|
+
import { IEditView3Event, IEditViewEvent, IGridViewEvent, IMDViewEvent, IMPickupViewEvent, IOptViewEvent, IPickupGridViewEvent, IPickupViewEvent, ITabExpViewEvent, ITreeExpViewEvent, IViewEvent, IWFDynaActionViewEvent, IWFDynaEditView3Event, IWFDynaEditViewEvent, IWFDynaStartViewEvent, IWFEditViewEvent, IWFViewEvent, IGridExpViewEvent, IDashboardViewEvent, IDataViewViewEvent, IListViewEvent, IWizardViewEvent, IListExpViewEvent, IKanbanViewEvent } from '../../interface/event';
|
|
4
4
|
import { IAppPortalViewEvent } from '../../interface/event/view/i-app-portal-view-event';
|
|
5
5
|
export declare class ViewNeuron extends Neuron<IViewEvent, IViewAbility> {
|
|
6
6
|
}
|
|
@@ -14,6 +14,10 @@ export declare class MDViewNeuron extends Neuron<IMDViewEvent, IMDViewAbility> {
|
|
|
14
14
|
}
|
|
15
15
|
export declare class GridViewNeuron extends Neuron<IGridViewEvent, IGridViewAbility> {
|
|
16
16
|
}
|
|
17
|
+
export declare class DataViewViewNeuron extends Neuron<IDataViewViewEvent, IDataViewViewAbility> {
|
|
18
|
+
}
|
|
19
|
+
export declare class ListViewNeuron extends Neuron<IListViewEvent, IListViewAbility> {
|
|
20
|
+
}
|
|
17
21
|
export declare class PickupGridViewNeuron extends Neuron<IPickupGridViewEvent, IPickupGridViewAbility> {
|
|
18
22
|
}
|
|
19
23
|
export declare class PickupViewNeuron extends Neuron<IPickupViewEvent, IPickupViewAbility> {
|
|
@@ -42,4 +46,10 @@ export declare class GridExpViewNeuron extends Neuron<IGridExpViewEvent, IGridEx
|
|
|
42
46
|
}
|
|
43
47
|
export declare class DashboardViewNeuron extends Neuron<IDashboardViewEvent, IDashboardViewAbility> {
|
|
44
48
|
}
|
|
49
|
+
export declare class WizardViewNeuron extends Neuron<IWizardViewEvent, IWizardViewAbility> {
|
|
50
|
+
}
|
|
51
|
+
export declare class ListExpViewNeuron extends Neuron<IListExpViewEvent, IListExpViewAbility> {
|
|
52
|
+
}
|
|
53
|
+
export declare class KanbanViewNeuron extends Neuron<IKanbanViewEvent, IKanbanViewAbility> {
|
|
54
|
+
}
|
|
45
55
|
//# sourceMappingURL=view.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"view.d.ts","sourceRoot":"","sources":["../../../../src/controller/neuron/neuron/view.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC;AAC5B,OAAO,EACL,qBAAqB,EACrB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,eAAe,EACf,sBAAsB,EACtB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,YAAY,EACZ,wBAAwB,EACxB,uBAAuB,EACvB,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,cAAc,EACd,mBAAmB,EACnB,qBAAqB,
|
|
1
|
+
{"version":3,"file":"view.d.ts","sourceRoot":"","sources":["../../../../src/controller/neuron/neuron/view.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC;AAC5B,OAAO,EACL,qBAAqB,EACrB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,eAAe,EACf,sBAAsB,EACtB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,YAAY,EACZ,wBAAwB,EACxB,uBAAuB,EACvB,sBAAsB,EACtB,uBAAuB,EACvB,kBAAkB,EAClB,cAAc,EACd,mBAAmB,EACnB,qBAAqB,EACrB,oBAAoB,EACpB,gBAAgB,EAChB,kBAAkB,EAClB,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,eAAe,EACf,cAAc,EACd,cAAc,EACd,YAAY,EACZ,iBAAiB,EACjB,aAAa,EACb,oBAAoB,EACpB,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EACjB,UAAU,EACV,sBAAsB,EACtB,qBAAqB,EACrB,oBAAoB,EACpB,qBAAqB,EACrB,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,EAClB,cAAc,EACd,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EACjB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,mBAAmB,EAAE,MAAM,oDAAoD,CAAC;AAEzF,qBAAa,UAAW,SAAQ,MAAM,CAAC,UAAU,EAAE,YAAY,CAAC;CAAG;AAEnE,qBAAa,cAAe,SAAQ,MAAM,CAAC,cAAc,EAAE,gBAAgB,CAAC;CAAG;AAC/E,qBAAa,eAAgB,SAAQ,MAAM,CACzC,eAAe,EACf,iBAAiB,CAClB;CAAG;AACJ,qBAAa,aAAc,SAAQ,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC;CAAG;AAG5E,qBAAa,YAAa,SAAQ,MAAM,CAAC,YAAY,EAAE,cAAc,CAAC;CAAG;AACzE,qBAAa,cAAe,SAAQ,MAAM,CAAC,cAAc,EAAE,gBAAgB,CAAC;CAAG;AAC/E,qBAAa,kBAAmB,SAAQ,MAAM,CAC5C,kBAAkB,EAClB,oBAAoB,CACrB;CAAG;AACJ,qBAAa,cAAe,SAAQ,MAAM,CAAC,cAAc,EAAE,gBAAgB,CAAC;CAAG;AAG/E,qBAAa,oBAAqB,SAAQ,MAAM,CAC9C,oBAAoB,EACpB,sBAAsB,CACvB;CAAG;AACJ,qBAAa,gBAAiB,SAAQ,MAAM,CAC1C,gBAAgB,EAChB,kBAAkB,CACnB;CAAG;AACJ,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,iBAAiB,EACjB,mBAAmB,CACpB;CAAG;AAGJ,qBAAa,YAAa,SAAQ,MAAM,CAAC,YAAY,EAAE,cAAc,CAAC;CAAG;AACzE,qBAAa,gBAAiB,SAAQ,MAAM,CAC1C,gBAAgB,EAChB,kBAAkB,CACnB;CAAG;AACJ,qBAAa,oBAAqB,SAAQ,MAAM,CAC9C,oBAAoB,EACpB,sBAAsB,CACvB;CAAG;AACJ,qBAAa,qBAAsB,SAAQ,MAAM,CAC/C,qBAAqB,EACrB,uBAAuB,CACxB;CAAG;AACJ,qBAAa,qBAAsB,SAAQ,MAAM,CAC/C,qBAAqB,EACrB,uBAAuB,CACxB;CAAG;AACJ,qBAAa,sBAAuB,SAAQ,MAAM,CAChD,sBAAsB,EACtB,wBAAwB,CACzB;CAAG;AAEJ,qBAAa,mBAAoB,SAAQ,MAAM,CAC7C,mBAAmB,EACnB,qBAAqB,CACtB;CAAG;AAGJ,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,iBAAiB,EACjB,mBAAmB,CACpB;CAAG;AACJ,qBAAa,gBAAiB,SAAQ,MAAM,CAC1C,gBAAgB,EAChB,kBAAkB,CACnB;CAAG;AACJ,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,iBAAiB,EACjB,mBAAmB,CACpB;CAAG;AACJ,qBAAa,mBAAoB,SAAQ,MAAM,CAC7C,mBAAmB,EACnB,qBAAqB,CACtB;CAAG;AACJ,qBAAa,gBAAiB,SAAQ,MAAM,CAC1C,gBAAgB,EAChB,kBAAkB,CACnB;CAAG;AACJ,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,iBAAiB,EACjB,mBAAmB,CACpB;CAAG;AACJ,qBAAa,gBAAiB,SAAQ,MAAM,CAC1C,gBAAgB,EAChB,kBAAkB,CACnB;CAAG"}
|
|
@@ -14,6 +14,10 @@ export class MDViewNeuron extends Neuron {
|
|
|
14
14
|
}
|
|
15
15
|
export class GridViewNeuron extends Neuron {
|
|
16
16
|
}
|
|
17
|
+
export class DataViewViewNeuron extends Neuron {
|
|
18
|
+
}
|
|
19
|
+
export class ListViewNeuron extends Neuron {
|
|
20
|
+
}
|
|
17
21
|
// *选择类视图
|
|
18
22
|
export class PickupGridViewNeuron extends Neuron {
|
|
19
23
|
}
|
|
@@ -45,3 +49,9 @@ export class GridExpViewNeuron extends Neuron {
|
|
|
45
49
|
}
|
|
46
50
|
export class DashboardViewNeuron extends Neuron {
|
|
47
51
|
}
|
|
52
|
+
export class WizardViewNeuron extends Neuron {
|
|
53
|
+
}
|
|
54
|
+
export class ListExpViewNeuron extends Neuron {
|
|
55
|
+
}
|
|
56
|
+
export class KanbanViewNeuron extends Neuron {
|
|
57
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Neuron } from '..';
|
|
2
|
-
import { IAppMenuAbility, IControlAbility, IDashboardAbility, IEditFormAbility, IFormAbility, IGridAbility, IListAbility, IMDControlAbility, IPickupViewPanelAbility, ISearchFormAbility, IToolbarAbility, ITreeAbility, IViewPanelAbility } from '../../interface/ability';
|
|
3
|
-
import { IAppMenuEvent, IControlEvent, IDashboardEvent, IEditFormEvent, IFormEvent, IGridEvent, IListEvent, IMDControlEvent, IPickupViewPanelEvent, ISearchFormEvent, IToolbarEvent, ITreeEvent, IViewPanelEvent } from '../../interface/event';
|
|
2
|
+
import { IAppMenuAbility, IControlAbility, IDashboardAbility, IEditFormAbility, IFormAbility, IGridAbility, IListAbility, IMDControlAbility, IPickupViewPanelAbility, ISearchFormAbility, IToolbarAbility, ITreeAbility, IViewPanelAbility, IDataViewAbility, ILayoutPanelAbility, IViewLayoutPanelAbility, IWizardPanelAbility, IKanbanAbility } from '../../interface/ability';
|
|
3
|
+
import { IAppMenuEvent, IControlEvent, IDashboardEvent, IEditFormEvent, IFormEvent, IGridEvent, IListEvent, IMDControlEvent, IPickupViewPanelEvent, ISearchFormEvent, IToolbarEvent, ITreeEvent, IViewPanelEvent, IDataViewEvent, IViewLayoutPanelEvent, ILayoutPanelEvent, IWizardPanelEvent, IKanbanEvent } from '../../interface/event';
|
|
4
4
|
export declare class ControlNeuron extends Neuron<IControlEvent, IControlAbility> {
|
|
5
5
|
}
|
|
6
6
|
export declare class AppMenuNeuron extends Neuron<IAppMenuEvent, IAppMenuAbility> {
|
|
@@ -27,4 +27,14 @@ export declare class PickupViewPanelNeuron extends Neuron<IPickupViewPanelEvent,
|
|
|
27
27
|
}
|
|
28
28
|
export declare class DashboardNeuron extends Neuron<IDashboardEvent, IDashboardAbility> {
|
|
29
29
|
}
|
|
30
|
+
export declare class DataViewNeuron extends Neuron<IDataViewEvent, IDataViewAbility> {
|
|
31
|
+
}
|
|
32
|
+
export declare class LayoutPanelNeuron extends Neuron<ILayoutPanelEvent, ILayoutPanelAbility> {
|
|
33
|
+
}
|
|
34
|
+
export declare class ViewLayoutPanelNeuron extends Neuron<IViewLayoutPanelEvent, IViewLayoutPanelAbility> {
|
|
35
|
+
}
|
|
36
|
+
export declare class WizardPanelNeuron extends Neuron<IWizardPanelEvent, IWizardPanelAbility> {
|
|
37
|
+
}
|
|
38
|
+
export declare class KanbanNeuron extends Neuron<IKanbanEvent, IKanbanAbility> {
|
|
39
|
+
}
|
|
30
40
|
//# sourceMappingURL=widget.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget.d.ts","sourceRoot":"","sources":["../../../../src/controller/neuron/neuron/widget.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC;AAC5B,OAAO,EACL,eAAe,EACf,eAAe,EACf,iBAAiB,EACjB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,iBAAiB,EACjB,uBAAuB,EACvB,kBAAkB,EAClB,eAAe,EACf,YAAY,EACZ,iBAAiB,
|
|
1
|
+
{"version":3,"file":"widget.d.ts","sourceRoot":"","sources":["../../../../src/controller/neuron/neuron/widget.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,IAAI,CAAC;AAC5B,OAAO,EACL,eAAe,EACf,eAAe,EACf,iBAAiB,EACjB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,iBAAiB,EACjB,uBAAuB,EACvB,kBAAkB,EAClB,eAAe,EACf,YAAY,EACZ,iBAAiB,EACjB,gBAAgB,EAChB,mBAAmB,EACnB,uBAAuB,EACvB,mBAAmB,EACnB,cAAc,EACf,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,aAAa,EACb,aAAa,EACb,eAAe,EACf,cAAc,EACd,UAAU,EACV,UAAU,EACV,UAAU,EACV,eAAe,EACf,qBAAqB,EACrB,gBAAgB,EAChB,aAAa,EACb,UAAU,EACV,eAAe,EACf,cAAc,EACd,qBAAqB,EACrB,iBAAiB,EACjB,iBAAiB,EACjB,YAAY,EACb,MAAM,uBAAuB,CAAC;AAE/B,qBAAa,aAAc,SAAQ,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC;CAAG;AAC5E,qBAAa,aAAc,SAAQ,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC;CAAG;AAC5E,qBAAa,aAAc,SAAQ,MAAM,CAAC,aAAa,EAAE,eAAe,CAAC;CAAG;AAC5E,qBAAa,UAAW,SAAQ,MAAM,CAAC,UAAU,EAAE,YAAY,CAAC;CAAG;AACnE,qBAAa,cAAe,SAAQ,MAAM,CAAC,cAAc,EAAE,gBAAgB,CAAC;CAAG;AAC/E,qBAAa,gBAAiB,SAAQ,MAAM,CAC1C,gBAAgB,EAChB,kBAAkB,CACnB;CAAG;AAGJ,qBAAa,eAAgB,SAAQ,MAAM,CACzC,eAAe,EACf,iBAAiB,CAClB;CAAG;AACJ,qBAAa,UAAW,SAAQ,MAAM,CAAC,UAAU,EAAE,YAAY,CAAC;CAAG;AACnE,qBAAa,UAAW,SAAQ,MAAM,CAAC,UAAU,EAAE,YAAY,CAAC;CAAG;AACnE,qBAAa,UAAW,SAAQ,MAAM,CAAC,UAAU,EAAE,YAAY,CAAC;CAAG;AAGnE,qBAAa,eAAgB,SAAQ,MAAM,CACzC,eAAe,EACf,iBAAiB,CAClB;CAAG;AACJ,qBAAa,qBAAsB,SAAQ,MAAM,CAC/C,qBAAqB,EACrB,uBAAuB,CACxB;CAAG;AAEJ,qBAAa,eAAgB,SAAQ,MAAM,CACzC,eAAe,EACf,iBAAiB,CAClB;CAAG;AACJ,qBAAa,cAAe,SAAQ,MAAM,CAAC,cAAc,EAAE,gBAAgB,CAAC;CAAG;AAC/E,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,iBAAiB,EACjB,mBAAmB,CACpB;CAAG;AACJ,qBAAa,qBAAsB,SAAQ,MAAM,CAC/C,qBAAqB,EACrB,uBAAuB,CACxB;CAAG;AACJ,qBAAa,iBAAkB,SAAQ,MAAM,CAC3C,iBAAiB,EACjB,mBAAmB,CACpB;CAAG;AACJ,qBAAa,YAAa,SAAQ,MAAM,CAAC,YAAY,EAAE,cAAc,CAAC;CAAG"}
|
|
@@ -28,3 +28,13 @@ export class PickupViewPanelNeuron extends Neuron {
|
|
|
28
28
|
}
|
|
29
29
|
export class DashboardNeuron extends Neuron {
|
|
30
30
|
}
|
|
31
|
+
export class DataViewNeuron extends Neuron {
|
|
32
|
+
}
|
|
33
|
+
export class LayoutPanelNeuron extends Neuron {
|
|
34
|
+
}
|
|
35
|
+
export class ViewLayoutPanelNeuron extends Neuron {
|
|
36
|
+
}
|
|
37
|
+
export class WizardPanelNeuron extends Neuron {
|
|
38
|
+
}
|
|
39
|
+
export class KanbanNeuron extends Neuron {
|
|
40
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-register.d.ts","sourceRoot":"","sources":["../../../src/controller/register/control-register.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAElE;;;;;;;;;GASG;AACH,qBAAa,eACX,SAAQ,YAAY,CAAC,gBAAgB,CACrC,YAAW,gBAAgB;IAErB,GAAG,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"control-register.d.ts","sourceRoot":"","sources":["../../../src/controller/register/control-register.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAElE;;;;;;;;;GASG;AACH,qBAAa,eACX,SAAQ,YAAY,CAAC,gBAAgB,CACrC,YAAW,gBAAgB;IAErB,GAAG,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,gBAAgB,CAAC;CAkC1D"}
|
|
@@ -12,6 +12,7 @@ import { RegisterBase } from '../../register';
|
|
|
12
12
|
*/
|
|
13
13
|
export class ControlRegister extends RegisterBase {
|
|
14
14
|
async get(model) {
|
|
15
|
+
await ibiz.plugin.loadPredefinedPlugin(`CONTROL_${model.source.controlType}_${model.source.controlStyle || 'DEFAULT'}`);
|
|
15
16
|
// 先找插件标识和类型
|
|
16
17
|
if (model.source.getPSSysPFPlugin()) {
|
|
17
18
|
await ibiz.plugin.loadPlugin(model.source.getPSSysPFPlugin());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editor-register.d.ts","sourceRoot":"","sources":["../../../src/controller/register/editor-register.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEhE;;;;;;;;;GASG;AACH,qBAAa,cACX,SAAQ,YAAY,CAAC,eAAe,CACpC,YAAW,eAAe;IAEpB,GAAG,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAAC,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"editor-register.d.ts","sourceRoot":"","sources":["../../../src/controller/register/editor-register.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEhE;;;;;;;;;GASG;AACH,qBAAa,cACX,SAAQ,YAAY,CAAC,eAAe,CACpC,YAAW,eAAe;IAEpB,GAAG,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAAC,eAAe,CAAC;CAmCxD"}
|
|
@@ -12,6 +12,8 @@ import { RegisterBase } from '../../register';
|
|
|
12
12
|
*/
|
|
13
13
|
export class EditorRegister extends RegisterBase {
|
|
14
14
|
async get(model) {
|
|
15
|
+
// 加载预置的编辑器插件
|
|
16
|
+
await ibiz.plugin.loadPredefinedPlugin(`EDITOR_${model.source.editorType}_${model.source.editorStyle || 'DEFAULT'}`);
|
|
15
17
|
// 先找插件标识和类型
|
|
16
18
|
if (model.source.getPSSysPFPlugin()) {
|
|
17
19
|
await ibiz.plugin.loadPlugin(model.source.getPSSysPFPlugin());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/controller/register/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/controller/register/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PanelItemModel } from '@ibiz-template/model';
|
|
2
|
+
import { RegisterBase } from '../../register';
|
|
3
|
+
import { IPanelItemProvider, IPanelItemRegister } from '../interface';
|
|
4
|
+
/**
|
|
5
|
+
* 面板成员注册器
|
|
6
|
+
*
|
|
7
|
+
* @author lxm
|
|
8
|
+
* @date 2023-02-07 05:29:35
|
|
9
|
+
* @export
|
|
10
|
+
* @class PanelItemRegister
|
|
11
|
+
* @extends {RegisterBase<IPanelItemProvider>}
|
|
12
|
+
* @implements {IPanelItemRegister}
|
|
13
|
+
*/
|
|
14
|
+
export declare class PanelItemRegister extends RegisterBase<IPanelItemProvider> implements IPanelItemRegister {
|
|
15
|
+
get(model: PanelItemModel): Promise<IPanelItemProvider>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=panel-item-register.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"panel-item-register.d.ts","sourceRoot":"","sources":["../../../src/controller/register/panel-item-register.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAEtE;;;;;;;;;GASG;AACH,qBAAa,iBACX,SAAQ,YAAY,CAAC,kBAAkB,CACvC,YAAW,kBAAkB;IAEvB,GAAG,CAAC,KAAK,EAAE,cAAc,GAAG,OAAO,CAAC,kBAAkB,CAAC;CAkB9D"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { RuntimeError } from '@ibiz-template/core';
|
|
2
|
+
import { RegisterBase } from '../../register';
|
|
3
|
+
/**
|
|
4
|
+
* 面板成员注册器
|
|
5
|
+
*
|
|
6
|
+
* @author lxm
|
|
7
|
+
* @date 2023-02-07 05:29:35
|
|
8
|
+
* @export
|
|
9
|
+
* @class PanelItemRegister
|
|
10
|
+
* @extends {RegisterBase<IPanelItemProvider>}
|
|
11
|
+
* @implements {IPanelItemRegister}
|
|
12
|
+
*/
|
|
13
|
+
export class PanelItemRegister extends RegisterBase {
|
|
14
|
+
async get(model) {
|
|
15
|
+
// 先找插件标识和类型
|
|
16
|
+
if (model.source.getPSSysPFPlugin()) {
|
|
17
|
+
await ibiz.plugin.loadPlugin(model.source.getPSSysPFPlugin());
|
|
18
|
+
const { pluginType, pluginCode } = model.source.getPSSysPFPlugin();
|
|
19
|
+
const key = `${pluginType}_${pluginCode}`;
|
|
20
|
+
if (this.providers.has(key)) {
|
|
21
|
+
return this.providers.get(key);
|
|
22
|
+
}
|
|
23
|
+
ibiz.log.error(`找不到插件标识${key}对应的适配器`, model);
|
|
24
|
+
}
|
|
25
|
+
// 再找面板成员类型
|
|
26
|
+
const { itemType } = model.source;
|
|
27
|
+
if (this.providers.has(itemType)) {
|
|
28
|
+
return this.providers.get(itemType);
|
|
29
|
+
}
|
|
30
|
+
throw new RuntimeError(`找不到面板成员类型${itemType}对应的适配器`);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ViewModel } from '@ibiz-template/model';
|
|
2
2
|
import { RegisterBase } from '../../register';
|
|
3
3
|
import { IViewRegister, IViewProvider } from '../interface';
|
|
4
4
|
/**
|
|
@@ -12,6 +12,6 @@ import { IViewRegister, IViewProvider } from '../interface';
|
|
|
12
12
|
* @implements {IViewRegister}
|
|
13
13
|
*/
|
|
14
14
|
export declare class ViewRegister extends RegisterBase<IViewProvider> implements IViewRegister {
|
|
15
|
-
get(model:
|
|
15
|
+
get(model: ViewModel): Promise<IViewProvider>;
|
|
16
16
|
}
|
|
17
17
|
//# sourceMappingURL=view-register.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"view-register.d.ts","sourceRoot":"","sources":["../../../src/controller/register/view-register.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"view-register.d.ts","sourceRoot":"","sources":["../../../src/controller/register/view-register.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACxE,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAE5D;;;;;;;;;GASG;AACH,qBAAa,YACX,SAAQ,YAAY,CAAC,aAAa,CAClC,YAAW,aAAa;IAElB,GAAG,CAAC,KAAK,EAAE,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC;CAkCpD"}
|
|
@@ -12,34 +12,32 @@ import { RegisterBase } from '../../register';
|
|
|
12
12
|
*/
|
|
13
13
|
export class ViewRegister extends RegisterBase {
|
|
14
14
|
async get(model) {
|
|
15
|
-
|
|
16
|
-
if (!model.isFill) {
|
|
17
|
-
await model.fill(true);
|
|
18
|
-
}
|
|
15
|
+
await ibiz.plugin.loadPredefinedPlugin(`VIEW_${model.source.viewType}_${model.source.viewStyle || 'DEFAULT'}`);
|
|
19
16
|
// 先找插件标识和类型
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
const { source } = model;
|
|
18
|
+
if (source.getPSSysPFPlugin()) {
|
|
19
|
+
await ibiz.plugin.loadPlugin(source.getPSSysPFPlugin());
|
|
20
|
+
const { pluginType, pluginCode } = source.getPSSysPFPlugin();
|
|
23
21
|
const key = `${pluginType}_${pluginCode}`;
|
|
24
22
|
if (this.providers.has(key)) {
|
|
25
23
|
return this.providers.get(key);
|
|
26
24
|
}
|
|
27
|
-
ibiz.log.error(`找不到插件标识[${key}]对应的适配器`,
|
|
25
|
+
ibiz.log.error(`找不到插件标识[${key}]对应的适配器`, source);
|
|
28
26
|
}
|
|
29
27
|
// 再找视图类型和视图样式
|
|
30
|
-
const { viewType, viewStyle } =
|
|
28
|
+
const { viewType, viewStyle } = source;
|
|
31
29
|
if (viewStyle && viewStyle !== 'DEFAULT') {
|
|
32
30
|
const key = `${viewType}_${viewStyle}`;
|
|
33
31
|
if (this.providers.has(key)) {
|
|
34
32
|
return this.providers.get(key);
|
|
35
33
|
}
|
|
36
|
-
ibiz.log.error(`找不到视图类型:[${viewType}]的视图样式:[${viewStyle}]对应的适配器`,
|
|
34
|
+
ibiz.log.error(`找不到视图类型:[${viewType}]的视图样式:[${viewStyle}]对应的适配器`, source);
|
|
37
35
|
}
|
|
38
36
|
// 最后找视图类型
|
|
39
37
|
if (this.providers.has(viewType)) {
|
|
40
38
|
return this.providers.get(viewType);
|
|
41
39
|
}
|
|
42
|
-
ibiz.log.error(`找不到视图类型[${viewType}]对应的适配器`,
|
|
43
|
-
throw new UnsupportedModelError(
|
|
40
|
+
ibiz.log.error(`找不到视图类型[${viewType}]对应的适配器`, source);
|
|
41
|
+
throw new UnsupportedModelError(source, `暂未实现`);
|
|
44
42
|
}
|
|
45
43
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { MDItemController } from '../../control/md';
|
|
2
|
+
import { MDState } from './md-state';
|
|
3
|
+
/**
|
|
4
|
+
* 卡片部件UI状态
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @class DataViewState
|
|
8
|
+
* @extends {MDState}
|
|
9
|
+
*/
|
|
10
|
+
export declare class DataViewState extends MDState {
|
|
11
|
+
/**
|
|
12
|
+
* 行数据控制器
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
rows: MDItemController[];
|
|
16
|
+
/**
|
|
17
|
+
* 分组数据
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
groupData: IData[];
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=dataview-state.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dataview-state.d.ts","sourceRoot":"","sources":["../../../../src/controller/state/control/dataview-state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAErC;;;;;;GAMG;AACH,qBAAa,aAAc,SAAQ,OAAO;IACxC;;;OAGG;IACH,IAAI,EAAE,gBAAgB,EAAE,CAAM;IAE9B;;;OAGG;IACH,SAAS,EAAE,KAAK,EAAE,CAAM;CACzB"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { MDState } from './md-state';
|
|
2
|
+
/**
|
|
3
|
+
* 卡片部件UI状态
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @class DataViewState
|
|
7
|
+
* @extends {MDState}
|
|
8
|
+
*/
|
|
9
|
+
export class DataViewState extends MDState {
|
|
10
|
+
constructor() {
|
|
11
|
+
super(...arguments);
|
|
12
|
+
/**
|
|
13
|
+
* 行数据控制器
|
|
14
|
+
*
|
|
15
|
+
*/
|
|
16
|
+
this.rows = [];
|
|
17
|
+
/**
|
|
18
|
+
* 分组数据
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
this.groupData = [];
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -9,9 +9,15 @@ import { ILayoutController } from '../../../../interface';
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class FormDetailState {
|
|
11
11
|
protected parent?: FormDetailState | undefined;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
/**
|
|
13
|
+
* 是否显示
|
|
14
|
+
*
|
|
15
|
+
* @author lxm
|
|
16
|
+
* @date 2023-02-08 03:59:47
|
|
17
|
+
* @type {boolean}
|
|
18
|
+
* @memberof FormDetailState
|
|
19
|
+
*/
|
|
20
|
+
visible: boolean;
|
|
15
21
|
/**
|
|
16
22
|
* 是否必填
|
|
17
23
|
*
|
|
@@ -20,16 +26,15 @@ export declare class FormDetailState {
|
|
|
20
26
|
* @type {boolean}
|
|
21
27
|
*/
|
|
22
28
|
required: boolean;
|
|
23
|
-
$disabled: boolean;
|
|
24
29
|
/**
|
|
25
30
|
* 是否禁用
|
|
26
31
|
*
|
|
27
32
|
* @author lxm
|
|
28
|
-
* @date
|
|
33
|
+
* @date 2023-02-08 03:51:09
|
|
29
34
|
* @type {boolean}
|
|
35
|
+
* @memberof FormDetailState
|
|
30
36
|
*/
|
|
31
|
-
|
|
32
|
-
set disabled(val: boolean);
|
|
37
|
+
disabled: boolean;
|
|
33
38
|
/**
|
|
34
39
|
* 布局
|
|
35
40
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-detail-state.d.ts","sourceRoot":"","sources":["../../../../../../src/controller/state/control/form/form-detail/form-detail-state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;;;;GAOG;AACH,qBAAa,eAAe;
|
|
1
|
+
{"version":3,"file":"form-detail-state.d.ts","sourceRoot":"","sources":["../../../../../../src/controller/state/control/form/form-detail/form-detail-state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;;;;GAOG;AACH,qBAAa,eAAe;IA6Cd,SAAS,CAAC,MAAM,CAAC;IA5C7B;;;;;;;OAOG;IACK,OAAO,EAAE,OAAO,CAAC;IAEzB;;;;;;OAMG;IACH,QAAQ,EAAE,OAAO,CAAS;IAE1B;;;;;;;OAOG;IACH,QAAQ,EAAE,OAAO,CAAS;IAE1B;;;;;;OAMG;IACH,gBAAgB,EAAE,iBAAiB,CAMjC;gBAEoB,MAAM,CAAC,6BAAiB;CAgB/C"}
|
|
@@ -7,29 +7,8 @@
|
|
|
7
7
|
* @class FormDetailState
|
|
8
8
|
*/
|
|
9
9
|
export class FormDetailState {
|
|
10
|
-
set visible(val) {
|
|
11
|
-
this.$visible = val;
|
|
12
|
-
}
|
|
13
|
-
get visible() {
|
|
14
|
-
var _a;
|
|
15
|
-
return !!((_a = this.parent) === null || _a === void 0 ? void 0 : _a.visible) && this.$visible;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* 是否禁用
|
|
19
|
-
*
|
|
20
|
-
* @author lxm
|
|
21
|
-
* @date 2022-09-01 21:09:44
|
|
22
|
-
* @type {boolean}
|
|
23
|
-
*/
|
|
24
|
-
get disabled() {
|
|
25
|
-
return this.$disabled;
|
|
26
|
-
}
|
|
27
|
-
set disabled(val) {
|
|
28
|
-
this.$disabled = val;
|
|
29
|
-
}
|
|
30
10
|
constructor(parent) {
|
|
31
11
|
this.parent = parent;
|
|
32
|
-
this.$visible = true;
|
|
33
12
|
/**
|
|
34
13
|
* 是否必填
|
|
35
14
|
*
|
|
@@ -38,7 +17,15 @@ export class FormDetailState {
|
|
|
38
17
|
* @type {boolean}
|
|
39
18
|
*/
|
|
40
19
|
this.required = false;
|
|
41
|
-
|
|
20
|
+
/**
|
|
21
|
+
* 是否禁用
|
|
22
|
+
*
|
|
23
|
+
* @author lxm
|
|
24
|
+
* @date 2023-02-08 03:51:09
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof FormDetailState
|
|
27
|
+
*/
|
|
28
|
+
this.disabled = false;
|
|
42
29
|
/**
|
|
43
30
|
* 布局
|
|
44
31
|
*
|
|
@@ -47,10 +34,26 @@ export class FormDetailState {
|
|
|
47
34
|
* @type {ILayoutController}
|
|
48
35
|
*/
|
|
49
36
|
this.layoutController = {
|
|
50
|
-
width: '
|
|
51
|
-
height: '
|
|
37
|
+
width: 'auto',
|
|
38
|
+
height: 'auto',
|
|
52
39
|
extraStyle: {},
|
|
53
40
|
extraClass: '',
|
|
41
|
+
contentStyle: {},
|
|
54
42
|
};
|
|
43
|
+
// 定义是否显示,set方法需要返回true,否则vue proxy报错
|
|
44
|
+
let $visible = true;
|
|
45
|
+
Object.defineProperty(this, 'visible', {
|
|
46
|
+
enumerable: true,
|
|
47
|
+
configurable: true,
|
|
48
|
+
get() {
|
|
49
|
+
var _a;
|
|
50
|
+
// 有父先看父的显示
|
|
51
|
+
return ((_a = this.parent) === null || _a === void 0 ? void 0 : _a.visible) !== false && $visible;
|
|
52
|
+
},
|
|
53
|
+
set(val) {
|
|
54
|
+
$visible = val;
|
|
55
|
+
return true;
|
|
56
|
+
},
|
|
57
|
+
});
|
|
55
58
|
}
|
|
56
59
|
}
|
|
@@ -23,14 +23,5 @@ export declare class FormItemState extends FormDetailState {
|
|
|
23
23
|
* @date 2022-09-19 16:09:18
|
|
24
24
|
*/
|
|
25
25
|
enableCondDisabled: boolean;
|
|
26
|
-
/**
|
|
27
|
-
* 是否禁用
|
|
28
|
-
*
|
|
29
|
-
* @author lxm
|
|
30
|
-
* @date 2022-09-01 21:09:44
|
|
31
|
-
* @type {boolean}
|
|
32
|
-
*/
|
|
33
|
-
get disabled(): boolean;
|
|
34
|
-
set disabled(val: boolean);
|
|
35
26
|
}
|
|
36
27
|
//# sourceMappingURL=form-item-state.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form-item-state.d.ts","sourceRoot":"","sources":["../../../../../../src/controller/state/control/form/form-detail/form-item-state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD;;;;;GAKG;AACH,qBAAa,aAAc,SAAQ,eAAe;IACpC,SAAS,CAAC,MAAM,CAAC;gBAAP,MAAM,CAAC,6BAAiB;
|
|
1
|
+
{"version":3,"file":"form-item-state.d.ts","sourceRoot":"","sources":["../../../../../../src/controller/state/control/form/form-detail/form-item-state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD;;;;;GAKG;AACH,qBAAa,aAAc,SAAQ,eAAe;IACpC,SAAS,CAAC,MAAM,CAAC;gBAAP,MAAM,CAAC,6BAAiB;IAoB9C;;;;;;OAMG;IACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAQ;IAE5B;;;;;OAKG;IACH,kBAAkB,UAAS;CAC5B"}
|
|
@@ -24,21 +24,20 @@ export class FormItemState extends FormDetailState {
|
|
|
24
24
|
* @date 2022-09-19 16:09:18
|
|
25
25
|
*/
|
|
26
26
|
this.enableCondDisabled = false;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
this.$disabled = val;
|
|
27
|
+
let $disabled = false;
|
|
28
|
+
Object.defineProperty(this, 'disabled', {
|
|
29
|
+
enumerable: true,
|
|
30
|
+
configurable: true,
|
|
31
|
+
get() {
|
|
32
|
+
if (this.enableCondDisabled) {
|
|
33
|
+
return true;
|
|
34
|
+
}
|
|
35
|
+
return $disabled;
|
|
36
|
+
},
|
|
37
|
+
set(val) {
|
|
38
|
+
$disabled = val;
|
|
39
|
+
return true;
|
|
40
|
+
},
|
|
41
|
+
});
|
|
43
42
|
}
|
|
44
43
|
}
|
|
@@ -9,14 +9,5 @@ import { FormContainerState } from './form-container-state';
|
|
|
9
9
|
* @extends {FormContainerState}
|
|
10
10
|
*/
|
|
11
11
|
export declare class FormPageState extends FormContainerState {
|
|
12
|
-
/**
|
|
13
|
-
* 表单分页只看自身
|
|
14
|
-
*
|
|
15
|
-
* @author chitanda
|
|
16
|
-
* @date 2023-01-04 10:01:20
|
|
17
|
-
* @readonly
|
|
18
|
-
* @type {boolean}
|
|
19
|
-
*/
|
|
20
|
-
get visible(): boolean;
|
|
21
12
|
}
|
|
22
13
|
//# sourceMappingURL=form-page-state.d.ts.map
|