ngx-axis-appforge 0.0.3 → 0.0.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/.editorconfig +17 -0
- package/angular.json +40 -0
- package/axis-components/badge/badge.css +3 -0
- package/axis-components/badge/badge.html +20 -0
- package/axis-components/badge/badge.options.ts +23 -0
- package/axis-components/badge/badge.ts +17 -0
- package/axis-components/badge/design/config.ts +52 -0
- package/axis-components/badge/design/ng-package.json +5 -0
- package/axis-components/badge/design/setting/setting.css +0 -0
- package/axis-components/badge/design/setting/setting.html +181 -0
- package/axis-components/badge/design/setting/setting.ts +126 -0
- package/axis-components/badge/ng-package.json +5 -0
- package/axis-components/button/button.css +3 -0
- package/axis-components/button/button.html +13 -0
- package/axis-components/button/button.options.ts +17 -0
- package/axis-components/button/button.ts +56 -0
- package/axis-components/button/design/config.ts +30 -0
- package/axis-components/button/design/ng-package.json +5 -0
- package/axis-components/button/design/setting/setting.css +0 -0
- package/axis-components/button/design/setting/setting.html +151 -0
- package/axis-components/button/design/setting/setting.ts +76 -0
- package/axis-components/button/ng-package.json +5 -0
- package/axis-components/cmp-map.ts +52 -0
- package/axis-components/cmplib.ts +9 -0
- package/axis-components/desc/desc.css +8 -0
- package/axis-components/desc/desc.html +19 -0
- package/axis-components/desc/desc.options.ts +24 -0
- package/axis-components/desc/desc.ts +29 -0
- package/axis-components/desc/design/config.ts +113 -0
- package/axis-components/desc/design/desc-item-setting/desc-item-setting.css +0 -0
- package/axis-components/desc/design/desc-item-setting/desc-item-setting.html +47 -0
- package/axis-components/desc/design/desc-item-setting/desc-item-setting.ts +40 -0
- package/axis-components/desc/design/desc-items-menu/desc-items-menu.css +0 -0
- package/axis-components/desc/design/desc-items-menu/desc-items-menu.html +9 -0
- package/axis-components/desc/design/desc-items-menu/desc-items-menu.ts +23 -0
- package/axis-components/desc/design/desc-setting/desc-setting.css +0 -0
- package/axis-components/desc/design/desc-setting/desc-setting.html +76 -0
- package/axis-components/desc/design/desc-setting/desc-setting.ts +51 -0
- package/axis-components/desc/design/ng-package.json +5 -0
- package/axis-components/desc/ng-package.json +5 -0
- package/axis-components/design/cmplib/cmplib.css +5 -0
- package/axis-components/design/cmplib/cmplib.html +52 -0
- package/axis-components/design/cmplib/cmplib.ts +96 -0
- package/axis-components/design/design/config.ts +29 -0
- package/axis-components/design/design/ng-package.json +5 -0
- package/axis-components/design/design/setting/setting.css +0 -0
- package/axis-components/design/design/setting/setting.html +33 -0
- package/axis-components/design/design/setting/setting.ts +33 -0
- package/axis-components/design/design.css +15 -0
- package/axis-components/design/design.html +51 -0
- package/axis-components/design/design.options.ts +9 -0
- package/axis-components/design/design.ts +509 -0
- package/axis-components/design/ng-package.json +5 -0
- package/axis-components/design/preview/drag.service.ts +148 -0
- package/axis-components/design/preview/drop-handler.ts +56 -0
- package/axis-components/design/preview/preview.css +3 -0
- package/axis-components/design/preview/preview.html +1 -0
- package/axis-components/design/preview/preview.ts +250 -0
- package/axis-components/design/preview/select.service.ts +140 -0
- package/axis-components/design/shortcut-key.ts +160 -0
- package/axis-components/design/toolbar/toolbar.css +24 -0
- package/axis-components/design/toolbar/toolbar.html +96 -0
- package/axis-components/design/toolbar/toolbar.ts +65 -0
- package/axis-components/design/tree/drag-drop.ts +125 -0
- package/axis-components/design/tree/tree.css +30 -0
- package/axis-components/design/tree/tree.html +49 -0
- package/axis-components/design/tree/tree.ts +292 -0
- package/axis-components/dynamic-container/design/config.ts +30 -0
- package/axis-components/dynamic-container/design/ng-package.json +5 -0
- package/axis-components/dynamic-container/design/setting/setting.css +0 -0
- package/axis-components/dynamic-container/design/setting/setting.html +20 -0
- package/axis-components/dynamic-container/design/setting/setting.ts +30 -0
- package/axis-components/dynamic-container/dynamic-container.css +3 -0
- package/axis-components/dynamic-container/dynamic-container.html +2 -0
- package/axis-components/dynamic-container/dynamic-container.options.ts +6 -0
- package/axis-components/dynamic-container/dynamic-container.ts +17 -0
- package/axis-components/dynamic-container/ng-package.json +5 -0
- package/axis-components/editor/editor.css +47 -0
- package/axis-components/editor/editor.html +10 -0
- package/axis-components/editor/editor.options.ts +10 -0
- package/axis-components/editor/editor.ts +86 -0
- package/axis-components/editor/ng-package.json +5 -0
- package/axis-components/examples/examples/badge.ts +17 -0
- package/axis-components/examples/examples/button.ts +38 -0
- package/axis-components/examples/examples/desc.ts +31 -0
- package/axis-components/examples/examples/design.ts +15 -0
- package/axis-components/examples/examples/dynamic-container.ts +21 -0
- package/axis-components/examples/examples/flex.ts +18 -0
- package/axis-components/examples/examples/form-item.ts +39 -0
- package/axis-components/examples/examples/form.ts +315 -0
- package/axis-components/examples/examples/icon.ts +16 -0
- package/axis-components/examples/examples/image.ts +15 -0
- package/axis-components/examples/examples/input-component.ts +15 -0
- package/axis-components/examples/examples/input-icon.ts +15 -0
- package/axis-components/examples/examples/input-json.ts +15 -0
- package/axis-components/examples/examples/input-number.ts +15 -0
- package/axis-components/examples/examples/input.ts +15 -0
- package/axis-components/examples/examples/modal.ts +15 -0
- package/axis-components/examples/examples/scope.ts +17 -0
- package/axis-components/examples/examples/single-selector.ts +25 -0
- package/axis-components/examples/examples/splitter.ts +36 -0
- package/axis-components/examples/examples/table.ts +126 -0
- package/axis-components/examples/examples/text.ts +15 -0
- package/axis-components/examples/examples/textarea.ts +15 -0
- package/axis-components/examples/examples/tree-selector.ts +35 -0
- package/axis-components/examples/examples/upload.ts +15 -0
- package/axis-components/examples/examples.ts +73 -0
- package/axis-components/flex/design/config.ts +49 -0
- package/axis-components/flex/design/ng-package.json +5 -0
- package/axis-components/flex/design/setting/setting.css +0 -0
- package/axis-components/flex/design/setting/setting.html +72 -0
- package/axis-components/flex/design/setting/setting.ts +43 -0
- package/axis-components/flex/flex.css +5 -0
- package/axis-components/flex/flex.html +6 -0
- package/axis-components/flex/flex.options.ts +12 -0
- package/axis-components/flex/flex.ts +15 -0
- package/axis-components/flex/ng-package.json +5 -0
- package/axis-components/form/design/config.ts +71 -0
- package/axis-components/form/design/ng-package.json +5 -0
- package/axis-components/form/design/setting/setting.css +0 -0
- package/axis-components/form/design/setting/setting.html +21 -0
- package/axis-components/form/design/setting/setting.ts +31 -0
- package/axis-components/form/form.css +3 -0
- package/axis-components/form/form.html +3 -0
- package/axis-components/form/form.options.ts +9 -0
- package/axis-components/form/form.ts +121 -0
- package/axis-components/form/ng-package.json +5 -0
- package/axis-components/form-item/design/config.ts +43 -0
- package/axis-components/form-item/design/ng-package.json +5 -0
- package/axis-components/form-item/design/setting/input-validator/input-validator.css +8 -0
- package/axis-components/form-item/design/setting/input-validator/input-validator.html +140 -0
- package/axis-components/form-item/design/setting/input-validator/input-validator.ts +158 -0
- package/axis-components/form-item/design/setting/setting.css +0 -0
- package/axis-components/form-item/design/setting/setting.html +39 -0
- package/axis-components/form-item/design/setting/setting.ts +40 -0
- package/axis-components/form-item/form-item.css +4 -0
- package/axis-components/form-item/form-item.html +16 -0
- package/axis-components/form-item/form-item.options.ts +12 -0
- package/axis-components/form-item/form-item.ts +128 -0
- package/axis-components/form-item/ng-package.json +5 -0
- package/axis-components/icon/design/config.ts +29 -0
- package/axis-components/icon/design/ng-package.json +5 -0
- package/axis-components/icon/design/setting/setting.css +0 -0
- package/axis-components/icon/design/setting/setting.html +67 -0
- package/axis-components/icon/design/setting/setting.ts +48 -0
- package/axis-components/icon/icon.css +0 -0
- package/axis-components/icon/icon.html +7 -0
- package/axis-components/icon/icon.options.ts +10 -0
- package/axis-components/icon/icon.ts +17 -0
- package/axis-components/icon/ng-package.json +5 -0
- package/axis-components/image/design/config.ts +30 -0
- package/axis-components/image/design/ng-package.json +5 -0
- package/axis-components/image/design/setting/setting.css +0 -0
- package/axis-components/image/design/setting/setting.html +42 -0
- package/axis-components/image/design/setting/setting.ts +37 -0
- package/axis-components/image/image.css +58 -0
- package/axis-components/image/image.html +14 -0
- package/axis-components/image/image.options.ts +8 -0
- package/axis-components/image/image.ts +29 -0
- package/axis-components/image/ng-package.json +5 -0
- package/axis-components/input/design/config.ts +80 -0
- package/axis-components/input/design/ng-package.json +5 -0
- package/axis-components/input/design/setting/setting.css +0 -0
- package/axis-components/input/design/setting/setting.html +79 -0
- package/axis-components/input/design/setting/setting.ts +51 -0
- package/axis-components/input/input.css +4 -0
- package/axis-components/input/input.html +32 -0
- package/axis-components/input/input.options.ts +14 -0
- package/axis-components/input/input.ts +53 -0
- package/axis-components/input/ng-package.json +5 -0
- package/axis-components/input-component/design/config.ts +30 -0
- package/axis-components/input-component/design/ng-package.json +5 -0
- package/axis-components/input-component/design/setting/setting.css +0 -0
- package/axis-components/input-component/design/setting/setting.html +33 -0
- package/axis-components/input-component/design/setting/setting.ts +33 -0
- package/axis-components/input-component/input-component.css +4 -0
- package/axis-components/input-component/input-component.html +25 -0
- package/axis-components/input-component/input-component.options.ts +7 -0
- package/axis-components/input-component/input-component.ts +50 -0
- package/axis-components/input-component/ng-package.json +5 -0
- package/axis-components/input-icon/design/config.ts +30 -0
- package/axis-components/input-icon/design/ng-package.json +5 -0
- package/axis-components/input-icon/design/setting/setting.css +0 -0
- package/axis-components/input-icon/design/setting/setting.html +29 -0
- package/axis-components/input-icon/design/setting/setting.ts +33 -0
- package/axis-components/input-icon/input-icon.css +4 -0
- package/axis-components/input-icon/input-icon.html +70 -0
- package/axis-components/input-icon/input-icon.options.ts +7 -0
- package/axis-components/input-icon/input-icon.ts +51 -0
- package/axis-components/input-icon/ng-package.json +5 -0
- package/axis-components/input-json/design/config.ts +29 -0
- package/axis-components/input-json/design/ng-package.json +5 -0
- package/axis-components/input-json/design/setting/setting.css +0 -0
- package/axis-components/input-json/design/setting/setting.html +7 -0
- package/axis-components/input-json/design/setting/setting.ts +26 -0
- package/axis-components/input-json/input-json.css +4 -0
- package/axis-components/input-json/input-json.html +19 -0
- package/axis-components/input-json/input-json.ts +67 -0
- package/axis-components/input-json/ng-package.json +5 -0
- package/axis-components/input-number/design/config.ts +30 -0
- package/axis-components/input-number/design/ng-package.json +5 -0
- package/axis-components/input-number/design/setting/setting.css +0 -0
- package/axis-components/input-number/design/setting/setting.html +118 -0
- package/axis-components/input-number/design/setting/setting.ts +66 -0
- package/axis-components/input-number/input-number.css +22 -0
- package/axis-components/input-number/input-number.html +11 -0
- package/axis-components/input-number/input-number.options.ts +17 -0
- package/axis-components/input-number/input-number.ts +30 -0
- package/axis-components/input-number/ng-package.json +5 -0
- package/axis-components/modal/design/config.ts +50 -0
- package/axis-components/modal/design/ng-package.json +5 -0
- package/axis-components/modal/design/set-modal-visible-handler/set-modal-visible-handler.css +0 -0
- package/axis-components/modal/design/set-modal-visible-handler/set-modal-visible-handler.html +15 -0
- package/axis-components/modal/design/set-modal-visible-handler/set-modal-visible-handler.ts +34 -0
- package/axis-components/modal/design/setting/setting.css +0 -0
- package/axis-components/modal/design/setting/setting.html +139 -0
- package/axis-components/modal/design/setting/setting.ts +92 -0
- package/axis-components/modal/modal.css +0 -0
- package/axis-components/modal/modal.html +7 -0
- package/axis-components/modal/modal.options.ts +20 -0
- package/axis-components/modal/modal.ts +57 -0
- package/axis-components/modal/ng-package.json +5 -0
- package/axis-components/ng-package.json +5 -0
- package/axis-components/scope/design/config.ts +59 -0
- package/axis-components/scope/design/ng-package.json +5 -0
- package/axis-components/scope/design/setting/datasource-editor/datasource-editor.css +28 -0
- package/axis-components/scope/design/setting/datasource-editor/datasource-editor.html +188 -0
- package/axis-components/scope/design/setting/datasource-editor/datasource-editor.ts +245 -0
- package/axis-components/scope/design/setting/setting.css +0 -0
- package/axis-components/scope/design/setting/setting.html +19 -0
- package/axis-components/scope/design/setting/setting.ts +30 -0
- package/axis-components/scope/ng-package.json +5 -0
- package/axis-components/scope/scope.css +6 -0
- package/axis-components/scope/scope.html +4 -0
- package/axis-components/scope/scope.options.ts +8 -0
- package/axis-components/scope/scope.ts +48 -0
- package/axis-components/single-selector/design/config.ts +30 -0
- package/axis-components/single-selector/design/ng-package.json +5 -0
- package/axis-components/single-selector/design/setting/setting.css +0 -0
- package/axis-components/single-selector/design/setting/setting.html +164 -0
- package/axis-components/single-selector/design/setting/setting.ts +80 -0
- package/axis-components/single-selector/ng-package.json +5 -0
- package/axis-components/single-selector/single-selector.css +8 -0
- package/axis-components/single-selector/single-selector.html +51 -0
- package/axis-components/single-selector/single-selector.options.ts +22 -0
- package/axis-components/single-selector/single-selector.ts +80 -0
- package/axis-components/splitter/design/config.ts +84 -0
- package/axis-components/splitter/design/ng-package.json +5 -0
- package/axis-components/splitter/design/splitter-menu/splitter-menu.css +0 -0
- package/axis-components/splitter/design/splitter-menu/splitter-menu.html +10 -0
- package/axis-components/splitter/design/splitter-menu/splitter-menu.ts +22 -0
- package/axis-components/splitter/design/splitter-panel-setting/splitter-panel-setting.css +0 -0
- package/axis-components/splitter/design/splitter-panel-setting/splitter-panel-setting.html +66 -0
- package/axis-components/splitter/design/splitter-panel-setting/splitter-panel-setting.ts +47 -0
- package/axis-components/splitter/design/splitter-setting/splitter-setting.css +0 -0
- package/axis-components/splitter/design/splitter-setting/splitter-setting.html +28 -0
- package/axis-components/splitter/design/splitter-setting/splitter-setting.ts +30 -0
- package/axis-components/splitter/ng-package.json +5 -0
- package/axis-components/splitter/splitter.css +7 -0
- package/axis-components/splitter/splitter.html +12 -0
- package/axis-components/splitter/splitter.options.ts +18 -0
- package/axis-components/splitter/splitter.ts +40 -0
- package/axis-components/table/design/config.ts +147 -0
- package/axis-components/table/design/ng-package.json +5 -0
- package/axis-components/table/design/table-field-setting/table-field-setting.css +0 -0
- package/axis-components/table/design/table-field-setting/table-field-setting.html +259 -0
- package/axis-components/table/design/table-field-setting/table-field-setting.ts +105 -0
- package/axis-components/table/design/table-fields-menu/table-fields-menu.css +0 -0
- package/axis-components/table/design/table-fields-menu/table-fields-menu.html +9 -0
- package/axis-components/table/design/table-fields-menu/table-fields-menu.ts +24 -0
- package/axis-components/table/design/table-setting/table-setting.css +0 -0
- package/axis-components/table/design/table-setting/table-setting.html +417 -0
- package/axis-components/table/design/table-setting/table-setting.ts +173 -0
- package/axis-components/table/expand.ts +12 -0
- package/axis-components/table/ng-package.json +5 -0
- package/axis-components/table/select.ts +66 -0
- package/axis-components/table/table-setter/table-setter.css +55 -0
- package/axis-components/table/table-setter/table-setter.html +38 -0
- package/axis-components/table/table-setter/table-setter.ts +121 -0
- package/axis-components/table/table.css +5 -0
- package/axis-components/table/table.html +191 -0
- package/axis-components/table/table.options.ts +72 -0
- package/axis-components/table/table.ts +204 -0
- package/axis-components/text/design/config.ts +30 -0
- package/axis-components/text/design/ng-package.json +5 -0
- package/axis-components/text/design/setting/setting.css +0 -0
- package/axis-components/text/design/setting/setting.html +84 -0
- package/axis-components/text/design/setting/setting.ts +54 -0
- package/axis-components/text/ng-package.json +5 -0
- package/axis-components/text/text.css +3 -0
- package/axis-components/text/text.html +17 -0
- package/axis-components/text/text.options.ts +10 -0
- package/axis-components/text/text.ts +54 -0
- package/axis-components/textarea/design/config.ts +30 -0
- package/axis-components/textarea/design/ng-package.json +5 -0
- package/axis-components/textarea/design/setting/setting.css +0 -0
- package/axis-components/textarea/design/setting/setting.html +76 -0
- package/axis-components/textarea/design/setting/setting.ts +55 -0
- package/axis-components/textarea/ng-package.json +5 -0
- package/axis-components/textarea/textarea.css +4 -0
- package/axis-components/textarea/textarea.html +11 -0
- package/axis-components/textarea/textarea.options.ts +13 -0
- package/axis-components/textarea/textarea.ts +49 -0
- package/axis-components/tree-selector/design/config.ts +55 -0
- package/axis-components/tree-selector/design/ng-package.json +5 -0
- package/axis-components/tree-selector/design/tree-selector-menu/tree-selector-menu.css +0 -0
- package/axis-components/tree-selector/design/tree-selector-menu/tree-selector-menu.html +9 -0
- package/axis-components/tree-selector/design/tree-selector-menu/tree-selector-menu.ts +26 -0
- package/axis-components/tree-selector/design/tree-selector-menu-setting/tree-selector-menu-setting.css +0 -0
- package/axis-components/tree-selector/design/tree-selector-menu-setting/tree-selector-menu-setting.html +80 -0
- package/axis-components/tree-selector/design/tree-selector-menu-setting/tree-selector-menu-setting.ts +58 -0
- package/axis-components/tree-selector/design/tree-selector-setting/tree-selector-setting.css +0 -0
- package/axis-components/tree-selector/design/tree-selector-setting/tree-selector-setting.html +235 -0
- package/axis-components/tree-selector/design/tree-selector-setting/tree-selector-setting.ts +87 -0
- package/axis-components/tree-selector/ng-package.json +5 -0
- package/axis-components/tree-selector/tree-selector.css +43 -0
- package/axis-components/tree-selector/tree-selector.html +65 -0
- package/axis-components/tree-selector/tree-selector.options.ts +50 -0
- package/axis-components/tree-selector/tree-selector.ts +252 -0
- package/axis-components/upload/design/config.ts +37 -0
- package/axis-components/upload/design/ng-package.json +5 -0
- package/axis-components/upload/design/setting/setting.css +0 -0
- package/axis-components/upload/design/setting/setting.html +288 -0
- package/axis-components/upload/design/setting/setting.ts +96 -0
- package/axis-components/upload/ng-package.json +5 -0
- package/axis-components/upload/upload.css +3 -0
- package/axis-components/upload/upload.html +36 -0
- package/axis-components/upload/upload.options.ts +29 -0
- package/axis-components/upload/upload.ts +130 -0
- package/core/base/base-menu.ts +22 -0
- package/core/base/base.ts +143 -0
- package/core/base/design-builder.ts +8 -0
- package/core/base/funfield-base.ts +106 -0
- package/core/base/funfield-value-base.ts +53 -0
- package/core/base/value-access.ts +70 -0
- package/core/directives/dynamic.ts +216 -0
- package/core/directives/scope.ts +432 -0
- package/core/models/api.options.ts +5 -0
- package/core/models/base.options.ts +11 -0
- package/core/models/cmplib.ts +7 -0
- package/core/models/data-source.options.ts +11 -0
- package/core/models/data.options.ts +6 -0
- package/core/models/design-build.ts +26 -0
- package/core/models/design-config.ts +14 -0
- package/core/models/design-tree-node.ts +16 -0
- package/core/models/event-desc.ts +28 -0
- package/core/models/event-handler.ts +6 -0
- package/core/models/event.options.ts +14 -0
- package/core/models/examples.ts +21 -0
- package/core/models/form-registe.options.ts +12 -0
- package/core/models/fun-field.options.ts +6 -0
- package/core/models/initobs.ts +8 -0
- package/core/models/options-node.ts +149 -0
- package/core/models/static-data-source.options.ts +4 -0
- package/core/models/trigge-events.options.ts +3 -0
- package/core/models/value-access.options.ts +10 -0
- package/core/ng-package.json +5 -0
- package/core/pipes/how-long.pipe.ts +69 -0
- package/core/public-api.ts +39 -0
- package/core/share/api-handler/api-handler.css +0 -0
- package/core/share/api-handler/api-handler.html +38 -0
- package/core/share/api-handler/api-handler.ts +51 -0
- package/core/share/array-filter-handler/array-filter-handler.css +0 -0
- package/core/share/array-filter-handler/array-filter-handler.html +26 -0
- package/core/share/array-filter-handler/array-filter-handler.ts +65 -0
- package/core/share/array-filter-handler/input-filter-options/filter-options.css +19 -0
- package/core/share/array-filter-handler/input-filter-options/filter-options.html +57 -0
- package/core/share/array-filter-handler/input-filter-options/filter-options.ts +100 -0
- package/core/share/base-design-setting/base-design-setting.css +0 -0
- package/core/share/base-design-setting/base-design-setting.html +50 -0
- package/core/share/base-design-setting/base-design-setting.ts +55 -0
- package/core/share/base-event-handler-descs.ts +100 -0
- package/core/share/common-menu/common-menu.css +0 -0
- package/core/share/common-menu/common-menu.html +21 -0
- package/core/share/common-menu/common-menu.ts +73 -0
- package/core/share/data-handler/data-handler.css +0 -0
- package/core/share/data-handler/data-handler.html +13 -0
- package/core/share/data-handler/data-handler.ts +39 -0
- package/core/share/events-handler.service.ts +185 -0
- package/core/share/fun-field/fun-field.css +55 -0
- package/core/share/fun-field/fun-field.html +175 -0
- package/core/share/fun-field/fun-field.ts +363 -0
- package/core/share/input-trigger/input-trigger.css +16 -0
- package/core/share/input-trigger/input-trigger.html +114 -0
- package/core/share/input-trigger/input-trigger.ts +394 -0
- package/core/share/msg-tip-handler/msg-tip-handler.css +0 -0
- package/core/share/msg-tip-handler/msg-tip-handler.html +40 -0
- package/core/share/msg-tip-handler/msg-tip-handler.ts +46 -0
- package/core/share/refresh-data-source-handler/refresh-data-source-handler.css +0 -0
- package/core/share/refresh-data-source-handler/refresh-data-source-handler.html +29 -0
- package/core/share/refresh-data-source-handler/refresh-data-source-handler.ts +55 -0
- package/core/share/route-handler/route-handler.css +0 -0
- package/core/share/route-handler/route-handler.html +49 -0
- package/core/share/route-handler/route-handler.ts +51 -0
- package/core/share/set-data-source-handler/set-data-source-handler.css +0 -0
- package/core/share/set-data-source-handler/set-data-source-handler.html +23 -0
- package/core/share/set-data-source-handler/set-data-source-handler.ts +44 -0
- package/core/share/simple-menu/simple-menu.css +0 -0
- package/core/share/simple-menu/simple-menu.html +5 -0
- package/core/share/simple-menu/simple-menu.ts +17 -0
- package/core/share/tokens.ts +29 -0
- package/core/share/value-design-setting/value-design-setting.css +0 -0
- package/core/share/value-design-setting/value-design-setting.html +48 -0
- package/core/share/value-design-setting/value-design-setting.ts +54 -0
- package/core/utils/code-name.utils.ts +19 -0
- package/core/utils/components-loader.ts +29 -0
- package/core/utils/declaration.utils.ts +38 -0
- package/core/utils/dynamic.util.ts +57 -0
- package/core/utils/form-validators.ts +160 -0
- package/core/utils/form.util.ts +25 -0
- package/core/utils/http.utils.ts +8 -0
- package/core/utils/object.utils.ts +182 -0
- package/core/utils/scripts-loader.ts +25 -0
- package/ng-package.json +12 -0
- package/package.json +16 -217
- package/providers/ng-package.json +5 -0
- package/{fesm2022/ngx-axis-appforge-providers.mjs → providers/providers.ts} +8 -16
- package/providers/public-api.ts +1 -0
- package/public-api.ts +1 -0
- package/tsconfig.json +35 -0
- package/tsconfig.lib.json +19 -0
- package/tsconfig.lib.prod.json +11 -0
- package/axis-components/badge/design/index.d.ts +0 -5
- package/axis-components/badge/index.d.ts +0 -27
- package/axis-components/button/design/index.d.ts +0 -5
- package/axis-components/button/index.d.ts +0 -32
- package/axis-components/desc/design/index.d.ts +0 -5
- package/axis-components/desc/index.d.ts +0 -30
- package/axis-components/design/design/index.d.ts +0 -5
- package/axis-components/design/index.d.ts +0 -246
- package/axis-components/dynamic-container/design/index.d.ts +0 -5
- package/axis-components/dynamic-container/index.d.ts +0 -14
- package/axis-components/editor/index.d.ts +0 -33
- package/axis-components/flex/design/index.d.ts +0 -5
- package/axis-components/flex/index.d.ts +0 -20
- package/axis-components/form/design/index.d.ts +0 -5
- package/axis-components/form/index.d.ts +0 -30
- package/axis-components/form-item/design/index.d.ts +0 -5
- package/axis-components/form-item/index.d.ts +0 -34
- package/axis-components/icon/design/index.d.ts +0 -5
- package/axis-components/icon/index.d.ts +0 -16
- package/axis-components/image/design/index.d.ts +0 -5
- package/axis-components/image/index.d.ts +0 -16
- package/axis-components/index.d.ts +0 -5
- package/axis-components/input/design/index.d.ts +0 -5
- package/axis-components/input/index.d.ts +0 -27
- package/axis-components/input-component/design/index.d.ts +0 -5
- package/axis-components/input-component/index.d.ts +0 -33
- package/axis-components/input-icon/design/index.d.ts +0 -5
- package/axis-components/input-icon/index.d.ts +0 -24
- package/axis-components/input-json/design/index.d.ts +0 -5
- package/axis-components/input-json/index.d.ts +0 -24
- package/axis-components/input-number/design/index.d.ts +0 -5
- package/axis-components/input-number/index.d.ts +0 -25
- package/axis-components/modal/design/index.d.ts +0 -5
- package/axis-components/modal/index.d.ts +0 -33
- package/axis-components/scope/design/index.d.ts +0 -5
- package/axis-components/scope/index.d.ts +0 -24
- package/axis-components/single-selector/design/index.d.ts +0 -5
- package/axis-components/single-selector/index.d.ts +0 -37
- package/axis-components/splitter/design/index.d.ts +0 -5
- package/axis-components/splitter/index.d.ts +0 -28
- package/axis-components/table/design/index.d.ts +0 -5
- package/axis-components/table/index.d.ts +0 -183
- package/axis-components/text/design/index.d.ts +0 -5
- package/axis-components/text/index.d.ts +0 -24
- package/axis-components/textarea/design/index.d.ts +0 -5
- package/axis-components/textarea/index.d.ts +0 -25
- package/axis-components/tree-selector/design/index.d.ts +0 -5
- package/axis-components/tree-selector/index.d.ts +0 -76
- package/axis-components/upload/design/index.d.ts +0 -5
- package/axis-components/upload/index.d.ts +0 -51
- package/core/index.d.ts +0 -773
- package/fesm2022/ngx-axis-appforge-axis-components-badge-design.mjs +0 -191
- package/fesm2022/ngx-axis-appforge-axis-components-badge-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-badge.mjs +0 -39
- package/fesm2022/ngx-axis-appforge-axis-components-badge.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-button-design.mjs +0 -116
- package/fesm2022/ngx-axis-appforge-axis-components-button-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-button.mjs +0 -78
- package/fesm2022/ngx-axis-appforge-axis-components-button.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-desc-design.mjs +0 -224
- package/fesm2022/ngx-axis-appforge-axis-components-desc-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-desc.mjs +0 -51
- package/fesm2022/ngx-axis-appforge-axis-components-desc.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-design-design.mjs +0 -69
- package/fesm2022/ngx-axis-appforge-axis-components-design-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-design.mjs +0 -1746
- package/fesm2022/ngx-axis-appforge-axis-components-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-dynamic-container-design.mjs +0 -65
- package/fesm2022/ngx-axis-appforge-axis-components-dynamic-container-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-dynamic-container.mjs +0 -26
- package/fesm2022/ngx-axis-appforge-axis-components-dynamic-container.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-editor.mjs +0 -99
- package/fesm2022/ngx-axis-appforge-axis-components-editor.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-flex-design.mjs +0 -98
- package/fesm2022/ngx-axis-appforge-axis-components-flex-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-flex.mjs +0 -31
- package/fesm2022/ngx-axis-appforge-axis-components-flex.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-form-design.mjs +0 -108
- package/fesm2022/ngx-axis-appforge-axis-components-form-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-form-item-design.mjs +0 -242
- package/fesm2022/ngx-axis-appforge-axis-components-form-item-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-form-item.mjs +0 -144
- package/fesm2022/ngx-axis-appforge-axis-components-form-item.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-form.mjs +0 -132
- package/fesm2022/ngx-axis-appforge-axis-components-form.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-icon-design.mjs +0 -88
- package/fesm2022/ngx-axis-appforge-axis-components-icon-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-icon.mjs +0 -28
- package/fesm2022/ngx-axis-appforge-axis-components-icon.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-image-design.mjs +0 -75
- package/fesm2022/ngx-axis-appforge-axis-components-image-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-image.mjs +0 -43
- package/fesm2022/ngx-axis-appforge-axis-components-image.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-component-design.mjs +0 -70
- package/fesm2022/ngx-axis-appforge-axis-components-input-component-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-component.mjs +0 -61
- package/fesm2022/ngx-axis-appforge-axis-components-input-component.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-design.mjs +0 -142
- package/fesm2022/ngx-axis-appforge-axis-components-input-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-icon-design.mjs +0 -71
- package/fesm2022/ngx-axis-appforge-axis-components-input-icon-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-icon.mjs +0 -64
- package/fesm2022/ngx-axis-appforge-axis-components-input-icon.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-json-design.mjs +0 -60
- package/fesm2022/ngx-axis-appforge-axis-components-input-json-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-json.mjs +0 -70
- package/fesm2022/ngx-axis-appforge-axis-components-input-json.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-number-design.mjs +0 -107
- package/fesm2022/ngx-axis-appforge-axis-components-input-number-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input-number.mjs +0 -48
- package/fesm2022/ngx-axis-appforge-axis-components-input-number.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-input.mjs +0 -68
- package/fesm2022/ngx-axis-appforge-axis-components-input.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-modal-design.mjs +0 -181
- package/fesm2022/ngx-axis-appforge-axis-components-modal-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-modal.mjs +0 -74
- package/fesm2022/ngx-axis-appforge-axis-components-modal.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-scope-design.mjs +0 -330
- package/fesm2022/ngx-axis-appforge-axis-components-scope-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-scope.mjs +0 -55
- package/fesm2022/ngx-axis-appforge-axis-components-scope.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-single-selector-design.mjs +0 -120
- package/fesm2022/ngx-axis-appforge-axis-components-single-selector-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-single-selector.mjs +0 -102
- package/fesm2022/ngx-axis-appforge-axis-components-single-selector.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-splitter-design.mjs +0 -178
- package/fesm2022/ngx-axis-appforge-axis-components-splitter-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-splitter.mjs +0 -49
- package/fesm2022/ngx-axis-appforge-axis-components-splitter.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-table-design.mjs +0 -442
- package/fesm2022/ngx-axis-appforge-axis-components-table-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-table.mjs +0 -452
- package/fesm2022/ngx-axis-appforge-axis-components-table.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-text-design.mjs +0 -95
- package/fesm2022/ngx-axis-appforge-axis-components-text-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-text.mjs +0 -64
- package/fesm2022/ngx-axis-appforge-axis-components-text.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-textarea-design.mjs +0 -94
- package/fesm2022/ngx-axis-appforge-axis-components-textarea-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-textarea.mjs +0 -64
- package/fesm2022/ngx-axis-appforge-axis-components-textarea.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-tree-selector-design.mjs +0 -222
- package/fesm2022/ngx-axis-appforge-axis-components-tree-selector-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-tree-selector.mjs +0 -295
- package/fesm2022/ngx-axis-appforge-axis-components-tree-selector.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-upload-design.mjs +0 -146
- package/fesm2022/ngx-axis-appforge-axis-components-upload-design.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components-upload.mjs +0 -156
- package/fesm2022/ngx-axis-appforge-axis-components-upload.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-axis-components.mjs +0 -988
- package/fesm2022/ngx-axis-appforge-axis-components.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-core.mjs +0 -3169
- package/fesm2022/ngx-axis-appforge-core.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge-providers.mjs.map +0 -1
- package/fesm2022/ngx-axis-appforge.mjs +0 -6
- package/fesm2022/ngx-axis-appforge.mjs.map +0 -1
- package/index.d.ts +0 -2
- package/providers/index.d.ts +0 -13
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { DataOptions, Base } from 'ngx-axis-appforge/core';
|
|
3
|
-
|
|
4
|
-
declare class DescOptions extends DataOptions {
|
|
5
|
-
readonly title: _angular_core.WritableSignal<string>;
|
|
6
|
-
readonly column: _angular_core.WritableSignal<number>;
|
|
7
|
-
readonly bordered: _angular_core.WritableSignal<boolean>;
|
|
8
|
-
readonly size: _angular_core.WritableSignal<"default" | "middle" | "small">;
|
|
9
|
-
readonly colon: _angular_core.WritableSignal<boolean>;
|
|
10
|
-
readonly extra: _angular_core.WritableSignal<any>;
|
|
11
|
-
readonly items: _angular_core.WritableSignal<DescItemOptions[]>;
|
|
12
|
-
}
|
|
13
|
-
declare class DescItemOptions {
|
|
14
|
-
readonly inuse: _angular_core.WritableSignal<boolean>;
|
|
15
|
-
readonly title: _angular_core.WritableSignal<string>;
|
|
16
|
-
readonly field: _angular_core.WritableSignal<string>;
|
|
17
|
-
readonly span: _angular_core.WritableSignal<number>;
|
|
18
|
-
readonly child: _angular_core.WritableSignal<any>;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
declare class Desc extends Base<DescOptions> {
|
|
22
|
-
constructor();
|
|
23
|
-
options: DescOptions;
|
|
24
|
-
readonly items: _angular_core.Signal<DescItemOptions[]>;
|
|
25
|
-
private buildItems;
|
|
26
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Desc, never>;
|
|
27
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Desc, "axis-desc", never, {}, {}, never, never, true, never>;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export { Desc };
|
|
@@ -1,246 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnDestroy, ChangeDetectorRef, ComponentRef, ViewContainerRef } from '@angular/core';
|
|
3
|
-
import * as ngx_axis_appforge_core from 'ngx-axis-appforge/core';
|
|
4
|
-
import { OptionsNode, FlatNode, FilteredTreeResult, Base, BaseOptions, ScopeDirective, DynamicDirective, ElementNode, ValueAccessOptions, ValueAccess, Example, FunFieldValueBase, ScopeInfo, EventHandlerDesc, NextInfo, DesignConfig } from 'ngx-axis-appforge/core';
|
|
5
|
-
import * as rxjs from 'rxjs';
|
|
6
|
-
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
7
|
-
import { FlatTreeControl } from '@angular/cdk/tree';
|
|
8
|
-
import { NzTreeFlattener, NzTreeFlatDataSource } from 'ng-zorro-antd/tree-view';
|
|
9
|
-
import { SelectionModel } from '@angular/cdk/collections';
|
|
10
|
-
import { ClipboardService } from 'ngx-clipboard';
|
|
11
|
-
|
|
12
|
-
declare class DragDrop {
|
|
13
|
-
private optionsNodes;
|
|
14
|
-
private optionIdflatNodes;
|
|
15
|
-
private treeControl;
|
|
16
|
-
private onChange;
|
|
17
|
-
constructor(optionsNodes: Map<string, OptionsNode>, optionIdflatNodes: Map<string, FlatNode>, treeControl: FlatTreeControl<FlatNode, string>, onChange: () => void);
|
|
18
|
-
dragNode?: OptionsNode;
|
|
19
|
-
dropNode?: OptionsNode;
|
|
20
|
-
targetIndex?: number | string;
|
|
21
|
-
element?: HTMLElement;
|
|
22
|
-
pos?: number;
|
|
23
|
-
canDrag(nodeId: string): boolean;
|
|
24
|
-
onDragStart(e: DragEvent, nodeId: string): void;
|
|
25
|
-
onDragOver(e: DragEvent, nodeId: string): void;
|
|
26
|
-
private updateElementStyle;
|
|
27
|
-
onDragEnd(e: DragEvent, nodeId: string): undefined;
|
|
28
|
-
private canDrop;
|
|
29
|
-
private getPos;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
declare class Tree implements OnDestroy {
|
|
33
|
-
private cdRef;
|
|
34
|
-
readonly node: _angular_core.InputSignal<OptionsNode | null | undefined>;
|
|
35
|
-
readonly optionsNodes: _angular_core.InputSignal<Map<string, OptionsNode>>;
|
|
36
|
-
onChange: _angular_core.OutputEmitterRef<any>;
|
|
37
|
-
readonly onSelect: _angular_core.OutputEmitterRef<string[]>;
|
|
38
|
-
readonly onContextMenu: _angular_core.OutputEmitterRef<{
|
|
39
|
-
nodeId: string;
|
|
40
|
-
event: MouseEvent;
|
|
41
|
-
}>;
|
|
42
|
-
readonly dragdrop: _angular_core.Signal<DragDrop>;
|
|
43
|
-
readonly optionIdflatNodes: Map<string, FlatNode>;
|
|
44
|
-
readonly flatNodeMap: Map<string, OptionsNode>;
|
|
45
|
-
readonly nestedNodeMap: Map<string, FlatNode>;
|
|
46
|
-
searchValue: _angular_core.WritableSignal<string>;
|
|
47
|
-
readonly originData$: BehaviorSubject<OptionsNode[]>;
|
|
48
|
-
readonly searchValue$: BehaviorSubject<string>;
|
|
49
|
-
readonly selectListSelection: SelectionModel<string>;
|
|
50
|
-
readonly design: Design;
|
|
51
|
-
private readonly subs;
|
|
52
|
-
readonly transformer: (node: OptionsNode, level: number) => FlatNode;
|
|
53
|
-
readonly treeControl: FlatTreeControl<FlatNode, string>;
|
|
54
|
-
readonly treeFlattener: NzTreeFlattener<OptionsNode, FlatNode, string>;
|
|
55
|
-
readonly dataSource: NzTreeFlatDataSource<OptionsNode, FlatNode, string>;
|
|
56
|
-
readonly filteredData$: rxjs.Observable<FilteredTreeResult>;
|
|
57
|
-
constructor(cdRef: ChangeDetectorRef);
|
|
58
|
-
hasChild: (_: number, node: FlatNode) => boolean;
|
|
59
|
-
get hasExpanded(): boolean;
|
|
60
|
-
onNodeClick(e: MouseEvent, node: FlatNode): void;
|
|
61
|
-
select(nodeId: string, opt?: {
|
|
62
|
-
sendEvent: boolean;
|
|
63
|
-
}): void;
|
|
64
|
-
selectOne(nodeId: string, opt?: {
|
|
65
|
-
sendEvent: boolean;
|
|
66
|
-
}): void;
|
|
67
|
-
toggleSelect(nodeId: string, opt?: {
|
|
68
|
-
sendEvent: boolean;
|
|
69
|
-
}): void;
|
|
70
|
-
unSelect(nodeId: string, opt?: {
|
|
71
|
-
sendEvent: boolean;
|
|
72
|
-
}): void;
|
|
73
|
-
unSelectAll(opt?: {
|
|
74
|
-
sendEvent: boolean;
|
|
75
|
-
}): void;
|
|
76
|
-
private sendSelectEvent;
|
|
77
|
-
selectByNodeIds(nodeIds: string[]): void;
|
|
78
|
-
expandByNodeIds(nodeIds: string[]): void;
|
|
79
|
-
toggleExpanded(): void;
|
|
80
|
-
reset(): void;
|
|
81
|
-
contextMenu(e: MouseEvent, nodeId: string): void;
|
|
82
|
-
removeSelected(): void;
|
|
83
|
-
addNodeForSelected(nodes: OptionsNode[], deleteSuccess?: boolean): void;
|
|
84
|
-
private deleteNode;
|
|
85
|
-
addRootComponent(): void;
|
|
86
|
-
ngOnDestroy(): void;
|
|
87
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Tree, never>;
|
|
88
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Tree, "axis-design-tree", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; "optionsNodes": { "alias": "optionsNodes"; "required": true; "isSignal": true; }; }, { "onChange": "onChange"; "onSelect": "onSelect"; "onContextMenu": "onContextMenu"; }, never, never, true, never>;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
declare class Preview implements OnDestroy {
|
|
92
|
-
constructor();
|
|
93
|
-
readonly loadAndOptions: _angular_core.InputSignal<[Promise<any>, any] | undefined>;
|
|
94
|
-
readonly optionsNodes: _angular_core.InputSignal<Map<string, OptionsNode>>;
|
|
95
|
-
readonly injectData: _angular_core.InputSignal<Observable<any>>;
|
|
96
|
-
readonly loader: ngx_axis_appforge_core.ComponentsLoader;
|
|
97
|
-
readonly onChange: _angular_core.OutputEmitterRef<void>;
|
|
98
|
-
readonly onSelect: _angular_core.OutputEmitterRef<string[]>;
|
|
99
|
-
readonly onContextMenu: _angular_core.OutputEmitterRef<{
|
|
100
|
-
nodeId: string;
|
|
101
|
-
event: MouseEvent;
|
|
102
|
-
}>;
|
|
103
|
-
readonly elementOptionIds: Map<HTMLElement, string>;
|
|
104
|
-
readonly elementComponentRefs: Map<HTMLElement, ComponentRef<Base<BaseOptions>>>;
|
|
105
|
-
readonly optionIdElements: Map<string, HTMLElement[]>;
|
|
106
|
-
readonly scopeSubjects: Map<string, BehaviorSubject<ScopeDirective | undefined>>;
|
|
107
|
-
private readonly dragService;
|
|
108
|
-
private readonly selectService;
|
|
109
|
-
readonly selected: Map<string, number>;
|
|
110
|
-
dynamicDirective?: DynamicDirective;
|
|
111
|
-
initScope(scope: ScopeDirective): void;
|
|
112
|
-
initElement(ref: ComponentRef<Base<BaseOptions>>, options: any): Promise<void>;
|
|
113
|
-
getNodeByElement(element: HTMLElement): OptionsNode | undefined;
|
|
114
|
-
onSelectChange(elements: HTMLElement[]): void;
|
|
115
|
-
onDragStart(): void;
|
|
116
|
-
onDragEnd(changed: boolean): void;
|
|
117
|
-
forceRender(): void;
|
|
118
|
-
refresh(): void;
|
|
119
|
-
private getParentComponentRef;
|
|
120
|
-
selectByNodeIds(nodeIds?: string[]): void;
|
|
121
|
-
getAndUpdateScopeSubject(scopeId: string, initScope?: ScopeDirective): BehaviorSubject<ScopeDirective | undefined>;
|
|
122
|
-
updateScopeWithSelectedElement(scopeId: string): void;
|
|
123
|
-
dragForOuter(node: ElementNode): void;
|
|
124
|
-
dragEndForOuter(): string | undefined;
|
|
125
|
-
ngOnDestroy(): void;
|
|
126
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Preview, never>;
|
|
127
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Preview, "axis-design-preview", never, { "loadAndOptions": { "alias": "loadAndOptions"; "required": true; "isSignal": true; }; "optionsNodes": { "alias": "optionsNodes"; "required": true; "isSignal": true; }; "injectData": { "alias": "injectData"; "required": true; "isSignal": true; }; }, { "onChange": "onChange"; "onSelect": "onSelect"; "onContextMenu": "onContextMenu"; }, never, never, true, never>;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
declare class ShortcutKey {
|
|
131
|
-
private design;
|
|
132
|
-
constructor(design: Design);
|
|
133
|
-
private cutNodeIds?;
|
|
134
|
-
onKeyPress(e: KeyboardEvent): void;
|
|
135
|
-
private doEvent;
|
|
136
|
-
onlyPreview(): void;
|
|
137
|
-
forceRender(): void;
|
|
138
|
-
shortcutKeysInfo(): void;
|
|
139
|
-
copy(): void;
|
|
140
|
-
cut(): void;
|
|
141
|
-
paste(): Promise<void>;
|
|
142
|
-
private isComponentObj;
|
|
143
|
-
private parseToExample;
|
|
144
|
-
private recursionParse;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
declare class DesignOptions extends ValueAccessOptions {
|
|
148
|
-
readonly injectData: _angular_core.WritableSignal<any>;
|
|
149
|
-
readonly allPermissions: _angular_core.WritableSignal<{
|
|
150
|
-
[permission: string]: string;
|
|
151
|
-
}>;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
declare class Toolbar {
|
|
155
|
-
readonly design: Design;
|
|
156
|
-
readonly cdr: ChangeDetectorRef;
|
|
157
|
-
readonly onlyPreview: _angular_core.WritableSignal<boolean>;
|
|
158
|
-
readonly shortcutKeysModal: _angular_core.ModelSignal<boolean>;
|
|
159
|
-
readonly history: {
|
|
160
|
-
options: any;
|
|
161
|
-
time: Date;
|
|
162
|
-
}[];
|
|
163
|
-
historyIndex: number;
|
|
164
|
-
putHistory(options: any): void;
|
|
165
|
-
undo(): void;
|
|
166
|
-
redo(): void;
|
|
167
|
-
switchHistory(index: number): void;
|
|
168
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Toolbar, never>;
|
|
169
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Toolbar, "axis-toolbar", never, { "shortcutKeysModal": { "alias": "shortcutKeysModal"; "required": false; "isSignal": true; }; }, { "shortcutKeysModal": "shortcutKeysModalChange"; }, never, never, true, never>;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
declare class Design extends ValueAccess<DesignOptions> implements OnDestroy {
|
|
173
|
-
constructor();
|
|
174
|
-
protected options: DesignOptions;
|
|
175
|
-
clipboard: ClipboardService;
|
|
176
|
-
loader: ngx_axis_appforge_core.ComponentsLoader;
|
|
177
|
-
injectDataObs: Observable<any>;
|
|
178
|
-
funcs: {
|
|
179
|
-
[name: string]: Function;
|
|
180
|
-
};
|
|
181
|
-
treeNode: _angular_core.WritableSignal<OptionsNode | null | undefined>;
|
|
182
|
-
loadAndOptions: _angular_core.WritableSignal<[Promise<any>, any] | undefined>;
|
|
183
|
-
menu: ViewContainerRef;
|
|
184
|
-
readonly chooseComponentVisible: _angular_core.ModelSignal<boolean>;
|
|
185
|
-
readonly chooseComponentSubject: Subject<Example | undefined>;
|
|
186
|
-
readonly chooseComponentTags: _angular_core.WritableSignal<string[]>;
|
|
187
|
-
cacheSized: [number, number];
|
|
188
|
-
setting: ViewContainerRef;
|
|
189
|
-
settingRef?: ComponentRef<FunFieldValueBase>;
|
|
190
|
-
settingOptionsNodeId?: string;
|
|
191
|
-
settingOptionsStr: _angular_core.ModelSignal<string>;
|
|
192
|
-
preview: Preview;
|
|
193
|
-
tree: Tree;
|
|
194
|
-
codeEditor?: DynamicDirective;
|
|
195
|
-
tools: Toolbar;
|
|
196
|
-
readonly shortcutKey: ShortcutKey;
|
|
197
|
-
onKeyPress(e: KeyboardEvent): void;
|
|
198
|
-
readonly optionsNodes: Map<string, OptionsNode>;
|
|
199
|
-
readonly optionsNodeScopes: Map<string, OptionsNode[]>;
|
|
200
|
-
readonly scopeInfos: Map<string, ScopeInfo>;
|
|
201
|
-
readonly componentsInfo: Map<string, {
|
|
202
|
-
component: string;
|
|
203
|
-
componentName: string;
|
|
204
|
-
eventHandlerDescs: {
|
|
205
|
-
[name: string]: EventHandlerDesc;
|
|
206
|
-
};
|
|
207
|
-
}>;
|
|
208
|
-
readonly componentsCounter: Map<string, number>;
|
|
209
|
-
readonly scopInfoSubjects: Map<string, BehaviorSubject<ScopeInfo[]>>;
|
|
210
|
-
readonly changeSubject: Subject<any>;
|
|
211
|
-
setInitValue(value: any): void;
|
|
212
|
-
writeValue(value: any): void;
|
|
213
|
-
inspect(nextInfo: NextInfo): Promise<OptionsNode | undefined>;
|
|
214
|
-
onChangeOptionsConfig(value?: any, putHistory?: boolean): void;
|
|
215
|
-
render(value: any): void;
|
|
216
|
-
onSettingChange(settingValue: any): void;
|
|
217
|
-
onTreeSelect(nodeIds: string[]): void;
|
|
218
|
-
onPreviewSelect(nodeIds: string[]): void;
|
|
219
|
-
private updateScopeWithNodeId;
|
|
220
|
-
loadSetting(nodeId: string): void;
|
|
221
|
-
private buildScopeInfosGetter;
|
|
222
|
-
private buildScopeInfoSubject;
|
|
223
|
-
private buildComponentInfoForSetting;
|
|
224
|
-
onContextMenu(e: MouseEvent, nodeId: string): void;
|
|
225
|
-
chooseComponent(...tags: string[]): Observable<{
|
|
226
|
-
options?: any;
|
|
227
|
-
config?: DesignConfig;
|
|
228
|
-
}>;
|
|
229
|
-
private genNewComponentId;
|
|
230
|
-
onCmplibDragStart(example: Example, element: HTMLElement): void;
|
|
231
|
-
onCmplibDragEnd(): Promise<void>;
|
|
232
|
-
onExamplePaste(examples: Example[]): void;
|
|
233
|
-
onNodesMove(nodeIds: string[]): void;
|
|
234
|
-
onEditorChange(optionsStr: string): void;
|
|
235
|
-
syncToSetting(): void;
|
|
236
|
-
syncToCode(): void;
|
|
237
|
-
layoutEditor(e?: number[]): void;
|
|
238
|
-
private resetSetting;
|
|
239
|
-
private reset;
|
|
240
|
-
private getAllParentNodes;
|
|
241
|
-
ngOnDestroy(): void;
|
|
242
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Design, never>;
|
|
243
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Design, "axis-design", never, { "chooseComponentVisible": { "alias": "chooseComponentVisible"; "required": false; "isSignal": true; }; "settingOptionsStr": { "alias": "settingOptionsStr"; "required": false; "isSignal": true; }; }, { "chooseComponentVisible": "chooseComponentVisibleChange"; "settingOptionsStr": "settingOptionsStrChange"; }, never, never, true, never>;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
export { Design };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { ValueAccessOptions, ValueAccess } from 'ngx-axis-appforge/core';
|
|
3
|
-
|
|
4
|
-
declare class DynamicContainerOptions extends ValueAccessOptions {
|
|
5
|
-
child: i0.WritableSignal<any>;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
declare class DynamicContainer extends ValueAccess<DynamicContainerOptions> {
|
|
9
|
-
options: DynamicContainerOptions;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicContainer, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicContainer, "axis-dynamic-container", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export { DynamicContainer };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { ValueAccessOptions, ValueAccess, EventHandlerOptions } from 'ngx-axis-appforge/core';
|
|
3
|
-
import { NzCodeEditorComponent } from 'ng-zorro-antd/code-editor';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { NzTooltipDirective } from 'ng-zorro-antd/tooltip';
|
|
6
|
-
|
|
7
|
-
declare class EditorOptions extends ValueAccessOptions {
|
|
8
|
-
readonly mode: _angular_core.WritableSignal<"json" | "javascript" | "plain_text" | "sql" | "html">;
|
|
9
|
-
readonly otherOptions: _angular_core.WritableSignal<any>;
|
|
10
|
-
readonly typescriptExtLibs: _angular_core.WritableSignal<{
|
|
11
|
-
content: string;
|
|
12
|
-
filePath?: string;
|
|
13
|
-
}[]>;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
declare class Editor extends ValueAccess<EditorOptions> {
|
|
17
|
-
protected options: EditorOptions;
|
|
18
|
-
writeValue(value: any): void;
|
|
19
|
-
config: _angular_core.Signal<any>;
|
|
20
|
-
readonly fullScreen: _angular_core.WritableSignal<boolean>;
|
|
21
|
-
private document;
|
|
22
|
-
private renderer;
|
|
23
|
-
tooltip?: NzTooltipDirective;
|
|
24
|
-
editor: NzCodeEditorComponent;
|
|
25
|
-
mouseenter(): void;
|
|
26
|
-
keydown(e: KeyboardEvent): void;
|
|
27
|
-
onEvents(e: EventHandlerOptions<any>): Observable<boolean> | undefined;
|
|
28
|
-
toggleFullScreen(): void;
|
|
29
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Editor, never>;
|
|
30
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Editor, "axis-editor", never, {}, {}, never, never, true, never>;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export { Editor };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { NzJustify, NzAlign, NzWrap } from 'ng-zorro-antd/flex';
|
|
3
|
-
import { BaseOptions, Base } from 'ngx-axis-appforge/core';
|
|
4
|
-
|
|
5
|
-
declare class FlexOptions extends BaseOptions {
|
|
6
|
-
readonly direction: _angular_core.WritableSignal<"horizontal" | "vertical">;
|
|
7
|
-
readonly justify: _angular_core.WritableSignal<NzJustify>;
|
|
8
|
-
readonly align: _angular_core.WritableSignal<NzAlign>;
|
|
9
|
-
readonly gap: _angular_core.WritableSignal<string>;
|
|
10
|
-
readonly wrap: _angular_core.WritableSignal<NzWrap>;
|
|
11
|
-
readonly children: _angular_core.WritableSignal<any[]>;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
declare class Flex extends Base<FlexOptions> {
|
|
15
|
-
protected options: FlexOptions;
|
|
16
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Flex, never>;
|
|
17
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Flex, "axis-flex", never, {}, {}, never, never, true, never>;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export { Flex };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as _angular_forms from '@angular/forms';
|
|
2
|
-
import * as _angular_core from '@angular/core';
|
|
3
|
-
import { OnInit } from '@angular/core';
|
|
4
|
-
import { ValueAccessOptions, ValueAccess, RegisteFormControlOptions, EventHandlerOptions } from 'ngx-axis-appforge/core';
|
|
5
|
-
import { Observable } from 'rxjs';
|
|
6
|
-
|
|
7
|
-
declare class FormOptions extends ValueAccessOptions {
|
|
8
|
-
readonly submitConfirm: _angular_core.WritableSignal<boolean>;
|
|
9
|
-
readonly child: _angular_core.WritableSignal<any>;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
declare class Form extends ValueAccess<FormOptions> implements OnInit {
|
|
13
|
-
constructor();
|
|
14
|
-
protected options: FormOptions;
|
|
15
|
-
private readonly fb;
|
|
16
|
-
private readonly modal;
|
|
17
|
-
readonly fg: _angular_forms.FormGroup<{}>;
|
|
18
|
-
private oriValue;
|
|
19
|
-
private resetSubject;
|
|
20
|
-
writeValue(value: any): void;
|
|
21
|
-
setInitValue(value: any): void;
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
registerControl(opt: RegisteFormControlOptions): void;
|
|
24
|
-
reset(emitEvent?: boolean): void;
|
|
25
|
-
onEvents(e: EventHandlerOptions<any>): Observable<boolean> | undefined;
|
|
26
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Form, never>;
|
|
27
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Form, "axis-form", never, {}, {}, never, never, true, never>;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export { Form };
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
3
|
-
import * as _angular_forms from '@angular/forms';
|
|
4
|
-
import { ValidatorFn } from '@angular/forms';
|
|
5
|
-
import { BaseOptions, Base, RegisteValueAccessOptions } from 'ngx-axis-appforge/core';
|
|
6
|
-
|
|
7
|
-
declare class FormItemOptions extends BaseOptions {
|
|
8
|
-
readonly name = "";
|
|
9
|
-
readonly label: _angular_core.WritableSignal<string>;
|
|
10
|
-
readonly labelWidth: _angular_core.WritableSignal<string>;
|
|
11
|
-
readonly validators: _angular_core.WritableSignal<any[]>;
|
|
12
|
-
readonly child: _angular_core.WritableSignal<any>;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
declare class FormItem extends Base<FormItemOptions> implements OnInit {
|
|
16
|
-
constructor();
|
|
17
|
-
protected options: FormItemOptions;
|
|
18
|
-
private readonly registe;
|
|
19
|
-
private readonly fb;
|
|
20
|
-
readonly control: _angular_forms.FormControl<never[] | null>;
|
|
21
|
-
readonly value: _angular_core.ModelSignal<any>;
|
|
22
|
-
readonly validatorSignal: _angular_core.WritableSignal<ValidatorFn[]>;
|
|
23
|
-
readonly isRequired: _angular_core.Signal<boolean>;
|
|
24
|
-
private valueAccessValidFn?;
|
|
25
|
-
ngOnInit(): void;
|
|
26
|
-
onModelChange(value: any): void;
|
|
27
|
-
private buildSnapshotValidators;
|
|
28
|
-
private buildValidators;
|
|
29
|
-
registeValueAccess(opt: RegisteValueAccessOptions): void;
|
|
30
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormItem, never>;
|
|
31
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormItem, "axis-form-item", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export { FormItem };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { BaseOptions, Base } from 'ngx-axis-appforge/core';
|
|
3
|
-
|
|
4
|
-
declare class IconOptions extends BaseOptions {
|
|
5
|
-
readonly lib: _angular_core.WritableSignal<"antdesign" | "iconfont">;
|
|
6
|
-
readonly icon: _angular_core.WritableSignal<string>;
|
|
7
|
-
readonly theme: _angular_core.WritableSignal<"outline" | "fill" | "twotone">;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
declare class Icon extends Base<IconOptions> {
|
|
11
|
-
protected options: IconOptions;
|
|
12
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Icon, never>;
|
|
13
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Icon, "axis-icon", never, {}, {}, never, never, true, never>;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export { Icon };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { DataOptions, Base } from 'ngx-axis-appforge/core';
|
|
3
|
-
|
|
4
|
-
declare class ImageOptions extends DataOptions {
|
|
5
|
-
mode: _angular_core.WritableSignal<"aspectFit" | "aspectFill" | "scaleToFill">;
|
|
6
|
-
preview: _angular_core.WritableSignal<boolean>;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare class Image extends Base<ImageOptions> {
|
|
10
|
-
options: ImageOptions;
|
|
11
|
-
readonly imgList: _angular_core.Signal<any[]>;
|
|
12
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Image, never>;
|
|
13
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Image, "axis-image", never, {}, {}, never, never, true, never>;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export { Image };
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { ValueAccessOptions, ValueAccess } from 'ngx-axis-appforge/core';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
|
|
5
|
-
declare class InputOptions extends ValueAccessOptions {
|
|
6
|
-
readonly placeholder: _angular_core.WritableSignal<string>;
|
|
7
|
-
readonly maxlength: _angular_core.WritableSignal<number | null>;
|
|
8
|
-
readonly debounceTime: _angular_core.WritableSignal<number | null>;
|
|
9
|
-
readonly autofocus: _angular_core.WritableSignal<boolean>;
|
|
10
|
-
readonly type: _angular_core.WritableSignal<"text" | "password">;
|
|
11
|
-
readonly prefix: _angular_core.WritableSignal<any>;
|
|
12
|
-
readonly suffix: _angular_core.WritableSignal<any>;
|
|
13
|
-
readonly variant: _angular_core.WritableSignal<"outlined" | "borderless" | "filled" | "underlined">;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
declare class Input extends ValueAccess<InputOptions> {
|
|
17
|
-
constructor();
|
|
18
|
-
options: InputOptions;
|
|
19
|
-
readonly inputValue: _angular_core.ModelSignal<string | undefined>;
|
|
20
|
-
readonly inputSubject: Subject<unknown>;
|
|
21
|
-
writeValue(value: any): void;
|
|
22
|
-
onEnter(): void;
|
|
23
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Input, never>;
|
|
24
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Input, "axis-input", never, { "inputValue": { "alias": "inputValue"; "required": false; "isSignal": true; }; }, { "inputValue": "inputValueChange"; }, never, never, true, never>;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export { Input };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { ElementRef } from '@angular/core';
|
|
3
|
-
import { ValueAccessOptions, ValueAccess } from 'ngx-axis-appforge/core';
|
|
4
|
-
|
|
5
|
-
declare class InputComponentOptions extends ValueAccessOptions {
|
|
6
|
-
readonly injectData: _angular_core.WritableSignal<any>;
|
|
7
|
-
readonly allPermissions: _angular_core.WritableSignal<{
|
|
8
|
-
[permission: string]: string;
|
|
9
|
-
}>;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
declare class InputComponent extends ValueAccess<InputComponentOptions> {
|
|
13
|
-
protected options: InputComponentOptions;
|
|
14
|
-
readonly isVisible: _angular_core.ModelSignal<boolean>;
|
|
15
|
-
readonly designValue: _angular_core.ModelSignal<any>;
|
|
16
|
-
readonly designOptions: _angular_core.Signal<{
|
|
17
|
-
component: string;
|
|
18
|
-
inuse: boolean;
|
|
19
|
-
injectData: any;
|
|
20
|
-
allPermissions: {
|
|
21
|
-
[permission: string]: string;
|
|
22
|
-
};
|
|
23
|
-
}>;
|
|
24
|
-
content?: ElementRef<HTMLElement>;
|
|
25
|
-
writeValue(value: any): void;
|
|
26
|
-
setInitValue(value: any): void;
|
|
27
|
-
afterOpen(): void;
|
|
28
|
-
onOk(): void;
|
|
29
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputComponent, never>;
|
|
30
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputComponent, "axis-input-component", never, { "isVisible": { "alias": "isVisible"; "required": false; "isSignal": true; }; "designValue": { "alias": "designValue"; "required": false; "isSignal": true; }; }, { "isVisible": "isVisibleChange"; "designValue": "designValueChange"; }, never, never, true, never>;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export { InputComponent };
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import * as _angular_forms from '@angular/forms';
|
|
3
|
-
import { ValueAccessOptions, ValueAccess } from 'ngx-axis-appforge/core';
|
|
4
|
-
|
|
5
|
-
declare class InputIconOptions extends ValueAccessOptions {
|
|
6
|
-
readonly placeholder: _angular_core.WritableSignal<string>;
|
|
7
|
-
readonly modalTitle: _angular_core.WritableSignal<string>;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
declare class InputIcon extends ValueAccess<InputIconOptions> {
|
|
11
|
-
protected options: InputIconOptions;
|
|
12
|
-
private readonly fb;
|
|
13
|
-
readonly fg: _angular_forms.UntypedFormGroup;
|
|
14
|
-
readonly formValue: _angular_core.Signal<any>;
|
|
15
|
-
readonly preview: _angular_core.Signal<any>;
|
|
16
|
-
isVisible: _angular_core.ModelSignal<boolean>;
|
|
17
|
-
writeValue(value: any): void;
|
|
18
|
-
resetForm(): void;
|
|
19
|
-
onOk(): void;
|
|
20
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputIcon, never>;
|
|
21
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputIcon, "axis-input-icon", never, { "isVisible": { "alias": "isVisible"; "required": false; "isSignal": true; }; }, { "isVisible": "isVisibleChange"; }, never, never, true, never>;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export { InputIcon };
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { ValueAccess, ValueAccessOptions } from 'ngx-axis-appforge/core';
|
|
3
|
-
|
|
4
|
-
declare class InputJson extends ValueAccess<ValueAccessOptions> {
|
|
5
|
-
protected options: ValueAccessOptions;
|
|
6
|
-
readonly editorOptions: _angular_core.Signal<{
|
|
7
|
-
component: string;
|
|
8
|
-
inuse: boolean;
|
|
9
|
-
mode: string;
|
|
10
|
-
readonly: boolean;
|
|
11
|
-
disabled: boolean;
|
|
12
|
-
}>;
|
|
13
|
-
readonly open: _angular_core.ModelSignal<boolean>;
|
|
14
|
-
readonly canOk: _angular_core.Signal<boolean>;
|
|
15
|
-
readonly editData: _angular_core.ModelSignal<string>;
|
|
16
|
-
writeValue(value: any): void;
|
|
17
|
-
setEditData(): void;
|
|
18
|
-
onCancel(): void;
|
|
19
|
-
onOk(): void;
|
|
20
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputJson, never>;
|
|
21
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputJson, "axis-input-json", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "editData": { "alias": "editData"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "editData": "editDataChange"; }, never, never, true, never>;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export { InputJson };
|