@everymatrix/helper-filters 1.65.1 → 1.65.2

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.
@@ -1,11 +1,7 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import '@vaadin/date-picker';
3
2
  import "../../../../../../dist/packages/stencil/helper-modal/dist/types/index";
3
+ import "../../../../../../dist/libs/vaadin-facade/index";
4
4
  export declare class HelperFilters {
5
- /**
6
- * Check if show the filter option by id
7
- */
8
- showFilterId: boolean;
9
5
  /**
10
6
  * Choose if filter by draw ID or ticket ID. By default is draw ID.
11
7
  */
@@ -51,7 +47,9 @@ export declare class HelperFilters {
51
47
  private filterData;
52
48
  private filterDataReset;
53
49
  private limitStylingAppends;
50
+ private ticketTypeList;
54
51
  private stylingContainer;
52
+ private comboBox;
55
53
  filterDraw: EventEmitter<HelperFilters>;
56
54
  filterSelection: EventEmitter<HelperFilters>;
57
55
  filterSelectionReset: EventEmitter<HelperFilters>;
@@ -62,11 +60,17 @@ export declare class HelperFilters {
62
60
  modalCloseEvent(): void;
63
61
  toggleFilterModal(): void;
64
62
  filterSearch(): void;
63
+ clearSelection(): void;
65
64
  resetSearch(): void;
66
- handleTicketDrawId: (event: Event) => void;
67
65
  handleFilterFrom: (event: Event) => void;
68
66
  handleFilterTo: (event: Event) => void;
67
+ formateDate(dateParts: any): string;
68
+ parseDate(inputValue: string): object;
69
+ changeFormate(str: string): string;
70
+ setDateFormate(dom: any): void;
69
71
  setClientStyling: () => void;
70
72
  setClientStylingURL: () => void;
73
+ handleTicketId: (event: any) => void;
74
+ handleTicketType: (event: any) => void;
71
75
  render(): any;
72
76
  }
@@ -43,10 +43,6 @@ export namespace Components {
43
43
  * Session ID
44
44
  */
45
45
  "session": string;
46
- /**
47
- * Check if show the filter option by id
48
- */
49
- "showFilterId": boolean;
50
46
  /**
51
47
  * Translations via parent component
52
48
  */
@@ -122,10 +118,6 @@ declare namespace LocalJSX {
122
118
  * Session ID
123
119
  */
124
120
  "session"?: string;
125
- /**
126
- * Check if show the filter option by id
127
- */
128
- "showFilterId"?: boolean;
129
121
  /**
130
122
  * Translations via parent component
131
123
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/helper-filters",
3
- "version": "1.65.1",
3
+ "version": "1.65.2",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",