@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
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Component,
|
|
3
|
-
ViewEncapsulation,
|
|
4
|
-
ChangeDetectionStrategy,
|
|
5
|
-
ElementRef,
|
|
6
|
-
ChangeDetectorRef,
|
|
7
|
-
} from '@angular/core';
|
|
8
|
-
import { AXBaseTextBoxMixin } from '../base/mixin/mixin.class';
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
TEXTBOX_INPUTS,
|
|
12
|
-
TEXTBOX_OUTPUT,
|
|
13
|
-
} from '../base/mixin/textbox-mixin.class';
|
|
14
|
-
@Component({
|
|
15
|
-
selector: 'ax-date-picker',
|
|
16
|
-
templateUrl: './datepicker.component.html',
|
|
17
|
-
inputs: [
|
|
18
|
-
'disabled',
|
|
19
|
-
'readonly',
|
|
20
|
-
'tabIndex',
|
|
21
|
-
'cssClass',
|
|
22
|
-
'size',
|
|
23
|
-
...TEXTBOX_INPUTS,
|
|
24
|
-
],
|
|
25
|
-
outputs: [
|
|
26
|
-
'valueChange',
|
|
27
|
-
'onValueChanged',
|
|
28
|
-
'onBlur',
|
|
29
|
-
'onFocus',
|
|
30
|
-
...TEXTBOX_OUTPUT,
|
|
31
|
-
],
|
|
32
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
33
|
-
encapsulation: ViewEncapsulation.None,
|
|
34
|
-
})
|
|
35
|
-
export class AXDatepickerComponent extends AXBaseTextBoxMixin {
|
|
36
|
-
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef) {
|
|
37
|
-
super(elementRef, cdr);
|
|
38
|
-
this.createYears();
|
|
39
|
-
}
|
|
40
|
-
dayItems: number[] = new Array(32);
|
|
41
|
-
yearItems: number[] = [1990];
|
|
42
|
-
monthItems: string[] = [
|
|
43
|
-
'January',
|
|
44
|
-
'February',
|
|
45
|
-
'March',
|
|
46
|
-
'April',
|
|
47
|
-
'May',
|
|
48
|
-
'June',
|
|
49
|
-
'July',
|
|
50
|
-
'August',
|
|
51
|
-
'September',
|
|
52
|
-
'October',
|
|
53
|
-
'November',
|
|
54
|
-
'December',
|
|
55
|
-
];
|
|
56
|
-
|
|
57
|
-
_showDays: boolean = true;
|
|
58
|
-
_showsMonths: boolean = false;
|
|
59
|
-
_showYears: boolean = false;
|
|
60
|
-
|
|
61
|
-
showMonths() {
|
|
62
|
-
this._showDays = false;
|
|
63
|
-
this._showYears = false;
|
|
64
|
-
this._showsMonths = true;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
showYears() {
|
|
68
|
-
this._showsMonths = false;
|
|
69
|
-
this._showDays = false;
|
|
70
|
-
this._showYears = true;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
showDays() {
|
|
74
|
-
this._showYears = false;
|
|
75
|
-
this._showsMonths = false;
|
|
76
|
-
this._showDays = true;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
createYears() {
|
|
80
|
-
let number = 1990;
|
|
81
|
-
for (let i = 0; i < 40; i++) {
|
|
82
|
-
number = number + 1;
|
|
83
|
-
this.yearItems.push(number);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { AXDatepickerComponent } from './datepicker.component';
|
|
4
|
-
import { AXCalendarModule } from '../calendar';
|
|
5
|
-
import { AXDropdownModule } from '../dropdown';
|
|
6
|
-
|
|
7
|
-
const COMPONENT = [AXDatepickerComponent];
|
|
8
|
-
const MODULES = [CommonModule, AXCalendarModule, AXDropdownModule];
|
|
9
|
-
|
|
10
|
-
@NgModule({
|
|
11
|
-
declarations: [...COMPONENT],
|
|
12
|
-
imports: [...MODULES],
|
|
13
|
-
exports: [...COMPONENT],
|
|
14
|
-
providers: [],
|
|
15
|
-
})
|
|
16
|
-
export class AXDatepickerModule { }
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { AXDecoratorPrefixComponent } from './prefix.component';
|
|
4
|
-
import { AXDecoratorSuffixComponent } from './suffix.component';
|
|
5
|
-
|
|
6
|
-
const COMPONENT = [AXDecoratorPrefixComponent, AXDecoratorSuffixComponent];
|
|
7
|
-
const MODULES = [CommonModule];
|
|
8
|
-
|
|
9
|
-
@NgModule({
|
|
10
|
-
declarations: [...COMPONENT],
|
|
11
|
-
imports: [...MODULES],
|
|
12
|
-
exports: [...COMPONENT],
|
|
13
|
-
providers: [],
|
|
14
|
-
})
|
|
15
|
-
export class AXEditorDecoratorModule { }
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'ax-prefix',
|
|
6
|
-
template: `
|
|
7
|
-
<ng-content select="ax-button,ax-loading,ax-icon">
|
|
8
|
-
</ng-content>
|
|
9
|
-
`,
|
|
10
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
11
|
-
encapsulation: ViewEncapsulation.None,
|
|
12
|
-
host: { class: 'ax-prefix' }
|
|
13
|
-
})
|
|
14
|
-
export class AXDecoratorPrefixComponent extends AXBaseComponentMixin {
|
|
15
|
-
|
|
16
|
-
constructor(
|
|
17
|
-
elementRef: ElementRef,
|
|
18
|
-
cdr: ChangeDetectorRef
|
|
19
|
-
) {
|
|
20
|
-
super(elementRef, cdr);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'ax-suffix',
|
|
6
|
-
template: `
|
|
7
|
-
<ng-content select="ax-button">
|
|
8
|
-
</ng-content>
|
|
9
|
-
<ng-content select="ax-icon">
|
|
10
|
-
</ng-content>
|
|
11
|
-
`,
|
|
12
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
13
|
-
encapsulation: ViewEncapsulation.None,
|
|
14
|
-
host: { class: 'ax-suffix' }
|
|
15
|
-
})
|
|
16
|
-
export class AXDecoratorSuffixComponent extends AXBaseComponentMixin {
|
|
17
|
-
|
|
18
|
-
constructor(
|
|
19
|
-
elementRef: ElementRef,
|
|
20
|
-
cdr: ChangeDetectorRef
|
|
21
|
-
) {
|
|
22
|
-
super(elementRef, cdr);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<div class="ax-popup-wrapper" aria-modal="true" cdkTrapFocus>
|
|
2
|
-
<div class="ax-dialog ax-{{options.type}}" tabindex="0" cdkDrag role="alert" cdkDragHandle>
|
|
3
|
-
<div class="ax-dialog-icon-side">
|
|
4
|
-
<i class="ax-dialog-icon {{_icon}}"></i>
|
|
5
|
-
</div>
|
|
6
|
-
<div class="ax-dialog-content-side">
|
|
7
|
-
<div class="ax-dialog-title">{{options.title}}</div>
|
|
8
|
-
<div class="ax-dialog-content">{{options.content}}</div>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="ax-dialog-dismiss-icon">
|
|
11
|
-
<i class="ax-ic ax-ic-close" *ngIf="options.dismissible" (click)="close()"></i>
|
|
12
|
-
</div>
|
|
13
|
-
|
|
14
|
-
<footer class="ax-dialog-footer">
|
|
15
|
-
<ng-container *ngFor="let button of options.buttons">
|
|
16
|
-
<ax-button [text]="button.text" [submitBehavior]="button.submitBehavior" [cancelBehavior]="button.cancelBehavior" (onClick)="_handleButtonClick(button)" [class]="button.cssClass" [look]="button.look" [color]="button.color"></ax-button>
|
|
17
|
-
<div class="ax-ml-2"></div>
|
|
18
|
-
</ng-container>
|
|
19
|
-
</footer>
|
|
20
|
-
</div>
|
|
21
|
-
|
|
22
|
-
</div>
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
import { AXButtonItem } from '../button';
|
|
4
|
-
import { AXDialogOptions } from './dialog.class';
|
|
5
|
-
|
|
6
|
-
@Component({
|
|
7
|
-
selector: 'ax-dialog',
|
|
8
|
-
templateUrl: './dialog.component.html',
|
|
9
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
10
|
-
encapsulation: ViewEncapsulation.None
|
|
11
|
-
})
|
|
12
|
-
export class AXDialogComponent extends AXBaseComponentMixin {
|
|
13
|
-
|
|
14
|
-
constructor(
|
|
15
|
-
elementRef: ElementRef,
|
|
16
|
-
cdr: ChangeDetectorRef
|
|
17
|
-
) {
|
|
18
|
-
super(elementRef, cdr);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
options: AXDialogOptions;
|
|
22
|
-
_icon: string;
|
|
23
|
-
close: () => void;
|
|
24
|
-
|
|
25
|
-
onInit() {
|
|
26
|
-
switch (this.options.type) {
|
|
27
|
-
case 'success':
|
|
28
|
-
this._icon = 'ax-ic ax-ic-check';
|
|
29
|
-
break;
|
|
30
|
-
case 'danger':
|
|
31
|
-
this._icon = 'ax-ic ax-ic-error-filled';
|
|
32
|
-
break;
|
|
33
|
-
case 'warning':
|
|
34
|
-
this._icon = 'ax-ic ax-ic-warning-filled';
|
|
35
|
-
break;
|
|
36
|
-
default:
|
|
37
|
-
this._icon = 'ax-ic ax-ic-info-filled';
|
|
38
|
-
break;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
_handleButtonClick(button: AXButtonItem) {
|
|
43
|
-
if (button.onClick) {
|
|
44
|
-
button.onClick();
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { AXDialogComponent } from './dialog.component';
|
|
4
|
-
import { AXButtonModule } from '../button';
|
|
5
|
-
import { A11yModule } from '@angular/cdk/a11y';
|
|
6
|
-
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
7
|
-
import { AXPageModule } from '../page';
|
|
8
|
-
import { AXEditorDecoratorModule } from '../decorators';
|
|
9
|
-
|
|
10
|
-
const COMPONENT = [AXDialogComponent];
|
|
11
|
-
const MODULES = [CommonModule, DragDropModule, A11yModule, AXButtonModule, AXPageModule, AXEditorDecoratorModule];
|
|
12
|
-
|
|
13
|
-
@NgModule({
|
|
14
|
-
declarations: [...COMPONENT],
|
|
15
|
-
imports: [...MODULES],
|
|
16
|
-
exports: [...COMPONENT],
|
|
17
|
-
providers: [],
|
|
18
|
-
})
|
|
19
|
-
export class AXDialogModule { }
|
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
import { AXTranslator } from '@acorex/core';
|
|
2
|
-
import { Overlay, ScrollStrategyOptions } from '@angular/cdk/overlay';
|
|
3
|
-
import { ComponentPortal } from '@angular/cdk/portal';
|
|
4
|
-
import { Injectable, Injector } from '@angular/core';
|
|
5
|
-
import { AXStyleColorType } from '../base/styles.class';
|
|
6
|
-
import {
|
|
7
|
-
AXDialogOptions,
|
|
8
|
-
AXDialogRef,
|
|
9
|
-
} from './dialog.class';
|
|
10
|
-
import { AXDialogComponent } from './dialog.component';
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* The Button is a component which detects user interaction and triggers a corresponding event
|
|
14
|
-
*
|
|
15
|
-
* @category Components
|
|
16
|
-
*/
|
|
17
|
-
@Injectable({ providedIn: 'root' })
|
|
18
|
-
export class AXDialogService {
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* @ignore
|
|
22
|
-
*/
|
|
23
|
-
constructor(
|
|
24
|
-
private overlayService: Overlay,
|
|
25
|
-
private parentInjector: Injector,
|
|
26
|
-
private sso: ScrollStrategyOptions
|
|
27
|
-
) { }
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Show an alert box with 'Okay' button.
|
|
31
|
-
*/
|
|
32
|
-
alert(title: string, content: string, type: AXStyleColorType = 'primary'): Promise<void> {
|
|
33
|
-
return new Promise((resolve) => {
|
|
34
|
-
const popup = this.open({
|
|
35
|
-
title,
|
|
36
|
-
type: type,
|
|
37
|
-
content,
|
|
38
|
-
buttons: [
|
|
39
|
-
{
|
|
40
|
-
name: 'confirm',
|
|
41
|
-
text: AXTranslator.get('common.okay'),
|
|
42
|
-
color: type,
|
|
43
|
-
look: `twotone`,
|
|
44
|
-
onClick: () => {
|
|
45
|
-
popup.close();
|
|
46
|
-
if (resolve) {
|
|
47
|
-
resolve();
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
},
|
|
51
|
-
],
|
|
52
|
-
});
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* Show a confirm box with 'Okay' & 'Cancel' buttons.
|
|
58
|
-
*/
|
|
59
|
-
confirm(title: string, content: string, type: AXStyleColorType = 'primary'): Promise<void> {
|
|
60
|
-
return new Promise((resolve, reject) => {
|
|
61
|
-
const popup = this.open({
|
|
62
|
-
title,
|
|
63
|
-
content,
|
|
64
|
-
type,
|
|
65
|
-
buttons: [
|
|
66
|
-
{
|
|
67
|
-
name: 'confirm',
|
|
68
|
-
text: AXTranslator.get('common.okay'),
|
|
69
|
-
color: type,
|
|
70
|
-
onClick: () => {
|
|
71
|
-
popup.close();
|
|
72
|
-
if (resolve) {
|
|
73
|
-
resolve();
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
submitBehavior: true,
|
|
77
|
-
cancelBehavior: false,
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
name: 'cancel',
|
|
81
|
-
text: AXTranslator.get('common.cancel'),
|
|
82
|
-
color: `light`,
|
|
83
|
-
onClick: () => {
|
|
84
|
-
popup.close();
|
|
85
|
-
if (reject) {
|
|
86
|
-
reject();
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
submitBehavior: false,
|
|
90
|
-
cancelBehavior: true,
|
|
91
|
-
},
|
|
92
|
-
],
|
|
93
|
-
});
|
|
94
|
-
});
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* Show a custom dialog box.
|
|
99
|
-
*/
|
|
100
|
-
show(options: AXDialogOptions): Promise<{ name: string }> {
|
|
101
|
-
return new Promise((resolve) => {
|
|
102
|
-
const popup = this.open(options);
|
|
103
|
-
options.buttons?.forEach((b) => {
|
|
104
|
-
const orginalClick = b.onClick;
|
|
105
|
-
b.onClick = () => {
|
|
106
|
-
popup.close();
|
|
107
|
-
if (orginalClick) {
|
|
108
|
-
orginalClick();
|
|
109
|
-
}
|
|
110
|
-
if (resolve) {
|
|
111
|
-
resolve({ name: b.name });
|
|
112
|
-
}
|
|
113
|
-
};
|
|
114
|
-
});
|
|
115
|
-
});
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
private open(options: AXDialogOptions): AXDialogRef {
|
|
119
|
-
let positionStrategy = this.overlayService
|
|
120
|
-
.position()
|
|
121
|
-
.global()
|
|
122
|
-
.centerHorizontally()
|
|
123
|
-
.centerVertically();
|
|
124
|
-
const overlayRef = this.overlayService.create({
|
|
125
|
-
positionStrategy,
|
|
126
|
-
hasBackdrop: true,
|
|
127
|
-
scrollStrategy: this.sso.block(),
|
|
128
|
-
panelClass: ['ax-animate-fadeIn', 'ax-animate-faster'],
|
|
129
|
-
});
|
|
130
|
-
const dialogPortal = new ComponentPortal(
|
|
131
|
-
AXDialogComponent,
|
|
132
|
-
null,
|
|
133
|
-
this.parentInjector
|
|
134
|
-
);
|
|
135
|
-
const host = overlayRef.attach(dialogPortal);
|
|
136
|
-
if (host.instance) {
|
|
137
|
-
Object.assign(host.instance, {
|
|
138
|
-
options: options,
|
|
139
|
-
close: () => {
|
|
140
|
-
overlayRef.dispose();
|
|
141
|
-
},
|
|
142
|
-
});
|
|
143
|
-
setTimeout(() => {
|
|
144
|
-
host.changeDetectorRef.detectChanges();
|
|
145
|
-
}, 0);
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
return {
|
|
149
|
-
close: () => {
|
|
150
|
-
host.instance.close();
|
|
151
|
-
},
|
|
152
|
-
};
|
|
153
|
-
}
|
|
154
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, ElementRef, ChangeDetectorRef, NgZone, ContentChildren, QueryList } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
import { AXDrawerComponent } from './drawer.component';
|
|
4
|
-
|
|
5
|
-
@Component({
|
|
6
|
-
selector: 'ax-drawer-container',
|
|
7
|
-
template: `
|
|
8
|
-
<ng-content select="ax-drawer[location='start']">
|
|
9
|
-
</ng-content>
|
|
10
|
-
<ng-content select="ax-drawer-content">
|
|
11
|
-
</ng-content>
|
|
12
|
-
<ng-content select="ax-drawer[location='end']">
|
|
13
|
-
</ng-content>
|
|
14
|
-
`,
|
|
15
|
-
inputs: ['rtl'],
|
|
16
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
17
|
-
encapsulation: ViewEncapsulation.None,
|
|
18
|
-
host: { class: 'ax-drawer-container' }
|
|
19
|
-
})
|
|
20
|
-
export class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
21
|
-
|
|
22
|
-
constructor(
|
|
23
|
-
elementRef: ElementRef,
|
|
24
|
-
cdr: ChangeDetectorRef,
|
|
25
|
-
private zone: NgZone
|
|
26
|
-
) {
|
|
27
|
-
super(elementRef, cdr);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
@ContentChildren(AXDrawerComponent)
|
|
32
|
-
drawers: QueryList<AXDrawerComponent>;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
onViewInit() {
|
|
36
|
-
this._updateWidth();
|
|
37
|
-
// add animation
|
|
38
|
-
setTimeout(() => {
|
|
39
|
-
this._getHostElement().querySelectorAll('ax-drawer').forEach(c => {
|
|
40
|
-
c.classList.add('ax-animated');
|
|
41
|
-
});
|
|
42
|
-
}, 100);
|
|
43
|
-
|
|
44
|
-
this.drawers.forEach(c => {
|
|
45
|
-
c.onChanged.subscribe(c => {
|
|
46
|
-
this._updateWidth();
|
|
47
|
-
});
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
private _updateWidth() {
|
|
52
|
-
this.zone.runOutsideAngular(() => {
|
|
53
|
-
const container = this._getHostElement().closest('ax-drawer-container') as HTMLDivElement;
|
|
54
|
-
const parentWidth = this._getHostElement().getBoundingClientRect().width;
|
|
55
|
-
let w = 0;
|
|
56
|
-
this._getHostElement().querySelectorAll('ax-drawer').forEach(c => {
|
|
57
|
-
const elm = c as HTMLDivElement;
|
|
58
|
-
const width = elm.getBoundingClientRect().width;
|
|
59
|
-
const overflow = parentWidth < width;
|
|
60
|
-
const diff = width - parentWidth;
|
|
61
|
-
w += ['ax-expanded', 'ax-drawer-push'].every(c => elm.classList.contains(c)) ? width : 0;
|
|
62
|
-
elm.style.setProperty('--attr-width', `${width}px`);
|
|
63
|
-
//TODO check overflow
|
|
64
|
-
elm.style.setProperty('--attr-diff', `${overflow ? diff : 0}px`);
|
|
65
|
-
});
|
|
66
|
-
container.style.setProperty('--attr-content-width', `${parentWidth - w}px`);
|
|
67
|
-
});
|
|
68
|
-
}
|
|
69
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'ax-drawer-content',
|
|
6
|
-
template: `
|
|
7
|
-
<ng-content>
|
|
8
|
-
</ng-content>
|
|
9
|
-
`,
|
|
10
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
11
|
-
encapsulation: ViewEncapsulation.None,
|
|
12
|
-
host: { class: 'ax-drawer-content' }
|
|
13
|
-
})
|
|
14
|
-
export class AXDrawerContentComponent extends AXBaseComponentMixin {
|
|
15
|
-
|
|
16
|
-
constructor(
|
|
17
|
-
elementRef: ElementRef,
|
|
18
|
-
cdr: ChangeDetectorRef
|
|
19
|
-
) {
|
|
20
|
-
super(elementRef, cdr);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, ElementRef, ChangeDetectorRef, NgZone, Input, HostBinding, Output, EventEmitter, HostListener } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin, AXEvent } from '../base';
|
|
3
|
-
|
|
4
|
-
@Component({
|
|
5
|
-
selector: 'ax-drawer',
|
|
6
|
-
template: `
|
|
7
|
-
<ng-content>
|
|
8
|
-
</ng-content>
|
|
9
|
-
`,
|
|
10
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
11
|
-
encapsulation: ViewEncapsulation.None,
|
|
12
|
-
host: { class: 'ax-drawer' }
|
|
13
|
-
})
|
|
14
|
-
export class AXDrawerComponent extends AXBaseComponentMixin {
|
|
15
|
-
|
|
16
|
-
constructor(
|
|
17
|
-
private elementRef: ElementRef,
|
|
18
|
-
cdr: ChangeDetectorRef,
|
|
19
|
-
private zone: NgZone
|
|
20
|
-
) {
|
|
21
|
-
super(elementRef, cdr);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@Output()
|
|
25
|
-
onChanged: EventEmitter<AXEvent> = new EventEmitter<AXEvent>();
|
|
26
|
-
|
|
27
|
-
@Input()
|
|
28
|
-
mode: 'push' | 'overlay' = 'push';
|
|
29
|
-
|
|
30
|
-
_currentMode: 'push' | 'overlay'
|
|
31
|
-
|
|
32
|
-
@Input()
|
|
33
|
-
location: 'start' | 'end' = 'start';
|
|
34
|
-
|
|
35
|
-
private _backdrop: HTMLDivElement;
|
|
36
|
-
|
|
37
|
-
private _collapsed: boolean = false;
|
|
38
|
-
@Input()
|
|
39
|
-
public get collapsed(): boolean {
|
|
40
|
-
return this._collapsed;
|
|
41
|
-
}
|
|
42
|
-
public set collapsed(v: boolean) {
|
|
43
|
-
if (v != this._collapsed) {
|
|
44
|
-
this._collapsed = v;
|
|
45
|
-
this._updateClass();
|
|
46
|
-
this._emitChange();
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
onInit() {
|
|
51
|
-
this._getHostElement().classList.add(this.location == 'start' ? 'ax-drawer-start' : 'ax-drawer-end');
|
|
52
|
-
this._currentMode = this.mode;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
private _updateClass() {
|
|
56
|
-
this.zone.runOutsideAngular(() => {
|
|
57
|
-
const elm = this._getHostElement();
|
|
58
|
-
//
|
|
59
|
-
this._currentMode == 'overlay' ? this._setOverlayMode() : this._setPushMode();
|
|
60
|
-
//
|
|
61
|
-
if (this.collapsed) {
|
|
62
|
-
elm.classList.remove('ax-expanded');
|
|
63
|
-
elm.classList.add('ax-collapsed');
|
|
64
|
-
if (this._currentMode == 'overlay') {
|
|
65
|
-
this._removeBackdrop();
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
else {
|
|
69
|
-
elm.classList.add('ax-expanded');
|
|
70
|
-
elm.classList.remove('ax-collapsed');
|
|
71
|
-
if (this._currentMode == 'overlay') {
|
|
72
|
-
this._addBackdrop();
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
});
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
onViewInit() {
|
|
79
|
-
this._detectSize();
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
toggle() {
|
|
83
|
-
this.collapsed = !this.collapsed;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
@HostListener('window:resize', ['$event'])
|
|
87
|
-
_handleWindowsResize(e:UIEvent) {
|
|
88
|
-
this._detectSize();
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
_detectSize() {
|
|
93
|
-
//TODO detect break size
|
|
94
|
-
const bound = this._getHostElement().parentElement.getBoundingClientRect();
|
|
95
|
-
if (bound.width == 0) {
|
|
96
|
-
console.log('Drawe invalid size', bound);
|
|
97
|
-
setTimeout(() => {
|
|
98
|
-
this._detectSize();
|
|
99
|
-
}, 1);
|
|
100
|
-
return;
|
|
101
|
-
}
|
|
102
|
-
if (bound.width < 400) {
|
|
103
|
-
this._currentMode = 'overlay';
|
|
104
|
-
this.collapsed = true;
|
|
105
|
-
}
|
|
106
|
-
else {
|
|
107
|
-
this._currentMode = this.mode;
|
|
108
|
-
}
|
|
109
|
-
this._updateClass();
|
|
110
|
-
this._emitChange();
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
private _emitChange() {
|
|
114
|
-
this.onChanged.emit({
|
|
115
|
-
component: this,
|
|
116
|
-
htmlElement: this.elementRef.nativeElement
|
|
117
|
-
})
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
private _setOverlayMode() {
|
|
121
|
-
this._currentMode = 'overlay';
|
|
122
|
-
this._getHostElement().classList.remove('ax-drawer-push');
|
|
123
|
-
this._getHostElement().classList.add('ax-drawer-overlay');
|
|
124
|
-
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
private _setPushMode() {
|
|
128
|
-
this._currentMode = 'push';
|
|
129
|
-
this._getHostElement().classList.remove('ax-drawer-overlay');
|
|
130
|
-
this._getHostElement().classList.add('ax-drawer-push');
|
|
131
|
-
this._removeBackdrop();
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
private _addBackdrop() {
|
|
135
|
-
if (!this._backdrop) {
|
|
136
|
-
this._backdrop = document.createElement('div');
|
|
137
|
-
this._backdrop.classList.add('ax-drawer-backdrop')
|
|
138
|
-
this._getHostElement().parentElement.prepend(this._backdrop);
|
|
139
|
-
this._backdrop.addEventListener('click', this._handleBackfropClick.bind(this));
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
private _removeBackdrop() {
|
|
144
|
-
if (this._backdrop) {
|
|
145
|
-
this._backdrop.removeEventListener('click', this._handleBackfropClick.bind(this));
|
|
146
|
-
this._getHostElement().parentElement.removeChild(this._backdrop);
|
|
147
|
-
this._backdrop = null;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
private _handleBackfropClick(e: MouseEvent) {
|
|
152
|
-
this._removeBackdrop();
|
|
153
|
-
this.collapsed = true;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { AXDrawerComponent } from './drawer.component';
|
|
4
|
-
import { AXDrawerContainerComponent } from './drawer-container.component';
|
|
5
|
-
import { AXDrawerContentComponent } from './drawer-content.component';
|
|
6
|
-
|
|
7
|
-
const COMPONENT = [AXDrawerComponent, AXDrawerContainerComponent, AXDrawerContentComponent];
|
|
8
|
-
const MODULES = [CommonModule];
|
|
9
|
-
|
|
10
|
-
@NgModule({
|
|
11
|
-
declarations: [...COMPONENT],
|
|
12
|
-
imports: [...MODULES],
|
|
13
|
-
exports: [...COMPONENT],
|
|
14
|
-
providers: [],
|
|
15
|
-
})
|
|
16
|
-
export class AXDrawerModule { }
|