zek 14.2.49 → 14.2.51
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/lib/modules/progress/progress.mjs +14 -32
- package/esm2020/lib/utils/convert.mjs +9 -6
- package/esm2020/lib/utils/math-helper.mjs +1 -1
- package/esm2020/lib/utils/object-helper.mjs +1 -4
- package/fesm2015/zek.mjs +20 -38
- package/fesm2015/zek.mjs.map +1 -1
- package/fesm2020/zek.mjs +20 -38
- package/fesm2020/zek.mjs.map +1 -1
- package/lib/modules/progress/progress.d.ts +11 -14
- package/lib/utils/convert.d.ts +2 -1
- package/lib/utils/object-helper.d.ts +0 -1
- package/package.json +1 -1
|
@@ -1,32 +1,29 @@
|
|
|
1
1
|
import { BooleanInput, NumberInput } from '../../components';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
declare type Background = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'body' | 'white' | 'transparent';
|
|
3
4
|
export declare class ZekProgress {
|
|
4
|
-
private _max;
|
|
5
|
-
get max(): number;
|
|
6
|
-
set max(v: NumberInput);
|
|
7
|
-
private _value;
|
|
8
5
|
get value(): number;
|
|
9
6
|
set value(v: NumberInput);
|
|
10
|
-
|
|
11
|
-
private _showValue;
|
|
7
|
+
private _value;
|
|
12
8
|
get showValue(): boolean;
|
|
13
9
|
set showValue(v: BooleanInput);
|
|
14
|
-
private
|
|
10
|
+
private _showValue;
|
|
15
11
|
get striped(): boolean;
|
|
16
12
|
set striped(v: BooleanInput);
|
|
17
|
-
private
|
|
13
|
+
private _striped;
|
|
18
14
|
get animated(): boolean;
|
|
19
15
|
set animated(v: BooleanInput);
|
|
20
|
-
private
|
|
16
|
+
private _animated;
|
|
21
17
|
get label(): string | null | undefined;
|
|
22
18
|
set label(v: string | null | undefined);
|
|
23
|
-
private
|
|
19
|
+
private _label;
|
|
24
20
|
get height(): NumberInput;
|
|
25
21
|
set height(v: NumberInput);
|
|
26
|
-
|
|
22
|
+
private _height;
|
|
23
|
+
get background(): Background;
|
|
24
|
+
set background(v: Background);
|
|
27
25
|
private _background;
|
|
28
|
-
get background(): 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'body' | 'white' | 'transparent' | null | undefined;
|
|
29
|
-
set background(v: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'body' | 'white' | 'transparent' | null | undefined);
|
|
30
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZekProgress, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ZekProgress, "zek-progress", never, { "
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZekProgress, "zek-progress", never, { "value": "value"; "showValue": "showValue"; "striped": "striped"; "animated": "animated"; "label": "label"; "height": "height"; "background": "background"; }, {}, never, never, false>;
|
|
32
28
|
}
|
|
29
|
+
export {};
|
package/lib/utils/convert.d.ts
CHANGED