zek 14.2.54 → 14.2.55
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/progress/progress.mjs +19 -4
- package/esm2020/lib/modules/readonly/readonly.directive.mjs +3 -3
- package/fesm2015/zek.mjs +20 -5
- package/fesm2015/zek.mjs.map +1 -1
- package/fesm2020/zek.mjs +20 -5
- package/fesm2020/zek.mjs.map +1 -1
- package/lib/components/types.d.ts +1 -0
- package/lib/modules/progress/progress.d.ts +5 -1
- package/package.json +1 -1
|
@@ -8,6 +8,10 @@ export declare class ZekProgress {
|
|
|
8
8
|
get showValue(): boolean;
|
|
9
9
|
set showValue(v: BooleanInput);
|
|
10
10
|
private _showValue;
|
|
11
|
+
get showTitle(): boolean;
|
|
12
|
+
set showTitle(v: BooleanInput);
|
|
13
|
+
private _showTitle;
|
|
14
|
+
get _title(): string | null;
|
|
11
15
|
get striped(): boolean;
|
|
12
16
|
set striped(v: BooleanInput);
|
|
13
17
|
private _striped;
|
|
@@ -24,6 +28,6 @@ export declare class ZekProgress {
|
|
|
24
28
|
set background(v: Background);
|
|
25
29
|
private _background;
|
|
26
30
|
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, ["*"], false>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZekProgress, "zek-progress", never, { "value": "value"; "showValue": "showValue"; "showTitle": "showTitle"; "striped": "striped"; "animated": "animated"; "label": "label"; "height": "height"; "background": "background"; }, {}, never, ["*"], false>;
|
|
28
32
|
}
|
|
29
33
|
export {};
|