@alauda/ui 6.0.1-beta.35 → 6.0.1-beta.36
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/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +43 -31
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/esm2015/alauda-ui.ngsummary.json +1 -1
- package/esm2015/public-api.ngsummary.json +1 -1
- package/esm2015/table/public-api.ngsummary.json +1 -1
- package/esm2015/table/table-cell.component.js +2 -2
- package/esm2015/table/table-cell.component.ngfactory.js +1 -1
- package/esm2015/table/table-cell.component.ngsummary.json +1 -1
- package/esm2015/table/table-scroll-wrapper.directive.js +32 -20
- package/esm2015/table/table-scroll-wrapper.directive.ngsummary.json +1 -1
- package/esm2015/table/table.component.js +4 -7
- package/esm2015/table/table.component.ngfactory.js +12 -13
- package/esm2015/table/table.component.scss.ngstyle.js +1 -1
- package/esm2015/table/table.module.js +4 -4
- package/esm2015/table/table.module.ngfactory.js +1 -1
- package/esm2015/table/table.module.ngsummary.json +1 -1
- package/fesm2015/alauda-ui.js +37 -28
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/table/table-scroll-wrapper.directive.d.ts +4 -2
- package/theme/_pattern.scss +0 -1
- package/theme/style.css +5 -5
package/fesm2015/alauda-ui.js
CHANGED
|
@@ -593,7 +593,7 @@ TableCellComponent.decorators = [
|
|
|
593
593
|
animations: [
|
|
594
594
|
trigger('expand', [
|
|
595
595
|
state('*', style({ height: 0, padding: '0 16px' })),
|
|
596
|
-
state('expanded', style({ height: '*', padding: '16px' })),
|
|
596
|
+
state('expanded', style({ height: '*', 'margin-bottom': '15px', padding: '16px' })),
|
|
597
597
|
transition('* <=> expanded', [animate(250)]),
|
|
598
598
|
]),
|
|
599
599
|
]
|
|
@@ -814,14 +814,18 @@ TableRowComponent.propDecorators = {
|
|
|
814
814
|
};
|
|
815
815
|
|
|
816
816
|
const CLASS_PREFIX = 'aui-table';
|
|
817
|
-
const
|
|
818
|
-
const HAS_SCROLL_CLASS = `${
|
|
819
|
-
const SCROLLING_CLASS = `${
|
|
820
|
-
const SCROLL_BEFORE_END_CLASS = `${
|
|
821
|
-
|
|
817
|
+
const SHADOW_CLASS = `${CLASS_PREFIX}__scroll-shadow`;
|
|
818
|
+
const HAS_SCROLL_CLASS = `${SHADOW_CLASS}--has-scroll`;
|
|
819
|
+
const SCROLLING_CLASS = `${SHADOW_CLASS}--scrolling`;
|
|
820
|
+
const SCROLL_BEFORE_END_CLASS = `${SHADOW_CLASS}--before-end`;
|
|
821
|
+
const HAS_TABLE_TOP_SHADOW = 'hasTableTopShadow';
|
|
822
|
+
const HAS_TABLE_BOTTOM_SHADOW = 'hasTableBottomShadow';
|
|
823
|
+
const HAS_TABLE_VERTICAL_SCROLL = 'hasTableVerticalScroll';
|
|
824
|
+
class TableScrollShadowDirective {
|
|
822
825
|
constructor(el) {
|
|
823
826
|
this.el = el;
|
|
824
827
|
this.destroy$$ = new Subject();
|
|
828
|
+
this.class = `${SCROLL_BEFORE_END_CLASS} ${SHADOW_CLASS}`;
|
|
825
829
|
}
|
|
826
830
|
get containerEl() {
|
|
827
831
|
return this.el.nativeElement;
|
|
@@ -835,13 +839,24 @@ class TableScrollWrapperDirective {
|
|
|
835
839
|
merge(observeResizeOn(this.containerEl), fromEvent(this.containerEl, 'scroll'))
|
|
836
840
|
.pipe(startWith(null), takeUntil(this.destroy$$))
|
|
837
841
|
.subscribe(() => {
|
|
838
|
-
|
|
839
|
-
this.
|
|
840
|
-
const scrollLeft = this.containerEl.scrollLeft;
|
|
841
|
-
this.placeClassList(this.containerEl.classList, scrollLeft > 0, SCROLLING_CLASS);
|
|
842
|
-
this.placeClassList(this.containerEl.classList, scrollLeft !== scrollDis, SCROLL_BEFORE_END_CLASS);
|
|
842
|
+
this.mutateVerticalScroll();
|
|
843
|
+
this.mutateHorizontalScroll();
|
|
843
844
|
});
|
|
844
845
|
}
|
|
846
|
+
mutateVerticalScroll() {
|
|
847
|
+
const scrollDis = this.containerEl.scrollHeight - this.containerEl.offsetHeight;
|
|
848
|
+
this.placeClassList(this.containerEl.classList, scrollDis > 0, HAS_TABLE_VERTICAL_SCROLL);
|
|
849
|
+
const scrollTop = this.containerEl.scrollTop;
|
|
850
|
+
this.placeClassList(this.containerEl.classList, scrollTop > 0, HAS_TABLE_TOP_SHADOW);
|
|
851
|
+
this.placeClassList(this.containerEl.classList, scrollTop < scrollDis, HAS_TABLE_BOTTOM_SHADOW);
|
|
852
|
+
}
|
|
853
|
+
mutateHorizontalScroll() {
|
|
854
|
+
const scrollDis = this.containerEl.scrollWidth - this.containerEl.offsetWidth;
|
|
855
|
+
this.placeClassList(this.containerEl.classList, scrollDis > 0, HAS_SCROLL_CLASS);
|
|
856
|
+
const scrollLeft = this.containerEl.scrollLeft;
|
|
857
|
+
this.placeClassList(this.containerEl.classList, scrollLeft > 0, SCROLLING_CLASS);
|
|
858
|
+
this.placeClassList(this.containerEl.classList, scrollLeft < scrollDis, SCROLL_BEFORE_END_CLASS);
|
|
859
|
+
}
|
|
845
860
|
placeClassList(classList, condition, className) {
|
|
846
861
|
classList[condition ? 'add' : 'remove'](className);
|
|
847
862
|
}
|
|
@@ -849,19 +864,16 @@ class TableScrollWrapperDirective {
|
|
|
849
864
|
this.destroy$$.next();
|
|
850
865
|
}
|
|
851
866
|
}
|
|
852
|
-
|
|
867
|
+
TableScrollShadowDirective.decorators = [
|
|
853
868
|
{ type: Directive, args: [{
|
|
854
|
-
selector: '[
|
|
855
|
-
host: {
|
|
856
|
-
class: `${SCROLL_BEFORE_END_CLASS}`,
|
|
857
|
-
},
|
|
869
|
+
selector: '[auiTableScrollShadow]',
|
|
858
870
|
},] }
|
|
859
871
|
];
|
|
860
|
-
|
|
872
|
+
TableScrollShadowDirective.ctorParameters = () => [
|
|
861
873
|
{ type: ElementRef }
|
|
862
874
|
];
|
|
863
|
-
|
|
864
|
-
|
|
875
|
+
TableScrollShadowDirective.propDecorators = {
|
|
876
|
+
class: [{ type: HostBinding, args: ['class',] }]
|
|
865
877
|
};
|
|
866
878
|
|
|
867
879
|
class TableComponent extends CdkTable {
|
|
@@ -897,13 +909,10 @@ TableComponent.decorators = [
|
|
|
897
909
|
selector: 'aui-table',
|
|
898
910
|
exportAs: 'auiTable',
|
|
899
911
|
encapsulation: ViewEncapsulation.None,
|
|
900
|
-
template:
|
|
901
|
-
class="aui-table__content"
|
|
902
|
-
[auiTableScrollWrapper]="enableScrollWrapper"
|
|
903
|
-
>
|
|
912
|
+
template: `
|
|
904
913
|
${CDK_TABLE_TEMPLATE}
|
|
905
914
|
<ng-container auiTablePlaceholderOutlet></ng-container>
|
|
906
|
-
|
|
915
|
+
`,
|
|
907
916
|
host: {
|
|
908
917
|
class: 'aui-table',
|
|
909
918
|
},
|
|
@@ -923,7 +932,7 @@ TableComponent.decorators = [
|
|
|
923
932
|
useClass: _CoalescedStyleScheduler,
|
|
924
933
|
},
|
|
925
934
|
],
|
|
926
|
-
styles: [".aui-
|
|
935
|
+
styles: [".aui-table__header-row.aui-table-sticky{margin:0 calc(var(--aui-table-margin) * -1);padding:0}.hasTableTopShadow:before{transform:translate3d(-12px,0,0);top:28px;box-shadow:0 10px 10px -4px rgba(var(--aui-color-n-1),.16)}.hasTableBottomShadow:after,.hasTableTopShadow:before{position:-webkit-sticky;position:sticky;width:calc(100% + 24px);content:\" \";display:block;height:16px;margin-top:-16px;z-index:99}.hasTableBottomShadow:after{transform:translate3d(-12px,12px,0);bottom:0;box-shadow:0 -10px 10px -4px rgba(var(--aui-color-n-1),.16) inset}.aui-table__scroll-wrapper{background-color:rgb(var(--aui-color-n-9));padding:0 12px 12px}.aui-table__scroll-wrapper::-webkit-scrollbar{width:4px;height:4px}.aui-table__scroll-wrapper::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-table__scroll-wrapper .aui-table{padding:0}.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableBottomShadow:after,.aui-table__scroll-wrapper .aui-table__scroll-shadow.hasTableTopShadow:before{transform:none;width:100%;left:0}.aui-table__scroll-shadow .aui-table__header-row.aui-table-sticky{margin:0}.aui-table__scroll-shadow .aui-table{padding:0}.aui-table__scroll-shadow .aui-table__row{border:none;padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__row .aui-table__cell{border-left:0 solid #eee;border-bottom:var(--aui-table-border-width) solid #eee;border-right:0 solid #eee;border-top:var(--aui-table-border-width) solid #eee}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:first-of-type{border-left-width:var(--aui-table-border-width);padding-left:var(--aui-table-cell-padding-lr)}.aui-table__scroll-shadow .aui-table__row .aui-table__cell:last-of-type{border-right-width:var(--aui-table-border-width);padding-right:var(--aui-table-cell-padding-lr)}.aui-table__scroll-shadow .aui-table__row:first-child:not(.aui-table__header-row) .aui-table__cell:first-of-type{border-top-left-radius:var(--aui-border-radius-l)}.aui-table__scroll-shadow .aui-table__row:first-child:not(.aui-table__header-row) .aui-table__cell:last-of-type{border-top-right-radius:var(--aui-border-radius-l)}.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 .aui-table__header-row{padding:0;align-items:stretch}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:first-of-type{padding-left:var(--aui-table-cell-padding-lr)}.aui-table__scroll-shadow .aui-table__header-row .aui-table__header-cell:last-of-type{padding-right:var(--aui-table-cell-padding-lr)}.aui-table__scroll-shadow .aui-table__cell{padding:var(--aui-table-cell-padding-tb-m) calc(var(--aui-table-cell-padding-lr) / 2)}.aui-table__scroll-shadow--has-scroll .aui-table-sticky:not(.aui-table__header-row):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:not(.aui-table__header-row):before{position:absolute;top:0;bottom:-1px;content:\" \";background:linear-gradient(180deg,rgb(var(--aui-color-n-7)),rgb(var(--aui-color-n-7)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left{padding-right:calc(var(--aui-table-cell-padding-lr) / 2 * 3)}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:after{right:calc((var(--aui-table-cell-padding-lr) / 2) * -1)}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-left:before{right:calc(var(--aui-table-cell-padding-lr) / 2)}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right{padding-left:calc(var(--aui-table-cell-padding-lr) / 2 * 3)}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:after{left:calc((var(--aui-table-cell-padding-lr) / 2) * -1)}.aui-table__scroll-shadow--has-scroll .aui-table-sticky-border-elem-right:before{left:calc(var(--aui-table-cell-padding-lr) / 2)}.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)}.aui-table__scroll-shadow--scrolling .aui-table-sticky-border-elem-left:not(.aui-table__header-row):before{background:linear-gradient(180deg,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}.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)}.aui-table__scroll-shadow--before-end .aui-table-sticky-border-elem-right:not(.aui-table__header-row):before{background:linear-gradient(180deg,rgb(var(--aui-color-primary)),rgb(var(--aui-color-primary)) 8px,transparent 0,transparent);width:1px;background-size:100% 14px;height:100%}.aui-table{display:block;color:rgb(var(--aui-color-n-1));font-size:var(--aui-font-size-m);background-color:rgb(var(--aui-color-n-9));padding:0 var(--aui-table-margin) var(--aui-table-margin);border-radius:var(--aui-border-radius-m)}.aui-table::-webkit-scrollbar{width:4px;height:4px}.aui-table::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3)}.aui-table__header-row,.aui-table__row{display:flex;align-items:center}.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:var(--aui-table-border-width) solid #eee;border-bottom:0 solid #eee;background-color:rgb(var(--aui-color-n-10));padding:0 calc(var(--aui-table-cell-padding-lr) / 2);min-height:calc(var(--aui-table-border-width) + var(--aui-table-row-min-height-m))}.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:var(--aui-table-border-width);min-height:calc(var(--aui-table-border-width) + var(--aui-table-row-min-height-m));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:#fff;opacity:.7;cursor:not-allowed}.aui-table__header-row{background-color:rgb(var(--aui-color-n-9));padding:0 calc(var(--aui-table-cell-padding-lr) / 2)}.aui-table__cell,.aui-table__header-cell{flex:1}.aui-table__cell{padding:var(--aui-table-cell-padding-tb-m) calc(var(--aui-table-cell-padding-lr) / 2);background-color:rgb(var(--aui-color-n-10));overflow:hidden;word-wrap:break-word}.aui-table__header-cell{padding:var(--aui-table-header-cell-padding-tb) calc(var(--aui-table-cell-padding-lr) / 2);font-weight:500;height:var(--aui-table-header-height);line-height:var(--aui-line-height-m);background-color:rgb(var(--aui-color-n-9));white-space:nowrap;overflow:hidden;text-overflow:ellipsis}"]
|
|
927
936
|
},] }
|
|
928
937
|
];
|
|
929
938
|
TableComponent.propDecorators = {
|
|
@@ -949,7 +958,7 @@ TableModule.decorators = [
|
|
|
949
958
|
TableHeaderRowDefDirective,
|
|
950
959
|
TableHeaderCellDefDirective,
|
|
951
960
|
TableColumnDefDirective,
|
|
952
|
-
|
|
961
|
+
TableScrollShadowDirective,
|
|
953
962
|
TablePlaceholderOutlet,
|
|
954
963
|
TablePlaceholderDefDirective,
|
|
955
964
|
],
|
|
@@ -965,7 +974,7 @@ TableModule.decorators = [
|
|
|
965
974
|
TableHeaderRowDefDirective,
|
|
966
975
|
TableHeaderCellDefDirective,
|
|
967
976
|
TableColumnDefDirective,
|
|
968
|
-
|
|
977
|
+
TableScrollShadowDirective,
|
|
969
978
|
TablePlaceholderOutlet,
|
|
970
979
|
TablePlaceholderDefDirective,
|
|
971
980
|
],
|
|
@@ -10608,5 +10617,5 @@ StepsModule.decorators = [
|
|
|
10608
10617
|
* Generated bundle index. Do not edit.
|
|
10609
10618
|
*/
|
|
10610
10619
|
|
|
10611
|
-
export { AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, BackTopComponent, BackTopModule, 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, CustomAutoCompleteDirective, DATA, DATE, DATE_NAV_RANGES, DATE_TYPES, DAY, DAY_PANEL_COLUMN_COUNT, DAY_PANEL_ROW_COUNT, DIALOG_DATA, DISPLAY_DELAY, DateNavRange, DatePickerModule, DatePickerPanelComponent, DatePickerTriggerComponent, DatePickerType, DateRangePickerPanelComponent, DialogCloseDirective, 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, InputComponent, InputGroupComponent, InputModule, LabelPosition, MESSAGE_CONFIG, MESSAGE_DEFAULT_CONFIG, MINUTE, MINUTE_ITEMS, MONTH, MONTH_PANEL_COLUMN_COUNT, MONTH_PANEL_ROW_COUNT, MenuComponent, MenuContentDirective, MenuGroupComponent, 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, 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, TableHeaderCellDefDirective, TableHeaderCellDirective, TableHeaderRowComponent, TableHeaderRowDefDirective, TableModule, TableOfContentsModule, TableRowComponent, TableRowDefDirective,
|
|
10620
|
+
export { AccordionComponent, AccordionItemComponent, AccordionItemContentDirective, AccordionItemHeaderDirective, AccordionModule, AnchorComponent, AnchorDirective, AnchorDirectiveChild, AnchorLabelDirective, AnchorModule, AnchorTreeComponent, AuiSelectValidators, AutoCompleteDirective, AutocompleteComponent, AutocompleteModule, AutocompletePlaceholderComponent, BackTopComponent, BackTopModule, 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, CustomAutoCompleteDirective, DATA, DATE, DATE_NAV_RANGES, DATE_TYPES, DAY, DAY_PANEL_COLUMN_COUNT, DAY_PANEL_ROW_COUNT, DIALOG_DATA, DISPLAY_DELAY, DateNavRange, DatePickerModule, DatePickerPanelComponent, DatePickerTriggerComponent, DatePickerType, DateRangePickerPanelComponent, DialogCloseDirective, 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, InputComponent, InputGroupComponent, InputModule, LabelPosition, MESSAGE_CONFIG, MESSAGE_DEFAULT_CONFIG, MINUTE, MINUTE_ITEMS, MONTH, MONTH_PANEL_COLUMN_COUNT, MONTH_PANEL_ROW_COUNT, MenuComponent, MenuContentDirective, MenuGroupComponent, 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, 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, TableHeaderCellDefDirective, TableHeaderCellDirective, TableHeaderRowComponent, TableHeaderRowDefDirective, TableModule, TableOfContentsModule, TableRowComponent, TableRowDefDirective, TableScrollShadowDirective, TabsModule, TagComponent, TagModule, TagType, TagsInputComponent, ThemeModule, ThemePipe, ThemeService, TimePickerComponent, TimePickerControlType, TimePickerModule, TimePickerPanelComponent, TocContainerDirective, TocContentDirective, TocLinkDirective, TooltipActiveDirective, TooltipComponent, TooltipCopyIntl, TooltipDirective, TooltipModule, TooltipTrigger, TooltipType, TreeNodeComponent, TreeNodePlaceholderComponent, TreeSelectComponent, TreeSelectModule, VirtualScrollViewportComponent, YEAR, YEAR_PANEL_COLUMN_COUNT, YEAR_PANEL_ROW_COUNT, _isNumberValue, _tableVirtualScrollDirectiveStrategyFactory, buildBem, coerceAttrBoolean, coerceNumber, coerceString, en, getAnchorTreeItems, getSortDuplicateSortableIdError, getSortHeaderMissingIdError, getSortHeaderNotContainedWithinSortError, getSortInvalidDirectionError, handlePixel, isTemplateRef, isTimePickerModel, isUndefined, last, observeMutationOn, observeResizeOn, scrollIntoView, sleep, watchContentExist, zh, ɵ0, ɵ1, ɵ2, TablePlaceholderDefDirective as ɵa, TablePlaceholderOutlet as ɵb, TableCellComponent as ɵc, TooltipCopyDirective as ɵd, DialogComponent as ɵe, ConfirmDialogComponent as ɵf, BaseRadio as ɵg, InputAddonBeforeDirective as ɵh, InputAddonAfterDirective as ɵi, InputPrefixDirective as ɵj, InputSuffixDirective as ɵk, SharedModule as ɵl, ClickOutsideDirective as ɵm, AutosizeDirective as ɵn, BaseSelect as ɵo, MenuGroupTitleDirective as ɵp, MessageWrapperComponent as ɵq, MessageComponent as ɵr, MessageAnimations as ɵs, BaseMessage as ɵt, NotificationWrapperComponent as ɵu, VirtualForOfDirective as ɵv, _isNumberValue as ɵw, DatePickerComponent as ɵx };
|
|
10612
10621
|
//# sourceMappingURL=alauda-ui.js.map
|