keevo-components 1.5.57 → 1.5.59

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