@acorex/components 7.0.8 → 7.0.10
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/action-sheet/public-api.d.ts +1 -1
- package/action-sheet/src/action-sheet.component.d.ts +19 -13
- package/action-sheet/src/action-sheet.interface.d.ts +20 -0
- package/action-sheet/src/action-sheet.module.d.ts +8 -4
- package/action-sheet/src/action-sheet.service.d.ts +13 -0
- package/alert/src/alert.component.d.ts +2 -2
- package/badge/src/badge.component.d.ts +2 -2
- package/breadcrumbs/src/breadcrumbs-item.component.d.ts +6 -6
- package/button/src/button-group.component.d.ts +6 -6
- package/button/src/button-item.component.d.ts +6 -6
- package/color-picker/src/color-picker.component.d.ts +16 -16
- package/common/public-api.d.ts +12 -12
- package/common/src/{components.class.d.ts → classes/components.class.d.ts} +21 -1
- package/common/src/{drawing.class.d.ts → classes/drawing.class.d.ts} +0 -0
- package/common/src/{events.class.d.ts → classes/events.class.d.ts} +0 -0
- package/common/src/{styles.class.d.ts → classes/styles.class.d.ts} +0 -0
- package/common/src/common.module.d.ts +5 -5
- package/common/src/{auto-focus.directive.d.ts → directives/auto-focus.directive.d.ts} +1 -1
- package/common/src/{debounce-time.directive.d.ts → directives/debounce-time.directive.d.ts} +0 -0
- package/common/src/{hotkey.directive.d.ts → directives/hotkey.directive.d.ts} +2 -2
- package/common/src/{infinite-scroll.directive.d.ts → directives/infinite-scroll.directive.d.ts} +0 -0
- package/common/src/{responsive.directive.d.ts → directives/responsive.directive.d.ts} +0 -0
- package/common/src/{custom-cdk-overlay.service.d.ts → services/custom-cdk-overlay.service.d.ts} +0 -0
- package/common/src/{hotkey.service.d.ts → services/hotkey.service.d.ts} +0 -0
- package/common/src/{overlay.service.d.ts → services/overlay.service.d.ts} +4 -3
- package/context-menu/src/context-menu.component.d.ts +1 -1
- package/date-picker/src/datepicker.component.d.ts +14 -14
- package/dialog/src/dialog.class.d.ts +2 -1
- package/esm2020/action-sheet/public-api.mjs +2 -2
- package/esm2020/action-sheet/src/action-sheet.component.mjs +49 -74
- package/esm2020/action-sheet/src/action-sheet.interface.mjs +3 -0
- package/esm2020/action-sheet/src/action-sheet.module.mjs +12 -7
- package/esm2020/action-sheet/src/action-sheet.service.mjs +85 -0
- package/esm2020/button/src/button.component.mjs +2 -2
- package/esm2020/common/public-api.mjs +13 -13
- package/esm2020/common/src/classes/components.class.mjs +71 -0
- package/esm2020/common/src/classes/drawing.class.mjs +2 -0
- package/esm2020/common/src/classes/events.class.mjs +58 -0
- package/esm2020/common/src/classes/styles.class.mjs +22 -0
- package/esm2020/common/src/common.module.mjs +6 -6
- package/esm2020/common/src/directives/auto-focus.directive.mjs +55 -0
- package/esm2020/common/src/directives/debounce-time.directive.mjs +47 -0
- package/esm2020/common/src/directives/hotkey.directive.mjs +79 -0
- package/esm2020/common/src/directives/infinite-scroll.directive.mjs +63 -0
- package/esm2020/common/src/directives/responsive.directive.mjs +34 -0
- package/esm2020/common/src/services/custom-cdk-overlay.service.mjs +48 -0
- package/esm2020/common/src/services/hotkey.service.mjs +38 -0
- package/esm2020/common/src/services/overlay.service.mjs +96 -0
- package/esm2020/context-menu/src/context-menu.component.mjs +4 -4
- package/esm2020/decorators/src/close-button.component.mjs +4 -4
- package/esm2020/dialog/src/dialog.class.mjs +1 -1
- package/esm2020/dialog/src/dialog.component.mjs +3 -3
- package/esm2020/dialog/src/dialog.service.mjs +2 -1
- package/esm2020/menu/src/menu.component.mjs +16 -16
- package/esm2020/mixin/src/base-menu-mixin.class.mjs +3 -3
- package/esm2020/page/src/base-page.class.mjs +1 -27
- package/esm2020/popup/src/popup.component.mjs +4 -5
- package/esm2020/popup/src/popup.service.mjs +3 -3
- package/esm2020/range-slider/src/range-slider.component.mjs +2 -2
- package/esm2020/tabs/src/tab-content.directive.mjs +1 -1
- package/esm2020/tabs/src/tab-item.component.mjs +1 -1
- package/esm2020/tabs/src/tabs.component.mjs +1 -1
- package/esm2020/toast/src/toast.class.mjs +1 -1
- package/esm2020/toast/src/toast.component.mjs +29 -21
- package/esm2020/toast/src/toast.module.mjs +3 -6
- package/fesm2015/acorex-components-action-sheet.mjs +140 -124
- package/fesm2015/acorex-components-action-sheet.mjs.map +1 -1
- package/fesm2015/acorex-components-alert.mjs +0 -1
- package/fesm2015/acorex-components-avatar.mjs +0 -1
- package/fesm2015/acorex-components-badge.mjs +0 -1
- package/fesm2015/acorex-components-breadcrumbs.mjs +0 -1
- package/fesm2015/acorex-components-button.mjs +2 -3
- package/fesm2015/acorex-components-button.mjs.map +1 -1
- package/fesm2015/acorex-components-calendar.mjs +0 -1
- package/fesm2015/acorex-components-checkbox.mjs +0 -1
- package/fesm2015/acorex-components-chips.mjs +0 -1
- package/fesm2015/acorex-components-collapse.mjs +0 -1
- package/fesm2015/acorex-components-color-palette.mjs +0 -1
- package/fesm2015/acorex-components-color-picker.mjs +0 -1
- package/fesm2015/acorex-components-common.mjs +149 -120
- package/fesm2015/acorex-components-common.mjs.map +1 -1
- package/fesm2015/acorex-components-context-menu.mjs +3 -4
- package/fesm2015/acorex-components-context-menu.mjs.map +1 -1
- package/fesm2015/acorex-components-data-pager.mjs +0 -1
- package/fesm2015/acorex-components-data-table.mjs +0 -1
- package/fesm2015/acorex-components-date-picker.mjs +0 -1
- package/fesm2015/acorex-components-decorators.mjs +3 -4
- package/fesm2015/acorex-components-decorators.mjs.map +1 -1
- package/fesm2015/acorex-components-dialog.mjs +3 -3
- package/fesm2015/acorex-components-dialog.mjs.map +1 -1
- package/fesm2015/acorex-components-drawer.mjs +0 -1
- package/fesm2015/acorex-components-dropdown.mjs +0 -1
- package/fesm2015/acorex-components-form.mjs +0 -1
- package/fesm2015/acorex-components-image.mjs +0 -1
- package/fesm2015/acorex-components-label.mjs +0 -1
- package/fesm2015/acorex-components-loading.mjs +0 -1
- package/fesm2015/acorex-components-menu.mjs +15 -16
- package/fesm2015/acorex-components-menu.mjs.map +1 -1
- package/fesm2015/acorex-components-mixin.mjs +2 -3
- package/fesm2015/acorex-components-mixin.mjs.map +1 -1
- package/fesm2015/acorex-components-number-box.mjs +0 -1
- package/fesm2015/acorex-components-page.mjs +1 -28
- package/fesm2015/acorex-components-page.mjs.map +1 -1
- package/fesm2015/acorex-components-password-box.mjs +0 -1
- package/fesm2015/acorex-components-popover.mjs +0 -1
- package/fesm2015/acorex-components-popup.mjs +4 -6
- package/fesm2015/acorex-components-popup.mjs.map +1 -1
- package/fesm2015/acorex-components-progress-bar.mjs +0 -1
- package/fesm2015/acorex-components-radio.mjs +0 -1
- package/fesm2015/acorex-components-range-slider.mjs +2 -3
- package/fesm2015/acorex-components-range-slider.mjs.map +1 -1
- package/fesm2015/acorex-components-rating.mjs +0 -1
- package/fesm2015/acorex-components-result.mjs +0 -1
- package/fesm2015/acorex-components-search-box.mjs +0 -1
- package/fesm2015/acorex-components-select-box.mjs +0 -1
- package/fesm2015/acorex-components-selection-list.mjs +0 -1
- package/fesm2015/acorex-components-switch.mjs +0 -1
- package/fesm2015/acorex-components-tabs.mjs.map +1 -1
- package/fesm2015/acorex-components-tag.mjs +0 -1
- package/fesm2015/acorex-components-textarea.mjs +0 -1
- package/fesm2015/acorex-components-textbox.mjs +0 -1
- package/fesm2015/acorex-components-time-box.mjs +0 -1
- package/fesm2015/acorex-components-toast.mjs +30 -26
- package/fesm2015/acorex-components-toast.mjs.map +1 -1
- package/fesm2015/acorex-components-tooltip.mjs +0 -1
- package/fesm2015/acorex-components-tree-view.mjs +0 -1
- package/fesm2015/acorex-components-uploader.mjs +0 -1
- package/fesm2015/acorex-components.mjs +0 -1
- package/fesm2020/acorex-components-action-sheet.mjs +139 -124
- package/fesm2020/acorex-components-action-sheet.mjs.map +1 -1
- package/fesm2020/acorex-components-alert.mjs +0 -1
- package/fesm2020/acorex-components-avatar.mjs +0 -1
- package/fesm2020/acorex-components-badge.mjs +0 -1
- package/fesm2020/acorex-components-breadcrumbs.mjs +0 -1
- package/fesm2020/acorex-components-button.mjs +2 -3
- package/fesm2020/acorex-components-button.mjs.map +1 -1
- package/fesm2020/acorex-components-calendar.mjs +0 -1
- package/fesm2020/acorex-components-checkbox.mjs +0 -1
- package/fesm2020/acorex-components-chips.mjs +0 -1
- package/fesm2020/acorex-components-collapse.mjs +0 -1
- package/fesm2020/acorex-components-color-palette.mjs +0 -1
- package/fesm2020/acorex-components-color-picker.mjs +0 -1
- package/fesm2020/acorex-components-common.mjs +149 -120
- package/fesm2020/acorex-components-common.mjs.map +1 -1
- package/fesm2020/acorex-components-context-menu.mjs +3 -4
- package/fesm2020/acorex-components-context-menu.mjs.map +1 -1
- package/fesm2020/acorex-components-data-pager.mjs +0 -1
- package/fesm2020/acorex-components-data-table.mjs +0 -1
- package/fesm2020/acorex-components-date-picker.mjs +0 -1
- package/fesm2020/acorex-components-decorators.mjs +3 -4
- package/fesm2020/acorex-components-decorators.mjs.map +1 -1
- package/fesm2020/acorex-components-dialog.mjs +3 -3
- package/fesm2020/acorex-components-dialog.mjs.map +1 -1
- package/fesm2020/acorex-components-drawer.mjs +0 -1
- package/fesm2020/acorex-components-dropdown.mjs +0 -1
- package/fesm2020/acorex-components-form.mjs +0 -1
- package/fesm2020/acorex-components-image.mjs +0 -1
- package/fesm2020/acorex-components-label.mjs +0 -1
- package/fesm2020/acorex-components-loading.mjs +0 -1
- package/fesm2020/acorex-components-menu.mjs +15 -16
- package/fesm2020/acorex-components-menu.mjs.map +1 -1
- package/fesm2020/acorex-components-mixin.mjs +2 -3
- package/fesm2020/acorex-components-mixin.mjs.map +1 -1
- package/fesm2020/acorex-components-number-box.mjs +0 -1
- package/fesm2020/acorex-components-page.mjs +1 -28
- package/fesm2020/acorex-components-page.mjs.map +1 -1
- package/fesm2020/acorex-components-password-box.mjs +0 -1
- package/fesm2020/acorex-components-popover.mjs +0 -1
- package/fesm2020/acorex-components-popup.mjs +4 -6
- package/fesm2020/acorex-components-popup.mjs.map +1 -1
- package/fesm2020/acorex-components-progress-bar.mjs +0 -1
- package/fesm2020/acorex-components-radio.mjs +0 -1
- package/fesm2020/acorex-components-range-slider.mjs +2 -3
- package/fesm2020/acorex-components-range-slider.mjs.map +1 -1
- package/fesm2020/acorex-components-rating.mjs +0 -1
- package/fesm2020/acorex-components-result.mjs +0 -1
- package/fesm2020/acorex-components-search-box.mjs +0 -1
- package/fesm2020/acorex-components-select-box.mjs +0 -1
- package/fesm2020/acorex-components-selection-list.mjs +0 -1
- package/fesm2020/acorex-components-switch.mjs +0 -1
- package/fesm2020/acorex-components-tabs.mjs.map +1 -1
- package/fesm2020/acorex-components-tag.mjs +0 -1
- package/fesm2020/acorex-components-textarea.mjs +0 -1
- package/fesm2020/acorex-components-textbox.mjs +0 -1
- package/fesm2020/acorex-components-time-box.mjs +0 -1
- package/fesm2020/acorex-components-toast.mjs +30 -26
- package/fesm2020/acorex-components-toast.mjs.map +1 -1
- package/fesm2020/acorex-components-tooltip.mjs +0 -1
- package/fesm2020/acorex-components-tree-view.mjs +0 -1
- package/fesm2020/acorex-components-uploader.mjs +0 -1
- package/fesm2020/acorex-components.mjs +0 -1
- package/menu/src/menu.component.d.ts +1 -1
- package/mixin/src/base-components.class.d.ts +2 -2
- package/mixin/src/base-menu-mixin.class.d.ts +6 -6
- package/mixin/src/button-mixin.class.d.ts +2 -2
- package/mixin/src/clickable-mixin.class.d.ts +2 -2
- package/mixin/src/color-look-mixing.class.d.ts +2 -2
- package/mixin/src/datalist-component.class.d.ts +10 -10
- package/mixin/src/dropdown-mixin.class.d.ts +2 -2
- package/mixin/src/interactive-mixin.class.d.ts +4 -4
- package/mixin/src/loading-mixin.class.d.ts +2 -2
- package/mixin/src/mixin.class.d.ts +62 -62
- package/mixin/src/page-component.class.d.ts +2 -2
- package/mixin/src/selection-component.class.d.ts +2 -2
- package/mixin/src/sizable-mixin.class.d.ts +2 -2
- package/mixin/src/textbox-mixin.class.d.ts +2 -2
- package/mixin/src/value-mixin.class.d.ts +8 -8
- package/package.json +1 -1
- package/page/src/base-page.class.d.ts +3 -23
- package/popup/src/popup.component.d.ts +2 -2
- package/popup/src/popup.service.d.ts +3 -4
- package/tabs/src/tab-content.directive.d.ts +2 -2
- package/tabs/src/tab-item.component.d.ts +4 -4
- package/toast/src/toast.class.d.ts +1 -0
- package/toast/src/toast.component.d.ts +1 -0
- package/toast/src/toast.module.d.ts +1 -4
- package/action-sheet/src/action-sheet-item.component.d.ts +0 -16
- package/esm2020/action-sheet/src/action-sheet-item.component.mjs +0 -47
- package/esm2020/common/src/auto-focus.directive.mjs +0 -55
- package/esm2020/common/src/components.class.mjs +0 -45
- package/esm2020/common/src/custom-cdk-overlay.service.mjs +0 -48
- package/esm2020/common/src/debounce-time.directive.mjs +0 -47
- package/esm2020/common/src/drawing.class.mjs +0 -2
- package/esm2020/common/src/events.class.mjs +0 -58
- package/esm2020/common/src/hotkey.directive.mjs +0 -79
- package/esm2020/common/src/hotkey.service.mjs +0 -38
- package/esm2020/common/src/infinite-scroll.directive.mjs +0 -63
- package/esm2020/common/src/overlay.service.mjs +0 -91
- package/esm2020/common/src/responsive.directive.mjs +0 -34
- package/esm2020/common/src/styles.class.mjs +0 -22
@@ -1,19 +1,25 @@
|
|
1
|
+
import { AXComponentCloseEvent } from '@acorex/components/common';
|
1
2
|
import { AXBaseComponent } from '@acorex/components/mixin';
|
2
|
-
import {
|
3
|
+
import { CdkPortalOutletAttachedRef, Portal } from '@angular/cdk/portal';
|
4
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, ViewContainerRef } from '@angular/core';
|
5
|
+
import { AXActionSheetItem } from './action-sheet.interface';
|
3
6
|
import * as i0 from "@angular/core";
|
4
7
|
export declare class AXActionSheetComponent extends AXBaseComponent {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
8
|
+
private _viewContainerRef;
|
9
|
+
_selectedPortal: Portal<any>;
|
10
|
+
title: string;
|
11
|
+
items: AXActionSheetItem[];
|
12
|
+
content: any;
|
13
|
+
showCloseButton: boolean;
|
14
|
+
showHeader: boolean;
|
15
|
+
data: any;
|
16
|
+
onClosed: EventEmitter<AXComponentCloseEvent>;
|
17
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, _viewContainerRef: ViewContainerRef);
|
15
18
|
close(): void;
|
16
|
-
|
19
|
+
onInit(): void;
|
20
|
+
onKeydownHandler(event: KeyboardEvent): void;
|
21
|
+
_handleAttched(ref: CdkPortalOutletAttachedRef): void;
|
22
|
+
_handleCloseClick(): void;
|
17
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXActionSheetComponent, never>;
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXActionSheetComponent, "ax-action-sheet", never, {
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXActionSheetComponent, "ax-action-sheet", never, {}, {}, never, never, false, never>;
|
19
25
|
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { AXStyleColorType } from "@acorex/components/common";
|
2
|
+
import { TemplateRef } from "@angular/core";
|
3
|
+
export interface AXActionSheetItem {
|
4
|
+
name?: string;
|
5
|
+
text: string;
|
6
|
+
icon?: string;
|
7
|
+
disabled?: boolean;
|
8
|
+
color?: AXStyleColorType;
|
9
|
+
onClick?: () => void;
|
10
|
+
}
|
11
|
+
export declare type AXActionSheetContentType = TemplateRef<any> | Function;
|
12
|
+
export interface AXActionSheetOptions {
|
13
|
+
title?: string;
|
14
|
+
showCloseButton?: boolean;
|
15
|
+
closeOnBackdrop?: boolean;
|
16
|
+
showHeader?: boolean;
|
17
|
+
items?: AXActionSheetItem[];
|
18
|
+
content?: AXActionSheetContentType;
|
19
|
+
data?: any;
|
20
|
+
}
|
@@ -1,10 +1,14 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "./action-sheet.component";
|
3
|
-
import * as i2 from "
|
4
|
-
import * as i3 from "@
|
5
|
-
import * as i4 from "@
|
3
|
+
import * as i2 from "@angular/common";
|
4
|
+
import * as i3 from "@acorex/components/common";
|
5
|
+
import * as i4 from "@angular/cdk/drag-drop";
|
6
|
+
import * as i5 from "@angular/cdk/a11y";
|
7
|
+
import * as i6 from "@acorex/components/button";
|
8
|
+
import * as i7 from "@angular/cdk/portal";
|
9
|
+
import * as i8 from "@acorex/components/decorators";
|
6
10
|
export declare class AXActionSheetModule {
|
7
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXActionSheetModule, never>;
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXActionSheetModule, [typeof i1.AXActionSheetComponent, typeof i2.
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXActionSheetModule, [typeof i1.AXActionSheetComponent], [typeof i2.CommonModule, typeof i3.AXCommonModule, typeof i4.DragDropModule, typeof i5.A11yModule, typeof i6.AXButtonModule, typeof i7.PortalModule, typeof i8.AXDecoratorModule], [typeof i1.AXActionSheetComponent]>;
|
9
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXActionSheetModule>;
|
10
14
|
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { AXComponentClosedPromise, AXOverlayService } from '@acorex/components/common';
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
3
|
+
import { AXActionSheetOptions } from './action-sheet.interface';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class AXActionSheetService {
|
6
|
+
private _overlay;
|
7
|
+
private overlayService;
|
8
|
+
constructor(_overlay: Overlay, overlayService: AXOverlayService);
|
9
|
+
open(options: AXActionSheetOptions): AXComponentClosedPromise;
|
10
|
+
private closePopup;
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXActionSheetService, never>;
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXActionSheetService>;
|
13
|
+
}
|
@@ -11,9 +11,9 @@ export declare const AXBaseAlertMixin: (new (...args: any[]) => {
|
|
11
11
|
_look?: import("@acorex/components/common").AXStyleLookType;
|
12
12
|
look: import("@acorex/components/common").AXStyleLookType;
|
13
13
|
id: string;
|
14
|
-
"__#
|
14
|
+
"__#34886@#rtl": boolean;
|
15
15
|
rtl: boolean;
|
16
|
-
"__#
|
16
|
+
"__#34886@#elementRef": ElementRef<any>;
|
17
17
|
_cdr: ChangeDetectorRef;
|
18
18
|
_isInited: boolean;
|
19
19
|
_isRendered: boolean;
|
@@ -9,9 +9,9 @@ export declare const AXBaseBadgeMixin: (new (...args: any[]) => {
|
|
9
9
|
_look?: import("@acorex/components/common").AXStyleLookType;
|
10
10
|
look: import("@acorex/components/common").AXStyleLookType;
|
11
11
|
id: string;
|
12
|
-
"__#
|
12
|
+
"__#34886@#rtl": boolean;
|
13
13
|
rtl: boolean;
|
14
|
-
"__#
|
14
|
+
"__#34886@#elementRef": ElementRef<any>;
|
15
15
|
_cdr: ChangeDetectorRef;
|
16
16
|
_isInited: boolean;
|
17
17
|
_isRendered: boolean;
|
@@ -3,9 +3,9 @@ import { ChangeDetectorRef, ElementRef } from '@angular/core';
|
|
3
3
|
import { AXBreadCrumbsComponent } from './breadcrumbs.component';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare const AXBaseItemBreadCrumbMixin: (abstract new (...args: any[]) => {
|
6
|
-
"__#
|
6
|
+
"__#34889@#disabled": boolean;
|
7
7
|
disabled: boolean;
|
8
|
-
"__#
|
8
|
+
"__#34889@#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 AXBaseItemBreadCrumbMixin: (abstract new (...args: any[]) =
|
|
14
14
|
focus(): void;
|
15
15
|
hasFocus(): boolean;
|
16
16
|
id: string;
|
17
|
-
"__#
|
17
|
+
"__#34886@#rtl": boolean;
|
18
18
|
rtl: boolean;
|
19
|
-
"__#
|
19
|
+
"__#34886@#elementRef": ElementRef<any>;
|
20
20
|
_cdr: ChangeDetectorRef;
|
21
21
|
_isInited: boolean;
|
22
22
|
_isRendered: boolean;
|
@@ -39,9 +39,9 @@ export declare const AXBaseItemBreadCrumbMixin: (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
|
+
"__#34886@#rtl": boolean;
|
43
43
|
rtl: boolean;
|
44
|
-
"__#
|
44
|
+
"__#34886@#elementRef": ElementRef<any>;
|
45
45
|
_cdr: ChangeDetectorRef;
|
46
46
|
_isInited: boolean;
|
47
47
|
_isRendered: boolean;
|
@@ -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
|
+
"__#34889@#disabled": boolean;
|
8
8
|
disabled: boolean;
|
9
|
-
"__#
|
9
|
+
"__#34889@#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
|
+
"__#34886@#rtl": boolean;
|
19
19
|
rtl: boolean;
|
20
|
-
"__#
|
20
|
+
"__#34886@#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
|
+
"__#34886@#rtl": boolean;
|
48
48
|
rtl: boolean;
|
49
|
-
"__#
|
49
|
+
"__#34886@#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
|
+
"__#34889@#disabled": boolean;
|
7
7
|
disabled: boolean;
|
8
|
-
"__#
|
8
|
+
"__#34889@#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
|
+
"__#34886@#rtl": boolean;
|
18
18
|
rtl: boolean;
|
19
|
-
"__#
|
19
|
+
"__#34886@#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
|
+
"__#34886@#rtl": boolean;
|
43
43
|
rtl: boolean;
|
44
|
-
"__#
|
44
|
+
"__#34886@#elementRef": ElementRef<any>;
|
45
45
|
_cdr: ChangeDetectorRef;
|
46
46
|
_isInited: boolean;
|
47
47
|
_isRendered: boolean;
|
@@ -6,9 +6,9 @@ import { AXPopoverComponent } from '@acorex/components/popover';
|
|
6
6
|
import { AXBaseComponent } from '@acorex/components/mixin';
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
|
9
|
-
"__#
|
9
|
+
"__#34889@#disabled": boolean;
|
10
10
|
disabled: boolean;
|
11
|
-
"__#
|
11
|
+
"__#34889@#tabIndex": number;
|
12
12
|
tabIndex: number;
|
13
13
|
onFocus: import("@angular/core").EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
14
14
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -17,9 +17,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
|
|
17
17
|
focus(): void;
|
18
18
|
hasFocus(): boolean;
|
19
19
|
id: string;
|
20
|
-
"__#
|
20
|
+
"__#34886@#rtl": boolean;
|
21
21
|
rtl: boolean;
|
22
|
-
"__#
|
22
|
+
"__#34886@#elementRef": ElementRef<any>;
|
23
23
|
_cdr: ChangeDetectorRef;
|
24
24
|
_isInited: boolean;
|
25
25
|
_isRendered: boolean;
|
@@ -53,9 +53,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
|
|
53
53
|
open(): void;
|
54
54
|
readonly isOpen: boolean;
|
55
55
|
id: string;
|
56
|
-
"__#
|
56
|
+
"__#34886@#rtl": boolean;
|
57
57
|
rtl: boolean;
|
58
|
-
"__#
|
58
|
+
"__#34886@#elementRef": ElementRef<any>;
|
59
59
|
_cdr: ChangeDetectorRef;
|
60
60
|
_isInited: boolean;
|
61
61
|
_isRendered: boolean;
|
@@ -75,21 +75,21 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
|
|
75
75
|
}) & (new (...args: any[]) => {
|
76
76
|
onValueChanged: import("@angular/core").EventEmitter<AXValueChangedEvent<any>>;
|
77
77
|
valueChange: import("@angular/core").EventEmitter<any>;
|
78
|
-
"__#
|
78
|
+
"__#34890@#readonly": boolean;
|
79
79
|
readonly: boolean;
|
80
|
-
"__#
|
80
|
+
"__#34890@#allowNull": boolean;
|
81
81
|
allowNull: boolean; /**
|
82
82
|
* The Button is a component which detects user interaction and triggers a corresponding event
|
83
83
|
*
|
84
84
|
* @category Components
|
85
85
|
*/
|
86
|
-
"__#
|
86
|
+
"__#34890@#name": string;
|
87
87
|
name: string;
|
88
|
-
"__#
|
88
|
+
"__#34890@#isUserInteraction": boolean;
|
89
89
|
readonly isUserInteraction: boolean;
|
90
|
-
"__#
|
90
|
+
"__#34890@#value": any;
|
91
91
|
value: any;
|
92
|
-
"__#
|
92
|
+
"__#34890@#state": "error" | "clear" | "success";
|
93
93
|
readonly state: "error" | "clear" | "success";
|
94
94
|
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
95
95
|
_internalSetValue(value: any): any;
|
@@ -104,9 +104,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
|
|
104
104
|
validate(): Promise<any>;
|
105
105
|
_setState(state: "error" | "clear" | "success", ...args: any[]): void;
|
106
106
|
id: string;
|
107
|
-
"__#
|
107
|
+
"__#34886@#rtl": boolean;
|
108
108
|
rtl: boolean;
|
109
|
-
"__#
|
109
|
+
"__#34886@#elementRef": ElementRef<any>;
|
110
110
|
_cdr: ChangeDetectorRef;
|
111
111
|
_isInited: boolean;
|
112
112
|
_isRendered: boolean;
|
@@ -135,9 +135,9 @@ export declare const AXBaseColorPickerMixin: (abstract new (...args: any[]) => {
|
|
135
135
|
_emitOnKeyupEvent(e: KeyboardEvent): void;
|
136
136
|
_emitOnKeypressEvent(e: KeyboardEvent): void;
|
137
137
|
id: string;
|
138
|
-
"__#
|
138
|
+
"__#34886@#rtl": boolean;
|
139
139
|
rtl: boolean;
|
140
|
-
"__#
|
140
|
+
"__#34886@#elementRef": ElementRef<any>;
|
141
141
|
_cdr: ChangeDetectorRef;
|
142
142
|
_isInited: boolean;
|
143
143
|
_isRendered: boolean;
|
package/common/public-api.d.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
export * from './src/
|
1
|
+
export * from './src/classes/components.class';
|
2
|
+
export * from './src/classes/drawing.class';
|
3
|
+
export * from './src/classes/events.class';
|
4
|
+
export * from './src/classes/styles.class';
|
5
|
+
export * from './src/directives/auto-focus.directive';
|
6
|
+
export * from './src/directives/debounce-time.directive';
|
7
|
+
export * from './src/directives/hotkey.directive';
|
8
|
+
export * from './src/directives/infinite-scroll.directive';
|
9
|
+
export * from './src/directives/responsive.directive';
|
10
|
+
export * from './src/services/custom-cdk-overlay.service';
|
11
|
+
export * from './src/services/hotkey.service';
|
12
|
+
export * from './src/services/overlay.service';
|
2
13
|
export * from './src/common.module';
|
3
|
-
export * from './src/components.class';
|
4
|
-
export * from './src/custom-cdk-overlay.service';
|
5
|
-
export * from './src/drawing.class';
|
6
|
-
export * from './src/events.class';
|
7
|
-
export * from './src/hotkey.directive';
|
8
|
-
export * from './src/hotkey.service';
|
9
|
-
export * from './src/infinite-scroll.directive';
|
10
|
-
export * from './src/debounce-time.directive';
|
11
|
-
export * from './src/overlay.service';
|
12
|
-
export * from './src/responsive.directive';
|
13
|
-
export * from './src/styles.class';
|
@@ -1,6 +1,26 @@
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
2
|
-
import { AXValueChangedEvent } from './events.class';
|
2
|
+
import { AXEvent, AXValueChangedEvent } from './events.class';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
+
export declare const TAB_META_KEY = "__meta__";
|
5
|
+
export declare class AXComponentCloseEvent extends AXEvent {
|
6
|
+
data?: any;
|
7
|
+
}
|
8
|
+
export declare class AXComponentClosing {
|
9
|
+
cancel: boolean;
|
10
|
+
data?: any;
|
11
|
+
}
|
12
|
+
export declare class AXComponentResult {
|
13
|
+
sender: any;
|
14
|
+
data?: any;
|
15
|
+
}
|
16
|
+
/**
|
17
|
+
* Defines a CSS class—or multiple classes separated by spaces— which are applied to a span element inside the Button. Allows the usage of custom icons after the primary text.
|
18
|
+
*/
|
19
|
+
export declare class AXComponentClosedPromise extends Promise<AXComponentResult> {
|
20
|
+
private closeMethod;
|
21
|
+
constructor(executor: (resolve: (value?: AXComponentResult | PromiseLike<AXComponentResult>) => void, reject: (reason?: any) => void) => void);
|
22
|
+
close(): void;
|
23
|
+
}
|
4
24
|
export declare abstract class AXComponent {
|
5
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXComponent, never>;
|
6
26
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXComponent>;
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./responsive.directive";
|
3
|
-
import * as i2 from "./infinite-scroll.directive";
|
4
|
-
import * as i3 from "./debounce-time.directive";
|
5
|
-
import * as i4 from "./auto-focus.directive";
|
6
|
-
import * as i5 from "./hotkey.directive";
|
2
|
+
import * as i1 from "./directives/responsive.directive";
|
3
|
+
import * as i2 from "./directives/infinite-scroll.directive";
|
4
|
+
import * as i3 from "./directives/debounce-time.directive";
|
5
|
+
import * as i4 from "./directives/auto-focus.directive";
|
6
|
+
import * as i5 from "./directives/hotkey.directive";
|
7
7
|
export declare class AXCommonModule {
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXCommonModule, never>;
|
9
9
|
static ɵmod: i0.ɵɵNgModuleDeclaration<AXCommonModule, [typeof i1.AXResponsiveDirective, typeof i2.AXInfiniteScrollerDirective, typeof i3.AXNgModelChangeDebouncedDirective, typeof i4.AXAutoFocusDirective, typeof i5.AXHotkeyDirective], never, [typeof i1.AXResponsiveDirective, typeof i2.AXInfiniteScrollerDirective, typeof i4.AXAutoFocusDirective, typeof i3.AXNgModelChangeDebouncedDirective, typeof i5.AXHotkeyDirective]>;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { AfterContentInit, ElementRef } from '@angular/core';
|
2
|
-
import { AXFocusableComponent } from '
|
2
|
+
import { AXFocusableComponent } from '../classes/components.class';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class AXAutoFocusDirective implements AfterContentInit {
|
5
5
|
private el;
|
File without changes
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AfterViewInit, ElementRef } from '@angular/core';
|
2
|
-
import { AXComponent } from '
|
3
|
-
import { AXHotkeysService } from '
|
2
|
+
import { AXComponent } from '../classes/components.class';
|
3
|
+
import { AXHotkeysService } from '../services/hotkey.service';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare type AXHotKeyAction = {
|
6
6
|
[key: string]: string | Function;
|
package/common/src/{infinite-scroll.directive.d.ts → directives/infinite-scroll.directive.d.ts}
RENAMED
File without changes
|
File without changes
|
package/common/src/{custom-cdk-overlay.service.d.ts → services/custom-cdk-overlay.service.d.ts}
RENAMED
File without changes
|
File without changes
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ApplicationRef } from '@angular/core';
|
2
|
-
import { Overlay } from '@angular/cdk/overlay';
|
3
|
-
import { AXConnectedPosition } from './drawing.class';
|
2
|
+
import { Overlay, OverlayPositionBuilder, PositionStrategy } from '@angular/cdk/overlay';
|
4
3
|
import { DynamicOverlay } from './custom-cdk-overlay.service';
|
4
|
+
import { AXConnectedPosition } from '../classes/drawing.class';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export interface AXOverlayViewRef {
|
7
7
|
instance: any;
|
@@ -9,7 +9,7 @@ export interface AXOverlayViewRef {
|
|
9
9
|
isOpen: () => boolean;
|
10
10
|
}
|
11
11
|
export interface AXOverlayConfigs {
|
12
|
-
position?: AXConnectedPosition | AXConnectedPosition[];
|
12
|
+
position?: AXConnectedPosition | AXConnectedPosition[] | PositionStrategy;
|
13
13
|
hasBackdrop?: boolean;
|
14
14
|
transparentBackdrop?: boolean;
|
15
15
|
closeOnClickOutside?: boolean;
|
@@ -25,6 +25,7 @@ export declare class AXOverlayService {
|
|
25
25
|
private overlayService2;
|
26
26
|
private appRef;
|
27
27
|
constructor(overlayService: DynamicOverlay, overlayService2: Overlay, appRef: ApplicationRef);
|
28
|
+
position(): OverlayPositionBuilder;
|
28
29
|
show(content: any, context?: any, configs?: AXOverlayConfigs): AXOverlayViewRef;
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXOverlayService, never>;
|
30
31
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXOverlayService>;
|
@@ -30,5 +30,5 @@ export declare class AXContextMenuComponent extends AXBaseMenuMixin implements O
|
|
30
30
|
/***********defultTmp***********/
|
31
31
|
onContextMenuClick(e: any): void;
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXContextMenuComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AXContextMenuComponent, "ax-context-menu", never, { "disabled": "disabled"; "textField": "textField"; "valueField": "valueField"; "items": "items"; "parentId": "parentId"; "iconField": "iconField"; "isOpen": "isOpen"; "isActive": "isActive"; "visibleField": "visibleField"; "disableField": "disableField"; "hasChildField": "hasChildField"; "dividerField": "dividerField"; "openMode": "openMode"; "
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXContextMenuComponent, "ax-context-menu", never, { "disabled": "disabled"; "textField": "textField"; "valueField": "valueField"; "items": "items"; "parentId": "parentId"; "iconField": "iconField"; "isOpen": "isOpen"; "isActive": "isActive"; "visibleField": "visibleField"; "disableField": "disableField"; "hasChildField": "hasChildField"; "dividerField": "dividerField"; "openMode": "openMode"; "displayMode": "displayMode"; "target": "target"; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "onMenuItemClick": "onMenuItemClick"; }, never, never, false, never>;
|
34
34
|
}
|
@@ -5,9 +5,9 @@ import { AXPopoverComponent } from '@acorex/components/popover';
|
|
5
5
|
import { AXComponentOptionChanged } from '@acorex/components/mixin';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
8
|
-
"__#
|
8
|
+
"__#34889@#disabled": boolean;
|
9
9
|
disabled: boolean;
|
10
|
-
"__#
|
10
|
+
"__#34889@#tabIndex": number;
|
11
11
|
tabIndex: number;
|
12
12
|
onFocus: EventEmitter<import("@acorex/components/common").AXFocusEvent>;
|
13
13
|
_emitOnFocusEvent(e: FocusEvent): void;
|
@@ -16,9 +16,9 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
16
16
|
focus(): void;
|
17
17
|
hasFocus(): boolean;
|
18
18
|
id: string;
|
19
|
-
"__#
|
19
|
+
"__#34886@#rtl": boolean;
|
20
20
|
rtl: boolean;
|
21
|
-
"__#
|
21
|
+
"__#34886@#elementRef": ElementRef<any>;
|
22
22
|
_cdr: ChangeDetectorRef;
|
23
23
|
_isInited: boolean;
|
24
24
|
_isRendered: boolean;
|
@@ -52,9 +52,9 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
52
52
|
open(): void;
|
53
53
|
readonly isOpen: boolean;
|
54
54
|
id: string;
|
55
|
-
"__#
|
55
|
+
"__#34886@#rtl": boolean;
|
56
56
|
rtl: boolean;
|
57
|
-
"__#
|
57
|
+
"__#34886@#elementRef": ElementRef<any>;
|
58
58
|
_cdr: ChangeDetectorRef;
|
59
59
|
_isInited: boolean;
|
60
60
|
_isRendered: boolean;
|
@@ -74,17 +74,17 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
74
74
|
}) & (new (...args: any[]) => {
|
75
75
|
onValueChanged: EventEmitter<import("@acorex/components/common").AXValueChangedEvent<any>>;
|
76
76
|
valueChange: EventEmitter<any>;
|
77
|
-
"__#
|
77
|
+
"__#34890@#readonly": boolean;
|
78
78
|
readonly: boolean;
|
79
|
-
"__#
|
79
|
+
"__#34890@#allowNull": boolean;
|
80
80
|
allowNull: boolean;
|
81
|
-
"__#
|
81
|
+
"__#34890@#name": string;
|
82
82
|
name: string;
|
83
|
-
"__#
|
83
|
+
"__#34890@#isUserInteraction": boolean;
|
84
84
|
readonly isUserInteraction: boolean;
|
85
|
-
"__#
|
85
|
+
"__#34890@#value": any;
|
86
86
|
value: any;
|
87
|
-
"__#
|
87
|
+
"__#34890@#state": "error" | "clear" | "success";
|
88
88
|
readonly state: "error" | "clear" | "success";
|
89
89
|
_emitOnValueChangedEvent(oldValue?: any, newValue?: any): void;
|
90
90
|
_internalSetValue(value: any): any;
|
@@ -99,9 +99,9 @@ export declare const AXBaseDatePickerMixin: (abstract new (...args: any[]) => {
|
|
99
99
|
validate(): Promise<any>;
|
100
100
|
_setState(state: "error" | "clear" | "success", ...args: any[]): void;
|
101
101
|
id: string;
|
102
|
-
"__#
|
102
|
+
"__#34886@#rtl": boolean;
|
103
103
|
rtl: boolean;
|
104
|
-
"__#
|
104
|
+
"__#34886@#elementRef": ElementRef<any>;
|
105
105
|
_cdr: ChangeDetectorRef;
|
106
106
|
_isInited: boolean;
|
107
107
|
_isRendered: boolean;
|
@@ -3,9 +3,10 @@ import { AXButtonItem } from '@acorex/components/button';
|
|
3
3
|
export interface AXDialogOptions {
|
4
4
|
title: string;
|
5
5
|
content: string;
|
6
|
-
buttons?: AXButtonItem[];
|
7
6
|
type: AXStyleColorType;
|
7
|
+
buttons?: AXButtonItem[];
|
8
8
|
dismissible?: boolean;
|
9
|
+
orientation?: "horizontal" | "vertical";
|
9
10
|
}
|
10
11
|
export interface AXDialogRef {
|
11
12
|
close(): void;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export * from './src/action-sheet.component';
|
2
|
-
export * from './src/action-sheet-item.component';
|
3
2
|
export * from './src/action-sheet.module';
|
4
|
-
|
3
|
+
export * from './src/action-sheet.service';
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2Fjb3JleC9jb21wb25lbnRzL2FjdGlvbi1zaGVldC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLDRCQUE0QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9zcmMvYWN0aW9uLXNoZWV0LmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc3JjL2FjdGlvbi1zaGVldC5tb2R1bGUnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NyYy9hY3Rpb24tc2hlZXQuc2VydmljZSc7Il19
|