zek 14.2.48 → 14.2.50
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/components/types.mjs +1 -1
- package/esm2020/lib/modules/index.mjs +2 -1
- package/esm2020/lib/modules/progress/index.mjs +3 -0
- package/esm2020/lib/modules/progress/module.mjs +26 -0
- package/esm2020/lib/modules/progress/progress.mjs +82 -0
- package/esm2020/lib/utils/convert.mjs +10 -1
- package/esm2020/lib/utils/math-helper.mjs +2 -2
- package/esm2020/lib/utils/object-helper.mjs +1 -4
- package/fesm2015/zek.mjs +110 -5
- package/fesm2015/zek.mjs.map +1 -1
- package/fesm2020/zek.mjs +110 -5
- package/fesm2020/zek.mjs.map +1 -1
- package/lib/components/types.d.ts +1 -0
- package/lib/modules/index.d.ts +1 -0
- package/lib/modules/progress/index.d.ts +2 -0
- package/lib/modules/progress/module.d.ts +9 -0
- package/lib/modules/progress/progress.d.ts +29 -0
- package/lib/utils/convert.d.ts +2 -0
- package/lib/utils/math-helper.d.ts +1 -1
- package/lib/utils/object-helper.d.ts +0 -1
- package/package.json +1 -1
package/lib/modules/index.d.ts
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./progress";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@ngx-translate/core";
|
|
5
|
+
export declare class ProgressModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressModule, [typeof i1.ZekProgress], [typeof i2.CommonModule, typeof i3.TranslateModule], [typeof i1.ZekProgress]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { BooleanInput, NumberInput } from '../../components';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
declare type Background = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'light' | 'dark' | 'body' | 'white' | 'transparent';
|
|
4
|
+
export declare class ZekProgress {
|
|
5
|
+
get value(): number;
|
|
6
|
+
set value(v: NumberInput);
|
|
7
|
+
private _value;
|
|
8
|
+
get showValue(): boolean;
|
|
9
|
+
set showValue(v: BooleanInput);
|
|
10
|
+
private _showValue;
|
|
11
|
+
get striped(): boolean;
|
|
12
|
+
set striped(v: BooleanInput);
|
|
13
|
+
private _striped;
|
|
14
|
+
get animated(): boolean;
|
|
15
|
+
set animated(v: BooleanInput);
|
|
16
|
+
private _animated;
|
|
17
|
+
get label(): string | null | undefined;
|
|
18
|
+
set label(v: string | null | undefined);
|
|
19
|
+
private _label;
|
|
20
|
+
get height(): NumberInput;
|
|
21
|
+
set height(v: NumberInput);
|
|
22
|
+
private _height;
|
|
23
|
+
get background(): Background;
|
|
24
|
+
set background(v: Background);
|
|
25
|
+
private _background;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ZekProgress, 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>;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
package/lib/utils/convert.d.ts
CHANGED