@alauda/ui 6.5.4-beta.11 → 6.5.4-beta.13
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/back-top/back-top.component.mjs +2 -2
- package/esm2020/date-picker/calendar/header/component.mjs +2 -2
- package/esm2020/theme/theme.pipe.mjs +1 -1
- package/fesm2015/alauda-ui.mjs +4 -4
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +4 -4
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/theme/theme.pipe.d.ts +3 -4
package/package.json
CHANGED
package/theme/theme.pipe.d.ts
CHANGED
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, PipeTransform } from '@angular/core';
|
|
2
2
|
import { ThemeService } from './theme.service';
|
|
3
3
|
import { ThemeSet } from './theme.types';
|
|
4
|
-
import { cssVar, rgbColor, rgbaColor } from './utils';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class RgbColorPipe implements PipeTransform {
|
|
7
|
-
transform:
|
|
6
|
+
transform: (color: string) => string;
|
|
8
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<RgbColorPipe, never>;
|
|
9
8
|
static ɵpipe: i0.ɵɵPipeDeclaration<RgbColorPipe, "auiRgbColor">;
|
|
10
9
|
}
|
|
11
10
|
export declare class RgbaColorPipe implements PipeTransform {
|
|
12
|
-
transform:
|
|
11
|
+
transform: ([color, opacity]: [string, number]) => string;
|
|
13
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<RgbaColorPipe, never>;
|
|
14
13
|
static ɵpipe: i0.ɵɵPipeDeclaration<RgbaColorPipe, "auiRgbaColor">;
|
|
15
14
|
}
|
|
16
15
|
export declare class CssVarPipe implements PipeTransform {
|
|
17
|
-
transform:
|
|
16
|
+
transform: (value: string) => string;
|
|
18
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<CssVarPipe, never>;
|
|
19
18
|
static ɵpipe: i0.ɵɵPipeDeclaration<CssVarPipe, "auiCssVar">;
|
|
20
19
|
}
|