keevo-components 1.8.215 → 1.8.217

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.
@@ -8,6 +8,7 @@ import { ActionItem } from "../components/table/action-item";
8
8
  import { NotificationService } from "../services/notification.service";
9
9
  import { Observable } from "rxjs";
10
10
  import { TreeTableConfig } from "../components/tree-table/tree-table.config";
11
+ import { KvTableComponent } from "../../components/kv-table/kv-table.component";
11
12
  import * as i0 from "@angular/core";
12
13
  export declare abstract class BaseComponentCrudList extends BaseComponentCrud implements OnInit {
13
14
  router: Router;
@@ -16,6 +17,7 @@ export declare abstract class BaseComponentCrudList extends BaseComponentCrud im
16
17
  tableConfig: TableConfig | TreeTableConfig;
17
18
  totalRecords: number;
18
19
  actionsPageList: ActionItem[];
20
+ table: KvTableComponent;
19
21
  constructor(dialogService: DialogService, notificationService: NotificationService, router: Router);
20
22
  ngOnInit(): void;
21
23
  /**
@@ -59,6 +61,7 @@ export declare abstract class BaseComponentCrudList extends BaseComponentCrud im
59
61
  * Método que dispara a atualização da página inteira
60
62
  */
61
63
  protected refresh(): void;
64
+ protected resetTable(): void;
62
65
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentCrudList, never>;
63
66
  static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentCrudList, "ng-component", never, {}, {}, never, never, false, never>;
64
67
  }
@@ -10,6 +10,7 @@ export declare abstract class BaseComponentInput<T> extends BaseComponent<T> imp
10
10
  protected hasError: boolean | undefined;
11
11
  showAsterisk: boolean;
12
12
  placeholder: string;
13
+ autocomplete: string;
13
14
  onBlur: EventEmitter<any>;
14
15
  onInput: EventEmitter<any>;
15
16
  onClose: EventEmitter<any>;
@@ -28,5 +29,5 @@ export declare abstract class BaseComponentInput<T> extends BaseComponent<T> imp
28
29
  onInputInput(event: Event): void;
29
30
  protected setPlaceHolder(p: string): void;
30
31
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentInput<any>, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentInput<any>, "ng-component", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, { "onBlur": "onBlur"; "onInput": "onInput"; "onClose": "onClose"; }, ["contentErrors"], never, false, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentInput<any>, "ng-component", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; }, { "onBlur": "onBlur"; "onInput": "onInput"; "onClose": "onClose"; }, ["contentErrors"], never, false, never>;
32
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.215",
3
+ "version": "1.8.217",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",