@biggive/components 1.0.103 → 1.0.104
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.
- package/dist/collection/components/biggive-campaign-card-filter-grid/CustomSearchAndFilterEvent.js +1 -2
- package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.js +3 -2
- package/dist/types/components/biggive-campaign-card-filter-grid/CustomSearchAndFilterEvent.d.ts +1 -2
- package/dist/types/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.d.ts +1 -1
- package/dist/types/components.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { h } from '@stencil/core';
|
|
2
2
|
import { faMagnifyingGlass } from '@fortawesome/pro-solid-svg-icons';
|
|
3
|
-
import SearchAndFilterEvent from './CustomSearchAndFilterEvent';
|
|
3
|
+
import { SearchAndFilterEvent } from './CustomSearchAndFilterEvent';
|
|
4
4
|
export class BiggiveCampaignCardFilterGrid {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.searchText = null;
|
|
@@ -254,7 +254,8 @@ export class BiggiveCampaignCardFilterGrid {
|
|
|
254
254
|
"resolved": "SearchAndFilterEvent",
|
|
255
255
|
"references": {
|
|
256
256
|
"SearchAndFilterEvent": {
|
|
257
|
-
"location": "
|
|
257
|
+
"location": "import",
|
|
258
|
+
"path": "./CustomSearchAndFilterEvent"
|
|
258
259
|
}
|
|
259
260
|
}
|
|
260
261
|
}
|
package/dist/types/components/biggive-campaign-card-filter-grid/CustomSearchAndFilterEvent.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare class SearchAndFilterEvent {
|
|
1
|
+
export declare class SearchAndFilterEvent {
|
|
2
2
|
searchText: string;
|
|
3
3
|
sortBy: string;
|
|
4
4
|
filterCategory: string;
|
|
@@ -6,4 +6,3 @@ declare class SearchAndFilterEvent {
|
|
|
6
6
|
filterLocation: string;
|
|
7
7
|
filterFunding: string;
|
|
8
8
|
}
|
|
9
|
-
export default SearchAndFilterEvent;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
|
-
import SearchAndFilterEvent from './CustomSearchAndFilterEvent';
|
|
2
|
+
import { SearchAndFilterEvent } from './CustomSearchAndFilterEvent';
|
|
3
3
|
export declare class BiggiveCampaignCardFilterGrid {
|
|
4
4
|
el: any;
|
|
5
5
|
/**
|
|
@@ -5,6 +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 { SearchAndFilterEvent } from "./components/biggive-campaign-card-filter-grid/CustomSearchAndFilterEvent";
|
|
8
9
|
export namespace Components {
|
|
9
10
|
interface BiggiveArticleCard {
|
|
10
11
|
/**
|