@acorex/components 7.3.1 → 7.4.1
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/button/lib/button-group.component.d.ts +10 -73
- package/button/lib/button-item.class.d.ts +1 -3
- package/button/lib/button-item.component.d.ts +12 -75
- package/button/lib/button.component.d.ts +1 -1
- package/button-group/README.md +3 -0
- package/button-group/index.d.ts +2 -0
- package/button-group/lib/button-group.component.d.ts +21 -0
- package/button-group/lib/button-group.module.d.ts +8 -0
- package/calendar/lib/calendar-range.component.d.ts +2 -1
- package/calendar/lib/calendar.class.d.ts +9 -8
- package/calendar/lib/calendar.component.d.ts +2 -1
- package/check-box/lib/check-box.component.d.ts +3 -2
- package/color-box/README.md +3 -0
- package/color-box/index.d.ts +2 -0
- package/color-box/lib/color-box.component.d.ts +27 -0
- package/color-box/lib/color-box.module.d.ts +11 -0
- package/common/index.d.ts +6 -5
- package/common/lib/classes/styles.class.d.ts +0 -9
- package/common/lib/components/button-base-component.class.d.ts +0 -2
- package/common/lib/components/interactive-component.class.d.ts +7 -1
- package/common/lib/types/direction.d.ts +4 -0
- package/common/lib/types/orientation.d.ts +4 -0
- package/common/lib/types/placement.d.ts +30 -0
- package/common/lib/types/selection-mode.d.ts +4 -0
- package/data-pager/lib/data-pager.module.d.ts +5 -4
- package/data-table/lib/data-column.directive.d.ts +2 -2
- package/datetime-box/README.md +3 -0
- package/datetime-box/index.d.ts +2 -0
- package/datetime-box/lib/datetime-box.component.d.ts +34 -0
- package/datetime-box/lib/datetime-box.module.d.ts +13 -0
- package/datetime-input/README.md +3 -0
- package/datetime-input/index.d.ts +2 -0
- package/datetime-input/lib/datetime-input.component.d.ts +44 -0
- package/datetime-input/lib/datetime-input.module.d.ts +10 -0
- package/datetime-picker/README.md +3 -0
- package/datetime-picker/index.d.ts +2 -0
- package/datetime-picker/lib/datetime-picker.component.d.ts +42 -0
- package/datetime-picker/lib/datetime-picker.module.d.ts +14 -0
- package/decorators/index.d.ts +4 -4
- package/decorators/lib/decorators.module.d.ts +4 -4
- package/dropdown/index.d.ts +2 -0
- package/dropdown/lib/dropdown-box.class.d.ts +15 -0
- package/dropdown/lib/dropdown-box.component.d.ts +25 -0
- package/dropdown/lib/dropdown-panel.component.d.ts +31 -20
- package/dropdown/lib/dropdown.module.d.ts +9 -8
- package/esm2022/action-sheet/lib/action-sheet.class.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 +3 -3
- 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 +3 -3
- package/esm2022/badge/lib/badge.module.mjs +4 -4
- package/esm2022/breadcrumbs/lib/breadcrumbs-item.component.mjs +3 -3
- package/esm2022/breadcrumbs/lib/breadcrumbs.component.mjs +3 -3
- package/esm2022/breadcrumbs/lib/breadcrumbs.module.mjs +4 -4
- package/esm2022/button/lib/button-group.component.mjs +36 -29
- package/esm2022/button/lib/button-item.class.mjs +1 -1
- package/esm2022/button/lib/button-item.component.mjs +46 -32
- package/esm2022/button/lib/button.component.mjs +14 -10
- package/esm2022/button/lib/button.module.mjs +4 -4
- package/esm2022/{color-picker/acorex-components-color-picker.mjs → button-group/acorex-components-button-group.mjs} +1 -1
- package/esm2022/button-group/index.mjs +3 -0
- package/esm2022/button-group/lib/button-group.component.mjs +97 -0
- package/esm2022/button-group/lib/button-group.module.mjs +21 -0
- package/esm2022/calendar/lib/calendar-range.component.mjs +14 -13
- package/esm2022/calendar/lib/calendar.class.mjs +19 -18
- package/esm2022/calendar/lib/calendar.component.mjs +80 -40
- package/esm2022/calendar/lib/calendar.module.mjs +4 -4
- package/esm2022/check-box/lib/check-box.component.mjs +9 -5
- package/esm2022/check-box/lib/check-box.module.mjs +4 -4
- package/esm2022/chips/lib/chips.component.mjs +3 -3
- package/esm2022/chips/lib/chips.module.mjs +4 -4
- package/esm2022/collapse/lib/collapse-group.component.mjs +3 -3
- package/esm2022/collapse/lib/collapse.component.mjs +3 -3
- package/esm2022/collapse/lib/collapse.module.mjs +4 -4
- package/esm2022/color-box/acorex-components-color-box.mjs +5 -0
- package/esm2022/color-box/index.mjs +3 -0
- package/esm2022/color-box/lib/color-box.component.mjs +91 -0
- package/esm2022/color-box/lib/color-box.module.mjs +24 -0
- package/esm2022/color-palette/lib/color-palette-input.component.mjs +3 -3
- package/esm2022/color-palette/lib/color-palette-picker.component.mjs +13 -13
- package/esm2022/color-palette/lib/color-palette-preview.component.mjs +3 -3
- package/esm2022/color-palette/lib/color-palette-swatches.component.mjs +3 -3
- package/esm2022/color-palette/lib/color-palette.class.mjs +6 -6
- package/esm2022/color-palette/lib/color-palette.component.mjs +5 -5
- package/esm2022/color-palette/lib/color-palette.module.mjs +4 -4
- package/esm2022/common/index.mjs +7 -6
- package/esm2022/common/lib/classes/components.class.mjs +22 -22
- package/esm2022/common/lib/classes/styles.class.mjs +1 -2
- package/esm2022/common/lib/common.module.mjs +4 -4
- package/esm2022/common/lib/components/base-component.class.mjs +3 -3
- package/esm2022/common/lib/components/button-base-component.class.mjs +4 -18
- package/esm2022/common/lib/components/input-base-value-component.class.mjs +3 -3
- package/esm2022/common/lib/components/interactive-component.class.mjs +14 -1
- package/esm2022/common/lib/components/value-component.class.mjs +6 -6
- package/esm2022/common/lib/directives/auto-focus.directive.mjs +3 -3
- package/esm2022/common/lib/directives/delayed-value-changed.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/dom.service.mjs +3 -3
- package/esm2022/common/lib/services/hotkey.service.mjs +3 -3
- package/esm2022/common/lib/types/direction.mjs +2 -0
- package/esm2022/common/lib/types/orientation.mjs +2 -0
- package/esm2022/common/lib/types/placement.mjs +160 -0
- package/esm2022/common/lib/types/range.mjs +2 -0
- package/esm2022/common/lib/types/selection-mode.mjs +5 -0
- 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 +4 -4
- package/esm2022/data-pager/lib/data-pager-numeric-selector.component.mjs +15 -18
- package/esm2022/data-pager/lib/data-pager-pagesize-dropdown.component.mjs +7 -7
- package/esm2022/data-pager/lib/data-pager-prev-buttons.component.mjs +4 -4
- package/esm2022/data-pager/lib/data-pager.component.mjs +5 -5
- package/esm2022/data-pager/lib/data-pager.module.mjs +8 -7
- package/esm2022/data-table/lib/data-column.directive.mjs +6 -8
- package/esm2022/data-table/lib/data-table.component.mjs +3 -3
- package/esm2022/data-table/lib/data-table.module.mjs +4 -4
- package/esm2022/datetime-box/acorex-components-datetime-box.mjs +5 -0
- package/esm2022/datetime-box/index.mjs +3 -0
- package/esm2022/datetime-box/lib/datetime-box.component.mjs +109 -0
- package/esm2022/datetime-box/lib/datetime-box.module.mjs +38 -0
- package/esm2022/datetime-input/acorex-components-datetime-input.mjs +5 -0
- package/esm2022/datetime-input/index.mjs +3 -0
- package/esm2022/datetime-input/lib/datetime-input.component.mjs +522 -0
- package/esm2022/datetime-input/lib/datetime-input.module.mjs +23 -0
- package/esm2022/datetime-picker/acorex-components-datetime-picker.mjs +5 -0
- package/esm2022/datetime-picker/index.mjs +3 -0
- package/esm2022/datetime-picker/lib/datetime-picker.component.mjs +232 -0
- package/esm2022/datetime-picker/lib/datetime-picker.module.mjs +41 -0
- package/esm2022/decorators/index.mjs +5 -5
- package/esm2022/decorators/lib/components/clear-button.component.mjs +58 -0
- package/esm2022/decorators/lib/components/close-button.component.mjs +43 -0
- package/esm2022/decorators/lib/components/generic-content.component.mjs +17 -0
- package/esm2022/decorators/lib/components/icon.component.mjs +26 -0
- package/esm2022/decorators/lib/decorators.module.mjs +10 -10
- package/esm2022/dialog/lib/dialog.component.mjs +4 -4
- 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 +3 -3
- package/esm2022/drawer/lib/drawer.module.mjs +4 -4
- package/esm2022/dropdown/index.mjs +3 -1
- package/esm2022/dropdown/lib/dropdown-box.class.mjs +38 -0
- package/esm2022/dropdown/lib/dropdown-box.component.mjs +94 -0
- package/esm2022/dropdown/lib/dropdown-panel.component.mjs +88 -37
- package/esm2022/dropdown/lib/dropdown.module.mjs +8 -7
- package/esm2022/form/index.mjs +2 -1
- package/esm2022/form/lib/form-field.component.mjs +3 -3
- package/esm2022/form/lib/form.component.mjs +3 -3
- package/esm2022/form/lib/form.config.mjs +36 -0
- package/esm2022/form/lib/form.module.mjs +6 -28
- package/esm2022/form/lib/validation-rule.widget.mjs +8 -7
- package/esm2022/form/lib/validation-summary.component.mjs +4 -4
- package/esm2022/image/lib/image.component.mjs +3 -3
- package/esm2022/image/lib/image.module.mjs +4 -4
- package/esm2022/label/lib/label.component.mjs +3 -3
- 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 +6 -6
- package/esm2022/loading/lib/loading.directive.mjs +20 -51
- package/esm2022/loading/lib/loading.module.mjs +6 -6
- package/esm2022/loading/lib/loading.service.mjs +36 -28
- package/esm2022/menu/lib/menu.component.mjs +3 -3
- package/esm2022/menu/lib/menu.module.mjs +4 -4
- package/esm2022/mixin/index.mjs +1 -2
- package/esm2022/mixin/lib/base-components.class.mjs +3 -3
- package/esm2022/mixin/lib/selection-component.class.mjs +3 -3
- package/esm2022/mixin/lib/value-mixin.class.mjs +3 -3
- 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 +23 -11
- package/esm2022/otp/lib/otp.module.mjs +4 -4
- package/esm2022/page/lib/base-page.class.mjs +20 -21
- package/esm2022/page/lib/page.component.mjs +13 -13
- 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/picker/acorex-components-picker.mjs +5 -0
- package/esm2022/picker/index.mjs +4 -0
- package/esm2022/picker/lib/picker-column.directive.mjs +73 -0
- package/esm2022/picker/lib/picker.component.mjs +148 -0
- package/esm2022/picker/lib/picker.module.mjs +22 -0
- package/esm2022/popover/index.mjs +1 -2
- package/esm2022/popover/lib/popover.component.mjs +270 -166
- package/esm2022/popover/lib/popover.module.mjs +4 -4
- package/esm2022/popup/lib/popup.component.mjs +40 -15
- package/esm2022/popup/lib/popup.module.mjs +6 -6
- package/esm2022/popup/lib/popup.service.mjs +9 -6
- package/esm2022/progress-bar/lib/progress-bar.component.mjs +9 -13
- package/esm2022/progress-bar/lib/progress-bar.module.mjs +4 -4
- package/esm2022/radio/lib/radio.component.mjs +36 -21
- package/esm2022/radio/lib/radio.module.mjs +4 -4
- package/esm2022/range-slider/lib/range-slider.component.mjs +21 -34
- package/esm2022/range-slider/lib/range-slider.module.mjs +4 -4
- package/esm2022/result/lib/result.component.mjs +6 -6
- package/esm2022/result/lib/result.module.mjs +4 -4
- package/esm2022/scheduler/index.mjs +2 -1
- package/esm2022/scheduler/lib/scheduler-month-view.component.mjs +16 -9
- package/esm2022/scheduler/lib/scheduler-week-view.component.mjs +12 -0
- package/esm2022/scheduler/lib/scheduler.component.mjs +27 -14
- package/esm2022/scheduler/lib/scheduler.module.mjs +10 -9
- 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 +7 -7
- 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 +3 -3
- 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 +23 -53
- package/esm2022/tabs/lib/tabs.class.mjs +1 -1
- package/esm2022/tabs/lib/tabs.component.mjs +19 -28
- package/esm2022/tabs/lib/tabs.module.mjs +4 -4
- package/esm2022/tag/lib/tag.component.mjs +8 -10
- package/esm2022/tag/lib/tag.module.mjs +4 -4
- package/esm2022/text-area/lib/text-area.component.mjs +3 -3
- package/esm2022/text-area/lib/text-area.module.mjs +4 -4
- package/esm2022/text-box/lib/mask-options.directive.mjs +3 -3
- package/esm2022/text-box/lib/text-box.component.mjs +3 -3
- package/esm2022/text-box/lib/text-box.module.mjs +4 -4
- package/esm2022/toast/lib/toast.component.mjs +3 -3
- package/esm2022/toast/lib/toast.config.mjs +9 -3
- package/esm2022/toast/lib/toast.module.mjs +10 -6
- package/esm2022/toast/lib/toast.service.mjs +3 -3
- package/esm2022/tooltip/lib/tooltip.component.mjs +9 -13
- package/esm2022/tooltip/lib/tooltip.directive.mjs +35 -143
- package/esm2022/tooltip/lib/tooltip.module.mjs +4 -4
- package/esm2022/uploader/index.mjs +4 -2
- package/esm2022/uploader/lib/uploader-drop-zone.component.mjs +13 -0
- package/esm2022/uploader/lib/uploader-list.component.mjs +14 -0
- package/esm2022/uploader/lib/uploader-overlay.component.mjs +12 -0
- package/esm2022/uploader/lib/uploader.module.mjs +14 -11
- package/fesm2022/acorex-components-action-sheet.mjs +10 -10
- package/fesm2022/acorex-components-alert.mjs +7 -7
- package/fesm2022/acorex-components-avatar.mjs +10 -10
- package/fesm2022/acorex-components-badge.mjs +7 -7
- package/fesm2022/acorex-components-breadcrumbs.mjs +10 -10
- package/fesm2022/acorex-components-button-group.mjs +122 -0
- package/fesm2022/acorex-components-button-group.mjs.map +1 -0
- package/fesm2022/acorex-components-button.mjs +138 -116
- package/fesm2022/acorex-components-button.mjs.map +1 -1
- package/fesm2022/acorex-components-calendar.mjs +110 -68
- package/fesm2022/acorex-components-calendar.mjs.map +1 -1
- package/fesm2022/acorex-components-check-box.mjs +12 -8
- package/fesm2022/acorex-components-check-box.mjs.map +1 -1
- package/fesm2022/acorex-components-chips.mjs +7 -7
- package/fesm2022/acorex-components-collapse.mjs +10 -10
- package/fesm2022/acorex-components-color-box.mjs +116 -0
- package/fesm2022/acorex-components-color-box.mjs.map +1 -0
- package/fesm2022/acorex-components-color-palette.mjs +36 -36
- package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
- package/fesm2022/acorex-components-common.mjs +238 -301
- 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 +52 -54
- package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
- package/fesm2022/acorex-components-data-table.mjs +12 -14
- package/fesm2022/acorex-components-data-table.mjs.map +1 -1
- package/fesm2022/acorex-components-datetime-box.mjs +146 -0
- package/fesm2022/acorex-components-datetime-box.mjs.map +1 -0
- package/fesm2022/acorex-components-datetime-input.mjs +547 -0
- package/fesm2022/acorex-components-datetime-input.mjs.map +1 -0
- package/fesm2022/acorex-components-datetime-picker.mjs +273 -0
- package/fesm2022/acorex-components-datetime-picker.mjs.map +1 -0
- package/fesm2022/acorex-components-decorators.mjs +50 -50
- package/fesm2022/acorex-components-decorators.mjs.map +1 -1
- package/fesm2022/acorex-components-dialog.mjs +11 -11
- package/fesm2022/acorex-components-dialog.mjs.map +1 -1
- package/fesm2022/acorex-components-drawer.mjs +10 -10
- package/fesm2022/acorex-components-dropdown.mjs +217 -44
- package/fesm2022/acorex-components-dropdown.mjs.map +1 -1
- package/fesm2022/acorex-components-form.mjs +58 -44
- package/fesm2022/acorex-components-form.mjs.map +1 -1
- package/fesm2022/acorex-components-image.mjs +7 -7
- package/fesm2022/acorex-components-label.mjs +7 -7
- package/fesm2022/acorex-components-loading.mjs +93 -116
- package/fesm2022/acorex-components-loading.mjs.map +1 -1
- package/fesm2022/acorex-components-menu.mjs +7 -7
- package/fesm2022/acorex-components-mixin.mjs +7 -26
- package/fesm2022/acorex-components-mixin.mjs.map +1 -1
- package/fesm2022/acorex-components-notification.mjs +10 -10
- package/fesm2022/acorex-components-notification.mjs.map +1 -1
- package/fesm2022/acorex-components-number-box.mjs +7 -7
- package/fesm2022/acorex-components-otp.mjs +27 -15
- package/fesm2022/acorex-components-otp.mjs.map +1 -1
- package/fesm2022/acorex-components-page.mjs +55 -56
- package/fesm2022/acorex-components-page.mjs.map +1 -1
- package/fesm2022/acorex-components-password-box.mjs +7 -7
- package/fesm2022/acorex-components-picker.mjs +242 -0
- package/fesm2022/acorex-components-picker.mjs.map +1 -0
- package/fesm2022/acorex-components-popover.mjs +275 -241
- package/fesm2022/acorex-components-popover.mjs.map +1 -1
- package/fesm2022/acorex-components-popup.mjs +52 -24
- package/fesm2022/acorex-components-popup.mjs.map +1 -1
- package/fesm2022/acorex-components-progress-bar.mjs +12 -16
- package/fesm2022/acorex-components-progress-bar.mjs.map +1 -1
- package/fesm2022/acorex-components-radio.mjs +39 -25
- package/fesm2022/acorex-components-radio.mjs.map +1 -1
- package/fesm2022/acorex-components-range-slider.mjs +24 -37
- package/fesm2022/acorex-components-range-slider.mjs.map +1 -1
- package/fesm2022/acorex-components-result.mjs +9 -9
- package/fesm2022/acorex-components-result.mjs.map +1 -1
- package/fesm2022/acorex-components-scheduler.mjs +50 -25
- package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
- package/fesm2022/acorex-components-search-box.mjs +7 -7
- package/fesm2022/acorex-components-select-box.mjs +10 -10
- package/fesm2022/acorex-components-select-box.mjs.map +1 -1
- package/fesm2022/acorex-components-selection-list.mjs +7 -7
- package/fesm2022/acorex-components-switch.mjs +10 -10
- package/fesm2022/acorex-components-tabs.mjs +45 -85
- package/fesm2022/acorex-components-tabs.mjs.map +1 -1
- package/fesm2022/acorex-components-tag.mjs +11 -13
- package/fesm2022/acorex-components-tag.mjs.map +1 -1
- package/fesm2022/acorex-components-text-area.mjs +7 -7
- package/fesm2022/acorex-components-text-box.mjs +10 -10
- package/fesm2022/acorex-components-toast.mjs +23 -13
- package/fesm2022/acorex-components-toast.mjs.map +1 -1
- package/fesm2022/acorex-components-tooltip.mjs +45 -157
- package/fesm2022/acorex-components-tooltip.mjs.map +1 -1
- package/fesm2022/acorex-components-uploader.mjs +38 -103
- package/fesm2022/acorex-components-uploader.mjs.map +1 -1
- package/form/index.d.ts +1 -0
- package/form/lib/form.config.d.ts +17 -0
- package/form/lib/form.module.d.ts +0 -1
- package/form/lib/validation-rule.widget.d.ts +1 -0
- package/loading/lib/loading.directive.d.ts +10 -17
- package/loading/lib/loading.module.d.ts +1 -1
- package/loading/lib/loading.service.d.ts +10 -15
- package/mixin/index.d.ts +0 -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/mixin.class.d.ts +61 -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 +8 -8
- package/otp/lib/otp.component.d.ts +10 -6
- package/package.json +56 -41
- package/page/lib/base-page.class.d.ts +6 -10
- package/page/lib/page.component.d.ts +4 -4
- package/picker/README.md +3 -0
- package/picker/index.d.ts +3 -0
- package/picker/lib/picker-column.directive.d.ts +16 -0
- package/picker/lib/picker.component.d.ts +30 -0
- package/picker/lib/picker.module.d.ts +9 -0
- package/popover/index.d.ts +0 -1
- package/popover/lib/popover.component.d.ts +51 -27
- package/popup/lib/popup.component.d.ts +6 -6
- package/progress-bar/lib/progress-bar.component.d.ts +3 -8
- package/radio/lib/radio.component.d.ts +8 -10
- package/range-slider/lib/range-slider.component.d.ts +12 -12
- package/result/lib/result.component.d.ts +2 -2
- package/scheduler/index.d.ts +1 -0
- package/scheduler/lib/scheduler-month-view.component.d.ts +2 -1
- package/scheduler/lib/scheduler-week-view.component.d.ts +6 -0
- package/scheduler/lib/scheduler.component.d.ts +6 -0
- package/scheduler/lib/scheduler.module.d.ts +7 -6
- package/tabs/lib/tab-item.component.d.ts +7 -38
- package/tabs/lib/tabs.class.d.ts +2 -1
- package/tabs/lib/tabs.component.d.ts +7 -9
- package/tag/lib/tag.component.d.ts +2 -4
- package/tooltip/lib/tooltip.component.d.ts +3 -6
- package/tooltip/lib/tooltip.directive.d.ts +11 -17
- package/uploader/index.d.ts +3 -1
- package/uploader/lib/uploader-drop-zone.component.d.ts +6 -0
- package/uploader/lib/uploader-list.component.d.ts +6 -0
- package/uploader/lib/uploader-overlay.component.d.ts +6 -0
- package/uploader/lib/uploader.module.d.ts +7 -4
- package/color-picker/README.md +0 -3
- package/color-picker/index.d.ts +0 -2
- package/color-picker/lib/color-picker.component.d.ts +0 -191
- package/color-picker/lib/color-picker.module.d.ts +0 -18
- package/common/lib/classes/drawing.class.d.ts +0 -9
- package/common/lib/constant/positions.d.ts +0 -75
- package/common/lib/services/custom-cdk-overlay.service.d.ts +0 -19
- package/common/lib/services/overlay.service.d.ts +0 -34
- package/date-picker/README.md +0 -3
- package/date-picker/index.d.ts +0 -2
- package/date-picker/lib/datepicker.component.d.ts +0 -40
- package/date-picker/lib/datepicker.module.d.ts +0 -15
- package/esm2022/color-picker/index.mjs +0 -3
- package/esm2022/color-picker/lib/color-picker.component.mjs +0 -116
- package/esm2022/color-picker/lib/color-picker.module.mjs +0 -61
- package/esm2022/common/lib/classes/data.class.mjs +0 -2
- package/esm2022/common/lib/classes/drawing.class.mjs +0 -2
- package/esm2022/common/lib/constant/positions.mjs +0 -75
- package/esm2022/common/lib/services/custom-cdk-overlay.service.mjs +0 -49
- package/esm2022/common/lib/services/overlay.service.mjs +0 -113
- package/esm2022/date-picker/acorex-components-date-picker.mjs +0 -5
- package/esm2022/date-picker/index.mjs +0 -3
- package/esm2022/date-picker/lib/datepicker.component.mjs +0 -128
- package/esm2022/date-picker/lib/datepicker.module.mjs +0 -44
- package/esm2022/decorators/lib/clear-button.component.mjs +0 -58
- package/esm2022/decorators/lib/close-button.component.mjs +0 -43
- package/esm2022/decorators/lib/generic-content.component.mjs +0 -17
- package/esm2022/decorators/lib/icon.component.mjs +0 -26
- package/esm2022/mixin/lib/loading-mixin.class.mjs +0 -18
- package/esm2022/popover/lib/dropdown-component.class.mjs +0 -73
- package/esm2022/time-box/acorex-components-time-box.mjs +0 -5
- package/esm2022/time-box/index.mjs +0 -3
- package/esm2022/time-box/lib/time-box.component.mjs +0 -294
- package/esm2022/time-box/lib/time-box.module.mjs +0 -32
- package/esm2022/uploader/lib/uploader.component.mjs +0 -99
- package/fesm2022/acorex-components-color-picker.mjs +0 -178
- package/fesm2022/acorex-components-color-picker.mjs.map +0 -1
- package/fesm2022/acorex-components-date-picker.mjs +0 -173
- package/fesm2022/acorex-components-date-picker.mjs.map +0 -1
- package/fesm2022/acorex-components-time-box.mjs +0 -329
- package/fesm2022/acorex-components-time-box.mjs.map +0 -1
- package/mixin/lib/loading-mixin.class.d.ts +0 -40
- package/popover/lib/dropdown-component.class.d.ts +0 -17
- package/time-box/README.md +0 -3
- package/time-box/index.d.ts +0 -2
- package/time-box/lib/time-box.component.d.ts +0 -50
- package/time-box/lib/time-box.module.d.ts +0 -11
- package/uploader/lib/uploader.component.d.ts +0 -28
- /package/common/lib/{classes/data.class.d.ts → types/range.d.ts} +0 -0
- /package/decorators/lib/{clear-button.component.d.ts → components/clear-button.component.d.ts} +0 -0
- /package/decorators/lib/{close-button.component.d.ts → components/close-button.component.d.ts} +0 -0
- /package/decorators/lib/{generic-content.component.d.ts → components/generic-content.component.d.ts} +0 -0
- /package/decorators/lib/{icon.component.d.ts → components/icon.component.d.ts} +0 -0
@@ -0,0 +1,6 @@
|
|
1
|
+
import { MXBaseComponent } from '@acorex/components/common';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class AXUploaderListComponent extends MXBaseComponent {
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXUploaderListComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXUploaderListComponent, "ax-uploader-list", never, {}, {}, never, never, false, never>;
|
6
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { MXBaseComponent } from '@acorex/components/common';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class AXUploaderOverlayComponent extends MXBaseComponent {
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXUploaderOverlayComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXUploaderOverlayComponent, "ax-uploader-overlay", never, {}, {}, never, never, false, never>;
|
6
|
+
}
|
@@ -1,9 +1,12 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./uploader.component";
|
3
|
-
import * as i2 from "
|
4
|
-
import * as i3 from "
|
2
|
+
import * as i1 from "./uploader-drop-zone.component";
|
3
|
+
import * as i2 from "./uploader-list.component";
|
4
|
+
import * as i3 from "./uploader-overlay.component";
|
5
|
+
import * as i4 from "@angular/common";
|
6
|
+
import * as i5 from "@acorex/components/decorators";
|
7
|
+
import * as i6 from "@acorex/components/button";
|
5
8
|
export declare class AXUploaderModule {
|
6
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXUploaderModule, never>;
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXUploaderModule, [typeof i1.
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXUploaderModule, [typeof i1.AXUploaderDropZoneComponent, typeof i2.AXUploaderListComponent, typeof i3.AXUploaderOverlayComponent], [typeof i4.CommonModule, typeof i5.AXDecoratorModule, typeof i6.AXButtonModule], [typeof i1.AXUploaderDropZoneComponent, typeof i2.AXUploaderListComponent, typeof i3.AXUploaderOverlayComponent]>;
|
8
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXUploaderModule>;
|
9
12
|
}
|
package/color-picker/README.md
DELETED
package/color-picker/index.d.ts
DELETED
@@ -1,191 +0,0 @@
|
|
1
|
-
import { AXColorMode } from '@acorex/core/utils';
|
2
|
-
import { AXPlatform } from '@acorex/core/platform';
|
3
|
-
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
4
|
-
import { AXValueChangedEvent } from '@acorex/components/common';
|
5
|
-
import { AXPopoverComponent } from '@acorex/components/popover';
|
6
|
-
import { AXBaseComponent } from '@acorex/components/mixin';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
|
9
|
-
"__#5215@#disabled": boolean;
|
10
|
-
disabled: boolean;
|
11
|
-
"__#5215@#tabIndex": number;
|
12
|
-
tabIndex: number;
|
13
|
-
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
14
|
-
_emitOnFocusEvent(e: FocusEvent): void;
|
15
|
-
onBlur: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
16
|
-
_emitOnBlurEvent(e: FocusEvent): void;
|
17
|
-
focus(): void;
|
18
|
-
hasFocus(): boolean;
|
19
|
-
id: string;
|
20
|
-
"__#5212@#rtl": boolean;
|
21
|
-
rtl: boolean;
|
22
|
-
"__#5212@#elementRef": ElementRef<any>;
|
23
|
-
_cdr: ChangeDetectorRef;
|
24
|
-
_isInited: boolean;
|
25
|
-
_isRendered: boolean;
|
26
|
-
ngOnInit(): void;
|
27
|
-
ngAfterViewInit(): void;
|
28
|
-
ngOnDestroy(): void;
|
29
|
-
_getHostElement<T = HTMLElement>(): T;
|
30
|
-
_getInnerElement<T_1 = HTMLElement>(): T_1;
|
31
|
-
_onInternalInit(): void;
|
32
|
-
_onInternalViewInit(): void;
|
33
|
-
_onInternalDestroy(): void;
|
34
|
-
onInit(): void;
|
35
|
-
onViewInit(): void;
|
36
|
-
onDestroy(): void;
|
37
|
-
_applyRtl(): void;
|
38
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
39
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
40
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
41
|
-
}) & (abstract new (...args: any[]) => {
|
42
|
-
readonly: boolean;
|
43
|
-
onOpened: import("@angular/core").EventEmitter<import("@acorex/components/common").AXEvent>;
|
44
|
-
onClosed: import("@angular/core").EventEmitter<import("@acorex/components/common").AXEvent>;
|
45
|
-
popover: any;
|
46
|
-
position: import("@acorex/components/common").AXConnectedPosition[];
|
47
|
-
_emitOnOpenedEvent(): void;
|
48
|
-
_emitOnClosedEvent(): void;
|
49
|
-
onInit(): void;
|
50
|
-
onViewInit(): void;
|
51
|
-
toggle(): void;
|
52
|
-
close(): void;
|
53
|
-
open(): void;
|
54
|
-
readonly isOpen: boolean;
|
55
|
-
id: string;
|
56
|
-
"__#5212@#rtl": boolean;
|
57
|
-
rtl: boolean;
|
58
|
-
"__#5212@#elementRef": ElementRef<any>;
|
59
|
-
_cdr: ChangeDetectorRef;
|
60
|
-
_isInited: boolean;
|
61
|
-
_isRendered: boolean;
|
62
|
-
ngOnInit(): void;
|
63
|
-
ngAfterViewInit(): void;
|
64
|
-
ngOnDestroy(): void;
|
65
|
-
_getHostElement<T_2 = HTMLElement>(): T_2;
|
66
|
-
_getInnerElement<T_1_1 = HTMLElement>(): T_1_1;
|
67
|
-
_onInternalInit(): void;
|
68
|
-
_onInternalViewInit(): void;
|
69
|
-
_onInternalDestroy(): void;
|
70
|
-
onDestroy(): void;
|
71
|
-
_applyRtl(): void;
|
72
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
73
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
74
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
75
|
-
}) & (new (...args: any[]) => {
|
76
|
-
onValueChanged: import("@angular/core").EventEmitter<AXValueChangedEvent<any>>;
|
77
|
-
valueChange: import("@angular/core").EventEmitter<any>;
|
78
|
-
stateChange: import("@angular/core").EventEmitter<import("@acorex/components/mixin").AXComponentState>;
|
79
|
-
"__#5216@#readonly": boolean;
|
80
|
-
readonly: boolean;
|
81
|
-
"__#5216@#allowNull": boolean;
|
82
|
-
allowNull: boolean;
|
83
|
-
"__#5216@#name": string;
|
84
|
-
name: string;
|
85
|
-
"__#5216@#isUserInteraction": boolean;
|
86
|
-
readonly isUserInteraction: boolean;
|
87
|
-
"__#5216@#value": any;
|
88
|
-
value: any;
|
89
|
-
"__#5216@#state": import("@acorex/components/mixin").AXComponentState;
|
90
|
-
state: import("@acorex/components/mixin").AXComponentState;
|
91
|
-
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
92
|
-
_internalSetValue(value: any): any;
|
93
|
-
_internalGetValue(): any;
|
94
|
-
_setValue(value: any): any;
|
95
|
-
_getValue(value: any): any;
|
96
|
-
_setUserInteraction(): void;
|
97
|
-
setUserInteraction(): void;
|
98
|
-
_onValueChanged(oldValue: any, newValue: any): void;
|
99
|
-
_onInternalInit(): void;
|
100
|
-
_onInternalViewInit(): void;
|
101
|
-
_onInternalDestroy(): void;
|
102
|
-
clear(): void;
|
103
|
-
_checkRequired(): void;
|
104
|
-
validate(): Promise<any>;
|
105
|
-
_setState(state: import("@acorex/components/mixin").AXComponentState, ...args: any[]): void;
|
106
|
-
id: string;
|
107
|
-
"__#5212@#rtl": boolean;
|
108
|
-
rtl: boolean;
|
109
|
-
"__#5212@#elementRef": ElementRef<any>;
|
110
|
-
_cdr: ChangeDetectorRef;
|
111
|
-
_isInited: boolean;
|
112
|
-
_isRendered: boolean;
|
113
|
-
ngOnInit(): void;
|
114
|
-
ngAfterViewInit(): void;
|
115
|
-
ngOnDestroy(): void;
|
116
|
-
_getHostElement<T_3 = HTMLElement>(): T_3;
|
117
|
-
_getInnerElement<T_1_2 = HTMLElement>(): T_1_2;
|
118
|
-
onInit(): void;
|
119
|
-
onViewInit(): void;
|
120
|
-
onDestroy(): void;
|
121
|
-
_applyRtl(): void;
|
122
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
123
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
124
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
125
|
-
}) & (new (...args: any[]) => {
|
126
|
-
type: string;
|
127
|
-
placeholder: string;
|
128
|
-
maxLength: number;
|
129
|
-
autoComplete: string;
|
130
|
-
onKeyDown: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
|
131
|
-
onKeyUp: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
|
132
|
-
onKeyPress: import("@angular/core").EventEmitter<import("@acorex/components/common").AXHtmlEvent<KeyboardEvent>>;
|
133
|
-
_emitOnKeydownEvent(e: KeyboardEvent): void;
|
134
|
-
_emitOnKeyupEvent(e: KeyboardEvent): void;
|
135
|
-
_emitOnKeypressEvent(e: KeyboardEvent): void;
|
136
|
-
id: string;
|
137
|
-
"__#5212@#rtl": boolean;
|
138
|
-
rtl: boolean;
|
139
|
-
"__#5212@#elementRef": ElementRef<any>;
|
140
|
-
_cdr: ChangeDetectorRef;
|
141
|
-
_isInited: boolean;
|
142
|
-
_isRendered: boolean;
|
143
|
-
ngOnInit(): void;
|
144
|
-
ngAfterViewInit(): void;
|
145
|
-
ngOnDestroy(): void;
|
146
|
-
_getHostElement<T_4 = HTMLElement>(): T_4;
|
147
|
-
_getInnerElement<T_1_3 = HTMLElement>(): T_1_3;
|
148
|
-
_onInternalInit(): void;
|
149
|
-
_onInternalViewInit(): void;
|
150
|
-
_onInternalDestroy(): void;
|
151
|
-
onInit(): void;
|
152
|
-
onViewInit(): void;
|
153
|
-
onDestroy(): void;
|
154
|
-
_applyRtl(): void;
|
155
|
-
_onOptionChanging(option: import("@acorex/components/mixin").AXComponentOptionChanging): any;
|
156
|
-
_onOptionChanged(option: import("@acorex/components/mixin").AXComponentOptionChanged): void;
|
157
|
-
_setOption(option: import("@acorex/components/mixin").AXComponentSetOption): void;
|
158
|
-
}) & typeof AXBaseComponent;
|
159
|
-
/**
|
160
|
-
* The Button is a component which detects user interaction and triggers a corresponding event
|
161
|
-
*
|
162
|
-
* @category Components
|
163
|
-
*/
|
164
|
-
export declare class AXColorPickerComponent extends AXBaseColorPickerMixin {
|
165
|
-
protected _elementRef: ElementRef<HTMLDivElement>;
|
166
|
-
private _zone;
|
167
|
-
private _platform;
|
168
|
-
popover: AXPopoverComponent;
|
169
|
-
_target: HTMLDivElement;
|
170
|
-
_popoverTitle: string;
|
171
|
-
_popoverWidth: number;
|
172
|
-
_colorCode: string;
|
173
|
-
_mode: AXColorMode;
|
174
|
-
_isMobile: boolean;
|
175
|
-
/**
|
176
|
-
* @ignore
|
177
|
-
*/
|
178
|
-
constructor(_elementRef: ElementRef<HTMLDivElement>, _cdr: ChangeDetectorRef, _zone: NgZone, _platform: AXPlatform);
|
179
|
-
_handleArrowClickEvent(e: MouseEvent): void;
|
180
|
-
_handleInputClickEvent(e: MouseEvent): void;
|
181
|
-
_handleClearClickEvent(): void;
|
182
|
-
onInit(): void;
|
183
|
-
onViewInit(): void;
|
184
|
-
_onValueChanged(oldValue: any, newValue: any): void;
|
185
|
-
_handleValueChangedEvent(e: AXValueChangedEvent<any>): void;
|
186
|
-
_handlePopupOnOpened(e: any): Promise<void>;
|
187
|
-
_handlePopupOnClosed(e: any): void;
|
188
|
-
_handleKeydown(e: KeyboardEvent): void;
|
189
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPickerComponent, never>;
|
190
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXColorPickerComponent, "ax-color-picker", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "fitParent": { "alias": "fitParent"; "required": false; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; }; "position": { "alias": "position"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "type": { "alias": "type"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; }, { "onOpened": "onOpened"; "onClosed": "onClosed"; "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, never, ["ax-prefix", "ax-validation-rule", "ax-suffix"], false, never>;
|
191
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./color-picker.component";
|
3
|
-
import * as i2 from "@angular/common";
|
4
|
-
import * as i3 from "@acorex/components/common";
|
5
|
-
import * as i4 from "@angular/forms";
|
6
|
-
import * as i5 from "@acorex/components/decorators";
|
7
|
-
import * as i6 from "@acorex/components/popover";
|
8
|
-
import * as i7 from "@acorex/components/button";
|
9
|
-
import * as i8 from "@angular/cdk/a11y";
|
10
|
-
import * as i9 from "@acorex/components/loading";
|
11
|
-
import * as i10 from "@acorex/core/translation";
|
12
|
-
import * as i11 from "@acorex/components/text-box";
|
13
|
-
import * as i12 from "@acorex/components/color-palette";
|
14
|
-
export declare class AXColorPickerModule {
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXColorPickerModule, never>;
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXColorPickerModule, [typeof i1.AXColorPickerComponent], [typeof i2.CommonModule, typeof i3.AXCommonModule, typeof i4.FormsModule, typeof i5.AXDecoratorModule, typeof i6.AXPopoverModule, typeof i7.AXButtonModule, typeof i8.A11yModule, typeof i9.AXLoadingModule, typeof i10.AXTranslationModule, typeof i11.AXTextBoxModule, typeof i12.AXColorPaletteModule], [typeof i1.AXColorPickerComponent]>;
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AXColorPickerModule>;
|
18
|
-
}
|
@@ -1,75 +0,0 @@
|
|
1
|
-
export type AXPosition = 'top-start' | 'top-center' | 'top-end' | 'start-start' | 'start-center' | 'start-end' | 'bottom-start' | 'bottom-center' | 'bottom-end' | 'end-start' | 'end-center' | 'end-end';
|
2
|
-
export declare const AXPositions: {
|
3
|
-
topStart: {
|
4
|
-
originX: string;
|
5
|
-
originY: string;
|
6
|
-
overlayX: string;
|
7
|
-
overlayY: string;
|
8
|
-
};
|
9
|
-
topCenter: {
|
10
|
-
originX: string;
|
11
|
-
originY: string;
|
12
|
-
overlayX: string;
|
13
|
-
overlayY: string;
|
14
|
-
};
|
15
|
-
topEnd: {
|
16
|
-
originX: string;
|
17
|
-
originY: string;
|
18
|
-
overlayX: string;
|
19
|
-
overlayY: string;
|
20
|
-
};
|
21
|
-
startStart: {
|
22
|
-
originX: string;
|
23
|
-
originY: string;
|
24
|
-
overlayX: string;
|
25
|
-
overlayY: string;
|
26
|
-
};
|
27
|
-
startCenter: {
|
28
|
-
originX: string;
|
29
|
-
originY: string;
|
30
|
-
overlayX: string;
|
31
|
-
overlayY: string;
|
32
|
-
};
|
33
|
-
startEnd: {
|
34
|
-
originX: string;
|
35
|
-
originY: string;
|
36
|
-
overlayX: string;
|
37
|
-
overlayY: string;
|
38
|
-
};
|
39
|
-
bottomStart: {
|
40
|
-
originX: string;
|
41
|
-
originY: string;
|
42
|
-
overlayX: string;
|
43
|
-
overlayY: string;
|
44
|
-
};
|
45
|
-
bottomCenter: {
|
46
|
-
originX: string;
|
47
|
-
originY: string;
|
48
|
-
overlayX: string;
|
49
|
-
overlayY: string;
|
50
|
-
};
|
51
|
-
bottomEnd: {
|
52
|
-
originX: string;
|
53
|
-
originY: string;
|
54
|
-
overlayX: string;
|
55
|
-
overlayY: string;
|
56
|
-
};
|
57
|
-
endStart: {
|
58
|
-
originX: string;
|
59
|
-
originY: string;
|
60
|
-
overlayX: string;
|
61
|
-
overlayY: string;
|
62
|
-
};
|
63
|
-
endCenter: {
|
64
|
-
originX: string;
|
65
|
-
originY: string;
|
66
|
-
overlayX: string;
|
67
|
-
overlayY: string;
|
68
|
-
};
|
69
|
-
endEnd: {
|
70
|
-
originX: string;
|
71
|
-
originY: string;
|
72
|
-
overlayX: string;
|
73
|
-
overlayY: string;
|
74
|
-
};
|
75
|
-
};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { Overlay, OverlayKeyboardDispatcher, OverlayPositionBuilder, ScrollStrategyOptions, OverlayContainer, OverlayRef, OverlayConfig, OverlayOutsideClickDispatcher } from '@angular/cdk/overlay';
|
2
|
-
import { ComponentFactoryResolver, Injector, NgZone, RendererFactory2 } from '@angular/core';
|
3
|
-
import { Directionality } from '@angular/cdk/bidi';
|
4
|
-
import { Location } from '@angular/common';
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
export declare class DynamicOverlayContainer extends OverlayContainer {
|
7
|
-
setContainerElement(containerElement: HTMLElement): void;
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicOverlayContainer, never>;
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicOverlayContainer>;
|
10
|
-
}
|
11
|
-
export declare class DynamicOverlay extends Overlay {
|
12
|
-
private readonly _dynamicOverlayContainer;
|
13
|
-
private renderer;
|
14
|
-
constructor(scrollStrategies: ScrollStrategyOptions, _overlayContainer: DynamicOverlayContainer, _componentFactoryResolver: ComponentFactoryResolver, _positionBuilder: OverlayPositionBuilder, _keyboardDispatcher: OverlayKeyboardDispatcher, _injector: Injector, _ngZone: NgZone, _document: any, _directionality: Directionality, rendererFactory: RendererFactory2, _location: Location, _outsideClickDispatcher: OverlayOutsideClickDispatcher);
|
15
|
-
private setContainerElement;
|
16
|
-
createOn(containerElement: HTMLElement, config?: OverlayConfig): OverlayRef;
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicOverlay, never>;
|
18
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicOverlay>;
|
19
|
-
}
|
@@ -1,34 +0,0 @@
|
|
1
|
-
import { ApplicationRef } from '@angular/core';
|
2
|
-
import { Overlay, OverlayPositionBuilder, PositionStrategy } from '@angular/cdk/overlay';
|
3
|
-
import { Portal } from '@angular/cdk/portal';
|
4
|
-
import { DynamicOverlay } from './custom-cdk-overlay.service';
|
5
|
-
import { AXConnectedPosition } from '../classes/drawing.class';
|
6
|
-
import * as i0 from "@angular/core";
|
7
|
-
export interface AXOverlayViewRef {
|
8
|
-
instance: any;
|
9
|
-
dispose: () => void;
|
10
|
-
isOpen: () => boolean;
|
11
|
-
}
|
12
|
-
export interface AXOverlayConfigs {
|
13
|
-
position?: AXConnectedPosition | AXConnectedPosition[] | PositionStrategy;
|
14
|
-
hasBackdrop?: boolean;
|
15
|
-
transparentBackdrop?: boolean;
|
16
|
-
closeOnClickOutside?: boolean;
|
17
|
-
targetElement?: HTMLElement;
|
18
|
-
containerElement?: HTMLElement;
|
19
|
-
onBackdropClick?: () => void;
|
20
|
-
panelClass?: string[] | string;
|
21
|
-
backdropClass?: string[] | string;
|
22
|
-
scroll?: 'auto' | 'block' | 'close';
|
23
|
-
}
|
24
|
-
export declare class AXOverlayService {
|
25
|
-
private overlayService;
|
26
|
-
private overlayService2;
|
27
|
-
private appRef;
|
28
|
-
portal: Portal<any>;
|
29
|
-
constructor(overlayService: DynamicOverlay, overlayService2: Overlay, appRef: ApplicationRef);
|
30
|
-
position(): OverlayPositionBuilder;
|
31
|
-
show(content: any, context?: any, configs?: AXOverlayConfigs): AXOverlayViewRef;
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXOverlayService, never>;
|
33
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AXOverlayService>;
|
34
|
-
}
|
package/date-picker/README.md
DELETED
package/date-picker/index.d.ts
DELETED
@@ -1,40 +0,0 @@
|
|
1
|
-
import { AXCalendarNavigateEvent, MXCalendarBaseComponent } from '@acorex/components/calendar';
|
2
|
-
import { AXOptionChangedEvent, MXInteractiveComponent, MXValueComponent } from '@acorex/components/common';
|
3
|
-
import { AXPopoverComponent, MXDropDownComponent } from '@acorex/components/popover';
|
4
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
declare const AXDatePickerComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
|
7
|
-
new (): MXValueComponent<Date>;
|
8
|
-
ɵfac: unknown;
|
9
|
-
ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
|
10
|
-
}, typeof MXInteractiveComponent, typeof MXCalendarBaseComponent, typeof MXDropDownComponent]>;
|
11
|
-
export declare class AXDatePickerComponent extends AXDatePickerComponent_base implements OnInit {
|
12
|
-
protected popover: AXPopoverComponent;
|
13
|
-
private _calendar;
|
14
|
-
protected _target: HTMLDivElement;
|
15
|
-
displayText: string;
|
16
|
-
protected _calendarValue: Date;
|
17
|
-
protected _cursorPos: number;
|
18
|
-
protected _isMobile: boolean;
|
19
|
-
protected _popoverTitle: string;
|
20
|
-
protected _popoverWidth: number;
|
21
|
-
formatChange: EventEmitter<string>;
|
22
|
-
private _format;
|
23
|
-
get format(): string;
|
24
|
-
set format(v: string);
|
25
|
-
placeholder: string;
|
26
|
-
interface: 'calendar' | 'picker';
|
27
|
-
private _platform;
|
28
|
-
ngOnInit(): void;
|
29
|
-
private _updateDisplayText;
|
30
|
-
protected _handlePopoverOpened(): void;
|
31
|
-
protected _handleArrowClickEvent(): void;
|
32
|
-
_handleOnValueChanged(): void;
|
33
|
-
_handleOnOptionChanged(e: AXOptionChangedEvent): void;
|
34
|
-
protected _handleOnInputClickEvent(e: MouseEvent): void;
|
35
|
-
protected _handleOnNavigate(e: AXCalendarNavigateEvent): void;
|
36
|
-
private get __hostClass();
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXDatePickerComponent, never>;
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePickerComponent, "ax-date-picker", never, { "rtl": { "alias": "rtl"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "holidayDates": { "alias": "holidayDates"; "required": false; }; "type": { "alias": "type"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "cellClass": { "alias": "cellClass"; "required": false; }; "format": { "alias": "format"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "interface": { "alias": "interface"; "required": false; }; }, { "onOptionChanged": "onOptionChanged"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "depthChange": "depthChange"; "typeChange": "typeChange"; "activeViewChange": "activeViewChange"; "disabledDatesChange": "disabledDatesChange"; "holidayDatesChange": "holidayDatesChange"; "onNavigate": "onNavigate"; "onSlotClick": "onSlotClick"; "formatChange": "formatChange"; }, never, ["ax-prefix", "ax-clear-button", "ax-validation-rule", "ax-suffix"], false, never>;
|
39
|
-
}
|
40
|
-
export {};
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./datepicker.component";
|
3
|
-
import * as i2 from "@angular/common";
|
4
|
-
import * as i3 from "@acorex/components/calendar";
|
5
|
-
import * as i4 from "@acorex/components/text-box";
|
6
|
-
import * as i5 from "@acorex/components/button";
|
7
|
-
import * as i6 from "@acorex/components/popover";
|
8
|
-
import * as i7 from "@acorex/components/decorators";
|
9
|
-
import * as i8 from "@acorex/core/dateTime";
|
10
|
-
import * as i9 from "@angular/forms";
|
11
|
-
export declare class AXDatepickerModule {
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXDatepickerModule, never>;
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXDatepickerModule, [typeof i1.AXDatePickerComponent], [typeof i2.CommonModule, typeof i3.AXCalendarModule, typeof i4.AXTextBoxModule, typeof i5.AXButtonModule, typeof i6.AXPopoverModule, typeof i7.AXDecoratorModule, typeof i8.AXDateTimeModule, typeof i9.FormsModule], [typeof i1.AXDatePickerComponent]>;
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AXDatepickerModule>;
|
15
|
-
}
|
@@ -1,3 +0,0 @@
|
|
1
|
-
export * from './lib/color-picker.component';
|
2
|
-
export * from './lib/color-picker.module';
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvY29sb3ItcGlja2VyL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYi9jb2xvci1waWNrZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbG9yLXBpY2tlci5tb2R1bGUnO1xuIl19
|
@@ -1,116 +0,0 @@
|
|
1
|
-
import { AXColorUtil } from '@acorex/core/utils';
|
2
|
-
import { AXPlatform } from '@acorex/core/platform';
|
3
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, HostListener, NgZone, ViewChild, ViewEncapsulation, } from '@angular/core';
|
4
|
-
import { AXClosbaleComponent, AXValuableComponent } from '@acorex/components/common';
|
5
|
-
import { AXPopoverComponent } from '@acorex/components/popover';
|
6
|
-
import { _InteractiveComponenetMixin, _DropdownComponenetMixin, _ValueComponenetMixin, _TextboxComponenetMixin, AXBaseComponent, } from '@acorex/components/mixin';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
import * as i1 from "@acorex/core/platform";
|
9
|
-
import * as i2 from "@angular/common";
|
10
|
-
import * as i3 from "@acorex/components/popover";
|
11
|
-
import * as i4 from "@angular/cdk/a11y";
|
12
|
-
import * as i5 from "@acorex/components/color-palette";
|
13
|
-
export const AXBaseColorPickerMixin = _InteractiveComponenetMixin(_DropdownComponenetMixin(_ValueComponenetMixin(_TextboxComponenetMixin(AXBaseComponent))));
|
14
|
-
/**
|
15
|
-
* The Button is a component which detects user interaction and triggers a corresponding event
|
16
|
-
*
|
17
|
-
* @category Components
|
18
|
-
*/
|
19
|
-
export class AXColorPickerComponent extends AXBaseColorPickerMixin {
|
20
|
-
/**
|
21
|
-
* @ignore
|
22
|
-
*/
|
23
|
-
constructor(_elementRef, _cdr, _zone, _platform) {
|
24
|
-
super(_elementRef, _cdr);
|
25
|
-
this._elementRef = _elementRef;
|
26
|
-
this._zone = _zone;
|
27
|
-
this._platform = _platform;
|
28
|
-
this.popover = null;
|
29
|
-
this._mode = 'hex';
|
30
|
-
this._isMobile = false;
|
31
|
-
this._isMobile = this._platform.is('Mobile');
|
32
|
-
this._platform.resize.subscribe(() => {
|
33
|
-
this._isMobile = this._platform.is('Mobile');
|
34
|
-
this.popover.dispose();
|
35
|
-
});
|
36
|
-
}
|
37
|
-
_handleArrowClickEvent(e) {
|
38
|
-
e.stopPropagation();
|
39
|
-
this.toggle();
|
40
|
-
}
|
41
|
-
_handleInputClickEvent(e) {
|
42
|
-
e.stopPropagation();
|
43
|
-
this.toggle();
|
44
|
-
}
|
45
|
-
_handleClearClickEvent() {
|
46
|
-
this.setUserInteraction();
|
47
|
-
this.clear();
|
48
|
-
}
|
49
|
-
onInit() {
|
50
|
-
super.onInit();
|
51
|
-
this._target = this._elementRef.nativeElement;
|
52
|
-
}
|
53
|
-
onViewInit() {
|
54
|
-
super.onViewInit();
|
55
|
-
}
|
56
|
-
_onValueChanged(oldValue, newValue) {
|
57
|
-
super._onValueChanged(oldValue, newValue);
|
58
|
-
if (newValue != null)
|
59
|
-
this._colorCode = AXColorUtil.toString(newValue);
|
60
|
-
else
|
61
|
-
this._colorCode = '';
|
62
|
-
}
|
63
|
-
_handleValueChangedEvent(e) {
|
64
|
-
if (e.isUserInteraction)
|
65
|
-
this._setUserInteraction();
|
66
|
-
this.value = e.value;
|
67
|
-
}
|
68
|
-
async _handlePopupOnOpened(e) { }
|
69
|
-
_handlePopupOnClosed(e) {
|
70
|
-
this.focus();
|
71
|
-
}
|
72
|
-
_handleKeydown(e) {
|
73
|
-
if (e.ctrlKey || e.code === 'Space') {
|
74
|
-
this.open();
|
75
|
-
}
|
76
|
-
e.preventDefault();
|
77
|
-
}
|
78
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AXColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.AXPlatform }], target: i0.ɵɵFactoryTarget.Component }); }
|
79
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: AXColorPickerComponent, selector: "ax-color-picker", inputs: { isOpen: "isOpen", fitParent: "fitParent", dropdownWidth: "dropdownWidth", position: "position", disabled: "disabled", tabIndex: "tabIndex", readonly: "readonly", value: "value", name: "name", checked: "checked", placeholder: "placeholder", maxLength: "maxLength", type: "type", autoComplete: "autoComplete" }, outputs: { onOpened: "onOpened", onClosed: "onClosed", onBlur: "onBlur", onFocus: "onFocus", valueChange: "valueChange", onValueChanged: "onValueChanged" }, host: { listeners: { "keydown": "_handleKeydown($event)" }, classAttribute: "ax-editor-container ax-drop-down" }, providers: [
|
80
|
-
{ provide: AXClosbaleComponent, useExisting: AXColorPickerComponent },
|
81
|
-
{ provide: AXValuableComponent, useExisting: AXColorPickerComponent },
|
82
|
-
], viewQueries: [{ propertyName: "popover", first: true, predicate: AXPopoverComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-content select=\"ax-prefix\"> </ng-content>\n<div class=\"ax-dropdown-content\" [class.ax-state-disabled]=\"disabled\" (click)=\"_handleInputClickEvent($event)\">\n <div *ngIf=\"value\" class=\"color-badge\" [ngStyle]=\"{ 'background-color': value }\"></div>\n <div class=\"color-value\">{{ _colorCode }}</div>\n</div>\n\n<button type=\"button\" class=\"ax-general-button ax-button-icon\" [tabIndex]=\"-1\" [disabled]=\"disabled\"\n (click)=\"_handleArrowClickEvent($event)\">\n <span class=\"ax-icon ax-icon-color-palette\"></span>\n</button>\n<ng-content select=\"ax-validation-rule\"> </ng-content>\n<ng-content select=\"ax-suffix\"> </ng-content>\n<ax-popover [target]=\"_target\" [position]=\"position\" [openTrigger]=\"'manual'\" [closeTrigger]=\"'clickout'\"\n [adaptivityEnabled]=\"true\" (onOpened)=\"_handlePopupOnOpened($event)\" (onClosed)=\"_handlePopupOnClosed($event)\">\n <div class=\"ax-overlay-pane\" [class.ax-w-full]=\"_isMobile\" tabindex=\"0\" aria-modal=\"true\" cdkTrapFocus\n [class.ax-overlay-actionsheet]=\"_isMobile\">\n <ax-color-palette [value]=\"value\" (onValueChanged)=\"_handleValueChangedEvent($event)\"> </ax-color-palette>\n </div>\n</ax-popover>", styles: ["ax-color-picker .ax-dropdown-content{margin:0 .5rem;display:flex;align-items:center}ax-color-picker .ax-dropdown-content .color-badge{display:block;border-radius:99rem;width:1rem;min-width:1rem;height:1rem;margin-inline-end:.5rem;border:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-color-picker .ax-dropdown-content .color-value{text-transform:uppercase;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ax-overlay-pane ax-color-palette{border:none}@media (max-width: 599px){.ax-overlay-pane ax-color-palette{width:100%}.ax-overlay-pane ax-color-palette .palette-items{max-height:30vh}}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i3.AXPopoverComponent, selector: "ax-popover", inputs: ["target", "position", "openTrigger", "closeTrigger", "hasBackdrop", "backdropClass", "adaptivityEnabled"], outputs: ["onOpened", "onClosed"] }, { kind: "directive", type: i4.CdkTrapFocus, selector: "[cdkTrapFocus]", inputs: ["cdkTrapFocus", "cdkTrapFocusAutoCapture"], exportAs: ["cdkTrapFocus"] }, { kind: "component", type: i5.AXColorPalleteComponent, selector: "ax-color-palette", inputs: ["disabled", "tabIndex", "readonly", "value", "state", "name", "checked"], outputs: ["onBlur", "onFocus", "valueChange", "stateChange", "onValueChanged", "readonlyChange", "disabledChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
83
|
-
}
|
84
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AXColorPickerComponent, decorators: [{
|
85
|
-
type: Component,
|
86
|
-
args: [{ selector: 'ax-color-picker', inputs: [
|
87
|
-
'isOpen',
|
88
|
-
'fitParent',
|
89
|
-
'dropdownWidth',
|
90
|
-
'position',
|
91
|
-
'disabled',
|
92
|
-
'tabIndex',
|
93
|
-
'readonly',
|
94
|
-
'value',
|
95
|
-
'name',
|
96
|
-
'checked',
|
97
|
-
'placeholder',
|
98
|
-
'maxLength',
|
99
|
-
'type',
|
100
|
-
'autoComplete',
|
101
|
-
'readonly',
|
102
|
-
'value',
|
103
|
-
'name',
|
104
|
-
'checked',
|
105
|
-
], outputs: ['onOpened', 'onClosed', 'onBlur', 'onFocus', 'valueChange', 'onValueChanged'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
106
|
-
{ provide: AXClosbaleComponent, useExisting: AXColorPickerComponent },
|
107
|
-
{ provide: AXValuableComponent, useExisting: AXColorPickerComponent },
|
108
|
-
], host: { class: 'ax-editor-container ax-drop-down' }, template: "<ng-content select=\"ax-prefix\"> </ng-content>\n<div class=\"ax-dropdown-content\" [class.ax-state-disabled]=\"disabled\" (click)=\"_handleInputClickEvent($event)\">\n <div *ngIf=\"value\" class=\"color-badge\" [ngStyle]=\"{ 'background-color': value }\"></div>\n <div class=\"color-value\">{{ _colorCode }}</div>\n</div>\n\n<button type=\"button\" class=\"ax-general-button ax-button-icon\" [tabIndex]=\"-1\" [disabled]=\"disabled\"\n (click)=\"_handleArrowClickEvent($event)\">\n <span class=\"ax-icon ax-icon-color-palette\"></span>\n</button>\n<ng-content select=\"ax-validation-rule\"> </ng-content>\n<ng-content select=\"ax-suffix\"> </ng-content>\n<ax-popover [target]=\"_target\" [position]=\"position\" [openTrigger]=\"'manual'\" [closeTrigger]=\"'clickout'\"\n [adaptivityEnabled]=\"true\" (onOpened)=\"_handlePopupOnOpened($event)\" (onClosed)=\"_handlePopupOnClosed($event)\">\n <div class=\"ax-overlay-pane\" [class.ax-w-full]=\"_isMobile\" tabindex=\"0\" aria-modal=\"true\" cdkTrapFocus\n [class.ax-overlay-actionsheet]=\"_isMobile\">\n <ax-color-palette [value]=\"value\" (onValueChanged)=\"_handleValueChangedEvent($event)\"> </ax-color-palette>\n </div>\n</ax-popover>", styles: ["ax-color-picker .ax-dropdown-content{margin:0 .5rem;display:flex;align-items:center}ax-color-picker .ax-dropdown-content .color-badge{display:block;border-radius:99rem;width:1rem;min-width:1rem;height:1rem;margin-inline-end:.5rem;border:1px solid;border-color:rgba(var(--ax-color-border-default))}ax-color-picker .ax-dropdown-content .color-value{text-transform:uppercase;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ax-overlay-pane ax-color-palette{border:none}@media (max-width: 599px){.ax-overlay-pane ax-color-palette{width:100%}.ax-overlay-pane ax-color-palette .palette-items{max-height:30vh}}\n"] }]
|
109
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i1.AXPlatform }]; }, propDecorators: { popover: [{
|
110
|
-
type: ViewChild,
|
111
|
-
args: [AXPopoverComponent, { static: true }]
|
112
|
-
}], _handleKeydown: [{
|
113
|
-
type: HostListener,
|
114
|
-
args: ['keydown', ['$event']]
|
115
|
-
}] } });
|
116
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sb3ItcGlja2VyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9jb2xvci1waWNrZXIvc3JjL2xpYi9jb2xvci1waWNrZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL2NvbG9yLXBpY2tlci9zcmMvbGliL2NvbG9yLXBpY2tlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWUsV0FBVyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDOUQsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBRW5ELE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsaUJBQWlCLEVBQ2pCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsWUFBWSxFQUNaLE1BQU0sRUFDTixTQUFTLEVBQ1QsaUJBQWlCLEdBQ2xCLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxtQkFBbUIsRUFBdUIsTUFBTSwyQkFBMkIsQ0FBQztBQUMxRyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUNoRSxPQUFPLEVBQ0wsMkJBQTJCLEVBQzNCLHdCQUF3QixFQUN4QixxQkFBcUIsRUFDckIsdUJBQXVCLEVBQ3ZCLGVBQWUsR0FDaEIsTUFBTSwwQkFBMEIsQ0FBQzs7Ozs7OztBQUVsQyxNQUFNLENBQUMsTUFBTSxzQkFBc0IsR0FBRywyQkFBMkIsQ0FDL0Qsd0JBQXdCLENBQUMscUJBQXFCLENBQUMsdUJBQXVCLENBQUMsZUFBZSxDQUFDLENBQUMsQ0FBQyxDQUMxRixDQUFDO0FBRUY7Ozs7R0FJRztBQWtDSCxNQUFNLE9BQU8sc0JBQXVCLFNBQVEsc0JBQXNCO0lBV2hFOztPQUVHO0lBQ0gsWUFDWSxXQUF1QyxFQUNqRCxJQUF1QixFQUNmLEtBQWEsRUFDYixTQUFxQjtRQUU3QixLQUFLLENBQUMsV0FBVyxFQUFFLElBQUksQ0FBQyxDQUFDO1FBTGYsZ0JBQVcsR0FBWCxXQUFXLENBQTRCO1FBRXpDLFVBQUssR0FBTCxLQUFLLENBQVE7UUFDYixjQUFTLEdBQVQsU0FBUyxDQUFZO1FBaEJ0QixZQUFPLEdBQXVCLElBQUksQ0FBQztRQU01QyxVQUFLLEdBQWdCLEtBQUssQ0FBQztRQUUzQixjQUFTLEdBQVksS0FBSyxDQUFDO1FBV3pCLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxFQUFFLENBQUMsUUFBUSxDQUFDLENBQUM7UUFDN0MsSUFBSSxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLEdBQUcsRUFBRTtZQUNuQyxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1lBQzdDLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyxFQUFFLENBQUM7UUFDekIsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsc0JBQXNCLENBQUMsQ0FBYTtRQUNsQyxDQUFDLENBQUMsZUFBZSxFQUFFLENBQUM7UUFDcEIsSUFBSSxDQUFDLE1BQU0sRUFBRSxDQUFDO0lBQ2hCLENBQUM7SUFFRCxzQkFBc0IsQ0FBQyxDQUFhO1FBQ2xDLENBQUMsQ0FBQyxlQUFlLEVBQUUsQ0FBQztRQUNwQixJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDaEIsQ0FBQztJQUVELHNCQUFzQjtRQUNwQixJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztRQUMxQixJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7SUFDZixDQUFDO0lBRVEsTUFBTTtRQUNiLEtBQUssQ0FBQyxNQUFNLEVBQUUsQ0FBQztRQUNmLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUM7SUFDaEQsQ0FBQztJQUVRLFVBQVU7UUFDakIsS0FBSyxDQUFDLFVBQVUsRUFBRSxDQUFDO0lBQ3JCLENBQUM7SUFFUSxlQUFlLENBQUMsUUFBYSxFQUFFLFFBQWE7UUFDbkQsS0FBSyxDQUFDLGVBQWUsQ0FBQyxRQUFRLEVBQUUsUUFBUSxDQUFDLENBQUM7UUFDMUMsSUFBSSxRQUFRLElBQUksSUFBSTtZQUFFLElBQUksQ0FBQyxVQUFVLEdBQUcsV0FBVyxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsQ0FBQzs7WUFDbEUsSUFBSSxDQUFDLFVBQVUsR0FBRyxFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUVELHdCQUF3QixDQUFDLENBQTJCO1FBQ2xELElBQUksQ0FBQyxDQUFDLGlCQUFpQjtZQUFFLElBQUksQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO1FBQ3BELElBQUksQ0FBQyxLQUFLLEdBQUcsQ0FBQyxDQUFDLEtBQUssQ0FBQztJQUN2QixDQUFDO0lBRUQsS0FBSyxDQUFDLG9CQUFvQixDQUFDLENBQUMsSUFBSSxDQUFDO0lBRWpDLG9CQUFvQixDQUFDLENBQUM7UUFDcEIsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQ2YsQ0FBQztJQUdELGNBQWMsQ0FBQyxDQUFnQjtRQUM3QixJQUFJLENBQUMsQ0FBQyxPQUFPLElBQUksQ0FBQyxDQUFDLElBQUksS0FBSyxPQUFPLEVBQUU7WUFDbkMsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDO1NBQ2I7UUFDRCxDQUFDLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDckIsQ0FBQzs4R0EzRVUsc0JBQXNCO2tHQUF0QixzQkFBc0IseW5CQU50QjtZQUNULEVBQUUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLFdBQVcsRUFBRSxzQkFBc0IsRUFBRTtZQUNyRSxFQUFFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxXQUFXLEVBQUUsc0JBQXNCLEVBQUU7U0FDdEUsbUVBSVUsa0JBQWtCLHFGQ25FL0Isa3JDQWtCYTs7MkZEZ0RBLHNCQUFzQjtrQkFqQ2xDLFNBQVM7K0JBQ0UsaUJBQWlCLFVBR25CO3dCQUNOLFFBQVE7d0JBQ1IsV0FBVzt3QkFDWCxlQUFlO3dCQUNmLFVBQVU7d0JBQ1YsVUFBVTt3QkFDVixVQUFVO3dCQUNWLFVBQVU7d0JBQ1YsT0FBTzt3QkFDUCxNQUFNO3dCQUNOLFNBQVM7d0JBQ1QsYUFBYTt3QkFDYixXQUFXO3dCQUNYLE1BQU07d0JBQ04sY0FBYzt3QkFDZCxVQUFVO3dCQUNWLE9BQU87d0JBQ1AsTUFBTTt3QkFDTixTQUFTO3FCQUNWLFdBQ1EsQ0FBQyxVQUFVLEVBQUUsVUFBVSxFQUFFLFFBQVEsRUFBRSxTQUFTLEVBQUUsYUFBYSxFQUFFLGdCQUFnQixDQUFDLGlCQUN4RSxpQkFBaUIsQ0FBQyxJQUFJLG1CQUNwQix1QkFBdUIsQ0FBQyxNQUFNLGFBQ3BDO3dCQUNULEVBQUUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLFdBQVcsd0JBQXdCLEVBQUU7d0JBQ3JFLEVBQUUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLFdBQVcsd0JBQXdCLEVBQUU7cUJBQ3RFLFFBQ0ssRUFBRSxLQUFLLEVBQUUsa0NBQWtDLEVBQUU7K0tBSTFDLE9BQU87c0JBRGYsU0FBUzt1QkFBQyxrQkFBa0IsRUFBRSxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQUU7Z0JBcUUvQyxjQUFjO3NCQURiLFlBQVk7dUJBQUMsU0FBUyxFQUFFLENBQUMsUUFBUSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhDb2xvck1vZGUsIEFYQ29sb3JVdGlsIH0gZnJvbSAnQGFjb3JleC9jb3JlL3V0aWxzJztcbmltcG9ydCB7IEFYUGxhdGZvcm0gfSBmcm9tICdAYWNvcmV4L2NvcmUvcGxhdGZvcm0nO1xuXG5pbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgRWxlbWVudFJlZixcbiAgSG9zdExpc3RlbmVyLFxuICBOZ1pvbmUsXG4gIFZpZXdDaGlsZCxcbiAgVmlld0VuY2Fwc3VsYXRpb24sXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBBWENsb3NiYWxlQ29tcG9uZW50LCBBWFZhbHVhYmxlQ29tcG9uZW50LCBBWFZhbHVlQ2hhbmdlZEV2ZW50IH0gZnJvbSAnQGFjb3JleC9jb21wb25lbnRzL2NvbW1vbic7XG5pbXBvcnQgeyBBWFBvcG92ZXJDb21wb25lbnQgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvcG9wb3Zlcic7XG5pbXBvcnQge1xuICBfSW50ZXJhY3RpdmVDb21wb25lbmV0TWl4aW4sXG4gIF9Ecm9wZG93bkNvbXBvbmVuZXRNaXhpbixcbiAgX1ZhbHVlQ29tcG9uZW5ldE1peGluLFxuICBfVGV4dGJveENvbXBvbmVuZXRNaXhpbixcbiAgQVhCYXNlQ29tcG9uZW50LFxufSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvbWl4aW4nO1xuXG5leHBvcnQgY29uc3QgQVhCYXNlQ29sb3JQaWNrZXJNaXhpbiA9IF9JbnRlcmFjdGl2ZUNvbXBvbmVuZXRNaXhpbihcbiAgX0Ryb3Bkb3duQ29tcG9uZW5ldE1peGluKF9WYWx1ZUNvbXBvbmVuZXRNaXhpbihfVGV4dGJveENvbXBvbmVuZXRNaXhpbihBWEJhc2VDb21wb25lbnQpKSlcbik7XG5cbi8qKlxuICogVGhlIEJ1dHRvbiBpcyBhIGNvbXBvbmVudCB3aGljaCBkZXRlY3RzIHVzZXIgaW50ZXJhY3Rpb24gYW5kIHRyaWdnZXJzIGEgY29ycmVzcG9uZGluZyBldmVudFxuICpcbiAqIEBjYXRlZ29yeSBDb21wb25lbnRzXG4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2F4LWNvbG9yLXBpY2tlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9jb2xvci1waWNrZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jb2xvci1waWNrZXIuY29tcG9uZW50LnNjc3MnXSxcbiAgaW5wdXRzOiBbXG4gICAgJ2lzT3BlbicsXG4gICAgJ2ZpdFBhcmVudCcsXG4gICAgJ2Ryb3Bkb3duV2lkdGgnLFxuICAgICdwb3NpdGlvbicsXG4gICAgJ2Rpc2FibGVkJyxcbiAgICAndGFiSW5kZXgnLFxuICAgICdyZWFkb25seScsXG4gICAgJ3ZhbHVlJyxcbiAgICAnbmFtZScsXG4gICAgJ2NoZWNrZWQnLFxuICAgICdwbGFjZWhvbGRlcicsXG4gICAgJ21heExlbmd0aCcsXG4gICAgJ3R5cGUnLFxuICAgICdhdXRvQ29tcGxldGUnLFxuICAgICdyZWFkb25seScsXG4gICAgJ3ZhbHVlJyxcbiAgICAnbmFtZScsXG4gICAgJ2NoZWNrZWQnLFxuICBdLFxuICBvdXRwdXRzOiBbJ29uT3BlbmVkJywgJ29uQ2xvc2VkJywgJ29uQmx1cicsICdvbkZvY3VzJywgJ3ZhbHVlQ2hhbmdlJywgJ29uVmFsdWVDaGFuZ2VkJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcm92aWRlcnM6IFtcbiAgICB7IHByb3ZpZGU6IEFYQ2xvc2JhbGVDb21wb25lbnQsIHVzZUV4aXN0aW5nOiBBWENvbG9yUGlja2VyQ29tcG9uZW50IH0sXG4gICAgeyBwcm92aWRlOiBBWFZhbHVhYmxlQ29tcG9uZW50LCB1c2VFeGlzdGluZzogQVhDb2xvclBpY2tlckNvbXBvbmVudCB9LFxuICBdLFxuICBob3N0OiB7IGNsYXNzOiAnYXgtZWRpdG9yLWNvbnRhaW5lciBheC1kcm9wLWRvd24nIH0sXG59KVxuZXhwb3J0IGNsYXNzIEFYQ29sb3JQaWNrZXJDb21wb25lbnQgZXh0ZW5kcyBBWEJhc2VDb2xvclBpY2tlck1peGluIHtcbiAgQFZpZXdDaGlsZChBWFBvcG92ZXJDb21wb25lbnQsIHsgc3RhdGljOiB0cnVlIH0pXG4gIG92ZXJyaWRlIHBvcG92ZXI6IEFYUG9wb3ZlckNvbXBvbmVudCA9IG51bGw7XG5cbiAgX3RhcmdldDogSFRNTERpdkVsZW1lbnQ7XG4gIF9wb3BvdmVyVGl0bGU6IHN0cmluZztcbiAgX3BvcG92ZXJXaWR0aDogbnVtYmVyO1xuICBfY29sb3JDb2RlOiBzdHJpbmc7XG4gIF9tb2RlOiBBWENvbG9yTW9kZSA9ICdoZXgnO1xuXG4gIF9pc01vYmlsZTogYm9vbGVhbiA9IGZhbHNlO1xuICAvKipcbiAgICogIEBpZ25vcmVcbiAgICovXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByb3RlY3RlZCBfZWxlbWVudFJlZjogRWxlbWVudFJlZjxIVE1MRGl2RWxlbWVudD4sXG4gICAgX2NkcjogQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICAgcHJpdmF0ZSBfem9uZTogTmdab25lLFxuICAgIHByaXZhdGUgX3BsYXRmb3JtOiBBWFBsYXRmb3JtXG4gICkge1xuICAgIHN1cGVyKF9lbGVtZW50UmVmLCBfY2RyKTtcbiAgICB0aGlzLl9pc01vYmlsZSA9IHRoaXMuX3BsYXRmb3JtLmlzKCdNb2JpbGUnKTtcbiAgICB0aGlzLl9wbGF0Zm9ybS5yZXNpemUuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgIHRoaXMuX2lzTW9iaWxlID0gdGhpcy5fcGxhdGZvcm0uaXMoJ01vYmlsZScpO1xuICAgICAgdGhpcy5wb3BvdmVyLmRpc3Bvc2UoKTtcbiAgICB9KTtcbiAgfVxuXG4gIF9oYW5kbGVBcnJvd0NsaWNrRXZlbnQoZTogTW91c2VFdmVudCkge1xuICAgIGUuc3RvcFByb3BhZ2F0aW9uKCk7XG4gICAgdGhpcy50b2dnbGUoKTtcbiAgfVxuXG4gIF9oYW5kbGVJbnB1dENsaWNrRXZlbnQoZTogTW91c2VFdmVudCkge1xuICAgIGUuc3RvcFByb3BhZ2F0aW9uKCk7XG4gICAgdGhpcy50b2dnbGUoKTtcbiAgfVxuXG4gIF9oYW5kbGVDbGVhckNsaWNrRXZlbnQoKSB7XG4gICAgdGhpcy5zZXRVc2VySW50ZXJhY3Rpb24oKTtcbiAgICB0aGlzLmNsZWFyKCk7XG4gIH1cblxuICBvdmVycmlkZSBvbkluaXQoKSB7XG4gICAgc3VwZXIub25Jbml0KCk7XG4gICAgdGhpcy5fdGFyZ2V0ID0gdGhpcy5fZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50O1xuICB9XG5cbiAgb3ZlcnJpZGUgb25WaWV3SW5pdCgpIHtcbiAgICBzdXBlci5vblZpZXdJbml0KCk7XG4gIH1cblxuICBvdmVycmlkZSBfb25WYWx1ZUNoYW5nZWQob2xkVmFsdWU6IGFueSwgbmV3VmFsdWU6IGFueSkge1xuICAgIHN1cGVyLl9vblZhbHVlQ2hhbmdlZChvbGRWYWx1ZSwgbmV3VmFsdWUpO1xuICAgIGlmIChuZXdWYWx1ZSAhPSBudWxsKSB0aGlzLl9jb2xvckNvZGUgPSBBWENvbG9yVXRpbC50b1N0cmluZyhuZXdWYWx1ZSk7XG4gICAgZWxzZSB0aGlzLl9jb2xvckNvZGUgPSAnJztcbiAgfVxuXG4gIF9oYW5kbGVWYWx1ZUNoYW5nZWRFdmVudChlOiBBWFZhbHVlQ2hhbmdlZEV2ZW50PGFueT4pIHtcbiAgICBpZiAoZS5pc1VzZXJJbnRlcmFjdGlvbikgdGhpcy5fc2V0VXNlckludGVyYWN0aW9uKCk7XG4gICAgdGhpcy52YWx1ZSA9IGUudmFsdWU7XG4gIH1cblxuICBhc3luYyBfaGFuZGxlUG9wdXBPbk9wZW5lZChlKSB7IH1cblxuICBfaGFuZGxlUG9wdXBPbkNsb3NlZChlKSB7XG4gICAgdGhpcy5mb2N1cygpO1xuICB9XG5cbiAgQEhvc3RMaXN0ZW5lcigna2V5ZG93bicsIFsnJGV2ZW50J10pXG4gIF9oYW5kbGVLZXlkb3duKGU6IEtleWJvYXJkRXZlbnQpIHtcbiAgICBpZiAoZS5jdHJsS2V5IHx8IGUuY29kZSA9PT0gJ1NwYWNlJykge1xuICAgICAgdGhpcy5vcGVuKCk7XG4gICAgfVxuICAgIGUucHJldmVudERlZmF1bHQoKTtcbiAgfVxufVxuIiwiPG5nLWNvbnRlbnQgc2VsZWN0PVwiYXgtcHJlZml4XCI+IDwvbmctY29udGVudD5cbjxkaXYgY2xhc3M9XCJheC1kcm9wZG93bi1jb250ZW50XCIgW2NsYXNzLmF4LXN0YXRlLWRpc2FibGVkXT1cImRpc2FibGVkXCIgKGNsaWNrKT1cIl9oYW5kbGVJbnB1dENsaWNrRXZlbnQoJGV2ZW50KVwiPlxuICA8ZGl2ICpuZ0lmPVwidmFsdWVcIiBjbGFzcz1cImNvbG9yLWJhZGdlXCIgW25nU3R5bGVdPVwieyAnYmFja2dyb3VuZC1jb2xvcic6IHZhbHVlIH1cIj48L2Rpdj5cbiAgPGRpdiBjbGFzcz1cImNvbG9yLXZhbHVlXCI+e3sgX2NvbG9yQ29kZSB9fTwvZGl2PlxuPC9kaXY+XG5cbjxidXR0b24gdHlwZT1cImJ1dHRvblwiIGNsYXNzPVwiYXgtZ2VuZXJhbC1idXR0b24gYXgtYnV0dG9uLWljb25cIiBbdGFiSW5kZXhdPVwiLTFcIiBbZGlzYWJsZWRdPVwiZGlzYWJsZWRcIlxuICAoY2xpY2spPVwiX2hhbmRsZUFycm93Q2xpY2tFdmVudCgkZXZlbnQpXCI+XG4gIDxzcGFuIGNsYXNzPVwiYXgtaWNvbiBheC1pY29uLWNvbG9yLXBhbGV0dGVcIj48L3NwYW4+XG48L2J1dHRvbj5cbjxuZy1jb250ZW50IHNlbGVjdD1cImF4LXZhbGlkYXRpb24tcnVsZVwiPiA8L25nLWNvbnRlbnQ+XG48bmctY29udGVudCBzZWxlY3Q9XCJheC1zdWZmaXhcIj4gPC9uZy1jb250ZW50PlxuPGF4LXBvcG92ZXIgW3RhcmdldF09XCJfdGFyZ2V0XCIgW3Bvc2l0aW9uXT1cInBvc2l0aW9uXCIgW29wZW5UcmlnZ2VyXT1cIidtYW51YWwnXCIgW2Nsb3NlVHJpZ2dlcl09XCInY2xpY2tvdXQnXCJcbiAgW2FkYXB0aXZpdHlFbmFibGVkXT1cInRydWVcIiAob25PcGVuZWQpPVwiX2hhbmRsZVBvcHVwT25PcGVuZWQoJGV2ZW50KVwiIChvbkNsb3NlZCk9XCJfaGFuZGxlUG9wdXBPbkNsb3NlZCgkZXZlbnQpXCI+XG4gIDxkaXYgY2xhc3M9XCJheC1vdmVybGF5LXBhbmVcIiBbY2xhc3MuYXgtdy1mdWxsXT1cIl9pc01vYmlsZVwiIHRhYmluZGV4PVwiMFwiIGFyaWEtbW9kYWw9XCJ0cnVlXCIgY2RrVHJhcEZvY3VzXG4gICAgW2NsYXNzLmF4LW92ZXJsYXktYWN0aW9uc2hlZXRdPVwiX2lzTW9iaWxlXCI+XG4gICAgPGF4LWNvbG9yLXBhbGV0dGUgW3ZhbHVlXT1cInZhbHVlXCIgKG9uVmFsdWVDaGFuZ2VkKT1cIl9oYW5kbGVWYWx1ZUNoYW5nZWRFdmVudCgkZXZlbnQpXCI+IDwvYXgtY29sb3ItcGFsZXR0ZT5cbiAgPC9kaXY+XG48L2F4LXBvcG92ZXI+Il19
|