keevo-components 1.5.55 → 1.5.57

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.
@@ -0,0 +1,37 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { BaseComponentInput } from './base-component-input';
3
+ import { ComponentService } from '../services/component.service';
4
+ import { filtroCombo } from '../components/dropdown/filtro.combo';
5
+ import * as i0 from "@angular/core";
6
+ export declare abstract class BaseComponentMultiSelect extends BaseComponentInput<any> implements OnInit {
7
+ filteredOptions: any[];
8
+ options: any[];
9
+ optionLabel: string;
10
+ optionValue: string;
11
+ optionDisabled: string;
12
+ group: boolean;
13
+ optionGroupLabel: string;
14
+ optionGroupChildren: string;
15
+ filter: boolean;
16
+ lazy: boolean;
17
+ showClear: boolean;
18
+ widthField?: string;
19
+ onClick: EventEmitter<any>;
20
+ onSelectionChange: EventEmitter<any>;
21
+ onSelectionValue: EventEmitter<any>;
22
+ onPanelHide: EventEmitter<any>;
23
+ constructor(componentService: ComponentService);
24
+ ngOnInit(): void;
25
+ panelHide(event: Event): void;
26
+ carregarCombo(filtro?: filtroCombo): void;
27
+ private carregarComboObs;
28
+ filterOptions(field: string, value: any): void;
29
+ protected listar(): any;
30
+ protected listarCombo(value: any): any;
31
+ protected onInputChange(event: any): void;
32
+ onInputClick(event: any): void;
33
+ onInputFilter(event: any): void;
34
+ writeValue(value: any): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponentMultiSelect, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponentMultiSelect, "ng-component", never, { "filteredOptions": "filteredOptions"; "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionDisabled": "optionDisabled"; "group": "group"; "optionGroupLabel": "optionGroupLabel"; "optionGroupChildren": "optionGroupChildren"; "filter": "filter"; "lazy": "lazy"; "showClear": "showClear"; "widthField": "widthField"; }, { "onClick": "onClick"; "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; "onPanelHide": "onPanelHide"; }, never, never, false, never>;
37
+ }
@@ -11,6 +11,7 @@ export interface TableConfigColumn {
11
11
  expiredDate?: boolean;
12
12
  icon?: string;
13
13
  iconField?: boolean;
14
+ indIconMaterial?: boolean;
14
15
  checked?: boolean;
15
16
  hideColumn?: boolean;
16
17
  fixedColumn?: boolean;
@@ -1,6 +1,5 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { BaseComponentInput } from '../../api/base-components/base-component-input';
3
- import { ComponentService } from '../../api/services/component.service';
4
3
  import * as i0 from "@angular/core";
5
4
  export declare class MultiSelectComponent extends BaseComponentInput<any> implements OnInit {
6
5
  options: any;
@@ -10,11 +9,10 @@ export declare class MultiSelectComponent extends BaseComponentInput<any> implem
10
9
  showClear: boolean;
11
10
  onSelectionChange: EventEmitter<any>;
12
11
  onPanelHide: EventEmitter<any>;
13
- constructor(componentService: ComponentService);
14
12
  ngOnInit(): void;
13
+ panelHide(event: Event): void;
15
14
  get baseInputClass(): string;
16
15
  selectionChange(event: Event): void;
17
- panelHide(event: Event): void;
18
16
  static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
19
17
  static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kv-multi-select", never, { "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "filter": "filter"; "showClear": "showClear"; }, { "onSelectionChange": "onSelectionChange"; "onPanelHide": "onPanelHide"; }, never, ["*"], false, never>;
20
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.5.55",
3
+ "version": "1.5.57",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0"