@acorex/components 5.0.5 → 5.0.9
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/acorex-components.d.ts +5 -0
- package/bundles/acorex-components.umd.js +7633 -0
- package/bundles/acorex-components.umd.js.map +1 -0
- package/esm2015/acorex-components.js +5 -0
- package/esm2015/lib/alert/alert-button.component.js +52 -0
- package/esm2015/lib/alert/alert-contnet.component.js +21 -0
- package/esm2015/lib/alert/alert-footer.component.js +27 -0
- package/esm2015/lib/alert/alert-suffix.component.js +27 -0
- package/esm2015/lib/alert/alert-title.component.js +23 -0
- package/esm2015/lib/alert/alert.component.js +130 -0
- package/esm2015/lib/alert/alert.module.js +43 -0
- package/esm2015/lib/alert/index.js +8 -0
- package/esm2015/lib/avatar/avatar.component.js +55 -0
- package/esm2015/lib/avatar/avatar.module.js +21 -0
- package/esm2015/lib/avatar/index.js +3 -0
- package/esm2015/lib/badge/badge.component.js +34 -0
- package/esm2015/lib/badge/badge.module.js +21 -0
- package/esm2015/lib/badge/index.js +3 -0
- package/esm2015/lib/base/common.module.js +18 -0
- package/esm2015/lib/base/custom-cdk-overlay.service.js +47 -0
- package/esm2015/lib/base/drawing.class.js +11 -0
- package/esm2015/lib/base/events.class.js +53 -0
- package/esm2015/lib/base/index.js +7 -0
- package/esm2015/lib/base/mixin/base-components.class.js +86 -0
- package/esm2015/lib/base/mixin/button-mixin.class.js +129 -0
- package/esm2015/lib/base/mixin/clickable-mixin.class.js +24 -0
- package/esm2015/lib/base/mixin/constratctor.js +2 -0
- package/esm2015/lib/base/mixin/datalist-component.class.js +97 -0
- package/esm2015/lib/base/mixin/dropdown-mixin.class.js +36 -0
- package/esm2015/lib/base/mixin/index.js +3 -0
- package/esm2015/lib/base/mixin/interactive-mixin.class.js +77 -0
- package/esm2015/lib/base/mixin/loading-mixin.class.js +18 -0
- package/esm2015/lib/base/mixin/mixin.class.js +22 -0
- package/esm2015/lib/base/mixin/selection-component.class.js +158 -0
- package/esm2015/lib/base/mixin/sizable-mixin.class.js +18 -0
- package/esm2015/lib/base/mixin/textbox-mixin.class.js +38 -0
- package/esm2015/lib/base/mixin/value-mixin.class.js +190 -0
- package/esm2015/lib/base/overlay.service.js +91 -0
- package/esm2015/lib/base/responsive.directive.js +34 -0
- package/esm2015/lib/base/styles.class.js +4 -0
- package/esm2015/lib/button/button-group.component.js +131 -0
- package/esm2015/lib/button/button-item.class.js +2 -0
- package/esm2015/lib/button/button-item.component.js +81 -0
- package/esm2015/lib/button/button.component.js +73 -0
- package/esm2015/lib/button/button.module.js +33 -0
- package/esm2015/lib/button/index.js +6 -0
- package/esm2015/lib/calendar/calendar.component.js +287 -0
- package/esm2015/lib/calendar/calendar.module.js +25 -0
- package/esm2015/lib/calendar/index.js +3 -0
- package/esm2015/lib/carousel/carousel-arrows.component.js +53 -0
- package/esm2015/lib/carousel/carousel-item.component.js +21 -0
- package/esm2015/lib/carousel/carousel-pager.component.js +74 -0
- package/esm2015/lib/carousel/carousel-splidejs.class.js +82 -0
- package/esm2015/lib/carousel/carousel.class.js +10 -0
- package/esm2015/lib/carousel/carousel.component.js +246 -0
- package/esm2015/lib/carousel/carousel.module.js +24 -0
- package/esm2015/lib/carousel/index.js +7 -0
- package/esm2015/lib/checkbox/checkbox.component.js +59 -0
- package/esm2015/lib/checkbox/checkbox.module.js +20 -0
- package/esm2015/lib/checkbox/index.js +3 -0
- package/esm2015/lib/datalist/datalist.component.js +81 -0
- package/esm2015/lib/datalist/datalist.module.js +22 -0
- package/esm2015/lib/datalist/index.js +3 -0
- package/esm2015/lib/datepicker/datepicker.component.js +80 -0
- package/esm2015/lib/datepicker/datepicker.module.js +23 -0
- package/esm2015/lib/datepicker/index.js +3 -0
- package/esm2015/lib/decorators/content.component.js +26 -0
- package/esm2015/lib/decorators/decorators.module.js +23 -0
- package/esm2015/lib/decorators/index.js +5 -0
- package/esm2015/lib/decorators/prefix.component.js +26 -0
- package/esm2015/lib/decorators/suffix.component.js +26 -0
- package/esm2015/lib/dialog/dialog.class.js +2 -0
- package/esm2015/lib/dialog/dialog.component.js +45 -0
- package/esm2015/lib/dialog/dialog.module.js +26 -0
- package/esm2015/lib/dialog/dialog.service.js +146 -0
- package/esm2015/lib/dialog/index.js +5 -0
- package/esm2015/lib/drawer/drawer-container.component.js +73 -0
- package/esm2015/lib/drawer/drawer-content.component.js +27 -0
- package/esm2015/lib/drawer/drawer.component.js +145 -0
- package/esm2015/lib/drawer/drawer.module.js +23 -0
- package/esm2015/lib/drawer/index.js +5 -0
- package/esm2015/lib/dropdown/dropdown-base.class.js +98 -0
- package/esm2015/lib/dropdown/dropdown-panel.component.js +84 -0
- package/esm2015/lib/dropdown/dropdown.component.js +32 -0
- package/esm2015/lib/dropdown/dropdown.module.js +25 -0
- package/esm2015/lib/dropdown/index.js +4 -0
- package/esm2015/lib/form/form-field.component.js +20 -0
- package/esm2015/lib/form/form-field.module.js +21 -0
- package/esm2015/lib/form/form-hint.component.js +20 -0
- package/esm2015/lib/form/form.component.js +51 -0
- package/esm2015/lib/form/index.js +5 -0
- package/esm2015/lib/icon/icon.component.js +28 -0
- package/esm2015/lib/icon/icon.module.js +21 -0
- package/esm2015/lib/icon/index.js +3 -0
- package/esm2015/lib/input-mask/index.js +3 -0
- package/esm2015/lib/input-mask/input-mask.component.js +42 -0
- package/esm2015/lib/input-mask/input-mask.module.js +23 -0
- package/esm2015/lib/label/index.js +3 -0
- package/esm2015/lib/label/label.component.js +20 -0
- package/esm2015/lib/label/label.module.js +21 -0
- package/esm2015/lib/loading/index.js +6 -0
- package/esm2015/lib/loading/loading-spinner.component.js +32 -0
- package/esm2015/lib/loading/loading.component.js +54 -0
- package/esm2015/lib/loading/loading.directive.js +67 -0
- package/esm2015/lib/loading/loading.module.js +35 -0
- package/esm2015/lib/loading/loading.service.js +155 -0
- package/esm2015/lib/number-box/index.js +3 -0
- package/esm2015/lib/number-box/number-box.component.js +289 -0
- package/esm2015/lib/number-box/number-box.module.js +32 -0
- package/esm2015/lib/page/base-page.class.js +67 -0
- package/esm2015/lib/page/index.js +5 -0
- package/esm2015/lib/page/page-footer.component.js +28 -0
- package/esm2015/lib/page/page.component.js +33 -0
- package/esm2015/lib/page/page.module.js +18 -0
- package/esm2015/lib/password-box/index.js +3 -0
- package/esm2015/lib/password-box/password-box.component.js +74 -0
- package/esm2015/lib/password-box/password-box.module.js +35 -0
- package/esm2015/lib/popover/index.js +3 -0
- package/esm2015/lib/popover/popover.component.js +220 -0
- package/esm2015/lib/popover/popover.module.js +19 -0
- package/esm2015/lib/popup/index.js +4 -0
- package/esm2015/lib/popup/popup.component.js +105 -0
- package/esm2015/lib/popup/popup.module.js +26 -0
- package/esm2015/lib/popup/popup.service.js +94 -0
- package/esm2015/lib/radio/index.js +3 -0
- package/esm2015/lib/radio/radio.component.js +22 -0
- package/esm2015/lib/radio/radio.module.js +21 -0
- package/esm2015/lib/range-slider/index.js +3 -0
- package/esm2015/lib/range-slider/range-slider.component.js +22 -0
- package/esm2015/lib/range-slider/range-slider.module.js +21 -0
- package/esm2015/lib/selectbox/index.js +3 -0
- package/esm2015/lib/selectbox/selectbox.component.js +201 -0
- package/esm2015/lib/selectbox/selectbox.module.js +25 -0
- package/esm2015/lib/selection-list/index.js +3 -0
- package/esm2015/lib/selection-list/selection-list.component.js +47 -0
- package/esm2015/lib/selection-list/selection-list.module.js +21 -0
- package/esm2015/lib/side-menu/index.js +3 -0
- package/esm2015/lib/side-menu/side-menu.component.js +21 -0
- package/esm2015/lib/side-menu/side-menu.module.js +21 -0
- package/esm2015/lib/switch/index.js +3 -0
- package/esm2015/lib/switch/switch.component.js +30 -0
- package/esm2015/lib/switch/switch.module.js +21 -0
- package/esm2015/lib/tabs/index.js +8 -0
- package/esm2015/lib/tabs/tab-content.directive.js +29 -0
- package/esm2015/lib/tabs/tab-item.component.js +91 -0
- package/esm2015/lib/tabs/tab-strip.component.js +69 -0
- package/esm2015/lib/tabs/tab-view.component.js +45 -0
- package/esm2015/lib/tabs/tab.component.js +58 -0
- package/esm2015/lib/tabs/tabs.class.js +4 -0
- package/esm2015/lib/tabs/tabs.component.js +67 -0
- package/esm2015/lib/tabs/tabs.module.js +25 -0
- package/esm2015/lib/textbox/index.js +3 -0
- package/esm2015/lib/textbox/textbox.component.js +62 -0
- package/esm2015/lib/textbox/textbox.module.js +43 -0
- package/esm2015/lib/time-box/index.js +3 -0
- package/esm2015/lib/time-box/time-box.component.js +134 -0
- package/esm2015/lib/time-box/time-box.module.js +32 -0
- package/esm2015/lib/toast/index.js +5 -0
- package/esm2015/lib/toast/toast.class.js +2 -0
- package/esm2015/lib/toast/toast.component.js +50 -0
- package/esm2015/lib/toast/toast.module.js +22 -0
- package/esm2015/lib/toast/toast.service.js +114 -0
- package/esm2015/lib/tooltip/index.js +4 -0
- package/esm2015/lib/tooltip/tooltip.component.js +45 -0
- package/esm2015/lib/tooltip/tooltip.directive.js +86 -0
- package/esm2015/lib/tooltip/tooltip.module.js +23 -0
- package/esm2015/lib/validation/index.js +3 -0
- package/esm2015/lib/validation/validation-rule.widget.js +113 -0
- package/esm2015/lib/validation/validation.class.js +2 -0
- package/esm2015/lib/validation/validation.module.js +32 -0
- package/esm2015/public-api.js +42 -0
- package/fesm2015/acorex-components.js +6537 -0
- package/fesm2015/acorex-components.js.map +1 -0
- package/lib/alert/alert-button.component.d.ts +13 -0
- package/lib/alert/alert-contnet.component.d.ts +5 -0
- package/lib/alert/alert-footer.component.d.ts +5 -0
- package/lib/alert/alert-suffix.component.d.ts +5 -0
- package/lib/alert/alert-title.component.d.ts +5 -0
- package/lib/alert/alert.component.d.ts +46 -0
- package/lib/alert/alert.module.d.ts +13 -0
- package/{src/lib/alert/index.ts → lib/alert/index.d.ts} +0 -0
- package/lib/avatar/avatar.component.d.ts +20 -0
- package/lib/avatar/avatar.module.d.ts +8 -0
- package/{src/lib/avatar/index.ts → lib/avatar/index.d.ts} +0 -0
- package/lib/badge/badge.component.d.ts +11 -0
- package/lib/badge/badge.module.d.ts +8 -0
- package/lib/badge/index.d.ts +2 -0
- package/lib/base/common.module.d.ts +7 -0
- package/lib/base/custom-cdk-overlay.service.d.ts +19 -0
- package/{src/lib/base/drawing.class.ts → lib/base/drawing.class.d.ts} +1 -12
- package/{src/lib/base/events.class.ts → lib/base/events.class.d.ts} +11 -20
- package/{src/lib/base/index.ts → lib/base/index.d.ts} +0 -0
- package/lib/base/mixin/base-components.class.d.ts +86 -0
- package/lib/base/mixin/button-mixin.class.d.ts +82 -0
- package/lib/base/mixin/clickable-mixin.class.d.ts +43 -0
- package/lib/base/mixin/constratctor.d.ts +4 -0
- package/lib/base/mixin/datalist-component.class.d.ts +55 -0
- package/lib/base/mixin/dropdown-mixin.class.d.ts +48 -0
- package/{src/lib/base/mixin/index.ts → lib/base/mixin/index.d.ts} +1 -1
- package/lib/base/mixin/interactive-mixin.class.d.ts +65 -0
- package/lib/base/mixin/loading-mixin.class.d.ts +47 -0
- package/lib/base/mixin/mixin.class.d.ts +607 -0
- package/lib/base/mixin/selection-component.class.d.ts +56 -0
- package/lib/base/mixin/sizable-mixin.class.d.ts +41 -0
- package/lib/base/mixin/textbox-mixin.class.d.ts +59 -0
- package/lib/base/mixin/value-mixin.class.d.ts +71 -0
- package/lib/base/overlay.service.d.ts +31 -0
- package/lib/base/responsive.directive.d.ts +10 -0
- package/lib/base/styles.class.d.ts +17 -0
- package/lib/button/button-group.component.d.ts +36 -0
- package/{src/lib/button/button-item.class.ts → lib/button/button-item.class.d.ts} +4 -6
- package/lib/button/button-item.component.d.ts +94 -0
- package/lib/button/button.component.d.ts +21 -0
- package/lib/button/button.module.d.ts +12 -0
- package/{src/lib/button/index.ts → lib/button/index.d.ts} +1 -1
- package/lib/calendar/calendar.component.d.ts +56 -0
- package/lib/calendar/calendar.module.d.ts +12 -0
- package/{src/lib/calendar/index.ts → lib/calendar/index.d.ts} +0 -0
- package/lib/carousel/carousel-arrows.component.d.ts +14 -0
- package/lib/carousel/carousel-item.component.d.ts +8 -0
- package/lib/carousel/carousel-pager.component.d.ts +22 -0
- package/lib/carousel/carousel-splidejs.class.d.ts +18 -0
- package/{src/lib/carousel/carousel.class.ts → lib/carousel/carousel.class.d.ts} +13 -32
- package/lib/carousel/carousel.component.d.ts +62 -0
- package/lib/carousel/carousel.module.d.ts +11 -0
- package/{src/lib/carousel/index.ts → lib/carousel/index.d.ts} +0 -0
- package/lib/checkbox/checkbox.component.d.ts +13 -0
- package/lib/checkbox/checkbox.module.d.ts +9 -0
- package/{src/lib/checkbox/index.ts → lib/checkbox/index.d.ts} +1 -1
- package/lib/datalist/datalist.component.d.ts +25 -0
- package/lib/datalist/datalist.module.d.ts +9 -0
- package/{src/lib/datalist/index.ts → lib/datalist/index.d.ts} +0 -0
- package/lib/datepicker/datepicker.component.d.ts +18 -0
- package/lib/datepicker/datepicker.module.d.ts +10 -0
- package/{src/lib/datepicker/index.ts → lib/datepicker/index.d.ts} +0 -0
- package/lib/decorators/content.component.d.ts +8 -0
- package/lib/decorators/decorators.module.d.ts +10 -0
- package/{src/lib/decorators/index.ts → lib/decorators/index.d.ts} +1 -0
- package/lib/decorators/prefix.component.d.ts +8 -0
- package/lib/decorators/suffix.component.d.ts +8 -0
- package/{src/lib/dialog/dialog.class.ts → lib/dialog/dialog.class.d.ts} +1 -2
- package/lib/dialog/dialog.component.d.ts +15 -0
- package/lib/dialog/dialog.module.d.ts +13 -0
- package/lib/dialog/dialog.service.d.ts +36 -0
- package/{src/lib/dialog/index.ts → lib/dialog/index.d.ts} +0 -0
- package/lib/drawer/drawer-container.component.d.ts +13 -0
- package/lib/drawer/drawer-content.component.d.ts +8 -0
- package/lib/drawer/drawer.component.d.ts +30 -0
- package/lib/drawer/drawer.module.d.ts +10 -0
- package/{src/lib/drawer/index.ts → lib/drawer/index.d.ts} +0 -0
- package/lib/dropdown/dropdown-base.class.d.ts +94 -0
- package/lib/dropdown/dropdown-panel.component.d.ts +28 -0
- package/lib/dropdown/dropdown.component.d.ts +13 -0
- package/lib/dropdown/dropdown.module.d.ts +14 -0
- package/{src/lib/dropdown/index.ts → lib/dropdown/index.d.ts} +1 -1
- package/lib/form/form-field.component.d.ts +8 -0
- package/lib/form/form-field.module.d.ts +10 -0
- package/lib/form/form-hint.component.d.ts +8 -0
- package/lib/form/form.component.d.ts +13 -0
- package/{src/lib/form/index.ts → lib/form/index.d.ts} +1 -1
- package/lib/icon/icon.component.d.ts +10 -0
- package/lib/icon/icon.module.d.ts +8 -0
- package/{src/lib/icon/index.ts → lib/icon/index.d.ts} +0 -0
- package/{src/lib/input-mask/index.ts → lib/input-mask/index.d.ts} +0 -0
- package/lib/input-mask/input-mask.component.d.ts +14 -0
- package/lib/input-mask/input-mask.module.d.ts +9 -0
- package/{src/lib/label/index.ts → lib/label/index.d.ts} +1 -1
- package/lib/label/label.component.d.ts +8 -0
- package/lib/label/label.module.d.ts +8 -0
- package/{src/lib/loading/index.ts → lib/loading/index.d.ts} +0 -0
- package/lib/loading/loading-spinner.component.d.ts +5 -0
- package/lib/loading/loading.component.d.ts +19 -0
- package/lib/loading/loading.directive.d.ts +22 -0
- package/lib/loading/loading.module.d.ts +13 -0
- package/lib/loading/loading.service.d.ts +48 -0
- package/{src/lib/number-box/index.ts → lib/number-box/index.d.ts} +0 -0
- package/lib/number-box/number-box.component.d.ts +69 -0
- package/lib/number-box/number-box.module.d.ts +11 -0
- package/lib/page/base-page.class.d.ts +37 -0
- package/{src/lib/page/index.ts → lib/page/index.d.ts} +0 -1
- package/lib/page/page-footer.component.d.ts +7 -0
- package/lib/page/page.component.d.ts +13 -0
- package/lib/page/page.module.d.ts +7 -0
- package/lib/password-box/index.d.ts +2 -0
- package/lib/password-box/password-box.component.d.ts +24 -0
- package/lib/password-box/password-box.module.d.ts +12 -0
- package/{src/lib/popover/index.ts → lib/popover/index.d.ts} +1 -2
- package/lib/popover/popover.component.d.ts +44 -0
- package/lib/popover/popover.module.d.ts +8 -0
- package/{src/lib/popup/index.ts → lib/popup/index.d.ts} +0 -0
- package/lib/popup/popup.component.d.ts +34 -0
- package/lib/popup/popup.module.d.ts +12 -0
- package/lib/popup/popup.service.d.ts +37 -0
- package/lib/radio/index.d.ts +2 -0
- package/lib/radio/radio.component.d.ts +8 -0
- package/lib/radio/radio.module.d.ts +8 -0
- package/{src/lib/range-slider/index.ts → lib/range-slider/index.d.ts} +0 -0
- package/lib/range-slider/range-slider.component.d.ts +8 -0
- package/lib/range-slider/range-slider.module.d.ts +8 -0
- package/{src/lib/selectbox/index.ts → lib/selectbox/index.d.ts} +1 -1
- package/lib/selectbox/selectbox.component.d.ts +29 -0
- package/lib/selectbox/selectbox.module.d.ts +14 -0
- package/{src/lib/selection-list/index.ts → lib/selection-list/index.d.ts} +1 -1
- package/lib/selection-list/selection-list.component.d.ts +10 -0
- package/lib/selection-list/selection-list.module.d.ts +10 -0
- package/{src/lib/side-menu/index.ts → lib/side-menu/index.d.ts} +0 -0
- package/lib/side-menu/side-menu.component.d.ts +8 -0
- package/lib/side-menu/side-menu.module.d.ts +8 -0
- package/{src/lib/switch/index.ts → lib/switch/index.d.ts} +1 -1
- package/lib/switch/switch.component.d.ts +9 -0
- package/lib/switch/switch.module.d.ts +9 -0
- package/{src/lib/tabs/index.ts → lib/tabs/index.d.ts} +3 -1
- package/lib/tabs/tab-content.directive.d.ts +11 -0
- package/lib/tabs/tab-item.component.d.ts +17 -0
- package/lib/tabs/tab-strip.component.d.ts +19 -0
- package/lib/tabs/tab-view.component.d.ts +14 -0
- package/lib/tabs/tab.component.d.ts +18 -0
- package/{src/lib/tabs/tabs.class.ts → lib/tabs/tabs.class.d.ts} +5 -8
- package/lib/tabs/tabs.component.d.ts +17 -0
- package/lib/tabs/tabs.module.d.ts +12 -0
- package/{src/lib/textbox/index.ts → lib/textbox/index.d.ts} +1 -1
- package/lib/textbox/textbox.component.d.ts +19 -0
- package/lib/textbox/textbox.module.d.ts +13 -0
- package/{src/lib/time-box/index.ts → lib/time-box/index.d.ts} +0 -0
- package/lib/time-box/time-box.component.d.ts +29 -0
- package/lib/time-box/time-box.module.d.ts +11 -0
- package/{src/lib/toast/index.ts → lib/toast/index.d.ts} +0 -0
- package/{src/lib/toast/toast.class.ts → lib/toast/toast.class.d.ts} +1 -4
- package/lib/toast/toast.component.d.ts +16 -0
- package/lib/toast/toast.module.d.ts +9 -0
- package/lib/toast/toast.service.d.ts +18 -0
- package/{src/lib/tooltip/index.ts → lib/tooltip/index.d.ts} +0 -0
- package/lib/tooltip/tooltip.component.d.ts +10 -0
- package/lib/tooltip/tooltip.directive.d.ts +18 -0
- package/lib/tooltip/tooltip.module.d.ts +10 -0
- package/{src/lib/validation/index.ts → lib/validation/index.d.ts} +1 -1
- package/lib/validation/validation-rule.widget.d.ts +25 -0
- package/lib/validation/validation.class.d.ts +17 -0
- package/lib/validation/validation.module.d.ts +9 -0
- package/package.json +19 -12
- package/{src/public-api.ts → public-api.d.ts} +5 -3
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -11
- package/src/lib/alert/alert-button.component.ts +0 -45
- package/src/lib/alert/alert-contnet.component.ts +0 -14
- package/src/lib/alert/alert-footer.component.ts +0 -16
- package/src/lib/alert/alert-suffix.component.ts +0 -16
- package/src/lib/alert/alert-title.component.ts +0 -14
- package/src/lib/alert/alert.component.html +0 -13
- package/src/lib/alert/alert.component.ts +0 -139
- package/src/lib/alert/alert.module.ts +0 -26
- package/src/lib/avatar/avatar.component.html +0 -2
- package/src/lib/avatar/avatar.component.ts +0 -64
- package/src/lib/avatar/avatar.module.ts +0 -14
- package/src/lib/base/common.module.ts +0 -13
- package/src/lib/base/custom-cdk-overlay.service.ts +0 -83
- package/src/lib/base/mixin/base-components.class.ts +0 -112
- package/src/lib/base/mixin/button-mixin.class.ts +0 -145
- package/src/lib/base/mixin/clickable-mixin.class.ts +0 -33
- package/src/lib/base/mixin/constratctor.ts +0 -3
- package/src/lib/base/mixin/datalist-component.class.ts +0 -105
- package/src/lib/base/mixin/dropdown-mixin.class.ts +0 -55
- package/src/lib/base/mixin/interactive-mixin.class.ts +0 -83
- package/src/lib/base/mixin/loading-mixin.class.ts +0 -32
- package/src/lib/base/mixin/mixin.class.ts +0 -70
- package/src/lib/base/mixin/page-component.class.ts +0 -15
- package/src/lib/base/mixin/selection-component.class.ts +0 -185
- package/src/lib/base/mixin/sizable-mixin.class.ts +0 -30
- package/src/lib/base/mixin/textbox-mixin.class.ts +0 -51
- package/src/lib/base/mixin/value-mixin.class.ts +0 -215
- package/src/lib/base/overlay.service.ts +0 -117
- package/src/lib/base/responsive.directive.ts +0 -31
- package/src/lib/base/styles.class.ts +0 -24
- package/src/lib/button/button-group.component.html +0 -2
- package/src/lib/button/button-group.component.ts +0 -142
- package/src/lib/button/button-item.component.ts +0 -79
- package/src/lib/button/button.component.html +0 -18
- package/src/lib/button/button.component.ts +0 -71
- package/src/lib/button/button.module.ts +0 -23
- package/src/lib/calendar/calendar.component.html +0 -74
- package/src/lib/calendar/calendar.component.ts +0 -60
- package/src/lib/calendar/calendar.module.ts +0 -17
- package/src/lib/carousel/carousel-arrows.component.ts +0 -46
- package/src/lib/carousel/carousel-item.component.ts +0 -19
- package/src/lib/carousel/carousel-pager.component.ts +0 -83
- package/src/lib/carousel/carousel-splidejs.class.ts +0 -104
- package/src/lib/carousel/carousel.component.html +0 -11
- package/src/lib/carousel/carousel.component.ts +0 -273
- package/src/lib/carousel/carousel.module.ts +0 -19
- package/src/lib/checkbox/checkbox.component.html +0 -15
- package/src/lib/checkbox/checkbox.component.ts +0 -43
- package/src/lib/checkbox/checkbox.module.ts +0 -11
- package/src/lib/datalist/datalist.component.html +0 -35
- package/src/lib/datalist/datalist.component.ts +0 -86
- package/src/lib/datalist/datalist.module.ts +0 -17
- package/src/lib/datapager/datapager-base.component.ts +0 -29
- package/src/lib/datapager/datapager-dots-selector.component.ts +0 -0
- package/src/lib/datapager/datapager-info.component.ts +0 -64
- package/src/lib/datapager/datapager-input-selector.component.ts +0 -54
- package/src/lib/datapager/datapager-next-buttons.components.ts +0 -52
- package/src/lib/datapager/datapager-numeric-selector.component.ts +0 -94
- package/src/lib/datapager/datapager-pagesize-dropdown.component.ts +0 -77
- package/src/lib/datapager/datapager-prev-buttons.component.ts +0 -50
- package/src/lib/datapager/datapager.component.html +0 -19
- package/src/lib/datapager/datapager.component.ts +0 -146
- package/src/lib/datapager/datapager.module.ts +0 -32
- package/src/lib/datapager/index.ts +0 -8
- package/src/lib/datepicker/datepicker.component.html +0 -11
- package/src/lib/datepicker/datepicker.component.ts +0 -86
- package/src/lib/datepicker/datepicker.module.ts +0 -16
- package/src/lib/decorators/decorators.module.ts +0 -15
- package/src/lib/decorators/prefix.component.ts +0 -23
- package/src/lib/decorators/suffix.component.ts +0 -25
- package/src/lib/dialog/dialog.component.html +0 -22
- package/src/lib/dialog/dialog.component.ts +0 -48
- package/src/lib/dialog/dialog.module.ts +0 -19
- package/src/lib/dialog/dialog.service.ts +0 -154
- package/src/lib/drawer/drawer-container.component.ts +0 -69
- package/src/lib/drawer/drawer-content.component.ts +0 -24
- package/src/lib/drawer/drawer.component.ts +0 -156
- package/src/lib/drawer/drawer.module.ts +0 -16
- package/src/lib/dropdown/dropdown-base.class.ts +0 -107
- package/src/lib/dropdown/dropdown-panel.component.html +0 -15
- package/src/lib/dropdown/dropdown-panel.component.ts +0 -105
- package/src/lib/dropdown/dropdown.component.html +0 -19
- package/src/lib/dropdown/dropdown.component.ts +0 -31
- package/src/lib/dropdown/dropdown.module.ts +0 -17
- package/src/lib/form/form-field.component.ts +0 -18
- package/src/lib/form/form-field.module.ts +0 -14
- package/src/lib/form/form-hint.component.ts +0 -18
- package/src/lib/form/form.component.ts +0 -54
- package/src/lib/icon/icon.component.ts +0 -27
- package/src/lib/icon/icon.module.ts +0 -14
- package/src/lib/input-mask/input-mask.component.ts +0 -43
- package/src/lib/input-mask/input-mask.module.ts +0 -15
- package/src/lib/label/label.component.html +0 -3
- package/src/lib/label/label.component.ts +0 -16
- package/src/lib/label/label.module.ts +0 -14
- package/src/lib/loading/loading-spinner.component.ts +0 -17
- package/src/lib/loading/loading.component.ts +0 -55
- package/src/lib/loading/loading.directive.ts +0 -86
- package/src/lib/loading/loading.module.ts +0 -32
- package/src/lib/loading/loading.service.ts +0 -172
- package/src/lib/number-box/number-box.component.html +0 -15
- package/src/lib/number-box/number-box.component.ts +0 -297
- package/src/lib/number-box/number-box.module.ts +0 -22
- package/src/lib/page/base-page.class.ts +0 -80
- package/src/lib/page/page-footer.component.ts +0 -19
- package/src/lib/page/page.component.ts +0 -32
- package/src/lib/page/page.module.ts +0 -11
- package/src/lib/popover/popover.component.html +0 -3
- package/src/lib/popover/popover.component.ts +0 -229
- package/src/lib/popover/popover.module.ts +0 -11
- package/src/lib/popup/popup.component.html +0 -25
- package/src/lib/popup/popup.component.ts +0 -118
- package/src/lib/popup/popup.module.ts +0 -19
- package/src/lib/popup/popup.service.ts +0 -112
- package/src/lib/range-slider/range-slider.component.html +0 -1
- package/src/lib/range-slider/range-slider.component.ts +0 -21
- package/src/lib/range-slider/range-slider.module.ts +0 -14
- package/src/lib/selectbox/selectbox.component.html +0 -63
- package/src/lib/selectbox/selectbox.component.ts +0 -211
- package/src/lib/selectbox/selectbox.module.ts +0 -15
- package/src/lib/selection-list/selection-list.component.html +0 -31
- package/src/lib/selection-list/selection-list.component.ts +0 -56
- package/src/lib/selection-list/selection-list.module.ts +0 -13
- package/src/lib/side-menu/side-menu.component.html +0 -2
- package/src/lib/side-menu/side-menu.component.ts +0 -20
- package/src/lib/side-menu/side-menu.module.ts +0 -14
- package/src/lib/switch/switch.component.html +0 -8
- package/src/lib/switch/switch.component.ts +0 -25
- package/src/lib/switch/switch.module.ts +0 -15
- package/src/lib/tabs/tab-strip.component.html +0 -20
- package/src/lib/tabs/tab-strip.component.ts +0 -71
- package/src/lib/tabs/tab-view.component.html +0 -8
- package/src/lib/tabs/tab-view.component.ts +0 -50
- package/src/lib/tabs/tab.component.ts +0 -56
- package/src/lib/tabs/tabs.module.ts +0 -16
- package/src/lib/textbox/textbox.component.html +0 -20
- package/src/lib/textbox/textbox.component.ts +0 -64
- package/src/lib/textbox/textbox.module.ts +0 -24
- package/src/lib/time-box/time-box.component.html +0 -14
- package/src/lib/time-box/time-box.component.ts +0 -145
- package/src/lib/time-box/time-box.module.ts +0 -22
- package/src/lib/toast/toast.component.html +0 -12
- package/src/lib/toast/toast.component.ts +0 -57
- package/src/lib/toast/toast.module.ts +0 -15
- package/src/lib/toast/toast.service.ts +0 -122
- package/src/lib/tooltip/tooltip.component.html +0 -6
- package/src/lib/tooltip/tooltip.component.ts +0 -36
- package/src/lib/tooltip/tooltip.directive.ts +0 -93
- package/src/lib/tooltip/tooltip.module.ts +0 -16
- package/src/lib/validation/validation-rule.widget.ts +0 -120
- package/src/lib/validation/validation.class.ts +0 -23
- package/src/lib/validation/validation.module.ts +0 -26
- package/tsconfig.lib.json +0 -20
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseClickableMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXAlertButtonComponent extends AXBaseClickableMixin {
|
|
5
|
+
title: string;
|
|
6
|
+
icon: string;
|
|
7
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
8
|
+
_handleOnClick(e: any): void;
|
|
9
|
+
_handleOnFocus(e: any): void;
|
|
10
|
+
_handleOnBlur(e: any): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertButtonComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertButtonComponent, "ax-alert-button", never, { "title": "title"; "icon": "icon"; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "selectedChange": "selectedChange"; "toggleableChange": "toggleableChange"; }, never, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXAlertContentComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertContentComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertContentComponent, "ax-alert-content", never, {}, {}, never, ["*"]>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXAlertFooterComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertFooterComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertFooterComponent, "ax-alert-footer", never, {}, {}, never, ["ax-alert-button"]>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXAlertSuffixComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertSuffixComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertSuffixComponent, "ax-alert-suffix", never, {}, {}, never, ["ax-alert-button"]>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { AXBaseComponentMixin, AXStyleColorType } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Regular description
|
|
6
|
+
*
|
|
7
|
+
* @category Components
|
|
8
|
+
*/
|
|
9
|
+
export declare class AXAlertComponent extends AXBaseComponentMixin {
|
|
10
|
+
#private;
|
|
11
|
+
icon: string;
|
|
12
|
+
typeChange: EventEmitter<AXStyleColorType>;
|
|
13
|
+
private _color;
|
|
14
|
+
/**
|
|
15
|
+
* The Alert allows you to set different types of alerts
|
|
16
|
+
*/
|
|
17
|
+
get color(): AXStyleColorType;
|
|
18
|
+
set color(v: AXStyleColorType);
|
|
19
|
+
get hostClass(): string;
|
|
20
|
+
timeOut: number;
|
|
21
|
+
/**
|
|
22
|
+
* set the visibility of the Alert
|
|
23
|
+
*/
|
|
24
|
+
get visible(): boolean;
|
|
25
|
+
set visible(v: boolean);
|
|
26
|
+
/**
|
|
27
|
+
* @ignore
|
|
28
|
+
*/
|
|
29
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
30
|
+
onInit(): void;
|
|
31
|
+
onViewInit(): void;
|
|
32
|
+
/**
|
|
33
|
+
* Remove the alert from the container
|
|
34
|
+
*/
|
|
35
|
+
dismiss(): void;
|
|
36
|
+
/**
|
|
37
|
+
* Hide the alert
|
|
38
|
+
*/
|
|
39
|
+
hide(): void;
|
|
40
|
+
/**
|
|
41
|
+
* Show the alert
|
|
42
|
+
*/
|
|
43
|
+
show(): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertComponent, "ax-alert", never, { "icon": "icon"; "color": "color"; "timeOut": "timeOut"; "visible": "visible"; }, { "typeChange": "typeChange"; }, never, ["ax-alert-title", "ax-alert-content", "ax-alert-footer", "ax-alert-suffix"]>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./alert.component";
|
|
3
|
+
import * as i2 from "./alert-contnet.component";
|
|
4
|
+
import * as i3 from "./alert-title.component";
|
|
5
|
+
import * as i4 from "./alert-button.component";
|
|
6
|
+
import * as i5 from "./alert-footer.component";
|
|
7
|
+
import * as i6 from "./alert-suffix.component";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
export declare class AXAlertModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXAlertModule, [typeof i1.AXAlertComponent, typeof i2.AXAlertContentComponent, typeof i3.AXAlertTitleComponent, typeof i4.AXAlertButtonComponent, typeof i5.AXAlertFooterComponent, typeof i6.AXAlertSuffixComponent], [typeof i7.CommonModule], [typeof i1.AXAlertComponent, typeof i2.AXAlertContentComponent, typeof i3.AXAlertTitleComponent, typeof i4.AXAlertButtonComponent, typeof i5.AXAlertFooterComponent, typeof i6.AXAlertSuffixComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXAlertModule>;
|
|
13
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXSizableComponentMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXAvatarComponent extends AXSizableComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
private _image;
|
|
7
|
+
get image(): string;
|
|
8
|
+
set image(v: string);
|
|
9
|
+
private _title;
|
|
10
|
+
get title(): string;
|
|
11
|
+
set title(v: string);
|
|
12
|
+
private _icon;
|
|
13
|
+
get icon(): string;
|
|
14
|
+
set icon(v: string);
|
|
15
|
+
private _abbr;
|
|
16
|
+
get abbr(): string;
|
|
17
|
+
set abbr(v: string);
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAvatarComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAvatarComponent, "ax-avatar", never, { "rtl": "rtl"; "cssClass": "cssClass"; "cssStyle": "cssStyle"; "size": "size"; "image": "image"; "title": "title"; "icon": "icon"; "abbr": "abbr"; }, {}, never, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./avatar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class AXAvatarModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXAvatarModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXAvatarModule, [typeof i1.AXAvatarComponent], [typeof i2.CommonModule], [typeof i1.AXAvatarComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXAvatarModule>;
|
|
8
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponentMixin, AXStyleColorType } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXBadgeComponent extends AXBaseComponentMixin {
|
|
5
|
+
text: string;
|
|
6
|
+
color: AXStyleColorType;
|
|
7
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
8
|
+
private get __hostClass();
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXBadgeComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXBadgeComponent, "ax-badge", never, { "text": "text"; "color": "color"; }, {}, never, ["ax-prefix", "ax-suffix"]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./badge.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class AXBadgeModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXBadgeModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXBadgeModule, [typeof i1.AXBadgeComponent], [typeof i2.CommonModule], [typeof i1.AXBadgeComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXBadgeModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./responsive.directive";
|
|
3
|
+
export declare class AXCommonModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXCommonModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCommonModule, [typeof i1.AXResponsiveDirective], never, [typeof i1.AXResponsiveDirective]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXCommonModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Overlay, OverlayKeyboardDispatcher, OverlayPositionBuilder, ScrollStrategyOptions, OverlayContainer, OverlayRef, OverlayConfig, OverlayOutsideClickDispatcher } from '@angular/cdk/overlay';
|
|
2
|
+
import { ComponentFactoryResolver, Injector, NgZone, RendererFactory2 } from '@angular/core';
|
|
3
|
+
import { Directionality } from '@angular/cdk/bidi';
|
|
4
|
+
import { Location } from '@angular/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DynamicOverlayContainer extends OverlayContainer {
|
|
7
|
+
setContainerElement(containerElement: HTMLElement): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicOverlayContainer, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicOverlayContainer>;
|
|
10
|
+
}
|
|
11
|
+
export declare class DynamicOverlay extends Overlay {
|
|
12
|
+
private readonly _dynamicOverlayContainer;
|
|
13
|
+
private renderer;
|
|
14
|
+
constructor(scrollStrategies: ScrollStrategyOptions, _overlayContainer: DynamicOverlayContainer, _componentFactoryResolver: ComponentFactoryResolver, _positionBuilder: OverlayPositionBuilder, _keyboardDispatcher: OverlayKeyboardDispatcher, _injector: Injector, _ngZone: NgZone, _document: any, _directionality: Directionality, rendererFactory: RendererFactory2, _location: Location, _outsideClickDispatcher: OverlayOutsideClickDispatcher);
|
|
15
|
+
private setContainerElement;
|
|
16
|
+
createOn(containerElement: HTMLElement, config?: OverlayConfig): OverlayRef;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicOverlay, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicOverlay>;
|
|
19
|
+
}
|
|
@@ -1,14 +1,3 @@
|
|
|
1
|
-
// export type AXPlacement =
|
|
2
|
-
// | 'top-start'
|
|
3
|
-
// | 'top-middle'
|
|
4
|
-
// | 'top-end'
|
|
5
|
-
// | 'center-start'
|
|
6
|
-
// | 'center-end'
|
|
7
|
-
// | 'bottom-start'
|
|
8
|
-
// | 'bottom-middle'
|
|
9
|
-
// | 'bottom-end';
|
|
10
|
-
|
|
11
|
-
|
|
12
1
|
export interface AXConnectedPosition {
|
|
13
2
|
originX: 'start' | 'center' | 'end';
|
|
14
3
|
originY: 'top' | 'center' | 'bottom';
|
|
@@ -17,4 +6,4 @@ export interface AXConnectedPosition {
|
|
|
17
6
|
weight?: number;
|
|
18
7
|
offsetX?: number;
|
|
19
8
|
offsetY?: number;
|
|
20
|
-
}
|
|
9
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Contains native event
|
|
3
3
|
* @category Events
|
|
4
4
|
*/
|
|
5
|
-
export class AXEvent {
|
|
5
|
+
export declare class AXEvent {
|
|
6
6
|
/**
|
|
7
7
|
* The sender component
|
|
8
8
|
*/
|
|
@@ -12,70 +12,61 @@ export class AXEvent {
|
|
|
12
12
|
*/
|
|
13
13
|
htmlElement?: HTMLElement;
|
|
14
14
|
}
|
|
15
|
-
|
|
16
15
|
/**
|
|
17
16
|
* Contains native event
|
|
18
17
|
* @category Events
|
|
19
18
|
*/
|
|
20
|
-
export class AXHtmlEvent<E extends Event> extends AXEvent {
|
|
19
|
+
export declare class AXHtmlEvent<E extends Event> extends AXEvent {
|
|
21
20
|
nativeEvent?: E;
|
|
22
21
|
}
|
|
23
|
-
|
|
24
22
|
/**
|
|
25
23
|
* Contains native event
|
|
26
24
|
* @category Events
|
|
27
25
|
*/
|
|
28
|
-
export class AXValueChangedEvent<T> extends AXEvent {
|
|
26
|
+
export declare class AXValueChangedEvent<T> extends AXEvent {
|
|
29
27
|
name?: T;
|
|
30
28
|
value?: T;
|
|
31
29
|
oldValue?: T;
|
|
32
30
|
isTriggred?: boolean;
|
|
33
31
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
32
|
/**
|
|
37
33
|
* Fires each time the user click the element.
|
|
38
34
|
* @category Events
|
|
39
35
|
*/
|
|
40
|
-
export class AXClickEvent extends AXHtmlEvent<MouseEvent> {
|
|
36
|
+
export declare class AXClickEvent extends AXHtmlEvent<MouseEvent> {
|
|
41
37
|
/**
|
|
42
38
|
* uses for extra data
|
|
43
39
|
*/
|
|
44
|
-
data?: any
|
|
40
|
+
data?: any;
|
|
45
41
|
}
|
|
46
|
-
|
|
47
42
|
/**
|
|
48
43
|
* Fires each time the user click the element.
|
|
49
44
|
* @category Events
|
|
50
45
|
*/
|
|
51
|
-
export class AXButtonClickEvent extends AXClickEvent {
|
|
46
|
+
export declare class AXButtonClickEvent extends AXClickEvent {
|
|
52
47
|
name: string;
|
|
53
48
|
}
|
|
54
|
-
|
|
55
49
|
/**
|
|
56
50
|
* Fires each time the user click the element.
|
|
57
51
|
* @category Events
|
|
58
52
|
*/
|
|
59
|
-
export class AXItemClickEvent<T> extends AXEvent {
|
|
53
|
+
export declare class AXItemClickEvent<T> extends AXEvent {
|
|
60
54
|
item: T;
|
|
61
55
|
}
|
|
62
|
-
|
|
63
56
|
/**
|
|
64
57
|
* Fires each time the component gets focused.
|
|
65
58
|
* @category Events
|
|
66
59
|
*/
|
|
67
|
-
export class AXFocusEvent extends AXHtmlEvent<FocusEvent> {
|
|
60
|
+
export declare class AXFocusEvent extends AXHtmlEvent<FocusEvent> {
|
|
68
61
|
}
|
|
69
|
-
|
|
70
|
-
|
|
71
62
|
/**
|
|
72
63
|
* Fires each time an item or multiple items selected by the user or value.
|
|
73
64
|
* @category Events
|
|
74
65
|
*/
|
|
75
|
-
export class AXSelectionValueChangedEvent extends AXValueChangedEvent<any | any[]> {
|
|
66
|
+
export declare class AXSelectionValueChangedEvent extends AXValueChangedEvent<any | any[]> {
|
|
76
67
|
value?: any;
|
|
77
68
|
oldValue?: any;
|
|
78
|
-
isUserInput: boolean
|
|
69
|
+
isUserInput: boolean;
|
|
79
70
|
selectedKeys?: any[];
|
|
80
71
|
selectedItems?: any[];
|
|
81
|
-
}
|
|
72
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from "@angular/core";
|
|
2
|
+
import { ElementRef } from "@angular/core";
|
|
3
|
+
import { Constructor } from "./constratctor";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* A token that specifies the size of component.
|
|
7
|
+
*/
|
|
8
|
+
export declare type AXElementSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
9
|
+
export declare class AXBaseComponent {
|
|
10
|
+
#private;
|
|
11
|
+
id: string;
|
|
12
|
+
/**
|
|
13
|
+
* A token that specifies the layout direction of component.
|
|
14
|
+
*/
|
|
15
|
+
rtl: boolean;
|
|
16
|
+
cssClass: string;
|
|
17
|
+
cssStyle: string;
|
|
18
|
+
_cdr: ChangeDetectorRef;
|
|
19
|
+
_isInited: boolean;
|
|
20
|
+
_isRendered: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* @ignore
|
|
23
|
+
*/
|
|
24
|
+
constructor(...args: any[]);
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
ngAfterViewInit(): void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
29
|
+
_getInnerElement<T = HTMLElement>(): T;
|
|
30
|
+
_onInternalInit(): void;
|
|
31
|
+
_onInternalViewInit(): void;
|
|
32
|
+
_onInternalDestroy(): void;
|
|
33
|
+
onInit(): void;
|
|
34
|
+
onRenderCssClass(): void;
|
|
35
|
+
onViewInit(): void;
|
|
36
|
+
onDestroy(): void;
|
|
37
|
+
onOptionChanging(option: {
|
|
38
|
+
name: string;
|
|
39
|
+
value?: any;
|
|
40
|
+
}): any;
|
|
41
|
+
onOptionChanged(option: {
|
|
42
|
+
name: string;
|
|
43
|
+
oldValue?: any;
|
|
44
|
+
newValue?: any;
|
|
45
|
+
}): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXBaseComponent, never>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXBaseComponent>;
|
|
48
|
+
}
|
|
49
|
+
export declare function _BaseComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
|
50
|
+
new (...args: any[]): {
|
|
51
|
+
id: string;
|
|
52
|
+
/**
|
|
53
|
+
* A token that specifies the layout direction of component.
|
|
54
|
+
*/
|
|
55
|
+
rtl: boolean;
|
|
56
|
+
cssClass: string;
|
|
57
|
+
cssStyle: string;
|
|
58
|
+
"__#1@#elementRef": ElementRef<any>;
|
|
59
|
+
_cdr: ChangeDetectorRef;
|
|
60
|
+
_isInited: boolean;
|
|
61
|
+
_isRendered: boolean;
|
|
62
|
+
ngOnInit(): void;
|
|
63
|
+
ngAfterViewInit(): void;
|
|
64
|
+
ngOnDestroy(): void;
|
|
65
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
66
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
67
|
+
_onInternalInit(): void;
|
|
68
|
+
_onInternalViewInit(): void;
|
|
69
|
+
_onInternalDestroy(): void;
|
|
70
|
+
onInit(): void;
|
|
71
|
+
onRenderCssClass(): void;
|
|
72
|
+
onViewInit(): void;
|
|
73
|
+
onDestroy(): void;
|
|
74
|
+
onOptionChanging(option: {
|
|
75
|
+
name: string;
|
|
76
|
+
value?: any;
|
|
77
|
+
}): any;
|
|
78
|
+
onOptionChanged(option: {
|
|
79
|
+
name: string;
|
|
80
|
+
oldValue?: any;
|
|
81
|
+
newValue?: any;
|
|
82
|
+
}): void;
|
|
83
|
+
};
|
|
84
|
+
} & TBase;
|
|
85
|
+
export declare const BASE_INPUTS: string[];
|
|
86
|
+
export declare const BASE_OUTPUT: any[];
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AXStyleColorType, AXStyleButtonLook } from '../styles.class';
|
|
3
|
+
import { AXBaseComponent } from './base-components.class';
|
|
4
|
+
import { Constructor } from './constratctor';
|
|
5
|
+
export declare function _ButtonComponentMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
|
6
|
+
new (...args: any[]): {
|
|
7
|
+
/**
|
|
8
|
+
* Defines the primary text to show inside the button.
|
|
9
|
+
*/
|
|
10
|
+
text: string;
|
|
11
|
+
/**
|
|
12
|
+
* Trigger click event by Enter Key
|
|
13
|
+
*/
|
|
14
|
+
submitBehavior: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Trigger click event by Esc Key
|
|
17
|
+
*/
|
|
18
|
+
cancelBehavior: boolean;
|
|
19
|
+
colorChange: EventEmitter<AXStyleColorType>;
|
|
20
|
+
"__#2@#color": AXStyleColorType;
|
|
21
|
+
/**
|
|
22
|
+
* Predefined color schemes
|
|
23
|
+
*/
|
|
24
|
+
color: AXStyleColorType;
|
|
25
|
+
lookChange: EventEmitter<AXStyleButtonLook>;
|
|
26
|
+
"__#2@#look"?: AXStyleButtonLook;
|
|
27
|
+
/**
|
|
28
|
+
* Predefined look schemes
|
|
29
|
+
*/
|
|
30
|
+
look: AXStyleButtonLook;
|
|
31
|
+
toggleableChange: EventEmitter<boolean>;
|
|
32
|
+
"__#2@#toggleable"?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Provides visual styling that indicates if the Button is active
|
|
35
|
+
*/
|
|
36
|
+
toggleable: boolean;
|
|
37
|
+
selectedChange: EventEmitter<boolean>;
|
|
38
|
+
"__#2@#selected"?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Indicates if the Button is selected or not
|
|
41
|
+
*/
|
|
42
|
+
selected: boolean;
|
|
43
|
+
_onInternalViewInit(): void;
|
|
44
|
+
_onInternalDestroy(): void;
|
|
45
|
+
readonly _classes: {
|
|
46
|
+
'ax-button-icon': boolean;
|
|
47
|
+
'ax-state-disabled': any;
|
|
48
|
+
'ax-state-selected': boolean;
|
|
49
|
+
};
|
|
50
|
+
id: string;
|
|
51
|
+
rtl: boolean;
|
|
52
|
+
cssClass: string;
|
|
53
|
+
cssStyle: string;
|
|
54
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>; /**
|
|
55
|
+
* Trigger click event by Esc Key
|
|
56
|
+
*/
|
|
57
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
58
|
+
_isInited: boolean;
|
|
59
|
+
_isRendered: boolean;
|
|
60
|
+
ngOnInit(): void;
|
|
61
|
+
ngAfterViewInit(): void;
|
|
62
|
+
ngOnDestroy(): void;
|
|
63
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
64
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
65
|
+
_onInternalInit(): void;
|
|
66
|
+
onInit(): void;
|
|
67
|
+
onRenderCssClass(): void;
|
|
68
|
+
onViewInit(): void;
|
|
69
|
+
onDestroy(): void;
|
|
70
|
+
onOptionChanging(option: {
|
|
71
|
+
name: string;
|
|
72
|
+
value?: any;
|
|
73
|
+
}): any;
|
|
74
|
+
onOptionChanged(option: {
|
|
75
|
+
name: string;
|
|
76
|
+
oldValue?: any;
|
|
77
|
+
newValue?: any;
|
|
78
|
+
}): void;
|
|
79
|
+
};
|
|
80
|
+
} & TBase;
|
|
81
|
+
export declare const BUTTON_INPUTS: string[];
|
|
82
|
+
export declare const BUTTON_OUTPUT: string[];
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { AXBaseComponent } from "./base-components.class";
|
|
3
|
+
import { Constructor } from "./constratctor";
|
|
4
|
+
import { AXClickEvent } from "../events.class";
|
|
5
|
+
export declare function _ClickableComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
|
6
|
+
new (...args: any[]): {
|
|
7
|
+
/**
|
|
8
|
+
* Fires each time the user clicks the button.
|
|
9
|
+
* @event
|
|
10
|
+
*/
|
|
11
|
+
onClick: EventEmitter<AXClickEvent>;
|
|
12
|
+
_emitOnClickEvent(e: MouseEvent): void;
|
|
13
|
+
id: string;
|
|
14
|
+
rtl: boolean;
|
|
15
|
+
cssClass: string;
|
|
16
|
+
cssStyle: string;
|
|
17
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
18
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
19
|
+
_isInited: boolean;
|
|
20
|
+
_isRendered: boolean;
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngAfterViewInit(): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
25
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
26
|
+
_onInternalInit(): void;
|
|
27
|
+
_onInternalViewInit(): void;
|
|
28
|
+
_onInternalDestroy(): void;
|
|
29
|
+
onInit(): void;
|
|
30
|
+
onRenderCssClass(): void;
|
|
31
|
+
onViewInit(): void;
|
|
32
|
+
onDestroy(): void;
|
|
33
|
+
onOptionChanging(option: {
|
|
34
|
+
name: string;
|
|
35
|
+
value?: any;
|
|
36
|
+
}): any;
|
|
37
|
+
onOptionChanged(option: {
|
|
38
|
+
name: string;
|
|
39
|
+
oldValue?: any;
|
|
40
|
+
newValue?: any;
|
|
41
|
+
}): void;
|
|
42
|
+
};
|
|
43
|
+
} & TBase;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { AXBaseComponent } from './base-components.class';
|
|
2
|
+
import { Constructor } from './constratctor';
|
|
3
|
+
export declare function _DatalistComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): {
|
|
4
|
+
new (...args: any[]): {
|
|
5
|
+
valueField: string;
|
|
6
|
+
textField: string | string[];
|
|
7
|
+
groupValueField: string;
|
|
8
|
+
groupTextField: string | string[];
|
|
9
|
+
pageSize: number;
|
|
10
|
+
"__#3@#currentPage": number;
|
|
11
|
+
"__#3@#isLoading": boolean;
|
|
12
|
+
"__#3@#loadedItems": any[];
|
|
13
|
+
"__#3@#totalItems": number;
|
|
14
|
+
"__#3@#isLazy": boolean;
|
|
15
|
+
readonly totalCount: number;
|
|
16
|
+
readonly loadedCount: number;
|
|
17
|
+
"__#3@#items": any;
|
|
18
|
+
items: any;
|
|
19
|
+
readonly displayItems: any;
|
|
20
|
+
readonly isLoading: boolean;
|
|
21
|
+
_fetchData(): void;
|
|
22
|
+
_onInternalInit(): void;
|
|
23
|
+
_onDataLoaded(): void;
|
|
24
|
+
_getItemDisplayTextTemplte(item: any): any;
|
|
25
|
+
_trackByFunction(item: any): any;
|
|
26
|
+
id: string;
|
|
27
|
+
rtl: boolean;
|
|
28
|
+
cssClass: string;
|
|
29
|
+
cssStyle: string;
|
|
30
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
31
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
32
|
+
_isInited: boolean;
|
|
33
|
+
_isRendered: boolean;
|
|
34
|
+
ngOnInit(): void;
|
|
35
|
+
ngAfterViewInit(): void;
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
38
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
39
|
+
_onInternalViewInit(): void;
|
|
40
|
+
_onInternalDestroy(): void;
|
|
41
|
+
onInit(): void;
|
|
42
|
+
onRenderCssClass(): void;
|
|
43
|
+
onViewInit(): void;
|
|
44
|
+
onDestroy(): void;
|
|
45
|
+
onOptionChanging(option: {
|
|
46
|
+
name: string;
|
|
47
|
+
value?: any;
|
|
48
|
+
}): any;
|
|
49
|
+
onOptionChanged(option: {
|
|
50
|
+
name: string;
|
|
51
|
+
oldValue?: any;
|
|
52
|
+
newValue?: any;
|
|
53
|
+
}): void;
|
|
54
|
+
};
|
|
55
|
+
} & TBase;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { AXBaseComponent } from "./base-components.class";
|
|
3
|
+
import { Constructor } from "./constratctor";
|
|
4
|
+
import { AXEvent } from "../events.class";
|
|
5
|
+
export interface DropdownComponentInterface {
|
|
6
|
+
open(): void;
|
|
7
|
+
close(): void;
|
|
8
|
+
toggle(): void;
|
|
9
|
+
isOpen: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare function _DropdownComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): (abstract new (...args: any[]) => {
|
|
12
|
+
"__#4@#readonly": boolean;
|
|
13
|
+
readonly: any;
|
|
14
|
+
fitParent: boolean;
|
|
15
|
+
onOpened: EventEmitter<AXEvent>;
|
|
16
|
+
onClosed: EventEmitter<AXEvent>;
|
|
17
|
+
_emitOnOpenedEvent(): void;
|
|
18
|
+
_emitOnClosedEvent(): void;
|
|
19
|
+
id: string;
|
|
20
|
+
rtl: boolean;
|
|
21
|
+
cssClass: string;
|
|
22
|
+
cssStyle: string;
|
|
23
|
+
"__#1@#elementRef": import("@angular/core").ElementRef<any>;
|
|
24
|
+
_cdr: import("@angular/core").ChangeDetectorRef;
|
|
25
|
+
_isInited: boolean;
|
|
26
|
+
_isRendered: boolean;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
ngAfterViewInit(): void;
|
|
29
|
+
ngOnDestroy(): void;
|
|
30
|
+
_getHostElement<T = HTMLElement>(): T;
|
|
31
|
+
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
|
32
|
+
_onInternalInit(): void;
|
|
33
|
+
_onInternalViewInit(): void;
|
|
34
|
+
_onInternalDestroy(): void;
|
|
35
|
+
onInit(): void;
|
|
36
|
+
onRenderCssClass(): void;
|
|
37
|
+
onViewInit(): void;
|
|
38
|
+
onDestroy(): void;
|
|
39
|
+
onOptionChanging(option: {
|
|
40
|
+
name: string;
|
|
41
|
+
value?: any;
|
|
42
|
+
}): any;
|
|
43
|
+
onOptionChanged(option: {
|
|
44
|
+
name: string;
|
|
45
|
+
oldValue?: any;
|
|
46
|
+
newValue?: any;
|
|
47
|
+
}): void;
|
|
48
|
+
}) & TBase;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './base-components.class';
|
|
2
|
-
export * from './mixin.class';
|
|
2
|
+
export * from './mixin.class';
|