@biggive/components 1.0.107 → 1.0.108

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.
@@ -251,14 +251,9 @@ export class BiggiveCampaignCardFilterGrid {
251
251
  "text": "This event `doSearchAndFilterUpdate` event is emitted and propogates to the parent\ncomponent which handles it"
252
252
  },
253
253
  "complexType": {
254
- "original": "CustomSearchAndFilterEvent",
255
- "resolved": "CustomSearchAndFilterEvent",
256
- "references": {
257
- "CustomSearchAndFilterEvent": {
258
- "location": "import",
259
- "path": "../../interfaces"
260
- }
261
- }
254
+ "original": "{\n searchText: string;\n sortBy: string;\n filterCategory: string;\n filterBeneficiary: string;\n filterLocation: string;\n filterFunding: string;\n }",
255
+ "resolved": "{ searchText: string; sortBy: string; filterCategory: string; filterBeneficiary: string; filterLocation: string; filterFunding: string; }",
256
+ "references": {}
262
257
  }
263
258
  }];
264
259
  }
@@ -1,12 +1,18 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import { CustomSearchAndFilterEvent } from '../../interfaces';
3
2
  export declare class BiggiveCampaignCardFilterGrid {
4
3
  el: any;
5
4
  /**
6
5
  * This event `doSearchAndFilterUpdate` event is emitted and propogates to the parent
7
6
  * component which handles it
8
7
  */
9
- doSearchAndFilterUpdate: EventEmitter<CustomSearchAndFilterEvent>;
8
+ doSearchAndFilterUpdate: EventEmitter<{
9
+ searchText: string;
10
+ sortBy: string;
11
+ filterCategory: string;
12
+ filterBeneficiary: string;
13
+ filterLocation: string;
14
+ filterFunding: string;
15
+ }>;
10
16
  searchText: string;
11
17
  sortBy: string;
12
18
  filterCategory: string;
@@ -5,7 +5,6 @@
5
5
  * It contains typing information for all components that exist in this project.
6
6
  */
7
7
  import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
- import { CustomSearchAndFilterEvent } from "./interfaces";
9
8
  export namespace Components {
10
9
  interface BiggiveArticleCard {
11
10
  /**
@@ -1619,7 +1618,14 @@ declare namespace LocalJSX {
1619
1618
  /**
1620
1619
  * This event `doSearchAndFilterUpdate` event is emitted and propogates to the parent component which handles it
1621
1620
  */
1622
- "onDoSearchAndFilterUpdate"?: (event: BiggiveCampaignCardFilterGridCustomEvent<CustomSearchAndFilterEvent>) => void;
1621
+ "onDoSearchAndFilterUpdate"?: (event: BiggiveCampaignCardFilterGridCustomEvent<{
1622
+ searchText: string;
1623
+ sortBy: string;
1624
+ filterCategory: string;
1625
+ filterBeneficiary: string;
1626
+ filterLocation: string;
1627
+ filterFunding: string;
1628
+ }>) => void;
1623
1629
  /**
1624
1630
  * Defines the text displayed as the placeholder in the input field before the user types anything
1625
1631
  */
@@ -1,9 +1 @@
1
1
  export * from './components';
2
- export interface CustomSearchAndFilterEvent {
3
- searchText: string;
4
- sortBy: string;
5
- filterCategory: string;
6
- filterBeneficiary: string;
7
- filterLocation: string;
8
- filterFunding: string;
9
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biggive/components",
3
- "version": "1.0.107",
3
+ "version": "1.0.108",
4
4
  "description": "Big Give Components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",