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.
@@ -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
- * Current value of the progress.
5
- * @group Props
6
- */
4
+ * Current value of the progress.
5
+ * @group Props
6
+ */
7
7
  value: number | undefined;
8
8
  /**
9
- * Max value of the progress.
10
- * @group Props
11
- */
9
+ * Max value of the progress.
10
+ * @group Props
11
+ */
12
12
  maxValue: number | undefined;
13
13
  /**
14
- * Label value of the progress.
15
- * @group Props
16
- */
14
+ * Label value of the progress.
15
+ * @group Props
16
+ */
17
17
  label: string | undefined;
18
18
  /**
19
- * Whether to display the progress bar value.
20
- * @group Props
21
- */
19
+ * Whether to display the progress bar value.
20
+ * @group Props
21
+ */
22
22
  showValue: boolean;
23
23
  /**
24
- * Whether to display the progress bar value.
25
- * @group Props
26
- */
24
+ * Whether to display the progress bar value.
25
+ * @group Props
26
+ */
27
27
  showLabel: boolean;
28
28
  /**
29
- * Class of the element.
30
- * @group Props
31
- */
29
+ * Class of the element.
30
+ * @group Props
31
+ */
32
32
  styleClass: string | undefined;
33
33
  /**
34
- * Class of the element.
35
- * @group Props
36
- */
34
+ * Class of the element.
35
+ * @group Props
36
+ */
37
37
  labelStyleClass: string | undefined;
38
38
  /**
39
- * Class of the element.
40
- * @group Props
41
- */
39
+ * Class of the element.
40
+ * @group Props
41
+ */
42
42
  barStyleClass: string | undefined;
43
43
  /**
44
- * Inline style of the element.
45
- * @group Props
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
- * Unit sign appended to the value.
52
- * @group Props
53
- */
51
+ * Unit sign appended to the value.
52
+ * @group Props
53
+ */
54
54
  unit: string;
55
55
  /**
56
- * Defines the mode of the progress
57
- * @group Props
58
- */
59
- mode: string;
56
+ * Defines the mode of the progress
57
+ * @group Props
58
+ */
59
+ mode: 'determinate' | 'indeterminate';
60
60
  /**
61
- * Color for the background of the progress.
62
- * @group Props
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.170",
3
+ "version": "1.8.172",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",