@alauda/ui 7.4.2-beta.14 → 7.4.2-beta.15
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/editable/editable.component.d.ts +18 -0
- package/editable/editable.directive.d.ts +9 -0
- package/editable/editable.module.d.ts +8 -0
- package/editable/editable.type.d.ts +4 -0
- package/editable/index.d.ts +3 -0
- package/esm2022/editable/editable.component.mjs +57 -0
- package/esm2022/editable/editable.directive.mjs +25 -0
- package/esm2022/editable/editable.module.mjs +29 -0
- package/esm2022/editable/editable.type.mjs +6 -0
- package/esm2022/editable/index.mjs +4 -0
- package/esm2022/index.mjs +2 -1
- package/fesm2022/alauda-ui.mjs +117 -15
- package/fesm2022/alauda-ui.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
2
|
+
import { EditableMode } from './editable.type';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class EditableComponent {
|
|
5
|
+
save: EventEmitter<void>;
|
|
6
|
+
cancel: EventEmitter<void>;
|
|
7
|
+
modeChange: EventEmitter<EditableMode>;
|
|
8
|
+
viewer: TemplateRef<unknown>;
|
|
9
|
+
editor: TemplateRef<unknown>;
|
|
10
|
+
EditableMode: typeof EditableMode;
|
|
11
|
+
bem: import("../internal/utils").Bem;
|
|
12
|
+
$$mode: import("@angular/core").WritableSignal<EditableMode>;
|
|
13
|
+
constructor();
|
|
14
|
+
saveEdit(): void;
|
|
15
|
+
cancelEdit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditableComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditableComponent, "aui-editable", never, {}, { "save": "save"; "cancel": "cancel"; "modeChange": "modeChange"; }, ["viewer", "editor"], never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class EditableViewerDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditableViewerDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditableViewerDirective, "*[auiEditableViewer]", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
6
|
+
export declare class EditableEditorDirective {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditableEditorDirective, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditableEditorDirective, "*[auiEditableEditor]", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./editable.component";
|
|
3
|
+
import * as i2 from "./editable.directive";
|
|
4
|
+
export declare class EditableModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditableModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EditableModule, never, [typeof i1.EditableComponent, typeof i2.EditableViewerDirective, typeof i2.EditableEditorDirective], [typeof i1.EditableComponent, typeof i2.EditableViewerDirective, typeof i2.EditableEditorDirective]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<EditableModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { AsyncPipe, NgFor, NgIf, NgTemplateOutlet } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ContentChild, EventEmitter, Output, TemplateRef, effect, signal, } from '@angular/core';
|
|
3
|
+
import { ButtonModule } from '../button';
|
|
4
|
+
import { IconComponent } from '../icon';
|
|
5
|
+
import { buildBem } from '../internal/utils';
|
|
6
|
+
import { EditableEditorDirective, EditableViewerDirective, } from './editable.directive';
|
|
7
|
+
import { EditableMode } from './editable.type';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "../button/button.component";
|
|
10
|
+
const bem = buildBem('aui-editable');
|
|
11
|
+
export class EditableComponent {
|
|
12
|
+
constructor() {
|
|
13
|
+
this.save = new EventEmitter();
|
|
14
|
+
this.cancel = new EventEmitter();
|
|
15
|
+
this.modeChange = new EventEmitter();
|
|
16
|
+
this.EditableMode = EditableMode;
|
|
17
|
+
this.bem = bem;
|
|
18
|
+
this.$$mode = signal(EditableMode.View);
|
|
19
|
+
effect(() => {
|
|
20
|
+
this.modeChange.emit(this.$$mode());
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
saveEdit() {
|
|
24
|
+
this.$$mode.set(EditableMode.View);
|
|
25
|
+
this.save.emit();
|
|
26
|
+
}
|
|
27
|
+
cancelEdit() {
|
|
28
|
+
this.$$mode.set(EditableMode.View);
|
|
29
|
+
this.cancel.emit();
|
|
30
|
+
}
|
|
31
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
32
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.3", type: EditableComponent, isStandalone: true, selector: "aui-editable", outputs: { save: "save", cancel: "cancel", modeChange: "modeChange" }, queries: [{ propertyName: "viewer", first: true, predicate: EditableViewerDirective, descendants: true, read: TemplateRef }, { propertyName: "editor", first: true, predicate: EditableEditorDirective, descendants: true, read: TemplateRef }], ngImport: i0, template: "<div [class]=\"bem.block()\">\n <div\n [class]=\"bem.element('viewer-container')\"\n *ngIf=\"$$mode() === EditableMode.View\"\n >\n <ng-container [ngTemplateOutlet]=\"viewer\"> </ng-container>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"$$mode.set(EditableMode.Edit)\"\n >\n <aui-icon icon=\"pencil\"></aui-icon>\n </button>\n </div>\n <ng-container *ngIf=\"$$mode() === EditableMode.Edit\">\n <div [class]=\"bem.element('editor-container')\">\n <ng-container [ngTemplateOutlet]=\"editor\"> </ng-container>\n\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"saveEdit()\"\n >\n <aui-icon icon=\"check\"></aui-icon>\n </button>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"cancelEdit()\"\n >\n <aui-icon icon=\"xmark\"></aui-icon>\n </button>\n </div>\n </ng-container>\n</div>\n", styles: [".aui-editable .aui-button--text{color:rgb(var(--aui-color-main-text))}.aui-editable .aui-button--text:first-of-type{margin-left:8px}.aui-editable .aui-button--text:hover{color:rgb(var(--aui-color-primary))}.aui-editable__view-container,.aui-editable__editor-container{display:flex;align-items:center}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: IconComponent, selector: "aui-icon", inputs: ["icon", "light", "dark", "link", "margin", "size", "color", "background", "backgroundColor"] }, { kind: "ngmodule", type: ButtonModule }, { kind: "component", type: i1.ButtonComponent, selector: "button[aui-button]", inputs: ["aui-button", "size", "plain", "loading", "round", "square"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
33
|
+
}
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableComponent, decorators: [{
|
|
35
|
+
type: Component,
|
|
36
|
+
args: [{ selector: 'aui-editable', standalone: true, imports: [
|
|
37
|
+
NgIf,
|
|
38
|
+
NgFor,
|
|
39
|
+
AsyncPipe,
|
|
40
|
+
NgTemplateOutlet,
|
|
41
|
+
IconComponent,
|
|
42
|
+
ButtonModule,
|
|
43
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div [class]=\"bem.block()\">\n <div\n [class]=\"bem.element('viewer-container')\"\n *ngIf=\"$$mode() === EditableMode.View\"\n >\n <ng-container [ngTemplateOutlet]=\"viewer\"> </ng-container>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"$$mode.set(EditableMode.Edit)\"\n >\n <aui-icon icon=\"pencil\"></aui-icon>\n </button>\n </div>\n <ng-container *ngIf=\"$$mode() === EditableMode.Edit\">\n <div [class]=\"bem.element('editor-container')\">\n <ng-container [ngTemplateOutlet]=\"editor\"> </ng-container>\n\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"saveEdit()\"\n >\n <aui-icon icon=\"check\"></aui-icon>\n </button>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"cancelEdit()\"\n >\n <aui-icon icon=\"xmark\"></aui-icon>\n </button>\n </div>\n </ng-container>\n</div>\n", styles: [".aui-editable .aui-button--text{color:rgb(var(--aui-color-main-text))}.aui-editable .aui-button--text:first-of-type{margin-left:8px}.aui-editable .aui-button--text:hover{color:rgb(var(--aui-color-primary))}.aui-editable__view-container,.aui-editable__editor-container{display:flex;align-items:center}\n"] }]
|
|
44
|
+
}], ctorParameters: function () { return []; }, propDecorators: { save: [{
|
|
45
|
+
type: Output
|
|
46
|
+
}], cancel: [{
|
|
47
|
+
type: Output
|
|
48
|
+
}], modeChange: [{
|
|
49
|
+
type: Output
|
|
50
|
+
}], viewer: [{
|
|
51
|
+
type: ContentChild,
|
|
52
|
+
args: [EditableViewerDirective, { read: TemplateRef }]
|
|
53
|
+
}], editor: [{
|
|
54
|
+
type: ContentChild,
|
|
55
|
+
args: [EditableEditorDirective, { read: TemplateRef }]
|
|
56
|
+
}] } });
|
|
57
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdGFibGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2VkaXRhYmxlL2VkaXRhYmxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uL3NyYy9lZGl0YWJsZS9lZGl0YWJsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMzRSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxZQUFZLEVBQ1osWUFBWSxFQUNaLE1BQU0sRUFDTixXQUFXLEVBQ1gsTUFBTSxFQUNOLE1BQU0sR0FDUCxNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sV0FBVyxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxTQUFTLENBQUM7QUFDeEMsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBRTdDLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsdUJBQXVCLEdBQ3hCLE1BQU0sc0JBQXNCLENBQUM7QUFDOUIsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7QUFFL0MsTUFBTSxHQUFHLEdBQUcsUUFBUSxDQUFDLGNBQWMsQ0FBQyxDQUFDO0FBaUJyQyxNQUFNLE9BQU8saUJBQWlCO0lBaUI1QjtRQWhCVSxTQUFJLEdBQXVCLElBQUksWUFBWSxFQUFRLENBQUM7UUFDcEQsV0FBTSxHQUF1QixJQUFJLFlBQVksRUFBUSxDQUFDO1FBQ3RELGVBQVUsR0FDbEIsSUFBSSxZQUFZLEVBQWdCLENBQUM7UUFRbkMsaUJBQVksR0FBRyxZQUFZLENBQUM7UUFDNUIsUUFBRyxHQUFHLEdBQUcsQ0FBQztRQUVWLFdBQU0sR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBR2pDLE1BQU0sQ0FBQyxHQUFHLEVBQUU7WUFDVixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUMsQ0FBQztRQUN0QyxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBQ25DLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDbkIsQ0FBQztJQUVELFVBQVU7UUFDUixJQUFJLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDbkMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUNyQixDQUFDOzhHQS9CVSxpQkFBaUI7a0dBQWpCLGlCQUFpQixtTEFNZCx1QkFBdUIsMkJBQVUsV0FBVyxzREFHNUMsdUJBQXVCLDJCQUFVLFdBQVcsNkJDaEQ1RCw2OEJBbUNBLHdXRExJLElBQUksNkZBR0osZ0JBQWdCLG9KQUNoQixhQUFhLDJKQUNiLFlBQVk7OzJGQUlILGlCQUFpQjtrQkFmN0IsU0FBUzsrQkFDRSxjQUFjLGNBR1osSUFBSSxXQUNQO3dCQUNQLElBQUk7d0JBQ0osS0FBSzt3QkFDTCxTQUFTO3dCQUNULGdCQUFnQjt3QkFDaEIsYUFBYTt3QkFDYixZQUFZO3FCQUNiLG1CQUNnQix1QkFBdUIsQ0FBQyxNQUFNOzBFQUdyQyxJQUFJO3NCQUFiLE1BQU07Z0JBQ0csTUFBTTtzQkFBZixNQUFNO2dCQUNHLFVBQVU7c0JBQW5CLE1BQU07Z0JBSVAsTUFBTTtzQkFETCxZQUFZO3VCQUFDLHVCQUF1QixFQUFFLEVBQUUsSUFBSSxFQUFFLFdBQVcsRUFBRTtnQkFJNUQsTUFBTTtzQkFETCxZQUFZO3VCQUFDLHVCQUF1QixFQUFFLEVBQUUsSUFBSSxFQUFFLFdBQVcsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFzeW5jUGlwZSwgTmdGb3IsIE5nSWYsIE5nVGVtcGxhdGVPdXRsZXQgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgQ29udGVudENoaWxkLFxuICBFdmVudEVtaXR0ZXIsXG4gIE91dHB1dCxcbiAgVGVtcGxhdGVSZWYsXG4gIGVmZmVjdCxcbiAgc2lnbmFsLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgQnV0dG9uTW9kdWxlIH0gZnJvbSAnLi4vYnV0dG9uJztcbmltcG9ydCB7IEljb25Db21wb25lbnQgfSBmcm9tICcuLi9pY29uJztcbmltcG9ydCB7IGJ1aWxkQmVtIH0gZnJvbSAnLi4vaW50ZXJuYWwvdXRpbHMnO1xuXG5pbXBvcnQge1xuICBFZGl0YWJsZUVkaXRvckRpcmVjdGl2ZSxcbiAgRWRpdGFibGVWaWV3ZXJEaXJlY3RpdmUsXG59IGZyb20gJy4vZWRpdGFibGUuZGlyZWN0aXZlJztcbmltcG9ydCB7IEVkaXRhYmxlTW9kZSB9IGZyb20gJy4vZWRpdGFibGUudHlwZSc7XG5cbmNvbnN0IGJlbSA9IGJ1aWxkQmVtKCdhdWktZWRpdGFibGUnKTtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXVpLWVkaXRhYmxlJyxcbiAgdGVtcGxhdGVVcmw6ICdlZGl0YWJsZS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWydlZGl0YWJsZS5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgTmdJZixcbiAgICBOZ0ZvcixcbiAgICBBc3luY1BpcGUsXG4gICAgTmdUZW1wbGF0ZU91dGxldCxcbiAgICBJY29uQ29tcG9uZW50LFxuICAgIEJ1dHRvbk1vZHVsZSxcbiAgXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIEVkaXRhYmxlQ29tcG9uZW50IHtcbiAgQE91dHB1dCgpIHNhdmU6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcbiAgQE91dHB1dCgpIGNhbmNlbDogRXZlbnRFbWl0dGVyPHZvaWQ+ID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPigpO1xuICBAT3V0cHV0KCkgbW9kZUNoYW5nZTogRXZlbnRFbWl0dGVyPEVkaXRhYmxlTW9kZT4gPVxuICAgIG5ldyBFdmVudEVtaXR0ZXI8RWRpdGFibGVNb2RlPigpO1xuXG4gIEBDb250ZW50Q2hpbGQoRWRpdGFibGVWaWV3ZXJEaXJlY3RpdmUsIHsgcmVhZDogVGVtcGxhdGVSZWYgfSlcbiAgdmlld2VyOiBUZW1wbGF0ZVJlZjx1bmtub3duPjtcblxuICBAQ29udGVudENoaWxkKEVkaXRhYmxlRWRpdG9yRGlyZWN0aXZlLCB7IHJlYWQ6IFRlbXBsYXRlUmVmIH0pXG4gIGVkaXRvcjogVGVtcGxhdGVSZWY8dW5rbm93bj47XG5cbiAgRWRpdGFibGVNb2RlID0gRWRpdGFibGVNb2RlO1xuICBiZW0gPSBiZW07XG5cbiAgJCRtb2RlID0gc2lnbmFsKEVkaXRhYmxlTW9kZS5WaWV3KTtcblxuICBjb25zdHJ1Y3RvcigpIHtcbiAgICBlZmZlY3QoKCkgPT4ge1xuICAgICAgdGhpcy5tb2RlQ2hhbmdlLmVtaXQodGhpcy4kJG1vZGUoKSk7XG4gICAgfSk7XG4gIH1cblxuICBzYXZlRWRpdCgpIHtcbiAgICB0aGlzLiQkbW9kZS5zZXQoRWRpdGFibGVNb2RlLlZpZXcpO1xuICAgIHRoaXMuc2F2ZS5lbWl0KCk7XG4gIH1cblxuICBjYW5jZWxFZGl0KCkge1xuICAgIHRoaXMuJCRtb2RlLnNldChFZGl0YWJsZU1vZGUuVmlldyk7XG4gICAgdGhpcy5jYW5jZWwuZW1pdCgpO1xuICB9XG59XG4iLCI8ZGl2IFtjbGFzc109XCJiZW0uYmxvY2soKVwiPlxuICA8ZGl2XG4gICAgW2NsYXNzXT1cImJlbS5lbGVtZW50KCd2aWV3ZXItY29udGFpbmVyJylcIlxuICAgICpuZ0lmPVwiJCRtb2RlKCkgPT09IEVkaXRhYmxlTW9kZS5WaWV3XCJcbiAgPlxuICAgIDxuZy1jb250YWluZXIgW25nVGVtcGxhdGVPdXRsZXRdPVwidmlld2VyXCI+IDwvbmctY29udGFpbmVyPlxuICAgIDxidXR0b25cbiAgICAgIGF1aS1idXR0b249XCJ0ZXh0XCJcbiAgICAgIFtzcXVhcmVdPVwidHJ1ZVwiXG4gICAgICAoY2xpY2spPVwiJCRtb2RlLnNldChFZGl0YWJsZU1vZGUuRWRpdClcIlxuICAgID5cbiAgICAgIDxhdWktaWNvbiBpY29uPVwicGVuY2lsXCI+PC9hdWktaWNvbj5cbiAgICA8L2J1dHRvbj5cbiAgPC9kaXY+XG4gIDxuZy1jb250YWluZXIgKm5nSWY9XCIkJG1vZGUoKSA9PT0gRWRpdGFibGVNb2RlLkVkaXRcIj5cbiAgICA8ZGl2IFtjbGFzc109XCJiZW0uZWxlbWVudCgnZWRpdG9yLWNvbnRhaW5lcicpXCI+XG4gICAgICA8bmctY29udGFpbmVyIFtuZ1RlbXBsYXRlT3V0bGV0XT1cImVkaXRvclwiPiA8L25nLWNvbnRhaW5lcj5cblxuICAgICAgPGJ1dHRvblxuICAgICAgICBhdWktYnV0dG9uPVwidGV4dFwiXG4gICAgICAgIFtzcXVhcmVdPVwidHJ1ZVwiXG4gICAgICAgIChjbGljayk9XCJzYXZlRWRpdCgpXCJcbiAgICAgID5cbiAgICAgICAgPGF1aS1pY29uIGljb249XCJjaGVja1wiPjwvYXVpLWljb24+XG4gICAgICA8L2J1dHRvbj5cbiAgICAgIDxidXR0b25cbiAgICAgICAgYXVpLWJ1dHRvbj1cInRleHRcIlxuICAgICAgICBbc3F1YXJlXT1cInRydWVcIlxuICAgICAgICAoY2xpY2spPVwiY2FuY2VsRWRpdCgpXCJcbiAgICAgID5cbiAgICAgICAgPGF1aS1pY29uIGljb249XCJ4bWFya1wiPjwvYXVpLWljb24+XG4gICAgICA8L2J1dHRvbj5cbiAgICA8L2Rpdj5cbiAgPC9uZy1jb250YWluZXI+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Directive } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class EditableViewerDirective {
|
|
4
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableViewerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: EditableViewerDirective, isStandalone: true, selector: "*[auiEditableViewer]", ngImport: i0 }); }
|
|
6
|
+
}
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableViewerDirective, decorators: [{
|
|
8
|
+
type: Directive,
|
|
9
|
+
args: [{
|
|
10
|
+
selector: '*[auiEditableViewer]',
|
|
11
|
+
standalone: true,
|
|
12
|
+
}]
|
|
13
|
+
}] });
|
|
14
|
+
export class EditableEditorDirective {
|
|
15
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableEditorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
16
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: EditableEditorDirective, isStandalone: true, selector: "*[auiEditableEditor]", ngImport: i0 }); }
|
|
17
|
+
}
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableEditorDirective, decorators: [{
|
|
19
|
+
type: Directive,
|
|
20
|
+
args: [{
|
|
21
|
+
selector: '*[auiEditableEditor]',
|
|
22
|
+
standalone: true,
|
|
23
|
+
}]
|
|
24
|
+
}] });
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdGFibGUuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2VkaXRhYmxlL2VkaXRhYmxlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU0xQyxNQUFNLE9BQU8sdUJBQXVCOzhHQUF2Qix1QkFBdUI7a0dBQXZCLHVCQUF1Qjs7MkZBQXZCLHVCQUF1QjtrQkFKbkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsc0JBQXNCO29CQUNoQyxVQUFVLEVBQUUsSUFBSTtpQkFDakI7O0FBT0QsTUFBTSxPQUFPLHVCQUF1Qjs4R0FBdkIsdUJBQXVCO2tHQUF2Qix1QkFBdUI7OzJGQUF2Qix1QkFBdUI7a0JBSm5DLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJypbYXVpRWRpdGFibGVWaWV3ZXJdJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgRWRpdGFibGVWaWV3ZXJEaXJlY3RpdmUge31cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnKlthdWlFZGl0YWJsZUVkaXRvcl0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBFZGl0YWJsZUVkaXRvckRpcmVjdGl2ZSB7fVxuIl19
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { EditableComponent } from './editable.component';
|
|
3
|
+
import { EditableEditorDirective, EditableViewerDirective, } from './editable.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class EditableModule {
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, imports: [EditableComponent,
|
|
8
|
+
EditableViewerDirective,
|
|
9
|
+
EditableEditorDirective], exports: [EditableComponent,
|
|
10
|
+
EditableViewerDirective,
|
|
11
|
+
EditableEditorDirective] }); }
|
|
12
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, imports: [EditableComponent] }); }
|
|
13
|
+
}
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, decorators: [{
|
|
15
|
+
type: NgModule,
|
|
16
|
+
args: [{
|
|
17
|
+
imports: [
|
|
18
|
+
EditableComponent,
|
|
19
|
+
EditableViewerDirective,
|
|
20
|
+
EditableEditorDirective,
|
|
21
|
+
],
|
|
22
|
+
exports: [
|
|
23
|
+
EditableComponent,
|
|
24
|
+
EditableViewerDirective,
|
|
25
|
+
EditableEditorDirective,
|
|
26
|
+
],
|
|
27
|
+
}]
|
|
28
|
+
}] });
|
|
29
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdGFibGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2VkaXRhYmxlL2VkaXRhYmxlLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3pELE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsdUJBQXVCLEdBQ3hCLE1BQU0sc0JBQXNCLENBQUM7O0FBYzlCLE1BQU0sT0FBTyxjQUFjOzhHQUFkLGNBQWM7K0dBQWQsY0FBYyxZQVZ2QixpQkFBaUI7WUFDakIsdUJBQXVCO1lBQ3ZCLHVCQUF1QixhQUd2QixpQkFBaUI7WUFDakIsdUJBQXVCO1lBQ3ZCLHVCQUF1QjsrR0FHZCxjQUFjLFlBVnZCLGlCQUFpQjs7MkZBVVIsY0FBYztrQkFaMUIsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUU7d0JBQ1AsaUJBQWlCO3dCQUNqQix1QkFBdUI7d0JBQ3ZCLHVCQUF1QjtxQkFDeEI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLGlCQUFpQjt3QkFDakIsdUJBQXVCO3dCQUN2Qix1QkFBdUI7cUJBQ3hCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgRWRpdGFibGVDb21wb25lbnQgfSBmcm9tICcuL2VkaXRhYmxlLmNvbXBvbmVudCc7XG5pbXBvcnQge1xuICBFZGl0YWJsZUVkaXRvckRpcmVjdGl2ZSxcbiAgRWRpdGFibGVWaWV3ZXJEaXJlY3RpdmUsXG59IGZyb20gJy4vZWRpdGFibGUuZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1xuICAgIEVkaXRhYmxlQ29tcG9uZW50LFxuICAgIEVkaXRhYmxlVmlld2VyRGlyZWN0aXZlLFxuICAgIEVkaXRhYmxlRWRpdG9yRGlyZWN0aXZlLFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgRWRpdGFibGVDb21wb25lbnQsXG4gICAgRWRpdGFibGVWaWV3ZXJEaXJlY3RpdmUsXG4gICAgRWRpdGFibGVFZGl0b3JEaXJlY3RpdmUsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIEVkaXRhYmxlTW9kdWxlIHt9XG4iXX0=
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export var EditableMode;
|
|
2
|
+
(function (EditableMode) {
|
|
3
|
+
EditableMode["View"] = "view";
|
|
4
|
+
EditableMode["Edit"] = "edit";
|
|
5
|
+
})(EditableMode || (EditableMode = {}));
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdGFibGUudHlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9lZGl0YWJsZS9lZGl0YWJsZS50eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBTixJQUFZLFlBR1g7QUFIRCxXQUFZLFlBQVk7SUFDdEIsNkJBQWEsQ0FBQTtJQUNiLDZCQUFhLENBQUE7QUFDZixDQUFDLEVBSFcsWUFBWSxLQUFaLFlBQVksUUFHdkIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBFZGl0YWJsZU1vZGUge1xuICBWaWV3ID0gJ3ZpZXcnLFxuICBFZGl0ID0gJ2VkaXQnLFxufVxuIl19
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export * from './editable.component';
|
|
2
|
+
export * from './editable.directive';
|
|
3
|
+
export * from './editable.module';
|
|
4
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvZWRpdGFibGUvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxzQkFBc0IsQ0FBQztBQUNyQyxjQUFjLHNCQUFzQixDQUFDO0FBQ3JDLGNBQWMsbUJBQW1CLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2VkaXRhYmxlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2VkaXRhYmxlLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2VkaXRhYmxlLm1vZHVsZSc7XG4iXX0=
|
package/esm2022/index.mjs
CHANGED
|
@@ -11,6 +11,7 @@ export * from './date-picker';
|
|
|
11
11
|
export * from './dialog';
|
|
12
12
|
export * from './drawer';
|
|
13
13
|
export * from './dropdown';
|
|
14
|
+
export * from './editable';
|
|
14
15
|
export * from './form';
|
|
15
16
|
export * from './i18n';
|
|
16
17
|
export * from './icon';
|
|
@@ -36,4 +37,4 @@ export * from './theme';
|
|
|
36
37
|
export * from './time-picker';
|
|
37
38
|
export * from './tooltip';
|
|
38
39
|
export * from './tree-select';
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUM7QUFDNUIsY0FBYyxVQUFVLENBQUM7QUFDekIsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGNBQWMsQ0FBQztBQUM3QixjQUFjLFVBQVUsQ0FBQztBQUN6QixjQUFjLFFBQVEsQ0FBQztBQUN2QixjQUFjLFlBQVksQ0FBQztBQUMzQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsWUFBWSxDQUFDO0FBQzNCLGNBQWMsUUFBUSxDQUFDO0FBQ3ZCLGNBQWMsUUFBUSxDQUFDO0FBQ3ZCLGNBQWMsUUFBUSxDQUFDO0FBQ3ZCLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYyxTQUFTLENBQUM7QUFDeEIsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQ2pELE9BQU8sRUFFTCxHQUFHLEVBQ0gsUUFBUSxFQUNSLGlCQUFpQixFQUNqQixZQUFZLEVBQ1osMkJBQTJCLEVBQzNCLFdBQVcsRUFDWCxhQUFhLEVBQ2IsaUJBQWlCLEVBQ2pCLGVBQWUsR0FDaEIsTUFBTSxrQkFBa0IsQ0FBQztBQUMxQixjQUFjLFdBQVcsQ0FBQztBQUMxQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsYUFBYSxDQUFDO0FBQzVCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsUUFBUSxDQUFDO0FBQ3ZCLGNBQWMsY0FBYyxDQUFDO0FBQzdCLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsU0FBUyxDQUFDO0FBQ3hCLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYyxRQUFRLENBQUM7QUFDdkIsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxXQUFXLENBQUM7QUFDMUIsY0FBYyxlQUFlLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2FjY29yZGlvbic7XG5leHBvcnQgKiBmcm9tICcuL2FuY2hvcic7XG5leHBvcnQgKiBmcm9tICcuL2F1dG9jb21wbGV0ZSc7XG5leHBvcnQgKiBmcm9tICcuL2JhY2stdG9wJztcbmV4cG9ydCAqIGZyb20gJy4vYnJlYWRjcnVtYic7XG5leHBvcnQgKiBmcm9tICcuL2J1dHRvbic7XG5leHBvcnQgKiBmcm9tICcuL2NhcmQnO1xuZXhwb3J0ICogZnJvbSAnLi9jaGVja2JveCc7XG5leHBvcnQgKiBmcm9tICcuL2NvbG9yLXBpY2tlcic7XG5leHBvcnQgKiBmcm9tICcuL2RhdGUtcGlja2VyJztcbmV4cG9ydCAqIGZyb20gJy4vZGlhbG9nJztcbmV4cG9ydCAqIGZyb20gJy4vZHJhd2VyJztcbmV4cG9ydCAqIGZyb20gJy4vZHJvcGRvd24nO1xuZXhwb3J0ICogZnJvbSAnLi9lZGl0YWJsZSc7XG5leHBvcnQgKiBmcm9tICcuL2Zvcm0nO1xuZXhwb3J0ICogZnJvbSAnLi9pMThuJztcbmV4cG9ydCAqIGZyb20gJy4vaWNvbic7XG5leHBvcnQgKiBmcm9tICcuL2lubGluZS1hbGVydCc7XG5leHBvcnQgKiBmcm9tICcuL2lucHV0JztcbmV4cG9ydCB7IENvbXBvbmVudFNpemUgfSBmcm9tICcuL2ludGVybmFsL3R5cGVzJztcbmV4cG9ydCB7XG4gIEF0dHJCb29sZWFuLFxuICBCZW0sXG4gIGJ1aWxkQmVtLFxuICBjb2VyY2VBdHRyQm9vbGVhbixcbiAgY29lcmNlU3RyaW5nLFxuICBnZXRDb21wYXRpYmxlU3R5bGVzUmVuZGVyZXIsXG4gIGhhbmRsZVBpeGVsLFxuICBpc1RlbXBsYXRlUmVmLFxuICBvYnNlcnZlTXV0YXRpb25PbixcbiAgb2JzZXJ2ZVJlc2l6ZU9uLFxufSBmcm9tICcuL2ludGVybmFsL3V0aWxzJztcbmV4cG9ydCAqIGZyb20gJy4vbWVzc2FnZSc7XG5leHBvcnQgKiBmcm9tICcuL25vdGlmaWNhdGlvbic7XG5leHBvcnQgKiBmcm9tICcuL3BhZ2luYXRvcic7XG5leHBvcnQgKiBmcm9tICcuL3JhZGlvJztcbmV4cG9ydCAqIGZyb20gJy4vc2Nyb2xsaW5nJztcbmV4cG9ydCAqIGZyb20gJy4vc2VsZWN0JztcbmV4cG9ydCAqIGZyb20gJy4vc29ydCc7XG5leHBvcnQgKiBmcm9tICcuL3N0YXR1cy1iYXInO1xuZXhwb3J0ICogZnJvbSAnLi9zdGVwcyc7XG5leHBvcnQgKiBmcm9tICcuL3N3aXRjaCc7XG5leHBvcnQgKiBmcm9tICcuL3RhYmxlJztcbmV4cG9ydCAqIGZyb20gJy4vdGFibGUtb2YtY29udGVudHMnO1xuZXhwb3J0ICogZnJvbSAnLi90YWJzJztcbmV4cG9ydCAqIGZyb20gJy4vdGFnJztcbmV4cG9ydCAqIGZyb20gJy4vdGhlbWUnO1xuZXhwb3J0ICogZnJvbSAnLi90aW1lLXBpY2tlcic7XG5leHBvcnQgKiBmcm9tICcuL3Rvb2x0aXAnO1xuZXhwb3J0ICogZnJvbSAnLi90cmVlLXNlbGVjdCc7XG4iXX0=
|
package/fesm2022/alauda-ui.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CdkAccordion, CdkAccordionItem, CdkAccordionModule } from '@angular/cdk/accordion';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { Component, ViewEncapsulation, ChangeDetectionStrategy, SkipSelf, Optional, Input, HostBinding, booleanAttribute, TemplateRef, Injectable, Pipe, Inject, NgModule, Directive, ContentChild, EventEmitter, Output, ElementRef, ContentChildren, ChangeDetectorRef, forwardRef, ViewChild, HostListener, Host, InjectionToken, signal, inject, computed, isDevMode, numberAttribute, Injector, Type, ViewContainerRef, ViewChildren, Renderer2 } from '@angular/core';
|
|
3
|
+
import { Component, ViewEncapsulation, ChangeDetectionStrategy, SkipSelf, Optional, Input, HostBinding, booleanAttribute, TemplateRef, Injectable, Pipe, Inject, NgModule, Directive, ContentChild, EventEmitter, Output, ElementRef, ContentChildren, ChangeDetectorRef, forwardRef, ViewChild, HostListener, Host, InjectionToken, signal, inject, computed, isDevMode, numberAttribute, Injector, Type, effect, ViewContainerRef, ViewChildren, Renderer2 } from '@angular/core';
|
|
4
4
|
import { DOCUMENT, NgIf, NgClass, CommonModule, NgTemplateOutlet, NgFor, AsyncPipe, DecimalPipe, NgStyle, DatePipe, NgComponentOutlet, NgSwitch, NgSwitchCase, NgSwitchDefault } from '@angular/common';
|
|
5
5
|
import { Observable, ReplaySubject, share, startWith, map, distinctUntilChanged, Subject, takeUntil, filter, take, merge as merge$1, fromEvent, combineLatest, debounceTime, switchMap, of, EMPTY, tap, BehaviorSubject, withLatestFrom, delay, first, throttleTime, firstValueFrom, NEVER, observeOn, animationFrameScheduler, repeat, takeWhile, endWith, Subscription } from 'rxjs';
|
|
6
6
|
import * as i1 from '@angular/common/http';
|
|
@@ -987,12 +987,12 @@ const getAnchorTreeItems = (items, level = 0) => {
|
|
|
987
987
|
return treeItems;
|
|
988
988
|
};
|
|
989
989
|
|
|
990
|
-
const bem$
|
|
990
|
+
const bem$6 = buildBem('aui-anchor');
|
|
991
991
|
class AnchorTreeComponent extends AnchorDirectiveChild {
|
|
992
992
|
constructor() {
|
|
993
993
|
super(...arguments);
|
|
994
994
|
this.activeIdChange = new EventEmitter();
|
|
995
|
-
this.bem = bem$
|
|
995
|
+
this.bem = bem$6;
|
|
996
996
|
this.isTemplateRef = isTemplateRef;
|
|
997
997
|
this.depose$$ = new Subject();
|
|
998
998
|
}
|
|
@@ -1066,7 +1066,7 @@ class AnchorComponent extends AnchorDirectiveChild {
|
|
|
1066
1066
|
super(injector);
|
|
1067
1067
|
this.injector = injector;
|
|
1068
1068
|
this.cdr = cdr;
|
|
1069
|
-
this.bem = bem$
|
|
1069
|
+
this.bem = bem$6;
|
|
1070
1070
|
this.destroy$$ = new Subject();
|
|
1071
1071
|
}
|
|
1072
1072
|
ngAfterViewInit() {
|
|
@@ -3715,7 +3715,7 @@ function isTimePickerModel(item) {
|
|
|
3715
3715
|
}
|
|
3716
3716
|
|
|
3717
3717
|
const TIME_PICKER_COLUMN_WIDTH = 80;
|
|
3718
|
-
const bem$
|
|
3718
|
+
const bem$5 = buildBem('aui-time-picker-panel');
|
|
3719
3719
|
class TimePickerPanelComponent extends CommonFormControl {
|
|
3720
3720
|
set format(value) {
|
|
3721
3721
|
if (value != null) {
|
|
@@ -3753,7 +3753,7 @@ class TimePickerPanelComponent extends CommonFormControl {
|
|
|
3753
3753
|
this.SECOND_ITEM_CONFIG = SECOND_ITEMS;
|
|
3754
3754
|
this.CONTROL_ITEM_HEIGHT = CONTROL_ITEM_HEIGHT;
|
|
3755
3755
|
this.ComponentSize = ComponentSize;
|
|
3756
|
-
this.bem = bem$
|
|
3756
|
+
this.bem = bem$5;
|
|
3757
3757
|
this.enabledColumns = 0;
|
|
3758
3758
|
this.firstScrolled = false;
|
|
3759
3759
|
this.model$.subscribe(_ => {
|
|
@@ -5047,7 +5047,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
|
|
|
5047
5047
|
type: Output
|
|
5048
5048
|
}] } });
|
|
5049
5049
|
|
|
5050
|
-
const bem$
|
|
5050
|
+
const bem$4 = buildBem('aui-calendar-header');
|
|
5051
5051
|
class CalendarHeaderComponent {
|
|
5052
5052
|
get dateNavRange() {
|
|
5053
5053
|
return this.$$dateNavRange();
|
|
@@ -5079,7 +5079,7 @@ class CalendarHeaderComponent {
|
|
|
5079
5079
|
this.anchorChange = new EventEmitter();
|
|
5080
5080
|
this.$$dateNavRange = signal(DateNavRange.Month);
|
|
5081
5081
|
this.$$anchor = signal(dayjs());
|
|
5082
|
-
this.bem = bem$
|
|
5082
|
+
this.bem = bem$4;
|
|
5083
5083
|
this.DateNavRange = DateNavRange;
|
|
5084
5084
|
this.$monthBeforeYear = this.i18nService.$monthBeforeYear;
|
|
5085
5085
|
this.$headerRange = computed(() => {
|
|
@@ -5168,7 +5168,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
|
|
|
5168
5168
|
}] } });
|
|
5169
5169
|
|
|
5170
5170
|
dayjs.extend(isBetween);
|
|
5171
|
-
const bem$
|
|
5171
|
+
const bem$3 = buildBem('aui-picker-panel');
|
|
5172
5172
|
class PickerPanelComponent {
|
|
5173
5173
|
set weekStartDay(day) {
|
|
5174
5174
|
const normalized = Math.max(Math.min(Math.round(day), 6), 0);
|
|
@@ -5191,7 +5191,7 @@ class PickerPanelComponent {
|
|
|
5191
5191
|
this._weekStartDay = 0;
|
|
5192
5192
|
this.select = new EventEmitter();
|
|
5193
5193
|
this.hovered = new EventEmitter();
|
|
5194
|
-
this.bem = bem$
|
|
5194
|
+
this.bem = bem$3;
|
|
5195
5195
|
this.DateNavRange = DateNavRange;
|
|
5196
5196
|
this.weekDefs = [
|
|
5197
5197
|
'sunday',
|
|
@@ -5464,7 +5464,7 @@ function combineDisabledTimeFn(...disabledFnList) {
|
|
|
5464
5464
|
});
|
|
5465
5465
|
}
|
|
5466
5466
|
|
|
5467
|
-
const bem$
|
|
5467
|
+
const bem$2 = buildBem('aui-date-range-picker-panel');
|
|
5468
5468
|
class DateRangePickerPanelComponent extends CommonFormControl {
|
|
5469
5469
|
constructor() {
|
|
5470
5470
|
super(...arguments);
|
|
@@ -5479,7 +5479,7 @@ class DateRangePickerPanelComponent extends CommonFormControl {
|
|
|
5479
5479
|
this.weekStartDay = 0;
|
|
5480
5480
|
this.clear = new EventEmitter();
|
|
5481
5481
|
this.confirm = new EventEmitter();
|
|
5482
|
-
this.bem = bem$
|
|
5482
|
+
this.bem = bem$2;
|
|
5483
5483
|
this.Side = Side;
|
|
5484
5484
|
this.DatePickerType = DatePickerType;
|
|
5485
5485
|
this.leftDateRange = DateNavRange.Month;
|
|
@@ -5666,7 +5666,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
|
|
|
5666
5666
|
type: Output
|
|
5667
5667
|
}] } });
|
|
5668
5668
|
|
|
5669
|
-
const bem = buildBem('aui-date-picker-trigger');
|
|
5669
|
+
const bem$1 = buildBem('aui-date-picker-trigger');
|
|
5670
5670
|
class DatePickerTriggerComponent {
|
|
5671
5671
|
get value() {
|
|
5672
5672
|
return this.$$value();
|
|
@@ -5721,7 +5721,7 @@ class DatePickerTriggerComponent {
|
|
|
5721
5721
|
this.leftFocus = false;
|
|
5722
5722
|
this.rightFocus = false;
|
|
5723
5723
|
this.hovered = false;
|
|
5724
|
-
this.bem = bem;
|
|
5724
|
+
this.bem = bem$1;
|
|
5725
5725
|
this.i18nService = inject(I18nService);
|
|
5726
5726
|
this.$$value = signal(null);
|
|
5727
5727
|
this.$$format = signal(null);
|
|
@@ -7383,6 +7383,108 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
|
|
|
7383
7383
|
}]
|
|
7384
7384
|
}] });
|
|
7385
7385
|
|
|
7386
|
+
class EditableViewerDirective {
|
|
7387
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableViewerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
7388
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: EditableViewerDirective, isStandalone: true, selector: "*[auiEditableViewer]", ngImport: i0 }); }
|
|
7389
|
+
}
|
|
7390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableViewerDirective, decorators: [{
|
|
7391
|
+
type: Directive,
|
|
7392
|
+
args: [{
|
|
7393
|
+
selector: '*[auiEditableViewer]',
|
|
7394
|
+
standalone: true,
|
|
7395
|
+
}]
|
|
7396
|
+
}] });
|
|
7397
|
+
class EditableEditorDirective {
|
|
7398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableEditorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
7399
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: EditableEditorDirective, isStandalone: true, selector: "*[auiEditableEditor]", ngImport: i0 }); }
|
|
7400
|
+
}
|
|
7401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableEditorDirective, decorators: [{
|
|
7402
|
+
type: Directive,
|
|
7403
|
+
args: [{
|
|
7404
|
+
selector: '*[auiEditableEditor]',
|
|
7405
|
+
standalone: true,
|
|
7406
|
+
}]
|
|
7407
|
+
}] });
|
|
7408
|
+
|
|
7409
|
+
var EditableMode;
|
|
7410
|
+
(function (EditableMode) {
|
|
7411
|
+
EditableMode["View"] = "view";
|
|
7412
|
+
EditableMode["Edit"] = "edit";
|
|
7413
|
+
})(EditableMode || (EditableMode = {}));
|
|
7414
|
+
|
|
7415
|
+
const bem = buildBem('aui-editable');
|
|
7416
|
+
class EditableComponent {
|
|
7417
|
+
constructor() {
|
|
7418
|
+
this.save = new EventEmitter();
|
|
7419
|
+
this.cancel = new EventEmitter();
|
|
7420
|
+
this.modeChange = new EventEmitter();
|
|
7421
|
+
this.EditableMode = EditableMode;
|
|
7422
|
+
this.bem = bem;
|
|
7423
|
+
this.$$mode = signal(EditableMode.View);
|
|
7424
|
+
effect(() => {
|
|
7425
|
+
this.modeChange.emit(this.$$mode());
|
|
7426
|
+
});
|
|
7427
|
+
}
|
|
7428
|
+
saveEdit() {
|
|
7429
|
+
this.$$mode.set(EditableMode.View);
|
|
7430
|
+
this.save.emit();
|
|
7431
|
+
}
|
|
7432
|
+
cancelEdit() {
|
|
7433
|
+
this.$$mode.set(EditableMode.View);
|
|
7434
|
+
this.cancel.emit();
|
|
7435
|
+
}
|
|
7436
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7437
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.3", type: EditableComponent, isStandalone: true, selector: "aui-editable", outputs: { save: "save", cancel: "cancel", modeChange: "modeChange" }, queries: [{ propertyName: "viewer", first: true, predicate: EditableViewerDirective, descendants: true, read: TemplateRef }, { propertyName: "editor", first: true, predicate: EditableEditorDirective, descendants: true, read: TemplateRef }], ngImport: i0, template: "<div [class]=\"bem.block()\">\n <div\n [class]=\"bem.element('viewer-container')\"\n *ngIf=\"$$mode() === EditableMode.View\"\n >\n <ng-container [ngTemplateOutlet]=\"viewer\"> </ng-container>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"$$mode.set(EditableMode.Edit)\"\n >\n <aui-icon icon=\"pencil\"></aui-icon>\n </button>\n </div>\n <ng-container *ngIf=\"$$mode() === EditableMode.Edit\">\n <div [class]=\"bem.element('editor-container')\">\n <ng-container [ngTemplateOutlet]=\"editor\"> </ng-container>\n\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"saveEdit()\"\n >\n <aui-icon icon=\"check\"></aui-icon>\n </button>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"cancelEdit()\"\n >\n <aui-icon icon=\"xmark\"></aui-icon>\n </button>\n </div>\n </ng-container>\n</div>\n", styles: [".aui-editable .aui-button--text{color:rgb(var(--aui-color-main-text))}.aui-editable .aui-button--text:first-of-type{margin-left:8px}.aui-editable .aui-button--text:hover{color:rgb(var(--aui-color-primary))}.aui-editable__view-container,.aui-editable__editor-container{display:flex;align-items:center}\n"], dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: IconComponent, selector: "aui-icon", inputs: ["icon", "light", "dark", "link", "margin", "size", "color", "background", "backgroundColor"] }, { kind: "ngmodule", type: ButtonModule }, { kind: "component", type: ButtonComponent, selector: "button[aui-button]", inputs: ["aui-button", "size", "plain", "loading", "round", "square"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7438
|
+
}
|
|
7439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableComponent, decorators: [{
|
|
7440
|
+
type: Component,
|
|
7441
|
+
args: [{ selector: 'aui-editable', standalone: true, imports: [
|
|
7442
|
+
NgIf,
|
|
7443
|
+
NgFor,
|
|
7444
|
+
AsyncPipe,
|
|
7445
|
+
NgTemplateOutlet,
|
|
7446
|
+
IconComponent,
|
|
7447
|
+
ButtonModule,
|
|
7448
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div [class]=\"bem.block()\">\n <div\n [class]=\"bem.element('viewer-container')\"\n *ngIf=\"$$mode() === EditableMode.View\"\n >\n <ng-container [ngTemplateOutlet]=\"viewer\"> </ng-container>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"$$mode.set(EditableMode.Edit)\"\n >\n <aui-icon icon=\"pencil\"></aui-icon>\n </button>\n </div>\n <ng-container *ngIf=\"$$mode() === EditableMode.Edit\">\n <div [class]=\"bem.element('editor-container')\">\n <ng-container [ngTemplateOutlet]=\"editor\"> </ng-container>\n\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"saveEdit()\"\n >\n <aui-icon icon=\"check\"></aui-icon>\n </button>\n <button\n aui-button=\"text\"\n [square]=\"true\"\n (click)=\"cancelEdit()\"\n >\n <aui-icon icon=\"xmark\"></aui-icon>\n </button>\n </div>\n </ng-container>\n</div>\n", styles: [".aui-editable .aui-button--text{color:rgb(var(--aui-color-main-text))}.aui-editable .aui-button--text:first-of-type{margin-left:8px}.aui-editable .aui-button--text:hover{color:rgb(var(--aui-color-primary))}.aui-editable__view-container,.aui-editable__editor-container{display:flex;align-items:center}\n"] }]
|
|
7449
|
+
}], ctorParameters: function () { return []; }, propDecorators: { save: [{
|
|
7450
|
+
type: Output
|
|
7451
|
+
}], cancel: [{
|
|
7452
|
+
type: Output
|
|
7453
|
+
}], modeChange: [{
|
|
7454
|
+
type: Output
|
|
7455
|
+
}], viewer: [{
|
|
7456
|
+
type: ContentChild,
|
|
7457
|
+
args: [EditableViewerDirective, { read: TemplateRef }]
|
|
7458
|
+
}], editor: [{
|
|
7459
|
+
type: ContentChild,
|
|
7460
|
+
args: [EditableEditorDirective, { read: TemplateRef }]
|
|
7461
|
+
}] } });
|
|
7462
|
+
|
|
7463
|
+
class EditableModule {
|
|
7464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7465
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, imports: [EditableComponent,
|
|
7466
|
+
EditableViewerDirective,
|
|
7467
|
+
EditableEditorDirective], exports: [EditableComponent,
|
|
7468
|
+
EditableViewerDirective,
|
|
7469
|
+
EditableEditorDirective] }); }
|
|
7470
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, imports: [EditableComponent] }); }
|
|
7471
|
+
}
|
|
7472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: EditableModule, decorators: [{
|
|
7473
|
+
type: NgModule,
|
|
7474
|
+
args: [{
|
|
7475
|
+
imports: [
|
|
7476
|
+
EditableComponent,
|
|
7477
|
+
EditableViewerDirective,
|
|
7478
|
+
EditableEditorDirective,
|
|
7479
|
+
],
|
|
7480
|
+
exports: [
|
|
7481
|
+
EditableComponent,
|
|
7482
|
+
EditableViewerDirective,
|
|
7483
|
+
EditableEditorDirective,
|
|
7484
|
+
],
|
|
7485
|
+
}]
|
|
7486
|
+
}] });
|
|
7487
|
+
|
|
7386
7488
|
class InlineAlertTitleDirective {
|
|
7387
7489
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.3", ngImport: i0, type: InlineAlertTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
7388
7490
|
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.3", type: InlineAlertTitleDirective, isStandalone: true, selector: "[auiInlineAlertTitle]", exportAs: ["auiInlineAlertTitle"], ngImport: i0 }); }
|
|
@@ -12313,5 +12415,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.3", ngImpor
|
|
|
12313
12415
|
}]
|
|
12314
12416
|
}] });
|
|
12315
12417
|
|
|
12316
|
-
export { ACCORDION_MODULE, ANCHOR_MODULE, AUTOCOMPLETE_MODULE, AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, AutosizeDirective, BREADCRUMB_MODULE, BackTopComponent, BackTopModule, BaseDialogConfig, BaseTooltip, Bem, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonModule, ButtonType, CARD_MODULE, CHECKBOX_MODULE, CONTROL_ITEM_HEIGHT, CalendarFooterComponent, CalendarHeaderComponent, CardComponent, CardFooterDirective, CardHeaderDirective, CardModule, CheckTagComponent, CheckboxComponent, CheckboxGroupComponent, CheckboxModule, ColorPickerComponent, ColorPickerModule, CommonFormControl, ComponentSize, ConfirmDialogConfig, ConfirmType, CssVarPipe, CustomAutoCompleteDirective, DATE, DATE_NAV_RANGES, DATE_TYPES, DAY, DAY_PANEL_COLUMN_COUNT, DAY_PANEL_ROW_COUNT, DIALOG_DATA, DISPLAY_DELAY, DateNavRange, DatePickerComponent, DatePickerModule, DatePickerPanelComponent, DatePickerTriggerComponent, DatePickerType, DateRangePickerPanelComponent, DialogCloseDirective, DialogComponent, DialogConfig, DialogContentComponent, DialogFooterComponent, DialogHeaderComponent, DialogModule, DialogRef, DialogService, DialogSize, DrawerComponent, DrawerContentDirective, DrawerFooterDirective, DrawerHeaderDirective, DrawerModule, DrawerRef, DrawerService, DrawerSize, DropdownActiveDirective, DropdownButtonComponent, DropdownDirective, DropdownModule, FORM_MODULE, FixedSizeTableVirtualScrollDirective, FixedSizeTableVirtualScrollStrategy, FixedSizeVirtualScrollDirective, FormDirective, FormItemAddonDirective, FormItemComponent, FormItemControlDirective, FormItemErrorDirective, FormItemHintDirective, FormItemLabelDirective, FormItemWidth, FormModule, HIDDEN_DELAY, HOUR, HOUR_ITEMS, I18NInterfaceToken, I18nModule, I18nPipe, I18nService, INLINE_ALERT_MODULE, INPUT_ERROR_KEY, INPUT_GROUP_MODULE, IconComponent, IconModule, IconRegisterService, IncludesDirective, InlineAlertComponent, InlineAlertModule, InlineAlertTitleDirective, InlineAlertType, InputAddonAfterDirective, InputAddonBeforeDirective, InputComponent, InputGroupComponent, InputModule, InputPrefixDirective, InputSuffixDirective, LabelPosition, MESSAGE_CONFIG, MESSAGE_DEFAULT_CONFIG, MINUTE, MINUTE_ITEMS, MONTH, MONTH_PANEL_COLUMN_COUNT, MONTH_PANEL_ROW_COUNT, MenuComponent, MenuGroupComponent, MenuGroupTitleDirective, MenuItemComponent, MenuItemType, MessageConfig, MessageModule, MessageService, MessageType, MultiSelectComponent, NOTIFICATION_CONFIG, NOTIFICATION_DEFAULT_CONFIG, NUMBER_INPUT_MODULE, NotificationComponent, NotificationModule, NotificationService, NumberInputComponent, OptionComponent, OptionContentDirective, OptionGroupComponent, OptionGroupTitleDirective, OptionPlaceholderComponent, PaginatorComponent, PaginatorIntl, PaginatorModule, PickerPanelComponent, RadioButtonComponent, RadioComponent, RadioGroupComponent, RadioModule, RadioSize, RangePickerComponent, RgbColorPipe, RgbaColorPipe, SECOND, SECOND_ITEMS, SELECT_MODULE, SORT_MODULE, ScrollingModule, SearchComponent, SectionComponent, SectionTitleDirective, SelectAllStatus, SelectComponent, SelectModule, Side, SortDirective, SortHeaderComponent, SortModule, StatusBarComponent, StatusBarModule, StatusBarSize, StatusType, StepState, StepsComponent, StepsModule, SubmenuComponent, SuggestionComponent, SuggestionGroupComponent, SuggestionGroupTitleDirective, SwitchComponent, SwitchModule, TABLE_MODULE, TABLE_OF_CONTENTS_MODULE, TABS_MODULE, TabBodyComponent, TabBodyPortalDirective, TabChangeEvent, TabComponent, TabContentDirective, TabContextService, TabGroupComponent, TabHeaderActiveIndicatorComponent, TabHeaderAddonDirective, TabHeaderComponent, TabLabelDirective, TabLabelWrapperDirective, TabSize, TabTitleDirective, TabType, TableCellDefDirective, TableCellDirective, TableColumnDefDirective, TableColumnResizableDirective, TableComponent, TableExpandButtonCellComponent, TableExpandPanelCellComponent, TableHeaderCellDefDirective, TableHeaderCellDirective, TableHeaderRowComponent, TableHeaderRowDefDirective, TableModule, TableOfContentsModule, TablePlaceholderDefDirective, TablePlaceholderOutletDirective, TableRowComponent, TableRowDefDirective, TableScrollWrapperDirective, TableScrollableDirective, TabsModule, TagComponent, TagModule, TagType, TagsInputComponent, ThemeModule, ThemePickerPipe, ThemeService, TimePickerComponent, TimePickerControlType, TimePickerModule, TimePickerPanelComponent, TocContainerDirective, TocContentDirective, TocLinkDirective, TooltipActiveDirective, TooltipComponent, TooltipCopyDirective, TooltipCopyIntl, TooltipDirective, TooltipModule, TooltipTrigger, TooltipType, TreeNodeComponent, TreeNodePlaceholderComponent, TreeSelectComponent, TreeSelectModule, VirtualForOfDirective, VirtualScrollViewportComponent, YEAR, YEAR_PANEL_COLUMN_COUNT, YEAR_PANEL_ROW_COUNT, _tableVirtualScrollDirectiveStrategyFactory, buildBem, coerceAttrBoolean, coerceString, cssVar, en, getAnchorTreeItems, getCompatibleStylesRenderer, getSortDuplicateSortableIdError, getSortHeaderMissingIdError, getSortHeaderNotContainedWithinSortError, getSortInvalidDirectionError, handlePixel, isTemplateRef, isTimePickerModel, observeMutationOn, observeResizeOn, rgbColor, rgbaColor, zh };
|
|
12418
|
+
export { ACCORDION_MODULE, ANCHOR_MODULE, AUTOCOMPLETE_MODULE, AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, AutosizeDirective, BREADCRUMB_MODULE, BackTopComponent, BackTopModule, BaseDialogConfig, BaseTooltip, Bem, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonModule, ButtonType, CARD_MODULE, CHECKBOX_MODULE, CONTROL_ITEM_HEIGHT, CalendarFooterComponent, CalendarHeaderComponent, CardComponent, CardFooterDirective, CardHeaderDirective, CardModule, CheckTagComponent, CheckboxComponent, CheckboxGroupComponent, CheckboxModule, ColorPickerComponent, ColorPickerModule, CommonFormControl, ComponentSize, ConfirmDialogConfig, ConfirmType, CssVarPipe, CustomAutoCompleteDirective, DATE, DATE_NAV_RANGES, DATE_TYPES, DAY, DAY_PANEL_COLUMN_COUNT, DAY_PANEL_ROW_COUNT, DIALOG_DATA, DISPLAY_DELAY, DateNavRange, DatePickerComponent, DatePickerModule, DatePickerPanelComponent, DatePickerTriggerComponent, DatePickerType, DateRangePickerPanelComponent, DialogCloseDirective, DialogComponent, DialogConfig, DialogContentComponent, DialogFooterComponent, DialogHeaderComponent, DialogModule, DialogRef, DialogService, DialogSize, DrawerComponent, DrawerContentDirective, DrawerFooterDirective, DrawerHeaderDirective, DrawerModule, DrawerRef, DrawerService, DrawerSize, DropdownActiveDirective, DropdownButtonComponent, DropdownDirective, DropdownModule, EditableComponent, EditableEditorDirective, EditableModule, EditableViewerDirective, FORM_MODULE, FixedSizeTableVirtualScrollDirective, FixedSizeTableVirtualScrollStrategy, FixedSizeVirtualScrollDirective, FormDirective, FormItemAddonDirective, FormItemComponent, FormItemControlDirective, FormItemErrorDirective, FormItemHintDirective, FormItemLabelDirective, FormItemWidth, FormModule, HIDDEN_DELAY, HOUR, HOUR_ITEMS, I18NInterfaceToken, I18nModule, I18nPipe, I18nService, INLINE_ALERT_MODULE, INPUT_ERROR_KEY, INPUT_GROUP_MODULE, IconComponent, IconModule, IconRegisterService, IncludesDirective, InlineAlertComponent, InlineAlertModule, InlineAlertTitleDirective, InlineAlertType, InputAddonAfterDirective, InputAddonBeforeDirective, InputComponent, InputGroupComponent, InputModule, InputPrefixDirective, InputSuffixDirective, LabelPosition, MESSAGE_CONFIG, MESSAGE_DEFAULT_CONFIG, MINUTE, MINUTE_ITEMS, MONTH, MONTH_PANEL_COLUMN_COUNT, MONTH_PANEL_ROW_COUNT, MenuComponent, MenuGroupComponent, MenuGroupTitleDirective, MenuItemComponent, MenuItemType, MessageConfig, MessageModule, MessageService, MessageType, MultiSelectComponent, NOTIFICATION_CONFIG, NOTIFICATION_DEFAULT_CONFIG, NUMBER_INPUT_MODULE, NotificationComponent, NotificationModule, NotificationService, NumberInputComponent, OptionComponent, OptionContentDirective, OptionGroupComponent, OptionGroupTitleDirective, OptionPlaceholderComponent, PaginatorComponent, PaginatorIntl, PaginatorModule, PickerPanelComponent, RadioButtonComponent, RadioComponent, RadioGroupComponent, RadioModule, RadioSize, RangePickerComponent, RgbColorPipe, RgbaColorPipe, SECOND, SECOND_ITEMS, SELECT_MODULE, SORT_MODULE, ScrollingModule, SearchComponent, SectionComponent, SectionTitleDirective, SelectAllStatus, SelectComponent, SelectModule, Side, SortDirective, SortHeaderComponent, SortModule, StatusBarComponent, StatusBarModule, StatusBarSize, StatusType, StepState, StepsComponent, StepsModule, SubmenuComponent, SuggestionComponent, SuggestionGroupComponent, SuggestionGroupTitleDirective, SwitchComponent, SwitchModule, TABLE_MODULE, TABLE_OF_CONTENTS_MODULE, TABS_MODULE, TabBodyComponent, TabBodyPortalDirective, TabChangeEvent, TabComponent, TabContentDirective, TabContextService, TabGroupComponent, TabHeaderActiveIndicatorComponent, TabHeaderAddonDirective, TabHeaderComponent, TabLabelDirective, TabLabelWrapperDirective, TabSize, TabTitleDirective, TabType, TableCellDefDirective, TableCellDirective, TableColumnDefDirective, TableColumnResizableDirective, TableComponent, TableExpandButtonCellComponent, TableExpandPanelCellComponent, TableHeaderCellDefDirective, TableHeaderCellDirective, TableHeaderRowComponent, TableHeaderRowDefDirective, TableModule, TableOfContentsModule, TablePlaceholderDefDirective, TablePlaceholderOutletDirective, TableRowComponent, TableRowDefDirective, TableScrollWrapperDirective, TableScrollableDirective, TabsModule, TagComponent, TagModule, TagType, TagsInputComponent, ThemeModule, ThemePickerPipe, ThemeService, TimePickerComponent, TimePickerControlType, TimePickerModule, TimePickerPanelComponent, TocContainerDirective, TocContentDirective, TocLinkDirective, TooltipActiveDirective, TooltipComponent, TooltipCopyDirective, TooltipCopyIntl, TooltipDirective, TooltipModule, TooltipTrigger, TooltipType, TreeNodeComponent, TreeNodePlaceholderComponent, TreeSelectComponent, TreeSelectModule, VirtualForOfDirective, VirtualScrollViewportComponent, YEAR, YEAR_PANEL_COLUMN_COUNT, YEAR_PANEL_ROW_COUNT, _tableVirtualScrollDirectiveStrategyFactory, buildBem, coerceAttrBoolean, coerceString, cssVar, en, getAnchorTreeItems, getCompatibleStylesRenderer, getSortDuplicateSortableIdError, getSortHeaderMissingIdError, getSortHeaderNotContainedWithinSortError, getSortInvalidDirectionError, handlePixel, isTemplateRef, isTimePickerModel, observeMutationOn, observeResizeOn, rgbColor, rgbaColor, zh };
|
|
12317
12419
|
//# sourceMappingURL=alauda-ui.mjs.map
|