keevo-components 1.8.170 → 1.8.172
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/components/table/table.config.column.mjs +1 -1
- package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +13 -13
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +13 -13
- package/fesm2022/keevo-components.mjs +35 -32
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/components/table/table.config.column.d.ts +2 -0
- package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +37 -37
- package/lib/components/kv-table/kv-table.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -23,4 +23,6 @@ export interface TableConfigColumn {
|
|
|
23
23
|
boolean?: boolean;
|
|
24
24
|
templateOnly?: 'pai' | 'filho';
|
|
25
25
|
tagColor?: ((rowData: any, col: any, data?: any) => string);
|
|
26
|
+
tooltipTag?: ((rowData: any, col: any, data?: any) => string);
|
|
27
|
+
tooltip?: ((rowData: any, col: any, data?: any) => string);
|
|
26
28
|
}
|
|
@@ -1,66 +1,66 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ProgressBarComponent {
|
|
3
3
|
/**
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
* Current value of the progress.
|
|
5
|
+
* @group Props
|
|
6
|
+
*/
|
|
7
7
|
value: number | undefined;
|
|
8
8
|
/**
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
* Max value of the progress.
|
|
10
|
+
* @group Props
|
|
11
|
+
*/
|
|
12
12
|
maxValue: number | undefined;
|
|
13
13
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
* Label value of the progress.
|
|
15
|
+
* @group Props
|
|
16
|
+
*/
|
|
17
17
|
label: string | undefined;
|
|
18
18
|
/**
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
* Whether to display the progress bar value.
|
|
20
|
+
* @group Props
|
|
21
|
+
*/
|
|
22
22
|
showValue: boolean;
|
|
23
23
|
/**
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
* Whether to display the progress bar value.
|
|
25
|
+
* @group Props
|
|
26
|
+
*/
|
|
27
27
|
showLabel: boolean;
|
|
28
28
|
/**
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
* Class of the element.
|
|
30
|
+
* @group Props
|
|
31
|
+
*/
|
|
32
32
|
styleClass: string | undefined;
|
|
33
33
|
/**
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
* Class of the element.
|
|
35
|
+
* @group Props
|
|
36
|
+
*/
|
|
37
37
|
labelStyleClass: string | undefined;
|
|
38
38
|
/**
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
* Class of the element.
|
|
40
|
+
* @group Props
|
|
41
|
+
*/
|
|
42
42
|
barStyleClass: string | undefined;
|
|
43
43
|
/**
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
44
|
+
* Inline style of the element.
|
|
45
|
+
* @group Props
|
|
46
|
+
*/
|
|
47
47
|
style: {
|
|
48
48
|
[klass: string]: any;
|
|
49
49
|
} | null | undefined;
|
|
50
50
|
/**
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
* Unit sign appended to the value.
|
|
52
|
+
* @group Props
|
|
53
|
+
*/
|
|
54
54
|
unit: string;
|
|
55
55
|
/**
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
mode:
|
|
56
|
+
* Defines the mode of the progress
|
|
57
|
+
* @group Props
|
|
58
|
+
*/
|
|
59
|
+
mode: 'determinate' | 'indeterminate';
|
|
60
60
|
/**
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
* Color for the background of the progress.
|
|
62
|
+
* @group Props
|
|
63
|
+
*/
|
|
64
64
|
color: string | undefined;
|
|
65
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
66
66
|
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; }; "showLabel": { "alias": "showLabel"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "labelStyleClass": { "alias": "labelStyleClass"; "required": false; }; "barStyleClass": { "alias": "barStyleClass"; "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>;
|
|
@@ -47,6 +47,9 @@ export declare class KvTableComponent implements OnInit, DoCheck {
|
|
|
47
47
|
pageLinksOptions: number;
|
|
48
48
|
showFirstLastIcon: boolean;
|
|
49
49
|
tableSize: number;
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated Use a propriedade "tagColor" na configuração da coluna para estilizar a tag
|
|
52
|
+
*/
|
|
50
53
|
applyStyle: Function;
|
|
51
54
|
filterColumnsBtn: boolean;
|
|
52
55
|
filtrosAvancados: boolean;
|