@alauda/ui 6.5.10-beta.39 → 6.5.10-beta.40
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/button/button.types.d.ts +0 -2
- package/card/helper-directives.d.ts +1 -2
- package/esm2022/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/button/button.types.mjs +1 -3
- package/esm2022/card/helper-directives.mjs +4 -7
- package/esm2022/i18n/i18n.service.mjs +5 -3
- package/esm2022/paginator/paginator.component.mjs +2 -16
- package/esm2022/radio/radio-group/radio-group.component.mjs +2 -7
- package/esm2022/steps/steps.component.mjs +4 -18
- package/esm2022/steps/types.mjs +1 -1
- package/esm2022/tabs/tab-header-active-indicator.component.mjs +4 -9
- package/esm2022/tabs/tab-header.component.mjs +2 -4
- package/fesm2022/alauda-ui.mjs +18 -61
- package/fesm2022/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/paginator/paginator.component.d.ts +1 -9
- package/radio/radio-group/radio-group.component.d.ts +1 -2
- package/steps/steps.component.d.ts +1 -2
- package/steps/types.d.ts +0 -1
package/package.json
CHANGED
|
@@ -2,12 +2,6 @@ import { ChangeDetectorRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { Bem } from '../utils';
|
|
3
3
|
import { PaginatorIntl } from './paginator-intl';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class PageEvent {
|
|
6
|
-
pageIndex: number;
|
|
7
|
-
previousPageIndex: number;
|
|
8
|
-
pageSize: number;
|
|
9
|
-
length: number;
|
|
10
|
-
}
|
|
11
5
|
export declare class PaginatorComponent implements OnDestroy {
|
|
12
6
|
intl: PaginatorIntl;
|
|
13
7
|
private readonly cdr;
|
|
@@ -20,8 +14,6 @@ export declare class PaginatorComponent implements OnDestroy {
|
|
|
20
14
|
set pageSize(val: number);
|
|
21
15
|
pageSizeOptions: number[];
|
|
22
16
|
total: number;
|
|
23
|
-
get length(): number;
|
|
24
|
-
set length(val: number);
|
|
25
17
|
layout: string | string[];
|
|
26
18
|
disabled: boolean;
|
|
27
19
|
readonly pageIndexChange: EventEmitter<number>;
|
|
@@ -41,5 +33,5 @@ export declare class PaginatorComponent implements OnDestroy {
|
|
|
41
33
|
onKeydown(event: KeyboardEvent): void;
|
|
42
34
|
trackByIndex(index: number): number;
|
|
43
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "aui-paginator", never, { "pageIndex": { "alias": "pageIndex"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "total": { "alias": "total"; "required": false; }; "
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorComponent, "aui-paginator", never, { "pageIndex": { "alias": "pageIndex"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "total": { "alias": "total"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "pageIndexChange": "pageIndexChange"; "currentPageChange": "currentPageChange"; "pageSizeChange": "pageSizeChange"; }, never, ["*"], false, never>;
|
|
45
37
|
}
|
|
@@ -8,7 +8,6 @@ export declare class RadioGroupComponent extends CommonFormControl<any> {
|
|
|
8
8
|
private readonly name$$;
|
|
9
9
|
set size(val: RadioSize);
|
|
10
10
|
direction: 'row' | 'column';
|
|
11
|
-
set isPlain(val: boolean);
|
|
12
11
|
set plain(val: boolean);
|
|
13
12
|
set name(val: string);
|
|
14
13
|
size$: Observable<RadioSize>;
|
|
@@ -17,5 +16,5 @@ export declare class RadioGroupComponent extends CommonFormControl<any> {
|
|
|
17
16
|
onRadioChange(value: any): void;
|
|
18
17
|
onRadioBlur(): void;
|
|
19
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "aui-radio-group", never, { "size": { "alias": "size"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "aui-radio-group", never, { "size": { "alias": "size"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "plain": { "alias": "plain"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
21
20
|
}
|
|
@@ -7,7 +7,6 @@ export declare class StepsComponent implements OnInit, OnDestroy {
|
|
|
7
7
|
private _steps;
|
|
8
8
|
get steps(): StepItem[];
|
|
9
9
|
set steps(val: StepItem[]);
|
|
10
|
-
linear: boolean;
|
|
11
10
|
get currentIndex(): number;
|
|
12
11
|
set currentIndex(index: number);
|
|
13
12
|
orientation: StepsOrientation;
|
|
@@ -32,5 +31,5 @@ export declare class StepsComponent implements OnInit, OnDestroy {
|
|
|
32
31
|
isLastActive(i: number, steps: StepItem[]): boolean;
|
|
33
32
|
ngOnDestroy(): void;
|
|
34
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepsComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "aui-steps", ["auiSteps"], { "steps": { "alias": "steps"; "required": false; }; "
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StepsComponent, "aui-steps", ["auiSteps"], { "steps": { "alias": "steps"; "required": false; }; "currentIndex": { "alias": "currentIndex"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "type": { "alias": "type"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; }, { "currentIndexChange": "currentIndexChange"; "selectedIndexChange": "selectedIndexChange"; }, never, never, false, never>;
|
|
36
35
|
}
|
package/steps/types.d.ts
CHANGED