@acorex/components 7.2.6 → 7.2.8
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/alert/lib/alert.component.d.ts +2 -1
- package/breadcrumbs/lib/breadcrumbs-item.component.d.ts +5 -69
- package/button/lib/button-group.component.d.ts +6 -6
- package/button/lib/button-item.component.d.ts +6 -6
- package/calendar/lib/calendar.component.d.ts +1 -0
- package/checkbox/lib/checkbox.component.d.ts +15 -9
- package/chips/lib/chips.component.d.ts +5 -64
- package/collapse/lib/collapse-group.component.d.ts +22 -10
- package/collapse/lib/collapse.component.d.ts +13 -7
- package/color-palette/lib/color-palette-input.component.d.ts +11 -10
- package/color-palette/lib/color-palette-picker.component.d.ts +12 -10
- package/color-palette/lib/color-palette-preview.component.d.ts +11 -7
- package/color-palette/lib/color-palette-swatches.component.d.ts +13 -11
- package/color-palette/lib/color-palette.class.d.ts +12 -6
- package/color-palette/lib/color-palette.component.d.ts +4 -10
- package/color-palette/lib/color-palette.module.d.ts +9 -8
- package/color-picker/lib/color-picker.component.d.ts +21 -18
- package/common/index.d.ts +1 -0
- package/common/lib/classes/components.class.d.ts +2 -1
- package/common/lib/components/base-component.class.d.ts +11 -9
- package/common/lib/components/input-base-value-component.class.d.ts +26 -0
- package/common/lib/components/interactive-component.class.d.ts +7 -0
- package/common/lib/components/value-component.class.d.ts +15 -7
- package/decorators/index.d.ts +1 -0
- package/decorators/lib/divider.component.d.ts +5 -0
- package/drawer/lib/drawer.component.d.ts +1 -1
- package/esm2022/acorex-components.mjs +1 -1
- package/esm2022/action-sheet/lib/action-sheet.component.mjs +3 -3
- package/esm2022/action-sheet/lib/action-sheet.module.mjs +4 -4
- package/esm2022/action-sheet/lib/action-sheet.service.mjs +3 -3
- package/esm2022/alert/lib/alert.component.mjs +13 -11
- package/esm2022/alert/lib/alert.module.mjs +4 -4
- package/esm2022/avatar/lib/avatar-group.component.mjs +3 -3
- package/esm2022/avatar/lib/avatar.component.mjs +3 -3
- package/esm2022/avatar/lib/avatar.module.mjs +4 -4
- package/esm2022/badge/lib/badge.component.mjs +5 -5
- package/esm2022/badge/lib/badge.module.mjs +4 -4
- package/esm2022/breadcrumbs/lib/breadcrumbs-item.component.mjs +11 -20
- package/esm2022/breadcrumbs/lib/breadcrumbs.component.mjs +4 -4
- package/esm2022/breadcrumbs/lib/breadcrumbs.module.mjs +4 -4
- package/esm2022/button/lib/button-group.component.mjs +3 -3
- package/esm2022/button/lib/button-item.component.mjs +3 -3
- package/esm2022/button/lib/button.component.mjs +3 -3
- package/esm2022/button/lib/button.module.mjs +4 -4
- package/esm2022/calendar/lib/calendar-range.component.mjs +3 -3
- package/esm2022/calendar/lib/calendar.class.mjs +6 -5
- package/esm2022/calendar/lib/calendar.component.mjs +15 -14
- package/esm2022/calendar/lib/calendar.module.mjs +4 -4
- package/esm2022/checkbox/lib/checkbox.component.mjs +44 -20
- package/esm2022/checkbox/lib/checkbox.module.mjs +4 -4
- package/esm2022/chips/lib/chips.component.mjs +9 -11
- package/esm2022/chips/lib/chips.module.mjs +4 -4
- package/esm2022/collapse/lib/collapse-group.component.mjs +81 -25
- package/esm2022/collapse/lib/collapse.component.mjs +29 -16
- package/esm2022/collapse/lib/collapse.module.mjs +4 -4
- package/esm2022/color-palette/lib/color-palette-input.component.mjs +59 -74
- package/esm2022/color-palette/lib/color-palette-picker.component.mjs +78 -69
- package/esm2022/color-palette/lib/color-palette-preview.component.mjs +33 -27
- package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +37 -251
- package/esm2022/color-palette/lib/color-palette.class.mjs +229 -8
- package/esm2022/color-palette/lib/color-palette.component.mjs +32 -58
- package/esm2022/color-palette/lib/color-palette.module.mjs +9 -6
- package/esm2022/color-picker/lib/color-picker.component.mjs +5 -8
- package/esm2022/color-picker/lib/color-picker.module.mjs +4 -4
- package/esm2022/common/index.mjs +2 -1
- package/esm2022/common/lib/classes/components.class.mjs +19 -19
- package/esm2022/common/lib/common.module.mjs +4 -4
- package/esm2022/common/lib/components/base-component.class.mjs +12 -8
- package/esm2022/common/lib/components/input-base-value-component.class.mjs +47 -0
- package/esm2022/common/lib/components/interactive-component.class.mjs +31 -4
- package/esm2022/common/lib/components/value-component.class.mjs +60 -38
- package/esm2022/common/lib/directives/auto-focus.directive.mjs +3 -3
- package/esm2022/common/lib/directives/debounce-time.directive.mjs +3 -3
- package/esm2022/common/lib/directives/hotkey.directive.mjs +3 -3
- package/esm2022/common/lib/directives/infinite-scroll.directive.mjs +3 -3
- package/esm2022/common/lib/directives/responsive.directive.mjs +3 -3
- package/esm2022/common/lib/services/custom-cdk-overlay.service.mjs +6 -6
- package/esm2022/common/lib/services/hotkey.service.mjs +3 -3
- package/esm2022/common/lib/services/overlay.service.mjs +3 -3
- package/esm2022/context-menu/lib/context-menu.component.mjs +3 -3
- package/esm2022/context-menu/lib/context-menu.module.mjs +4 -4
- package/esm2022/data-pager/lib/data-pager-base.component.mjs +6 -6
- package/esm2022/data-pager/lib/data-pager-info.component.mjs +3 -3
- package/esm2022/data-pager/lib/data-pager-input-selector.component.mjs +3 -3
- package/esm2022/data-pager/lib/data-pager-next-buttons.components.mjs +3 -3
- package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +3 -3
- package/esm2022/data-pager/lib/data-pager-pagesize-dropdown.component.mjs +3 -3
- package/esm2022/data-pager/lib/data-pager-prev-buttons.component.mjs +3 -3
- package/esm2022/data-pager/lib/data-pager.component.mjs +3 -3
- package/esm2022/data-pager/lib/data-pager.module.mjs +4 -4
- package/esm2022/data-table/lib/data-column-cell-template.directive.mjs +3 -3
- package/esm2022/data-table/lib/data-column.directive.mjs +3 -3
- package/esm2022/data-table/lib/data-table.component.mjs +3 -3
- package/esm2022/data-table/lib/data-table.module.mjs +4 -4
- package/esm2022/date-picker/lib/datepicker.component.mjs +3 -3
- package/esm2022/date-picker/lib/datepicker.module.mjs +4 -4
- package/esm2022/decorators/index.mjs +2 -1
- package/esm2022/decorators/lib/close-button.component.mjs +3 -3
- package/esm2022/decorators/lib/content.component.mjs +3 -3
- package/esm2022/decorators/lib/decorators.module.mjs +4 -4
- package/esm2022/decorators/lib/divider.component.mjs +17 -0
- package/esm2022/decorators/lib/footer.component.mjs +3 -3
- package/esm2022/decorators/lib/form-hint.component.mjs +6 -6
- package/esm2022/decorators/lib/header.component.mjs +3 -3
- package/esm2022/decorators/lib/icon.component.mjs +3 -3
- package/esm2022/decorators/lib/overlay.component.mjs +3 -3
- package/esm2022/decorators/lib/placeholder.component.mjs +3 -3
- package/esm2022/decorators/lib/prefix.component.mjs +3 -3
- package/esm2022/decorators/lib/sub-title.component.mjs +3 -3
- package/esm2022/decorators/lib/suffix.component.mjs +4 -4
- package/esm2022/decorators/lib/text.component.mjs +3 -3
- package/esm2022/decorators/lib/title.component.mjs +3 -3
- package/esm2022/dialog/lib/dialog.component.mjs +3 -3
- package/esm2022/dialog/lib/dialog.module.mjs +4 -4
- package/esm2022/dialog/lib/dialog.service.mjs +3 -3
- package/esm2022/drawer/lib/drawer-container.component.mjs +3 -3
- package/esm2022/drawer/lib/drawer.component.mjs +6 -5
- package/esm2022/drawer/lib/drawer.module.mjs +4 -4
- package/esm2022/dropdown/lib/dropdown-panel.component.mjs +3 -3
- package/esm2022/dropdown/lib/dropdown.module.mjs +4 -4
- package/esm2022/form/lib/form-field.component.mjs +4 -4
- package/esm2022/form/lib/form.component.mjs +4 -6
- package/esm2022/form/lib/form.module.mjs +4 -4
- package/esm2022/form/lib/validation-rule.widget.mjs +3 -3
- package/esm2022/form/lib/validation-summary.component.mjs +3 -3
- package/esm2022/image/lib/image.component.mjs +3 -3
- package/esm2022/image/lib/image.module.mjs +4 -4
- package/esm2022/index.mjs +1 -1
- package/esm2022/label/lib/label.component.mjs +4 -4
- package/esm2022/label/lib/label.module.mjs +4 -4
- package/esm2022/loading/lib/loading-spinner.component.mjs +3 -3
- package/esm2022/loading/lib/loading.component.mjs +3 -3
- package/esm2022/loading/lib/loading.directive.mjs +3 -3
- package/esm2022/loading/lib/loading.module.mjs +4 -4
- package/esm2022/loading/lib/loading.service.mjs +3 -3
- package/esm2022/menu/lib/menu.component.mjs +3 -3
- package/esm2022/menu/lib/menu.module.mjs +4 -4
- package/esm2022/mixin/lib/base-components.class.mjs +3 -3
- package/esm2022/mixin/lib/base-menu-mixin.class.mjs +3 -3
- package/esm2022/mixin/lib/value-mixin.class.mjs +4 -1
- package/esm2022/notification/lib/notification.component.mjs +3 -3
- package/esm2022/notification/lib/notification.module.mjs +4 -4
- package/esm2022/notification/lib/notification.service.mjs +3 -3
- package/esm2022/number-box/lib/number-box.component.mjs +3 -3
- package/esm2022/number-box/lib/number-box.module.mjs +4 -4
- package/esm2022/otp/lib/otp.component.mjs +3 -3
- package/esm2022/otp/lib/otp.module.mjs +4 -4
- package/esm2022/page/lib/base-page.class.mjs +3 -3
- package/esm2022/page/lib/page.component.mjs +3 -3
- package/esm2022/page/lib/page.module.mjs +4 -4
- package/esm2022/password-box/lib/password-box.component.mjs +3 -3
- package/esm2022/password-box/lib/password-box.module.mjs +4 -4
- package/esm2022/popover/lib/dropdown-component.class.mjs +3 -3
- package/esm2022/popover/lib/popover.component.mjs +3 -3
- package/esm2022/popover/lib/popover.module.mjs +4 -4
- package/esm2022/popup/lib/popup.component.mjs +3 -3
- package/esm2022/popup/lib/popup.module.mjs +4 -4
- package/esm2022/popup/lib/popup.service.mjs +3 -3
- package/esm2022/progress-bar/lib/progress-bar.component.mjs +3 -3
- package/esm2022/progress-bar/lib/progress-bar.module.mjs +4 -4
- package/esm2022/radio/lib/radio.component.mjs +3 -3
- package/esm2022/radio/lib/radio.module.mjs +4 -4
- package/esm2022/range-slider/lib/range-slider.component.mjs +36 -23
- package/esm2022/range-slider/lib/range-slider.module.mjs +7 -6
- package/esm2022/result/lib/result.component.mjs +3 -3
- package/esm2022/result/lib/result.module.mjs +4 -4
- package/esm2022/search-box/lib/search-box.component.mjs +3 -3
- package/esm2022/search-box/lib/search-box.module.mjs +4 -4
- package/esm2022/select-box/lib/select-box.component.mjs +3 -3
- package/esm2022/select-box/lib/select-box.module.mjs +4 -4
- package/esm2022/selection-list/lib/selection-list.component.mjs +3 -3
- package/esm2022/selection-list/lib/selection-list.module.mjs +4 -4
- package/esm2022/switch/lib/switch-content.component.mjs +3 -3
- package/esm2022/switch/lib/switch.component.mjs +27 -25
- package/esm2022/switch/lib/switch.module.mjs +4 -4
- package/esm2022/tabs/lib/tab-content.directive.mjs +3 -3
- package/esm2022/tabs/lib/tab-item.component.mjs +3 -3
- package/esm2022/tabs/lib/tabs.component.mjs +3 -3
- package/esm2022/tabs/lib/tabs.module.mjs +4 -4
- package/esm2022/tag/lib/tag.component.mjs +3 -3
- package/esm2022/tag/lib/tag.module.mjs +4 -4
- package/esm2022/textarea/lib/textarea.component.mjs +3 -3
- package/esm2022/textarea/lib/textarea.module.mjs +4 -4
- package/esm2022/textbox/lib/mask-options.directive.mjs +3 -3
- package/esm2022/textbox/lib/textbox.component.mjs +39 -21
- package/esm2022/textbox/lib/textbox.module.mjs +4 -4
- package/esm2022/time-box/lib/time-box.component.mjs +4 -6
- package/esm2022/time-box/lib/time-box.module.mjs +4 -4
- package/esm2022/toast/lib/toast.component.mjs +3 -3
- package/esm2022/toast/lib/toast.module.mjs +4 -4
- package/esm2022/toast/lib/toast.service.mjs +3 -3
- package/esm2022/tooltip/lib/tooltip.component.mjs +3 -3
- package/esm2022/tooltip/lib/tooltip.directive.mjs +3 -3
- package/esm2022/tooltip/lib/tooltip.module.mjs +4 -4
- package/esm2022/uploader/lib/uploader.component.mjs +3 -3
- package/esm2022/uploader/lib/uploader.module.mjs +4 -4
- package/fesm2022/acorex-components-action-sheet.mjs +10 -10
- package/fesm2022/acorex-components-alert.mjs +16 -14
- package/fesm2022/acorex-components-alert.mjs.map +1 -1
- package/fesm2022/acorex-components-avatar.mjs +10 -10
- package/fesm2022/acorex-components-badge.mjs +8 -8
- package/fesm2022/acorex-components-badge.mjs.map +1 -1
- package/fesm2022/acorex-components-breadcrumbs.mjs +18 -28
- package/fesm2022/acorex-components-breadcrumbs.mjs.map +1 -1
- package/fesm2022/acorex-components-button.mjs +13 -13
- package/fesm2022/acorex-components-calendar.mjs +26 -24
- package/fesm2022/acorex-components-calendar.mjs.map +1 -1
- package/fesm2022/acorex-components-checkbox.mjs +47 -24
- package/fesm2022/acorex-components-checkbox.mjs.map +1 -1
- package/fesm2022/acorex-components-chips.mjs +13 -15
- package/fesm2022/acorex-components-chips.mjs.map +1 -1
- package/fesm2022/acorex-components-collapse.mjs +110 -41
- package/fesm2022/acorex-components-collapse.mjs.map +1 -1
- package/fesm2022/acorex-components-color-palette.mjs +445 -461
- package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
- package/fesm2022/acorex-components-color-picker.mjs +8 -11
- package/fesm2022/acorex-components-color-picker.mjs.map +1 -1
- package/fesm2022/acorex-components-common.mjs +192 -97
- package/fesm2022/acorex-components-common.mjs.map +1 -1
- package/fesm2022/acorex-components-context-menu.mjs +7 -7
- package/fesm2022/acorex-components-data-pager.mjs +31 -31
- package/fesm2022/acorex-components-data-table.mjs +13 -13
- package/fesm2022/acorex-components-date-picker.mjs +7 -7
- package/fesm2022/acorex-components-decorators.mjs +60 -45
- package/fesm2022/acorex-components-decorators.mjs.map +1 -1
- package/fesm2022/acorex-components-dialog.mjs +10 -10
- package/fesm2022/acorex-components-drawer.mjs +11 -10
- package/fesm2022/acorex-components-drawer.mjs.map +1 -1
- package/fesm2022/acorex-components-dropdown.mjs +7 -7
- package/fesm2022/acorex-components-form.mjs +17 -19
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-image.mjs +7 -7
- package/fesm2022/acorex-components-label.mjs +8 -8
- package/fesm2022/acorex-components-label.mjs.map +1 -1
- package/fesm2022/acorex-components-loading.mjs +16 -16
- package/fesm2022/acorex-components-menu.mjs +7 -7
- package/fesm2022/acorex-components-mixin.mjs +7 -5
- package/fesm2022/acorex-components-mixin.mjs.map +1 -1
- package/fesm2022/acorex-components-notification.mjs +10 -10
- package/fesm2022/acorex-components-number-box.mjs +7 -7
- package/fesm2022/acorex-components-otp.mjs +7 -7
- package/fesm2022/acorex-components-page.mjs +10 -10
- package/fesm2022/acorex-components-password-box.mjs +7 -7
- package/fesm2022/acorex-components-popover.mjs +10 -10
- package/fesm2022/acorex-components-popup.mjs +10 -10
- package/fesm2022/acorex-components-progress-bar.mjs +7 -7
- package/fesm2022/acorex-components-radio.mjs +7 -7
- package/fesm2022/acorex-components-range-slider.mjs +40 -28
- package/fesm2022/acorex-components-range-slider.mjs.map +1 -1
- package/fesm2022/acorex-components-result.mjs +7 -7
- package/fesm2022/acorex-components-search-box.mjs +7 -7
- package/fesm2022/acorex-components-search-box.mjs.map +1 -1
- package/fesm2022/acorex-components-select-box.mjs +7 -7
- package/fesm2022/acorex-components-selection-list.mjs +7 -7
- package/fesm2022/acorex-components-switch.mjs +33 -32
- package/fesm2022/acorex-components-switch.mjs.map +1 -1
- package/fesm2022/acorex-components-tabs.mjs +13 -13
- package/fesm2022/acorex-components-tag.mjs +7 -7
- package/fesm2022/acorex-components-textarea.mjs +7 -7
- package/fesm2022/acorex-components-textbox.mjs +45 -28
- package/fesm2022/acorex-components-textbox.mjs.map +1 -1
- package/fesm2022/acorex-components-time-box.mjs +7 -9
- package/fesm2022/acorex-components-time-box.mjs.map +1 -1
- package/fesm2022/acorex-components-toast.mjs +10 -10
- package/fesm2022/acorex-components-tooltip.mjs +10 -10
- package/fesm2022/acorex-components-uploader.mjs +7 -7
- package/fesm2022/acorex-components.mjs.map +1 -1
- package/mixin/lib/base-components.class.d.ts +2 -2
- package/mixin/lib/base-menu-mixin.class.d.ts +5 -5
- package/mixin/lib/button-mixin.class.d.ts +2 -2
- package/mixin/lib/clickable-mixin.class.d.ts +2 -2
- package/mixin/lib/color-look-mixing.class.d.ts +2 -2
- package/mixin/lib/datalist-component.class.d.ts +10 -10
- package/mixin/lib/dropdown-mixin.class.d.ts +2 -2
- package/mixin/lib/interactive-mixin.class.d.ts +4 -4
- package/mixin/lib/loading-mixin.class.d.ts +2 -2
- package/mixin/lib/mixin.class.d.ts +62 -61
- package/mixin/lib/page-component.class.d.ts +2 -2
- package/mixin/lib/selection-component.class.d.ts +2 -2
- package/mixin/lib/sizable-mixin.class.d.ts +2 -2
- package/mixin/lib/textbox-mixin.class.d.ts +2 -2
- package/mixin/lib/value-mixin.class.d.ts +9 -8
- package/package.json +25 -25
- package/range-slider/lib/range-slider.component.d.ts +8 -9
- package/range-slider/lib/range-slider.module.d.ts +3 -2
- package/switch/lib/switch.component.d.ts +10 -8
- package/tabs/lib/tab-item.component.d.ts +2 -2
- package/textbox/lib/textbox.component.d.ts +8 -8
- package/time-box/lib/time-box.component.d.ts +1 -1
@@ -12,10 +12,10 @@ class AXTooltipComponent extends AXBaseComponentMixin {
|
|
12
12
|
super(elementRef, cdr);
|
13
13
|
this.text = '';
|
14
14
|
}
|
15
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
16
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.
|
15
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
16
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: AXTooltipComponent, selector: "ax-tooltip", inputs: { text: "text", position: "position" }, usesInheritance: true, ngImport: i0, template: "<div class=\"ax-tooltip-container\">\n <div class=\"ax-tooltip\">\n {{ text }}\n </div>\n <div class=\"ax-tooltip-tringle ax-tooltip-tringle-{{ position }}\"></div>\n</div>\n", styles: [".ax-dark .ax-tooltip-container{--ax-tooltip-background: 255, 255, 255;--ax-tooltip-color: 97, 97, 97}.ax-tooltip-container{position:relative;--ax-tooltip-background: 97, 97, 97;--ax-tooltip-color: 255, 255, 255}.ax-tooltip-container .ax-tooltip{display:block;padding:.25rem .5rem;background-color:rgba(var(--ax-tooltip-background));color:rgba(var(--ax-tooltip-color));border-radius:.25rem;font-size:.75rem;font-weight:400}\n"], encapsulation: i0.ViewEncapsulation.None }); }
|
17
17
|
}
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipComponent, decorators: [{
|
19
19
|
type: Component,
|
20
20
|
args: [{ selector: 'ax-tooltip', encapsulation: ViewEncapsulation.None, template: "<div class=\"ax-tooltip-container\">\n <div class=\"ax-tooltip\">\n {{ text }}\n </div>\n <div class=\"ax-tooltip-tringle ax-tooltip-tringle-{{ position }}\"></div>\n</div>\n", styles: [".ax-dark .ax-tooltip-container{--ax-tooltip-background: 255, 255, 255;--ax-tooltip-color: 97, 97, 97}.ax-tooltip-container{position:relative;--ax-tooltip-background: 97, 97, 97;--ax-tooltip-color: 255, 255, 255}.ax-tooltip-container .ax-tooltip{display:block;padding:.25rem .5rem;background-color:rgba(var(--ax-tooltip-background));color:rgba(var(--ax-tooltip-color));border-radius:.25rem;font-size:.75rem;font-weight:400}\n"] }]
|
21
21
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { text: [{
|
@@ -155,10 +155,10 @@ class AXTooltipDirective {
|
|
155
155
|
this.overlayRef.detach();
|
156
156
|
this.cdr.markForCheck();
|
157
157
|
}
|
158
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
159
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.
|
158
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipDirective, deps: [{ token: i1.Overlay }, { token: i1.OverlayPositionBuilder }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
159
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.6", type: AXTooltipDirective, selector: "[axTooltip]", inputs: { text: ["axTooltip", "text"], position: ["axTooltipPosition", "position"] }, host: { listeners: { "mouseenter": "show()", "mouseleave": "hide()" } }, ngImport: i0 }); }
|
160
160
|
}
|
161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
161
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipDirective, decorators: [{
|
162
162
|
type: Directive,
|
163
163
|
args: [{ selector: '[axTooltip]' }]
|
164
164
|
}], ctorParameters: function () { return [{ type: i1.Overlay }, { type: i1.OverlayPositionBuilder }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { text: [{
|
@@ -178,11 +178,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
178
178
|
const COMPONENT = [AXTooltipComponent, AXTooltipDirective];
|
179
179
|
const MODULES = [CommonModule, OverlayModule];
|
180
180
|
class AXTooltipModule {
|
181
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
182
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.
|
183
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.
|
181
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
182
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipModule, declarations: [AXTooltipComponent, AXTooltipDirective], imports: [CommonModule, OverlayModule], exports: [AXTooltipComponent, AXTooltipDirective] }); }
|
183
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipModule, imports: [MODULES] }); }
|
184
184
|
}
|
185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXTooltipModule, decorators: [{
|
186
186
|
type: NgModule,
|
187
187
|
args: [{
|
188
188
|
declarations: [...COMPONENT],
|
@@ -73,10 +73,10 @@ class AXUploaderComponent extends AXBaseComponentMixin {
|
|
73
73
|
get __defaultClass() {
|
74
74
|
return !this._placeholder?.nativeElement.childNodes.length;
|
75
75
|
}
|
76
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
77
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.
|
76
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXUploaderComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i1.AXFileService }], target: i0.ɵɵFactoryTarget.Component }); }
|
77
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: AXUploaderComponent, selector: "ax-uploader", inputs: { multiple: "multiple", accept: "accept" }, outputs: { onValueChanged: "onValueChanged" }, host: { listeners: { "click": "_handleClick($event)", "drop": "_handleDrop($event)" }, properties: { "class.ax-look-default": "this.__defaultClass" } }, viewQueries: [{ propertyName: "_placeholder", first: true, predicate: ["contentRef"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <div #contentRef><ng-content></ng-content></div>\n</ng-container>\n<ng-container *ngIf=\"contentRef.childNodes.length == 0\">\n <i class=\"ax-icon ax-icon-upload upload-icon\"></i>\n <div class=\"ax-uploader-hint\" *ngIf=\"_showText\">Drag your file here or, <span class=\"ax-text-primary-500\">click to\n browse</span></div>\n</ng-container>", styles: ["ax-uploader.ax-look-default{position:relative;width:100%;color:rgba(var(--ax-color-text-default));border-radius:var(--ax-rounded-border-default);border-width:2px;border-style:dashed;border-color:rgba(var(--ax-color-border-default));display:flex;align-items:center;justify-content:center;cursor:pointer;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;background-position:center;background-size:cover}ax-uploader.ax-look-default:hover,ax-uploader.ax-look-default.ax-state-hover{border-color:rgba(var(--ax-color-primary-500));color:rgba(var(--ax-color-primary-500))}ax-uploader.ax-look-default:before{content:\"\";padding-bottom:100%}ax-uploader.ax-look-default .upload-icon{font-size:3rem}ax-uploader.ax-look-default .ax-uploader-hint{padding:1rem;text-align:center}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
78
78
|
}
|
79
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
79
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXUploaderComponent, decorators: [{
|
80
80
|
type: Component,
|
81
81
|
args: [{ selector: 'ax-uploader', encapsulation: ViewEncapsulation.None, template: "<ng-container>\n <div #contentRef><ng-content></ng-content></div>\n</ng-container>\n<ng-container *ngIf=\"contentRef.childNodes.length == 0\">\n <i class=\"ax-icon ax-icon-upload upload-icon\"></i>\n <div class=\"ax-uploader-hint\" *ngIf=\"_showText\">Drag your file here or, <span class=\"ax-text-primary-500\">click to\n browse</span></div>\n</ng-container>", styles: ["ax-uploader.ax-look-default{position:relative;width:100%;color:rgba(var(--ax-color-text-default));border-radius:var(--ax-rounded-border-default);border-width:2px;border-style:dashed;border-color:rgba(var(--ax-color-border-default));display:flex;align-items:center;justify-content:center;cursor:pointer;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s;background-position:center;background-size:cover}ax-uploader.ax-look-default:hover,ax-uploader.ax-look-default.ax-state-hover{border-color:rgba(var(--ax-color-primary-500));color:rgba(var(--ax-color-primary-500))}ax-uploader.ax-look-default:before{content:\"\";padding-bottom:100%}ax-uploader.ax-look-default .upload-icon{font-size:3rem}ax-uploader.ax-look-default .ax-uploader-hint{padding:1rem;text-align:center}\n"] }]
|
82
82
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1.AXFileService }]; }, propDecorators: { onValueChanged: [{
|
@@ -100,11 +100,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
|
|
100
100
|
}] } });
|
101
101
|
|
102
102
|
class AXUploaderModule {
|
103
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.
|
104
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.
|
105
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.
|
103
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXUploaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
104
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.6", ngImport: i0, type: AXUploaderModule, declarations: [AXUploaderComponent], imports: [CommonModule, AXDecoratorModule], exports: [AXUploaderComponent] }); }
|
105
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXUploaderModule, imports: [CommonModule, AXDecoratorModule] }); }
|
106
106
|
}
|
107
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.
|
107
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: AXUploaderModule, decorators: [{
|
108
108
|
type: NgModule,
|
109
109
|
args: [{
|
110
110
|
declarations: [AXUploaderComponent],
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"acorex-components.mjs","sources":["../../../../libs/components/
|
1
|
+
{"version":3,"file":"acorex-components.mjs","sources":["../../../../libs/components/index.ts","../../../../libs/components/acorex-components.ts"],"sourcesContent":["export default {};\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"AAAA,YAAe,EAAE;;ACAjB;;AAEG"}
|
@@ -57,9 +57,9 @@ export declare function _BaseComponenetMixin<TBase extends Constructor<AXBaseCom
|
|
57
57
|
/**
|
58
58
|
* A token that specifies the layout direction of component.
|
59
59
|
*/
|
60
|
-
"__#
|
60
|
+
"__#5171@#rtl": boolean;
|
61
61
|
rtl: boolean;
|
62
|
-
"__#
|
62
|
+
"__#5171@#elementRef": ElementRef<any>;
|
63
63
|
_cdr: ChangeDetectorRef;
|
64
64
|
_isInited: boolean;
|
65
65
|
_isRendered: boolean;
|
@@ -6,8 +6,8 @@ export declare function _BaseMenuComponentMixin<TBase extends Constructor<AXBase
|
|
6
6
|
new (...args: any[]): {
|
7
7
|
textField: string;
|
8
8
|
valueField: string;
|
9
|
-
"__#
|
10
|
-
"__#
|
9
|
+
"__#5172@#isLoading": boolean;
|
10
|
+
"__#5172@#loadedItems": any;
|
11
11
|
visibleField: string;
|
12
12
|
disableField: string;
|
13
13
|
hasChildField: string;
|
@@ -16,7 +16,7 @@ export declare function _BaseMenuComponentMixin<TBase extends Constructor<AXBase
|
|
16
16
|
displayMode: 'horizontal' | 'vertical' | 'sidemenu';
|
17
17
|
dividerField: string;
|
18
18
|
onMenuItemClick: EventEmitter<AXItemClickEvent<any>>;
|
19
|
-
"__#
|
19
|
+
"__#5172@#items": any;
|
20
20
|
items: any;
|
21
21
|
readonly displayItems: any;
|
22
22
|
readonly isLoading: boolean;
|
@@ -27,9 +27,9 @@ export declare function _BaseMenuComponentMixin<TBase extends Constructor<AXBase
|
|
27
27
|
_getItemDisplayTextTemplte(item: any): any;
|
28
28
|
refresh(): void;
|
29
29
|
id: string;
|
30
|
-
"__#
|
30
|
+
"__#5171@#rtl": boolean;
|
31
31
|
rtl: boolean;
|
32
|
-
"__#
|
32
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
33
33
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
34
34
|
_isInited: boolean;
|
35
35
|
_isRendered: boolean;
|
@@ -26,9 +26,9 @@ export declare function _ButtonComponentMixin<TBase extends Constructor<AXBaseCo
|
|
26
26
|
'ax-state-selected': boolean;
|
27
27
|
};
|
28
28
|
id: string;
|
29
|
-
"__#
|
29
|
+
"__#5171@#rtl": boolean;
|
30
30
|
rtl: boolean;
|
31
|
-
"__#
|
31
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
32
32
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
33
33
|
_isInited: boolean;
|
34
34
|
_isRendered: boolean;
|
@@ -11,9 +11,9 @@ export declare function _ClickableComponenetMixin<TBase extends Constructor<AXBa
|
|
11
11
|
onClick: EventEmitter<AXClickEvent>;
|
12
12
|
_emitOnClickEvent(e: MouseEvent): void;
|
13
13
|
id: string;
|
14
|
-
"__#
|
14
|
+
"__#5171@#rtl": boolean;
|
15
15
|
rtl: boolean;
|
16
|
-
"__#
|
16
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
17
17
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
18
18
|
_isInited: boolean;
|
19
19
|
_isRendered: boolean;
|
@@ -17,9 +17,9 @@ export declare function _ColorLookComponentMixin<TBase extends Constructor<AXBas
|
|
17
17
|
*/
|
18
18
|
look: AXStyleLookType;
|
19
19
|
id: string;
|
20
|
-
"__#
|
20
|
+
"__#5171@#rtl": boolean;
|
21
21
|
rtl: boolean;
|
22
|
-
"__#
|
22
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
23
23
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
24
24
|
_isInited: boolean;
|
25
25
|
_isRendered: boolean;
|
@@ -7,16 +7,16 @@ export declare function _DatalistComponenetMixin<TBase extends Constructor<AXBas
|
|
7
7
|
textField: string;
|
8
8
|
childrenField: string;
|
9
9
|
pageSize: number;
|
10
|
-
"__#
|
11
|
-
"__#
|
12
|
-
"__#
|
13
|
-
"__#
|
14
|
-
"__#
|
15
|
-
"__#
|
10
|
+
"__#5173@#currentPage": number;
|
11
|
+
"__#5173@#isLoading": boolean;
|
12
|
+
"__#5173@#loadedItems": any[];
|
13
|
+
"__#5173@#flatItems": any[];
|
14
|
+
"__#5173@#totalItems": number;
|
15
|
+
"__#5173@#isLazy": boolean;
|
16
16
|
readonly totalCount: number;
|
17
17
|
readonly isLazy: boolean;
|
18
18
|
readonly loadedCount: number;
|
19
|
-
"__#
|
19
|
+
"__#5173@#items": AXDataListItems;
|
20
20
|
items: AXDataListItems;
|
21
21
|
readonly displayItems: any[];
|
22
22
|
readonly flatItems: any[];
|
@@ -26,15 +26,15 @@ export declare function _DatalistComponenetMixin<TBase extends Constructor<AXBas
|
|
26
26
|
searchQuery?: string;
|
27
27
|
}): void;
|
28
28
|
_onDataLoaded(): void;
|
29
|
-
"__#
|
29
|
+
"__#5173@#generateFlatItems"(): void;
|
30
30
|
_getItemDisplayTextTemplte(item: any): any;
|
31
31
|
_trackByFunction(item: any): any;
|
32
32
|
refresh(): void;
|
33
33
|
empty(): void;
|
34
34
|
id: string;
|
35
|
-
"__#
|
35
|
+
"__#5171@#rtl": boolean;
|
36
36
|
rtl: boolean;
|
37
|
-
"__#
|
37
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
38
38
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
39
39
|
_isInited: boolean;
|
40
40
|
_isRendered: boolean;
|
@@ -23,9 +23,9 @@ export declare function _DropdownComponenetMixin<TBase extends Constructor<AXBas
|
|
23
23
|
open(): void;
|
24
24
|
readonly isOpen: boolean;
|
25
25
|
id: string;
|
26
|
-
"__#
|
26
|
+
"__#5171@#rtl": boolean;
|
27
27
|
rtl: boolean;
|
28
|
-
"__#
|
28
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
29
29
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
30
30
|
_isInited: boolean;
|
31
31
|
_isRendered: boolean;
|
@@ -3,12 +3,12 @@ import { AXBaseComponent } from "./base-components.class";
|
|
3
3
|
import { Constructor } from "./constratctor";
|
4
4
|
import { AXFocusEvent } from "@acorex/components/common";
|
5
5
|
export declare function _InteractiveComponenetMixin<TBase extends Constructor<AXBaseComponent>>(Base: TBase): (abstract new (...args: any[]) => {
|
6
|
-
"__#
|
6
|
+
"__#5174@#disabled": boolean;
|
7
7
|
/**
|
8
8
|
* If set to true, it disables the component.
|
9
9
|
*/
|
10
10
|
disabled: boolean;
|
11
|
-
"__#
|
11
|
+
"__#5174@#tabIndex": number;
|
12
12
|
/**
|
13
13
|
* Specifies the tabindex of the component.
|
14
14
|
*/
|
@@ -34,9 +34,9 @@ export declare function _InteractiveComponenetMixin<TBase extends Constructor<AX
|
|
34
34
|
*/
|
35
35
|
hasFocus(): boolean;
|
36
36
|
id: string;
|
37
|
-
"__#
|
37
|
+
"__#5171@#rtl": boolean;
|
38
38
|
rtl: boolean;
|
39
|
-
"__#
|
39
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
40
40
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
41
41
|
_isInited: boolean;
|
42
42
|
_isRendered: boolean;
|
@@ -16,9 +16,9 @@ export declare function _LoadingComponenetMixin<TBase extends Constructor<AXBase
|
|
16
16
|
loadingText: string;
|
17
17
|
_onInternalInit(): void;
|
18
18
|
id: string;
|
19
|
-
"__#
|
19
|
+
"__#5171@#rtl": boolean;
|
20
20
|
rtl: boolean;
|
21
|
-
"__#
|
21
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
22
22
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
23
23
|
_isInited: boolean;
|
24
24
|
_isRendered: boolean;
|
@@ -2,9 +2,9 @@ import { AXBaseComponent } from "./base-components.class";
|
|
2
2
|
export declare const AXBaseComponentMixin: {
|
3
3
|
new (...args: any[]): {
|
4
4
|
id: string;
|
5
|
-
"__#
|
5
|
+
"__#5171@#rtl": boolean;
|
6
6
|
rtl: boolean;
|
7
|
-
"__#
|
7
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
8
8
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
9
9
|
_isInited: boolean;
|
10
10
|
_isRendered: boolean;
|
@@ -30,9 +30,9 @@ export declare const AXSizableComponentMixin: {
|
|
30
30
|
size: import("./base-components.class").AXElementSize;
|
31
31
|
_onInternalInit(): void;
|
32
32
|
id: string;
|
33
|
-
"__#
|
33
|
+
"__#5171@#rtl": boolean;
|
34
34
|
rtl: boolean;
|
35
|
-
"__#
|
35
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
36
36
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
37
37
|
_isInited: boolean;
|
38
38
|
_isRendered: boolean;
|
@@ -54,9 +54,9 @@ export declare const AXSizableComponentMixin: {
|
|
54
54
|
} & {
|
55
55
|
new (...args: any[]): {
|
56
56
|
id: string;
|
57
|
-
"__#
|
57
|
+
"__#5171@#rtl": boolean;
|
58
58
|
rtl: boolean;
|
59
|
-
"__#
|
59
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
60
60
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
61
61
|
_isInited: boolean;
|
62
62
|
_isRendered: boolean;
|
@@ -82,9 +82,9 @@ export declare const AXInteractiveComponenetMixin: {
|
|
82
82
|
size: import("./base-components.class").AXElementSize;
|
83
83
|
_onInternalInit(): void;
|
84
84
|
id: string;
|
85
|
-
"__#
|
85
|
+
"__#5171@#rtl": boolean;
|
86
86
|
rtl: boolean;
|
87
|
-
"__#
|
87
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
88
88
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
89
89
|
_isInited: boolean;
|
90
90
|
_isRendered: boolean;
|
@@ -104,9 +104,9 @@ export declare const AXInteractiveComponenetMixin: {
|
|
104
104
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
105
105
|
};
|
106
106
|
} & (abstract new (...args: any[]) => {
|
107
|
-
"__#
|
107
|
+
"__#5174@#disabled": boolean;
|
108
108
|
disabled: boolean;
|
109
|
-
"__#
|
109
|
+
"__#5174@#tabIndex": number;
|
110
110
|
tabIndex: number;
|
111
111
|
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
112
112
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -115,9 +115,9 @@ export declare const AXInteractiveComponenetMixin: {
|
|
115
115
|
focus(): void;
|
116
116
|
hasFocus(): boolean;
|
117
117
|
id: string;
|
118
|
-
"__#
|
118
|
+
"__#5171@#rtl": boolean;
|
119
119
|
rtl: boolean;
|
120
|
-
"__#
|
120
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
121
121
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
122
122
|
_isInited: boolean;
|
123
123
|
_isRendered: boolean;
|
@@ -138,9 +138,9 @@ export declare const AXInteractiveComponenetMixin: {
|
|
138
138
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
139
139
|
}) & typeof AXBaseComponent;
|
140
140
|
export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
141
|
-
"__#
|
141
|
+
"__#5174@#disabled": boolean;
|
142
142
|
disabled: boolean;
|
143
|
-
"__#
|
143
|
+
"__#5174@#tabIndex": number;
|
144
144
|
tabIndex: number;
|
145
145
|
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
146
146
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -149,9 +149,9 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
149
149
|
focus(): void;
|
150
150
|
hasFocus(): boolean;
|
151
151
|
id: string;
|
152
|
-
"__#
|
152
|
+
"__#5171@#rtl": boolean;
|
153
153
|
rtl: boolean;
|
154
|
-
"__#
|
154
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
155
155
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
156
156
|
_isInited: boolean;
|
157
157
|
_isRendered: boolean;
|
@@ -175,9 +175,9 @@ export declare const AXBaseClickableMixin: (abstract new (...args: any[]) => {
|
|
175
175
|
onClick: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXClickEvent>;
|
176
176
|
_emitOnClickEvent(e: MouseEvent): void;
|
177
177
|
id: string;
|
178
|
-
"__#
|
178
|
+
"__#5171@#rtl": boolean;
|
179
179
|
rtl: boolean;
|
180
|
-
"__#
|
180
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
181
181
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
182
182
|
_isInited: boolean;
|
183
183
|
_isRendered: boolean;
|
@@ -203,9 +203,9 @@ export declare const AXBaseButtonMixin: {
|
|
203
203
|
size: import("./base-components.class").AXElementSize;
|
204
204
|
_onInternalInit(): void;
|
205
205
|
id: string;
|
206
|
-
"__#
|
206
|
+
"__#5171@#rtl": boolean;
|
207
207
|
rtl: boolean;
|
208
|
-
"__#
|
208
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
209
209
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
210
210
|
_isInited: boolean;
|
211
211
|
_isRendered: boolean;
|
@@ -225,9 +225,9 @@ export declare const AXBaseButtonMixin: {
|
|
225
225
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
226
226
|
};
|
227
227
|
} & (abstract new (...args: any[]) => {
|
228
|
-
"__#
|
228
|
+
"__#5174@#disabled": boolean;
|
229
229
|
disabled: boolean;
|
230
|
-
"__#
|
230
|
+
"__#5174@#tabIndex": number;
|
231
231
|
tabIndex: number;
|
232
232
|
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
233
233
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -236,9 +236,9 @@ export declare const AXBaseButtonMixin: {
|
|
236
236
|
focus(): void;
|
237
237
|
hasFocus(): boolean;
|
238
238
|
id: string;
|
239
|
-
"__#
|
239
|
+
"__#5171@#rtl": boolean;
|
240
240
|
rtl: boolean;
|
241
|
-
"__#
|
241
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
242
242
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
243
243
|
_isInited: boolean;
|
244
244
|
_isRendered: boolean;
|
@@ -262,9 +262,9 @@ export declare const AXBaseButtonMixin: {
|
|
262
262
|
onClick: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXClickEvent>;
|
263
263
|
_emitOnClickEvent(e: MouseEvent): void;
|
264
264
|
id: string;
|
265
|
-
"__#
|
265
|
+
"__#5171@#rtl": boolean;
|
266
266
|
rtl: boolean;
|
267
|
-
"__#
|
267
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
268
268
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
269
269
|
_isInited: boolean;
|
270
270
|
_isRendered: boolean;
|
@@ -293,9 +293,9 @@ export declare const AXBaseButtonMixin: {
|
|
293
293
|
_look?: import("dist/libs/components/common").AXStyleLookType;
|
294
294
|
look: import("dist/libs/components/common").AXStyleLookType;
|
295
295
|
id: string;
|
296
|
-
"__#
|
296
|
+
"__#5171@#rtl": boolean;
|
297
297
|
rtl: boolean;
|
298
|
-
"__#
|
298
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
299
299
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
300
300
|
_isInited: boolean;
|
301
301
|
_isRendered: boolean;
|
@@ -331,9 +331,9 @@ export declare const AXBaseButtonMixin: {
|
|
331
331
|
'ax-state-selected': boolean;
|
332
332
|
};
|
333
333
|
id: string;
|
334
|
-
"__#
|
334
|
+
"__#5171@#rtl": boolean;
|
335
335
|
rtl: boolean;
|
336
|
-
"__#
|
336
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
337
337
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
338
338
|
_isInited: boolean;
|
339
339
|
_isRendered: boolean;
|
@@ -360,9 +360,9 @@ export declare const AXBaseTextBoxMixin: {
|
|
360
360
|
size: import("./base-components.class").AXElementSize;
|
361
361
|
_onInternalInit(): void;
|
362
362
|
id: string;
|
363
|
-
"__#
|
363
|
+
"__#5171@#rtl": boolean;
|
364
364
|
rtl: boolean;
|
365
|
-
"__#
|
365
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
366
366
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
367
367
|
_isInited: boolean;
|
368
368
|
_isRendered: boolean;
|
@@ -382,9 +382,9 @@ export declare const AXBaseTextBoxMixin: {
|
|
382
382
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
383
383
|
};
|
384
384
|
} & (abstract new (...args: any[]) => {
|
385
|
-
"__#
|
385
|
+
"__#5174@#disabled": boolean;
|
386
386
|
disabled: boolean;
|
387
|
-
"__#
|
387
|
+
"__#5174@#tabIndex": number;
|
388
388
|
tabIndex: number;
|
389
389
|
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
390
390
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -393,9 +393,9 @@ export declare const AXBaseTextBoxMixin: {
|
|
393
393
|
focus(): void;
|
394
394
|
hasFocus(): boolean;
|
395
395
|
id: string;
|
396
|
-
"__#
|
396
|
+
"__#5171@#rtl": boolean;
|
397
397
|
rtl: boolean;
|
398
|
-
"__#
|
398
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
399
399
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
400
400
|
_isInited: boolean;
|
401
401
|
_isRendered: boolean;
|
@@ -419,17 +419,17 @@ export declare const AXBaseTextBoxMixin: {
|
|
419
419
|
onValueChanged: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXValueChangedEvent<any>>;
|
420
420
|
valueChange: import("@angular/core").EventEmitter<any>;
|
421
421
|
stateChange: import("@angular/core").EventEmitter<import("./base-components.class").AXComponentState>;
|
422
|
-
"__#
|
422
|
+
"__#5175@#readonly": boolean;
|
423
423
|
readonly: boolean;
|
424
|
-
"__#
|
424
|
+
"__#5175@#allowNull": boolean;
|
425
425
|
allowNull: boolean;
|
426
|
-
"__#
|
426
|
+
"__#5175@#name": string;
|
427
427
|
name: string;
|
428
|
-
"__#
|
428
|
+
"__#5175@#isUserInteraction": boolean;
|
429
429
|
readonly isUserInteraction: boolean;
|
430
|
-
"__#
|
430
|
+
"__#5175@#value": any;
|
431
431
|
value: any;
|
432
|
-
"__#
|
432
|
+
"__#5175@#state": import("./base-components.class").AXComponentState;
|
433
433
|
state: import("./base-components.class").AXComponentState;
|
434
434
|
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
435
435
|
_internalSetValue(value: any): any;
|
@@ -437,6 +437,7 @@ export declare const AXBaseTextBoxMixin: {
|
|
437
437
|
_setValue(value: any): any;
|
438
438
|
_getValue(value: any): any;
|
439
439
|
_setUserInteraction(): void;
|
440
|
+
setUserInteraction(): void;
|
440
441
|
_onValueChanged(oldValue: any, newValue: any): void;
|
441
442
|
_onInternalInit(): void;
|
442
443
|
_onInternalViewInit(): void;
|
@@ -446,9 +447,9 @@ export declare const AXBaseTextBoxMixin: {
|
|
446
447
|
validate(): Promise<any>;
|
447
448
|
_setState(state: import("./base-components.class").AXComponentState, ...args: any[]): void;
|
448
449
|
id: string;
|
449
|
-
"__#
|
450
|
+
"__#5171@#rtl": boolean;
|
450
451
|
rtl: boolean;
|
451
|
-
"__#
|
452
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
452
453
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
453
454
|
_isInited: boolean;
|
454
455
|
_isRendered: boolean;
|
@@ -478,9 +479,9 @@ export declare const AXBaseTextBoxMixin: {
|
|
478
479
|
_emitOnKeyupEvent(e: KeyboardEvent): void;
|
479
480
|
_emitOnKeypressEvent(e: KeyboardEvent): void;
|
480
481
|
id: string;
|
481
|
-
"__#
|
482
|
+
"__#5171@#rtl": boolean;
|
482
483
|
rtl: boolean;
|
483
|
-
"__#
|
484
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
484
485
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
485
486
|
_isInited: boolean;
|
486
487
|
_isRendered: boolean;
|
@@ -509,9 +510,9 @@ export declare const AXBaseDropdownMixin: {
|
|
509
510
|
size: import("./base-components.class").AXElementSize;
|
510
511
|
_onInternalInit(): void;
|
511
512
|
id: string;
|
512
|
-
"__#
|
513
|
+
"__#5171@#rtl": boolean;
|
513
514
|
rtl: boolean;
|
514
|
-
"__#
|
515
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
515
516
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
516
517
|
_isInited: boolean;
|
517
518
|
_isRendered: boolean;
|
@@ -531,9 +532,9 @@ export declare const AXBaseDropdownMixin: {
|
|
531
532
|
_setOption(option: import("./base-components.class").AXComponentSetOption): void;
|
532
533
|
};
|
533
534
|
} & (abstract new (...args: any[]) => {
|
534
|
-
"__#
|
535
|
+
"__#5174@#disabled": boolean;
|
535
536
|
disabled: boolean;
|
536
|
-
"__#
|
537
|
+
"__#5174@#tabIndex": number;
|
537
538
|
tabIndex: number;
|
538
539
|
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
539
540
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -542,9 +543,9 @@ export declare const AXBaseDropdownMixin: {
|
|
542
543
|
focus(): void;
|
543
544
|
hasFocus(): boolean;
|
544
545
|
id: string;
|
545
|
-
"__#
|
546
|
+
"__#5171@#rtl": boolean;
|
546
547
|
rtl: boolean;
|
547
|
-
"__#
|
548
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
548
549
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
549
550
|
_isInited: boolean;
|
550
551
|
_isRendered: boolean;
|
@@ -578,9 +579,9 @@ export declare const AXBaseDropdownMixin: {
|
|
578
579
|
open(): void;
|
579
580
|
readonly isOpen: boolean;
|
580
581
|
id: string;
|
581
|
-
"__#
|
582
|
+
"__#5171@#rtl": boolean;
|
582
583
|
rtl: boolean;
|
583
|
-
"__#
|
584
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
584
585
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
585
586
|
_isInited: boolean;
|
586
587
|
_isRendered: boolean;
|
@@ -602,8 +603,8 @@ export declare const AXBaseMenuMixin: {
|
|
602
603
|
new (...args: any[]): {
|
603
604
|
textField: string;
|
604
605
|
valueField: string;
|
605
|
-
"__#
|
606
|
-
"__#
|
606
|
+
"__#5172@#isLoading": boolean;
|
607
|
+
"__#5172@#loadedItems": any;
|
607
608
|
visibleField: string;
|
608
609
|
disableField: string;
|
609
610
|
hasChildField: string;
|
@@ -612,7 +613,7 @@ export declare const AXBaseMenuMixin: {
|
|
612
613
|
displayMode: "horizontal" | "vertical" | "sidemenu";
|
613
614
|
dividerField: string;
|
614
615
|
onMenuItemClick: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXItemClickEvent<any>>;
|
615
|
-
"__#
|
616
|
+
"__#5172@#items": any;
|
616
617
|
items: any;
|
617
618
|
readonly displayItems: any;
|
618
619
|
readonly isLoading: boolean;
|
@@ -623,9 +624,9 @@ export declare const AXBaseMenuMixin: {
|
|
623
624
|
_getItemDisplayTextTemplte(item: any): any;
|
624
625
|
refresh(): void;
|
625
626
|
id: string;
|
626
|
-
"__#
|
627
|
+
"__#5171@#rtl": boolean;
|
627
628
|
rtl: boolean;
|
628
|
-
"__#
|
629
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
629
630
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
630
631
|
_isInited: boolean;
|
631
632
|
_isRendered: boolean;
|
@@ -654,9 +655,9 @@ export declare const AXAvatarMixin: {
|
|
654
655
|
_look?: import("dist/libs/components/common").AXStyleLookType;
|
655
656
|
look: import("dist/libs/components/common").AXStyleLookType;
|
656
657
|
id: string;
|
657
|
-
"__#
|
658
|
+
"__#5171@#rtl": boolean;
|
658
659
|
rtl: boolean;
|
659
|
-
"__#
|
660
|
+
"__#5171@#elementRef": import("@angular/core").ElementRef<any>;
|
660
661
|
_cdr: import("@angular/core").ChangeDetectorRef;
|
661
662
|
_isInited: boolean;
|
662
663
|
_isRendered: boolean;
|