@alauda/ui 6.4.2-beta.36 → 6.4.2-beta.39
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/breadcrumb/breadcrumb.module.d.ts +1 -2
- package/button/button.component.d.ts +0 -1
- package/checkbox/checkbox.component.d.ts +2 -3
- package/dropdown/dropdown.directive.d.ts +0 -1
- package/esm2020/breadcrumb/breadcrumb.module.mjs +4 -5
- package/esm2020/button/button.component.mjs +4 -11
- package/esm2020/checkbox/checkbox.component.mjs +7 -17
- package/esm2020/dialog/dialog.component.mjs +3 -3
- package/esm2020/dropdown/dropdown-button/dropdown-button.component.mjs +3 -3
- package/esm2020/dropdown/dropdown.directive.mjs +4 -11
- package/esm2020/form/common-form.mjs +6 -16
- package/esm2020/icon/icon.component.mjs +3 -6
- package/esm2020/input/input.component.mjs +5 -11
- package/esm2020/input/number-input/number-input.component.mjs +2 -3
- package/esm2020/input/search/search.component.mjs +2 -3
- package/esm2020/input/tags-input/tags-input.component.mjs +7 -8
- package/esm2020/message/message.component.mjs +5 -11
- package/esm2020/notification/notification.component.mjs +5 -11
- package/esm2020/radio/base-radio.mjs +4 -11
- package/esm2020/select/multi-select/multi-select.component.mjs +9 -10
- package/esm2020/select/option/option.component.mjs +3 -4
- package/esm2020/select/select.component.mjs +4 -5
- package/esm2020/select/select.module.mjs +2 -6
- package/esm2020/shared/shared.module.mjs +4 -5
- package/esm2020/switch/switch.component.mjs +5 -11
- package/esm2020/table/table-scroll.directive.mjs +12 -4
- package/esm2020/tabs/tab-group.component.mjs +2 -3
- package/esm2020/tabs/tab-header.component.mjs +3 -4
- package/esm2020/tabs/tabs.module.mjs +2 -6
- package/esm2020/time-picker/panel/panel.component.mjs +5 -5
- package/esm2020/tooltip/tooltip.component.mjs +5 -11
- package/esm2020/tree-select/tree-select.component.mjs +6 -7
- package/esm2020/tree-select/tree-select.module.mjs +4 -5
- package/esm2020/utils/fn.mjs +1 -31
- package/esm2020/utils/index.mjs +1 -2
- package/fesm2015/alauda-ui.mjs +138 -257
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +138 -256
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/form/common-form.d.ts +2 -4
- package/input/input.component.d.ts +0 -1
- package/input/tags-input/tags-input.component.d.ts +1 -1
- package/message/message.component.d.ts +0 -1
- package/notification/notification.component.d.ts +0 -1
- package/package.json +1 -1
- package/radio/base-radio.d.ts +0 -1
- package/select/multi-select/multi-select.component.d.ts +1 -1
- package/select/select.module.d.ts +1 -2
- package/shared/shared.module.d.ts +1 -2
- package/switch/switch.component.d.ts +0 -1
- package/table/table-scroll.directive.d.ts +2 -1
- package/tabs/tabs.module.d.ts +1 -2
- package/time-picker/panel/panel.component.d.ts +1 -1
- package/tooltip/tooltip.component.d.ts +0 -1
- package/tree-select/tree-select.module.d.ts +1 -2
- package/utils/fn.d.ts +0 -3
- package/utils/index.d.ts +0 -1
- package/esm2020/shared/e2e-attribute-binding.directive.mjs +0 -23
- package/shared/e2e-attribute-binding.directive.d.ts +0 -9
package/form/common-form.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef,
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { ReplaySubject } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -8,10 +8,8 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare class CommonFormControl<V, M = V> implements ControlValueAccessor {
|
|
10
10
|
protected cdr: ChangeDetectorRef;
|
|
11
|
-
protected readonly elementRef: ElementRef<HTMLElement>;
|
|
12
11
|
get disabled(): boolean | '';
|
|
13
12
|
set disabled(val: boolean | '');
|
|
14
|
-
get dataTest(): string;
|
|
15
13
|
get readonly(): boolean | "";
|
|
16
14
|
set readonly(val: boolean | "");
|
|
17
15
|
get propValue(): V;
|
|
@@ -23,7 +21,7 @@ export declare class CommonFormControl<V, M = V> implements ControlValueAccessor
|
|
|
23
21
|
private _disabled;
|
|
24
22
|
model: M;
|
|
25
23
|
model$: ReplaySubject<M>;
|
|
26
|
-
constructor(cdr: ChangeDetectorRef
|
|
24
|
+
constructor(cdr: ChangeDetectorRef);
|
|
27
25
|
registerOnChange(fn: (_: V) => void): void;
|
|
28
26
|
registerOnTouched(fn: () => void): void;
|
|
29
27
|
setDisabledState(isDisabled: boolean): void;
|
|
@@ -5,7 +5,6 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class InputComponent {
|
|
6
6
|
elementRef: ElementRef<HTMLInputElement>;
|
|
7
7
|
private readonly renderer;
|
|
8
|
-
get dataTest(): string;
|
|
9
8
|
get size(): ComponentSize;
|
|
10
9
|
set size(val: ComponentSize);
|
|
11
10
|
get disabled(): boolean | '';
|
|
@@ -37,7 +37,7 @@ export declare class TagsInputComponent extends CommonFormControl<string[]> impl
|
|
|
37
37
|
get rootClass(): string;
|
|
38
38
|
get tagSize(): "medium" | "mini";
|
|
39
39
|
get inputClass(): string;
|
|
40
|
-
constructor(cdr: ChangeDetectorRef, fb: FormBuilder, renderer: Renderer2, injector: Injector
|
|
40
|
+
constructor(cdr: ChangeDetectorRef, fb: FormBuilder, renderer: Renderer2, injector: Injector);
|
|
41
41
|
ngOnChanges({ inputValidator, inputAsyncValidator, disabled, }: SimpleChanges): void;
|
|
42
42
|
ngAfterViewInit(): void;
|
|
43
43
|
onRemove(index: number): void;
|
|
@@ -18,7 +18,6 @@ export declare class MessageComponent implements AfterViewInit {
|
|
|
18
18
|
type: MessageType;
|
|
19
19
|
content: string;
|
|
20
20
|
duration: number;
|
|
21
|
-
get dataTest(): string;
|
|
22
21
|
get icon(): string;
|
|
23
22
|
protected timerId: number;
|
|
24
23
|
constructor(viewContainerRef: ViewContainerRef, cdr: ChangeDetectorRef);
|
|
@@ -7,7 +7,6 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class NotificationComponent extends MessageComponent implements AfterViewInit {
|
|
8
8
|
protected readonly animateStartState = "flyLeft";
|
|
9
9
|
protected readonly animateStartEnd = "flyUp";
|
|
10
|
-
get dataTest(): string;
|
|
11
10
|
bem: Bem;
|
|
12
11
|
animateState: string;
|
|
13
12
|
uniqueId: string;
|
package/package.json
CHANGED
package/radio/base-radio.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ export declare class BaseRadio implements OnInit, AfterViewInit, OnDestroy {
|
|
|
7
7
|
protected radioGroup: RadioGroupComponent;
|
|
8
8
|
protected focusMonitor: FocusMonitor;
|
|
9
9
|
protected cdr: ChangeDetectorRef;
|
|
10
|
-
get dataTest(): string;
|
|
11
10
|
id: string;
|
|
12
11
|
disabled: boolean | '';
|
|
13
12
|
get value(): unknown;
|
|
@@ -35,7 +35,7 @@ export declare class MultiSelectComponent<T = unknown> extends BaseSelect<T, T[]
|
|
|
35
35
|
private readonly withMaxRowCount;
|
|
36
36
|
focused: boolean;
|
|
37
37
|
trackByValue: (_: number, item: SelectFilterOption<T>) => unknown;
|
|
38
|
-
constructor(cdr: ChangeDetectorRef, renderer: Renderer2
|
|
38
|
+
constructor(cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
39
39
|
ngAfterContentInit(): void;
|
|
40
40
|
ngAfterViewInit(): void;
|
|
41
41
|
onShowOptions(): void;
|
|
@@ -12,9 +12,8 @@ import * as i10 from "../i18n/i18n.module";
|
|
|
12
12
|
import * as i11 from "../icon/icon.module";
|
|
13
13
|
import * as i12 from "../tooltip/tooltip.module";
|
|
14
14
|
import * as i13 from "../tag/tag.module";
|
|
15
|
-
import * as i14 from "../shared/shared.module";
|
|
16
15
|
export declare class SelectModule {
|
|
17
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectModule, [typeof i1.SelectComponent, typeof i2.OptionComponent, typeof i3.OptionGroupComponent, typeof i4.OptionPlaceholderComponent, typeof i5.MultiSelectComponent, typeof i6.IncludesDirective, typeof i7.OptionGroupTitleDirective, typeof i7.OptionContentDirective], [typeof i8.CommonModule, typeof i9.InputModule, typeof i10.I18nModule, typeof i11.IconModule, typeof i12.TooltipModule, typeof i13.TagModule
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectModule, [typeof i1.SelectComponent, typeof i2.OptionComponent, typeof i3.OptionGroupComponent, typeof i4.OptionPlaceholderComponent, typeof i5.MultiSelectComponent, typeof i6.IncludesDirective, typeof i7.OptionGroupTitleDirective, typeof i7.OptionContentDirective], [typeof i8.CommonModule, typeof i9.InputModule, typeof i10.I18nModule, typeof i11.IconModule, typeof i12.TooltipModule, typeof i13.TagModule], [typeof i1.SelectComponent, typeof i2.OptionComponent, typeof i3.OptionGroupComponent, typeof i4.OptionPlaceholderComponent, typeof i5.MultiSelectComponent, typeof i6.IncludesDirective, typeof i7.OptionGroupTitleDirective, typeof i7.OptionContentDirective]>;
|
|
19
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<SelectModule>;
|
|
20
19
|
}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./click-outside.directive";
|
|
3
|
-
import * as i2 from "./e2e-attribute-binding.directive";
|
|
4
3
|
export declare class SharedModule {
|
|
5
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.ClickOutsideDirective
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.ClickOutsideDirective], never, [typeof i1.ClickOutsideDirective]>;
|
|
7
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
8
7
|
}
|
|
@@ -3,8 +3,9 @@ import { Subject } from 'rxjs';
|
|
|
3
3
|
import { TableComponent } from './table.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class TableScrollWrapperDirective {
|
|
6
|
+
auiTableScrollWrapper: string;
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableScrollWrapperDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableScrollWrapperDirective, "[auiTableScrollWrapper]", never, {}, {}, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableScrollWrapperDirective, "[auiTableScrollWrapper]", never, { "auiTableScrollWrapper": "auiTableScrollWrapper"; }, {}, never>;
|
|
8
9
|
}
|
|
9
10
|
export declare class TableScrollShadowDirective implements AfterViewInit, OnDestroy {
|
|
10
11
|
private readonly el;
|
package/tabs/tabs.module.d.ts
CHANGED
|
@@ -11,9 +11,8 @@ import * as i9 from "../button/button.module";
|
|
|
11
11
|
import * as i10 from "../icon/icon.module";
|
|
12
12
|
import * as i11 from "@angular/cdk/a11y";
|
|
13
13
|
import * as i12 from "@angular/cdk/observers";
|
|
14
|
-
import * as i13 from "../shared/shared.module";
|
|
15
14
|
export declare class TabsModule {
|
|
16
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, [typeof i1.TabGroupComponent, typeof i2.TabComponent, typeof i3.TabLabelDirective, typeof i3.TabContentDirective, typeof i3.TabHeaderAddonDirective, typeof i3.TabTitleDirective, typeof i4.TabHeaderComponent, typeof i3.TabBodyComponent, typeof i3.TabBodyPortalDirective, typeof i3.TabLabelWrapperDirective, typeof i5.TabHeaderActiveIndicatorComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.PortalModule, typeof i9.ButtonModule, typeof i10.IconModule, typeof i11.A11yModule, typeof i12.ObserversModule
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TabsModule, [typeof i1.TabGroupComponent, typeof i2.TabComponent, typeof i3.TabLabelDirective, typeof i3.TabContentDirective, typeof i3.TabHeaderAddonDirective, typeof i3.TabTitleDirective, typeof i4.TabHeaderComponent, typeof i3.TabBodyComponent, typeof i3.TabBodyPortalDirective, typeof i3.TabLabelWrapperDirective, typeof i5.TabHeaderActiveIndicatorComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.PortalModule, typeof i9.ButtonModule, typeof i10.IconModule, typeof i11.A11yModule, typeof i12.ObserversModule], [typeof i1.TabGroupComponent, typeof i2.TabComponent, typeof i3.TabLabelDirective, typeof i3.TabContentDirective, typeof i3.TabHeaderAddonDirective, typeof i3.TabTitleDirective, typeof i3.TabLabelWrapperDirective, typeof i4.TabHeaderComponent]>;
|
|
18
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<TabsModule>;
|
|
19
18
|
}
|
|
@@ -38,7 +38,7 @@ export declare class TimePickerPanelComponent extends CommonFormControl<Dayjs> i
|
|
|
38
38
|
secondRef: ElementRef<HTMLElement>;
|
|
39
39
|
enabledColumns: number;
|
|
40
40
|
firstScrolled: boolean;
|
|
41
|
-
constructor(cdr: ChangeDetectorRef
|
|
41
|
+
constructor(cdr: ChangeDetectorRef);
|
|
42
42
|
isDisabled(value: number, type: TimePickerControlType): boolean;
|
|
43
43
|
ngOnChanges({ hourStep, minuteStep, secondStep }: SimpleChanges): void;
|
|
44
44
|
writeValue(value: Dayjs): void;
|
|
@@ -5,9 +5,8 @@ import * as i3 from "@angular/common";
|
|
|
5
5
|
import * as i4 from "../tooltip/tooltip.module";
|
|
6
6
|
import * as i5 from "../icon/icon.module";
|
|
7
7
|
import * as i6 from "../input/input.module";
|
|
8
|
-
import * as i7 from "../shared/shared.module";
|
|
9
8
|
export declare class TreeSelectModule {
|
|
10
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TreeSelectModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeSelectModule, [typeof i1.TreeSelectComponent, typeof i1.TreeNodeComponent, typeof i2.TreeNodePlaceholderComponent], [typeof i3.CommonModule, typeof i4.TooltipModule, typeof i5.IconModule, typeof i6.InputModule
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TreeSelectModule, [typeof i1.TreeSelectComponent, typeof i1.TreeNodeComponent, typeof i2.TreeNodePlaceholderComponent], [typeof i3.CommonModule, typeof i4.TooltipModule, typeof i5.IconModule, typeof i6.InputModule], [typeof i1.TreeSelectComponent, typeof i1.TreeNodeComponent, typeof i2.TreeNodePlaceholderComponent]>;
|
|
12
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<TreeSelectModule>;
|
|
13
12
|
}
|
package/utils/fn.d.ts
CHANGED
|
@@ -4,6 +4,3 @@ export declare const last: <T>(values: T[]) => T;
|
|
|
4
4
|
export declare const isTemplateRef: (label: any) => label is TemplateRef<unknown>;
|
|
5
5
|
export declare const isString: (label: any) => label is string;
|
|
6
6
|
export declare const handlePixel: (value: number | string) => string;
|
|
7
|
-
export declare const formatDataTestId: (input: string) => string;
|
|
8
|
-
export declare const getDataTextContent: (element: HTMLElement, type?: string) => string;
|
|
9
|
-
export declare const generateDataTestId: (ei: HTMLElement | string, type?: string) => string;
|
package/utils/index.d.ts
CHANGED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import { generateDataTestId } from '../utils';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class E2eAttributeBindingDirective {
|
|
5
|
-
constructor(el) {
|
|
6
|
-
this.el = el;
|
|
7
|
-
}
|
|
8
|
-
ngAfterViewInit() {
|
|
9
|
-
if (this.el.nativeElement && !this.el.nativeElement.dataset.test) {
|
|
10
|
-
this.el.nativeElement.dataset.test = generateDataTestId(this.el.nativeElement);
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
E2eAttributeBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: E2eAttributeBindingDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
15
|
-
E2eAttributeBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: E2eAttributeBindingDirective, selector: "[click],[routerLink],a[href]", ngImport: i0 });
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: E2eAttributeBindingDirective, decorators: [{
|
|
17
|
-
type: Directive,
|
|
18
|
-
args: [{
|
|
19
|
-
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
20
|
-
selector: '[click],[routerLink],a[href]',
|
|
21
|
-
}]
|
|
22
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
23
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZTJlLWF0dHJpYnV0ZS1iaW5kaW5nLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zaGFyZWQvZTJlLWF0dHJpYnV0ZS1iaW5kaW5nLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWlCLFNBQVMsRUFBYyxNQUFNLGVBQWUsQ0FBQztBQUVyRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxVQUFVLENBQUM7O0FBTTlDLE1BQU0sT0FBTyw0QkFBNEI7SUFDdkMsWUFBNkIsRUFBMkI7UUFBM0IsT0FBRSxHQUFGLEVBQUUsQ0FBeUI7SUFBRyxDQUFDO0lBRTVELGVBQWU7UUFDYixJQUFJLElBQUksQ0FBQyxFQUFFLENBQUMsYUFBYSxJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUMsT0FBTyxDQUFDLElBQUksRUFBRTtZQUNoRSxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FBQyxPQUFPLENBQUMsSUFBSSxHQUFHLGtCQUFrQixDQUNyRCxJQUFJLENBQUMsRUFBRSxDQUFDLGFBQWEsQ0FDdEIsQ0FBQztTQUNIO0lBQ0gsQ0FBQzs7eUhBVFUsNEJBQTRCOzZHQUE1Qiw0QkFBNEI7MkZBQTVCLDRCQUE0QjtrQkFKeEMsU0FBUzttQkFBQztvQkFDVCw4REFBOEQ7b0JBQzlELFFBQVEsRUFBRSw4QkFBOEI7aUJBQ3pDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQWZ0ZXJWaWV3SW5pdCwgRGlyZWN0aXZlLCBFbGVtZW50UmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IGdlbmVyYXRlRGF0YVRlc3RJZCB9IGZyb20gJy4uL3V0aWxzJztcblxuQERpcmVjdGl2ZSh7XG4gIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvZGlyZWN0aXZlLXNlbGVjdG9yXG4gIHNlbGVjdG9yOiAnW2NsaWNrXSxbcm91dGVyTGlua10sYVtocmVmXScsXG59KVxuZXhwb3J0IGNsYXNzIEUyZUF0dHJpYnV0ZUJpbmRpbmdEaXJlY3RpdmUgaW1wbGVtZW50cyBBZnRlclZpZXdJbml0IHtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSByZWFkb25seSBlbDogRWxlbWVudFJlZjxIVE1MRWxlbWVudD4pIHt9XG5cbiAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgIGlmICh0aGlzLmVsLm5hdGl2ZUVsZW1lbnQgJiYgIXRoaXMuZWwubmF0aXZlRWxlbWVudC5kYXRhc2V0LnRlc3QpIHtcbiAgICAgIHRoaXMuZWwubmF0aXZlRWxlbWVudC5kYXRhc2V0LnRlc3QgPSBnZW5lcmF0ZURhdGFUZXN0SWQoXG4gICAgICAgIHRoaXMuZWwubmF0aXZlRWxlbWVudCxcbiAgICAgICk7XG4gICAgfVxuICB9XG59XG4iXX0=
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class E2eAttributeBindingDirective implements AfterViewInit {
|
|
4
|
-
private readonly el;
|
|
5
|
-
constructor(el: ElementRef<HTMLElement>);
|
|
6
|
-
ngAfterViewInit(): void;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<E2eAttributeBindingDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<E2eAttributeBindingDirective, "[click],[routerLink],a[href]", never, {}, {}, never>;
|
|
9
|
-
}
|