@acorex/components 4.0.24 → 5.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -24
- package/acorex-components.d.ts +5 -4
- package/bundles/acorex-components.umd.js +6858 -6233
- package/bundles/acorex-components.umd.js.map +1 -1
- package/esm2015/acorex-components.js +5 -5
- package/esm2015/lib/alert/alert-button.component.js +52 -42
- package/esm2015/lib/alert/alert-contnet.component.js +21 -16
- package/esm2015/lib/alert/alert-footer.component.js +27 -18
- package/esm2015/lib/alert/alert-suffix.component.js +27 -18
- package/esm2015/lib/alert/alert-title.component.js +23 -16
- package/esm2015/lib/alert/alert.component.js +131 -87
- package/esm2015/lib/alert/alert.module.js +43 -28
- package/esm2015/lib/alert/index.js +8 -8
- 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/base/common.module.js +18 -13
- package/esm2015/lib/base/custom-cdk-overlay.service.js +47 -56
- package/esm2015/lib/base/drawing.class.js +11 -11
- package/esm2015/lib/base/events.class.js +53 -19
- package/esm2015/lib/base/index.js +7 -7
- package/esm2015/lib/base/mixin/base-components.class.js +83 -72
- package/esm2015/lib/base/mixin/button-mixin.class.js +129 -36
- package/esm2015/lib/base/mixin/clickable-mixin.class.js +24 -17
- package/esm2015/lib/base/mixin/constratctor.js +2 -2
- package/esm2015/lib/base/mixin/datalist-component.class.js +97 -97
- package/esm2015/lib/base/mixin/dropdown-mixin.class.js +36 -36
- package/esm2015/lib/base/mixin/index.js +3 -3
- package/esm2015/lib/base/mixin/interactive-mixin.class.js +72 -47
- package/esm2015/lib/base/mixin/loading-mixin.class.js +18 -15
- package/esm2015/lib/base/mixin/mixin.class.js +23 -24
- package/esm2015/lib/base/mixin/selection-component.class.js +158 -158
- package/esm2015/lib/base/mixin/sizable-mixin.class.js +18 -19
- package/esm2015/lib/base/mixin/textbox-mixin.class.js +38 -19
- package/esm2015/lib/base/mixin/value-mixin.class.js +190 -172
- package/esm2015/lib/base/overlay.service.js +91 -96
- package/esm2015/lib/base/responsive.directive.js +34 -33
- package/esm2015/lib/base/styles.class.js +4 -4
- package/esm2015/lib/button/button-group.component.js +131 -71
- package/esm2015/lib/button/button-item.class.js +2 -2
- package/esm2015/lib/button/button-item.component.js +81 -35
- package/esm2015/lib/button/button.component.js +51 -34
- package/esm2015/lib/button/button.module.js +37 -24
- package/esm2015/lib/button/dropdown-button.component.js +200 -108
- package/esm2015/lib/button/index.js +7 -7
- package/esm2015/lib/calendar/calendar.component.js +59 -69
- package/esm2015/lib/calendar/calendar.module.js +24 -19
- package/esm2015/lib/calendar/index.js +3 -3
- package/esm2015/lib/carousel/carousel-arrows.component.js +53 -45
- package/esm2015/lib/carousel/carousel-item.component.js +21 -21
- package/esm2015/lib/carousel/carousel-pager.component.js +74 -71
- package/esm2015/lib/carousel/carousel-splidejs.class.js +82 -83
- package/esm2015/lib/carousel/carousel.class.js +10 -7
- package/esm2015/lib/carousel/carousel.component.js +246 -226
- package/esm2015/lib/carousel/carousel.module.js +24 -19
- package/esm2015/lib/carousel/index.js +7 -7
- package/esm2015/lib/checkbox/checkbox.component.js +40 -41
- package/esm2015/lib/checkbox/checkbox.module.js +20 -15
- package/esm2015/lib/checkbox/index.js +3 -3
- package/esm2015/lib/datalist/datalist.component.js +81 -71
- package/esm2015/lib/datalist/datalist.module.js +22 -17
- package/esm2015/lib/datalist/index.js +3 -3
- package/esm2015/lib/datepicker/datepicker.component.js +64 -62
- package/esm2015/lib/datepicker/datepicker.module.js +23 -18
- package/esm2015/lib/datepicker/index.js +3 -3
- package/esm2015/lib/decorators/decorators.module.js +22 -17
- package/esm2015/lib/decorators/index.js +4 -4
- package/esm2015/lib/decorators/prefix.component.js +27 -28
- package/esm2015/lib/decorators/suffix.component.js +35 -28
- package/esm2015/lib/dialog/dialog.class.js +2 -47
- package/esm2015/lib/dialog/dialog.component.js +45 -39
- package/esm2015/lib/dialog/dialog.module.js +26 -19
- package/esm2015/lib/dialog/dialog.service.js +127 -139
- package/esm2015/lib/dialog/index.js +5 -5
- package/esm2015/lib/drawer/drawer-container.component.js +73 -67
- package/esm2015/lib/drawer/drawer-content.component.js +27 -24
- package/esm2015/lib/drawer/drawer.component.js +145 -139
- package/esm2015/lib/drawer/drawer.module.js +23 -18
- package/esm2015/lib/drawer/index.js +5 -5
- package/esm2015/lib/dropdown/dropdown-panel.component.js +194 -0
- package/esm2015/lib/dropdown/dropdown.component.js +139 -127
- package/esm2015/lib/dropdown/dropdown.module.js +24 -15
- package/esm2015/lib/dropdown/index.js +4 -3
- package/esm2015/lib/form/form-field.component.js +20 -20
- package/esm2015/lib/form/form-field.module.js +21 -15
- package/esm2015/lib/form/form-hint.component.js +20 -0
- package/esm2015/lib/form/form.component.js +51 -51
- package/esm2015/lib/form/index.js +5 -4
- package/esm2015/lib/icon/icon.component.js +28 -28
- package/esm2015/lib/icon/icon.module.js +21 -16
- package/esm2015/lib/icon/index.js +3 -3
- package/esm2015/lib/input-mask/index.js +3 -3
- package/esm2015/lib/input-mask/input-mask.component.js +42 -35
- package/esm2015/lib/input-mask/input-mask.module.js +23 -17
- package/esm2015/lib/label/index.js +3 -3
- package/esm2015/lib/label/label.component.js +20 -20
- package/esm2015/lib/label/label.module.js +21 -16
- package/esm2015/lib/loading/index.js +6 -5
- package/esm2015/lib/loading/loading-spinner.component.js +32 -0
- package/esm2015/lib/loading/loading.component.js +54 -23
- package/esm2015/lib/loading/loading.directive.js +67 -70
- package/esm2015/lib/loading/loading.module.js +35 -18
- package/esm2015/lib/loading/loading.service.js +155 -157
- package/esm2015/lib/number-box/index.js +3 -3
- package/esm2015/lib/number-box/number-box.component.js +289 -242
- package/esm2015/lib/number-box/number-box.module.js +32 -24
- package/esm2015/lib/page/base-page.class.js +66 -84
- package/esm2015/lib/page/index.js +5 -3
- package/esm2015/lib/page/page-footer.component.js +32 -0
- package/esm2015/lib/page/page.component.js +33 -32
- package/esm2015/lib/page/page.module.js +18 -0
- package/esm2015/lib/popover/index.js +3 -0
- package/esm2015/lib/popover/popover.component.js +119 -0
- package/esm2015/lib/popover/popover.module.js +19 -0
- package/esm2015/lib/popup/index.js +4 -4
- package/esm2015/lib/popup/popup.component.js +97 -143
- package/esm2015/lib/popup/popup.module.js +26 -19
- package/esm2015/lib/popup/popup.service.js +94 -89
- 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 -3
- package/esm2015/lib/selectbox/selectbox.component.js +193 -188
- package/esm2015/lib/selectbox/selectbox.module.js +21 -16
- package/esm2015/lib/selection-list/index.js +3 -3
- package/esm2015/lib/selection-list/selection-list.component.js +46 -46
- package/esm2015/lib/selection-list/selection-list.module.js +21 -16
- package/esm2015/lib/side-menu/index.js +3 -3
- package/esm2015/lib/side-menu/side-menu.component.js +21 -21
- package/esm2015/lib/side-menu/side-menu.module.js +21 -16
- package/esm2015/lib/switch/index.js +3 -3
- package/esm2015/lib/switch/switch.component.js +30 -29
- package/esm2015/lib/switch/switch.module.js +21 -16
- package/esm2015/lib/tabs/index.js +6 -6
- package/esm2015/lib/tabs/tab-strip.component.js +61 -57
- package/esm2015/lib/tabs/tab-view.component.js +46 -45
- package/esm2015/lib/tabs/tab.component.js +59 -48
- package/esm2015/lib/tabs/tabs.class.js +4 -4
- package/esm2015/lib/tabs/tabs.module.js +23 -18
- package/esm2015/lib/textbox/index.js +3 -3
- package/esm2015/lib/textbox/textbox.component.js +62 -46
- package/esm2015/lib/textbox/textbox.module.js +43 -24
- package/esm2015/lib/time-box/index.js +3 -3
- package/esm2015/lib/time-box/time-box.component.js +134 -127
- package/esm2015/lib/time-box/time-box.module.js +32 -24
- package/esm2015/lib/toast/index.js +5 -5
- package/esm2015/lib/toast/toast.class.js +2 -2
- package/esm2015/lib/toast/toast.component.js +50 -54
- package/esm2015/lib/toast/toast.module.js +22 -17
- package/esm2015/lib/toast/toast.service.js +114 -117
- package/esm2015/lib/tooltip/index.js +4 -4
- package/esm2015/lib/tooltip/tooltip.component.js +45 -37
- package/esm2015/lib/tooltip/tooltip.directive.js +86 -81
- package/esm2015/lib/tooltip/tooltip.module.js +23 -18
- package/esm2015/lib/validation/index.js +3 -3
- package/esm2015/lib/validation/validation-rule.widget.js +113 -110
- package/esm2015/lib/validation/validation.class.js +2 -2
- package/esm2015/lib/validation/validation.module.js +32 -28
- package/esm2015/public-api.js +39 -32
- package/fesm2015/acorex-components.js +5918 -5285
- package/fesm2015/acorex-components.js.map +1 -1
- package/lib/alert/alert-button.component.d.ts +13 -10
- package/lib/alert/alert-contnet.component.d.ts +5 -2
- package/lib/alert/alert-footer.component.d.ts +5 -2
- package/lib/alert/alert-suffix.component.d.ts +5 -2
- package/lib/alert/alert-title.component.d.ts +5 -2
- package/lib/alert/alert.component.d.ts +46 -16
- package/lib/alert/alert.module.d.ts +13 -2
- package/lib/alert/index.d.ts +7 -7
- package/lib/avatar/avatar.component.d.ts +20 -0
- package/lib/avatar/avatar.module.d.ts +8 -0
- package/lib/avatar/index.d.ts +2 -0
- package/lib/base/common.module.d.ts +7 -2
- package/lib/base/custom-cdk-overlay.service.d.ts +19 -14
- package/lib/base/drawing.class.d.ts +9 -9
- package/lib/base/events.class.d.ts +72 -28
- package/lib/base/index.d.ts +6 -6
- package/lib/base/mixin/base-components.class.d.ts +84 -51
- package/lib/base/mixin/button-mixin.class.d.ts +79 -34
- package/lib/base/mixin/clickable-mixin.class.d.ts +42 -29
- package/lib/base/mixin/constratctor.d.ts +4 -4
- package/lib/base/mixin/datalist-component.class.d.ts +54 -45
- package/lib/base/mixin/dropdown-mixin.class.d.ts +47 -38
- package/lib/base/mixin/index.d.ts +2 -2
- package/lib/base/mixin/interactive-mixin.class.d.ts +60 -34
- package/lib/base/mixin/loading-mixin.class.d.ts +46 -28
- package/lib/base/mixin/mixin.class.d.ts +814 -493
- package/lib/base/mixin/selection-component.class.d.ts +55 -46
- package/lib/base/mixin/sizable-mixin.class.d.ts +40 -28
- package/lib/base/mixin/textbox-mixin.class.d.ts +59 -33
- package/lib/base/mixin/value-mixin.class.d.ts +68 -50
- package/lib/base/overlay.service.d.ts +31 -28
- package/lib/base/responsive.directive.d.ts +10 -7
- package/lib/base/styles.class.d.ts +17 -6
- package/lib/button/button-group.component.d.ts +36 -19
- package/lib/button/button-item.class.d.ts +22 -17
- package/lib/button/button-item.component.d.ts +92 -16
- package/lib/button/button.component.d.ts +18 -6
- package/lib/button/button.module.d.ts +13 -2
- package/lib/button/dropdown-button.component.d.ts +234 -27
- package/lib/button/index.d.ts +6 -6
- package/lib/calendar/calendar.component.d.ts +16 -17
- package/lib/calendar/calendar.module.d.ts +11 -2
- package/lib/calendar/index.d.ts +2 -2
- package/lib/carousel/carousel-arrows.component.d.ts +14 -11
- package/lib/carousel/carousel-item.component.d.ts +8 -5
- package/lib/carousel/carousel-pager.component.d.ts +22 -19
- package/lib/carousel/carousel-splidejs.class.d.ts +18 -18
- package/lib/carousel/carousel.class.d.ts +48 -45
- package/lib/carousel/carousel.component.d.ts +62 -59
- package/lib/carousel/carousel.module.d.ts +11 -2
- package/lib/carousel/index.d.ts +6 -6
- package/lib/checkbox/checkbox.component.d.ts +12 -9
- package/lib/checkbox/checkbox.module.d.ts +9 -2
- package/lib/checkbox/index.d.ts +2 -2
- package/lib/datalist/datalist.component.d.ts +25 -22
- package/lib/datalist/datalist.module.d.ts +9 -2
- package/lib/datalist/index.d.ts +2 -2
- package/lib/datepicker/datepicker.component.d.ts +18 -15
- package/lib/datepicker/datepicker.module.d.ts +10 -2
- package/lib/datepicker/index.d.ts +2 -2
- package/lib/decorators/decorators.module.d.ts +9 -2
- package/lib/decorators/index.d.ts +3 -3
- package/lib/decorators/prefix.component.d.ts +8 -5
- package/lib/decorators/suffix.component.d.ts +8 -5
- package/lib/dialog/dialog.class.d.ts +12 -35
- package/lib/dialog/dialog.component.d.ts +15 -12
- package/lib/dialog/dialog.module.d.ts +13 -2
- package/lib/dialog/dialog.service.d.ts +18 -13
- package/lib/dialog/index.d.ts +4 -4
- package/lib/drawer/drawer-container.component.d.ts +13 -10
- package/lib/drawer/drawer-content.component.d.ts +8 -5
- package/lib/drawer/drawer.component.d.ts +30 -27
- package/lib/drawer/drawer.module.d.ts +10 -2
- package/lib/drawer/index.d.ts +4 -4
- package/lib/dropdown/dropdown-panel.component.d.ts +117 -0
- package/lib/dropdown/dropdown.component.d.ts +31 -22
- package/lib/dropdown/dropdown.module.d.ts +13 -2
- package/lib/dropdown/index.d.ts +3 -2
- package/lib/form/form-field.component.d.ts +8 -5
- package/lib/form/form-field.module.d.ts +10 -2
- package/lib/form/form-hint.component.d.ts +8 -0
- package/lib/form/form.component.d.ts +13 -10
- package/lib/form/index.d.ts +4 -3
- package/lib/icon/icon.component.d.ts +10 -7
- package/lib/icon/icon.module.d.ts +8 -2
- package/lib/icon/index.d.ts +2 -2
- package/lib/input-mask/index.d.ts +2 -2
- package/lib/input-mask/input-mask.component.d.ts +14 -11
- package/lib/input-mask/input-mask.module.d.ts +9 -2
- package/lib/label/index.d.ts +2 -2
- package/lib/label/label.component.d.ts +8 -5
- package/lib/label/label.module.d.ts +8 -2
- package/lib/loading/index.d.ts +5 -4
- package/lib/loading/loading-spinner.component.d.ts +5 -0
- package/lib/loading/loading.component.d.ts +19 -5
- package/lib/loading/loading.directive.d.ts +22 -19
- package/lib/loading/loading.module.d.ts +13 -2
- package/lib/loading/loading.service.d.ts +48 -45
- package/lib/number-box/index.d.ts +2 -2
- package/lib/number-box/number-box.component.d.ts +69 -31
- package/lib/number-box/number-box.module.d.ts +11 -2
- package/lib/page/base-page.class.d.ts +37 -40
- package/lib/page/index.d.ts +4 -2
- package/lib/page/page-footer.component.d.ts +7 -0
- package/lib/page/page.component.d.ts +13 -11
- package/lib/page/page.module.d.ts +7 -0
- package/lib/popover/index.d.ts +2 -0
- package/lib/popover/popover.component.d.ts +30 -0
- package/lib/popover/popover.module.d.ts +8 -0
- package/lib/popup/index.d.ts +3 -3
- package/lib/popup/popup.component.d.ts +33 -33
- package/lib/popup/popup.module.d.ts +12 -2
- package/lib/popup/popup.service.d.ts +37 -18
- package/lib/range-slider/index.d.ts +2 -0
- package/lib/range-slider/range-slider.component.d.ts +8 -0
- package/lib/range-slider/range-slider.module.d.ts +8 -0
- package/lib/selectbox/index.d.ts +2 -2
- package/lib/selectbox/selectbox.component.d.ts +28 -25
- package/lib/selectbox/selectbox.module.d.ts +10 -2
- package/lib/selection-list/index.d.ts +2 -2
- package/lib/selection-list/selection-list.component.d.ts +10 -7
- package/lib/selection-list/selection-list.module.d.ts +10 -2
- package/lib/side-menu/index.d.ts +2 -2
- package/lib/side-menu/side-menu.component.d.ts +8 -5
- package/lib/side-menu/side-menu.module.d.ts +8 -2
- package/lib/switch/index.d.ts +2 -2
- package/lib/switch/switch.component.d.ts +9 -6
- package/lib/switch/switch.module.d.ts +9 -2
- package/lib/tabs/index.d.ts +5 -5
- package/lib/tabs/tab-strip.component.d.ts +17 -14
- package/lib/tabs/tab-view.component.d.ts +14 -11
- package/lib/tabs/tab.component.d.ts +18 -15
- package/lib/tabs/tabs.class.d.ts +18 -18
- package/lib/tabs/tabs.module.d.ts +10 -2
- package/lib/textbox/index.d.ts +2 -2
- package/lib/textbox/textbox.component.d.ts +19 -8
- package/lib/textbox/textbox.module.d.ts +13 -2
- package/lib/time-box/index.d.ts +2 -2
- package/lib/time-box/time-box.component.d.ts +29 -26
- package/lib/time-box/time-box.module.d.ts +11 -2
- package/lib/toast/index.d.ts +4 -4
- package/lib/toast/toast.class.d.ts +14 -14
- package/lib/toast/toast.component.d.ts +16 -13
- package/lib/toast/toast.module.d.ts +9 -2
- package/lib/toast/toast.service.d.ts +18 -15
- package/lib/tooltip/index.d.ts +3 -3
- package/lib/tooltip/tooltip.component.d.ts +10 -7
- package/lib/tooltip/tooltip.directive.d.ts +18 -15
- package/lib/tooltip/tooltip.module.d.ts +10 -2
- package/lib/validation/index.d.ts +2 -2
- package/lib/validation/validation-rule.widget.d.ts +25 -22
- package/lib/validation/validation.class.d.ts +17 -17
- package/lib/validation/validation.module.d.ts +9 -3
- package/package.json +19 -21
- package/public-api.d.ts +37 -31
- package/acorex-components.metadata.json +0 -1
- package/bundles/acorex-components.umd.min.js +0 -16
- package/bundles/acorex-components.umd.min.js.map +0 -1
- package/esm2015/lib/datapager/datapager-base.component.js +0 -33
- package/esm2015/lib/datapager/datapager-info.component.js +0 -59
- package/esm2015/lib/datapager/datapager-input-selector.component.js +0 -51
- package/esm2015/lib/datapager/datapager-next-buttons.components.js +0 -51
- package/esm2015/lib/datapager/datapager-numeric-selector.component.js +0 -86
- package/esm2015/lib/datapager/datapager-pagesize-dropdown.component.js +0 -69
- package/esm2015/lib/datapager/datapager-prev-buttons.component.js +0 -47
- package/esm2015/lib/datapager/datapager.component.js +0 -122
- package/esm2015/lib/datapager/datapager.module.js +0 -32
- package/esm2015/lib/datapager/index.js +0 -9
- package/lib/datapager/datapager-base.component.d.ts +0 -12
- package/lib/datapager/datapager-info.component.d.ts +0 -24
- package/lib/datapager/datapager-input-selector.component.d.ts +0 -12
- package/lib/datapager/datapager-next-buttons.components.d.ts +0 -14
- package/lib/datapager/datapager-numeric-selector.component.d.ts +0 -17
- package/lib/datapager/datapager-pagesize-dropdown.component.d.ts +0 -17
- package/lib/datapager/datapager-prev-buttons.component.d.ts +0 -13
- package/lib/datapager/datapager.component.d.ts +0 -41
- package/lib/datapager/datapager.module.d.ts +0 -2
- package/lib/datapager/index.d.ts +0 -8
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./selectbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../dropdown/dropdown.module";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
export declare class AXSelectBoxModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectBoxModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectBoxModule, [typeof i1.AXSelectBoxComponent], [typeof i2.CommonModule, typeof i3.AXDropdownModule, typeof i4.FormsModule], [typeof i1.AXSelectBoxComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXSelectBoxModule>;
|
|
10
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './selection-list.component';
|
|
2
|
-
export * from './selection-list.module';
|
|
1
|
+
export * from './selection-list.component';
|
|
2
|
+
export * from './selection-list.module';
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseSelectionValueMixin, AXDirection } from '../base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseSelectionValueMixin, AXDirection } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXSelectionListComponent extends AXBaseSelectionValueMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
direction: AXDirection;
|
|
7
|
+
_handleOnItemValueChange(item: any, e: Event): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionListComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSelectionListComponent, "ax-selection-list", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "size": "size"; "value": "value"; "valueField": "valueField"; "textField": "textField"; "multiple": "multiple"; "items": "items"; "selectionMode": "selectionMode"; "direction": "direction"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, never, ["ax-validation-rule"]>;
|
|
10
|
+
}
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./selection-list.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../checkbox/checkbox.module";
|
|
6
|
+
export declare class AXSelectionListModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionListModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectionListModule, [typeof i1.AXSelectionListComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXCheckBoxModule], [typeof i1.AXSelectionListComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXSelectionListModule>;
|
|
10
|
+
}
|
package/lib/side-menu/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './side-menu.component';
|
|
2
|
-
export * from './side-menu.module';
|
|
1
|
+
export * from './side-menu.component';
|
|
2
|
+
export * from './side-menu.module';
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponentMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXSideMenuComponent extends AXBaseComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSideMenuComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSideMenuComponent, "ax-side-menu", never, {}, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./side-menu.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class AXSideMenuModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSideMenuModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXSideMenuModule, [typeof i1.AXSideMenuComponent], [typeof i2.CommonModule], [typeof i1.AXSideMenuComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXSideMenuModule>;
|
|
8
|
+
}
|
package/lib/switch/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './switch.component';
|
|
2
|
-
export * from './switch.module';
|
|
1
|
+
export * from './switch.component';
|
|
2
|
+
export * from './switch.module';
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
-
import { AXBaseValueComponentMixin } from '../base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import { AXBaseValueComponentMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXSwitchComponent extends AXBaseValueComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
handleOnClickEvent(e: MouseEvent): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSwitchComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXSwitchComponent, "ax-switch", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "size": "size"; "cssClass": "cssClass"; "cssStyle": "cssStyle"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, never, ["ax-validation-rule"]>;
|
|
9
|
+
}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./switch.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
export declare class AXSwitchModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXSwitchModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXSwitchModule, [typeof i1.AXSwitchComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.AXSwitchComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXSwitchModule>;
|
|
9
|
+
}
|
package/lib/tabs/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './tab-strip.component';
|
|
2
|
-
export * from './tab-view.component';
|
|
3
|
-
export * from './tab.component';
|
|
4
|
-
export * from './tabs.class';
|
|
5
|
-
export * from './tabs.module';
|
|
1
|
+
export * from './tab-strip.component';
|
|
2
|
+
export * from './tab-view.component';
|
|
3
|
+
export * from './tab.component';
|
|
4
|
+
export * from './tabs.class';
|
|
5
|
+
export * from './tabs.module';
|
|
@@ -1,14 +1,17 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { AXSizableComponentMixin } from '../base';
|
|
3
|
-
import { AXTabStripChangedEvent, AXTabStripItem } from './tabs.class';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { AXSizableComponentMixin } from '../base';
|
|
3
|
+
import { AXTabStripChangedEvent, AXTabStripItem } from './tabs.class';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXTabStripComponent extends AXSizableComponentMixin {
|
|
6
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
7
|
+
private _items;
|
|
8
|
+
get items(): AXTabStripItem[];
|
|
9
|
+
set items(v: AXTabStripItem[]);
|
|
10
|
+
mode: 'default' | 'underline' | 'pills' | 'pills-color';
|
|
11
|
+
fullWidth: boolean;
|
|
12
|
+
minWidth: boolean;
|
|
13
|
+
onSelectionChanged: EventEmitter<AXTabStripChangedEvent>;
|
|
14
|
+
_handleClick(tab: AXTabStripItem, index: number): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabStripComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabStripComponent, "ax-tab-strip", never, { "size": "size"; "cssClass": "cssClass"; "items": "items"; "mode": "mode"; "fullWidth": "fullWidth"; "minWidth": "minWidth"; }, { "onSelectionChanged": "onSelectionChanged"; }, never, never>;
|
|
17
|
+
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core';
|
|
2
|
-
import { AXTabStripChangedEvent, AXTabStripItem } from './tabs.class';
|
|
3
|
-
import { AXTabStripComponent } from './tab-strip.component';
|
|
4
|
-
import { AXTabComponent } from './tab.component';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, QueryList } from '@angular/core';
|
|
2
|
+
import { AXTabStripChangedEvent, AXTabStripItem } from './tabs.class';
|
|
3
|
+
import { AXTabStripComponent } from './tab-strip.component';
|
|
4
|
+
import { AXTabComponent } from './tab.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AXTabViewComponent extends AXTabStripComponent {
|
|
7
|
+
_contentTabs: QueryList<AXTabComponent>;
|
|
8
|
+
_tabs: AXTabStripItem[];
|
|
9
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
10
|
+
onViewInit(): void;
|
|
11
|
+
_handleSelectionChanged(e: AXTabStripChangedEvent): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabViewComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabViewComponent, "ax-tab-view", never, { "size": "size"; }, {}, ["_contentTabs"], ["ax-tab"]>;
|
|
14
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponentMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXTabComponent extends AXBaseComponentMixin {
|
|
5
|
+
name: string;
|
|
6
|
+
caption: string;
|
|
7
|
+
tooltip: string;
|
|
8
|
+
icon: string;
|
|
9
|
+
visible: boolean;
|
|
10
|
+
disabled: boolean;
|
|
11
|
+
data: any;
|
|
12
|
+
_render: boolean;
|
|
13
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
14
|
+
show(): void;
|
|
15
|
+
hide(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTabComponent, "ax-tab", never, { "name": "name"; "caption": "caption"; "tooltip": "tooltip"; "icon": "icon"; "visible": "visible"; "disabled": "disabled"; "data": "data"; }, {}, never, ["*"]>;
|
|
18
|
+
}
|
package/lib/tabs/tabs.class.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { AXEvent } from "../base";
|
|
2
|
-
export interface AXTabStripItem {
|
|
3
|
-
name?: string;
|
|
4
|
-
text?: string;
|
|
5
|
-
tooltip?: string;
|
|
6
|
-
iconClassAfter?: string;
|
|
7
|
-
iconClassBefore?: string;
|
|
8
|
-
iconClass?: string;
|
|
9
|
-
visible?: boolean;
|
|
10
|
-
disabled?: boolean;
|
|
11
|
-
data?: any;
|
|
12
|
-
style?: string;
|
|
13
|
-
active?: boolean;
|
|
14
|
-
}
|
|
15
|
-
export declare class AXTabStripChangedEvent extends AXEvent {
|
|
16
|
-
selectedTab: AXTabStripItem;
|
|
17
|
-
selectedIndex: number;
|
|
18
|
-
}
|
|
1
|
+
import { AXEvent } from "../base";
|
|
2
|
+
export interface AXTabStripItem {
|
|
3
|
+
name?: string;
|
|
4
|
+
text?: string;
|
|
5
|
+
tooltip?: string;
|
|
6
|
+
iconClassAfter?: string;
|
|
7
|
+
iconClassBefore?: string;
|
|
8
|
+
iconClass?: string;
|
|
9
|
+
visible?: boolean;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
data?: any;
|
|
12
|
+
style?: string;
|
|
13
|
+
active?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare class AXTabStripChangedEvent extends AXEvent {
|
|
16
|
+
selectedTab: AXTabStripItem;
|
|
17
|
+
selectedIndex: number;
|
|
18
|
+
}
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tab-view.component";
|
|
3
|
+
import * as i2 from "./tab-strip.component";
|
|
4
|
+
import * as i3 from "./tab.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
export declare class AXTabsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTabsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTabsModule, [typeof i1.AXTabViewComponent, typeof i2.AXTabStripComponent, typeof i3.AXTabComponent], [typeof i4.CommonModule], [typeof i1.AXTabViewComponent, typeof i2.AXTabStripComponent, typeof i3.AXTabComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXTabsModule>;
|
|
10
|
+
}
|
package/lib/textbox/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './textbox.component';
|
|
2
|
-
export * from './textbox.module';
|
|
1
|
+
export * from './textbox.component';
|
|
2
|
+
export * from './textbox.module';
|
|
@@ -1,8 +1,19 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
-
import { AXBaseTextBoxMixin } from '../base/mixin/mixin.class';
|
|
3
|
-
import { AXInputMaskComponent } from '../input-mask';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
2
|
+
import { AXBaseTextBoxMixin } from '../base/mixin/mixin.class';
|
|
3
|
+
import { AXInputMaskComponent } from '../input-mask';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* The Textbox is a component which detects user interaction and triggers a corresponding event
|
|
7
|
+
*
|
|
8
|
+
* @category Components
|
|
9
|
+
*/
|
|
10
|
+
export declare class AXTextBoxComponent extends AXBaseTextBoxMixin {
|
|
11
|
+
_contentMask: AXInputMaskComponent;
|
|
12
|
+
get hostClass(): string;
|
|
13
|
+
/**
|
|
14
|
+
* @ignore
|
|
15
|
+
*/
|
|
16
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTextBoxComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTextBoxComponent, "ax-text-box", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "cssClass": "cssClass"; "size": "size"; "placeholder": "placeholder"; "maxLength": "maxLength"; "allowNull": "allowNull"; "debounceTime": "debounceTime"; "value": "value"; "name": "name"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; }, ["_contentMask"], ["ax-prefix", "ax-suffix", "ax-validation-rule", "ax-input-mask"]>;
|
|
19
|
+
}
|
|
@@ -1,2 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./textbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../button/button.module";
|
|
6
|
+
import * as i5 from "../decorators/decorators.module";
|
|
7
|
+
import * as i6 from "../icon/icon.module";
|
|
8
|
+
import * as i7 from "ngx-mask";
|
|
9
|
+
export declare class AXTextBoxModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTextBoxModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTextBoxModule, [typeof i1.AXTextBoxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXButtonModule, typeof i5.AXEditorDecoratorModule, typeof i6.AXIconModule, typeof i7.NgxMaskModule], [typeof i1.AXTextBoxComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXTextBoxModule>;
|
|
13
|
+
}
|
package/lib/time-box/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './time-box.component';
|
|
2
|
-
export * from './time-box.module';
|
|
1
|
+
export * from './time-box.component';
|
|
2
|
+
export * from './time-box.module';
|
|
@@ -1,26 +1,29 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { MaskApplierService } from 'ngx-mask';
|
|
3
|
-
import { AXBaseTextBoxMixin } from '../base';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
private
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { MaskApplierService } from 'ngx-mask';
|
|
3
|
+
import { AXBaseTextBoxMixin } from '../base';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXTimeBoxComponent extends AXBaseTextBoxMixin {
|
|
6
|
+
private cdr;
|
|
7
|
+
private _maskService;
|
|
8
|
+
get hostClass(): string;
|
|
9
|
+
private _minValue;
|
|
10
|
+
get minValue(): Date;
|
|
11
|
+
set minValue(v: Date);
|
|
12
|
+
private _maxValue;
|
|
13
|
+
get maxValue(): Date;
|
|
14
|
+
set maxValue(v: Date);
|
|
15
|
+
format: string;
|
|
16
|
+
displayTextChange: EventEmitter<string>;
|
|
17
|
+
private _displayText;
|
|
18
|
+
get displayText(): string;
|
|
19
|
+
set displayText(v: string);
|
|
20
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _maskService: MaskApplierService);
|
|
21
|
+
_handleOnKeydownEvent(e: KeyboardEvent): void;
|
|
22
|
+
_onValueChanging(value: Date): Date;
|
|
23
|
+
_fixValue(value: Date): Date;
|
|
24
|
+
_format(value: Date): string;
|
|
25
|
+
_onValueChanged(oldValue: any, newValue: any): void;
|
|
26
|
+
_handleOnBlurEvent(e: FocusEvent): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTimeBoxComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTimeBoxComponent, "ax-time-box", never, { "disabled": "disabled"; "readonly": "readonly"; "tabIndex": "tabIndex"; "size": "size"; "value": "value"; "placeholder": "placeholder"; "maxLength": "maxLength"; "allowNull": "allowNull"; "debounceTime": "debounceTime"; "name": "name"; "minValue": "minValue"; "maxValue": "maxValue"; "format": "format"; "displayText": "displayText"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "displayTextChange": "displayTextChange"; }, never, ["ax-prefix", "ax-suffix", "ax-validation-rule"]>;
|
|
29
|
+
}
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./time-box.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "../button/button.module";
|
|
6
|
+
import * as i5 from "ngx-mask";
|
|
7
|
+
export declare class AXTimeBoxModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTimeBoxModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTimeBoxModule, [typeof i1.AXTimeBoxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.AXButtonModule, typeof i5.NgxMaskModule], [typeof i1.AXTimeBoxComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXTimeBoxModule>;
|
|
11
|
+
}
|
package/lib/toast/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './toast.component';
|
|
2
|
-
export * from './toast.module';
|
|
3
|
-
export * from './toast.service';
|
|
4
|
-
export * from './toast.class';
|
|
1
|
+
export * from './toast.component';
|
|
2
|
+
export * from './toast.module';
|
|
3
|
+
export * from './toast.service';
|
|
4
|
+
export * from './toast.class';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { AXLocation,
|
|
2
|
-
import { AXButtonItem } from "../button";
|
|
3
|
-
export interface AXToastOptions {
|
|
4
|
-
timeOut?: number;
|
|
5
|
-
title: string;
|
|
6
|
-
content?: string;
|
|
7
|
-
|
|
8
|
-
location?: AXLocation;
|
|
9
|
-
type:
|
|
10
|
-
buttons?: AXButtonItem[];
|
|
11
|
-
}
|
|
12
|
-
export interface AXToastRef {
|
|
13
|
-
close(): void;
|
|
14
|
-
}
|
|
1
|
+
import { AXLocation, AXStyleColorType } from "../base/styles.class";
|
|
2
|
+
import { AXButtonItem } from "../button";
|
|
3
|
+
export interface AXToastOptions {
|
|
4
|
+
timeOut?: number;
|
|
5
|
+
title: string;
|
|
6
|
+
content?: string;
|
|
7
|
+
closeable?: boolean;
|
|
8
|
+
location?: AXLocation;
|
|
9
|
+
type: AXStyleColorType;
|
|
10
|
+
buttons?: AXButtonItem[];
|
|
11
|
+
}
|
|
12
|
+
export interface AXToastRef {
|
|
13
|
+
close(): void;
|
|
14
|
+
}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
import { AXButtonItem } from '../button';
|
|
4
|
-
import { AXToastOptions } from './toast.class';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponentMixin } from '../base';
|
|
3
|
+
import { AXButtonItem } from '../button';
|
|
4
|
+
import { AXToastOptions } from './toast.class';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AXToastComponent extends AXBaseComponentMixin {
|
|
7
|
+
options: AXToastOptions;
|
|
8
|
+
_toastWidth: number;
|
|
9
|
+
_icon: string;
|
|
10
|
+
close: () => void;
|
|
11
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
12
|
+
onInit(): void;
|
|
13
|
+
_handleButtonClick(button: AXButtonItem): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXToastComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXToastComponent, "ax-toast", never, {}, {}, never, never>;
|
|
16
|
+
}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./toast.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../button/button.module";
|
|
5
|
+
export declare class AXToastModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXToastModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXToastModule, [typeof i1.AXToastComponent], [typeof i2.CommonModule, typeof i3.AXButtonModule], [typeof i1.AXToastComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXToastModule>;
|
|
9
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import { Overlay } from '@angular/cdk/overlay';
|
|
2
|
-
import { Injector } from '@angular/core';
|
|
3
|
-
import { AXToastOptions, AXToastRef } from './toast.class';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
private
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
2
|
+
import { Injector } from '@angular/core';
|
|
3
|
+
import { AXToastOptions, AXToastRef } from './toast.class';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXToastService {
|
|
6
|
+
private overlayService;
|
|
7
|
+
private parentInjector;
|
|
8
|
+
constructor(overlayService: Overlay, parentInjector: Injector);
|
|
9
|
+
private _activeList;
|
|
10
|
+
info(content: string): void;
|
|
11
|
+
success(content: string): void;
|
|
12
|
+
warning(content: string): void;
|
|
13
|
+
danger(content: string): void;
|
|
14
|
+
show(options: AXToastOptions): AXToastRef;
|
|
15
|
+
private getPosition;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXToastService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXToastService>;
|
|
18
|
+
}
|
package/lib/tooltip/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './tooltip.component';
|
|
2
|
-
export * from './tooltip.directive';
|
|
3
|
-
export * from './tooltip.module';
|
|
1
|
+
export * from './tooltip.component';
|
|
2
|
+
export * from './tooltip.directive';
|
|
3
|
+
export * from './tooltip.module';
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { AXBaseComponentMixin } from '../base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { ElementRef, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { AXBaseComponentMixin } from '../base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXTooltipComponent extends AXBaseComponentMixin {
|
|
5
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
6
|
+
text: string;
|
|
7
|
+
position: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTooltipComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXTooltipComponent, "ax-tooltip", never, { "text": "text"; "position": "position"; }, {}, never, never>;
|
|
10
|
+
}
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import { Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
private
|
|
6
|
-
private
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AXTooltipDirective implements OnInit {
|
|
5
|
+
private overlay;
|
|
6
|
+
private overlayPositionBuilder;
|
|
7
|
+
private elementRef;
|
|
8
|
+
text: string;
|
|
9
|
+
position: string;
|
|
10
|
+
private overlayRef;
|
|
11
|
+
positions: any;
|
|
12
|
+
constructor(overlay: Overlay, overlayPositionBuilder: OverlayPositionBuilder, elementRef: ElementRef);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
show(): void;
|
|
15
|
+
hide(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTooltipDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AXTooltipDirective, "[axTooltip]", never, { "text": "axTooltip"; "position": "axTooltipPositon"; }, {}, never>;
|
|
18
|
+
}
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tooltip.component";
|
|
3
|
+
import * as i2 from "./tooltip.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/cdk/overlay";
|
|
6
|
+
export declare class AXTooltipModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXTooltipModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXTooltipModule, [typeof i1.AXTooltipComponent, typeof i2.AXTooltipDirective], [typeof i3.CommonModule, typeof i4.OverlayModule], [typeof i1.AXTooltipComponent, typeof i2.AXTooltipDirective]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXTooltipModule>;
|
|
10
|
+
}
|