keevo-components 1.8.21 → 1.8.23
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/esm2022/lib/api/services/notification.service.mjs +9 -9
- package/esm2022/lib/avatar/avatar.component.mjs +3 -3
- package/esm2022/lib/inputs/input-text-checkbox/input-text-checkbox.component.mjs +3 -3
- package/esm2022/lib/keevo-components.module.mjs +14 -7
- package/esm2022/lib/label/label.component.mjs +3 -3
- package/esm2022/lib/label/label.module.mjs +1 -1
- package/esm2022/lib/progress-bar/kv-progress-bar.module.mjs +28 -0
- package/esm2022/lib/progress-bar/progress-bar.component.mjs +47 -0
- package/esm2022/lib/table-edit/table-edit.component.mjs +3 -3
- package/esm2022/lib/table-edit/table-edit.module.mjs +1 -1
- package/esm2022/lib/treetable/treetable.component.mjs +3 -3
- package/esm2022/public-api.mjs +6 -1
- package/fesm2022/keevo-components.mjs +98 -25
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/services/notification.service.d.ts +4 -4
- package/lib/keevo-components.module.d.ts +3 -2
- package/lib/progress-bar/kv-progress-bar.module.d.ts +9 -0
- package/lib/progress-bar/progress-bar.component.d.ts +52 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -16,10 +16,10 @@ export declare class NotificationService {
|
|
|
16
16
|
constructor(confirmationService: ConfirmationService, messageService: MessageService);
|
|
17
17
|
question(config: QuestionConfig): void;
|
|
18
18
|
dialog(config: DialogConfig): void;
|
|
19
|
-
toastSuccess(message: string): void;
|
|
20
|
-
toastInfo(message: string): void;
|
|
21
|
-
toastWarn(message: string): void;
|
|
22
|
-
toastError(message: string): void;
|
|
19
|
+
toastSuccess(message: string, time?: number): void;
|
|
20
|
+
toastInfo(message: string, time?: number): void;
|
|
21
|
+
toastWarn(message: string, time?: number): void;
|
|
22
|
+
toastError(message: string, time?: number): void;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
24
24
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
25
25
|
}
|
|
@@ -15,9 +15,10 @@ import * as i13 from "./loader/kvloader.module";
|
|
|
15
15
|
import * as i14 from "./avatar/kv-avatar.module";
|
|
16
16
|
import * as i15 from "./carousel/kv-carousel.module";
|
|
17
17
|
import * as i16 from "./treetable/treetable.module";
|
|
18
|
-
import * as i17 from "./
|
|
18
|
+
import * as i17 from "./progress-bar/kv-progress-bar.module";
|
|
19
|
+
import * as i18 from "./table-edit/table-edit.module";
|
|
19
20
|
export declare class KeevoComponentsModule {
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule, typeof i12.KvPageFormModule, typeof i13.KvLoaderModule, typeof i14.KvAvatarModule, typeof i15.KvCarouselModule, typeof i16.TreetableModule], [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule, typeof i12.KvPageFormModule, typeof i13.KvLoaderModule, typeof i14.KvAvatarModule, typeof i15.KvCarouselModule, typeof i16.TreetableModule, typeof i17.
|
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule, typeof i12.KvPageFormModule, typeof i13.KvLoaderModule, typeof i14.KvAvatarModule, typeof i15.KvCarouselModule, typeof i16.TreetableModule, typeof i17.KvProgressBarModule], [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule, typeof i12.KvPageFormModule, typeof i13.KvLoaderModule, typeof i14.KvAvatarModule, typeof i15.KvCarouselModule, typeof i16.TreetableModule, typeof i18.KvTableEditModule, typeof i17.KvProgressBarModule]>;
|
|
22
23
|
static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
|
|
23
24
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./progress-bar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../api/modules/primeng.module";
|
|
5
|
+
export declare class KvProgressBarModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvProgressBarModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvProgressBarModule, [typeof i1.ProgressBarComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule], [typeof i1.ProgressBarComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvProgressBarModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ProgressBarComponent {
|
|
3
|
+
/**
|
|
4
|
+
* Current value of the progress.
|
|
5
|
+
* @group Props
|
|
6
|
+
*/
|
|
7
|
+
value: number | undefined;
|
|
8
|
+
/**
|
|
9
|
+
* Max value of the progress.
|
|
10
|
+
* @group Props
|
|
11
|
+
*/
|
|
12
|
+
maxValue: number | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* Label value of the progress.
|
|
15
|
+
* @group Props
|
|
16
|
+
*/
|
|
17
|
+
label: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* Whether to display the progress bar value.
|
|
20
|
+
* @group Props
|
|
21
|
+
*/
|
|
22
|
+
showValue: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Class of the element.
|
|
25
|
+
* @group Props
|
|
26
|
+
*/
|
|
27
|
+
styleClass: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* Inline style of the element.
|
|
30
|
+
* @group Props
|
|
31
|
+
*/
|
|
32
|
+
style: {
|
|
33
|
+
[klass: string]: any;
|
|
34
|
+
} | null | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* Unit sign appended to the value.
|
|
37
|
+
* @group Props
|
|
38
|
+
*/
|
|
39
|
+
unit: string;
|
|
40
|
+
/**
|
|
41
|
+
* Defines the mode of the progress
|
|
42
|
+
* @group Props
|
|
43
|
+
*/
|
|
44
|
+
mode: string;
|
|
45
|
+
/**
|
|
46
|
+
* Color for the background of the progress.
|
|
47
|
+
* @group Props
|
|
48
|
+
*/
|
|
49
|
+
color: string | undefined;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "kv-progress-bar", never, { "value": { "alias": "value"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showValue": { "alias": "showValue"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "style": { "alias": "style"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
|
|
52
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -149,3 +149,8 @@ export * from './lib/avatar/kv-avatar.module';
|
|
|
149
149
|
*/
|
|
150
150
|
export * from './lib/carousel/carousel.component';
|
|
151
151
|
export * from './lib/carousel/kv-carousel.module';
|
|
152
|
+
/**
|
|
153
|
+
* Progress Bar
|
|
154
|
+
*/
|
|
155
|
+
export * from './lib/progress-bar/progress-bar.component';
|
|
156
|
+
export * from './lib/progress-bar/kv-progress-bar.module';
|