@biggive/components 1.0.106 → 1.0.107

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.
@@ -256,7 +256,7 @@ export class BiggiveCampaignCardFilterGrid {
256
256
  "references": {
257
257
  "CustomSearchAndFilterEvent": {
258
258
  "location": "import",
259
- "path": "../../CustomSearchAndFilterEvent"
259
+ "path": "../../interfaces"
260
260
  }
261
261
  }
262
262
  }
@@ -1,5 +1,5 @@
1
1
  import { EventEmitter } from '../../stencil-public-runtime';
2
- import { CustomSearchAndFilterEvent } from '../../CustomSearchAndFilterEvent';
2
+ import { CustomSearchAndFilterEvent } from '../../interfaces';
3
3
  export declare class BiggiveCampaignCardFilterGrid {
4
4
  el: any;
5
5
  /**
@@ -5,7 +5,7 @@
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 "./CustomSearchAndFilterEvent";
8
+ import { CustomSearchAndFilterEvent } from "./interfaces";
9
9
  export namespace Components {
10
10
  interface BiggiveArticleCard {
11
11
  /**
@@ -1,2 +1,9 @@
1
1
  export * from './components';
2
- export { CustomSearchAndFilterEvent } from './CustomSearchAndFilterEvent';
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.106",
3
+ "version": "1.0.107",
4
4
  "description": "Big Give Components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -63,7 +63,9 @@
63
63
  "jest-cli": "^27.4.5",
64
64
  "lint-staged": "^13.0.3",
65
65
  "prettier": "2.7.1",
66
- "puppeteer": "^15.4.0"
66
+ "puppeteer": "^15.4.0",
67
+ "react": "^18.2.0",
68
+ "react-dom": "^18.2.0"
67
69
  },
68
70
  "license": "MIT"
69
71
  }
@@ -1 +0,0 @@
1
- export {};
@@ -1,8 +0,0 @@
1
- export interface CustomSearchAndFilterEvent {
2
- searchText: string;
3
- sortBy: string;
4
- filterCategory: string;
5
- filterBeneficiary: string;
6
- filterLocation: string;
7
- filterFunding: string;
8
- }