keevo-components 2.0.18 → 2.0.20
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/components/kv-pick-list/kv-pick-list.component.mjs +9 -48
- package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +7 -3
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +16 -51
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-dropdown.d.ts +1 -1
- package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +0 -2
- package/lib/components/kv-progress-bar/kv-progress-bar.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -40,7 +40,7 @@ export declare abstract class BaseComponentDropDown extends BaseComponentInput<a
|
|
|
40
40
|
protected addClick(event: Event): void;
|
|
41
41
|
carregarCombo(filtro?: filtroCombo): void;
|
|
42
42
|
protected carregarComboObs(obs: Observable<any>): void;
|
|
43
|
-
emptyMessage(): "
|
|
43
|
+
emptyMessage(): "Nenhum resultado encontrado" | "Digite para pesquisar";
|
|
44
44
|
filterOptions(field: string, value: any): void;
|
|
45
45
|
protected listar(): any;
|
|
46
46
|
protected listarCombo(value: any): any;
|
|
@@ -6,7 +6,6 @@ export declare class KvPickListComponent implements OnInit {
|
|
|
6
6
|
private fb;
|
|
7
7
|
picklist: PickList;
|
|
8
8
|
form: FormGroup;
|
|
9
|
-
ultimoItemSelecionado: any[];
|
|
10
9
|
constructor(fb: FormBuilder);
|
|
11
10
|
itemIdField: string;
|
|
12
11
|
breakpoint: string;
|
|
@@ -42,7 +41,6 @@ export declare class KvPickListComponent implements OnInit {
|
|
|
42
41
|
OnSourceSelect(event: any): void;
|
|
43
42
|
OnTargetSelect(event: any): void;
|
|
44
43
|
onSelectAll(): void;
|
|
45
|
-
onKeyDown(event: any, picklist: any): void;
|
|
46
44
|
selectAllItems(isSelected: boolean): void;
|
|
47
45
|
selectCheckBox(item: any): void;
|
|
48
46
|
isItemSelected(item: any): boolean;
|
|
@@ -12,16 +12,19 @@ export declare class ProgressBarComponent {
|
|
|
12
12
|
maxValue: number | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* Label value of the progress.
|
|
15
|
+
* @deprecated Use label instead.
|
|
15
16
|
* @group Props
|
|
16
17
|
*/
|
|
17
18
|
label: string | undefined;
|
|
18
19
|
/**
|
|
19
20
|
* Whether to display the progress bar value.
|
|
21
|
+
* @deprecated Use showValue instead.
|
|
20
22
|
* @group Props
|
|
21
23
|
*/
|
|
22
24
|
showValue: boolean;
|
|
23
25
|
/**
|
|
24
26
|
* Whether to display the progress bar value.
|
|
27
|
+
* @deprecated Use showValue instead.
|
|
25
28
|
* @group Props
|
|
26
29
|
*/
|
|
27
30
|
showLabel: boolean;
|
|
@@ -62,6 +65,7 @@ export declare class ProgressBarComponent {
|
|
|
62
65
|
* @group Props
|
|
63
66
|
*/
|
|
64
67
|
color: string | undefined;
|
|
68
|
+
progressBarHeight: string | undefined;
|
|
65
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
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>;
|
|
70
|
+
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; }; "progressBarHeight": { "alias": "progressBarHeight"; "required": false; }; }, {}, never, never, false, never>;
|
|
67
71
|
}
|