@acorex/components 6.5.71 → 6.5.73
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 +6 -2
- package/esm2022/acorex-components.mjs +5 -0
- package/esm2022/index.mjs +158 -0
- package/esm2022/lib/accordion/accordion.component.mjs +45 -0
- package/esm2022/lib/accordion/accordion.module.mjs +20 -0
- package/esm2022/lib/base/base-page.class.mjs +95 -0
- package/esm2022/lib/base/components.class.mjs +17 -0
- package/esm2022/lib/base/element.class.mjs +301 -0
- package/esm2022/lib/base/events.class.mjs +17 -0
- package/esm2022/lib/button/button.component.mjs +74 -0
- package/esm2022/lib/button/button.module.mjs +21 -0
- package/esm2022/lib/calendar/calendar-box/calendar-box.component.mjs +426 -0
- package/esm2022/lib/calendar/calendar-box/calendar-box.module.mjs +22 -0
- package/esm2022/lib/calendar/scheduler/scheduler-views.property.mjs +59 -0
- package/esm2022/lib/calendar/scheduler/scheduler.class.mjs +16 -0
- package/esm2022/lib/calendar/scheduler/scheduler.component.mjs +226 -0
- package/esm2022/lib/calendar/scheduler/scheduler.module.mjs +68 -0
- package/esm2022/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.mjs +136 -0
- package/esm2022/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.mjs +37 -0
- package/esm2022/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.mjs +49 -0
- package/esm2022/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.mjs +102 -0
- package/esm2022/lib/calendar/scheduler/views/month/scheduler-month-view.component.mjs +214 -0
- package/esm2022/lib/calendar/scheduler/views/scheduler-view.component.mjs +99 -0
- package/esm2022/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.mjs +85 -0
- package/esm2022/lib/checkbox/checkbox.component.mjs +102 -0
- package/esm2022/lib/checkbox/checkbox.module.mjs +20 -0
- package/esm2022/lib/color-picker/color-box/color-box.component.mjs +423 -0
- package/esm2022/lib/color-picker/color-picker.component.mjs +89 -0
- package/esm2022/lib/color-picker/color-picker.module.mjs +24 -0
- package/esm2022/lib/context-menu/context-menu.component.mjs +68 -0
- package/esm2022/lib/context-menu/context-menu.directive.mjs +146 -0
- package/esm2022/lib/context-menu/context-menu.module.mjs +20 -0
- package/esm2022/lib/data-filter/columns/filter-column-date.component.mjs +140 -0
- package/esm2022/lib/data-filter/columns/filter-column-number.component.mjs +119 -0
- package/esm2022/lib/data-filter/columns/filter-column-selection.component.mjs +75 -0
- package/esm2022/lib/data-filter/columns/filter-column-string.component.mjs +119 -0
- package/esm2022/lib/data-filter/filter-panel/filter-panel.component.mjs +267 -0
- package/esm2022/lib/data-filter/filter.class.mjs +46 -0
- package/esm2022/lib/data-filter/filter.module.mjs +88 -0
- package/esm2022/lib/data-filter/toolbar/filter-toolbar.component.mjs +168 -0
- package/esm2022/lib/data-list/core/data-list.component.mjs +37 -0
- package/esm2022/lib/data-list/list/list.component.mjs +134 -0
- package/esm2022/lib/data-list/list/list.module.mjs +22 -0
- package/esm2022/lib/data-list/list/toolbar-list-view.component.mjs +84 -0
- package/esm2022/lib/data-source/datasource.component.mjs +47 -0
- package/esm2022/lib/data-source/datasource.module.mjs +18 -0
- package/esm2022/lib/data-source/read-param.mjs +7 -0
- package/esm2022/lib/date-picker/date-picker.component.mjs +718 -0
- package/esm2022/lib/date-picker/date-picker.module.mjs +49 -0
- package/esm2022/lib/dialog/dialog.component.mjs +26 -0
- package/esm2022/lib/dialog/dialog.module.mjs +21 -0
- package/esm2022/lib/dialog/dialog.service.mjs +160 -0
- package/esm2022/lib/drawer/content.component.mjs +18 -0
- package/esm2022/lib/drawer/drawer-container.component.mjs +38 -0
- package/esm2022/lib/drawer/drawer.component.mjs +146 -0
- package/esm2022/lib/drawer/drawer.module.mjs +23 -0
- package/esm2022/lib/dropdown/dropdown.component.mjs +186 -0
- package/esm2022/lib/dropdown/dropdown.module.mjs +26 -0
- package/esm2022/lib/fieldset/fieldset.component.mjs +57 -0
- package/esm2022/lib/fieldset/fieldset.module.mjs +19 -0
- package/esm2022/lib/form-group/form-group.component.mjs +37 -0
- package/esm2022/lib/form-group/form-group.module.mjs +21 -0
- package/esm2022/lib/label/label.component.mjs +19 -0
- package/esm2022/lib/label/label.module.mjs +21 -0
- package/esm2022/lib/loading/loading-indicator.component.mjs +18 -0
- package/esm2022/lib/loading/loading-panel.component.mjs +45 -0
- package/esm2022/lib/loading/loading.module.mjs +21 -0
- package/{esm2020 → esm2022}/lib/loading/loading.service.mjs +7 -5
- package/esm2022/lib/menu/menu-item.component.mjs +50 -0
- package/esm2022/lib/menu/menu.component.mjs +98 -0
- package/esm2022/lib/menu/menu.module.mjs +22 -0
- package/esm2022/lib/menu/menu2.component.mjs +100 -0
- package/esm2022/lib/number-box/number-box.component.mjs +628 -0
- package/esm2022/lib/number-box/number-box.module.mjs +21 -0
- package/esm2022/lib/page/content.component.mjs +27 -0
- package/esm2022/lib/page/footer.component.mjs +19 -0
- package/esm2022/lib/page/page.component.mjs +57 -0
- package/esm2022/lib/page/page.module.mjs +22 -0
- package/esm2022/lib/panel-box/panel-box.component.mjs +87 -0
- package/esm2022/lib/panel-box/panel-box.module.mjs +19 -0
- package/esm2022/lib/password-box/password-box.component.mjs +32 -0
- package/esm2022/lib/password-box/password-box.module.mjs +23 -0
- package/esm2022/lib/popover/custom-cdk-overlay.service.mjs +50 -0
- package/esm2022/lib/popover/overlay.service.mjs +94 -0
- package/esm2022/lib/popover/popover.component.mjs +145 -0
- package/esm2022/lib/popover/popover.module.mjs +19 -0
- package/esm2022/lib/popup/popup.component.mjs +159 -0
- package/esm2022/lib/popup/popup.module.mjs +25 -0
- package/esm2022/lib/popup/popup.service.mjs +94 -0
- package/esm2022/lib/progress-bar/progress-bar.component.mjs +16 -0
- package/esm2022/lib/progress-bar/progress-bar.module.mjs +19 -0
- package/esm2022/lib/property-editor/editors/check-editor/check-editor.mjs +65 -0
- package/esm2022/lib/property-editor/editors/check-editor/check.module.mjs +22 -0
- package/esm2022/lib/property-editor/editors/color-editor/color.editor.mjs +41 -0
- package/esm2022/lib/property-editor/editors/color-editor/color.module.mjs +24 -0
- package/esm2022/lib/property-editor/editors/column-editor/column.editor.mjs +118 -0
- package/esm2022/lib/property-editor/editors/column-editor/column.module.mjs +32 -0
- package/esm2022/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.mjs +216 -0
- package/esm2022/lib/property-editor/editors/conditional-color-editor/conditional-color.module.mjs +76 -0
- package/esm2022/lib/property-editor/editors/date-editor/date.editor.mjs +87 -0
- package/esm2022/lib/property-editor/editors/date-editor/date.module.mjs +24 -0
- package/esm2022/lib/property-editor/editors/number-editor/number.editor.mjs +66 -0
- package/esm2022/lib/property-editor/editors/number-editor/number.module.mjs +24 -0
- package/esm2022/lib/property-editor/editors/range-editor/range.editor.mjs +145 -0
- package/esm2022/lib/property-editor/editors/range-editor/range.module.mjs +59 -0
- package/esm2022/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.mjs +76 -0
- package/esm2022/lib/property-editor/editors/selectbox-editor/selectbox.editor.mjs +75 -0
- package/esm2022/lib/property-editor/editors/selectbox-editor/selectbox.module.mjs +25 -0
- package/esm2022/lib/property-editor/editors/selection-editor/selection-editor.mjs +73 -0
- package/esm2022/lib/property-editor/editors/selection-editor/selection.module.mjs +22 -0
- package/esm2022/lib/property-editor/editors/switch-editor/number.editor.mjs +30 -0
- package/esm2022/lib/property-editor/editors/switch-editor/number.module.mjs +25 -0
- package/esm2022/lib/property-editor/editors/text-editor/text.editor.mjs +36 -0
- package/esm2022/lib/property-editor/editors/text-editor/text.module.mjs +24 -0
- package/esm2022/lib/property-editor/editors/textarea-editor/textarea.editor.mjs +35 -0
- package/esm2022/lib/property-editor/editors/textarea-editor/textarea.module.mjs +24 -0
- package/esm2022/lib/property-editor/editors/time-editor/time.editor.mjs +47 -0
- package/esm2022/lib/property-editor/editors/time-editor/time.module.mjs +24 -0
- package/esm2022/lib/property-editor/property-editor-renderer.directive.mjs +167 -0
- package/esm2022/lib/property-editor/property-editor.class.mjs +108 -0
- package/esm2022/lib/property-editor/property-editor.module.mjs +194 -0
- package/esm2022/lib/query-builder/query-builder-group.component.mjs +129 -0
- package/esm2022/lib/query-builder/query-builder-popup/query-builder-popup.component.mjs +177 -0
- package/esm2022/lib/query-builder/query-builder-rule.component.mjs +428 -0
- package/esm2022/lib/query-builder/query-builder.class.mjs +42 -0
- package/esm2022/lib/query-builder/query-builder.component.mjs +92 -0
- package/esm2022/lib/query-builder/query-builder.module.mjs +62 -0
- package/esm2022/lib/query-builder/query-builder.service.mjs +199 -0
- package/esm2022/lib/search-bar/search-bar.component.mjs +293 -0
- package/esm2022/lib/search-bar/search-bar.module.mjs +61 -0
- package/esm2022/lib/searchbox/searchbox.component.mjs +105 -0
- package/esm2022/lib/searchbox/searchbox.module.mjs +24 -0
- package/esm2022/lib/selectbox/selectbox.component.mjs +1028 -0
- package/esm2022/lib/selectbox/selectbox.module.mjs +44 -0
- package/esm2022/lib/selectbox/selectbox2.component.mjs +617 -0
- package/esm2022/lib/selection-list/selection-list.component.mjs +113 -0
- package/esm2022/lib/selection-list/selection-list.module.mjs +21 -0
- package/esm2022/lib/switch/switch.component.mjs +55 -0
- package/esm2022/lib/switch/switch.module.mjs +20 -0
- package/esm2022/lib/tab-page/tab-page-Renderer.component.mjs +75 -0
- package/esm2022/lib/tab-page/tab-page-host.component.mjs +124 -0
- package/esm2022/lib/tab-page/tab-page.module.mjs +21 -0
- package/esm2022/lib/tab-page/tab-page.service.mjs +158 -0
- package/esm2022/lib/tab-strip/tab-strip.component.mjs +38 -0
- package/esm2022/lib/tab-strip/tab-strip.module.mjs +19 -0
- package/esm2022/lib/tab-view/dynamic-tabs.directive.mjs +25 -0
- package/esm2022/lib/tab-view/tab-view.component.mjs +110 -0
- package/esm2022/lib/tab-view/tab-view.module.mjs +21 -0
- package/esm2022/lib/tab-view/tab.component.mjs +33 -0
- package/esm2022/lib/textarea/textarea.component.mjs +27 -0
- package/esm2022/lib/textarea/textarea.module.mjs +21 -0
- package/esm2022/lib/textbox/textbox.component.mjs +42 -0
- package/esm2022/lib/textbox/textbox.module.mjs +36 -0
- package/esm2022/lib/time-picker/time-picker.component.mjs +1107 -0
- package/esm2022/lib/time-picker/time-picker.module.mjs +34 -0
- package/esm2022/lib/toast/toast-message/toast-message.component.mjs +76 -0
- package/esm2022/lib/toast/toast-wrapper/toast-wrapper.component.mjs +13 -0
- package/esm2022/lib/toast/toast.module.mjs +21 -0
- package/esm2022/lib/toast/toast.service.mjs +45 -0
- package/esm2022/lib/toolbar/group-button/toolbar-group-button.component.mjs +77 -0
- package/esm2022/lib/toolbar/menu/toolbar-menu.component.mjs +62 -0
- package/esm2022/lib/toolbar/search/toolbar-search.component.mjs +56 -0
- package/esm2022/lib/toolbar/title/toolbar-title.component.mjs +37 -0
- package/esm2022/lib/toolbar/toolbar-item.mjs +4 -0
- package/esm2022/lib/toolbar/toolbar.component.mjs +13 -0
- package/esm2022/lib/toolbar/toolbar.module.mjs +40 -0
- package/esm2022/lib/tooltip/tooltip.directive.mjs +104 -0
- package/esm2022/lib/tooltip/tooltip.module.mjs +19 -0
- package/esm2022/lib/tree-side-menu/tree-side-menu.component.mjs +697 -0
- package/esm2022/lib/tree-side-menu/tree-side-menu.module.mjs +33 -0
- package/esm2022/lib/tree-view/tree-view.component.mjs +854 -0
- package/esm2022/lib/tree-view/tree-view.module.mjs +22 -0
- package/esm2022/lib/upload-file/upload-file.component.mjs +226 -0
- package/esm2022/lib/upload-file/upload-file.events.mjs +2 -0
- package/esm2022/lib/upload-file/upload-file.module.mjs +24 -0
- package/esm2022/lib/validation/validation-form.component.mjs +68 -0
- package/esm2022/lib/validation/validation-rule.widget.mjs +114 -0
- package/esm2022/lib/validation/validation.class.mjs +2 -0
- package/esm2022/lib/validation/validation.component.mjs +89 -0
- package/esm2022/lib/validation/validation.module.mjs +34 -0
- package/{fesm2020 → fesm2022}/acorex-components.mjs +3611 -2674
- package/fesm2022/acorex-components.mjs.map +1 -0
- package/lib/accordion/accordion.component.d.ts +1 -1
- package/lib/base/base-page.class.d.ts +2 -2
- package/lib/base/element.class.d.ts +6 -6
- package/lib/button/button.component.d.ts +1 -1
- package/lib/calendar/calendar-box/calendar-box.component.d.ts +6 -6
- package/lib/calendar/scheduler/scheduler-views.property.d.ts +2 -2
- package/lib/calendar/scheduler/scheduler.class.d.ts +1 -1
- package/lib/calendar/scheduler/scheduler.component.d.ts +1 -1
- package/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.d.ts +1 -1
- package/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.d.ts +1 -1
- package/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.d.ts +1 -1
- package/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.d.ts +1 -1
- package/lib/calendar/scheduler/views/month/scheduler-month-view.component.d.ts +1 -1
- package/lib/calendar/scheduler/views/scheduler-view.component.d.ts +1 -1
- package/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.d.ts +1 -1
- package/lib/checkbox/checkbox.component.d.ts +1 -1
- package/lib/color-picker/color-box/color-box.component.d.ts +1 -1
- package/lib/color-picker/color-picker.component.d.ts +1 -1
- package/lib/context-menu/context-menu.component.d.ts +1 -1
- package/lib/context-menu/context-menu.directive.d.ts +3 -3
- package/lib/data-filter/columns/filter-column-date.component.d.ts +1 -1
- package/lib/data-filter/columns/filter-column-number.component.d.ts +1 -1
- package/lib/data-filter/columns/filter-column-selection.component.d.ts +1 -1
- package/lib/data-filter/columns/filter-column-string.component.d.ts +1 -1
- package/lib/data-filter/filter-panel/filter-panel.component.d.ts +1 -1
- package/lib/data-filter/filter.class.d.ts +1 -1
- package/lib/data-filter/toolbar/filter-toolbar.component.d.ts +1 -1
- package/lib/data-list/core/data-list.component.d.ts +1 -1
- package/lib/data-list/list/list.component.d.ts +1 -1
- package/lib/data-list/list/toolbar-list-view.component.d.ts +2 -2
- package/lib/data-source/datasource.component.d.ts +1 -1
- package/lib/date-picker/date-picker.component.d.ts +1 -1
- package/lib/date-picker/date-picker.module.d.ts +2 -2
- package/lib/dialog/dialog.component.d.ts +1 -1
- package/lib/drawer/content.component.d.ts +1 -1
- package/lib/drawer/drawer-container.component.d.ts +1 -1
- package/lib/drawer/drawer.component.d.ts +3 -3
- package/lib/dropdown/dropdown.component.d.ts +1 -1
- package/lib/fieldset/fieldset.component.d.ts +1 -1
- package/lib/form-group/form-group.component.d.ts +1 -1
- package/lib/label/label.component.d.ts +1 -1
- package/lib/loading/loading-indicator.component.d.ts +1 -1
- package/lib/loading/loading-panel.component.d.ts +1 -1
- package/lib/menu/menu-item.component.d.ts +1 -1
- package/lib/menu/menu.component.d.ts +1 -1
- package/lib/menu/menu2.component.d.ts +1 -1
- package/lib/number-box/number-box.component.d.ts +1 -1
- package/lib/page/content.component.d.ts +1 -1
- package/lib/page/footer.component.d.ts +1 -1
- package/lib/page/page.component.d.ts +1 -1
- package/lib/panel-box/panel-box.component.d.ts +1 -1
- package/lib/password-box/password-box.component.d.ts +1 -1
- package/lib/popover/popover.component.d.ts +1 -1
- package/lib/popup/popup.component.d.ts +1 -1
- package/lib/progress-bar/progress-bar.component.d.ts +1 -1
- package/lib/property-editor/editors/check-editor/check-editor.d.ts +1 -1
- package/lib/property-editor/editors/color-editor/color.editor.d.ts +1 -1
- package/lib/property-editor/editors/column-editor/column.editor.d.ts +1 -1
- package/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.d.ts +1 -1
- package/lib/property-editor/editors/date-editor/date.editor.d.ts +1 -1
- package/lib/property-editor/editors/number-editor/number.editor.d.ts +1 -1
- package/lib/property-editor/editors/range-editor/range.editor.d.ts +1 -1
- package/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.d.ts +1 -1
- package/lib/property-editor/editors/selectbox-editor/selectbox.editor.d.ts +1 -1
- package/lib/property-editor/editors/selection-editor/selection-editor.d.ts +1 -1
- package/lib/property-editor/editors/switch-editor/number.editor.d.ts +1 -1
- package/lib/property-editor/editors/text-editor/text.editor.d.ts +1 -1
- package/lib/property-editor/editors/textarea-editor/textarea.editor.d.ts +1 -1
- package/lib/property-editor/editors/time-editor/time.editor.d.ts +1 -1
- package/lib/property-editor/property-editor-renderer.directive.d.ts +1 -1
- package/lib/property-editor/property-editor.class.d.ts +3 -3
- package/lib/query-builder/query-builder-group.component.d.ts +1 -1
- package/lib/query-builder/query-builder-popup/query-builder-popup.component.d.ts +1 -1
- package/lib/query-builder/query-builder-rule.component.d.ts +3 -3
- package/lib/query-builder/query-builder.class.d.ts +4 -4
- package/lib/query-builder/query-builder.component.d.ts +1 -1
- package/lib/search-bar/search-bar.component.d.ts +1 -1
- package/lib/searchbox/searchbox.component.d.ts +2 -1
- package/lib/selectbox/selectbox.component.d.ts +2 -1
- package/lib/selectbox/selectbox2.component.d.ts +1 -1
- package/lib/selection-list/selection-list.component.d.ts +2 -2
- package/lib/switch/switch.component.d.ts +1 -1
- package/lib/tab-page/tab-page-Renderer.component.d.ts +1 -1
- package/lib/tab-page/tab-page-host.component.d.ts +1 -1
- package/lib/tab-strip/tab-strip.component.d.ts +1 -1
- package/lib/tab-view/dynamic-tabs.directive.d.ts +1 -1
- package/lib/tab-view/tab-view.component.d.ts +1 -1
- package/lib/tab-view/tab.component.d.ts +1 -1
- package/lib/textarea/textarea.component.d.ts +1 -1
- package/lib/textbox/textbox.component.d.ts +2 -2
- package/lib/textbox/textbox.module.d.ts +2 -2
- package/lib/time-picker/time-picker.component.d.ts +2 -1
- package/lib/time-picker/time-picker.module.d.ts +2 -2
- package/lib/toast/toast-message/toast-message.component.d.ts +1 -1
- package/lib/toast/toast-wrapper/toast-wrapper.component.d.ts +1 -1
- package/lib/toolbar/group-button/toolbar-group-button.component.d.ts +1 -1
- package/lib/toolbar/menu/toolbar-menu.component.d.ts +1 -1
- package/lib/toolbar/search/toolbar-search.component.d.ts +1 -1
- package/lib/toolbar/title/toolbar-title.component.d.ts +1 -1
- package/lib/toolbar/toolbar.component.d.ts +1 -1
- package/lib/tooltip/tooltip.directive.d.ts +1 -1
- package/lib/tree-side-menu/tree-side-menu.component.d.ts +1 -1
- package/lib/tree-view/tree-view.component.d.ts +1 -1
- package/lib/upload-file/upload-file.component.d.ts +2 -2
- package/lib/validation/validation-form.component.d.ts +1 -1
- package/lib/validation/validation-rule.widget.d.ts +1 -1
- package/lib/validation/validation.class.d.ts +1 -1
- package/lib/validation/validation.component.d.ts +1 -1
- package/package.json +15 -20
- package/acorex-components.d.ts +0 -5
- package/esm2020/acorex-components.mjs +0 -5
- package/esm2020/lib/accordion/accordion.component.mjs +0 -44
- package/esm2020/lib/accordion/accordion.module.mjs +0 -20
- package/esm2020/lib/base/base-page.class.mjs +0 -94
- package/esm2020/lib/base/components.class.mjs +0 -17
- package/esm2020/lib/base/element.class.mjs +0 -294
- package/esm2020/lib/base/events.class.mjs +0 -11
- package/esm2020/lib/button/button.component.mjs +0 -71
- package/esm2020/lib/button/button.module.mjs +0 -21
- package/esm2020/lib/calendar/calendar-box/calendar-box.component.mjs +0 -413
- package/esm2020/lib/calendar/calendar-box/calendar-box.module.mjs +0 -22
- package/esm2020/lib/calendar/scheduler/scheduler-views.property.mjs +0 -54
- package/esm2020/lib/calendar/scheduler/scheduler.class.mjs +0 -18
- package/esm2020/lib/calendar/scheduler/scheduler.component.mjs +0 -213
- package/esm2020/lib/calendar/scheduler/scheduler.module.mjs +0 -68
- package/esm2020/lib/calendar/scheduler/toolbars/scheduler-toolbar-navigator.mjs +0 -132
- package/esm2020/lib/calendar/scheduler/toolbars/scheduler-toolbar-views.mjs +0 -37
- package/esm2020/lib/calendar/scheduler/views/agenda/scheduler-agenda-view.component.mjs +0 -47
- package/esm2020/lib/calendar/scheduler/views/daytime/scheduler-daytime-view.component.mjs +0 -95
- package/esm2020/lib/calendar/scheduler/views/month/scheduler-month-view.component.mjs +0 -204
- package/esm2020/lib/calendar/scheduler/views/scheduler-view.component.mjs +0 -99
- package/esm2020/lib/calendar/scheduler/views/timeline/scheduler-timeline-view.component.mjs +0 -77
- package/esm2020/lib/checkbox/checkbox.component.mjs +0 -98
- package/esm2020/lib/checkbox/checkbox.module.mjs +0 -20
- package/esm2020/lib/color-picker/color-box/color-box.component.mjs +0 -422
- package/esm2020/lib/color-picker/color-picker.component.mjs +0 -82
- package/esm2020/lib/color-picker/color-picker.module.mjs +0 -24
- package/esm2020/lib/context-menu/context-menu.component.mjs +0 -65
- package/esm2020/lib/context-menu/context-menu.directive.mjs +0 -135
- package/esm2020/lib/context-menu/context-menu.module.mjs +0 -20
- package/esm2020/lib/data-filter/columns/filter-column-date.component.mjs +0 -138
- package/esm2020/lib/data-filter/columns/filter-column-number.component.mjs +0 -117
- package/esm2020/lib/data-filter/columns/filter-column-selection.component.mjs +0 -74
- package/esm2020/lib/data-filter/columns/filter-column-string.component.mjs +0 -117
- package/esm2020/lib/data-filter/filter-panel/filter-panel.component.mjs +0 -258
- package/esm2020/lib/data-filter/filter.class.mjs +0 -44
- package/esm2020/lib/data-filter/filter.module.mjs +0 -90
- package/esm2020/lib/data-filter/toolbar/filter-toolbar.component.mjs +0 -166
- package/esm2020/lib/data-list/core/data-list.component.mjs +0 -40
- package/esm2020/lib/data-list/list/list.component.mjs +0 -124
- package/esm2020/lib/data-list/list/list.module.mjs +0 -22
- package/esm2020/lib/data-list/list/toolbar-list-view.component.mjs +0 -85
- package/esm2020/lib/data-source/datasource.component.mjs +0 -47
- package/esm2020/lib/data-source/datasource.module.mjs +0 -18
- package/esm2020/lib/data-source/read-param.mjs +0 -5
- package/esm2020/lib/date-picker/date-picker.component.mjs +0 -702
- package/esm2020/lib/date-picker/date-picker.module.mjs +0 -25
- package/esm2020/lib/dialog/dialog.component.mjs +0 -24
- package/esm2020/lib/dialog/dialog.module.mjs +0 -21
- package/esm2020/lib/dialog/dialog.service.mjs +0 -150
- package/esm2020/lib/drawer/content.component.mjs +0 -18
- package/esm2020/lib/drawer/drawer-container.component.mjs +0 -36
- package/esm2020/lib/drawer/drawer.component.mjs +0 -142
- package/esm2020/lib/drawer/drawer.module.mjs +0 -23
- package/esm2020/lib/dropdown/dropdown.component.mjs +0 -176
- package/esm2020/lib/dropdown/dropdown.module.mjs +0 -26
- package/esm2020/lib/fieldset/fieldset.component.mjs +0 -59
- package/esm2020/lib/fieldset/fieldset.module.mjs +0 -19
- package/esm2020/lib/form-group/form-group.component.mjs +0 -34
- package/esm2020/lib/form-group/form-group.module.mjs +0 -21
- package/esm2020/lib/label/label.component.mjs +0 -19
- package/esm2020/lib/label/label.module.mjs +0 -21
- package/esm2020/lib/loading/loading-indicator.component.mjs +0 -17
- package/esm2020/lib/loading/loading-panel.component.mjs +0 -44
- package/esm2020/lib/loading/loading.module.mjs +0 -21
- package/esm2020/lib/menu/menu-item.component.mjs +0 -47
- package/esm2020/lib/menu/menu.component.mjs +0 -86
- package/esm2020/lib/menu/menu.module.mjs +0 -22
- package/esm2020/lib/menu/menu2.component.mjs +0 -96
- package/esm2020/lib/number-box/number-box.component.mjs +0 -622
- package/esm2020/lib/number-box/number-box.module.mjs +0 -21
- package/esm2020/lib/page/content.component.mjs +0 -32
- package/esm2020/lib/page/footer.component.mjs +0 -19
- package/esm2020/lib/page/page.component.mjs +0 -53
- package/esm2020/lib/page/page.module.mjs +0 -22
- package/esm2020/lib/panel-box/panel-box.component.mjs +0 -88
- package/esm2020/lib/panel-box/panel-box.module.mjs +0 -19
- package/esm2020/lib/password-box/password-box.component.mjs +0 -31
- package/esm2020/lib/password-box/password-box.module.mjs +0 -23
- package/esm2020/lib/popover/custom-cdk-overlay.service.mjs +0 -48
- package/esm2020/lib/popover/overlay.service.mjs +0 -91
- package/esm2020/lib/popover/popover.component.mjs +0 -133
- package/esm2020/lib/popover/popover.module.mjs +0 -19
- package/esm2020/lib/popup/popup.component.mjs +0 -147
- package/esm2020/lib/popup/popup.module.mjs +0 -25
- package/esm2020/lib/popup/popup.service.mjs +0 -93
- package/esm2020/lib/progress-bar/progress-bar.component.mjs +0 -19
- package/esm2020/lib/progress-bar/progress-bar.module.mjs +0 -19
- package/esm2020/lib/property-editor/editors/check-editor/check-editor.mjs +0 -61
- package/esm2020/lib/property-editor/editors/check-editor/check.module.mjs +0 -22
- package/esm2020/lib/property-editor/editors/color-editor/color.editor.mjs +0 -38
- package/esm2020/lib/property-editor/editors/color-editor/color.module.mjs +0 -24
- package/esm2020/lib/property-editor/editors/column-editor/column.editor.mjs +0 -115
- package/esm2020/lib/property-editor/editors/column-editor/column.module.mjs +0 -32
- package/esm2020/lib/property-editor/editors/conditional-color-editor/conditional-color.editor.mjs +0 -211
- package/esm2020/lib/property-editor/editors/conditional-color-editor/conditional-color.module.mjs +0 -78
- package/esm2020/lib/property-editor/editors/date-editor/date.editor.mjs +0 -51
- package/esm2020/lib/property-editor/editors/date-editor/date.module.mjs +0 -24
- package/esm2020/lib/property-editor/editors/number-editor/number.editor.mjs +0 -63
- package/esm2020/lib/property-editor/editors/number-editor/number.module.mjs +0 -24
- package/esm2020/lib/property-editor/editors/range-editor/range.editor.mjs +0 -140
- package/esm2020/lib/property-editor/editors/range-editor/range.module.mjs +0 -61
- package/esm2020/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.mjs +0 -72
- package/esm2020/lib/property-editor/editors/selectbox-editor/selectbox.editor.mjs +0 -71
- package/esm2020/lib/property-editor/editors/selectbox-editor/selectbox.module.mjs +0 -25
- package/esm2020/lib/property-editor/editors/selection-editor/selection-editor.mjs +0 -69
- package/esm2020/lib/property-editor/editors/selection-editor/selection.module.mjs +0 -22
- package/esm2020/lib/property-editor/editors/switch-editor/number.editor.mjs +0 -29
- package/esm2020/lib/property-editor/editors/switch-editor/number.module.mjs +0 -25
- package/esm2020/lib/property-editor/editors/text-editor/text.editor.mjs +0 -32
- package/esm2020/lib/property-editor/editors/text-editor/text.module.mjs +0 -24
- package/esm2020/lib/property-editor/editors/textarea-editor/textarea.editor.mjs +0 -32
- package/esm2020/lib/property-editor/editors/textarea-editor/textarea.module.mjs +0 -24
- package/esm2020/lib/property-editor/editors/time-editor/time.editor.mjs +0 -43
- package/esm2020/lib/property-editor/editors/time-editor/time.module.mjs +0 -24
- package/esm2020/lib/property-editor/property-editor-renderer.directive.mjs +0 -157
- package/esm2020/lib/property-editor/property-editor.class.mjs +0 -102
- package/esm2020/lib/property-editor/property-editor.module.mjs +0 -196
- package/esm2020/lib/query-builder/query-builder-group.component.mjs +0 -124
- package/esm2020/lib/query-builder/query-builder-popup/query-builder-popup.component.mjs +0 -172
- package/esm2020/lib/query-builder/query-builder-rule.component.mjs +0 -399
- package/esm2020/lib/query-builder/query-builder.class.mjs +0 -20
- package/esm2020/lib/query-builder/query-builder.component.mjs +0 -87
- package/esm2020/lib/query-builder/query-builder.module.mjs +0 -62
- package/esm2020/lib/query-builder/query-builder.service.mjs +0 -197
- package/esm2020/lib/search-bar/search-bar.component.mjs +0 -286
- package/esm2020/lib/search-bar/search-bar.module.mjs +0 -63
- package/esm2020/lib/searchbox/searchbox.component.mjs +0 -79
- package/esm2020/lib/searchbox/searchbox.module.mjs +0 -24
- package/esm2020/lib/selectbox/selectbox.component.mjs +0 -961
- package/esm2020/lib/selectbox/selectbox.module.mjs +0 -44
- package/esm2020/lib/selectbox/selectbox2.component.mjs +0 -574
- package/esm2020/lib/selection-list/selection-list.component.mjs +0 -108
- package/esm2020/lib/selection-list/selection-list.module.mjs +0 -21
- package/esm2020/lib/switch/switch.component.mjs +0 -51
- package/esm2020/lib/switch/switch.module.mjs +0 -20
- package/esm2020/lib/tab-page/tab-page-Renderer.component.mjs +0 -71
- package/esm2020/lib/tab-page/tab-page-host.component.mjs +0 -114
- package/esm2020/lib/tab-page/tab-page.module.mjs +0 -21
- package/esm2020/lib/tab-page/tab-page.service.mjs +0 -160
- package/esm2020/lib/tab-strip/tab-strip.component.mjs +0 -36
- package/esm2020/lib/tab-strip/tab-strip.module.mjs +0 -19
- package/esm2020/lib/tab-view/dynamic-tabs.directive.mjs +0 -24
- package/esm2020/lib/tab-view/tab-view.component.mjs +0 -105
- package/esm2020/lib/tab-view/tab-view.module.mjs +0 -21
- package/esm2020/lib/tab-view/tab.component.mjs +0 -30
- package/esm2020/lib/textarea/textarea.component.mjs +0 -26
- package/esm2020/lib/textarea/textarea.module.mjs +0 -21
- package/esm2020/lib/textbox/textbox.component.mjs +0 -39
- package/esm2020/lib/textbox/textbox.module.mjs +0 -24
- package/esm2020/lib/time-picker/time-picker.component.mjs +0 -943
- package/esm2020/lib/time-picker/time-picker.module.mjs +0 -22
- package/esm2020/lib/toast/toast-message/toast-message.component.mjs +0 -74
- package/esm2020/lib/toast/toast-wrapper/toast-wrapper.component.mjs +0 -13
- package/esm2020/lib/toast/toast.module.mjs +0 -21
- package/esm2020/lib/toast/toast.service.mjs +0 -44
- package/esm2020/lib/toolbar/group-button/toolbar-group-button.component.mjs +0 -78
- package/esm2020/lib/toolbar/menu/toolbar-menu.component.mjs +0 -57
- package/esm2020/lib/toolbar/search/toolbar-search.component.mjs +0 -54
- package/esm2020/lib/toolbar/title/toolbar-title.component.mjs +0 -47
- package/esm2020/lib/toolbar/toolbar-item.mjs +0 -6
- package/esm2020/lib/toolbar/toolbar.component.mjs +0 -13
- package/esm2020/lib/toolbar/toolbar.module.mjs +0 -40
- package/esm2020/lib/tooltip/tooltip.directive.mjs +0 -100
- package/esm2020/lib/tooltip/tooltip.module.mjs +0 -19
- package/esm2020/lib/tree-side-menu/tree-side-menu.component.mjs +0 -646
- package/esm2020/lib/tree-side-menu/tree-side-menu.module.mjs +0 -35
- package/esm2020/lib/tree-view/tree-view.component.mjs +0 -775
- package/esm2020/lib/tree-view/tree-view.module.mjs +0 -22
- package/esm2020/lib/upload-file/upload-file.component.mjs +0 -208
- package/esm2020/lib/upload-file/upload-file.events.mjs +0 -2
- package/esm2020/lib/upload-file/upload-file.module.mjs +0 -24
- package/esm2020/lib/validation/validation-form.component.mjs +0 -65
- package/esm2020/lib/validation/validation-rule.widget.mjs +0 -111
- package/esm2020/lib/validation/validation.class.mjs +0 -2
- package/esm2020/lib/validation/validation.component.mjs +0 -89
- package/esm2020/lib/validation/validation.module.mjs +0 -34
- package/esm2020/public-api.mjs +0 -158
- package/fesm2015/acorex-components.mjs +0 -16012
- package/fesm2015/acorex-components.mjs.map +0 -1
- package/fesm2020/acorex-components.mjs.map +0 -1
- /package/{public-api.d.ts → index.d.ts} +0 -0
@@ -9,5 +9,5 @@ export declare class AXAccordionComponent extends AXBaseComponent {
|
|
9
9
|
ngAfterContentInit(): void;
|
10
10
|
private handleCollapsedChanged;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXAccordionComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXAccordionComponent, "ax-accordion", never, { "multiple": "multiple"; }, {}, ["panels"], ["*"]>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAccordionComponent, "ax-accordion", never, { "multiple": { "alias": "multiple"; "required": false; }; }, {}, ["panels"], ["*"], false, never>;
|
13
13
|
}
|
@@ -31,7 +31,7 @@ export declare abstract class AXBasePageComponent {
|
|
31
31
|
onActivated(): void;
|
32
32
|
ngOnDestroy(): void;
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXBasePageComponent, never>;
|
34
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBasePageComponent, never, never, {}, {}, never>;
|
34
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBasePageComponent, never, never, {}, {}, never, never, false, never>;
|
35
35
|
}
|
36
36
|
export declare abstract class AXBasePopupPageComponent extends AXBasePageComponent {
|
37
37
|
constructor();
|
@@ -42,5 +42,5 @@ export declare abstract class AXBasePopupPageComponent extends AXBasePageCompone
|
|
42
42
|
onFooterButtonClick(e: AXMenuItemClickEvent): void;
|
43
43
|
getFooterButtons(): AXButtonItem[];
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXBasePopupPageComponent, never>;
|
45
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBasePopupPageComponent, never, never, {}, {}, never>;
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBasePopupPageComponent, never, never, {}, {}, never, never, false, never>;
|
46
46
|
}
|
@@ -3,13 +3,13 @@ import { AXValidation } from '../validation/validation.component';
|
|
3
3
|
import { AXValidationRuleResult } from '../validation/validation.class';
|
4
4
|
import { AXHtmlEvent, AXValueEvent } from './events.class';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export
|
6
|
+
export type AXElementSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
7
7
|
export declare abstract class AXBaseComponent {
|
8
8
|
cssClass: string;
|
9
9
|
uid: string;
|
10
10
|
constructor();
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseComponent, never>;
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseComponent, never, never, { "cssClass": "cssClass"; }, {}, never>;
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseComponent, never, never, { "cssClass": { "alias": "cssClass"; "required": false; }; }, {}, never, never, false, never>;
|
13
13
|
}
|
14
14
|
export declare class AXBaseInputChangeEvent extends AXValueEvent<any> {
|
15
15
|
isUserChange?: boolean;
|
@@ -44,7 +44,7 @@ export declare abstract class AXValidatableComponent extends AXBaseComponent {
|
|
44
44
|
protected clearValidationStyle(element: HTMLElement, clear?: boolean): void;
|
45
45
|
protected applyValidationStyle(element: HTMLElement, v: AXValidationRuleResult): void;
|
46
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXValidatableComponent, never>;
|
47
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXValidatableComponent, never, never, { "tabIndex": "tabIndex"; }, {}, never>;
|
47
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXValidatableComponent, never, never, { "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, never, never, false, never>;
|
48
48
|
}
|
49
49
|
export declare abstract class AXBaseTextComponent extends AXValidatableComponent implements AXBaseSizableComponent, AXBaseValueComponent<string> {
|
50
50
|
protected cdr: ChangeDetectorRef;
|
@@ -83,7 +83,7 @@ export declare abstract class AXBaseTextComponent extends AXValidatableComponent
|
|
83
83
|
handleInputBlur(e: Event): void;
|
84
84
|
handleInputFocus(e: Event): void;
|
85
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseTextComponent, never>;
|
86
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseTextComponent, never, never, { "tabIndex": "tabIndex"; "validation": "validation"; "disabled": "disabled"; "readonly": "readonly"; "textAlign": "textAlign"; "size": "size"; "placeholder": "placeholder"; "autocomplete": "autocomplete"; "name": "name"; "icon": "icon"; "allowClear": "allowClear"; "value": "value"; }, { "onkey": "onkey"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; }, ["input", "_contentValidation"]>;
|
86
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseTextComponent, never, never, { "tabIndex": { "alias": "tabIndex"; "required": false; }; "validation": { "alias": "validation"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "size": { "alias": "size"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "name": { "alias": "name"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onkey": "onkey"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; }, ["input", "_contentValidation"], never, false, never>;
|
87
87
|
}
|
88
88
|
export declare abstract class AXBaseButtonComponent extends AXBaseComponent implements AXBaseClickableComponent, AXBaseSizableComponent {
|
89
89
|
disabled: boolean;
|
@@ -91,7 +91,7 @@ export declare abstract class AXBaseButtonComponent extends AXBaseComponent impl
|
|
91
91
|
size: AXElementSize;
|
92
92
|
tabIndex: number;
|
93
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseButtonComponent, never>;
|
94
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseButtonComponent, never, never, { "disabled": "disabled"; "size": "size"; "tabIndex": "tabIndex"; }, { "click": "click"; }, never>;
|
94
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseButtonComponent, never, never, { "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, { "click": "click"; }, never, never, false, never>;
|
95
95
|
}
|
96
96
|
export declare abstract class AXBaseDropdownComponent extends AXBaseComponent implements AXBaseInteractiveComponent, AXBaseSizableComponent {
|
97
97
|
disabled: boolean;
|
@@ -102,5 +102,5 @@ export declare abstract class AXBaseDropdownComponent extends AXBaseComponent im
|
|
102
102
|
abstract close(): any;
|
103
103
|
abstract open(): any;
|
104
104
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseDropdownComponent, never>;
|
105
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseDropdownComponent, never, never, { "disabled": "disabled"; "size": "size"; "fitParent": "fitParent"; "tabIndex": "tabIndex"; "showDropDownButton": "showDropDownButton"; }, {}, never>;
|
105
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXBaseDropdownComponent, never, never, { "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "fitParent": { "alias": "fitParent"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "showDropDownButton": { "alias": "showDropDownButton"; "required": false; }; }, {}, never, never, false, never>;
|
106
106
|
}
|
@@ -17,5 +17,5 @@ export declare class AXButtonComponent extends AXBaseButtonComponent {
|
|
17
17
|
onKeydownHandler(e: KeyboardEvent): boolean;
|
18
18
|
focusButton(): void;
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXButtonComponent, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXButtonComponent, "ax-button", never, { "type": "type"; "icon": "icon"; "submitBehavior": "submitBehavior"; "cancelBehavior": "cancelBehavior"; "block": "block"; "loading": "loading"; "selected": "selected"; }, {}, never, ["*"]>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXButtonComponent, "ax-button", never, { "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "submitBehavior": { "alias": "submitBehavior"; "required": false; }; "cancelBehavior": { "alias": "cancelBehavior"; "required": false; }; "block": { "alias": "block"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, ["*"], false, never>;
|
21
21
|
}
|
@@ -3,16 +3,16 @@ import { AXDateTime, AXDateTimeRange, AXCalendarType } from '@acorex/core';
|
|
3
3
|
import { AXBaseSizableComponent, AXElementSize } from '../../base/element.class';
|
4
4
|
import { AXValueEvent } from '../../base/events.class';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export
|
7
|
-
export
|
8
|
-
export
|
6
|
+
export type AXCalendarViewType = 'year' | 'month' | 'day';
|
7
|
+
export type AXCalendarHolidays = AXCalendarHoliday[];
|
8
|
+
export type AXCalendarHolidaysFunc = (start: Date, end: Date, type: AXCalendarType) => AXCalendarHoliday[];
|
9
9
|
export interface AXCalendarHoliday {
|
10
10
|
date: Date;
|
11
11
|
title: string;
|
12
12
|
description?: string;
|
13
13
|
}
|
14
|
-
export
|
15
|
-
export
|
14
|
+
export type AXCalendarWeekends = AXCalendarWeekend[];
|
15
|
+
export type AXCalendarWeekendsFunc = (start: Date, end: Date, type: AXCalendarType) => AXCalendarWeekend[];
|
16
16
|
export interface AXCalendarWeekend {
|
17
17
|
indexDay: number;
|
18
18
|
}
|
@@ -77,5 +77,5 @@ export declare class AXCalendarBoxComponent implements AXBaseSizableComponent {
|
|
77
77
|
setToday(): void;
|
78
78
|
trackByFn(index: any, item: any): any;
|
79
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCalendarBoxComponent, never>;
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXCalendarBoxComponent, "ax-calendar-box", never, { "size": "size"; "type": "type"; "locale": "locale"; "dir": "dir"; "min": "min"; "max": "max"; "selectableHoliday": "selectableHoliday"; "dayStyle": "dayStyle"; "dayMinMaxResoan": "dayMinMaxResoan"; "showTodayButton": "showTodayButton"; "view": "view"; "depth": "depth"; "value": "value"; }, { "onValueChanged": "onValueChanged"; "onClick": "onClick"; "valueChange": "valueChange"; }, never, never>;
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXCalendarBoxComponent, "ax-calendar-box", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "selectableHoliday": { "alias": "selectableHoliday"; "required": false; }; "dayStyle": { "alias": "dayStyle"; "required": false; }; "dayMinMaxResoan": { "alias": "dayMinMaxResoan"; "required": false; }; "showTodayButton": { "alias": "showTodayButton"; "required": false; }; "view": { "alias": "view"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onValueChanged": "onValueChanged"; "onClick": "onClick"; "valueChange": "valueChange"; }, never, never, false, never>;
|
81
81
|
}
|
@@ -9,11 +9,11 @@ export declare class AXSchedulerViewProperty {
|
|
9
9
|
interval: number;
|
10
10
|
ngOnInit(): void;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerViewProperty, [{ attribute: "type"; }, { attribute: "caption"; }, { attribute: "name"; }]>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerViewProperty, "ax-scheduler-view", never, { "interval": "interval"; }, {}, never, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerViewProperty, "ax-scheduler-view", never, { "interval": { "alias": "interval"; "required": false; }; }, {}, never, never, false, never>;
|
13
13
|
}
|
14
14
|
export declare class AXSchedulerViewsProperty {
|
15
15
|
views: QueryList<AXSchedulerViewProperty>;
|
16
16
|
constructor();
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerViewsProperty, never>;
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerViewsProperty, "ax-scheduler-views", never, {}, {}, ["views"], ["*"]>;
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerViewsProperty, "ax-scheduler-views", never, {}, {}, ["views"], ["*"], false, never>;
|
19
19
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AXDateTime, AXDateTimeRange } from '@acorex/core';
|
2
2
|
import { EventEmitter } from '@angular/core';
|
3
|
-
export
|
3
|
+
export type AXSchedulerViewType = 'day' | 'week' | 'month' | 'timeline' | 'agenda';
|
4
4
|
export interface AXSchedulerRequestDataArge {
|
5
5
|
startTime: AXDateTime;
|
6
6
|
endTime: AXDateTime;
|
@@ -35,5 +35,5 @@ export declare class AXSchedulerComponent {
|
|
35
35
|
ngOnDestroy(): void;
|
36
36
|
refresh(): void;
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerComponent, never>;
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerComponent, "ax-scheduler", never, { "currentView": "currentView"; "events": "events"; }, { "onEventChanged": "onEventChanged"; }, ["viewManager", "toolbarView", "toolbarNavigator", "searchInput", "dataSource"], ["ax-scheduler-views", "ax-toolbar"]>;
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerComponent, "ax-scheduler", never, { "currentView": { "alias": "currentView"; "required": false; }; "events": { "alias": "events"; "required": false; }; }, { "onEventChanged": "onEventChanged"; }, ["viewManager", "toolbarView", "toolbarNavigator", "searchInput", "dataSource"], ["ax-scheduler-views", "ax-toolbar"], false, never>;
|
39
39
|
}
|
@@ -21,5 +21,5 @@ export declare class AXToolbarSchedulerNavigatorComponent {
|
|
21
21
|
goto(date: AXDateTime): void;
|
22
22
|
set(range: AXDateTimeRange, type: AXSchedulerViewType): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXToolbarSchedulerNavigatorComponent, never>;
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarSchedulerNavigatorComponent, "ax-toolbar-scheduler-navigator", never, {}, { "onNavigate": "onNavigate"; }, never, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarSchedulerNavigatorComponent, "ax-toolbar-scheduler-navigator", never, {}, { "onNavigate": "onNavigate"; }, never, never, false, never>;
|
25
25
|
}
|
@@ -10,5 +10,5 @@ export declare class AXToolbarSchedulerViewsComponent {
|
|
10
10
|
onViewChanged: EventEmitter<string>;
|
11
11
|
onItemClick(e: AXMenuItem): void;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXToolbarSchedulerViewsComponent, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarSchedulerViewsComponent, "ax-toolbar-scheduler-view", never, {}, { "onViewChanged": "onViewChanged"; }, never, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarSchedulerViewsComponent, "ax-toolbar-scheduler-view", never, {}, { "onViewChanged": "onViewChanged"; }, never, never, false, never>;
|
14
14
|
}
|
@@ -12,5 +12,5 @@ export declare class AXSchedulerAgendaViewComponent extends AXSchedulerBaseViewC
|
|
12
12
|
next(): void;
|
13
13
|
prev(): void;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerAgendaViewComponent, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerAgendaViewComponent, "ng-component", never, {}, {}, never, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerAgendaViewComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
16
16
|
}
|
@@ -22,5 +22,5 @@ export declare class AXSchedulerDayTimeViewComponent extends AXSchedulerBaseView
|
|
22
22
|
arrangeEvents(): void;
|
23
23
|
findEventIndex(event: AXSchedulerEvent): number;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerDayTimeViewComponent, never>;
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerDayTimeViewComponent, "ng-component", never, {}, {}, never, never>;
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerDayTimeViewComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
26
26
|
}
|
@@ -33,5 +33,5 @@ export declare class AXSchedulerMonthViewComponent extends AXSchedulerBaseViewCo
|
|
33
33
|
private drageMouseMove;
|
34
34
|
onDragDropOnDay(e: any): void;
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerMonthViewComponent, never>;
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerMonthViewComponent, "ng-component", never, {}, {}, never, never>;
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerMonthViewComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
37
37
|
}
|
@@ -24,5 +24,5 @@ export declare abstract class AXSchedulerBaseViewComponent implements OnDestroy
|
|
24
24
|
ngOnDestroy(): void;
|
25
25
|
onDragDropOnDay(e: any, time?: number): void;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerBaseViewComponent, never>;
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXSchedulerBaseViewComponent, never, never, {}, { "onNavigatorDateChanged": "onNavigatorDateChanged"; "onEventChanged": "onEventChanged"; }, never>;
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXSchedulerBaseViewComponent, never, never, {}, { "onNavigatorDateChanged": "onNavigatorDateChanged"; "onEventChanged": "onEventChanged"; }, never, never, false, never>;
|
28
28
|
}
|
@@ -20,5 +20,5 @@ export declare class AXSchedulerTimelineViewComponent extends AXSchedulerBaseVie
|
|
20
20
|
prev(): void;
|
21
21
|
arrangeEvents(): void;
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXSchedulerTimelineViewComponent, never>;
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerTimelineViewComponent, "ng-component", never, {}, {}, never, never>;
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSchedulerTimelineViewComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
24
24
|
}
|
@@ -26,5 +26,5 @@ export declare class AXCheckBoxComponent extends AXValidatableComponent implemen
|
|
26
26
|
ngOnInit(): void;
|
27
27
|
handleClick(e: MouseEvent): void;
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "readonly": "readonly"; "disabled": "disabled"; "size": "size"; "label": "label"; "tabIndex": "tabIndex"; "indeterminate": "indeterminate"; "value": "value"; }, { "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; "onClick": "onClick"; }, never, never>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; "onClick": "onClick"; }, never, never, false, never>;
|
30
30
|
}
|
@@ -21,5 +21,5 @@ export declare class AXColorBoxComponent extends AXValidatableComponent {
|
|
21
21
|
private selectColor;
|
22
22
|
handleKeyEvent(e: KeyboardEvent): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorBoxComponent, never>;
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorBoxComponent, "ax-color-box", never, { "value": "value"; }, { "onColorSelect": "onColorSelect"; "valueChange": "valueChange"; }, never, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorBoxComponent, "ax-color-box", never, { "value": { "alias": "value"; "required": false; }; }, { "onColorSelect": "onColorSelect"; "valueChange": "valueChange"; }, never, never, false, never>;
|
25
25
|
}
|
@@ -26,5 +26,5 @@ export declare class AXColorPickerComponent extends AXColorBoxComponent implemen
|
|
26
26
|
findTextColor(color: string): "#000" | "#fff";
|
27
27
|
handleItemClick(e: any): void;
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPickerComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPickerComponent, "ax-color-picker", never, { "placeholder": "placeholder"; "showClear": "showClear"; "label": "label"; "readonly": "readonly"; "disabled": "disabled"; "size": "size"; "rtl": "rtl"; "validation": "validation"; }, {}, ["_contentValidation"], ["[start]", "[end]"]>;
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPickerComponent, "ax-color-picker", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "label": { "alias": "label"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "validation": { "alias": "validation"; "required": false; }; }, {}, ["_contentValidation"], ["[start]", "[end]"], false, never>;
|
30
30
|
}
|
@@ -18,5 +18,5 @@ export declare class AXContextMenuComponent {
|
|
18
18
|
open(_left: any, _top: any, _rtl?: boolean): void;
|
19
19
|
handleClickItem(item: AXMenuItem): void;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXContextMenuComponent, never>;
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXContextMenuComponent, "ax-context-menu", never, { "size": "size"; "width": "width"; "items": "items"; }, { "onItemClick": "onItemClick"; "onClosed": "onClosed"; }, never, never>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXContextMenuComponent, "ax-context-menu", never, { "size": { "alias": "size"; "required": false; }; "width": { "alias": "width"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "onItemClick": "onItemClick"; "onClosed": "onClosed"; }, never, never, false, never>;
|
22
22
|
}
|
@@ -3,8 +3,8 @@ import { AXMenuItem } from '@acorex/core';
|
|
3
3
|
import { AXBaseEvent } from '../base/events.class';
|
4
4
|
import { AXContextMenuComponent } from './context-menu.component';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export
|
7
|
-
export
|
6
|
+
export type AXContextMenuPromiseFunction = (item: any) => Promise<AXMenuItem[]>;
|
7
|
+
export type AXContextMenuFunction = (item: any) => AXMenuItem[];
|
8
8
|
export declare class AXContextMenuItemClickEvent extends AXBaseEvent {
|
9
9
|
dataItem?: any;
|
10
10
|
menuItem: AXMenuItem;
|
@@ -34,5 +34,5 @@ export declare class AXContextMenuDirective {
|
|
34
34
|
private getMenuItems;
|
35
35
|
ngOnDestroy(): void;
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXContextMenuDirective, never>;
|
37
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXContextMenuDirective, "[axContextMenu]", never, { "contextMenu": "contextMenu"; "contextDataItem": "contextDataItem"; "contextMenuItems": "contextMenuItems"; "rtl": "rtl"; }, { "onContextMenuItemClick": "onContextMenuItemClick"; }, never>;
|
37
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXContextMenuDirective, "[axContextMenu]", never, { "contextMenu": { "alias": "contextMenu"; "required": false; }; "contextDataItem": { "alias": "contextDataItem"; "required": false; }; "contextMenuItems": { "alias": "contextMenuItems"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; }, { "onContextMenuItemClick": "onContextMenuItemClick"; }, never, never, false, never>;
|
38
38
|
}
|
@@ -18,5 +18,5 @@ export declare class AXFilterColumnDateComponent extends AXFilterColumnComponent
|
|
18
18
|
onSelectedChanged(items: any[]): void;
|
19
19
|
get condition(): AXFilterCondition;
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFilterColumnDateComponent, never>;
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnDateComponent, "ax-filter-column-date", never, {}, {}, never, never>;
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnDateComponent, "ax-filter-column-date", never, {}, {}, never, never, false, never>;
|
22
22
|
}
|
@@ -11,5 +11,5 @@ export declare class AXFilterColumnNumberComponent extends AXFilterColumnCompone
|
|
11
11
|
onTextChange(e: any): import("rxjs").Subscription;
|
12
12
|
get condition(): AXFilterCondition;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFilterColumnNumberComponent, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnNumberComponent, "ax-filter-column-number", never, {}, {}, never, never>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnNumberComponent, "ax-filter-column-number", never, {}, {}, never, never, false, never>;
|
15
15
|
}
|
@@ -14,5 +14,5 @@ export declare class AXFilterColumnSelectionComponent extends AXFilterColumnComp
|
|
14
14
|
onSelectChange(e: any): void;
|
15
15
|
setFilter(value: any, operator: string): void;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFilterColumnSelectionComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnSelectionComponent, "ax-filter-column-selection", never, { "items": "items"; "mode": "mode"; "dataType": "dataType"; }, {}, never, never>;
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnSelectionComponent, "ax-filter-column-selection", never, { "items": { "alias": "items"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "dataType": { "alias": "dataType"; "required": false; }; }, {}, never, never, false, never>;
|
18
18
|
}
|
@@ -11,5 +11,5 @@ export declare class AXFilterColumnStringComponent extends AXFilterColumnCompone
|
|
11
11
|
onTextChange(e: any): import("rxjs").Subscription;
|
12
12
|
get condition(): AXFilterCondition;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFilterColumnStringComponent, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnStringComponent, "ax-filter-column-string", never, {}, {}, never, never>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterColumnStringComponent, "ax-filter-column-string", never, {}, {}, never, never, false, never>;
|
15
15
|
}
|
@@ -41,5 +41,5 @@ export declare class AXFilterPanelComponent {
|
|
41
41
|
tbxNameOnKey(e: AXKeyboardEvent): void;
|
42
42
|
handleRenameClick(f: AXFilterPredefined): void;
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFilterPanelComponent, never>;
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterPanelComponent, "ax-filter-panel", never, { "groups": "groups"; "predefinedFilters": "predefinedFilters"; "mode": "mode"; }, { "filterChange": "filterChange"; }, never, never>;
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFilterPanelComponent, "ax-filter-panel", never, { "groups": { "alias": "groups"; "required": false; }; "predefinedFilters": { "alias": "predefinedFilters"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; }, { "filterChange": "filterChange"; }, never, never, false, never>;
|
45
45
|
}
|
@@ -36,5 +36,5 @@ export declare abstract class AXFilterColumnComponent {
|
|
36
36
|
clear(): void;
|
37
37
|
setFilter(value: any, operator: string): void;
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFilterColumnComponent, never>;
|
39
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXFilterColumnComponent, never, never, { "field": "field"; "active": "active"; }, { "valueChange": "valueChange"; "activeChange": "activeChange"; }, never>;
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXFilterColumnComponent, never, never, { "field": { "alias": "field"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, { "valueChange": "valueChange"; "activeChange": "activeChange"; }, never, never, false, never>;
|
40
40
|
}
|
@@ -21,5 +21,5 @@ export declare class AXToolbarFilterViewComponent {
|
|
21
21
|
private setCurrent;
|
22
22
|
onCtxClick(e: AXMenuItem): void;
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXToolbarFilterViewComponent, never>;
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarFilterViewComponent, "ax-toolbar-filter-view", never, { "filterPanel": "filterPanel"; }, {}, never, never>;
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarFilterViewComponent, "ax-toolbar-filter-view", never, { "filterPanel": { "alias": "filterPanel"; "required": false; }; }, {}, never, never, false, never>;
|
25
25
|
}
|
@@ -11,5 +11,5 @@ export declare abstract class AXDataListComponent extends AXBaseComponent {
|
|
11
11
|
fetch(params?: AXDataSourceReadParams): void;
|
12
12
|
refresh(): void;
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDataListComponent, never>;
|
14
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AXDataListComponent, never, never, { "items": "items"; }, {}, never>;
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXDataListComponent, never, never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, false, never>;
|
15
15
|
}
|
@@ -36,5 +36,5 @@ export declare class AXListComponent extends AXDataListComponent {
|
|
36
36
|
private setDirection;
|
37
37
|
dragDrop(event: any): void;
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXListComponent, never>;
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXListComponent, "ax-list", never, { "width": "width"; "height": "height"; "dropId": "dropId"; "connectedList": "connectedList"; "allowMoveItem": "allowMoveItem"; "dataSource": "dataSource"; "itemTemplate": "itemTemplate"; "emptyTemplate": "emptyTemplate"; "direction": "direction"; }, { "onDirectionChanged": "onDirectionChanged"; }, ["_contentDataSource", "_contentItemTemplate", "_contentEmptyTemplate", "searchToolbar", "viewToolbar", "toolbar"], ["ax-toolbar"]>;
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXListComponent, "ax-list", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "dropId": { "alias": "dropId"; "required": false; }; "connectedList": { "alias": "connectedList"; "required": false; }; "allowMoveItem": { "alias": "allowMoveItem"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "emptyTemplate": { "alias": "emptyTemplate"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, { "onDirectionChanged": "onDirectionChanged"; }, ["_contentDataSource", "_contentItemTemplate", "_contentEmptyTemplate", "searchToolbar", "viewToolbar", "toolbar"], ["ax-toolbar"], false, never>;
|
40
40
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
2
2
|
import { AXValueEvent } from '../../base/events.class';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export
|
4
|
+
export type AXListViewDirection = "vertical" | "vertical-wrap" | "horizontal-wrap" | "horizontal";
|
5
5
|
export declare class AXToolbarListViewComponent {
|
6
6
|
constructor();
|
7
7
|
vertical: boolean;
|
@@ -13,5 +13,5 @@ export declare class AXToolbarListViewComponent {
|
|
13
13
|
get direction(): AXListViewDirection;
|
14
14
|
set direction(v: AXListViewDirection);
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXToolbarListViewComponent, never>;
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarListViewComponent, "ax-toolbar-list-view", never, { "vertical": "vertical"; "verticalWrap": "vertical-wrap"; "horizontalWrap": "horizontal-wrap"; "horizontal": "horizontal"; "direction": "direction"; }, { "onDirectionChanged": "onDirectionChanged"; }, never, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXToolbarListViewComponent, "ax-toolbar-list-view", never, { "vertical": { "alias": "vertical"; "required": false; }; "verticalWrap": { "alias": "vertical-wrap"; "required": false; }; "horizontalWrap": { "alias": "horizontal-wrap"; "required": false; }; "horizontal": { "alias": "horizontal"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, { "onDirectionChanged": "onDirectionChanged"; }, never, never, false, never>;
|
17
17
|
}
|
@@ -12,5 +12,5 @@ export declare class AXDataSourceComponent {
|
|
12
12
|
params: any;
|
13
13
|
fetch(params: AXDataSourceReadParams): void;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDataSourceComponent, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataSourceComponent, "ax-data-source", never, { "provideData": "provideData"; "params": "params"; }, {}, never, ["*"]>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDataSourceComponent, "ax-data-source", never, { "provideData": { "alias": "provideData"; "required": false; }; "params": { "alias": "params"; "required": false; }; }, {}, never, ["*"], false, never>;
|
16
16
|
}
|
@@ -77,5 +77,5 @@ export declare class AXDatePickerComponent extends AXValidatableComponent implem
|
|
77
77
|
setCaretPosition(ctrl: any, pos: any): void;
|
78
78
|
setCaret(): void;
|
79
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDatePickerComponent, never>;
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePickerComponent, "ax-date-picker", never, { "dayStyle": "dayStyle"; "dayMinMaxResoan": "dayMinMaxResoan"; "validation": "validation"; "placeholder": "placeholder"; "min": "min"; "max": "max"; "readonly": "readonly"; "disabled": "disabled"; "allowClear": "allowClear"; "textAlign": "textAlign"; "showToday": "showToday"; "selectableHoliday": "selectableHoliday"; "dateType": "dateType"; "showTodayButton": "showTodayButton"; "openByClick": "openByClick"; "size": "size"; "type": "type"; "value": "value"; }, { "typeChange": "typeChange"; "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; }, ["_contentValidation"], ["[start]", "[end]"]>;
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePickerComponent, "ax-date-picker", never, { "dayStyle": { "alias": "dayStyle"; "required": false; }; "dayMinMaxResoan": { "alias": "dayMinMaxResoan"; "required": false; }; "validation": { "alias": "validation"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "textAlign": { "alias": "textAlign"; "required": false; }; "showToday": { "alias": "showToday"; "required": false; }; "selectableHoliday": { "alias": "selectableHoliday"; "required": false; }; "dateType": { "alias": "dateType"; "required": false; }; "showTodayButton": { "alias": "showTodayButton"; "required": false; }; "openByClick": { "alias": "openByClick"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "typeChange": "typeChange"; "onValueChanged": "onValueChanged"; "valueChange": "valueChange"; }, ["_contentValidation"], ["[start]", "[end]"], false, never>;
|
81
81
|
}
|
@@ -6,9 +6,9 @@ import * as i4 from "../dropdown/dropdown.module";
|
|
6
6
|
import * as i5 from "../calendar/calendar-box/calendar-box.module";
|
7
7
|
import * as i6 from "../button/button.module";
|
8
8
|
import * as i7 from "../textbox/textbox.module";
|
9
|
-
import * as i8 from "
|
9
|
+
import * as i8 from "ngx-mask";
|
10
10
|
export declare class AXDatePickerModule {
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDatePickerModule, never>;
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDatePickerModule, [typeof i1.AXDatePickerComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXDropdownModule, typeof i5.AXCalendarBoxModule, typeof i6.AXButtonModule, typeof i7.AXTextBoxModule, typeof i8.
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDatePickerModule, [typeof i1.AXDatePickerComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXDropdownModule, typeof i5.AXCalendarBoxModule, typeof i6.AXButtonModule, typeof i7.AXTextBoxModule, typeof i8.NgxMaskDirective, typeof i8.NgxMaskPipe, typeof i3.FormsModule], [typeof i1.AXDatePickerComponent]>;
|
13
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXDatePickerModule>;
|
14
14
|
}
|
@@ -10,5 +10,5 @@ export declare class AXDialogComponent extends AXBasePopupPageComponent {
|
|
10
10
|
onFooterButtonClick(e: AXMenuItemClickEvent): void;
|
11
11
|
getFooterButtons(): AXButtonItem[];
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDialogComponent, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDialogComponent, "ax-dialog", never, {}, {}, never, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDialogComponent, "ax-dialog", never, {}, {}, never, never, false, never>;
|
14
14
|
}
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
3
3
|
export declare class AXDecoratorContentComponent {
|
4
4
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDecoratorContentComponent, never>;
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorContentComponent, "ax-content", never, {}, {}, never, ["*"]>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDecoratorContentComponent, "ax-content", never, {}, {}, never, ["*"], false, never>;
|
7
7
|
}
|
@@ -6,5 +6,5 @@ export declare class AXDrawerContainerComponent {
|
|
6
6
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _zone: NgZone);
|
7
7
|
ngDoCheck(): void;
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerContainerComponent, never>;
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, {}, {}, never, ["ax-drawer[location='start']", "*", "ax-drawer[location='end']"]>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerContainerComponent, "ax-drawer-container", never, {}, {}, never, ["ax-drawer[location='start']", "*", "ax-drawer[location='end']"], false, never>;
|
10
10
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ElementRef, ChangeDetectorRef, NgZone, EventEmitter } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
|
-
export
|
4
|
-
export
|
3
|
+
export type AXDrawerMode = 'push' | 'overlay';
|
4
|
+
export type AXDrawerLocation = 'start' | 'end';
|
5
5
|
export declare class AXDrawerComponent {
|
6
6
|
private _elementRef;
|
7
7
|
private _zone;
|
@@ -30,5 +30,5 @@ export declare class AXDrawerComponent {
|
|
30
30
|
private _addBackdrop;
|
31
31
|
private _removeBackdrop;
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDrawerComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerComponent, "ax-drawer", never, { "location": "location"; "mode": "mode"; "collapsed": "collapsed"; }, { "locationChange": "locationChange"; "modeChange": "modeChange"; "collapsedChange": "collapsedChange"; }, never, [".header", "*"]>;
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDrawerComponent, "ax-drawer", never, { "location": { "alias": "location"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; }, { "locationChange": "locationChange"; "modeChange": "modeChange"; "collapsedChange": "collapsedChange"; }, never, [".header", "*"], false, never>;
|
34
34
|
}
|
@@ -34,5 +34,5 @@ export declare class AXDropdownComponent extends AXBaseDropdownComponent impleme
|
|
34
34
|
updatePosition(): void;
|
35
35
|
focus(): void;
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDropdownComponent, never>;
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownComponent, "ax-drop-down", never, { "rtl": "rtl"; "readonly": "readonly"; "loading": "loading"; "dropdownWidth": "dropdownWidth"; }, { "dropdownToggle": "dropdownToggle"; "onButtonClick": "onButtonClick"; }, never, ["[start]", "ng-container[header]", "[end]", "ng-container[panel]"]>;
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXDropdownComponent, "ax-drop-down", never, { "rtl": { "alias": "rtl"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; }; }, { "dropdownToggle": "dropdownToggle"; "onButtonClick": "onButtonClick"; }, never, ["[start]", "ng-container[header]", "[end]", "ng-container[panel]"], false, never>;
|
38
38
|
}
|
@@ -7,5 +7,5 @@ export declare class AXFieldsetComponent implements AXBaseSizableComponent {
|
|
7
7
|
collapsed: boolean;
|
8
8
|
toggle(): void;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFieldsetComponent, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFieldsetComponent, "ax-fieldset", never, { "size": "size"; "caption": "caption"; "allowCollapse": "allowCollapse"; }, {}, never, ["*"]>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFieldsetComponent, "ax-fieldset", never, { "size": { "alias": "size"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "allowCollapse": { "alias": "allowCollapse"; "required": false; }; }, {}, never, ["*"], false, never>;
|
11
11
|
}
|
@@ -10,5 +10,5 @@ export declare class AXFormGroupComponent extends AXBaseComponent implements AXB
|
|
10
10
|
constructor(cdr: ChangeDetectorRef);
|
11
11
|
ngAfterViewInit(): void;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXFormGroupComponent, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXFormGroupComponent, "ax-form-group", never, { "size": "size"; }, {}, ["component"], ["ax-label", "ax-button[start]", "*", "ax-button[end]", "ax-button"]>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXFormGroupComponent, "ax-form-group", never, { "size": { "alias": "size"; "required": false; }; }, {}, ["component"], ["ax-label", "ax-button[start]", "*", "ax-button[end]", "ax-button"], false, never>;
|
14
14
|
}
|
@@ -5,5 +5,5 @@ export declare class AXLabelComponent extends AXBaseComponent implements AXBaseS
|
|
5
5
|
size: AXElementSize;
|
6
6
|
ngOnInit(): void;
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXLabelComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXLabelComponent, "ax-label", never, { "size": "size"; }, {}, never, ["*"]>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXLabelComponent, "ax-label", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
9
9
|
}
|
@@ -5,5 +5,5 @@ export declare class AXLoadingIndicatorComponent implements OnInit {
|
|
5
5
|
ngOnInit(): void;
|
6
6
|
size: number;
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXLoadingIndicatorComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingIndicatorComponent, "ax-loading-indicator", never, { "size": "size"; }, {}, never, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingIndicatorComponent, "ax-loading-indicator", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
9
9
|
}
|
@@ -9,5 +9,5 @@ export declare class AXLoadingPanelComponent implements OnInit {
|
|
9
9
|
show(): void;
|
10
10
|
hide(): void;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXLoadingPanelComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingPanelComponent, "ax-loading-panel", never, { "visible": "visible"; }, {}, never, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXLoadingPanelComponent, "ax-loading-panel", never, { "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, false, never>;
|
13
13
|
}
|
@@ -9,7 +9,7 @@ export declare class AXMenuItemComponent {
|
|
9
9
|
constructor(element: ElementRef);
|
10
10
|
showSubItems(event: Event): void;
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMenuItemComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenuItemComponent, "ax-menu-item", never, { "item": "item"; "level": "level"; }, { "showSubMenu": "showSubMenu"; }, never, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenuItemComponent, "ax-menu-item", never, { "item": { "alias": "item"; "required": false; }; "level": { "alias": "level"; "required": false; }; }, { "showSubMenu": "showSubMenu"; }, never, never, false, never>;
|
13
13
|
}
|
14
14
|
export interface SubItemsEvent {
|
15
15
|
element: ElementRef;
|
@@ -31,5 +31,5 @@ export declare class AXMenuComponent implements AXBaseSizableComponent {
|
|
31
31
|
ngOnInit(): void;
|
32
32
|
handleItemClick(e: MouseEvent, item?: AXMenuItem): void;
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMenuComponent, never>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenuComponent, "ax-menu", never, { "menuTemplate": "menuTemplate"; "rtl": "rtl"; "size": "size"; "selection": "selection"; "mode": "mode"; "target": "target"; "floatAlignment": "floatAlignment"; "floatPlacemnet": "floatPlacemnet"; "direction": "direction"; "items": "items"; }, { "onItemClick": "onItemClick"; }, ["_contentMenuTemplate"], never>;
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenuComponent, "ax-menu", never, { "menuTemplate": { "alias": "menuTemplate"; "required": false; }; "rtl": { "alias": "rtl"; "required": false; }; "size": { "alias": "size"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "target": { "alias": "target"; "required": false; }; "floatAlignment": { "alias": "floatAlignment"; "required": false; }; "floatPlacemnet": { "alias": "floatPlacemnet"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "onItemClick": "onItemClick"; }, ["_contentMenuTemplate"], never, false, never>;
|
35
35
|
}
|
@@ -17,5 +17,5 @@ export declare class AXMenu2Component implements OnDestroy {
|
|
17
17
|
hideOverlays(): void;
|
18
18
|
ngOnDestroy(): void;
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMenu2Component, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenu2Component, "ax-menu2", never, { "items": "items"; }, { "selected": "selected"; }, never, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMenu2Component, "ax-menu2", never, { "items": { "alias": "items"; "required": false; }; }, { "selected": "selected"; }, never, never, false, never>;
|
21
21
|
}
|
@@ -48,5 +48,5 @@ export declare class AXNumberBoxComponent extends AXBaseTextComponent implements
|
|
48
48
|
downStepHandel(): void;
|
49
49
|
handleInputBlur(e: Event): void;
|
50
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXNumberBoxComponent, never>;
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXNumberBoxComponent, "ax-number-box", never, { "min": "min"; "max": "max"; "showSeparator": "showSeparator"; "showCurrency": "showCurrency"; "showCounter": "showCounter"; "scrollWeel": "scrollWeel"; "showDoubleCounter": "showDoubleCounter"; "maxLength": "maxLength"; "intStep": "intStep"; "decimalNumber": "decimalNumber"; "customStep": "customStep"; }, {}, never, ["[start]", "[end]"]>;
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXNumberBoxComponent, "ax-number-box", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "showSeparator": { "alias": "showSeparator"; "required": false; }; "showCurrency": { "alias": "showCurrency"; "required": false; }; "showCounter": { "alias": "showCounter"; "required": false; }; "scrollWeel": { "alias": "scrollWeel"; "required": false; }; "showDoubleCounter": { "alias": "showDoubleCounter"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "intStep": { "alias": "intStep"; "required": false; }; "decimalNumber": { "alias": "decimalNumber"; "required": false; }; "customStep": { "alias": "customStep"; "required": false; }; }, {}, never, ["[start]", "[end]"], false, never>;
|
52
52
|
}
|
@@ -4,5 +4,5 @@ export declare class AXPageContentComponent {
|
|
4
4
|
private el;
|
5
5
|
constructor(el: ElementRef);
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPageContentComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXPageContentComponent, "ax-page-content", never, {}, {}, never, ["*"]>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPageContentComponent, "ax-page-content", never, {}, {}, never, ["*"], false, never>;
|
8
8
|
}
|