@alauda/ui 6.5.4-beta.37 → 6.5.4-beta.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/table/index.mjs +6 -1
- package/esm2020/table/new/table-cell.directive.mjs +30 -0
- package/esm2020/table/new/table-header-cell.directive.mjs +26 -0
- package/esm2020/table/new/table-header-row.component.mjs +26 -0
- package/esm2020/table/new/table-row.component.mjs +44 -0
- package/esm2020/table/new/table.component.mjs +79 -0
- package/esm2020/table/table.module.mjs +28 -3
- package/fesm2015/alauda-ui.mjs +217 -17
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +217 -17
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/table/index.d.ts +5 -0
- package/table/new/table-cell.directive.d.ts +10 -0
- package/table/new/table-header-cell.directive.d.ts +9 -0
- package/table/new/table-header-row.component.d.ts +7 -0
- package/table/new/table-row.component.d.ts +13 -0
- package/table/new/table.component.d.ts +17 -0
- package/table/table.module.d.ts +18 -13
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, CdkCell, CdkHeaderCell, CdkHeaderRow, CDK_ROW_TEMPLATE, CdkRow, CdkCellDef, CdkColumnDef, CdkHeaderCellDef, CdkHeaderRowDef, CdkRowDef, 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$9 = 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$9;
|
|
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$9;
|
|
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$8 = 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$8;
|
|
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$7 = 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$7;
|
|
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$6 = 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$6;
|
|
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$5 = 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$5;
|
|
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$4 = 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$4;
|
|
5328
5328
|
this.focusInput = this.focusInput.bind(this);
|
|
5329
5329
|
}
|
|
5330
5330
|
get isFocus() {
|
|
@@ -8861,6 +8861,186 @@ 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);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:flex;justify-content:center;align-items:center;width:var(--aui-icon-size-s);height:var(--aui-icon-size-s);font-size:var(--aui-icon-size-s)}.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);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:flex;justify-content:center;align-items:center;width:var(--aui-icon-size-s);height:var(--aui-icon-size-s);font-size:var(--aui-icon-size-s)}.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
|
+
|
|
8864
9044
|
class TableComponent extends CdkTable {
|
|
8865
9045
|
// FIXME: workaround to override because it will break constructor if it is field, but why MatTable works?
|
|
8866
9046
|
// @ts-ignore
|
|
@@ -9453,6 +9633,9 @@ TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
9453
9633
|
TableHeaderRowComponent,
|
|
9454
9634
|
TableExpandButtonCellComponent,
|
|
9455
9635
|
TableExpandPanelCellComponent,
|
|
9636
|
+
NewTableComponent,
|
|
9637
|
+
NewTableHeaderRowComponent,
|
|
9638
|
+
NewTableRowComponent,
|
|
9456
9639
|
TableCellDirective,
|
|
9457
9640
|
TableCellDefDirective,
|
|
9458
9641
|
TableHeaderCellDirective,
|
|
@@ -9463,11 +9646,16 @@ TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
9463
9646
|
TableScrollableDirective,
|
|
9464
9647
|
TablePlaceholderOutletDirective,
|
|
9465
9648
|
TablePlaceholderDefDirective,
|
|
9466
|
-
TableScrollWrapperDirective
|
|
9649
|
+
TableScrollWrapperDirective,
|
|
9650
|
+
NewTableCellDirective,
|
|
9651
|
+
NewTableHeaderCellDirective], imports: [CommonModule, IconModule, CdkTableModule], exports: [TableComponent,
|
|
9467
9652
|
TableRowComponent,
|
|
9468
9653
|
TableHeaderRowComponent,
|
|
9469
9654
|
TableExpandButtonCellComponent,
|
|
9470
9655
|
TableExpandPanelCellComponent,
|
|
9656
|
+
NewTableComponent,
|
|
9657
|
+
NewTableHeaderRowComponent,
|
|
9658
|
+
NewTableRowComponent,
|
|
9471
9659
|
TableCellDirective,
|
|
9472
9660
|
TableCellDefDirective,
|
|
9473
9661
|
TableHeaderCellDirective,
|
|
@@ -9478,7 +9666,9 @@ TableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "1
|
|
|
9478
9666
|
TableScrollableDirective,
|
|
9479
9667
|
TablePlaceholderOutletDirective,
|
|
9480
9668
|
TablePlaceholderDefDirective,
|
|
9481
|
-
TableScrollWrapperDirective
|
|
9669
|
+
TableScrollWrapperDirective,
|
|
9670
|
+
NewTableCellDirective,
|
|
9671
|
+
NewTableHeaderCellDirective] });
|
|
9482
9672
|
TableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TableModule, imports: [[CommonModule, IconModule, CdkTableModule]] });
|
|
9483
9673
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: TableModule, decorators: [{
|
|
9484
9674
|
type: NgModule,
|
|
@@ -9490,6 +9680,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9490
9680
|
TableHeaderRowComponent,
|
|
9491
9681
|
TableExpandButtonCellComponent,
|
|
9492
9682
|
TableExpandPanelCellComponent,
|
|
9683
|
+
NewTableComponent,
|
|
9684
|
+
NewTableHeaderRowComponent,
|
|
9685
|
+
NewTableRowComponent,
|
|
9493
9686
|
TableCellDirective,
|
|
9494
9687
|
TableCellDefDirective,
|
|
9495
9688
|
TableHeaderCellDirective,
|
|
@@ -9501,6 +9694,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9501
9694
|
TablePlaceholderOutletDirective,
|
|
9502
9695
|
TablePlaceholderDefDirective,
|
|
9503
9696
|
TableScrollWrapperDirective,
|
|
9697
|
+
NewTableCellDirective,
|
|
9698
|
+
NewTableHeaderCellDirective,
|
|
9504
9699
|
],
|
|
9505
9700
|
exports: [
|
|
9506
9701
|
TableComponent,
|
|
@@ -9508,6 +9703,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9508
9703
|
TableHeaderRowComponent,
|
|
9509
9704
|
TableExpandButtonCellComponent,
|
|
9510
9705
|
TableExpandPanelCellComponent,
|
|
9706
|
+
NewTableComponent,
|
|
9707
|
+
NewTableHeaderRowComponent,
|
|
9708
|
+
NewTableRowComponent,
|
|
9511
9709
|
TableCellDirective,
|
|
9512
9710
|
TableCellDefDirective,
|
|
9513
9711
|
TableHeaderCellDirective,
|
|
@@ -9519,6 +9717,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
9519
9717
|
TablePlaceholderOutletDirective,
|
|
9520
9718
|
TablePlaceholderDefDirective,
|
|
9521
9719
|
TableScrollWrapperDirective,
|
|
9720
|
+
NewTableCellDirective,
|
|
9721
|
+
NewTableHeaderCellDirective,
|
|
9522
9722
|
],
|
|
9523
9723
|
}]
|
|
9524
9724
|
}] });
|
|
@@ -11892,5 +12092,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
11892
12092
|
* Generated bundle index. Do not edit.
|
|
11893
12093
|
*/
|
|
11894
12094
|
|
|
11895
|
-
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 };
|
|
12095
|
+
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, NewTableCellDirective, NewTableComponent, NewTableHeaderCellDirective, NewTableHeaderRowComponent, NewTableRowComponent, 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 };
|
|
11896
12096
|
//# sourceMappingURL=alauda-ui.mjs.map
|