@acorex/components 4.0.24 → 4.1.0
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/README.md +2 -23
- package/acorex-components.d.ts +1 -0
- package/{esm2015/acorex-components.js → esm2020/acorex-components.mjs} +1 -1
- package/esm2020/lib/accordion/accordion.component.mjs +44 -0
- package/esm2020/lib/accordion/accordion.module.mjs +20 -0
- package/esm2020/lib/base/base-page.class.mjs +92 -0
- package/esm2020/lib/base/element.class.mjs +294 -0
- package/esm2020/lib/base/events.class.mjs +11 -0
- package/esm2020/lib/button/button.component.mjs +71 -0
- package/esm2020/lib/button/button.module.mjs +21 -0
- package/esm2020/lib/calendar/calendar-box/calendar-box.component.mjs +413 -0
- package/esm2020/lib/calendar/calendar-box/calendar-box.module.mjs +22 -0
- package/esm2020/lib/calendar/scheduler/scheduler-views.property.mjs +54 -0
- package/esm2020/lib/calendar/scheduler/scheduler.class.mjs +18 -0
- package/esm2020/lib/calendar/scheduler/scheduler.component.mjs +213 -0
- package/esm2020/lib/calendar/scheduler/scheduler.module.mjs +68 -0
- package/esm2020/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.mjs +132 -0
- package/esm2020/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.mjs +37 -0
- package/esm2020/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.mjs +47 -0
- package/esm2020/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.mjs +95 -0
- package/esm2020/lib/calendar/scheduler/views/month/scheduler-month-view.component.mjs +204 -0
- package/esm2020/lib/calendar/scheduler/views/scheduler-view.component.mjs +99 -0
- package/esm2020/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.mjs +77 -0
- package/esm2020/lib/checkbox/checkbox.component.mjs +98 -0
- package/esm2020/lib/checkbox/checkbox.module.mjs +20 -0
- package/esm2020/lib/color-picker/color-box/color-box.component.mjs +422 -0
- package/esm2020/lib/color-picker/color-picker.component.mjs +82 -0
- package/esm2020/lib/color-picker/color-picker.module.mjs +24 -0
- package/esm2020/lib/context-menu/context-menu.component.mjs +65 -0
- package/esm2020/lib/context-menu/context-menu.directive.mjs +135 -0
- package/esm2020/lib/context-menu/context-menu.module.mjs +20 -0
- package/esm2020/lib/data-filter/columns/filter-column-date.component.mjs +138 -0
- package/esm2020/lib/data-filter/columns/filter-column-number.component.mjs +117 -0
- package/esm2020/lib/data-filter/columns/filter-column-selection.component.mjs +74 -0
- package/esm2020/lib/data-filter/columns/filter-column-string.component.mjs +117 -0
- package/esm2020/lib/data-filter/filter-panel/filter-panel.component.mjs +258 -0
- package/esm2020/lib/data-filter/filter.class.mjs +44 -0
- package/esm2020/lib/data-filter/filter.module.mjs +90 -0
- package/esm2020/lib/data-filter/toolbar/filter-toolbar.component.mjs +166 -0
- package/esm2020/lib/data-list/core/data-list.component.mjs +40 -0
- package/esm2020/lib/data-list/list/list.component.mjs +124 -0
- package/esm2020/lib/data-list/list/list.module.mjs +22 -0
- package/esm2020/lib/data-list/list/toolbar-list-view.component.mjs +85 -0
- package/esm2020/lib/data-source/datasource.component.mjs +47 -0
- package/esm2020/lib/data-source/datasource.module.mjs +18 -0
- package/esm2020/lib/data-source/read-param.mjs +5 -0
- package/esm2020/lib/date-picker/date-picker.component.mjs +705 -0
- package/esm2020/lib/date-picker/date-picker.module.mjs +25 -0
- package/esm2020/lib/dialog/dialog.component.mjs +24 -0
- package/esm2020/lib/dialog/dialog.module.mjs +21 -0
- package/esm2020/lib/dialog/dialog.service.mjs +150 -0
- package/esm2020/lib/drawer/drawer.component.mjs +54 -0
- package/esm2020/lib/drawer/drawer.module.mjs +20 -0
- package/esm2020/lib/dropdown/dropdown.component.mjs +177 -0
- package/esm2020/lib/dropdown/dropdown.module.mjs +26 -0
- package/esm2020/lib/fieldset/fieldset.component.mjs +59 -0
- package/esm2020/lib/fieldset/fieldset.module.mjs +19 -0
- package/esm2020/lib/form-group/form-group.component.mjs +33 -0
- package/esm2020/lib/form-group/form-group.module.mjs +21 -0
- package/esm2020/lib/label/label.component.mjs +19 -0
- package/esm2020/lib/label/label.module.mjs +21 -0
- package/esm2020/lib/loading/loading-indicator.component.mjs +17 -0
- package/esm2020/lib/loading/loading-panel.component.mjs +44 -0
- package/esm2020/lib/loading/loading.module.mjs +21 -0
- package/esm2020/lib/loading/loading.service.mjs +45 -0
- package/esm2020/lib/menu/menu-item.component.mjs +47 -0
- package/esm2020/lib/menu/menu.component.mjs +86 -0
- package/esm2020/lib/menu/menu.module.mjs +22 -0
- package/esm2020/lib/menu/menu2.component.mjs +96 -0
- package/esm2020/lib/number-box/number-box.component.mjs +622 -0
- package/esm2020/lib/number-box/number-box.module.mjs +21 -0
- package/esm2020/lib/page/content.component.mjs +32 -0
- package/esm2020/lib/page/footer.component.mjs +19 -0
- package/esm2020/lib/page/page.component.mjs +53 -0
- package/esm2020/lib/page/page.module.mjs +22 -0
- package/esm2020/lib/panel-box/panel-box.component.mjs +88 -0
- package/esm2020/lib/panel-box/panel-box.module.mjs +19 -0
- package/esm2020/lib/password-box/password-box.component.mjs +31 -0
- package/esm2020/lib/password-box/password-box.module.mjs +23 -0
- package/esm2020/lib/popover/custom-cdk-overlay.service.mjs +47 -0
- package/esm2020/lib/popover/overlay.service.mjs +87 -0
- package/esm2020/lib/popover/popover.component.mjs +115 -0
- package/esm2020/lib/popover/popover.module.mjs +19 -0
- package/esm2020/lib/popup/popup.component.mjs +147 -0
- package/esm2020/lib/popup/popup.module.mjs +25 -0
- package/esm2020/lib/popup/popup.service.mjs +93 -0
- package/esm2020/lib/progress-bar/progress-bar.component.mjs +19 -0
- package/esm2020/lib/progress-bar/progress-bar.module.mjs +19 -0
- package/esm2020/lib/property-editor/editors/color-editor/color.editor.mjs +38 -0
- package/esm2020/lib/property-editor/editors/color-editor/color.module.mjs +24 -0
- package/esm2020/lib/property-editor/editors/column-editor/column.editor.mjs +115 -0
- package/esm2020/lib/property-editor/editors/column-editor/column.module.mjs +32 -0
- package/esm2020/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.mjs +211 -0
- package/esm2020/lib/property-editor/editors/conditional-color-editor/conditional-color.module.mjs +78 -0
- package/esm2020/lib/property-editor/editors/date-editor/date.editor.mjs +51 -0
- package/esm2020/lib/property-editor/editors/date-editor/date.module.mjs +24 -0
- package/esm2020/lib/property-editor/editors/number-editor/number.editor.mjs +60 -0
- package/esm2020/lib/property-editor/editors/number-editor/number.module.mjs +24 -0
- package/esm2020/lib/property-editor/editors/range-editor/range.editor.mjs +140 -0
- package/esm2020/lib/property-editor/editors/range-editor/range.module.mjs +61 -0
- package/esm2020/lib/property-editor/editors/selectbox-editor/selectbox.editor.mjs +71 -0
- package/esm2020/lib/property-editor/editors/selectbox-editor/selectbox.module.mjs +25 -0
- package/esm2020/lib/property-editor/editors/switch-editor/number.editor.mjs +29 -0
- package/esm2020/lib/property-editor/editors/switch-editor/number.module.mjs +25 -0
- package/esm2020/lib/property-editor/editors/text-editor/text.editor.mjs +30 -0
- package/esm2020/lib/property-editor/editors/text-editor/text.module.mjs +24 -0
- package/esm2020/lib/property-editor/editors/time-editor/time.editor.mjs +43 -0
- package/esm2020/lib/property-editor/editors/time-editor/time.module.mjs +24 -0
- package/esm2020/lib/property-editor/property-editor-renderer.directive.mjs +152 -0
- package/esm2020/lib/property-editor/property-editor.class.mjs +101 -0
- package/esm2020/lib/property-editor/property-editor.module.mjs +147 -0
- package/esm2020/lib/query-builder/query-builder-group.component.mjs +124 -0
- package/esm2020/lib/query-builder/query-builder-popup/query-builder-popup.component.mjs +171 -0
- package/esm2020/lib/query-builder/query-builder-rule.component.mjs +357 -0
- package/esm2020/lib/query-builder/query-builder.class.mjs +20 -0
- package/esm2020/lib/query-builder/query-builder.component.mjs +82 -0
- package/esm2020/lib/query-builder/query-builder.module.mjs +59 -0
- package/esm2020/lib/query-builder/query-builder.service.mjs +191 -0
- package/esm2020/lib/searchbox/searchbox.component.mjs +79 -0
- package/esm2020/lib/searchbox/searchbox.module.mjs +24 -0
- package/esm2020/lib/selectbox/selectbox.component.mjs +956 -0
- package/esm2020/lib/selectbox/selectbox.module.mjs +44 -0
- package/esm2020/lib/selectbox/selectbox2.component.mjs +574 -0
- package/esm2020/lib/selection-list/selection-list.component.mjs +101 -0
- package/esm2020/lib/selection-list/selection-list.module.mjs +21 -0
- package/esm2020/lib/switch/switch.component.mjs +51 -0
- package/esm2020/lib/switch/switch.module.mjs +20 -0
- package/esm2020/lib/tab-page/tab-page-Renderer.component.mjs +69 -0
- package/esm2020/lib/tab-page/tab-page-host.component.mjs +109 -0
- package/esm2020/lib/tab-page/tab-page.module.mjs +21 -0
- package/esm2020/lib/tab-page/tab-page.service.mjs +156 -0
- package/esm2020/lib/tab-strip/tab-strip.component.mjs +36 -0
- package/esm2020/lib/tab-strip/tab-strip.module.mjs +19 -0
- package/esm2020/lib/tab-view/dynamic-tabs.directive.mjs +24 -0
- package/esm2020/lib/tab-view/tab-view.component.mjs +105 -0
- package/esm2020/lib/tab-view/tab-view.module.mjs +21 -0
- package/esm2020/lib/tab-view/tab.component.mjs +30 -0
- package/esm2020/lib/textarea/textarea.component.mjs +26 -0
- package/esm2020/lib/textarea/textarea.module.mjs +21 -0
- package/esm2020/lib/textbox/textbox.component.mjs +39 -0
- package/esm2020/lib/textbox/textbox.module.mjs +24 -0
- package/esm2020/lib/time-picker/time-picker.component.mjs +943 -0
- package/esm2020/lib/time-picker/time-picker.module.mjs +22 -0
- package/esm2020/lib/toast/toast-message/toast-message.component.mjs +74 -0
- package/esm2020/lib/toast/toast-wrapper/toast-wrapper.component.mjs +13 -0
- package/esm2020/lib/toast/toast.module.mjs +21 -0
- package/esm2020/lib/toast/toast.service.mjs +44 -0
- package/esm2020/lib/toolbar/group-button/toolbar-group-button.component.mjs +78 -0
- package/esm2020/lib/toolbar/menu/toolbar-menu.component.mjs +57 -0
- package/esm2020/lib/toolbar/search/toolbar-search.component.mjs +54 -0
- package/esm2020/lib/toolbar/title/toolbar-title.component.mjs +47 -0
- package/esm2020/lib/toolbar/toolbar-item.mjs +6 -0
- package/esm2020/lib/toolbar/toolbar.component.mjs +13 -0
- package/esm2020/lib/toolbar/toolbar.module.mjs +40 -0
- package/esm2020/lib/tooltip/tooltip.directive.mjs +100 -0
- package/esm2020/lib/tooltip/tooltip.module.mjs +19 -0
- package/esm2020/lib/tree-side-menu/tree-side-menu.component.mjs +646 -0
- package/esm2020/lib/tree-side-menu/tree-side-menu.module.mjs +35 -0
- package/esm2020/lib/tree-view/tree-view.component.mjs +726 -0
- package/esm2020/lib/tree-view/tree-view.module.mjs +22 -0
- package/esm2020/lib/upload-file/upload-file.component.mjs +170 -0
- package/esm2020/lib/upload-file/upload-file.events.mjs +2 -0
- package/esm2020/lib/upload-file/upload-file.module.mjs +24 -0
- package/esm2020/lib/validation/validation-form.component.mjs +64 -0
- package/esm2020/lib/validation/validation-rule.widget.mjs +103 -0
- package/esm2020/lib/validation/validation.class.mjs +2 -0
- package/esm2020/lib/validation/validation.component.mjs +82 -0
- package/esm2020/lib/validation/validation.module.mjs +34 -0
- package/esm2020/public-api.mjs +154 -0
- package/fesm2015/acorex-components.mjs +15014 -0
- package/fesm2015/acorex-components.mjs.map +1 -0
- package/fesm2020/acorex-components.mjs +14966 -0
- package/fesm2020/acorex-components.mjs.map +1 -0
- package/lib/accordion/accordion.component.d.ts +13 -0
- package/lib/accordion/accordion.module.d.ts +9 -0
- package/lib/{page → base}/base-page.class.d.ts +11 -6
- package/lib/base/element.class.d.ts +106 -0
- package/lib/base/events.class.d.ts +8 -18
- package/lib/button/button.component.d.ts +19 -4
- package/lib/button/button.module.d.ts +6 -0
- package/lib/calendar/calendar-box/calendar-box.component.d.ts +81 -0
- package/lib/calendar/calendar-box/calendar-box.module.d.ts +11 -0
- package/lib/calendar/scheduler/scheduler-views.property.d.ts +19 -0
- package/lib/calendar/scheduler/scheduler.class.d.ts +36 -0
- package/lib/calendar/scheduler/scheduler.component.d.ts +39 -0
- package/lib/calendar/scheduler/scheduler.module.d.ts +21 -0
- package/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.d.ts +25 -0
- package/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.d.ts +14 -0
- package/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.d.ts +16 -0
- package/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.d.ts +26 -0
- package/lib/calendar/scheduler/views/month/scheduler-month-view.component.d.ts +37 -0
- package/lib/calendar/scheduler/views/scheduler-view.component.d.ts +28 -0
- package/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.d.ts +24 -0
- package/lib/checkbox/checkbox.component.d.ts +28 -7
- package/lib/checkbox/checkbox.module.d.ts +7 -0
- package/lib/color-picker/color-box/color-box.component.d.ts +25 -0
- package/lib/color-picker/color-picker.component.d.ts +30 -0
- package/lib/color-picker/color-picker.module.d.ts +13 -0
- package/lib/context-menu/context-menu.component.d.ts +22 -0
- package/lib/context-menu/context-menu.directive.d.ts +38 -0
- package/lib/context-menu/context-menu.module.d.ts +9 -0
- package/lib/data-filter/columns/filter-column-date.component.d.ts +22 -0
- package/lib/data-filter/columns/filter-column-number.component.d.ts +15 -0
- package/lib/data-filter/columns/filter-column-selection.component.d.ts +18 -0
- package/lib/data-filter/columns/filter-column-string.component.d.ts +15 -0
- package/lib/data-filter/filter-panel/filter-panel.component.d.ts +45 -0
- package/lib/data-filter/filter.class.d.ts +40 -0
- package/lib/data-filter/filter.module.d.ts +24 -0
- package/lib/data-filter/toolbar/filter-toolbar.component.d.ts +25 -0
- package/lib/data-list/core/data-list.component.d.ts +15 -0
- package/lib/data-list/list/list.component.d.ts +40 -0
- package/lib/data-list/list/list.module.d.ts +11 -0
- package/lib/data-list/list/toolbar-list-view.component.d.ts +17 -0
- package/lib/data-source/datasource.component.d.ts +16 -0
- package/lib/data-source/datasource.module.d.ts +7 -0
- package/lib/data-source/read-param.d.ts +40 -0
- package/lib/date-picker/date-picker.component.d.ts +81 -0
- package/lib/date-picker/date-picker.module.d.ts +14 -0
- package/lib/dialog/dialog.component.d.ts +13 -11
- package/lib/dialog/dialog.module.d.ts +8 -0
- package/lib/dialog/dialog.service.d.ts +34 -11
- package/lib/drawer/drawer.component.d.ts +8 -25
- package/lib/drawer/drawer.module.d.ts +7 -0
- package/lib/dropdown/dropdown.component.d.ts +29 -13
- package/lib/dropdown/dropdown.module.d.ts +11 -0
- package/lib/fieldset/fieldset.component.d.ts +11 -0
- package/lib/fieldset/fieldset.module.d.ts +8 -0
- package/lib/form-group/form-group.component.d.ts +14 -0
- package/lib/form-group/form-group.module.d.ts +8 -0
- package/lib/label/label.component.d.ts +8 -4
- package/lib/label/label.module.d.ts +6 -0
- package/lib/loading/loading-indicator.component.d.ts +9 -0
- package/lib/loading/loading-panel.component.d.ts +13 -0
- package/lib/loading/loading.module.d.ts +8 -0
- package/lib/loading/loading.service.d.ts +7 -39
- package/lib/menu/menu-item.component.d.ts +18 -0
- package/lib/menu/menu.component.d.ts +35 -0
- package/lib/menu/menu.module.d.ts +11 -0
- package/lib/menu/menu2.component.d.ts +21 -0
- package/lib/number-box/number-box.component.d.ts +51 -30
- package/lib/number-box/number-box.module.d.ts +8 -0
- package/lib/page/content.component.d.ts +8 -0
- package/lib/page/footer.component.d.ts +5 -0
- package/lib/page/page.component.d.ts +11 -6
- package/lib/page/page.module.d.ts +11 -0
- package/lib/panel-box/panel-box.component.d.ts +19 -0
- package/lib/panel-box/panel-box.module.d.ts +8 -0
- package/lib/password-box/password-box.component.d.ts +12 -0
- package/lib/password-box/password-box.module.d.ts +10 -0
- package/lib/{base → popover}/custom-cdk-overlay.service.d.ts +7 -3
- package/lib/{base → popover}/overlay.service.d.ts +5 -3
- package/lib/popover/popover.component.d.ts +30 -0
- package/lib/popover/popover.module.d.ts +8 -0
- package/lib/popup/popup.component.d.ts +21 -15
- package/lib/popup/popup.module.d.ts +11 -0
- package/lib/popup/popup.service.d.ts +7 -3
- package/lib/progress-bar/progress-bar.component.d.ts +7 -0
- package/lib/progress-bar/progress-bar.module.d.ts +8 -0
- package/lib/property-editor/editors/color-editor/color.editor.d.ts +13 -0
- package/lib/property-editor/editors/color-editor/color.module.d.ts +12 -0
- package/lib/property-editor/editors/column-editor/column.editor.d.ts +34 -0
- package/lib/property-editor/editors/column-editor/column.module.d.ts +20 -0
- package/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.d.ts +44 -0
- package/lib/property-editor/editors/conditional-color-editor/conditional-color.module.d.ts +19 -0
- package/lib/property-editor/editors/date-editor/date.editor.d.ts +28 -0
- package/lib/property-editor/editors/date-editor/date.module.d.ts +12 -0
- package/lib/property-editor/editors/number-editor/number.editor.d.ts +19 -0
- package/lib/property-editor/editors/number-editor/number.module.d.ts +12 -0
- package/lib/property-editor/editors/range-editor/range.editor.d.ts +29 -0
- package/lib/property-editor/editors/range-editor/range.module.d.ts +18 -0
- package/lib/property-editor/editors/selectbox-editor/selectbox.editor.d.ts +28 -0
- package/lib/property-editor/editors/selectbox-editor/selectbox.module.d.ts +13 -0
- package/lib/property-editor/editors/switch-editor/number.editor.d.ts +11 -0
- package/lib/property-editor/editors/switch-editor/number.module.d.ts +13 -0
- package/lib/property-editor/editors/text-editor/text.editor.d.ts +15 -0
- package/lib/property-editor/editors/text-editor/text.module.d.ts +12 -0
- package/lib/property-editor/editors/time-editor/time.editor.d.ts +17 -0
- package/lib/property-editor/editors/time-editor/time.module.d.ts +12 -0
- package/lib/property-editor/property-editor-renderer.directive.d.ts +30 -0
- package/lib/property-editor/property-editor.class.d.ts +67 -0
- package/lib/property-editor/property-editor.module.d.ts +18 -0
- package/lib/query-builder/query-builder-group.component.d.ts +33 -0
- package/lib/query-builder/query-builder-popup/query-builder-popup.component.d.ts +35 -0
- package/lib/query-builder/query-builder-rule.component.d.ts +45 -0
- package/lib/query-builder/query-builder.class.d.ts +45 -0
- package/lib/query-builder/query-builder.component.d.ts +27 -0
- package/lib/query-builder/query-builder.module.d.ts +22 -0
- package/lib/query-builder/query-builder.service.d.ts +18 -0
- package/lib/searchbox/searchbox.component.d.ts +22 -0
- package/lib/searchbox/searchbox.module.d.ts +13 -0
- package/lib/selectbox/selectbox.component.d.ts +114 -23
- package/lib/selectbox/selectbox.module.d.ts +13 -0
- package/lib/selectbox/selectbox2.component.d.ts +103 -0
- package/lib/selection-list/selection-list.component.d.ts +29 -6
- package/lib/selection-list/selection-list.module.d.ts +8 -0
- package/lib/switch/switch.component.d.ts +19 -5
- package/lib/switch/switch.module.d.ts +7 -0
- package/lib/tab-page/tab-page-Renderer.component.d.ts +16 -0
- package/lib/tab-page/tab-page-host.component.d.ts +26 -0
- package/lib/tab-page/tab-page.module.d.ts +10 -0
- package/lib/tab-page/tab-page.service.d.ts +30 -0
- package/lib/tab-strip/tab-strip.component.d.ts +28 -0
- package/lib/tab-strip/tab-strip.module.d.ts +8 -0
- package/lib/tab-view/dynamic-tabs.directive.d.ts +16 -0
- package/lib/tab-view/tab-view.component.d.ts +26 -0
- package/lib/tab-view/tab-view.module.d.ts +10 -0
- package/lib/tab-view/tab.component.d.ts +12 -0
- package/lib/textarea/textarea.component.d.ts +12 -0
- package/lib/textarea/textarea.module.d.ts +8 -0
- package/lib/textbox/textbox.component.d.ts +14 -6
- package/lib/textbox/textbox.module.d.ts +9 -0
- package/lib/time-picker/time-picker.component.d.ts +52 -0
- package/lib/time-picker/time-picker.module.d.ts +11 -0
- package/lib/toast/toast-message/toast-message.component.d.ts +18 -0
- package/lib/toast/toast-wrapper/toast-wrapper.component.d.ts +8 -0
- package/lib/toast/toast.module.d.ts +7 -0
- package/lib/toast/toast.service.d.ts +16 -13
- package/lib/toolbar/group-button/toolbar-group-button.component.d.ts +12 -0
- package/lib/toolbar/menu/toolbar-menu.component.d.ts +24 -0
- package/lib/toolbar/search/toolbar-search.component.d.ts +16 -0
- package/lib/toolbar/title/toolbar-title.component.d.ts +9 -0
- package/lib/toolbar/toolbar-item.d.ts +3 -0
- package/lib/toolbar/toolbar.component.d.ts +8 -0
- package/lib/toolbar/toolbar.module.d.ts +14 -0
- package/lib/tooltip/tooltip.directive.d.ts +18 -12
- package/lib/tooltip/tooltip.module.d.ts +6 -0
- package/lib/tree-side-menu/tree-side-menu.component.d.ts +111 -0
- package/lib/tree-side-menu/tree-side-menu.module.d.ts +11 -0
- package/lib/tree-view/tree-view.component.d.ts +117 -0
- package/lib/tree-view/tree-view.module.d.ts +11 -0
- package/lib/upload-file/upload-file.component.d.ts +38 -0
- package/lib/upload-file/upload-file.events.d.ts +10 -0
- package/lib/upload-file/upload-file.module.d.ts +13 -0
- package/lib/validation/validation-form.component.d.ts +19 -0
- package/lib/validation/validation-rule.widget.d.ts +5 -7
- package/lib/validation/validation.class.d.ts +0 -1
- package/lib/validation/validation.component.d.ts +23 -0
- package/lib/validation/validation.module.d.ts +8 -0
- package/package.json +25 -14
- package/public-api.d.ts +151 -31
- package/acorex-components.metadata.json +0 -1
- package/bundles/acorex-components.umd.js +0 -6491
- package/bundles/acorex-components.umd.js.map +0 -1
- package/bundles/acorex-components.umd.min.js +0 -16
- package/bundles/acorex-components.umd.min.js.map +0 -1
- package/esm2015/lib/alert/alert-button.component.js +0 -42
- package/esm2015/lib/alert/alert-contnet.component.js +0 -16
- package/esm2015/lib/alert/alert-footer.component.js +0 -18
- package/esm2015/lib/alert/alert-suffix.component.js +0 -18
- package/esm2015/lib/alert/alert-title.component.js +0 -16
- package/esm2015/lib/alert/alert.component.js +0 -87
- package/esm2015/lib/alert/alert.module.js +0 -28
- package/esm2015/lib/alert/index.js +0 -8
- package/esm2015/lib/base/common.module.js +0 -13
- package/esm2015/lib/base/custom-cdk-overlay.service.js +0 -56
- package/esm2015/lib/base/drawing.class.js +0 -11
- package/esm2015/lib/base/events.class.js +0 -19
- package/esm2015/lib/base/index.js +0 -7
- package/esm2015/lib/base/mixin/base-components.class.js +0 -72
- package/esm2015/lib/base/mixin/button-mixin.class.js +0 -36
- package/esm2015/lib/base/mixin/clickable-mixin.class.js +0 -17
- package/esm2015/lib/base/mixin/constratctor.js +0 -2
- package/esm2015/lib/base/mixin/datalist-component.class.js +0 -97
- package/esm2015/lib/base/mixin/dropdown-mixin.class.js +0 -36
- package/esm2015/lib/base/mixin/index.js +0 -3
- package/esm2015/lib/base/mixin/interactive-mixin.class.js +0 -47
- package/esm2015/lib/base/mixin/loading-mixin.class.js +0 -15
- package/esm2015/lib/base/mixin/mixin.class.js +0 -24
- package/esm2015/lib/base/mixin/selection-component.class.js +0 -158
- package/esm2015/lib/base/mixin/sizable-mixin.class.js +0 -19
- package/esm2015/lib/base/mixin/textbox-mixin.class.js +0 -19
- package/esm2015/lib/base/mixin/value-mixin.class.js +0 -172
- package/esm2015/lib/base/overlay.service.js +0 -96
- package/esm2015/lib/base/responsive.directive.js +0 -33
- package/esm2015/lib/base/styles.class.js +0 -4
- package/esm2015/lib/button/button-group.component.js +0 -71
- package/esm2015/lib/button/button-item.class.js +0 -2
- package/esm2015/lib/button/button-item.component.js +0 -35
- package/esm2015/lib/button/button.component.js +0 -34
- package/esm2015/lib/button/button.module.js +0 -24
- package/esm2015/lib/button/dropdown-button.component.js +0 -108
- package/esm2015/lib/button/index.js +0 -7
- package/esm2015/lib/calendar/calendar.component.js +0 -69
- package/esm2015/lib/calendar/calendar.module.js +0 -19
- package/esm2015/lib/calendar/index.js +0 -3
- package/esm2015/lib/carousel/carousel-arrows.component.js +0 -45
- package/esm2015/lib/carousel/carousel-item.component.js +0 -21
- package/esm2015/lib/carousel/carousel-pager.component.js +0 -71
- package/esm2015/lib/carousel/carousel-splidejs.class.js +0 -83
- package/esm2015/lib/carousel/carousel.class.js +0 -7
- package/esm2015/lib/carousel/carousel.component.js +0 -226
- package/esm2015/lib/carousel/carousel.module.js +0 -19
- package/esm2015/lib/carousel/index.js +0 -7
- package/esm2015/lib/checkbox/checkbox.component.js +0 -41
- package/esm2015/lib/checkbox/checkbox.module.js +0 -15
- package/esm2015/lib/checkbox/index.js +0 -3
- package/esm2015/lib/datalist/datalist.component.js +0 -71
- package/esm2015/lib/datalist/datalist.module.js +0 -17
- package/esm2015/lib/datalist/index.js +0 -3
- package/esm2015/lib/datapager/datapager-base.component.js +0 -33
- package/esm2015/lib/datapager/datapager-info.component.js +0 -59
- package/esm2015/lib/datapager/datapager-input-selector.component.js +0 -51
- package/esm2015/lib/datapager/datapager-next-buttons.components.js +0 -51
- package/esm2015/lib/datapager/datapager-numeric-selector.component.js +0 -86
- package/esm2015/lib/datapager/datapager-pagesize-dropdown.component.js +0 -69
- package/esm2015/lib/datapager/datapager-prev-buttons.component.js +0 -47
- package/esm2015/lib/datapager/datapager.component.js +0 -122
- package/esm2015/lib/datapager/datapager.module.js +0 -32
- package/esm2015/lib/datapager/index.js +0 -9
- package/esm2015/lib/datepicker/datepicker.component.js +0 -62
- package/esm2015/lib/datepicker/datepicker.module.js +0 -18
- package/esm2015/lib/datepicker/index.js +0 -3
- package/esm2015/lib/decorators/decorators.module.js +0 -17
- package/esm2015/lib/decorators/index.js +0 -4
- package/esm2015/lib/decorators/prefix.component.js +0 -28
- package/esm2015/lib/decorators/suffix.component.js +0 -28
- package/esm2015/lib/dialog/dialog.class.js +0 -47
- package/esm2015/lib/dialog/dialog.component.js +0 -39
- package/esm2015/lib/dialog/dialog.module.js +0 -19
- package/esm2015/lib/dialog/dialog.service.js +0 -139
- package/esm2015/lib/dialog/index.js +0 -5
- package/esm2015/lib/drawer/drawer-container.component.js +0 -67
- package/esm2015/lib/drawer/drawer-content.component.js +0 -24
- package/esm2015/lib/drawer/drawer.component.js +0 -139
- package/esm2015/lib/drawer/drawer.module.js +0 -18
- package/esm2015/lib/drawer/index.js +0 -5
- package/esm2015/lib/dropdown/dropdown.component.js +0 -127
- package/esm2015/lib/dropdown/dropdown.module.js +0 -15
- package/esm2015/lib/dropdown/index.js +0 -3
- package/esm2015/lib/form/form-field.component.js +0 -20
- package/esm2015/lib/form/form-field.module.js +0 -15
- package/esm2015/lib/form/form.component.js +0 -51
- package/esm2015/lib/form/index.js +0 -4
- package/esm2015/lib/icon/icon.component.js +0 -28
- package/esm2015/lib/icon/icon.module.js +0 -16
- package/esm2015/lib/icon/index.js +0 -3
- package/esm2015/lib/input-mask/index.js +0 -3
- package/esm2015/lib/input-mask/input-mask.component.js +0 -35
- package/esm2015/lib/input-mask/input-mask.module.js +0 -17
- package/esm2015/lib/label/index.js +0 -3
- package/esm2015/lib/label/label.component.js +0 -20
- package/esm2015/lib/label/label.module.js +0 -16
- package/esm2015/lib/loading/index.js +0 -5
- package/esm2015/lib/loading/loading.component.js +0 -23
- package/esm2015/lib/loading/loading.directive.js +0 -70
- package/esm2015/lib/loading/loading.module.js +0 -18
- package/esm2015/lib/loading/loading.service.js +0 -157
- package/esm2015/lib/number-box/index.js +0 -3
- package/esm2015/lib/number-box/number-box.component.js +0 -242
- package/esm2015/lib/number-box/number-box.module.js +0 -24
- package/esm2015/lib/page/base-page.class.js +0 -84
- package/esm2015/lib/page/index.js +0 -3
- package/esm2015/lib/page/page.component.js +0 -32
- package/esm2015/lib/popup/index.js +0 -4
- package/esm2015/lib/popup/popup.component.js +0 -143
- package/esm2015/lib/popup/popup.module.js +0 -19
- package/esm2015/lib/popup/popup.service.js +0 -89
- package/esm2015/lib/selectbox/index.js +0 -3
- package/esm2015/lib/selectbox/selectbox.component.js +0 -188
- package/esm2015/lib/selectbox/selectbox.module.js +0 -16
- package/esm2015/lib/selection-list/index.js +0 -3
- package/esm2015/lib/selection-list/selection-list.component.js +0 -46
- package/esm2015/lib/selection-list/selection-list.module.js +0 -16
- package/esm2015/lib/side-menu/index.js +0 -3
- package/esm2015/lib/side-menu/side-menu.component.js +0 -21
- package/esm2015/lib/side-menu/side-menu.module.js +0 -16
- package/esm2015/lib/switch/index.js +0 -3
- package/esm2015/lib/switch/switch.component.js +0 -29
- package/esm2015/lib/switch/switch.module.js +0 -16
- package/esm2015/lib/tabs/index.js +0 -6
- package/esm2015/lib/tabs/tab-strip.component.js +0 -57
- package/esm2015/lib/tabs/tab-view.component.js +0 -45
- package/esm2015/lib/tabs/tab.component.js +0 -48
- package/esm2015/lib/tabs/tabs.class.js +0 -4
- package/esm2015/lib/tabs/tabs.module.js +0 -18
- package/esm2015/lib/textbox/index.js +0 -3
- package/esm2015/lib/textbox/textbox.component.js +0 -46
- package/esm2015/lib/textbox/textbox.module.js +0 -24
- package/esm2015/lib/time-box/index.js +0 -3
- package/esm2015/lib/time-box/time-box.component.js +0 -127
- package/esm2015/lib/time-box/time-box.module.js +0 -24
- package/esm2015/lib/toast/index.js +0 -5
- package/esm2015/lib/toast/toast.class.js +0 -2
- package/esm2015/lib/toast/toast.component.js +0 -54
- package/esm2015/lib/toast/toast.module.js +0 -17
- package/esm2015/lib/toast/toast.service.js +0 -117
- package/esm2015/lib/tooltip/index.js +0 -4
- package/esm2015/lib/tooltip/tooltip.component.js +0 -37
- package/esm2015/lib/tooltip/tooltip.directive.js +0 -81
- package/esm2015/lib/tooltip/tooltip.module.js +0 -18
- package/esm2015/lib/validation/index.js +0 -3
- package/esm2015/lib/validation/validation-rule.widget.js +0 -110
- package/esm2015/lib/validation/validation.class.js +0 -2
- package/esm2015/lib/validation/validation.module.js +0 -28
- package/esm2015/public-api.js +0 -32
- package/fesm2015/acorex-components.js +0 -5430
- package/fesm2015/acorex-components.js.map +0 -1
- package/lib/alert/alert-button.component.d.ts +0 -10
- package/lib/alert/alert-contnet.component.d.ts +0 -2
- package/lib/alert/alert-footer.component.d.ts +0 -2
- package/lib/alert/alert-suffix.component.d.ts +0 -2
- package/lib/alert/alert-title.component.d.ts +0 -2
- package/lib/alert/alert.component.d.ts +0 -16
- package/lib/alert/alert.module.d.ts +0 -2
- package/lib/alert/index.d.ts +0 -7
- package/lib/base/common.module.d.ts +0 -2
- package/lib/base/drawing.class.d.ts +0 -9
- package/lib/base/index.d.ts +0 -6
- package/lib/base/mixin/base-components.class.d.ts +0 -51
- package/lib/base/mixin/button-mixin.class.d.ts +0 -34
- package/lib/base/mixin/clickable-mixin.class.d.ts +0 -29
- package/lib/base/mixin/constratctor.d.ts +0 -4
- package/lib/base/mixin/datalist-component.class.d.ts +0 -45
- package/lib/base/mixin/dropdown-mixin.class.d.ts +0 -38
- package/lib/base/mixin/index.d.ts +0 -2
- package/lib/base/mixin/interactive-mixin.class.d.ts +0 -34
- package/lib/base/mixin/loading-mixin.class.d.ts +0 -28
- package/lib/base/mixin/mixin.class.d.ts +0 -493
- package/lib/base/mixin/selection-component.class.d.ts +0 -46
- package/lib/base/mixin/sizable-mixin.class.d.ts +0 -28
- package/lib/base/mixin/textbox-mixin.class.d.ts +0 -33
- package/lib/base/mixin/value-mixin.class.d.ts +0 -50
- package/lib/base/responsive.directive.d.ts +0 -7
- package/lib/base/styles.class.d.ts +0 -6
- package/lib/button/button-group.component.d.ts +0 -19
- package/lib/button/button-item.class.d.ts +0 -17
- package/lib/button/button-item.component.d.ts +0 -16
- package/lib/button/dropdown-button.component.d.ts +0 -27
- package/lib/button/index.d.ts +0 -6
- package/lib/calendar/calendar.component.d.ts +0 -17
- package/lib/calendar/calendar.module.d.ts +0 -2
- package/lib/calendar/index.d.ts +0 -2
- package/lib/carousel/carousel-arrows.component.d.ts +0 -11
- package/lib/carousel/carousel-item.component.d.ts +0 -5
- package/lib/carousel/carousel-pager.component.d.ts +0 -19
- package/lib/carousel/carousel-splidejs.class.d.ts +0 -18
- package/lib/carousel/carousel.class.d.ts +0 -45
- package/lib/carousel/carousel.component.d.ts +0 -59
- package/lib/carousel/carousel.module.d.ts +0 -2
- package/lib/carousel/index.d.ts +0 -6
- package/lib/checkbox/index.d.ts +0 -2
- package/lib/datalist/datalist.component.d.ts +0 -22
- package/lib/datalist/datalist.module.d.ts +0 -2
- package/lib/datalist/index.d.ts +0 -2
- package/lib/datapager/datapager-base.component.d.ts +0 -12
- package/lib/datapager/datapager-info.component.d.ts +0 -24
- package/lib/datapager/datapager-input-selector.component.d.ts +0 -12
- package/lib/datapager/datapager-next-buttons.components.d.ts +0 -14
- package/lib/datapager/datapager-numeric-selector.component.d.ts +0 -17
- package/lib/datapager/datapager-pagesize-dropdown.component.d.ts +0 -17
- package/lib/datapager/datapager-prev-buttons.component.d.ts +0 -13
- package/lib/datapager/datapager.component.d.ts +0 -41
- package/lib/datapager/datapager.module.d.ts +0 -2
- package/lib/datapager/index.d.ts +0 -8
- package/lib/datepicker/datepicker.component.d.ts +0 -15
- package/lib/datepicker/datepicker.module.d.ts +0 -2
- package/lib/datepicker/index.d.ts +0 -2
- package/lib/decorators/decorators.module.d.ts +0 -2
- package/lib/decorators/index.d.ts +0 -3
- package/lib/decorators/prefix.component.d.ts +0 -5
- package/lib/decorators/suffix.component.d.ts +0 -5
- package/lib/dialog/dialog.class.d.ts +0 -35
- package/lib/dialog/index.d.ts +0 -4
- package/lib/drawer/drawer-container.component.d.ts +0 -10
- package/lib/drawer/drawer-content.component.d.ts +0 -5
- package/lib/drawer/index.d.ts +0 -4
- package/lib/dropdown/index.d.ts +0 -2
- package/lib/form/form-field.component.d.ts +0 -5
- package/lib/form/form-field.module.d.ts +0 -2
- package/lib/form/form.component.d.ts +0 -10
- package/lib/form/index.d.ts +0 -3
- package/lib/icon/icon.component.d.ts +0 -7
- package/lib/icon/icon.module.d.ts +0 -2
- package/lib/icon/index.d.ts +0 -2
- package/lib/input-mask/index.d.ts +0 -2
- package/lib/input-mask/input-mask.component.d.ts +0 -11
- package/lib/input-mask/input-mask.module.d.ts +0 -2
- package/lib/label/index.d.ts +0 -2
- package/lib/loading/index.d.ts +0 -4
- package/lib/loading/loading.component.d.ts +0 -5
- package/lib/loading/loading.directive.d.ts +0 -19
- package/lib/number-box/index.d.ts +0 -2
- package/lib/page/index.d.ts +0 -2
- package/lib/popup/index.d.ts +0 -3
- package/lib/selectbox/index.d.ts +0 -2
- package/lib/selection-list/index.d.ts +0 -2
- package/lib/side-menu/index.d.ts +0 -2
- package/lib/side-menu/side-menu.component.d.ts +0 -5
- package/lib/side-menu/side-menu.module.d.ts +0 -2
- package/lib/switch/index.d.ts +0 -2
- package/lib/tabs/index.d.ts +0 -5
- package/lib/tabs/tab-strip.component.d.ts +0 -14
- package/lib/tabs/tab-view.component.d.ts +0 -11
- package/lib/tabs/tab.component.d.ts +0 -15
- package/lib/tabs/tabs.class.d.ts +0 -18
- package/lib/tabs/tabs.module.d.ts +0 -2
- package/lib/textbox/index.d.ts +0 -2
- package/lib/time-box/index.d.ts +0 -2
- package/lib/time-box/time-box.component.d.ts +0 -26
- package/lib/time-box/time-box.module.d.ts +0 -2
- package/lib/toast/index.d.ts +0 -4
- package/lib/toast/toast.class.d.ts +0 -14
- package/lib/toast/toast.component.d.ts +0 -13
- package/lib/tooltip/index.d.ts +0 -3
- package/lib/tooltip/tooltip.component.d.ts +0 -7
- package/lib/validation/index.d.ts +0 -2
|
@@ -1,493 +0,0 @@
|
|
|
1
|
-
import { AXBaseComponent } from './base-components.class';
|
|
2
|
-
export declare const AXBaseComponentMixin: {
|
|
3
|
-
new (...args: any[]): {
|
|
4
|
-
id: string;
|
|
5
|
-
rtl: boolean;
|
|
6
|
-
cssClass: string;
|
|
7
|
-
cssStyle: string;
|
|
8
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
9
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
10
|
-
_isInited: boolean;
|
|
11
|
-
_isRendered: boolean;
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
ngAfterViewInit(): void;
|
|
14
|
-
ngOnDestroy(): void;
|
|
15
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
16
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
17
|
-
_onInternalInit(): void;
|
|
18
|
-
_onInternalViewInit(): void;
|
|
19
|
-
_onInternalDestroy(): void;
|
|
20
|
-
onInit(): void;
|
|
21
|
-
onViewInit(): void;
|
|
22
|
-
onDestroy(): void;
|
|
23
|
-
};
|
|
24
|
-
} & typeof AXBaseComponent;
|
|
25
|
-
export declare const AXSizableComponentMixin: {
|
|
26
|
-
new (...args: any[]): {
|
|
27
|
-
size: import("./base-components.class").AXElementSize;
|
|
28
|
-
_onInternalInit(): void;
|
|
29
|
-
id: string;
|
|
30
|
-
rtl: boolean;
|
|
31
|
-
cssClass: string;
|
|
32
|
-
cssStyle: string;
|
|
33
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
34
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
35
|
-
_isInited: boolean;
|
|
36
|
-
_isRendered: boolean;
|
|
37
|
-
ngOnInit(): void;
|
|
38
|
-
ngAfterViewInit(): void;
|
|
39
|
-
ngOnDestroy(): void;
|
|
40
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
41
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
42
|
-
_onInternalViewInit(): void;
|
|
43
|
-
_onInternalDestroy(): void;
|
|
44
|
-
onInit(): void;
|
|
45
|
-
onViewInit(): void;
|
|
46
|
-
onDestroy(): void;
|
|
47
|
-
};
|
|
48
|
-
} & {
|
|
49
|
-
new (...args: any[]): {
|
|
50
|
-
id: string;
|
|
51
|
-
rtl: boolean;
|
|
52
|
-
cssClass: string;
|
|
53
|
-
cssStyle: string;
|
|
54
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
55
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
56
|
-
_isInited: boolean;
|
|
57
|
-
_isRendered: boolean;
|
|
58
|
-
ngOnInit(): void;
|
|
59
|
-
ngAfterViewInit(): void;
|
|
60
|
-
ngOnDestroy(): void;
|
|
61
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
62
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
63
|
-
_onInternalInit(): void;
|
|
64
|
-
_onInternalViewInit(): void;
|
|
65
|
-
_onInternalDestroy(): void;
|
|
66
|
-
onInit(): void;
|
|
67
|
-
onViewInit(): void;
|
|
68
|
-
onDestroy(): void;
|
|
69
|
-
};
|
|
70
|
-
} & typeof AXBaseComponent;
|
|
71
|
-
export declare const AXInteractiveComponenetMixin: {
|
|
72
|
-
new (...args: any[]): {
|
|
73
|
-
size: import("./base-components.class").AXElementSize;
|
|
74
|
-
_onInternalInit(): void;
|
|
75
|
-
id: string;
|
|
76
|
-
rtl: boolean;
|
|
77
|
-
cssClass: string;
|
|
78
|
-
cssStyle: string;
|
|
79
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
80
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
81
|
-
_isInited: boolean;
|
|
82
|
-
_isRendered: boolean;
|
|
83
|
-
ngOnInit(): void;
|
|
84
|
-
ngAfterViewInit(): void;
|
|
85
|
-
ngOnDestroy(): void;
|
|
86
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
87
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
88
|
-
_onInternalViewInit(): void;
|
|
89
|
-
_onInternalDestroy(): void;
|
|
90
|
-
onInit(): void;
|
|
91
|
-
onViewInit(): void;
|
|
92
|
-
onDestroy(): void;
|
|
93
|
-
};
|
|
94
|
-
} & (abstract new (...args: any[]) => {
|
|
95
|
-
"__#4@#disabled": boolean;
|
|
96
|
-
disabled: any;
|
|
97
|
-
"__#4@#tabIndex": number;
|
|
98
|
-
tabIndex: number;
|
|
99
|
-
onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
100
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
|
101
|
-
onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
102
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
|
103
|
-
focus(): void;
|
|
104
|
-
id: string;
|
|
105
|
-
rtl: boolean;
|
|
106
|
-
cssClass: string;
|
|
107
|
-
cssStyle: string;
|
|
108
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
109
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
110
|
-
_isInited: boolean;
|
|
111
|
-
_isRendered: boolean;
|
|
112
|
-
ngOnInit(): void;
|
|
113
|
-
ngAfterViewInit(): void;
|
|
114
|
-
ngOnDestroy(): void;
|
|
115
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
116
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
117
|
-
_onInternalInit(): void;
|
|
118
|
-
_onInternalViewInit(): void;
|
|
119
|
-
_onInternalDestroy(): void;
|
|
120
|
-
onInit(): void;
|
|
121
|
-
onViewInit(): void;
|
|
122
|
-
onDestroy(): void;
|
|
123
|
-
}) & typeof AXBaseComponent;
|
|
124
|
-
export declare const AXBaseClickableMixin: {
|
|
125
|
-
new (...args: any[]): {
|
|
126
|
-
size: import("./base-components.class").AXElementSize;
|
|
127
|
-
_onInternalInit(): void;
|
|
128
|
-
id: string;
|
|
129
|
-
rtl: boolean;
|
|
130
|
-
cssClass: string;
|
|
131
|
-
cssStyle: string;
|
|
132
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
133
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
134
|
-
_isInited: boolean;
|
|
135
|
-
_isRendered: boolean;
|
|
136
|
-
ngOnInit(): void;
|
|
137
|
-
ngAfterViewInit(): void;
|
|
138
|
-
ngOnDestroy(): void;
|
|
139
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
140
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
141
|
-
_onInternalViewInit(): void;
|
|
142
|
-
_onInternalDestroy(): void;
|
|
143
|
-
onInit(): void;
|
|
144
|
-
onViewInit(): void;
|
|
145
|
-
onDestroy(): void;
|
|
146
|
-
};
|
|
147
|
-
} & (abstract new (...args: any[]) => {
|
|
148
|
-
"__#4@#disabled": boolean;
|
|
149
|
-
disabled: any;
|
|
150
|
-
"__#4@#tabIndex": number;
|
|
151
|
-
tabIndex: number;
|
|
152
|
-
onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
153
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
|
154
|
-
onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
155
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
|
156
|
-
focus(): void;
|
|
157
|
-
id: string;
|
|
158
|
-
rtl: boolean;
|
|
159
|
-
cssClass: string;
|
|
160
|
-
cssStyle: string;
|
|
161
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
162
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
163
|
-
_isInited: boolean;
|
|
164
|
-
_isRendered: boolean;
|
|
165
|
-
ngOnInit(): void;
|
|
166
|
-
ngAfterViewInit(): void;
|
|
167
|
-
ngOnDestroy(): void;
|
|
168
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
169
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
170
|
-
_onInternalInit(): void;
|
|
171
|
-
_onInternalViewInit(): void;
|
|
172
|
-
_onInternalDestroy(): void;
|
|
173
|
-
onInit(): void;
|
|
174
|
-
onViewInit(): void;
|
|
175
|
-
onDestroy(): void;
|
|
176
|
-
}) & {
|
|
177
|
-
new (...args: any[]): {
|
|
178
|
-
onClick: import("@angular/core").EventEmitter<import("..").AXClickEvent>;
|
|
179
|
-
_emitOnClickEvent(e: MouseEvent): void;
|
|
180
|
-
id: string;
|
|
181
|
-
rtl: boolean;
|
|
182
|
-
cssClass: string;
|
|
183
|
-
cssStyle: string;
|
|
184
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
185
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
186
|
-
_isInited: boolean;
|
|
187
|
-
_isRendered: boolean;
|
|
188
|
-
ngOnInit(): void;
|
|
189
|
-
ngAfterViewInit(): void;
|
|
190
|
-
ngOnDestroy(): void;
|
|
191
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
192
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
193
|
-
_onInternalInit(): void;
|
|
194
|
-
_onInternalViewInit(): void;
|
|
195
|
-
_onInternalDestroy(): void;
|
|
196
|
-
onInit(): void;
|
|
197
|
-
onViewInit(): void;
|
|
198
|
-
onDestroy(): void;
|
|
199
|
-
};
|
|
200
|
-
} & typeof AXBaseComponent;
|
|
201
|
-
export declare const AXBaseButtonMixin: {
|
|
202
|
-
new (...args: any[]): {
|
|
203
|
-
size: import("./base-components.class").AXElementSize;
|
|
204
|
-
_onInternalInit(): void;
|
|
205
|
-
id: string;
|
|
206
|
-
rtl: boolean;
|
|
207
|
-
cssClass: string;
|
|
208
|
-
cssStyle: string;
|
|
209
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
210
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
211
|
-
_isInited: boolean;
|
|
212
|
-
_isRendered: boolean;
|
|
213
|
-
ngOnInit(): void;
|
|
214
|
-
ngAfterViewInit(): void;
|
|
215
|
-
ngOnDestroy(): void;
|
|
216
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
217
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
218
|
-
_onInternalViewInit(): void;
|
|
219
|
-
_onInternalDestroy(): void;
|
|
220
|
-
onInit(): void;
|
|
221
|
-
onViewInit(): void;
|
|
222
|
-
onDestroy(): void;
|
|
223
|
-
};
|
|
224
|
-
} & (abstract new (...args: any[]) => {
|
|
225
|
-
"__#4@#disabled": boolean;
|
|
226
|
-
disabled: any;
|
|
227
|
-
"__#4@#tabIndex": number;
|
|
228
|
-
tabIndex: number;
|
|
229
|
-
onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
230
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
|
231
|
-
onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
232
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
|
233
|
-
focus(): void;
|
|
234
|
-
id: string;
|
|
235
|
-
rtl: boolean;
|
|
236
|
-
cssClass: string;
|
|
237
|
-
cssStyle: string;
|
|
238
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
239
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
240
|
-
_isInited: boolean;
|
|
241
|
-
_isRendered: boolean;
|
|
242
|
-
ngOnInit(): void;
|
|
243
|
-
ngAfterViewInit(): void;
|
|
244
|
-
ngOnDestroy(): void;
|
|
245
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
246
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
247
|
-
_onInternalInit(): void;
|
|
248
|
-
_onInternalViewInit(): void;
|
|
249
|
-
_onInternalDestroy(): void;
|
|
250
|
-
onInit(): void;
|
|
251
|
-
onViewInit(): void;
|
|
252
|
-
onDestroy(): void;
|
|
253
|
-
}) & {
|
|
254
|
-
new (...args: any[]): {
|
|
255
|
-
onClick: import("@angular/core").EventEmitter<import("..").AXClickEvent>;
|
|
256
|
-
_emitOnClickEvent(e: MouseEvent): void;
|
|
257
|
-
id: string;
|
|
258
|
-
rtl: boolean;
|
|
259
|
-
cssClass: string;
|
|
260
|
-
cssStyle: string;
|
|
261
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
262
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
263
|
-
_isInited: boolean;
|
|
264
|
-
_isRendered: boolean;
|
|
265
|
-
ngOnInit(): void;
|
|
266
|
-
ngAfterViewInit(): void;
|
|
267
|
-
ngOnDestroy(): void;
|
|
268
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
269
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
270
|
-
_onInternalInit(): void;
|
|
271
|
-
_onInternalViewInit(): void;
|
|
272
|
-
_onInternalDestroy(): void;
|
|
273
|
-
onInit(): void;
|
|
274
|
-
onViewInit(): void;
|
|
275
|
-
onDestroy(): void;
|
|
276
|
-
};
|
|
277
|
-
} & {
|
|
278
|
-
new (...args: any[]): {
|
|
279
|
-
loading: boolean;
|
|
280
|
-
loadingIconClass: string;
|
|
281
|
-
loadingText: string;
|
|
282
|
-
_onInternalInit(): void;
|
|
283
|
-
id: string;
|
|
284
|
-
rtl: boolean;
|
|
285
|
-
cssClass: string;
|
|
286
|
-
cssStyle: string;
|
|
287
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
288
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
289
|
-
_isInited: boolean;
|
|
290
|
-
_isRendered: boolean;
|
|
291
|
-
ngOnInit(): void;
|
|
292
|
-
ngAfterViewInit(): void;
|
|
293
|
-
ngOnDestroy(): void;
|
|
294
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
295
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
296
|
-
_onInternalViewInit(): void;
|
|
297
|
-
_onInternalDestroy(): void;
|
|
298
|
-
onInit(): void;
|
|
299
|
-
onViewInit(): void;
|
|
300
|
-
onDestroy(): void;
|
|
301
|
-
};
|
|
302
|
-
} & {
|
|
303
|
-
new (...args: any[]): {
|
|
304
|
-
text: string;
|
|
305
|
-
iconClass: string;
|
|
306
|
-
iconClassAfter: string;
|
|
307
|
-
iconClassBefore: string;
|
|
308
|
-
badge: string;
|
|
309
|
-
submitBehavior: boolean;
|
|
310
|
-
cancelBehavior: boolean;
|
|
311
|
-
_onInternalViewInit(): void;
|
|
312
|
-
_onInternalDestroy(): void;
|
|
313
|
-
id: string;
|
|
314
|
-
rtl: boolean;
|
|
315
|
-
cssClass: string;
|
|
316
|
-
cssStyle: string;
|
|
317
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
318
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
319
|
-
_isInited: boolean;
|
|
320
|
-
_isRendered: boolean;
|
|
321
|
-
ngOnInit(): void;
|
|
322
|
-
ngAfterViewInit(): void;
|
|
323
|
-
ngOnDestroy(): void;
|
|
324
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
325
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
326
|
-
_onInternalInit(): void;
|
|
327
|
-
onInit(): void;
|
|
328
|
-
onViewInit(): void;
|
|
329
|
-
onDestroy(): void;
|
|
330
|
-
};
|
|
331
|
-
} & typeof AXBaseComponent;
|
|
332
|
-
export declare const AXBaseValueComponentMixin: any;
|
|
333
|
-
export declare const AXBaseTextBoxMixin: any;
|
|
334
|
-
export declare const AXBaseDropdownMixin: {
|
|
335
|
-
new (...args: any[]): {
|
|
336
|
-
size: import("./base-components.class").AXElementSize;
|
|
337
|
-
_onInternalInit(): void;
|
|
338
|
-
id: string;
|
|
339
|
-
rtl: boolean;
|
|
340
|
-
cssClass: string;
|
|
341
|
-
cssStyle: string;
|
|
342
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
343
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
344
|
-
_isInited: boolean;
|
|
345
|
-
_isRendered: boolean;
|
|
346
|
-
ngOnInit(): void;
|
|
347
|
-
ngAfterViewInit(): void;
|
|
348
|
-
ngOnDestroy(): void;
|
|
349
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
350
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
351
|
-
_onInternalViewInit(): void;
|
|
352
|
-
_onInternalDestroy(): void;
|
|
353
|
-
onInit(): void;
|
|
354
|
-
onViewInit(): void;
|
|
355
|
-
onDestroy(): void;
|
|
356
|
-
};
|
|
357
|
-
} & (abstract new (...args: any[]) => {
|
|
358
|
-
"__#4@#disabled": boolean;
|
|
359
|
-
disabled: any;
|
|
360
|
-
"__#4@#tabIndex": number;
|
|
361
|
-
tabIndex: number;
|
|
362
|
-
onFocus: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
363
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
|
364
|
-
onBlur: import("@angular/core").EventEmitter<import("..").AXFocusEvent>;
|
|
365
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
|
366
|
-
focus(): void;
|
|
367
|
-
id: string;
|
|
368
|
-
rtl: boolean;
|
|
369
|
-
cssClass: string;
|
|
370
|
-
cssStyle: string;
|
|
371
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
372
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
373
|
-
_isInited: boolean;
|
|
374
|
-
_isRendered: boolean;
|
|
375
|
-
ngOnInit(): void;
|
|
376
|
-
ngAfterViewInit(): void;
|
|
377
|
-
ngOnDestroy(): void;
|
|
378
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
379
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
380
|
-
_onInternalInit(): void;
|
|
381
|
-
_onInternalViewInit(): void;
|
|
382
|
-
_onInternalDestroy(): void;
|
|
383
|
-
onInit(): void;
|
|
384
|
-
onViewInit(): void;
|
|
385
|
-
onDestroy(): void;
|
|
386
|
-
}) & (abstract new (...args: any[]) => {
|
|
387
|
-
"__#3@#readonly": boolean;
|
|
388
|
-
readonly: any;
|
|
389
|
-
fitParent: boolean;
|
|
390
|
-
onOpened: import("@angular/core").EventEmitter<import("..").AXEvent>;
|
|
391
|
-
onClosed: import("@angular/core").EventEmitter<import("..").AXEvent>;
|
|
392
|
-
_emitOnOpenedEvent(): void;
|
|
393
|
-
_emitOnClosedEvent(): void;
|
|
394
|
-
id: string;
|
|
395
|
-
rtl: boolean;
|
|
396
|
-
cssClass: string;
|
|
397
|
-
cssStyle: string;
|
|
398
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
399
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
400
|
-
_isInited: boolean;
|
|
401
|
-
_isRendered: boolean;
|
|
402
|
-
ngOnInit(): void;
|
|
403
|
-
ngAfterViewInit(): void;
|
|
404
|
-
ngOnDestroy(): void;
|
|
405
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
406
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
407
|
-
_onInternalInit(): void;
|
|
408
|
-
_onInternalViewInit(): void;
|
|
409
|
-
_onInternalDestroy(): void;
|
|
410
|
-
onInit(): void;
|
|
411
|
-
onViewInit(): void;
|
|
412
|
-
onDestroy(): void;
|
|
413
|
-
}) & typeof AXBaseComponent;
|
|
414
|
-
export declare const AXBaseSelectionValueMixin: any;
|
|
415
|
-
export declare const AXBaseValueDropdownMixin: any;
|
|
416
|
-
export declare const AXBaseSelectionDropdownMixin: any;
|
|
417
|
-
export declare const AXCalendarMixin: {
|
|
418
|
-
new (...args: any[]): {
|
|
419
|
-
onClick: import("@angular/core").EventEmitter<import("..").AXClickEvent>;
|
|
420
|
-
_emitOnClickEvent(e: MouseEvent): void;
|
|
421
|
-
id: string;
|
|
422
|
-
rtl: boolean;
|
|
423
|
-
cssClass: string;
|
|
424
|
-
cssStyle: string;
|
|
425
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
426
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
427
|
-
_isInited: boolean;
|
|
428
|
-
_isRendered: boolean;
|
|
429
|
-
ngOnInit(): void;
|
|
430
|
-
ngAfterViewInit(): void;
|
|
431
|
-
ngOnDestroy(): void;
|
|
432
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
433
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
434
|
-
_onInternalInit(): void;
|
|
435
|
-
_onInternalViewInit(): void;
|
|
436
|
-
_onInternalDestroy(): void;
|
|
437
|
-
onInit(): void;
|
|
438
|
-
onViewInit(): void;
|
|
439
|
-
onDestroy(): void;
|
|
440
|
-
};
|
|
441
|
-
} & {
|
|
442
|
-
new (...args: any[]): {
|
|
443
|
-
text: string;
|
|
444
|
-
iconClass: string;
|
|
445
|
-
iconClassAfter: string;
|
|
446
|
-
iconClassBefore: string;
|
|
447
|
-
badge: string;
|
|
448
|
-
submitBehavior: boolean;
|
|
449
|
-
cancelBehavior: boolean;
|
|
450
|
-
_onInternalViewInit(): void;
|
|
451
|
-
_onInternalDestroy(): void;
|
|
452
|
-
id: string;
|
|
453
|
-
rtl: boolean;
|
|
454
|
-
cssClass: string;
|
|
455
|
-
cssStyle: string;
|
|
456
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
457
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
458
|
-
_isInited: boolean;
|
|
459
|
-
_isRendered: boolean;
|
|
460
|
-
ngOnInit(): void;
|
|
461
|
-
ngAfterViewInit(): void;
|
|
462
|
-
ngOnDestroy(): void;
|
|
463
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
464
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
465
|
-
_onInternalInit(): void;
|
|
466
|
-
onInit(): void;
|
|
467
|
-
onViewInit(): void;
|
|
468
|
-
onDestroy(): void;
|
|
469
|
-
};
|
|
470
|
-
} & {
|
|
471
|
-
new (...args: any[]): {
|
|
472
|
-
size: import("./base-components.class").AXElementSize;
|
|
473
|
-
_onInternalInit(): void;
|
|
474
|
-
id: string;
|
|
475
|
-
rtl: boolean;
|
|
476
|
-
cssClass: string;
|
|
477
|
-
cssStyle: string;
|
|
478
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
479
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
480
|
-
_isInited: boolean;
|
|
481
|
-
_isRendered: boolean;
|
|
482
|
-
ngOnInit(): void;
|
|
483
|
-
ngAfterViewInit(): void;
|
|
484
|
-
ngOnDestroy(): void;
|
|
485
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
486
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
487
|
-
_onInternalViewInit(): void;
|
|
488
|
-
_onInternalDestroy(): void;
|
|
489
|
-
onInit(): void;
|
|
490
|
-
onViewInit(): void;
|
|
491
|
-
onDestroy(): void;
|
|
492
|
-
};
|
|
493
|
-
} & typeof AXBaseComponent;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { AXSelectionValueChangedEvent } from '../events.class';
|
|
3
|
-
import { AXBaseComponent } from './base-components.class';
|
|
4
|
-
import { Constructor } from './constratctor';
|
|
5
|
-
export declare function _SelectionComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
|
6
|
-
new (...args: any[]): {
|
|
7
|
-
valueField: string;
|
|
8
|
-
textField: string | string[];
|
|
9
|
-
multiple: boolean;
|
|
10
|
-
selectionMode: 'value' | 'item';
|
|
11
|
-
readonly items: any[];
|
|
12
|
-
readonly displayItems: any[];
|
|
13
|
-
valueChange: EventEmitter<any>;
|
|
14
|
-
onValueChanged: EventEmitter<AXSelectionValueChangedEvent>;
|
|
15
|
-
_onInternalInit(): void;
|
|
16
|
-
_value: any | any[];
|
|
17
|
-
value: any;
|
|
18
|
-
_selectedItems: any[];
|
|
19
|
-
readonly selectedItems: any[];
|
|
20
|
-
_renderSelection(): void;
|
|
21
|
-
_getItemByDataMode(item: any): any;
|
|
22
|
-
_getItemValue(item: any): any;
|
|
23
|
-
unselectItems(...items: any[]): void;
|
|
24
|
-
selectItems(...items: any[]): void;
|
|
25
|
-
toggleSelect(...items: any[]): void;
|
|
26
|
-
isItemSelected(item: any): boolean;
|
|
27
|
-
id: string;
|
|
28
|
-
rtl: boolean;
|
|
29
|
-
cssClass: string;
|
|
30
|
-
cssStyle: string;
|
|
31
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
32
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
33
|
-
_isInited: boolean;
|
|
34
|
-
_isRendered: boolean;
|
|
35
|
-
ngOnInit(): void;
|
|
36
|
-
ngAfterViewInit(): void;
|
|
37
|
-
ngOnDestroy(): void;
|
|
38
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
39
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
40
|
-
_onInternalViewInit(): void;
|
|
41
|
-
_onInternalDestroy(): void;
|
|
42
|
-
onInit(): void;
|
|
43
|
-
onViewInit(): void;
|
|
44
|
-
onDestroy(): void;
|
|
45
|
-
};
|
|
46
|
-
} & TBase;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { AXBaseComponent, AXElementSize } from './base-components.class';
|
|
2
|
-
import { Constructor } from './constratctor';
|
|
3
|
-
export declare function _SizableComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
|
4
|
-
new (...args: any[]): {
|
|
5
|
-
size: AXElementSize;
|
|
6
|
-
_onInternalInit(): void;
|
|
7
|
-
id: string;
|
|
8
|
-
rtl: boolean;
|
|
9
|
-
cssClass: string;
|
|
10
|
-
cssStyle: string;
|
|
11
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
12
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
13
|
-
_isInited: boolean;
|
|
14
|
-
_isRendered: boolean;
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
ngAfterViewInit(): void;
|
|
17
|
-
ngOnDestroy(): void;
|
|
18
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
19
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
20
|
-
_onInternalViewInit(): void;
|
|
21
|
-
_onInternalDestroy(): void;
|
|
22
|
-
onInit(): void;
|
|
23
|
-
onViewInit(): void;
|
|
24
|
-
onDestroy(): void;
|
|
25
|
-
};
|
|
26
|
-
} & TBase;
|
|
27
|
-
export declare const SIZABLE_INPUTS: string[];
|
|
28
|
-
export declare const SIZABLE_OUTPUT: any[];
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { AXHtmlEvent } from '../events.class';
|
|
3
|
-
import { AXBaseComponent } from './base-components.class';
|
|
4
|
-
import { Constructor } from './constratctor';
|
|
5
|
-
export declare function _TextboxComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
|
6
|
-
new (...args: any[]): {
|
|
7
|
-
placeholder: string;
|
|
8
|
-
maxLength: string;
|
|
9
|
-
onKeyDown: EventEmitter<AXHtmlEvent<KeyboardEvent>>;
|
|
10
|
-
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
|
11
|
-
id: string;
|
|
12
|
-
rtl: boolean;
|
|
13
|
-
cssClass: string;
|
|
14
|
-
cssStyle: string;
|
|
15
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
16
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
17
|
-
_isInited: boolean;
|
|
18
|
-
_isRendered: boolean;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
ngAfterViewInit(): void;
|
|
21
|
-
ngOnDestroy(): void;
|
|
22
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
23
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
24
|
-
_onInternalInit(): void;
|
|
25
|
-
_onInternalViewInit(): void;
|
|
26
|
-
_onInternalDestroy(): void;
|
|
27
|
-
onInit(): void;
|
|
28
|
-
onViewInit(): void;
|
|
29
|
-
onDestroy(): void;
|
|
30
|
-
};
|
|
31
|
-
} & TBase;
|
|
32
|
-
export declare const TEXTBOX_INPUTS: string[];
|
|
33
|
-
export declare const TEXTBOX_OUTPUT: string[];
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { AXBaseComponent } from './base-components.class';
|
|
3
|
-
import { Constructor } from './constratctor';
|
|
4
|
-
import { AXValueChangedEvent } from '../events.class';
|
|
5
|
-
import { AXValidationRuleResult } from '../../validation/validation.class';
|
|
6
|
-
import { Subject, Subscription } from 'rxjs';
|
|
7
|
-
export declare function _ValueComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): (abstract new (...args: any[]) => {
|
|
8
|
-
onValueChanged: EventEmitter<AXValueChangedEvent<any>>;
|
|
9
|
-
valueChange: EventEmitter<any>;
|
|
10
|
-
"__#5@#readonly": boolean;
|
|
11
|
-
readonly: any;
|
|
12
|
-
"__#5@#allowNull": boolean;
|
|
13
|
-
allowNull: any;
|
|
14
|
-
"__#5@#name": string;
|
|
15
|
-
name: string;
|
|
16
|
-
"__#5@#debounceTime": number;
|
|
17
|
-
debounceTime: any;
|
|
18
|
-
"__#5@#valueSubscription": Subscription;
|
|
19
|
-
"__#5@#valueSubject": Subject<unknown>;
|
|
20
|
-
"__#5@#value": any;
|
|
21
|
-
value: any;
|
|
22
|
-
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
|
23
|
-
_onValueChanging(value: any): any;
|
|
24
|
-
_onValueChanged(oldValue: any, newValue: any): void;
|
|
25
|
-
_onInternalInit(): void;
|
|
26
|
-
_onInternalDestroy(): void;
|
|
27
|
-
_setValue(v: any): void;
|
|
28
|
-
clear(): void;
|
|
29
|
-
validate(): Promise<AXValidationRuleResult>;
|
|
30
|
-
_setErrorState(state: 'clear' | 'success' | 'error', ...args: any[]): void;
|
|
31
|
-
id: string;
|
|
32
|
-
rtl: boolean;
|
|
33
|
-
cssClass: string;
|
|
34
|
-
cssStyle: string;
|
|
35
|
-
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
36
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
37
|
-
_isInited: boolean;
|
|
38
|
-
_isRendered: boolean;
|
|
39
|
-
ngOnInit(): void;
|
|
40
|
-
ngAfterViewInit(): void;
|
|
41
|
-
ngOnDestroy(): void;
|
|
42
|
-
_getHostElement<T = HTMLElement>(): T;
|
|
43
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
44
|
-
_onInternalViewInit(): void;
|
|
45
|
-
onInit(): void;
|
|
46
|
-
onViewInit(): void;
|
|
47
|
-
onDestroy(): void;
|
|
48
|
-
}) & TBase;
|
|
49
|
-
export declare const VALUE_INPUTS: string[];
|
|
50
|
-
export declare const VALUE_OUTPUT: string[];
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export declare const AX_STYLE_TYPES: string[];
|
|
2
|
-
export declare type AXStyleType = 'info' | 'danger' | 'success' | 'warning';
|
|
3
|
-
export declare const AX_LOCATIONS: string[];
|
|
4
|
-
export declare type AXLocation = 'bottom-start' | 'bottom-center' | 'bottom-end' | 'top-start' | 'top-center' | 'top-end';
|
|
5
|
-
export declare const AX_DIRECTIONS: string[];
|
|
6
|
-
export declare type AXDirection = 'vertical' | 'horizontal';
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone, QueryList } from "@angular/core";
|
|
2
|
-
import { AXClickEvent, AXInteractiveComponenetMixin } from "../base";
|
|
3
|
-
import { AXButtonItem } from "./button-item.class";
|
|
4
|
-
import { AXButtonItemComponent } from "./button-item.component";
|
|
5
|
-
export declare class AXButtonGroupComponent extends AXInteractiveComponenetMixin {
|
|
6
|
-
private zone;
|
|
7
|
-
_contentButtons: QueryList<AXButtonItemComponent>;
|
|
8
|
-
private _items;
|
|
9
|
-
get items(): AXButtonItem[];
|
|
10
|
-
set items(v: AXButtonItem[]);
|
|
11
|
-
multiple: boolean;
|
|
12
|
-
selectable: boolean;
|
|
13
|
-
_buttons: AXButtonItem[];
|
|
14
|
-
onItemClick: EventEmitter<AXClickEvent>;
|
|
15
|
-
constructor(elementRef: ElementRef, zone: NgZone, cdr: ChangeDetectorRef);
|
|
16
|
-
onViewInit(): void;
|
|
17
|
-
private _calcButtons;
|
|
18
|
-
_handleClickEvent(e: MouseEvent, button: AXButtonItem): void;
|
|
19
|
-
}
|