keevo-components 1.8.204 → 1.8.206

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.
Files changed (25) hide show
  1. package/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +2 -2
  2. package/esm2022/lib/components/kv-button/kv-button.component.mjs +2 -2
  3. package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +2 -2
  4. package/esm2022/lib/components/kv-chart/kv-chart.component.mjs +2 -2
  5. package/esm2022/lib/components/kv-inputs/kv-check/kv-check.component.mjs +2 -2
  6. package/esm2022/lib/components/kv-inputs/kv-dropdown/kv-dropdown.component.mjs +2 -2
  7. package/esm2022/lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component.mjs +2 -2
  8. package/esm2022/lib/components/kv-inputs/kv-input-mask/kv-input-mask.component.mjs +2 -2
  9. package/esm2022/lib/components/kv-inputs/kv-input-number/kv-input-number.component.mjs +2 -2
  10. package/esm2022/lib/components/kv-inputs/kv-input-password/kv-input-password.component.mjs +2 -2
  11. package/esm2022/lib/components/kv-inputs/kv-input-text/kv-input-text.component.mjs +2 -2
  12. package/esm2022/lib/components/kv-inputs/kv-input-textarea/kv-input-textarea.component.mjs +2 -2
  13. package/esm2022/lib/components/kv-inputs/kv-input-time/kv-input-time.component.mjs +2 -2
  14. package/esm2022/lib/components/kv-inputs/kv-multi-select/kv-multi-select.component.mjs +2 -2
  15. package/esm2022/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.mjs +10 -4
  16. package/esm2022/lib/components/kv-inputs/kv-switch/kv-switch.component.mjs +2 -2
  17. package/esm2022/lib/components/kv-label/kv-label.component.mjs +2 -2
  18. package/esm2022/lib/components/kv-menu/kv-menu.component.mjs +2 -2
  19. package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +2 -2
  20. package/fesm2022/keevo-components.mjs +45 -39
  21. package/fesm2022/keevo-components.mjs.map +1 -1
  22. package/lib/components/kv-inputs/kv-radio-group/kv-radio-group.component.d.ts +3 -1
  23. package/lib/components/kv-table/kv-table.component.d.ts +1 -1
  24. package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
  25. package/package.json +1 -1
@@ -4,6 +4,8 @@ import { ComponentService } from '../../../api/services/component.service';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class KvRadioGroupComponent extends BaseComponentInput<any> implements OnInit, DoCheck {
6
6
  options: any[];
7
+ optionValue: string;
8
+ optionLabel: string;
7
9
  optionValueDefault: any;
8
10
  vertical: boolean;
9
11
  onSelectedOption: EventEmitter<any>;
@@ -14,5 +16,5 @@ export declare class KvRadioGroupComponent extends BaseComponentInput<any> imple
14
16
  selectedDefault(): void;
15
17
  selectedOption(event: any): void;
16
18
  static ɵfac: i0.ɵɵFactoryDeclaration<KvRadioGroupComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<KvRadioGroupComponent, "kv-radio-group", never, { "options": { "alias": "options"; "required": false; }; "optionValueDefault": { "alias": "optionValueDefault"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<KvRadioGroupComponent, "kv-radio-group", never, { "options": { "alias": "options"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValueDefault": { "alias": "optionValueDefault"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
18
20
  }
@@ -119,7 +119,7 @@ export declare class KvTableComponent implements OnInit, DoCheck {
119
119
  onClickEvent(event: any): void;
120
120
  styleSetter(style: string, data: string): void;
121
121
  checkMenuFiltro(col: any): void;
122
- sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
122
+ sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
123
123
  dinamicDisableColumn(col: TableConfigColumn): boolean;
124
124
  checkHideColumns(): void;
125
125
  getCustomTemplate(templatename: string): TemplateRef<any>;
@@ -61,7 +61,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
61
61
  onGlobalFilter(table: Table, event: Event): void;
62
62
  adicionaAcoesTabela(): void;
63
63
  checkMenuFiltro(col: any): void;
64
- sortByPosition(): (elem1: any, elem2: any) => 0 | 1 | -1;
64
+ sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
65
65
  dinamicDisableColumn(col: TableConfigColumn): boolean;
66
66
  dinamicColumnSet(e: any, col: any): void;
67
67
  addColumn(field: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.204",
3
+ "version": "1.8.206",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",