@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
@@ -34,6 +34,7 @@ export declare class AXAlertComponent extends AXAlertComponent_base {
|
|
34
34
|
set visible(v: boolean);
|
35
35
|
protected ngOnInit(): void;
|
36
36
|
protected ngAfterViewInit(): void;
|
37
|
+
private _setLayout;
|
37
38
|
protected _handleOnOptionChanged(e: AXOptionChangedEvent): void;
|
38
39
|
private _setIcon;
|
39
40
|
private _applyButtonStyle;
|
@@ -51,6 +52,6 @@ export declare class AXAlertComponent extends AXAlertComponent_base {
|
|
51
52
|
show(): void;
|
52
53
|
ngOnDestroy(): void;
|
53
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXAlertComponent, never>;
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertComponent, "ax-alert", never, { "color": { "alias": "color"; "required": false; }; "timeOut": { "alias": "timeOut"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "colorChange": "colorChange"; "onClosed": "onClosed"; }, ["_iconComp", "_titleComp", "_contentComp", "_footerComp", "_buttonComps"], ["ax-
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXAlertComponent, "ax-alert", never, { "color": { "alias": "color"; "required": false; }; "timeOut": { "alias": "timeOut"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "colorChange": "colorChange"; "onClosed": "onClosed"; }, ["_iconComp", "_titleComp", "_contentComp", "_footerComp", "_buttonComps"], ["ax-button", "ax-close-button", "ax-title", "ax-icon", "ax-content", "ax-footer"], false, never>;
|
55
56
|
}
|
56
57
|
export {};
|
@@ -1,70 +1,7 @@
|
|
1
|
-
import { AXBaseComponent } from '@acorex/components/mixin';
|
2
|
-
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
3
1
|
import { AXBreadCrumbsComponent } from './breadcrumbs.component';
|
2
|
+
import { MXBaseComponent } from '@acorex/components/common';
|
4
3
|
import * as i0 from "@angular/core";
|
5
|
-
export declare
|
6
|
-
"__#5091@#disabled": boolean;
|
7
|
-
disabled: boolean;
|
8
|
-
"__#5091@#tabIndex": number;
|
9
|
-
tabIndex: number;
|
10
|
-
onFocus: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
11
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
12
|
-
onBlur: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXFocusEvent>;
|
13
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
14
|
-
focus(): void;
|
15
|
-
hasFocus(): boolean;
|
16
|
-
id: string;
|
17
|
-
"__#5088@#rtl": boolean;
|
18
|
-
rtl: boolean;
|
19
|
-
"__#5088@#elementRef": ElementRef<any>;
|
20
|
-
_cdr: ChangeDetectorRef;
|
21
|
-
_isInited: boolean;
|
22
|
-
_isRendered: boolean;
|
23
|
-
ngOnInit(): void;
|
24
|
-
ngAfterViewInit(): void;
|
25
|
-
ngOnDestroy(): void;
|
26
|
-
_getHostElement<T = HTMLElement>(): T;
|
27
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
28
|
-
_onInternalInit(): void;
|
29
|
-
_onInternalViewInit(): void;
|
30
|
-
_onInternalDestroy(): void;
|
31
|
-
onInit(): void;
|
32
|
-
onViewInit(): void;
|
33
|
-
onDestroy(): void;
|
34
|
-
_applyRtl(): void;
|
35
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
36
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
37
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
38
|
-
}) & (new (...args: any[]) => {
|
39
|
-
onClick: import("@angular/core").EventEmitter<import("dist/libs/components/common").AXClickEvent>;
|
40
|
-
_emitOnClickEvent(e: MouseEvent): void;
|
41
|
-
id: string;
|
42
|
-
"__#5088@#rtl": boolean;
|
43
|
-
rtl: boolean;
|
44
|
-
"__#5088@#elementRef": ElementRef<any>;
|
45
|
-
/**
|
46
|
-
* @ignore
|
47
|
-
*/
|
48
|
-
_cdr: ChangeDetectorRef;
|
49
|
-
_isInited: boolean;
|
50
|
-
_isRendered: boolean;
|
51
|
-
ngOnInit(): void;
|
52
|
-
ngAfterViewInit(): void;
|
53
|
-
ngOnDestroy(): void;
|
54
|
-
_getHostElement<T_2 = HTMLElement>(): T_2;
|
55
|
-
_getInnerElement<T_1_1 = HTMLElement>(): T_1_1;
|
56
|
-
_onInternalInit(): void;
|
57
|
-
_onInternalViewInit(): void;
|
58
|
-
_onInternalDestroy(): void;
|
59
|
-
onInit(): void;
|
60
|
-
onViewInit(): void;
|
61
|
-
onDestroy(): void;
|
62
|
-
_applyRtl(): void;
|
63
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
64
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
65
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
66
|
-
}) & typeof AXBaseComponent;
|
67
|
-
export declare class AXBreadCrumbsItemComponent extends AXBaseItemBreadCrumbMixin {
|
4
|
+
export declare class AXBreadCrumbsItemComponent extends MXBaseComponent {
|
68
5
|
_parent: AXBreadCrumbsComponent;
|
69
6
|
text: string;
|
70
7
|
href: string;
|
@@ -72,9 +9,8 @@ export declare class AXBreadCrumbsItemComponent extends AXBaseItemBreadCrumbMixi
|
|
72
9
|
/**
|
73
10
|
* @ignore
|
74
11
|
*/
|
75
|
-
constructor(
|
76
|
-
private __hostClick;
|
12
|
+
constructor(_parent: AXBreadCrumbsComponent);
|
77
13
|
private get __hostClass();
|
78
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXBreadCrumbsItemComponent,
|
79
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXBreadCrumbsItemComponent, "ax-breadcrumbs-item", never, { "text": { "alias": "text"; "required": false; }; "href": { "alias": "href"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, ["ax-prefix
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXBreadCrumbsItemComponent, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXBreadCrumbsItemComponent, "ax-breadcrumbs-item", never, { "text": { "alias": "text"; "required": false; }; "href": { "alias": "href"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, {}, never, ["ax-prefix", "ax-suffix"], false, never>;
|
80
16
|
}
|
@@ -4,9 +4,9 @@ import { AXClickEvent, AXItemClickEvent, AXSelectionMode, AXSelectionValueChange
|
|
4
4
|
import { AXBaseComponent } from '@acorex/components/mixin';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare const AXBaseButtonGroupMixin: (abstract new (...args: any[]) => {
|
7
|
-
"__#
|
7
|
+
"__#5174@#disabled": boolean;
|
8
8
|
disabled: boolean;
|
9
|
-
"__#
|
9
|
+
"__#5174@#tabIndex": number;
|
10
10
|
tabIndex: number;
|
11
11
|
onFocus: EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
12
12
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -15,9 +15,9 @@ export declare const AXBaseButtonGroupMixin: (abstract new (...args: any[]) => {
|
|
15
15
|
focus(): void;
|
16
16
|
hasFocus(): boolean;
|
17
17
|
id: string;
|
18
|
-
"__#
|
18
|
+
"__#5171@#rtl": boolean;
|
19
19
|
rtl: boolean;
|
20
|
-
"__#
|
20
|
+
"__#5171@#elementRef": ElementRef<any>;
|
21
21
|
_cdr: ChangeDetectorRef;
|
22
22
|
_isInited: boolean;
|
23
23
|
_isRendered: boolean;
|
@@ -44,9 +44,9 @@ export declare const AXBaseButtonGroupMixin: (abstract new (...args: any[]) => {
|
|
44
44
|
_look?: import("@acorex/components/common").AXStyleLookType;
|
45
45
|
look: import("@acorex/components/common").AXStyleLookType;
|
46
46
|
id: string;
|
47
|
-
"__#
|
47
|
+
"__#5171@#rtl": boolean;
|
48
48
|
rtl: boolean;
|
49
|
-
"__#
|
49
|
+
"__#5171@#elementRef": ElementRef<any>;
|
50
50
|
_cdr: ChangeDetectorRef;
|
51
51
|
_isInited: boolean;
|
52
52
|
_isRendered: boolean;
|
@@ -3,9 +3,9 @@ import { AXStyleColorType } from '@acorex/components/common';
|
|
3
3
|
import { AXBaseComponent } from '@acorex/components/mixin';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
6
|
-
"__#
|
6
|
+
"__#5174@#disabled": boolean;
|
7
7
|
disabled: boolean;
|
8
|
-
"__#
|
8
|
+
"__#5174@#tabIndex": number;
|
9
9
|
tabIndex: number;
|
10
10
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
11
11
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -14,9 +14,9 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
14
14
|
focus(): void;
|
15
15
|
hasFocus(): boolean;
|
16
16
|
id: string;
|
17
|
-
"__#
|
17
|
+
"__#5171@#rtl": boolean;
|
18
18
|
rtl: boolean;
|
19
|
-
"__#
|
19
|
+
"__#5171@#elementRef": ElementRef<any>;
|
20
20
|
_cdr: ChangeDetectorRef;
|
21
21
|
_isInited: boolean;
|
22
22
|
_isRendered: boolean;
|
@@ -39,9 +39,9 @@ export declare const AXBaseItemButtonMixin: (abstract new (...args: any[]) => {
|
|
39
39
|
onClick: import("@angular/core").EventEmitter<import("@acorex/components/common").AXClickEvent>;
|
40
40
|
_emitOnClickEvent(e: MouseEvent): void;
|
41
41
|
id: string;
|
42
|
-
"__#
|
42
|
+
"__#5171@#rtl": boolean;
|
43
43
|
rtl: boolean;
|
44
|
-
"__#
|
44
|
+
"__#5171@#elementRef": ElementRef<any>;
|
45
45
|
_cdr: ChangeDetectorRef;
|
46
46
|
_isInited: boolean;
|
47
47
|
_isRendered: boolean;
|
@@ -12,6 +12,7 @@ export declare class AXCalendarComponent extends AXCalendarComponent_base {
|
|
12
12
|
private _setDisplayRange;
|
13
13
|
protected _today: AXDateTime;
|
14
14
|
private _viewStartDate;
|
15
|
+
private _navUserInteraction;
|
15
16
|
private _footPrint;
|
16
17
|
protected views: AXCalendarView[];
|
17
18
|
protected _dayNames: string[];
|
@@ -1,12 +1,18 @@
|
|
1
|
-
import {
|
2
|
-
import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
1
|
+
import { MXInteractiveComponent, MXValueComponent } from '@acorex/components/common';
|
3
2
|
import * as i0 from "@angular/core";
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
3
|
+
declare const AXCheckBoxComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
|
4
|
+
new (): MXValueComponent<boolean>;
|
5
|
+
ɵfac: unknown;
|
6
|
+
ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
|
7
|
+
}, typeof MXInteractiveComponent]>;
|
8
|
+
export declare class AXCheckBoxComponent extends AXCheckBoxComponent_base {
|
9
|
+
indeterminate: boolean;
|
10
|
+
protected _stateIndeterminate: boolean;
|
11
|
+
protected internalGetValue(value: any): boolean | null;
|
12
|
+
internalSetValue(value: boolean | null): boolean;
|
13
|
+
protected _handleOnClickEvent(e: MouseEvent): boolean;
|
14
|
+
protected _handleModelChange(value: boolean | null): void;
|
10
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, never, ["*", "ax-form-hint", "ax-validation-rule"], false, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, never, ["*", "ax-form-hint", "ax-validation-rule"], false, never>;
|
12
17
|
}
|
18
|
+
export {};
|
@@ -1,71 +1,12 @@
|
|
1
|
-
import {
|
2
|
-
import { AXBaseComponent } from '@acorex/components/mixin';
|
1
|
+
import { MXBaseComponent, MXColorComponent } from '@acorex/components/common';
|
3
2
|
import * as i0 from "@angular/core";
|
4
|
-
|
5
|
-
|
6
|
-
disabled: boolean;
|
7
|
-
"__#5091@#tabIndex": number;
|
8
|
-
tabIndex: number;
|
9
|
-
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
10
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
11
|
-
onBlur: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
12
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
13
|
-
focus(): void;
|
14
|
-
hasFocus(): boolean;
|
15
|
-
id: string;
|
16
|
-
"__#5088@#rtl": boolean;
|
17
|
-
rtl: boolean;
|
18
|
-
"__#5088@#elementRef": import("@angular/core").ElementRef<any>;
|
19
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
20
|
-
_isInited: boolean;
|
21
|
-
_isRendered: boolean;
|
22
|
-
ngOnInit(): void;
|
23
|
-
ngAfterViewInit(): void;
|
24
|
-
ngOnDestroy(): void;
|
25
|
-
_getHostElement<T = HTMLElement>(): T;
|
26
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
27
|
-
_onInternalInit(): void;
|
28
|
-
_onInternalViewInit(): void;
|
29
|
-
_onInternalDestroy(): void;
|
30
|
-
onInit(): void;
|
31
|
-
onViewInit(): void;
|
32
|
-
onDestroy(): void;
|
33
|
-
_applyRtl(): void;
|
34
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
35
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
36
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
37
|
-
}) & (new (...args: any[]) => {
|
38
|
-
onClick: import("@angular/core").EventEmitter<import("@acorex/components/common").AXClickEvent>;
|
39
|
-
_emitOnClickEvent(e: MouseEvent): void;
|
40
|
-
id: string;
|
41
|
-
"__#5088@#rtl": boolean;
|
42
|
-
rtl: boolean;
|
43
|
-
"__#5088@#elementRef": import("@angular/core").ElementRef<any>;
|
44
|
-
_cdr: import("@angular/core").ChangeDetectorRef;
|
45
|
-
_isInited: boolean;
|
46
|
-
_isRendered: boolean;
|
47
|
-
ngOnInit(): void;
|
48
|
-
ngAfterViewInit(): void;
|
49
|
-
ngOnDestroy(): void;
|
50
|
-
_getHostElement<T_2 = HTMLElement>(): T_2;
|
51
|
-
_getInnerElement<T_1_1 = HTMLElement>(): T_1_1;
|
52
|
-
_onInternalInit(): void;
|
53
|
-
_onInternalViewInit(): void;
|
54
|
-
_onInternalDestroy(): void;
|
55
|
-
onInit(): void;
|
56
|
-
onViewInit(): void;
|
57
|
-
onDestroy(): void;
|
58
|
-
_applyRtl(): void;
|
59
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
60
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
61
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
62
|
-
}) & typeof AXBaseComponent;
|
63
|
-
export declare class AXChipsComponent extends AXBaseChipsMixin {
|
3
|
+
declare const AXChipsComponent_base: import("polytype").Polytype.ClusteredConstructor<[typeof MXBaseComponent, typeof MXColorComponent]>;
|
4
|
+
export declare class AXChipsComponent extends AXChipsComponent_base {
|
64
5
|
look: 'default' | 'outline';
|
65
|
-
color: AXStyleColorType;
|
66
6
|
text: string;
|
67
7
|
constructor();
|
68
8
|
private get __hostClass();
|
69
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXChipsComponent, never>;
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXChipsComponent, "ax-chips", never, { "tabIndex": { "alias": "tabIndex"; "required": false; }; "
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXChipsComponent, "ax-chips", never, { "tabIndex": { "alias": "tabIndex"; "required": false; }; "color": { "alias": "color"; "required": false; }; "look": { "alias": "look"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, { "colorChange": "colorChange"; }, never, ["ax-prefix", "ax-suffix"], false, never>;
|
71
11
|
}
|
12
|
+
export {};
|
@@ -1,15 +1,27 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import { EventEmitter } from '@angular/core';
|
2
|
+
import { MXBaseComponent } from '@acorex/components/common';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class AXCollapseGroupComponent extends
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
export declare class AXCollapseGroupComponent extends MXBaseComponent {
|
5
|
+
accordionChange: EventEmitter<boolean>;
|
6
|
+
private _accordion?;
|
7
|
+
/**
|
8
|
+
* Enables accordion behavior, allowing only one collapsible item to be expanded at a time
|
9
|
+
*/
|
10
|
+
get accordion(): boolean;
|
11
|
+
set accordion(value: boolean);
|
12
|
+
activeIndexChange: EventEmitter<number>;
|
13
|
+
private _activeIndex;
|
14
|
+
/**
|
15
|
+
* Index of the currently active item within the group
|
16
|
+
*/
|
17
|
+
get activeIndex(): number;
|
18
|
+
set activeIndex(value: number);
|
8
19
|
private _items;
|
9
20
|
private _subs;
|
10
|
-
|
11
|
-
|
12
|
-
|
21
|
+
ngAfterViewInit(): void;
|
22
|
+
private applyAccordion;
|
23
|
+
private removeAccordion;
|
24
|
+
ngOnDestroy(): void;
|
13
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCollapseGroupComponent, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXCollapseGroupComponent, "ax-collapse-group", never, { "accordion": { "alias": "accordion"; "required": false; }; "
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXCollapseGroupComponent, "ax-collapse-group", never, { "accordion": { "alias": "accordion"; "required": false; }; "activeIndex": { "alias": "activeIndex"; "required": false; }; }, { "accordionChange": "accordionChange"; "activeIndexChange": "activeIndexChange"; }, ["_items"], ["ax-collapse"], false, never>;
|
15
27
|
}
|
@@ -1,17 +1,23 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import { EventEmitter, TemplateRef } from '@angular/core';
|
2
|
+
import { AXClickEvent, MXInteractiveComponent } from '@acorex/components/common';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class AXCollapseComponent extends
|
5
|
-
|
6
|
-
|
4
|
+
export declare class AXCollapseComponent extends MXInteractiveComponent {
|
5
|
+
/**
|
6
|
+
* Fires each time the user clicks the panel header.
|
7
|
+
* @event
|
8
|
+
*/
|
9
|
+
onClick: EventEmitter<AXClickEvent>;
|
7
10
|
isCollapsedChange: EventEmitter<any>;
|
8
11
|
private _isCollapsed;
|
12
|
+
/**
|
13
|
+
* Providing a boolean value for its collapse state
|
14
|
+
*/
|
9
15
|
get isCollapsed(): boolean;
|
10
16
|
set isCollapsed(v: boolean);
|
11
17
|
caption: string;
|
12
18
|
icon: string;
|
13
19
|
headerTemplate: TemplateRef<any>;
|
14
|
-
handleHeaderClick(): void;
|
20
|
+
handleHeaderClick(e: MouseEvent): void;
|
15
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCollapseComponent, never>;
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXCollapseComponent, "ax-collapse", never, { "isCollapsed": { "alias": "isCollapsed"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, { "isCollapsedChange": "isCollapsedChange"; },
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXCollapseComponent, "ax-collapse", never, { "isCollapsed": { "alias": "isCollapsed"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; }, { "isCollapsedChange": "isCollapsedChange"; }, never, ["*"], false, never>;
|
17
23
|
}
|
@@ -1,22 +1,23 @@
|
|
1
|
-
import {
|
2
|
-
import { AXValueChangedEvent } from '@acorex/components/common';
|
3
|
-
import {
|
4
|
-
import { AXBaseComponent } from '@acorex/components/mixin';
|
1
|
+
import { AXUnsubscriber } from '@acorex/core/utils';
|
2
|
+
import { AXValueChangedEvent, MXBaseComponent } from '@acorex/components/common';
|
3
|
+
import { AXColorPaletteParentComponent } from './color-palette.class';
|
5
4
|
import { AXMaskOptions } from '@acorex/components/textbox';
|
6
5
|
import * as i0 from "@angular/core";
|
7
|
-
export declare class AXColorPaletteInputComponent extends
|
8
|
-
_parent:
|
9
|
-
|
6
|
+
export declare class AXColorPaletteInputComponent extends MXBaseComponent {
|
7
|
+
_parent: AXColorPaletteParentComponent;
|
8
|
+
private _unsubscriber;
|
10
9
|
isValid: boolean;
|
11
10
|
_rgba: any;
|
12
11
|
_hex: string;
|
13
12
|
protected _colorMode: "hex" | "rgba";
|
14
13
|
protected _hexMaskOptions: AXMaskOptions;
|
15
|
-
constructor(
|
14
|
+
constructor(_parent: AXColorPaletteParentComponent, _unsubscriber: AXUnsubscriber);
|
15
|
+
private applyParent;
|
16
|
+
ngAfterViewInit(): void;
|
16
17
|
_handleChangeInputMode(): void;
|
17
18
|
_handleRGBAValueChanged(e: AXValueChangedEvent<number>): void;
|
18
|
-
_handleHEXAValueChanged(e: AXValueChangedEvent<string>): void;
|
19
|
+
protected _handleHEXAValueChanged(e: AXValueChangedEvent<string>): void;
|
19
20
|
private checkValid;
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteInputComponent,
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteInputComponent, never>;
|
21
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPaletteInputComponent, "ax-color-palette-input", never, {}, {}, never, never, false, never>;
|
22
23
|
}
|
@@ -1,11 +1,10 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import {
|
4
|
-
import { AXColorComponent } from './color-palette.class';
|
5
|
-
import { AXBaseComponent } from '@acorex/components/mixin';
|
1
|
+
import { AXUnsubscriber } from '@acorex/core/utils';
|
2
|
+
import { AXValueChangedEvent, MXBaseComponent } from '@acorex/components/common';
|
3
|
+
import { AXColorPaletteParentComponent } from './color-palette.class';
|
6
4
|
import * as i0 from "@angular/core";
|
7
|
-
export declare class AXColorPalettePickerComponent extends
|
8
|
-
_parent:
|
5
|
+
export declare class AXColorPalettePickerComponent extends MXBaseComponent {
|
6
|
+
_parent: AXColorPaletteParentComponent;
|
7
|
+
private _unsubscriber;
|
9
8
|
_rgba: {
|
10
9
|
r: number;
|
11
10
|
g: number;
|
@@ -14,19 +13,22 @@ export declare class AXColorPalettePickerComponent extends AXBaseComponent {
|
|
14
13
|
};
|
15
14
|
protected _gradient: number;
|
16
15
|
protected _bgColor: string;
|
17
|
-
private _gradientColors;
|
16
|
+
private readonly _gradientColors;
|
17
|
+
private readonly _gradients;
|
18
|
+
private readonly _colors;
|
18
19
|
protected dragPosition: {
|
19
20
|
x: number;
|
20
21
|
y: number;
|
21
22
|
};
|
22
|
-
constructor(
|
23
|
+
constructor(_parent: AXColorPaletteParentComponent, _unsubscriber: AXUnsubscriber);
|
23
24
|
private setHSV;
|
25
|
+
private _handleParentColorChanged;
|
24
26
|
protected _handleAlphaChanged(e: AXValueChangedEvent<number>): void;
|
25
27
|
protected _handleGradientChanged(e: AXValueChangedEvent<number>): void;
|
26
28
|
protected _handleSurfaceClick(e: MouseEvent): void;
|
27
29
|
protected _handleDrag(): void;
|
28
30
|
private setColorByXY;
|
29
31
|
private setPointerByPercent;
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalettePickerComponent,
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalettePickerComponent, never>;
|
31
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalettePickerComponent, "ax-color-palette-picker", never, {}, {}, never, never, false, never>;
|
32
34
|
}
|
@@ -1,11 +1,15 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import {
|
1
|
+
import { MXBaseComponent } from '@acorex/components/common';
|
2
|
+
import { AXUnsubscriber } from '@acorex/core/utils';
|
3
|
+
import { NgZone } from '@angular/core';
|
4
|
+
import { AXColorPaletteParentComponent } from './color-palette.class';
|
4
5
|
import * as i0 from "@angular/core";
|
5
|
-
export declare class AXColorPalettePreviewComponent extends
|
6
|
-
_parent:
|
6
|
+
export declare class AXColorPalettePreviewComponent extends MXBaseComponent {
|
7
|
+
_parent: AXColorPaletteParentComponent;
|
7
8
|
private _zone;
|
8
|
-
|
9
|
-
|
9
|
+
private _unsubscriber;
|
10
|
+
constructor(_parent: AXColorPaletteParentComponent, _zone: NgZone, _unsubscriber: AXUnsubscriber);
|
11
|
+
ngAfterViewInit(): void;
|
12
|
+
private applyParent;
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalettePreviewComponent, never>;
|
10
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalettePreviewComponent, "ax-color-palette-preview", never, {}, {}, never, never, false, never>;
|
11
15
|
}
|
@@ -1,18 +1,20 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import {
|
1
|
+
import { MXBaseComponent } from '@acorex/components/common';
|
2
|
+
import { AXUnsubscriber } from '@acorex/core/utils';
|
3
|
+
import { AXColorPaletteParentComponent } from './color-palette.class';
|
4
4
|
import * as i0 from "@angular/core";
|
5
|
-
export declare class AXColorPaletteSwatchesComponent extends
|
6
|
-
_parent:
|
7
|
-
|
5
|
+
export declare class AXColorPaletteSwatchesComponent extends MXBaseComponent {
|
6
|
+
_parent: AXColorPaletteParentComponent;
|
7
|
+
private _unsubscriber;
|
8
|
+
protected _selected: string;
|
8
9
|
colors: {
|
9
10
|
code: string;
|
10
11
|
}[];
|
11
|
-
constructor(
|
12
|
-
|
13
|
-
|
12
|
+
constructor(_parent: AXColorPaletteParentComponent, _unsubscriber: AXUnsubscriber);
|
13
|
+
private applyParent;
|
14
|
+
ngOnInit(): void;
|
15
|
+
ngAfterViewInit(): void;
|
16
|
+
protected _handleClick(e: MouseEvent, color: any): void;
|
14
17
|
private _format;
|
15
|
-
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteSwatchesComponent, [null, null, { optional: true; }]>;
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteSwatchesComponent, never>;
|
17
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPaletteSwatchesComponent, "ax-color-palette-swatches, ax-color-palette-favorite", never, { "colors": { "alias": "colors"; "required": false; }; }, {}, never, never, false, never>;
|
18
20
|
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { EventEmitter } from "@angular/core";
|
2
|
+
import { AXValueChangedEvent, AXOptionChangedEvent } from "@acorex/components/common";
|
2
3
|
import * as i0 from "@angular/core";
|
3
4
|
/**
|
4
5
|
* A token that specifies the display mode of datapager component.
|
@@ -8,15 +9,20 @@ export interface AXColorChangedEvent {
|
|
8
9
|
color: any;
|
9
10
|
sender: any;
|
10
11
|
}
|
11
|
-
export declare abstract class
|
12
|
-
abstract _onInternalColorChanged$: Subject<AXColorChangedEvent>;
|
13
|
-
abstract _setUserInteraction(): any;
|
12
|
+
export declare abstract class AXColorPaletteParentComponent {
|
14
13
|
abstract readonly: boolean;
|
15
14
|
abstract disabled: boolean;
|
16
|
-
|
17
|
-
|
15
|
+
abstract get value(): string;
|
16
|
+
abstract onValueChanged: EventEmitter<AXValueChangedEvent<string>>;
|
17
|
+
abstract onOptionChanged: EventEmitter<AXOptionChangedEvent>;
|
18
|
+
abstract commitValue(value: string, u?: boolean): any;
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteParentComponent, never>;
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXColorPaletteParentComponent>;
|
18
21
|
}
|
19
22
|
export declare abstract class AXColorPaletteChildComponent {
|
20
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteChildComponent, never>;
|
21
24
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXColorPaletteChildComponent>;
|
22
25
|
}
|
26
|
+
export declare const AXDefaultColorPalette: {
|
27
|
+
code: string;
|
28
|
+
}[];
|
@@ -1,16 +1,10 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import { Subject } from 'rxjs';
|
1
|
+
import { MXValueComponent } from '@acorex/components/common';
|
2
|
+
import { QueryList } from '@angular/core';
|
4
3
|
import { AXColorPaletteChildComponent } from './color-palette.class';
|
5
4
|
import * as i0 from "@angular/core";
|
6
|
-
export declare class AXColorPalleteComponent extends
|
7
|
-
_onInternalColorChanged$: Subject<any>;
|
5
|
+
export declare class AXColorPalleteComponent extends MXValueComponent<string> {
|
8
6
|
_children: QueryList<AXColorPaletteChildComponent>;
|
9
|
-
_onValueChanged(oldValue: string, newValue: string): void;
|
10
|
-
ngAfterContentInit(): void;
|
11
|
-
onViewInit(): void;
|
12
|
-
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
|
13
7
|
private get __hostDisabled();
|
14
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPalleteComponent, never>;
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalleteComponent, "ax-color-palette", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPalleteComponent, "ax-color-palette", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; }, ["_children"], ["ax-header", "ax-color-palette-preview", "ax-color-palette-picker", "ax-color-palette-swatches", "ax-color-palette-favorite", "ax-color-palette-input", "ax-footer"], false, never>;
|
16
10
|
}
|
@@ -5,15 +5,16 @@ import * as i3 from "./color-palette-swatches.component";
|
|
5
5
|
import * as i4 from "./color-palette-input.component";
|
6
6
|
import * as i5 from "./color-palette-picker.component";
|
7
7
|
import * as i6 from "@angular/common";
|
8
|
-
import * as i7 from "@
|
9
|
-
import * as i8 from "@acorex/components/
|
10
|
-
import * as i9 from "@acorex/components/
|
11
|
-
import * as i10 from "@acorex/components/
|
12
|
-
import * as i11 from "@acorex/components/
|
13
|
-
import * as i12 from "@acorex/components/
|
14
|
-
import * as i13 from "@
|
8
|
+
import * as i7 from "@angular/forms";
|
9
|
+
import * as i8 from "@acorex/components/textbox";
|
10
|
+
import * as i9 from "@acorex/components/label";
|
11
|
+
import * as i10 from "@acorex/components/button";
|
12
|
+
import * as i11 from "@acorex/components/decorators";
|
13
|
+
import * as i12 from "@acorex/components/number-box";
|
14
|
+
import * as i13 from "@acorex/components/range-slider";
|
15
|
+
import * as i14 from "@angular/cdk/drag-drop";
|
15
16
|
export declare class AXColorPaletteModule {
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPaletteModule, never>;
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXColorPaletteModule, [typeof i1.AXColorPalleteComponent, typeof i2.AXColorPalettePreviewComponent, typeof i3.AXColorPaletteSwatchesComponent, typeof i4.AXColorPaletteInputComponent, typeof i5.AXColorPalettePickerComponent], [typeof i6.CommonModule, typeof i7.
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXColorPaletteModule, [typeof i1.AXColorPalleteComponent, typeof i2.AXColorPalettePreviewComponent, typeof i3.AXColorPaletteSwatchesComponent, typeof i4.AXColorPaletteInputComponent, typeof i5.AXColorPalettePickerComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.AXTextBoxModule, typeof i9.AXLabelModule, typeof i10.AXButtonModule, typeof i11.AXDecoratorModule, typeof i12.AXNumberBoxModule, typeof i13.AXRangeSliderModule, typeof i14.DragDropModule], [typeof i1.AXColorPalleteComponent, typeof i2.AXColorPalettePreviewComponent, typeof i3.AXColorPaletteSwatchesComponent, typeof i4.AXColorPaletteInputComponent, typeof i5.AXColorPalettePickerComponent]>;
|
18
19
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXColorPaletteModule>;
|
19
20
|
}
|