@alauda/ui 6.5.4-beta.32 → 6.5.4-beta.34
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/esm2020/steps/steps.component.mjs +2 -2
- package/esm2020/table/index.mjs +1 -6
- package/esm2020/table/table.module.mjs +3 -28
- package/esm2020/tree-select/tree-select.component.mjs +2 -2
- package/fesm2015/alauda-ui.mjs +20 -220
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +20 -220
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/table/index.d.ts +0 -5
- package/table/table.module.d.ts +13 -18
- package/esm2020/table/new/table-cell.directive.mjs +0 -30
- package/esm2020/table/new/table-header-cell.directive.mjs +0 -26
- package/esm2020/table/new/table-header-row.component.mjs +0 -26
- package/esm2020/table/new/table-row.component.mjs +0 -44
- package/esm2020/table/new/table.component.mjs +0 -79
- package/table/new/table-cell.directive.d.ts +0 -10
- package/table/new/table-header-cell.directive.d.ts +0 -9
- package/table/new/table-header-row.component.d.ts +0 -7
- package/table/new/table-row.component.d.ts +0 -13
- package/table/new/table.component.d.ts +0 -17
package/fesm2015/alauda-ui.mjs
CHANGED
|
@@ -25,7 +25,7 @@ import isBetween from 'dayjs/plugin/isBetween';
|
|
|
25
25
|
import customParseFormat from 'dayjs/plugin/customParseFormat';
|
|
26
26
|
import * as i2$3 from '@angular/cdk/bidi';
|
|
27
27
|
import * as i1$3 from '@angular/cdk/table';
|
|
28
|
-
import { CdkTable, CDK_TABLE, _COALESCED_STYLE_SCHEDULER, _CoalescedStyleScheduler, CDK_TABLE_TEMPLATE,
|
|
28
|
+
import { CdkTable, CDK_TABLE, _COALESCED_STYLE_SCHEDULER, _CoalescedStyleScheduler, CDK_TABLE_TEMPLATE, CdkCellDef, CdkCell, CdkColumnDef, CdkHeaderCellDef, CdkHeaderCell, CdkHeaderRowDef, CdkHeaderRow, CDK_ROW_TEMPLATE, CdkRowDef, CdkRow, CdkTableModule } from '@angular/cdk/table';
|
|
29
29
|
import * as i6 from '@angular/cdk/observers';
|
|
30
30
|
import { ObserversModule } from '@angular/cdk/observers';
|
|
31
31
|
|
|
@@ -956,12 +956,12 @@ const getAnchorTreeItems = (items, level = 0) => {
|
|
|
956
956
|
return treeItems;
|
|
957
957
|
};
|
|
958
958
|
|
|
959
|
-
const bem$
|
|
959
|
+
const bem$7 = buildBem('aui-anchor');
|
|
960
960
|
class AnchorTreeComponent extends AnchorDirectiveChild {
|
|
961
961
|
constructor() {
|
|
962
962
|
super(...arguments);
|
|
963
963
|
this.activeIdChange = new EventEmitter();
|
|
964
|
-
this.bem = bem$
|
|
964
|
+
this.bem = bem$7;
|
|
965
965
|
this.isTemplateRef = isTemplateRef;
|
|
966
966
|
this.depose$$ = new Subject();
|
|
967
967
|
}
|
|
@@ -1022,7 +1022,7 @@ class AnchorComponent extends AnchorDirectiveChild {
|
|
|
1022
1022
|
super(injector);
|
|
1023
1023
|
this.injector = injector;
|
|
1024
1024
|
this.cdr = cdr;
|
|
1025
|
-
this.bem = bem$
|
|
1025
|
+
this.bem = bem$7;
|
|
1026
1026
|
this.destroy$$ = new Subject();
|
|
1027
1027
|
}
|
|
1028
1028
|
get items() {
|
|
@@ -3323,14 +3323,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
3323
3323
|
}]
|
|
3324
3324
|
}], ctorParameters: function () { return [{ type: I18nService }]; } });
|
|
3325
3325
|
|
|
3326
|
-
const bem$
|
|
3326
|
+
const bem$6 = buildBem('aui-calendar-header');
|
|
3327
3327
|
class CalendarHeaderComponent {
|
|
3328
3328
|
constructor() {
|
|
3329
3329
|
this.dateNavRange = DateNavRange.Month;
|
|
3330
3330
|
this.anchor = dayjs();
|
|
3331
3331
|
this.navRangeChange = new EventEmitter();
|
|
3332
3332
|
this.anchorChange = new EventEmitter();
|
|
3333
|
-
this.bem = bem$
|
|
3333
|
+
this.bem = bem$6;
|
|
3334
3334
|
this.DateNavRange = DateNavRange;
|
|
3335
3335
|
this.clickNav = (range) => {
|
|
3336
3336
|
if (![DateNavRange.Month, DateNavRange.Year].includes(range)) {
|
|
@@ -3417,7 +3417,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
3417
3417
|
}] } });
|
|
3418
3418
|
|
|
3419
3419
|
dayjs.extend(isBetween);
|
|
3420
|
-
const bem$
|
|
3420
|
+
const bem$5 = buildBem('aui-picker-panel');
|
|
3421
3421
|
class PickerPanelComponent {
|
|
3422
3422
|
constructor(cdr) {
|
|
3423
3423
|
this.cdr = cdr;
|
|
@@ -3426,7 +3426,7 @@ class PickerPanelComponent {
|
|
|
3426
3426
|
this._weekStartDay = 0;
|
|
3427
3427
|
this.select = new EventEmitter();
|
|
3428
3428
|
this.hovered = new EventEmitter();
|
|
3429
|
-
this.bem = bem$
|
|
3429
|
+
this.bem = bem$5;
|
|
3430
3430
|
this.DateNavRange = DateNavRange;
|
|
3431
3431
|
this.weekDefs = [
|
|
3432
3432
|
'sunday',
|
|
@@ -3733,7 +3733,7 @@ const SECOND_ITEMS = Array.from({ length: 60 }).map((_, index) => index);
|
|
|
3733
3733
|
const CONTROL_ITEM_HEIGHT = 28;
|
|
3734
3734
|
|
|
3735
3735
|
const TIME_PICKER_COLUMN_WIDTH = 80;
|
|
3736
|
-
const bem$
|
|
3736
|
+
const bem$4 = buildBem('aui-time-picker-panel');
|
|
3737
3737
|
class TimePickerPanelComponent extends CommonFormControl {
|
|
3738
3738
|
constructor(cdr) {
|
|
3739
3739
|
super(cdr);
|
|
@@ -3748,7 +3748,7 @@ class TimePickerPanelComponent extends CommonFormControl {
|
|
|
3748
3748
|
this.SECOND_ITEM_CONFIG = SECOND_ITEMS;
|
|
3749
3749
|
this.CONTROL_ITEM_HEIGHT = CONTROL_ITEM_HEIGHT;
|
|
3750
3750
|
this.ComponentSize = ComponentSize;
|
|
3751
|
-
this.bem = bem$
|
|
3751
|
+
this.bem = bem$4;
|
|
3752
3752
|
this.enabledColumns = 0;
|
|
3753
3753
|
// 用于控制初次滚动,是否展示滚动动画效果
|
|
3754
3754
|
this.firstScrolled = false;
|
|
@@ -4218,7 +4218,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
4218
4218
|
type: Output
|
|
4219
4219
|
}] } });
|
|
4220
4220
|
|
|
4221
|
-
const bem$
|
|
4221
|
+
const bem$3 = buildBem('aui-date-range-picker-panel');
|
|
4222
4222
|
class DateRangePickerPanelComponent extends CommonFormControl {
|
|
4223
4223
|
constructor() {
|
|
4224
4224
|
super(...arguments);
|
|
@@ -4233,7 +4233,7 @@ class DateRangePickerPanelComponent extends CommonFormControl {
|
|
|
4233
4233
|
this.weekStartDay = 0;
|
|
4234
4234
|
this.clear = new EventEmitter();
|
|
4235
4235
|
this.confirm = new EventEmitter();
|
|
4236
|
-
this.bem = bem$
|
|
4236
|
+
this.bem = bem$3;
|
|
4237
4237
|
this.Side = Side;
|
|
4238
4238
|
this.DatePickerType = DatePickerType;
|
|
4239
4239
|
this.leftDateRange = DateNavRange.Month;
|
|
@@ -5312,7 +5312,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
5312
5312
|
}]
|
|
5313
5313
|
}] });
|
|
5314
5314
|
|
|
5315
|
-
const bem$
|
|
5315
|
+
const bem$2 = buildBem('aui-date-picker-trigger');
|
|
5316
5316
|
class DatePickerTriggerComponent {
|
|
5317
5317
|
constructor() {
|
|
5318
5318
|
this.format = 'YYYY-MM-DD';
|
|
@@ -5324,7 +5324,7 @@ class DatePickerTriggerComponent {
|
|
|
5324
5324
|
this.leftFocus = false;
|
|
5325
5325
|
this.rightFocus = false;
|
|
5326
5326
|
this.hovered = false;
|
|
5327
|
-
this.bem = bem$
|
|
5327
|
+
this.bem = bem$2;
|
|
5328
5328
|
this.focusInput = this.focusInput.bind(this);
|
|
5329
5329
|
}
|
|
5330
5330
|
get isFocus() {
|
|
@@ -8861,186 +8861,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
8861
8861
|
}]
|
|
8862
8862
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ElementRef }]; } });
|
|
8863
8863
|
|
|
8864
|
-
class NewTableComponent extends CdkTable {
|
|
8865
|
-
// FIXME: workaround to override because it will break constructor if it is field, but why MatTable works?
|
|
8866
|
-
// @ts-ignore
|
|
8867
|
-
get stickyCssClass() {
|
|
8868
|
-
return 'aui-table-sticky';
|
|
8869
|
-
}
|
|
8870
|
-
set stickyCssClass(_) {
|
|
8871
|
-
// nothing
|
|
8872
|
-
}
|
|
8873
|
-
ngAfterContentInit() {
|
|
8874
|
-
this._createPlaceholder();
|
|
8875
|
-
}
|
|
8876
|
-
_createPlaceholder() {
|
|
8877
|
-
const footerRow = this._placeholderDef;
|
|
8878
|
-
if (!this._placeholderDef) {
|
|
8879
|
-
return;
|
|
8880
|
-
}
|
|
8881
|
-
const container = this._placeholderOutlet.viewContainer;
|
|
8882
|
-
container.createEmbeddedView(footerRow.templateRef);
|
|
8883
|
-
}
|
|
8884
|
-
_clearPlaceholder() {
|
|
8885
|
-
this._placeholderOutlet.viewContainer.clear();
|
|
8886
|
-
}
|
|
8887
|
-
ngOnDestroy() {
|
|
8888
|
-
super.ngOnDestroy();
|
|
8889
|
-
this._clearPlaceholder();
|
|
8890
|
-
}
|
|
8891
|
-
}
|
|
8892
|
-
NewTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
8893
|
-
NewTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: NewTableComponent, selector: "table[auiTable]", inputs: { enableScrollWrapper: "enableScrollWrapper" }, host: { classAttribute: "aui-table" }, providers: [
|
|
8894
|
-
{
|
|
8895
|
-
provide: CDK_TABLE,
|
|
8896
|
-
useExisting: NewTableComponent,
|
|
8897
|
-
},
|
|
8898
|
-
{
|
|
8899
|
-
provide: _VIEW_REPEATER_STRATEGY,
|
|
8900
|
-
useClass: _DisposeViewRepeaterStrategy,
|
|
8901
|
-
},
|
|
8902
|
-
{
|
|
8903
|
-
provide: _COALESCED_STYLE_SCHEDULER,
|
|
8904
|
-
useClass: _CoalescedStyleScheduler,
|
|
8905
|
-
},
|
|
8906
|
-
], queries: [{ propertyName: "_placeholderDef", first: true, predicate: TablePlaceholderDefDirective, descendants: true, static: true }], viewQueries: [{ propertyName: "_placeholderOutlet", first: true, predicate: TablePlaceholderOutletDirective, descendants: true, static: true }], exportAs: ["auiTable"], usesInheritance: true, ngImport: i0, template: "\n <ng-content select=\"caption\"></ng-content>\n <ng-content select=\"colgroup, col\"></ng-content>\n <ng-container headerRowOutlet></ng-container>\n <ng-container rowOutlet></ng-container>\n <ng-container noDataRowOutlet></ng-container>\n <ng-container footerRowOutlet></ng-container>\n<ng-container auiTablePlaceholderOutlet></ng-container>", isInline: true, styles: [".aui-table{display:block;padding:0 12px 12px;font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m);color:rgb(var(--aui-color-main-text));background-color:rgb(var(--aui-color-n-9));border-radius:var(--aui-border-radius-l)}.aui-table__row,.aui-table__header-row{display:flex;align-items:center}.aui-table__row.hasPanel,.aui-table__header-row.hasPanel{flex-wrap:wrap}.aui-table__header-row+.aui-table__row{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row{position:relative;border-width:1px;border-style:solid;border-color:rgb(var(--aui-color-n-8));border-bottom-width:0;background-color:rgb(var(--aui-color-n-10));padding:0 9px;min-height:58px;box-sizing:content-box}.aui-table__row:first-child{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row:last-child{border-bottom-width:1px;min-height:58px;border-bottom-left-radius:var(--aui-border-radius-l);border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__row.isDisabled:before{content:\"\";z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgb(var(--aui-color-n-10));opacity:.7;cursor:not-allowed}.aui-table__header-row{background-color:rgb(var(--aui-color-n-9));padding:0 10px}.aui-table__cell,.aui-table__header-cell{display:flex;align-items:center;flex:1}.aui-table__cell{padding:15px 10px;background-color:rgb(var(--aui-color-n-10));overflow:hidden}.aui-table__cell--column{flex-direction:column;justify-content:center;align-items:flex-start}.aui-table__header-cell{padding:12px 10px;font-weight:var(--aui-font-weight-bold);background-color:rgb(var(--aui-color-n-9));white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aui-table__column-expand-button{display:flex;align-items:center;max-width:calc(10px * 2 + var(--aui-icon-size-m))}.aui-table__column-expand-button.aui-table__cell{height:58px}.aui-table__column-expand-button .aui-expand-button{display:inline-flex;justify-content:center;align-items:center;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m);font-size:var(--aui-icon-size-m);line-height:var(--aui-icon-size-m);color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));border-radius:50%;border:none;cursor:pointer;transition:transform .1s ease-in-out}.aui-table__column-expand-button .aui-expand-button aui-icon{display:block;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m)}.aui-table__column-expand-button .aui-expand-button:hover{background-color:rgb(var(--aui-color-p-7))}.aui-table__column-expand-button .aui-expand-button:active{background-color:rgb(var(--aui-color-p-5))}.aui-table__column-expand-button .aui-expand-button.isExpanded{transform:rotate(90deg);color:#fff;background-color:rgb(var(--aui-color-primary))}.aui-table__column-expand-button .aui-expand-button.isExpanded:hover{background-color:rgb(var(--aui-color-p-1))}.aui-table__column-expand-button .aui-expand-button.isExpanded:active{background-color:rgb(var(--aui-color-p-0))}.aui-table__column-expand-button .aui-expand-button[disabled],.aui-table__column-expand-button .aui-expand-button.isExpanded[disabled]{background-color:rgb(var(--aui-color-n-8));color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-table__column-expand-panel{margin-top:-6px}.aui-table__column-expand-panel.aui-table__header-cell{display:none}.aui-table__column-expand-panel.aui-table__cell{width:100%;flex-shrink:0;flex-basis:100%;padding:0 10px;overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel{width:100%;border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel-content.hasBackground{padding:16px;background-color:rgb(var(--aui-color-n-9))}table.aui-table{display:table;width:100%;border-spacing:0;border-collapse:separate}table.aui-table .aui-table__row,table.aui-table .aui-table__header-row{display:table-row}table.aui-table .aui-table__cell,table.aui-table .aui-table__header-cell{display:table-cell}table.aui-table .aui-table__cell{border-bottom-width:1px;border-bottom-style:solid;border-color:rgb(var(--aui-color-n-8))}table.aui-table tbody tr:first-child td{border-top-width:1px;border-top-style:solid}table.aui-table tbody tr:first-child td:first-child{border-top-left-radius:var(--aui-border-radius-l)}table.aui-table tbody tr:first-child td:last-child{border-top-right-radius:var(--aui-border-radius-l)}table.aui-table tbody tr td:first-child{border-left-width:1px;border-left-style:solid}table.aui-table tbody tr td:last-child{border-right-width:1px;border-right-style:solid}table.aui-table tbody tr:last-child td:first-child{border-bottom-left-radius:var(--aui-border-radius-l)}table.aui-table tbody tr:last-child td:last-child{border-bottom-right-radius:var(--aui-border-radius-l)}table.aui-table tbody td{vertical-align:middle}table.aui-table thead th{text-align:left}table.aui-table [rowspan=\"0\"]{display:none}\n", ".aui-table__scroll-wrapper{display:flex;flex-direction:column;max-height:100%;overflow:hidden;background-color:rgb(var(--aui-color-n-9));padding:0 12px 12px;border-radius:var(--aui-border-radius-l)}.aui-table__scroll-wrapper::-webkit-scrollbar{width:4px;height:4px}.aui-table__scroll-wrapper::-webkit-scrollbar-thumb{border-radius:2px;background-color:rgba(var(--aui-color-n-1),.2)}.aui-table__scroll-wrapper::-webkit-scrollbar-corner{background-color:transparent}.aui-table__scroll-wrapper .aui-table{padding:0;border-radius:0}.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableTopShadow:before,.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableBottomShadow:after{transform:none;width:100%;left:0}.aui-table__scroll-shadow.aui-table{overflow:auto}.aui-table__scroll-shadow.aui-table::-webkit-scrollbar{width:4px;height:4px}.aui-table__scroll-shadow.aui-table::-webkit-scrollbar-thumb{border-radius:2px;background-color:rgba(var(--aui-color-n-1),.2)}.aui-table__scroll-shadow.aui-table::-webkit-scrollbar-corner{background-color:transparent}.aui-table__scroll-shadow.hasTableTopShadow:before{content:\"\";position:sticky;display:block;height:16px;margin:-16px -12px 0;z-index:99;top:28px}:root .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}html[aui-theme-mode=light] .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-9),.75)}}html[aui-theme-mode=dark] .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-9),.75)}.aui-table__scroll-shadow.hasTableBottomShadow:after{content:\"\";position:sticky;display:block;height:16px;transform:translateY(12px);z-index:99;bottom:0;margin:-16px -12px 0}:root .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-1),.16) inset}html[aui-theme-mode=light] .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-1),.16) inset}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-9),.75) inset}}html[aui-theme-mode=dark] .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-9),.75) inset}.aui-table__scroll-shadow .aui-table__header-row{margin:0;padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:first-of-type{padding-left:20px}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:last-of-type{padding-right:20px}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:first-of-type{border-top-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:last-of-type{border-top-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row{border:none;padding:0;align-items:stretch;min-height:59px}.aui-table__scroll-shadow .aui-table__row .aui-table__cell{border-width:1px 0;border-style:solid;border-color:rgb(var(--aui-color-n-8))}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:first-of-type{border-left-width:1px;padding-left:19px}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:last-of-type{border-right-width:1px;padding-right:19px}.aui-table__scroll-shadow .aui-table__row:last-child{min-height:60px}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:first-of-type{border-bottom-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:last-of-type{border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:not(.aui-table__scroll-shadow .aui-table__row:last-child) .aui-table__cell{border-bottom-width:0}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{position:absolute;top:0;bottom:-1px;width:20px;transition:box-shadow .3s;content:\"\";pointer-events:none}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{position:absolute;top:0;bottom:-1px;content:\"\";background:linear-gradient(to bottom,rgb(var(--aui-color-n-7)),rgb(var(--aui-color-n-7)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left{padding-right:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after{right:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before{right:10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right{padding-left:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{left:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{left:10px}:root .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}html[aui-theme-mode=light] .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}}html[aui-theme-mode=dark] .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}.aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):before{background:linear-gradient(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}:root .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}html[aui-theme-mode=light] .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}}html[aui-theme-mode=dark] .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}.aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):before{background:linear-gradient(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}\n"], directives: [{ type: i1$3.HeaderRowOutlet, selector: "[headerRowOutlet]" }, { type: i1$3.DataRowOutlet, selector: "[rowOutlet]" }, { type: i1$3.NoDataRowOutlet, selector: "[noDataRowOutlet]" }, { type: i1$3.FooterRowOutlet, selector: "[footerRowOutlet]" }, { type: TablePlaceholderOutletDirective, selector: "[auiTablePlaceholderOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
8907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableComponent, decorators: [{
|
|
8908
|
-
type: Component,
|
|
8909
|
-
args: [{ selector: 'table[auiTable]', exportAs: 'auiTable', encapsulation: ViewEncapsulation.None, template: CDK_TABLE_TEMPLATE +
|
|
8910
|
-
'<ng-container auiTablePlaceholderOutlet></ng-container>', host: {
|
|
8911
|
-
class: 'aui-table',
|
|
8912
|
-
}, preserveWhitespaces: false, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
|
8913
|
-
{
|
|
8914
|
-
provide: CDK_TABLE,
|
|
8915
|
-
useExisting: NewTableComponent,
|
|
8916
|
-
},
|
|
8917
|
-
{
|
|
8918
|
-
provide: _VIEW_REPEATER_STRATEGY,
|
|
8919
|
-
useClass: _DisposeViewRepeaterStrategy,
|
|
8920
|
-
},
|
|
8921
|
-
{
|
|
8922
|
-
provide: _COALESCED_STYLE_SCHEDULER,
|
|
8923
|
-
useClass: _CoalescedStyleScheduler,
|
|
8924
|
-
},
|
|
8925
|
-
], styles: [".aui-table{display:block;padding:0 12px 12px;font-size:var(--aui-font-size-m);line-height:var(--aui-line-height-m);color:rgb(var(--aui-color-main-text));background-color:rgb(var(--aui-color-n-9));border-radius:var(--aui-border-radius-l)}.aui-table__row,.aui-table__header-row{display:flex;align-items:center}.aui-table__row.hasPanel,.aui-table__header-row.hasPanel{flex-wrap:wrap}.aui-table__header-row+.aui-table__row{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row{position:relative;border-width:1px;border-style:solid;border-color:rgb(var(--aui-color-n-8));border-bottom-width:0;background-color:rgb(var(--aui-color-n-10));padding:0 9px;min-height:58px;box-sizing:content-box}.aui-table__row:first-child{border-top-left-radius:var(--aui-border-radius-l);border-top-right-radius:var(--aui-border-radius-l)}.aui-table__row:last-child{border-bottom-width:1px;min-height:58px;border-bottom-left-radius:var(--aui-border-radius-l);border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__row.isDisabled:before{content:\"\";z-index:2;position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgb(var(--aui-color-n-10));opacity:.7;cursor:not-allowed}.aui-table__header-row{background-color:rgb(var(--aui-color-n-9));padding:0 10px}.aui-table__cell,.aui-table__header-cell{display:flex;align-items:center;flex:1}.aui-table__cell{padding:15px 10px;background-color:rgb(var(--aui-color-n-10));overflow:hidden}.aui-table__cell--column{flex-direction:column;justify-content:center;align-items:flex-start}.aui-table__header-cell{padding:12px 10px;font-weight:var(--aui-font-weight-bold);background-color:rgb(var(--aui-color-n-9));white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.aui-table__column-expand-button{display:flex;align-items:center;max-width:calc(10px * 2 + var(--aui-icon-size-m))}.aui-table__column-expand-button.aui-table__cell{height:58px}.aui-table__column-expand-button .aui-expand-button{display:inline-flex;justify-content:center;align-items:center;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m);font-size:var(--aui-icon-size-m);line-height:var(--aui-icon-size-m);color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));border-radius:50%;border:none;cursor:pointer;transition:transform .1s ease-in-out}.aui-table__column-expand-button .aui-expand-button aui-icon{display:block;width:var(--aui-icon-size-m);height:var(--aui-icon-size-m)}.aui-table__column-expand-button .aui-expand-button:hover{background-color:rgb(var(--aui-color-p-7))}.aui-table__column-expand-button .aui-expand-button:active{background-color:rgb(var(--aui-color-p-5))}.aui-table__column-expand-button .aui-expand-button.isExpanded{transform:rotate(90deg);color:#fff;background-color:rgb(var(--aui-color-primary))}.aui-table__column-expand-button .aui-expand-button.isExpanded:hover{background-color:rgb(var(--aui-color-p-1))}.aui-table__column-expand-button .aui-expand-button.isExpanded:active{background-color:rgb(var(--aui-color-p-0))}.aui-table__column-expand-button .aui-expand-button[disabled],.aui-table__column-expand-button .aui-expand-button.isExpanded[disabled]{background-color:rgb(var(--aui-color-n-8));color:rgb(var(--aui-color-n-6));cursor:not-allowed}.aui-table__column-expand-panel{margin-top:-6px}.aui-table__column-expand-panel.aui-table__header-cell{display:none}.aui-table__column-expand-panel.aui-table__cell{width:100%;flex-shrink:0;flex-basis:100%;padding:0 10px;overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel{width:100%;border-radius:var(--aui-border-radius-l);overflow:hidden}.aui-table__column-expand-panel.aui-table__cell .aui-table__cell-expand-panel-content.hasBackground{padding:16px;background-color:rgb(var(--aui-color-n-9))}table.aui-table{display:table;width:100%;border-spacing:0;border-collapse:separate}table.aui-table .aui-table__row,table.aui-table .aui-table__header-row{display:table-row}table.aui-table .aui-table__cell,table.aui-table .aui-table__header-cell{display:table-cell}table.aui-table .aui-table__cell{border-bottom-width:1px;border-bottom-style:solid;border-color:rgb(var(--aui-color-n-8))}table.aui-table tbody tr:first-child td{border-top-width:1px;border-top-style:solid}table.aui-table tbody tr:first-child td:first-child{border-top-left-radius:var(--aui-border-radius-l)}table.aui-table tbody tr:first-child td:last-child{border-top-right-radius:var(--aui-border-radius-l)}table.aui-table tbody tr td:first-child{border-left-width:1px;border-left-style:solid}table.aui-table tbody tr td:last-child{border-right-width:1px;border-right-style:solid}table.aui-table tbody tr:last-child td:first-child{border-bottom-left-radius:var(--aui-border-radius-l)}table.aui-table tbody tr:last-child td:last-child{border-bottom-right-radius:var(--aui-border-radius-l)}table.aui-table tbody td{vertical-align:middle}table.aui-table thead th{text-align:left}table.aui-table [rowspan=\"0\"]{display:none}\n", ".aui-table__scroll-wrapper{display:flex;flex-direction:column;max-height:100%;overflow:hidden;background-color:rgb(var(--aui-color-n-9));padding:0 12px 12px;border-radius:var(--aui-border-radius-l)}.aui-table__scroll-wrapper::-webkit-scrollbar{width:4px;height:4px}.aui-table__scroll-wrapper::-webkit-scrollbar-thumb{border-radius:2px;background-color:rgba(var(--aui-color-n-1),.2)}.aui-table__scroll-wrapper::-webkit-scrollbar-corner{background-color:transparent}.aui-table__scroll-wrapper .aui-table{padding:0;border-radius:0}.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableTopShadow:before,.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableBottomShadow:after{transform:none;width:100%;left:0}.aui-table__scroll-shadow.aui-table{overflow:auto}.aui-table__scroll-shadow.aui-table::-webkit-scrollbar{width:4px;height:4px}.aui-table__scroll-shadow.aui-table::-webkit-scrollbar-thumb{border-radius:2px;background-color:rgba(var(--aui-color-n-1),.2)}.aui-table__scroll-shadow.aui-table::-webkit-scrollbar-corner{background-color:transparent}.aui-table__scroll-shadow.hasTableTopShadow:before{content:\"\";position:sticky;display:block;height:16px;margin:-16px -12px 0;z-index:99;top:28px}:root .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}html[aui-theme-mode=light] .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-9),.75)}}html[aui-theme-mode=dark] .aui-table__scroll-shadow.hasTableTopShadow:before{box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-9),.75)}.aui-table__scroll-shadow.hasTableBottomShadow:after{content:\"\";position:sticky;display:block;height:16px;transform:translateY(12px);z-index:99;bottom:0;margin:-16px -12px 0}:root .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-1),.16) inset}html[aui-theme-mode=light] .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-1),.16) inset}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-9),.75) inset}}html[aui-theme-mode=dark] .aui-table__scroll-shadow.hasTableBottomShadow:after{box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-9),.75) inset}.aui-table__scroll-shadow .aui-table__header-row{margin:0;padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:first-of-type{padding-left:20px}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:last-of-type{padding-right:20px}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:first-of-type{border-top-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__header-row+.aui-table__row .aui-table__cell:last-of-type{border-top-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row{border:none;padding:0;align-items:stretch;min-height:59px}.aui-table__scroll-shadow .aui-table__row .aui-table__cell{border-width:1px 0;border-style:solid;border-color:rgb(var(--aui-color-n-8))}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:first-of-type{border-left-width:1px;padding-left:19px}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:last-of-type{border-right-width:1px;padding-right:19px}.aui-table__scroll-shadow .aui-table__row:last-child{min-height:60px}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:first-of-type{border-bottom-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:last-child .aui-table__cell:last-of-type{border-bottom-right-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:not(.aui-table__scroll-shadow .aui-table__row:last-child) .aui-table__cell{border-bottom-width:0}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{position:absolute;top:0;bottom:-1px;width:20px;transition:box-shadow .3s;content:\"\";pointer-events:none}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before,.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{position:absolute;top:0;bottom:-1px;content:\"\";background:linear-gradient(to bottom,rgb(var(--aui-color-n-7)),rgb(var(--aui-color-n-7)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left{padding-right:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after{right:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before{right:10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right{padding-left:30px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{left:-10px}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{left:10px}:root .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}html[aui-theme-mode=light] .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}}html[aui-theme-mode=dark] .aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):after{box-shadow:inset 8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}.aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):before{background:linear-gradient(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}:root .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}html[aui-theme-mode=light] .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-1),.16)}@media (prefers-color-scheme: dark){html[aui-theme-mode=system] .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}}html[aui-theme-mode=dark] .aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):after{box-shadow:inset -8px 0 4px -4px rgba(var(--aui-color-n-9),.75)}.aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):before{background:linear-gradient(to bottom,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 6px,transparent);width:1px;background-size:100% 14px;height:100%}\n"] }]
|
|
8926
|
-
}], propDecorators: { enableScrollWrapper: [{
|
|
8927
|
-
type: Input
|
|
8928
|
-
}], _placeholderOutlet: [{
|
|
8929
|
-
type: ViewChild,
|
|
8930
|
-
args: [TablePlaceholderOutletDirective, { static: true }]
|
|
8931
|
-
}], _placeholderDef: [{
|
|
8932
|
-
type: ContentChild,
|
|
8933
|
-
args: [TablePlaceholderDefDirective, { static: true }]
|
|
8934
|
-
}] } });
|
|
8935
|
-
|
|
8936
|
-
const bem$3 = buildBem('aui-table');
|
|
8937
|
-
/** Cell template container that adds the right classes and role. */
|
|
8938
|
-
class NewTableCellDirective extends CdkCell {
|
|
8939
|
-
constructor(columnDef, elementRef) {
|
|
8940
|
-
super(columnDef, elementRef);
|
|
8941
|
-
this.direction = 'row';
|
|
8942
|
-
elementRef.nativeElement.classList.add(bem$3.element(`column-${columnDef.cssClassFriendlyName}`));
|
|
8943
|
-
}
|
|
8944
|
-
}
|
|
8945
|
-
NewTableCellDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableCellDirective, deps: [{ token: i1$3.CdkColumnDef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8946
|
-
NewTableCellDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: NewTableCellDirective, selector: "[auiTableCell]", inputs: { direction: "direction" }, host: { attributes: { "role": "gridcell" }, properties: { "class.aui-table__cell--column": "direction === \"column\"" }, classAttribute: "aui-table__cell" }, usesInheritance: true, ngImport: i0 });
|
|
8947
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableCellDirective, decorators: [{
|
|
8948
|
-
type: Directive,
|
|
8949
|
-
args: [{
|
|
8950
|
-
selector: '[auiTableCell]',
|
|
8951
|
-
host: {
|
|
8952
|
-
class: 'aui-table__cell',
|
|
8953
|
-
role: 'gridcell',
|
|
8954
|
-
'[class.aui-table__cell--column]': 'direction === "column"',
|
|
8955
|
-
},
|
|
8956
|
-
}]
|
|
8957
|
-
}], ctorParameters: function () { return [{ type: i1$3.CdkColumnDef }, { type: i0.ElementRef }]; }, propDecorators: { direction: [{
|
|
8958
|
-
type: Input
|
|
8959
|
-
}] } });
|
|
8960
|
-
|
|
8961
|
-
const bem$2 = buildBem('aui-table');
|
|
8962
|
-
/** Header cell template container that adds the right classes and role. */
|
|
8963
|
-
class NewTableHeaderCellDirective extends CdkHeaderCell {
|
|
8964
|
-
constructor(columnDef, elementRef) {
|
|
8965
|
-
super(columnDef, elementRef);
|
|
8966
|
-
elementRef.nativeElement.classList.add(bem$2.element(`column-${columnDef.cssClassFriendlyName}`));
|
|
8967
|
-
}
|
|
8968
|
-
}
|
|
8969
|
-
NewTableHeaderCellDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableHeaderCellDirective, deps: [{ token: i1$3.CdkColumnDef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
8970
|
-
NewTableHeaderCellDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: NewTableHeaderCellDirective, selector: "[auiTableHeaderCell]", host: { attributes: { "role": "columnheader" }, classAttribute: "aui-table__header-cell" }, usesInheritance: true, ngImport: i0 });
|
|
8971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableHeaderCellDirective, decorators: [{
|
|
8972
|
-
type: Directive,
|
|
8973
|
-
args: [{
|
|
8974
|
-
selector: '[auiTableHeaderCell]',
|
|
8975
|
-
host: {
|
|
8976
|
-
class: 'aui-table__header-cell',
|
|
8977
|
-
role: 'columnheader',
|
|
8978
|
-
},
|
|
8979
|
-
}]
|
|
8980
|
-
}], ctorParameters: function () { return [{ type: i1$3.CdkColumnDef }, { type: i0.ElementRef }]; } });
|
|
8981
|
-
|
|
8982
|
-
/** Header template container that contains the cell outlet. Adds the right class and role. */
|
|
8983
|
-
class NewTableHeaderRowComponent extends CdkHeaderRow {
|
|
8984
|
-
}
|
|
8985
|
-
NewTableHeaderRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableHeaderRowComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
8986
|
-
NewTableHeaderRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: NewTableHeaderRowComponent, selector: "tr[auiTableHeaderRow]", host: { attributes: { "role": "row" }, classAttribute: "aui-table__header-row" }, exportAs: ["auiTableHeaderRow"], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, directives: [{ type: i1$3.CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
8987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableHeaderRowComponent, decorators: [{
|
|
8988
|
-
type: Component,
|
|
8989
|
-
args: [{
|
|
8990
|
-
// eslint-disable-next-line @angular-eslint/component-selector
|
|
8991
|
-
selector: 'tr[auiTableHeaderRow]',
|
|
8992
|
-
template: CDK_ROW_TEMPLATE,
|
|
8993
|
-
host: {
|
|
8994
|
-
class: 'aui-table__header-row',
|
|
8995
|
-
role: 'row',
|
|
8996
|
-
},
|
|
8997
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8998
|
-
encapsulation: ViewEncapsulation.None,
|
|
8999
|
-
exportAs: 'auiTableHeaderRow',
|
|
9000
|
-
preserveWhitespaces: false,
|
|
9001
|
-
}]
|
|
9002
|
-
}] });
|
|
9003
|
-
|
|
9004
|
-
/** Data row template container that contains the cell outlet. Adds the right class and role. */
|
|
9005
|
-
class NewTableRowComponent extends CdkRow {
|
|
9006
|
-
constructor(elRef) {
|
|
9007
|
-
super();
|
|
9008
|
-
this.elRef = elRef;
|
|
9009
|
-
this.disabled = false;
|
|
9010
|
-
this.hasPanel = false;
|
|
9011
|
-
}
|
|
9012
|
-
ngAfterContentInit() {
|
|
9013
|
-
const panel = this.elRef.nativeElement.querySelector('[auiTableCell][auiExpandPanel]');
|
|
9014
|
-
this.hasPanel = !!panel;
|
|
9015
|
-
}
|
|
9016
|
-
}
|
|
9017
|
-
NewTableRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableRowComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
9018
|
-
NewTableRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: NewTableRowComponent, selector: "tr[auiTableRow]", inputs: { disabled: "disabled" }, host: { attributes: { "role": "row" }, properties: { "class.isDisabled": "this.disabled", "class.hasPanel": "this.hasPanel" }, classAttribute: "aui-table__row" }, exportAs: ["auiTableRow"], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, directives: [{ type: i1$3.CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
9019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: NewTableRowComponent, decorators: [{
|
|
9020
|
-
type: Component,
|
|
9021
|
-
args: [{
|
|
9022
|
-
// eslint-disable-next-line @angular-eslint/component-selector
|
|
9023
|
-
selector: 'tr[auiTableRow]',
|
|
9024
|
-
template: CDK_ROW_TEMPLATE,
|
|
9025
|
-
host: {
|
|
9026
|
-
class: 'aui-table__row',
|
|
9027
|
-
role: 'row',
|
|
9028
|
-
},
|
|
9029
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9030
|
-
encapsulation: ViewEncapsulation.None,
|
|
9031
|
-
exportAs: 'auiTableRow',
|
|
9032
|
-
preserveWhitespaces: false,
|
|
9033
|
-
}]
|
|
9034
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { disabled: [{
|
|
9035
|
-
type: Input
|
|
9036
|
-
}, {
|
|
9037
|
-
type: HostBinding,
|
|
9038
|
-
args: ['class.isDisabled']
|
|
9039
|
-
}], hasPanel: [{
|
|
9040
|
-
type: HostBinding,
|
|
9041
|
-
args: ['class.hasPanel']
|
|
9042
|
-
}] } });
|
|
9043
|
-
|
|
9044
8864
|
class TableComponent extends CdkTable {
|
|
9045
8865
|
// FIXME: workaround to override because it will break constructor if it is field, but why MatTable works?
|
|
9046
8866
|
// @ts-ignore
|
|
@@ -9633,9 +9453,6 @@ TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
9633
9453
|
TableHeaderRowComponent,
|
|
9634
9454
|
TableExpandButtonCellComponent,
|
|
9635
9455
|
TableExpandPanelCellComponent,
|
|
9636
|
-
NewTableComponent,
|
|
9637
|
-
NewTableHeaderRowComponent,
|
|
9638
|
-
NewTableRowComponent,
|
|
9639
9456
|
TableCellDirective,
|
|
9640
9457
|
TableCellDefDirective,
|
|
9641
9458
|
TableHeaderCellDirective,
|
|
@@ -9646,16 +9463,11 @@ TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
9646
9463
|
TableScrollableDirective,
|
|
9647
9464
|
TablePlaceholderOutletDirective,
|
|
9648
9465
|
TablePlaceholderDefDirective,
|
|
9649
|
-
TableScrollWrapperDirective,
|
|
9650
|
-
NewTableCellDirective,
|
|
9651
|
-
NewTableHeaderCellDirective], imports: [CommonModule, IconModule, CdkTableModule], exports: [TableComponent,
|
|
9466
|
+
TableScrollWrapperDirective], imports: [CommonModule, IconModule, CdkTableModule], exports: [TableComponent,
|
|
9652
9467
|
TableRowComponent,
|
|
9653
9468
|
TableHeaderRowComponent,
|
|
9654
9469
|
TableExpandButtonCellComponent,
|
|
9655
9470
|
TableExpandPanelCellComponent,
|
|
9656
|
-
NewTableComponent,
|
|
9657
|
-
NewTableHeaderRowComponent,
|
|
9658
|
-
NewTableRowComponent,
|
|
9659
9471
|
TableCellDirective,
|
|
9660
9472
|
TableCellDefDirective,
|
|
9661
9473
|
TableHeaderCellDirective,
|
|
@@ -9666,9 +9478,7 @@ TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
9666
9478
|
TableScrollableDirective,
|
|
9667
9479
|
TablePlaceholderOutletDirective,
|
|
9668
9480
|
TablePlaceholderDefDirective,
|
|
9669
|
-
TableScrollWrapperDirective
|
|
9670
|
-
NewTableCellDirective,
|
|
9671
|
-
NewTableHeaderCellDirective] });
|
|
9481
|
+
TableScrollWrapperDirective] });
|
|
9672
9482
|
TableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TableModule, imports: [[CommonModule, IconModule, CdkTableModule]] });
|
|
9673
9483
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TableModule, decorators: [{
|
|
9674
9484
|
type: NgModule,
|
|
@@ -9680,9 +9490,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9680
9490
|
TableHeaderRowComponent,
|
|
9681
9491
|
TableExpandButtonCellComponent,
|
|
9682
9492
|
TableExpandPanelCellComponent,
|
|
9683
|
-
NewTableComponent,
|
|
9684
|
-
NewTableHeaderRowComponent,
|
|
9685
|
-
NewTableRowComponent,
|
|
9686
9493
|
TableCellDirective,
|
|
9687
9494
|
TableCellDefDirective,
|
|
9688
9495
|
TableHeaderCellDirective,
|
|
@@ -9694,8 +9501,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9694
9501
|
TablePlaceholderOutletDirective,
|
|
9695
9502
|
TablePlaceholderDefDirective,
|
|
9696
9503
|
TableScrollWrapperDirective,
|
|
9697
|
-
NewTableCellDirective,
|
|
9698
|
-
NewTableHeaderCellDirective,
|
|
9699
9504
|
],
|
|
9700
9505
|
exports: [
|
|
9701
9506
|
TableComponent,
|
|
@@ -9703,9 +9508,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9703
9508
|
TableHeaderRowComponent,
|
|
9704
9509
|
TableExpandButtonCellComponent,
|
|
9705
9510
|
TableExpandPanelCellComponent,
|
|
9706
|
-
NewTableComponent,
|
|
9707
|
-
NewTableHeaderRowComponent,
|
|
9708
|
-
NewTableRowComponent,
|
|
9709
9511
|
TableCellDirective,
|
|
9710
9512
|
TableCellDefDirective,
|
|
9711
9513
|
TableHeaderCellDirective,
|
|
@@ -9717,8 +9519,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9717
9519
|
TablePlaceholderOutletDirective,
|
|
9718
9520
|
TablePlaceholderDefDirective,
|
|
9719
9521
|
TableScrollWrapperDirective,
|
|
9720
|
-
NewTableCellDirective,
|
|
9721
|
-
NewTableHeaderCellDirective,
|
|
9722
9522
|
],
|
|
9723
9523
|
}]
|
|
9724
9524
|
}] });
|
|
@@ -10401,10 +10201,10 @@ class StepsComponent {
|
|
|
10401
10201
|
}
|
|
10402
10202
|
}
|
|
10403
10203
|
StepsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StepsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
10404
|
-
StepsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: StepsComponent, selector: "aui-steps", inputs: { steps: "steps", linear: "linear", currentIndex: "currentIndex", orientation: "orientation", type: "type", selectable: "selectable" }, outputs: { currentIndexChange: "currentIndexChange", selectedIndexChange: "selectedIndexChange" }, exportAs: ["auiSteps"], ngImport: i0, template: "<div\n class=\"aui-steps aui-steps--{{ orientation || 'horizontal' }} aui-steps--{{\n type || 'step'\n }}\"\n>\n <ng-container *ngFor=\"let step of steps; let i = index; let isLast = last\">\n <div\n class=\"aui-step\"\n (click)=\"select(i)\"\n [class.isLastActive]=\"isLastActive(i, steps)\"\n [class.clickable]=\"isSelectable(i)\"\n >\n <div class=\"aui-step__indicator\">\n <ng-container *ngIf=\"isProgress\">\n <ng-container [ngSwitch]=\"step.state\">\n <aui-icon\n *ngSwitchCase=\"'pending'\"\n class=\"aui-step__indicator--pending\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"rotate\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'done'\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"check\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'error'\"\n class=\"aui-step__indicator--error\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"xmark_small\"\n ></aui-icon>\n <span\n *ngSwitchDefault\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"i === activeIndex\"\n >\n {{ i + 1 }}\n </span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!isProgress\">\n <span\n *ngIf=\"i >= currentIndex\"\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"currentIndex === i\"\n >\n {{ i + 1 }}\n </span>\n <aui-icon\n *ngIf=\"i < currentIndex\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"_currentIndex === i\"\n icon=\"check\"\n ></aui-icon>\n </ng-container>\n <div\n *ngIf=\"!isLast && isVertical\"\n class=\"aui-steps__vertical-line aui-steps__vertical-line--{{\n step.state\n }}\"\n ></div>\n </div>\n <div\n class=\"aui-step__info aui-step__info--{{\n isProgress\n ? step.state || 'default'\n : i < _currentIndex\n ? 'done'\n : 'default'\n }}\"\n [class.aui-step__info--selected]=\"getActiveIndex() === i\"\n >\n <div class=\"aui-step__name\">\n {{ step.label }}\n </div>\n <div\n class=\"aui-step__description\"\n *ngIf=\"step.description\"\n >\n {{ step.description }}\n </div>\n </div>\n </div>\n <div\n *ngIf=\"!isLast && !isVertical\"\n class=\"aui-steps__horizontal-line\"\n ></div>\n </ng-container>\n</div>\n", styles: ["@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.aui-step{display:flex;align-items:center;font-weight:var(--aui-font-weight-normal)}.aui-step__indicator{margin-right:var(--aui-spacing-m);width:24px;height:24px;display:inline-flex;color:rgb(var(--aui-color-n-4))}.aui-step__indicator--index{display:flex;justify-content:center;align-items:center;width:24px;height:24px;border-radius:50%;border:1px solid rgb(var(--aui-color-n-7));background-color:rgb(var(--aui-color-n-8));font-weight:var(--aui-font-weight-bold);font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__indicator--index.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--pending,.aui-step__indicator--done,.aui-step__indicator--error{display:flex;justify-content:center;align-items:center;width:24px;height:24px;font-size:var(--aui-icon-size-l);border-width:1px;border-style:solid;border-radius:50%}.aui-step__indicator--pending{color:rgb(var(--aui-color-primary));border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6))}.aui-step__indicator--pending.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--done{color:rgb(var(--aui-color-green));border-color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-step__indicator--done.isActive{color:#fff;background-color:rgb(var(--aui-color-green))}.aui-step__indicator--error{color:rgb(var(--aui-color-red));border-color:rgb(var(--aui-color-red));background-color:rgb(var(--aui-color-r-6))}.aui-step__indicator--error.isActive{color:#fff;background-color:rgb(var(--aui-color-red))}.aui-step__name{font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__description{font-size:var(--aui-font-size-s);margin-top:var(--aui-spacing-s);line-height:var(--aui-line-height-s)}.aui-step__info{color:rgb(var(--aui-color-n-4))}.aui-step__info--selected,.aui-step__info--pending,.aui-step__info--done,.aui-step__info--error{color:rgb(var(--aui-color-n-1))}.aui-step__info--selected .aui-step__name{font-weight:var(--aui-font-weight-bold)}.aui-step.clickable{cursor:pointer}.aui-steps--progress .aui-step.clickable .aui-step__info:hover{color:rgb(var(--aui-color-primary))}.aui-steps__horizontal-line{height:1px;background-color:rgb(var(--aui-color-n-7));flex:1;min-width:40px;max-width:200px;margin:0 var(--aui-spacing-l)}.aui-steps__vertical-line{min-height:12px;width:1px;background-color:rgb(var(--aui-color-n-7));margin-top:var(--aui-spacing-s);flex:1}.aui-steps__vertical-line--done{background-color:rgb(var(--aui-color-green))}.aui-steps__vertical-line--error{background-color:rgb(var(--aui-color-red))}.aui-steps__vertical-line--pending{background-color:rgb(var(--aui-color-primary))}.aui-steps--horizontal{padding:0 40px;display:flex;justify-content:center;align-items:center}.aui-steps--vertical{max-width:200px}.aui-steps--vertical .aui-step{align-items:stretch}.aui-steps--vertical .aui-step:not(:last-child){margin-bottom:var(--aui-spacing-s)}.aui-steps--vertical .aui-step__indicator{height:auto;display:flex;align-items:center;flex-direction:column}.aui-steps--vertical .aui-step__indicator-icon--done{color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-steps--vertical .aui-step__indicator-icon--done.selected{background-color:#fff}.aui-steps--vertical .aui-step__info{padding-bottom:13px}.aui-steps--vertical .aui-step.isLastActive .aui-steps__vertical-line{background-color:rgb(var(--aui-color-n-7))}aui-steps .aui-steps .aui-step__indicator-icon{font-size:var(--aui-icon-size-xl)}\n"], components: [{ type: IconComponent, selector: "aui-icon", inputs: ["icon", "light", "dark", "link", "margin", "size", "color", "background", "backgroundColor"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i2.NgSwitchDefault, selector: "[ngSwitchDefault]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
10204
|
+
StepsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.8", type: StepsComponent, selector: "aui-steps", inputs: { steps: "steps", linear: "linear", currentIndex: "currentIndex", orientation: "orientation", type: "type", selectable: "selectable" }, outputs: { currentIndexChange: "currentIndexChange", selectedIndexChange: "selectedIndexChange" }, exportAs: ["auiSteps"], ngImport: i0, template: "<div\n class=\"aui-steps aui-steps--{{ orientation || 'horizontal' }} aui-steps--{{\n type || 'step'\n }}\"\n>\n <ng-container *ngFor=\"let step of steps; let i = index; let isLast = last\">\n <div\n class=\"aui-step\"\n (click)=\"select(i)\"\n [class.isLastActive]=\"isLastActive(i, steps)\"\n [class.clickable]=\"isSelectable(i)\"\n >\n <div class=\"aui-step__indicator\">\n <ng-container *ngIf=\"isProgress\">\n <ng-container [ngSwitch]=\"step.state\">\n <aui-icon\n *ngSwitchCase=\"'pending'\"\n class=\"aui-step__indicator--pending\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"rotate\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'done'\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"check\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'error'\"\n class=\"aui-step__indicator--error\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"xmark_small\"\n ></aui-icon>\n <span\n *ngSwitchDefault\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"i === activeIndex\"\n >\n {{ i + 1 }}\n </span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!isProgress\">\n <span\n *ngIf=\"i >= currentIndex\"\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"currentIndex === i\"\n >\n {{ i + 1 }}\n </span>\n <aui-icon\n *ngIf=\"i < currentIndex\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"_currentIndex === i\"\n icon=\"check\"\n ></aui-icon>\n </ng-container>\n <div\n *ngIf=\"!isLast && isVertical\"\n class=\"aui-steps__vertical-line aui-steps__vertical-line--{{\n step.state\n }}\"\n ></div>\n </div>\n <div\n class=\"aui-step__info aui-step__info--{{\n isProgress\n ? step.state || 'default'\n : i < _currentIndex\n ? 'done'\n : 'default'\n }}\"\n [class.aui-step__info--selected]=\"getActiveIndex() === i\"\n >\n <div class=\"aui-step__name\">\n {{ step.label }}\n </div>\n <div\n class=\"aui-step__description\"\n *ngIf=\"step.description\"\n >\n {{ step.description }}\n </div>\n </div>\n </div>\n <div\n *ngIf=\"!isLast && !isVertical\"\n class=\"aui-steps__horizontal-line\"\n ></div>\n </ng-container>\n</div>\n", styles: ["@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.aui-step{display:flex;align-items:center;font-weight:var(--aui-font-weight-normal)}.aui-step__indicator{margin-right:var(--aui-spacing-m);width:24px;height:24px;display:inline-flex;color:rgb(var(--aui-color-n-4))}.aui-step__indicator--index{display:flex;justify-content:center;align-items:center;width:24px;height:24px;border-radius:50%;border:1px solid rgb(var(--aui-color-n-7));background-color:rgb(var(--aui-color-n-8));font-weight:var(--aui-font-weight-bold);font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__indicator--index.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--pending,.aui-step__indicator--done,.aui-step__indicator--error{display:flex;justify-content:center;align-items:center;width:24px;height:24px;font-size:var(--aui-icon-size-l);border-width:1px;border-style:solid;border-radius:50%}.aui-step__indicator--pending{color:rgb(var(--aui-color-primary));border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));transform-origin:center;animation:spin 2s infinite linear}.aui-step__indicator--pending.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--done{color:rgb(var(--aui-color-green));border-color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-step__indicator--done.isActive{color:#fff;background-color:rgb(var(--aui-color-green))}.aui-step__indicator--error{color:rgb(var(--aui-color-red));border-color:rgb(var(--aui-color-red));background-color:rgb(var(--aui-color-r-6))}.aui-step__indicator--error.isActive{color:#fff;background-color:rgb(var(--aui-color-red))}.aui-step__name{font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__description{font-size:var(--aui-font-size-s);margin-top:var(--aui-spacing-s);line-height:var(--aui-line-height-s)}.aui-step__info{color:rgb(var(--aui-color-n-4))}.aui-step__info--selected,.aui-step__info--pending,.aui-step__info--done,.aui-step__info--error{color:rgb(var(--aui-color-n-1))}.aui-step__info--selected .aui-step__name{font-weight:var(--aui-font-weight-bold)}.aui-step.clickable{cursor:pointer}.aui-steps--progress .aui-step.clickable .aui-step__info:hover{color:rgb(var(--aui-color-primary))}.aui-steps__horizontal-line{height:1px;background-color:rgb(var(--aui-color-n-7));flex:1;min-width:40px;max-width:200px;margin:0 var(--aui-spacing-l)}.aui-steps__vertical-line{min-height:12px;width:1px;background-color:rgb(var(--aui-color-n-7));margin-top:var(--aui-spacing-s);flex:1}.aui-steps__vertical-line--done{background-color:rgb(var(--aui-color-green))}.aui-steps__vertical-line--error{background-color:rgb(var(--aui-color-red))}.aui-steps__vertical-line--pending{background-color:rgb(var(--aui-color-primary))}.aui-steps--horizontal{padding:0 40px;display:flex;justify-content:center;align-items:center}.aui-steps--vertical{max-width:200px}.aui-steps--vertical .aui-step{align-items:stretch}.aui-steps--vertical .aui-step:not(:last-child){margin-bottom:var(--aui-spacing-s)}.aui-steps--vertical .aui-step__indicator{height:auto;display:flex;align-items:center;flex-direction:column}.aui-steps--vertical .aui-step__indicator-icon--done{color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-steps--vertical .aui-step__indicator-icon--done.selected{background-color:#fff}.aui-steps--vertical .aui-step__info{padding-bottom:13px}.aui-steps--vertical .aui-step.isLastActive .aui-steps__vertical-line{background-color:rgb(var(--aui-color-n-7))}aui-steps .aui-steps .aui-step__indicator-icon{font-size:var(--aui-icon-size-xl)}\n"], components: [{ type: IconComponent, selector: "aui-icon", inputs: ["icon", "light", "dark", "link", "margin", "size", "color", "background", "backgroundColor"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i2.NgSwitchDefault, selector: "[ngSwitchDefault]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
10405
10205
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StepsComponent, decorators: [{
|
|
10406
10206
|
type: Component,
|
|
10407
|
-
args: [{ selector: 'aui-steps', exportAs: 'auiSteps', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"aui-steps aui-steps--{{ orientation || 'horizontal' }} aui-steps--{{\n type || 'step'\n }}\"\n>\n <ng-container *ngFor=\"let step of steps; let i = index; let isLast = last\">\n <div\n class=\"aui-step\"\n (click)=\"select(i)\"\n [class.isLastActive]=\"isLastActive(i, steps)\"\n [class.clickable]=\"isSelectable(i)\"\n >\n <div class=\"aui-step__indicator\">\n <ng-container *ngIf=\"isProgress\">\n <ng-container [ngSwitch]=\"step.state\">\n <aui-icon\n *ngSwitchCase=\"'pending'\"\n class=\"aui-step__indicator--pending\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"rotate\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'done'\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"check\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'error'\"\n class=\"aui-step__indicator--error\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"xmark_small\"\n ></aui-icon>\n <span\n *ngSwitchDefault\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"i === activeIndex\"\n >\n {{ i + 1 }}\n </span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!isProgress\">\n <span\n *ngIf=\"i >= currentIndex\"\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"currentIndex === i\"\n >\n {{ i + 1 }}\n </span>\n <aui-icon\n *ngIf=\"i < currentIndex\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"_currentIndex === i\"\n icon=\"check\"\n ></aui-icon>\n </ng-container>\n <div\n *ngIf=\"!isLast && isVertical\"\n class=\"aui-steps__vertical-line aui-steps__vertical-line--{{\n step.state\n }}\"\n ></div>\n </div>\n <div\n class=\"aui-step__info aui-step__info--{{\n isProgress\n ? step.state || 'default'\n : i < _currentIndex\n ? 'done'\n : 'default'\n }}\"\n [class.aui-step__info--selected]=\"getActiveIndex() === i\"\n >\n <div class=\"aui-step__name\">\n {{ step.label }}\n </div>\n <div\n class=\"aui-step__description\"\n *ngIf=\"step.description\"\n >\n {{ step.description }}\n </div>\n </div>\n </div>\n <div\n *ngIf=\"!isLast && !isVertical\"\n class=\"aui-steps__horizontal-line\"\n ></div>\n </ng-container>\n</div>\n", styles: ["@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.aui-step{display:flex;align-items:center;font-weight:var(--aui-font-weight-normal)}.aui-step__indicator{margin-right:var(--aui-spacing-m);width:24px;height:24px;display:inline-flex;color:rgb(var(--aui-color-n-4))}.aui-step__indicator--index{display:flex;justify-content:center;align-items:center;width:24px;height:24px;border-radius:50%;border:1px solid rgb(var(--aui-color-n-7));background-color:rgb(var(--aui-color-n-8));font-weight:var(--aui-font-weight-bold);font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__indicator--index.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--pending,.aui-step__indicator--done,.aui-step__indicator--error{display:flex;justify-content:center;align-items:center;width:24px;height:24px;font-size:var(--aui-icon-size-l);border-width:1px;border-style:solid;border-radius:50%}.aui-step__indicator--pending{color:rgb(var(--aui-color-primary));border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6))}.aui-step__indicator--pending.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--done{color:rgb(var(--aui-color-green));border-color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-step__indicator--done.isActive{color:#fff;background-color:rgb(var(--aui-color-green))}.aui-step__indicator--error{color:rgb(var(--aui-color-red));border-color:rgb(var(--aui-color-red));background-color:rgb(var(--aui-color-r-6))}.aui-step__indicator--error.isActive{color:#fff;background-color:rgb(var(--aui-color-red))}.aui-step__name{font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__description{font-size:var(--aui-font-size-s);margin-top:var(--aui-spacing-s);line-height:var(--aui-line-height-s)}.aui-step__info{color:rgb(var(--aui-color-n-4))}.aui-step__info--selected,.aui-step__info--pending,.aui-step__info--done,.aui-step__info--error{color:rgb(var(--aui-color-n-1))}.aui-step__info--selected .aui-step__name{font-weight:var(--aui-font-weight-bold)}.aui-step.clickable{cursor:pointer}.aui-steps--progress .aui-step.clickable .aui-step__info:hover{color:rgb(var(--aui-color-primary))}.aui-steps__horizontal-line{height:1px;background-color:rgb(var(--aui-color-n-7));flex:1;min-width:40px;max-width:200px;margin:0 var(--aui-spacing-l)}.aui-steps__vertical-line{min-height:12px;width:1px;background-color:rgb(var(--aui-color-n-7));margin-top:var(--aui-spacing-s);flex:1}.aui-steps__vertical-line--done{background-color:rgb(var(--aui-color-green))}.aui-steps__vertical-line--error{background-color:rgb(var(--aui-color-red))}.aui-steps__vertical-line--pending{background-color:rgb(var(--aui-color-primary))}.aui-steps--horizontal{padding:0 40px;display:flex;justify-content:center;align-items:center}.aui-steps--vertical{max-width:200px}.aui-steps--vertical .aui-step{align-items:stretch}.aui-steps--vertical .aui-step:not(:last-child){margin-bottom:var(--aui-spacing-s)}.aui-steps--vertical .aui-step__indicator{height:auto;display:flex;align-items:center;flex-direction:column}.aui-steps--vertical .aui-step__indicator-icon--done{color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-steps--vertical .aui-step__indicator-icon--done.selected{background-color:#fff}.aui-steps--vertical .aui-step__info{padding-bottom:13px}.aui-steps--vertical .aui-step.isLastActive .aui-steps__vertical-line{background-color:rgb(var(--aui-color-n-7))}aui-steps .aui-steps .aui-step__indicator-icon{font-size:var(--aui-icon-size-xl)}\n"] }]
|
|
10207
|
+
args: [{ selector: 'aui-steps', exportAs: 'auiSteps', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div\n class=\"aui-steps aui-steps--{{ orientation || 'horizontal' }} aui-steps--{{\n type || 'step'\n }}\"\n>\n <ng-container *ngFor=\"let step of steps; let i = index; let isLast = last\">\n <div\n class=\"aui-step\"\n (click)=\"select(i)\"\n [class.isLastActive]=\"isLastActive(i, steps)\"\n [class.clickable]=\"isSelectable(i)\"\n >\n <div class=\"aui-step__indicator\">\n <ng-container *ngIf=\"isProgress\">\n <ng-container [ngSwitch]=\"step.state\">\n <aui-icon\n *ngSwitchCase=\"'pending'\"\n class=\"aui-step__indicator--pending\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"rotate\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'done'\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"check\"\n ></aui-icon>\n <aui-icon\n *ngSwitchCase=\"'error'\"\n class=\"aui-step__indicator--error\"\n [class.isActive]=\"i === activeIndex\"\n icon=\"xmark_small\"\n ></aui-icon>\n <span\n *ngSwitchDefault\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"i === activeIndex\"\n >\n {{ i + 1 }}\n </span>\n </ng-container>\n </ng-container>\n <ng-container *ngIf=\"!isProgress\">\n <span\n *ngIf=\"i >= currentIndex\"\n class=\"aui-step__indicator--index\"\n [class.isActive]=\"currentIndex === i\"\n >\n {{ i + 1 }}\n </span>\n <aui-icon\n *ngIf=\"i < currentIndex\"\n class=\"aui-step__indicator--done\"\n [class.isActive]=\"_currentIndex === i\"\n icon=\"check\"\n ></aui-icon>\n </ng-container>\n <div\n *ngIf=\"!isLast && isVertical\"\n class=\"aui-steps__vertical-line aui-steps__vertical-line--{{\n step.state\n }}\"\n ></div>\n </div>\n <div\n class=\"aui-step__info aui-step__info--{{\n isProgress\n ? step.state || 'default'\n : i < _currentIndex\n ? 'done'\n : 'default'\n }}\"\n [class.aui-step__info--selected]=\"getActiveIndex() === i\"\n >\n <div class=\"aui-step__name\">\n {{ step.label }}\n </div>\n <div\n class=\"aui-step__description\"\n *ngIf=\"step.description\"\n >\n {{ step.description }}\n </div>\n </div>\n </div>\n <div\n *ngIf=\"!isLast && !isVertical\"\n class=\"aui-steps__horizontal-line\"\n ></div>\n </ng-container>\n</div>\n", styles: ["@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.aui-step{display:flex;align-items:center;font-weight:var(--aui-font-weight-normal)}.aui-step__indicator{margin-right:var(--aui-spacing-m);width:24px;height:24px;display:inline-flex;color:rgb(var(--aui-color-n-4))}.aui-step__indicator--index{display:flex;justify-content:center;align-items:center;width:24px;height:24px;border-radius:50%;border:1px solid rgb(var(--aui-color-n-7));background-color:rgb(var(--aui-color-n-8));font-weight:var(--aui-font-weight-bold);font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__indicator--index.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--pending,.aui-step__indicator--done,.aui-step__indicator--error{display:flex;justify-content:center;align-items:center;width:24px;height:24px;font-size:var(--aui-icon-size-l);border-width:1px;border-style:solid;border-radius:50%}.aui-step__indicator--pending{color:rgb(var(--aui-color-primary));border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-p-6));transform-origin:center;animation:spin 2s infinite linear}.aui-step__indicator--pending.isActive{color:#fff;border-color:rgb(var(--aui-color-primary));background-color:rgb(var(--aui-color-primary))}.aui-step__indicator--done{color:rgb(var(--aui-color-green));border-color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-step__indicator--done.isActive{color:#fff;background-color:rgb(var(--aui-color-green))}.aui-step__indicator--error{color:rgb(var(--aui-color-red));border-color:rgb(var(--aui-color-red));background-color:rgb(var(--aui-color-r-6))}.aui-step__indicator--error.isActive{color:#fff;background-color:rgb(var(--aui-color-red))}.aui-step__name{font-size:var(--aui-font-size-l);line-height:var(--aui-line-height-l)}.aui-step__description{font-size:var(--aui-font-size-s);margin-top:var(--aui-spacing-s);line-height:var(--aui-line-height-s)}.aui-step__info{color:rgb(var(--aui-color-n-4))}.aui-step__info--selected,.aui-step__info--pending,.aui-step__info--done,.aui-step__info--error{color:rgb(var(--aui-color-n-1))}.aui-step__info--selected .aui-step__name{font-weight:var(--aui-font-weight-bold)}.aui-step.clickable{cursor:pointer}.aui-steps--progress .aui-step.clickable .aui-step__info:hover{color:rgb(var(--aui-color-primary))}.aui-steps__horizontal-line{height:1px;background-color:rgb(var(--aui-color-n-7));flex:1;min-width:40px;max-width:200px;margin:0 var(--aui-spacing-l)}.aui-steps__vertical-line{min-height:12px;width:1px;background-color:rgb(var(--aui-color-n-7));margin-top:var(--aui-spacing-s);flex:1}.aui-steps__vertical-line--done{background-color:rgb(var(--aui-color-green))}.aui-steps__vertical-line--error{background-color:rgb(var(--aui-color-red))}.aui-steps__vertical-line--pending{background-color:rgb(var(--aui-color-primary))}.aui-steps--horizontal{padding:0 40px;display:flex;justify-content:center;align-items:center}.aui-steps--vertical{max-width:200px}.aui-steps--vertical .aui-step{align-items:stretch}.aui-steps--vertical .aui-step:not(:last-child){margin-bottom:var(--aui-spacing-s)}.aui-steps--vertical .aui-step__indicator{height:auto;display:flex;align-items:center;flex-direction:column}.aui-steps--vertical .aui-step__indicator-icon--done{color:rgb(var(--aui-color-green));background-color:rgb(var(--aui-color-g-6))}.aui-steps--vertical .aui-step__indicator-icon--done.selected{background-color:#fff}.aui-steps--vertical .aui-step__info{padding-bottom:13px}.aui-steps--vertical .aui-step.isLastActive .aui-steps__vertical-line{background-color:rgb(var(--aui-color-n-7))}aui-steps .aui-steps .aui-step__indicator-icon{font-size:var(--aui-icon-size-xl)}\n"] }]
|
|
10408
10208
|
}], propDecorators: { steps: [{
|
|
10409
10209
|
type: Input
|
|
10410
10210
|
}], linear: [{
|
|
@@ -11765,7 +11565,7 @@ class TreeSelectComponent extends CommonFormControl {
|
|
|
11765
11565
|
}
|
|
11766
11566
|
this._nodesData = val;
|
|
11767
11567
|
this.flattedNodes = this.flatNodesData(val);
|
|
11768
|
-
this.updateSelectDisplay(this.
|
|
11568
|
+
this.updateSelectDisplay(this.model);
|
|
11769
11569
|
}
|
|
11770
11570
|
get filterable() {
|
|
11771
11571
|
return this._filterable;
|
|
@@ -12094,5 +11894,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
12094
11894
|
* Generated bundle index. Do not edit.
|
|
12095
11895
|
*/
|
|
12096
11896
|
|
|
12097
|
-
export { AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, AutosizeDirective, BackTopComponent, BackTopModule, BaseDialogConfig, BaseTooltip, Bem, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonModule, ButtonType, CONTROL_ITEM_HEIGHT, CalendarFooterComponent, CalendarHeaderComponent, CardComponent, CardFooterDirective, CardHeaderDirective, CardModule, CheckTagComponent, CheckboxComponent, CheckboxGroupComponent, CheckboxModule, ColorPickerComponent, ColorPickerModule, CommonForm, CommonFormControl, ComponentSize, ConfirmDialogConfig, ConfirmType, CssVarPipe, CustomAutoCompleteDirective, DATA, 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, FixedSizeTableVirtualScrollDirective, FixedSizeTableVirtualScrollStrategy, FixedSizeVirtualScrollDirective, FormDirective, FormItemAddonDirective, FormItemComponent, FormItemControlDirective, FormItemErrorDirective, FormItemHintDirective, FormItemLabelDirective, FormItemWidth, FormModule, HIDDEN_DELAY, HOUR, HOUR_ITEMS, I18NInterfaceToken, I18nModule, I18nPipe, I18nService, ICON_REGISTER_PROVIDER_FACTORY, ICON_REGISTER_SERVICE_PROVIDER, INPUT_ERROR_KEY, 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, MenuContentDirective, MenuGroupComponent, MenuGroupTitleDirective, MenuItemComponent, MenuItemType, MessageConfig, MessageModule, MessageService, MessageType, MultiSelectComponent, NOTIFICATION_CONFIG, NOTIFICATION_DEFAULT_CONFIG,
|
|
11897
|
+
export { AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, AutosizeDirective, BackTopComponent, BackTopModule, BaseDialogConfig, BaseTooltip, Bem, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonModule, ButtonType, CONTROL_ITEM_HEIGHT, CalendarFooterComponent, CalendarHeaderComponent, CardComponent, CardFooterDirective, CardHeaderDirective, CardModule, CheckTagComponent, CheckboxComponent, CheckboxGroupComponent, CheckboxModule, ColorPickerComponent, ColorPickerModule, CommonForm, CommonFormControl, ComponentSize, ConfirmDialogConfig, ConfirmType, CssVarPipe, CustomAutoCompleteDirective, DATA, 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, FixedSizeTableVirtualScrollDirective, FixedSizeTableVirtualScrollStrategy, FixedSizeVirtualScrollDirective, FormDirective, FormItemAddonDirective, FormItemComponent, FormItemControlDirective, FormItemErrorDirective, FormItemHintDirective, FormItemLabelDirective, FormItemWidth, FormModule, HIDDEN_DELAY, HOUR, HOUR_ITEMS, I18NInterfaceToken, I18nModule, I18nPipe, I18nService, ICON_REGISTER_PROVIDER_FACTORY, ICON_REGISTER_SERVICE_PROVIDER, INPUT_ERROR_KEY, 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, MenuContentDirective, MenuGroupComponent, MenuGroupTitleDirective, MenuItemComponent, MenuItemType, MessageConfig, MessageModule, MessageService, MessageType, MultiSelectComponent, NOTIFICATION_CONFIG, NOTIFICATION_DEFAULT_CONFIG, NotificationComponent, NotificationModule, NotificationService, NumberInputComponent, OptionComponent, OptionContentDirective, OptionGroupComponent, OptionGroupTitleDirective, OptionPlaceholderComponent, PAGINATOR_INTL_PROVIDER, PAGINATOR_INTL_PROVIDER_FACTORY, PageEvent, PaginatorComponent, PaginatorIntl, PaginatorModule, PickerPanelComponent, RadioButtonComponent, RadioComponent, RadioGroupComponent, RadioModule, RadioSize, RangePickerComponent, RgbColorPipe, RgbaColorPipe, SECOND, SECOND_ITEMS, ScrollingModule, SearchComponent, SectionComponent, SectionTitleDirective, SelectAllStatus, SelectComponent, SelectModule, Side, SortDirective, SortHeaderComponent, SortModule, StatusBarComponent, StatusBarModule, StatusBarSize, StatusType, StepState, StepsComponent, StepsModule, SubmenuComponent, SuggestionComponent, SuggestionGroupComponent, SuggestionGroupTitleDirective, SwitchComponent, SwitchModule, TOOLTIP_COPY_INTL_INTL_PROVIDER, TOOLTIP_COPY_INTL_PROVIDER_FACTORY, TabBodyComponent, TabBodyPortalDirective, TabChangeEvent, TabComponent, TabContentDirective, TabContextService, TabGroupComponent, TabHeaderActiveIndicatorComponent, TabHeaderAddonDirective, TabHeaderComponent, TabLabelDirective, TabLabelWrapperDirective, TabSize, TabTitleDirective, TabType, TableCellDefDirective, TableCellDirective, TableColumnDefDirective, 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, _isNumberValue, _tableVirtualScrollDirectiveStrategyFactory, buildBem, coerceAttrBoolean, coerceNumber, coerceString, cssVar, en, getAnchorTreeItems, getElementOffset, getSortDuplicateSortableIdError, getSortHeaderMissingIdError, getSortHeaderNotContainedWithinSortError, getSortInvalidDirectionError, handlePixel, isString, isTemplateRef, isTimePickerModel, isUndefined, last, observeMutationOn, observeResizeOn, publishRef, rgbColor, rgbaColor, scrollIntoView, sleep, watchContentExist, zh };
|
|
12098
11898
|
//# sourceMappingURL=alauda-ui.mjs.map
|