@alauda/ui 6.4.2-beta.3 → 6.4.2-beta.32
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/card/helper-directives.d.ts +2 -1
- package/dialog/confirm-dialog/confirm-dialog-config.d.ts +2 -1
- package/dialog/confirm-dialog/confirm-dialog.component.d.ts +2 -0
- package/esm2020/autocomplete/autocomplete.component.mjs +2 -2
- package/esm2020/card/card.component.mjs +2 -2
- package/esm2020/card/helper-directives.mjs +10 -4
- package/esm2020/card/section.component.mjs +2 -2
- package/esm2020/checkbox/checkbox.component.mjs +2 -2
- package/esm2020/dialog/confirm-dialog/confirm-dialog-config.mjs +1 -1
- package/esm2020/dialog/confirm-dialog/confirm-dialog.component.mjs +6 -4
- package/esm2020/dialog/dialog.component.mjs +2 -2
- package/esm2020/input/tags-input/tags-input.component.mjs +2 -2
- package/esm2020/notification/notification.component.mjs +3 -3
- package/esm2020/paginator/paginator.component.mjs +2 -2
- package/esm2020/select/multi-select/multi-select.component.mjs +2 -2
- package/esm2020/select/select.component.mjs +2 -2
- package/esm2020/table/table-cell.directive.mjs +8 -4
- package/esm2020/table/table-placeholder.directive.mjs +4 -12
- package/esm2020/table/table.component.mjs +8 -6
- package/esm2020/tag/check-tag/check-tag.component.mjs +2 -2
- package/esm2020/time-picker/panel/panel.component.mjs +2 -2
- package/esm2020/tree-select/tree-select.component.mjs +3 -3
- package/esm2020/utils/fn.mjs +2 -1
- package/esm2020/utils/operators.mjs +15 -12
- package/fesm2015/alauda-ui.mjs +69 -58
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +69 -58
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/table/table-cell.directive.d.ts +2 -1
- package/table/table-placeholder.directive.d.ts +1 -5
- package/theme/_mixin.scss +4 -0
- package/utils/fn.d.ts +1 -0
- package/utils/operators.d.ts +7 -8
package/package.json
CHANGED
|
@@ -3,7 +3,8 @@ import { ElementRef } from '@angular/core';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/** Cell template container that adds the right classes and role. */
|
|
5
5
|
export declare class TableCellDirective extends CdkCell {
|
|
6
|
+
direction: 'row' | 'column';
|
|
6
7
|
constructor(columnDef: CdkColumnDef, elementRef: ElementRef<HTMLElement>);
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableCellDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TableCellDirective, "aui-table-cell", never, {}, {}, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TableCellDirective, "aui-table-cell", never, { "direction": "direction"; }, {}, never>;
|
|
9
10
|
}
|
|
@@ -1,15 +1,11 @@
|
|
|
1
1
|
import { RowOutlet } from '@angular/cdk/table';
|
|
2
2
|
import { ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
|
-
import { BehaviorSubject } from 'rxjs';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export declare class TablePlaceholderDefDirective {
|
|
6
5
|
templateRef: TemplateRef<any>;
|
|
7
6
|
constructor(templateRef: TemplateRef<any>);
|
|
8
|
-
def$$: BehaviorSubject<boolean>;
|
|
9
|
-
def$: import("rxjs").Observable<boolean>;
|
|
10
|
-
set auiTablePlaceholderDef(show: boolean);
|
|
11
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TablePlaceholderDefDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TablePlaceholderDefDirective, "ng-template[auiTablePlaceholderDef]", never, {
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TablePlaceholderDefDirective, "ng-template[auiTablePlaceholderDef]", never, {}, {}, never>;
|
|
13
9
|
}
|
|
14
10
|
export declare class TablePlaceholderOutletDirective implements RowOutlet {
|
|
15
11
|
viewContainer: ViewContainerRef;
|
package/theme/_mixin.scss
CHANGED
package/utils/fn.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ import { TemplateRef } from '@angular/core';
|
|
|
2
2
|
export declare function isUndefined(val: unknown): boolean;
|
|
3
3
|
export declare const last: <T>(values: T[]) => T;
|
|
4
4
|
export declare const isTemplateRef: (label: any) => label is TemplateRef<unknown>;
|
|
5
|
+
export declare const isString: (label: any) => label is string;
|
|
5
6
|
export declare const handlePixel: (value: number | string) => string;
|
package/utils/operators.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export declare const publishRef: <T>(bufferSize?: number, windowTime?: number) => import("rxjs").UnaryFunction<import("rxjs").Observable<T>, import("rxjs").Observable<T>>;
|
|
1
|
+
import { TimestampProvider } from 'rxjs';
|
|
2
|
+
export declare type PublishRefConfig<T> = number | (import('rxjs/internal/operators/share').ShareConfig<T> & {
|
|
3
|
+
bufferSize?: number;
|
|
4
|
+
windowTime?: number;
|
|
5
|
+
timestampProvider?: TimestampProvider;
|
|
6
|
+
});
|
|
7
|
+
export declare const publishRef: <T>(bufferSizeOrConfig?: PublishRefConfig<T>) => import("rxjs").MonoTypeOperatorFunction<T>;
|