@biggive/components 1.0.99 → 1.0.101
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/biggive/biggive.esm.js +1 -1
- package/dist/biggive/p-c835c921.entry.js +1 -0
- package/dist/cjs/biggive-back-to-top_23.cjs.entry.js +12 -16
- package/dist/cjs/biggive.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.js +28 -40
- package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.stories.js +5 -5
- package/dist/components/biggive-campaign-card-filter-grid.js +17 -21
- package/dist/esm/biggive-back-to-top_23.entry.js +12 -16
- package/dist/esm/biggive.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/types/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.d.ts +6 -7
- package/dist/types/components.d.ts +12 -12
- package/hydrate/index.js +17 -21
- package/package.json +1 -1
- package/dist/biggive/p-899aafca.entry.js +0 -1
|
@@ -118,7 +118,7 @@ const BiggiveCampaignCardFilterGrid = class {
|
|
|
118
118
|
this.searchText = null;
|
|
119
119
|
this.sortBy = null;
|
|
120
120
|
this.filterCategory = null;
|
|
121
|
-
this.
|
|
121
|
+
this.filterBeneficiary = null;
|
|
122
122
|
this.filterLocation = null;
|
|
123
123
|
this.filterFunding = null;
|
|
124
124
|
this.spaceBelow = 0;
|
|
@@ -126,7 +126,7 @@ const BiggiveCampaignCardFilterGrid = class {
|
|
|
126
126
|
this.placeholderText = 'Search';
|
|
127
127
|
this.buttonText = 'Search';
|
|
128
128
|
this.categoryOptions = null;
|
|
129
|
-
this.
|
|
129
|
+
this.beneficiaryOptions = null;
|
|
130
130
|
this.locationOptions = null;
|
|
131
131
|
this.fundingOptions = null;
|
|
132
132
|
}
|
|
@@ -135,7 +135,7 @@ const BiggiveCampaignCardFilterGrid = class {
|
|
|
135
135
|
searchText: this.searchText,
|
|
136
136
|
sortBy: this.sortBy,
|
|
137
137
|
filterCategory: this.filterCategory,
|
|
138
|
-
|
|
138
|
+
filterBeneficiary: this.filterBeneficiary,
|
|
139
139
|
filterLocation: this.filterLocation,
|
|
140
140
|
filterFunding: this.filterFunding,
|
|
141
141
|
};
|
|
@@ -144,17 +144,13 @@ const BiggiveCampaignCardFilterGrid = class {
|
|
|
144
144
|
doOptionSelectCompletedHandler() {
|
|
145
145
|
this.sortBy = this.el.shadowRoot.getElementById('sort-by').selectedValue;
|
|
146
146
|
this.filterCategory = this.el.shadowRoot.getElementById('categories').selectedValue;
|
|
147
|
-
this.
|
|
147
|
+
this.filterBeneficiary = this.el.shadowRoot.getElementById('beneficiaries').selectedValue;
|
|
148
148
|
this.filterLocation = this.el.shadowRoot.getElementById('locations').selectedValue;
|
|
149
149
|
this.filterFunding = this.el.shadowRoot.getElementById('funding').selectedValue;
|
|
150
150
|
}
|
|
151
151
|
handleApplyFilterButtonClick() {
|
|
152
152
|
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
153
153
|
}
|
|
154
|
-
handleSearchTextChanged(event) {
|
|
155
|
-
this.searchText = event.target.value;
|
|
156
|
-
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
157
|
-
}
|
|
158
154
|
handleSearchButtonPressed() {
|
|
159
155
|
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
160
156
|
}
|
|
@@ -166,23 +162,23 @@ const BiggiveCampaignCardFilterGrid = class {
|
|
|
166
162
|
handleFilterButtonClick() {
|
|
167
163
|
this.el.shadowRoot.getElementById('filter-popup').open();
|
|
168
164
|
if (this.categoryOptions != null) {
|
|
169
|
-
var options =
|
|
165
|
+
var options = this.categoryOptions;
|
|
170
166
|
this.el.shadowRoot.getElementById('categories').innerHTML = '';
|
|
171
167
|
for (var prop in options) {
|
|
172
168
|
this.el.shadowRoot.getElementById('categories').innerHTML +=
|
|
173
169
|
'<biggive-form-field-select-option value="' + options[prop] + '" label="' + options[prop] + '"></biggive-form-field-select-option>';
|
|
174
170
|
}
|
|
175
171
|
}
|
|
176
|
-
if (this.
|
|
177
|
-
var options =
|
|
178
|
-
this.el.shadowRoot.getElementById('
|
|
172
|
+
if (this.beneficiaryOptions != null) {
|
|
173
|
+
var options = this.beneficiaryOptions;
|
|
174
|
+
this.el.shadowRoot.getElementById('beneficiaries').innerHTML = '';
|
|
179
175
|
for (var prop in options) {
|
|
180
|
-
this.el.shadowRoot.getElementById('
|
|
176
|
+
this.el.shadowRoot.getElementById('beneficiaries').innerHTML +=
|
|
181
177
|
'<biggive-form-field-select-option value="' + options[prop] + '" label="' + options[prop] + '"></biggive-form-field-select-option>';
|
|
182
178
|
}
|
|
183
179
|
}
|
|
184
180
|
if (this.locationOptions != null) {
|
|
185
|
-
var options =
|
|
181
|
+
var options = this.locationOptions;
|
|
186
182
|
this.el.shadowRoot.getElementById('locations').innerHTML = '';
|
|
187
183
|
for (var prop in options) {
|
|
188
184
|
this.el.shadowRoot.getElementById('locations').innerHTML +=
|
|
@@ -190,7 +186,7 @@ const BiggiveCampaignCardFilterGrid = class {
|
|
|
190
186
|
}
|
|
191
187
|
}
|
|
192
188
|
if (this.fundingOptions != null) {
|
|
193
|
-
var options =
|
|
189
|
+
var options = this.fundingOptions;
|
|
194
190
|
this.el.shadowRoot.getElementById('funding').innerHTML = '';
|
|
195
191
|
for (var prop in options) {
|
|
196
192
|
this.el.shadowRoot.getElementById('funding').innerHTML +=
|
|
@@ -199,7 +195,7 @@ const BiggiveCampaignCardFilterGrid = class {
|
|
|
199
195
|
}
|
|
200
196
|
}
|
|
201
197
|
render() {
|
|
202
|
-
return (h("div", { class: 'container space-below-' + this.spaceBelow }, h("div", { class: "sleeve" }, h("div", { class: "search-wrap" }, h("h4", null, this.intro), h("div", { class: "field-wrap" }, h("div", { class: "input-wrap" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", class: "icon", viewBox: "0 0 512 512" }, h("path", { d: faMagnifyingGlass.icon[4].toString() })), h("input", { type: "text", value: this.searchText, class: "input-text", placeholder: this.placeholderText,
|
|
198
|
+
return (h("div", { class: 'container space-below-' + this.spaceBelow }, h("div", { class: "sleeve" }, h("div", { class: "search-wrap" }, h("h4", null, this.intro), h("div", { class: "field-wrap" }, h("div", { class: "input-wrap" }, h("svg", { xmlns: "http://www.w3.org/2000/svg", class: "icon", viewBox: "0 0 512 512" }, h("path", { d: faMagnifyingGlass.icon[4].toString() })), h("input", { type: "text", value: this.searchText, class: "input-text", placeholder: this.placeholderText, onKeyDown: event => this.handleEnterPressed(event) })), h("button", { onClick: () => this.handleSearchButtonPressed(), class: "button button-primary" }, this.buttonText))), h("div", { class: "sort-filter-wrap" }, h("div", { class: "sort-wrap" }, h("biggive-form-field-select", { placeholder: "Sort by", id: "sort-by" }, h("biggive-form-field-select-option", { value: "most-raised", label: "Most raised" }), h("biggive-form-field-select-option", { value: "matched-funds-remaining", label: "Match funds remaining" }))), h("div", { class: "filter-wrap" }, h("div", { class: "button button-primary filter", onClick: () => this.handleFilterButtonClick() }, h("span", { class: "filter-icon" }, h("svg", { width: "16", height: "15", viewBox: "0 0 16 15", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { d: "M0.12042 0.76576C0.327224 0.298 0.766961 0 1.25014 0H14.7517C15.2361 0 15.6736 0.298 15.8799 0.76576C16.0893 1.23352 16.0237 1.787 15.6924 2.18745L10.0011 9.67328V13.929C10.0011 14.3341 9.7886 14.7058 9.44793 14.8866C9.1104 15.0674 8.7041 15.0306 8.40094 14.7862L6.40072 13.179C6.14756 12.9781 6.00067 12.66 6.00067 12.3218V9.67328L0.282594 2.18745C-0.023284 1.787 -0.0864161 1.23352 0.120451 0.76576H0.12042Z", fill: "white" }))), "Filters"), h("biggive-popup", { id: "filter-popup" }, h("h4", { class: "space-above-0 space-below-3 colour-primary" }, "Filters"), h("biggive-form-field-select", { placeholder: "Category", id: "categories", "space-below": "2" }), h("biggive-form-field-select", { placeholder: "Beneficiary", id: "beneficiaries", "space-below": "2" }), h("biggive-form-field-select", { placeholder: "Location", id: "locations", "space-below": "2" }), h("biggive-form-field-select", { placeholder: "Funding", id: "funding", "space-below": "2" }), h("div", { class: "align-right" }, h("a", { href: "#", class: "button button-primary", onClick: () => this.handleApplyFilterButtonClick() }, "Apply filters"))))), h("div", { class: "campaign-grid" }, h("slot", { name: "campaign-grid" })))));
|
|
203
199
|
}
|
|
204
200
|
get el() { return getElement(this); }
|
|
205
201
|
};
|
package/dist/esm/biggive.js
CHANGED
|
@@ -13,5 +13,5 @@ const patchBrowser = () => {
|
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
patchBrowser().then(options => {
|
|
16
|
-
return bootstrapLazy([["biggive-back-to-top_23",[[1,"biggive-campaign-card-filter-grid",{"searchText":[1,"search-text"],"sortBy":[1,"sort-by"],"filterCategory":[1,"filter-category"],"
|
|
16
|
+
return bootstrapLazy([["biggive-back-to-top_23",[[1,"biggive-campaign-card-filter-grid",{"searchText":[1,"search-text"],"sortBy":[1,"sort-by"],"filterCategory":[1,"filter-category"],"filterBeneficiary":[1,"filter-beneficiary"],"filterLocation":[1,"filter-location"],"filterFunding":[1,"filter-funding"],"spaceBelow":[2,"space-below"],"intro":[1],"placeholderText":[1,"placeholder-text"],"buttonText":[1,"button-text"],"categoryOptions":[16],"beneficiaryOptions":[16],"locationOptions":[16],"fundingOptions":[16]},[[0,"doSelectChange","doOptionSelectCompletedHandler"]]],[1,"biggive-campaign-card",{"spaceBelow":[2,"space-below"],"campaignType":[1,"campaign-type"],"banner":[1],"campaignTitle":[1,"campaign-title"],"organisationName":[1,"organisation-name"],"currencyCode":[1,"currency-code"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[2,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[2,"secondary-figure-amount"],"progressBarCounter":[2,"progress-bar-counter"],"donateButtonLabel":[1,"donate-button-label"],"donateButtonUrl":[1,"donate-button-url"],"donateButtonColourScheme":[1,"donate-button-colour-scheme"],"moreInfoButtonLabel":[1,"more-info-button-label"],"moreInfoButtonUrl":[1,"more-info-button-url"],"moreInfoButtonColourScheme":[1,"more-info-button-colour-scheme"]}],[1,"biggive-campaign-highlights",{"spaceBelow":[2,"space-below"],"banner":[1],"campaignTitle":[1,"campaign-title"],"currencyCode":[1,"currency-code"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[2,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[2,"secondary-figure-amount"],"progressBarCounter":[2,"progress-bar-counter"],"primaryStatIcon":[1,"primary-stat-icon"],"primaryStatText":[1,"primary-stat-text"],"secondaryStatIcon":[1,"secondary-stat-icon"],"secondaryStatText":[1,"secondary-stat-text"]}],[1,"biggive-call-to-action",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"slugSize":[2,"slug-size"],"slugColour":[1,"slug-colour"],"slug":[1],"mainTitleColour":[1,"main-title-colour"],"mainTitleSize":[2,"main-title-size"],"mainTitle":[1,"main-title"],"subtitleSize":[2,"subtitle-size"],"subtitleColour":[1,"subtitle-colour"],"subtitle":[1],"teaserColour":[1,"teaser-colour"],"teaser":[1],"primaryButtonUrl":[1,"primary-button-url"],"primaryButtonLabel":[1,"primary-button-label"],"primaryButtonColourScheme":[1,"primary-button-colour-scheme"],"secondaryButtonUrl":[1,"secondary-button-url"],"secondaryButtonLabel":[1,"secondary-button-label"],"secondaryButtonColourScheme":[1,"secondary-button-colour-scheme"]}],[1,"biggive-footer"],[1,"biggive-hero-image",{"spaceBelow":[2,"space-below"],"colourScheme":[1,"colour-scheme"],"slug":[1],"slugColour":[1,"slug-colour"],"logo":[1],"mainImage":[1,"main-image"],"mainImageAlignHorizontal":[1,"main-image-align-horizontal"],"mainImageAlignVertical":[1,"main-image-align-vertical"],"mainTitle":[1,"main-title"],"mainTitleColour":[1,"main-title-colour"],"teaser":[1],"teaserColour":[1,"teaser-colour"],"buttonUrl":[1,"button-url"],"buttonLabel":[1,"button-label"],"buttonColourScheme":[1,"button-colour-scheme"]}],[1,"biggive-image-feature",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"imageUrl":[1,"image-url"],"slug":[1],"slugColour":[1,"slug-colour"],"mainTitle":[1,"main-title"],"mainTitleColour":[1,"main-title-colour"],"teaser":[1],"teaserColour":[1,"teaser-colour"],"buttonUrl":[1,"button-url"],"buttonLabel":[1,"button-label"],"buttonColourScheme":[1,"button-colour-scheme"]}],[1,"biggive-video-feature",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"videoUrl":[1,"video-url"],"slug":[1],"slugColour":[1,"slug-colour"],"mainTitle":[1,"main-title"],"mainTitleColour":[1,"main-title-colour"],"teaser":[1],"teaserColour":[1,"teaser-colour"],"buttonUrl":[1,"button-url"],"buttonLabel":[1,"button-label"],"buttonColourScheme":[1,"button-colour-scheme"]}],[1,"biggive-back-to-top"],[1,"biggive-grid",{"spaceBelow":[2,"space-below"],"columnCount":[2,"column-count"],"columnGap":[2,"column-gap"]}],[1,"biggive-header",{"spaceBelow":[2,"space-below"],"logoUrl":[1,"logo-url"]}],[1,"biggive-heading",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"colour":[1],"htmlElement":[1,"html-element"],"size":[2],"align":[1],"text":[1]}],[1,"biggive-page-column"],[1,"biggive-page-columns",{"spaceBelow":[2,"space-below"]}],[1,"biggive-page-section",{"spaceBelow":[2,"space-below"],"sectionStyleTop":[1,"section-style-top"],"sectionStyleBottom":[1,"section-style-bottom"],"colourScheme":[1,"colour-scheme"]}],[0,"biggive-social-icon",{"service":[1],"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"url":[1]}],[1,"biggive-totalizer",{"spaceBelow":[2,"space-below"],"primaryColour":[1,"primary-colour"],"primaryTextColour":[1,"primary-text-colour"],"secondaryColour":[1,"secondary-colour"],"secondaryTextColour":[1,"secondary-text-colour"],"currencyCode":[1,"currency-code"],"includingGiftAid":[4,"including-gift-aid"],"totalMatchFunds":[2,"total-match-funds"],"totalRaised":[2,"total-raised"]}],[1,"biggive-form-field-select",{"selectedValue":[1,"selected-value"],"selectedLabel":[1,"selected-label"],"spaceBelow":[2,"space-below"],"placeholder":[1]},[[0,"doOptionSelect","doOptionSelectCompletedHandler"]]],[1,"biggive-form-field-select-option",{"label":[1],"value":[1],"selectedValue":[32],"selectedLabel":[32]}],[0,"biggive-misc-icon",{"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"icon":[1],"url":[1]}],[1,"biggive-popup",{"open":[64]}],[1,"biggive-progress-bar",{"spaceBelow":[2,"space-below"],"colourScheme":[1,"colour-scheme"],"counter":[2]}],[1,"biggive-button",{"spaceBelow":[2,"space-below"],"colourScheme":[1,"colour-scheme"],"label":[1],"url":[1],"fullWidth":[4,"full-width"],"size":[1],"rounded":[4]}]]],["biggive-article-card",[[1,"biggive-article-card",{"spaceBelow":[2,"space-below"],"backgroundColour":[1,"background-colour"],"backgroundColourHover":[1,"background-colour-hover"],"textColour":[1,"text-colour"],"slug":[1],"date":[1],"mainTitle":[1,"main-title"],"imageUrl":[1,"image-url"],"imageLabel":[1,"image-label"],"buttonLabel":[1,"button-label"],"buttonUrl":[1,"button-url"]}]]],["biggive-basic-card",[[1,"biggive-basic-card",{"spaceBelow":[2,"space-below"],"backgroundColour":[1,"background-colour"],"backgroundImageUrl":[1,"background-image-url"],"cardColour":[1,"card-colour"],"textColour":[1,"text-colour"],"mainTitle":[1,"main-title"],"subtitle":[1],"iconColour":[1,"icon-colour"],"buttonLabel":[1,"button-label"],"buttonUrl":[1,"button-url"],"buttonColourScheme":[1,"button-colour-scheme"]}]]],["biggive-beneficiary-icon",[[0,"biggive-beneficiary-icon",{"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"icon":[1],"label":[1],"url":[1]}]]],["biggive-boxed-content",[[1,"biggive-boxed-content",{"spaceBelow":[2,"space-below"],"verticalPadding":[2,"vertical-padding"],"horizontalPadding":[2,"horizontal-padding"],"backgroundColour":[1,"background-colour"],"shadow":[4]}]]],["biggive-branded-image",[[1,"biggive-branded-image",{"spaceBelow":[2,"space-below"],"imageUrl":[1,"image-url"],"logoUrl":[1,"logo-url"],"slug":[1]}]]],["biggive-category-icon",[[0,"biggive-category-icon",{"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"icon":[1],"label":[1],"url":[1]}]]],["biggive-form",[[1,"biggive-form"]]],["biggive-formatted-text",[[1,"biggive-formatted-text",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"]}]]],["biggive-icon-group",[[1,"biggive-icon-group",{"spaceBelow":[2,"space-below"],"label":[1]}]]],["biggive-image",[[1,"biggive-image",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"imageUrl":[1,"image-url"],"width":[2],"height":[2],"sizeUnit":[1,"size-unit"]}]]],["biggive-nav-group",[[1,"biggive-nav-group",{"inline":[4]}]]],["biggive-nav-item",[[1,"biggive-nav-item",{"url":[1],"label":[1],"iconColour":[1,"icon-colour"]}]]],["biggive-quote",[[1,"biggive-quote",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"quote":[1],"attribution":[1]}]]],["biggive-search",[[1,"biggive-search",{"placeholderText":[1,"placeholder-text"],"buttonText":[1,"button-text"],"searchText":[32]}]]],["biggive-tab",[[1,"biggive-tab",{"tabTitle":[1,"tab-title"]}]]],["biggive-tabbed-content",[[1,"biggive-tabbed-content",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"]}]]],["biggive-text-input",[[1,"biggive-text-input"]]],["biggive-video",[[1,"biggive-video",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"videoUrl":[1,"video-url"]}]]]], options);
|
|
17
17
|
});
|
package/dist/esm/loader.js
CHANGED
|
@@ -10,7 +10,7 @@ const patchEsm = () => {
|
|
|
10
10
|
const defineCustomElements = (win, options) => {
|
|
11
11
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
12
12
|
return patchEsm().then(() => {
|
|
13
|
-
return bootstrapLazy([["biggive-back-to-top_23",[[1,"biggive-campaign-card-filter-grid",{"searchText":[1,"search-text"],"sortBy":[1,"sort-by"],"filterCategory":[1,"filter-category"],"
|
|
13
|
+
return bootstrapLazy([["biggive-back-to-top_23",[[1,"biggive-campaign-card-filter-grid",{"searchText":[1,"search-text"],"sortBy":[1,"sort-by"],"filterCategory":[1,"filter-category"],"filterBeneficiary":[1,"filter-beneficiary"],"filterLocation":[1,"filter-location"],"filterFunding":[1,"filter-funding"],"spaceBelow":[2,"space-below"],"intro":[1],"placeholderText":[1,"placeholder-text"],"buttonText":[1,"button-text"],"categoryOptions":[16],"beneficiaryOptions":[16],"locationOptions":[16],"fundingOptions":[16]},[[0,"doSelectChange","doOptionSelectCompletedHandler"]]],[1,"biggive-campaign-card",{"spaceBelow":[2,"space-below"],"campaignType":[1,"campaign-type"],"banner":[1],"campaignTitle":[1,"campaign-title"],"organisationName":[1,"organisation-name"],"currencyCode":[1,"currency-code"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[2,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[2,"secondary-figure-amount"],"progressBarCounter":[2,"progress-bar-counter"],"donateButtonLabel":[1,"donate-button-label"],"donateButtonUrl":[1,"donate-button-url"],"donateButtonColourScheme":[1,"donate-button-colour-scheme"],"moreInfoButtonLabel":[1,"more-info-button-label"],"moreInfoButtonUrl":[1,"more-info-button-url"],"moreInfoButtonColourScheme":[1,"more-info-button-colour-scheme"]}],[1,"biggive-campaign-highlights",{"spaceBelow":[2,"space-below"],"banner":[1],"campaignTitle":[1,"campaign-title"],"currencyCode":[1,"currency-code"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[2,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[2,"secondary-figure-amount"],"progressBarCounter":[2,"progress-bar-counter"],"primaryStatIcon":[1,"primary-stat-icon"],"primaryStatText":[1,"primary-stat-text"],"secondaryStatIcon":[1,"secondary-stat-icon"],"secondaryStatText":[1,"secondary-stat-text"]}],[1,"biggive-call-to-action",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"slugSize":[2,"slug-size"],"slugColour":[1,"slug-colour"],"slug":[1],"mainTitleColour":[1,"main-title-colour"],"mainTitleSize":[2,"main-title-size"],"mainTitle":[1,"main-title"],"subtitleSize":[2,"subtitle-size"],"subtitleColour":[1,"subtitle-colour"],"subtitle":[1],"teaserColour":[1,"teaser-colour"],"teaser":[1],"primaryButtonUrl":[1,"primary-button-url"],"primaryButtonLabel":[1,"primary-button-label"],"primaryButtonColourScheme":[1,"primary-button-colour-scheme"],"secondaryButtonUrl":[1,"secondary-button-url"],"secondaryButtonLabel":[1,"secondary-button-label"],"secondaryButtonColourScheme":[1,"secondary-button-colour-scheme"]}],[1,"biggive-footer"],[1,"biggive-hero-image",{"spaceBelow":[2,"space-below"],"colourScheme":[1,"colour-scheme"],"slug":[1],"slugColour":[1,"slug-colour"],"logo":[1],"mainImage":[1,"main-image"],"mainImageAlignHorizontal":[1,"main-image-align-horizontal"],"mainImageAlignVertical":[1,"main-image-align-vertical"],"mainTitle":[1,"main-title"],"mainTitleColour":[1,"main-title-colour"],"teaser":[1],"teaserColour":[1,"teaser-colour"],"buttonUrl":[1,"button-url"],"buttonLabel":[1,"button-label"],"buttonColourScheme":[1,"button-colour-scheme"]}],[1,"biggive-image-feature",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"imageUrl":[1,"image-url"],"slug":[1],"slugColour":[1,"slug-colour"],"mainTitle":[1,"main-title"],"mainTitleColour":[1,"main-title-colour"],"teaser":[1],"teaserColour":[1,"teaser-colour"],"buttonUrl":[1,"button-url"],"buttonLabel":[1,"button-label"],"buttonColourScheme":[1,"button-colour-scheme"]}],[1,"biggive-video-feature",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"videoUrl":[1,"video-url"],"slug":[1],"slugColour":[1,"slug-colour"],"mainTitle":[1,"main-title"],"mainTitleColour":[1,"main-title-colour"],"teaser":[1],"teaserColour":[1,"teaser-colour"],"buttonUrl":[1,"button-url"],"buttonLabel":[1,"button-label"],"buttonColourScheme":[1,"button-colour-scheme"]}],[1,"biggive-back-to-top"],[1,"biggive-grid",{"spaceBelow":[2,"space-below"],"columnCount":[2,"column-count"],"columnGap":[2,"column-gap"]}],[1,"biggive-header",{"spaceBelow":[2,"space-below"],"logoUrl":[1,"logo-url"]}],[1,"biggive-heading",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"colour":[1],"htmlElement":[1,"html-element"],"size":[2],"align":[1],"text":[1]}],[1,"biggive-page-column"],[1,"biggive-page-columns",{"spaceBelow":[2,"space-below"]}],[1,"biggive-page-section",{"spaceBelow":[2,"space-below"],"sectionStyleTop":[1,"section-style-top"],"sectionStyleBottom":[1,"section-style-bottom"],"colourScheme":[1,"colour-scheme"]}],[0,"biggive-social-icon",{"service":[1],"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"url":[1]}],[1,"biggive-totalizer",{"spaceBelow":[2,"space-below"],"primaryColour":[1,"primary-colour"],"primaryTextColour":[1,"primary-text-colour"],"secondaryColour":[1,"secondary-colour"],"secondaryTextColour":[1,"secondary-text-colour"],"currencyCode":[1,"currency-code"],"includingGiftAid":[4,"including-gift-aid"],"totalMatchFunds":[2,"total-match-funds"],"totalRaised":[2,"total-raised"]}],[1,"biggive-form-field-select",{"selectedValue":[1,"selected-value"],"selectedLabel":[1,"selected-label"],"spaceBelow":[2,"space-below"],"placeholder":[1]},[[0,"doOptionSelect","doOptionSelectCompletedHandler"]]],[1,"biggive-form-field-select-option",{"label":[1],"value":[1],"selectedValue":[32],"selectedLabel":[32]}],[0,"biggive-misc-icon",{"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"icon":[1],"url":[1]}],[1,"biggive-popup",{"open":[64]}],[1,"biggive-progress-bar",{"spaceBelow":[2,"space-below"],"colourScheme":[1,"colour-scheme"],"counter":[2]}],[1,"biggive-button",{"spaceBelow":[2,"space-below"],"colourScheme":[1,"colour-scheme"],"label":[1],"url":[1],"fullWidth":[4,"full-width"],"size":[1],"rounded":[4]}]]],["biggive-article-card",[[1,"biggive-article-card",{"spaceBelow":[2,"space-below"],"backgroundColour":[1,"background-colour"],"backgroundColourHover":[1,"background-colour-hover"],"textColour":[1,"text-colour"],"slug":[1],"date":[1],"mainTitle":[1,"main-title"],"imageUrl":[1,"image-url"],"imageLabel":[1,"image-label"],"buttonLabel":[1,"button-label"],"buttonUrl":[1,"button-url"]}]]],["biggive-basic-card",[[1,"biggive-basic-card",{"spaceBelow":[2,"space-below"],"backgroundColour":[1,"background-colour"],"backgroundImageUrl":[1,"background-image-url"],"cardColour":[1,"card-colour"],"textColour":[1,"text-colour"],"mainTitle":[1,"main-title"],"subtitle":[1],"iconColour":[1,"icon-colour"],"buttonLabel":[1,"button-label"],"buttonUrl":[1,"button-url"],"buttonColourScheme":[1,"button-colour-scheme"]}]]],["biggive-beneficiary-icon",[[0,"biggive-beneficiary-icon",{"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"icon":[1],"label":[1],"url":[1]}]]],["biggive-boxed-content",[[1,"biggive-boxed-content",{"spaceBelow":[2,"space-below"],"verticalPadding":[2,"vertical-padding"],"horizontalPadding":[2,"horizontal-padding"],"backgroundColour":[1,"background-colour"],"shadow":[4]}]]],["biggive-branded-image",[[1,"biggive-branded-image",{"spaceBelow":[2,"space-below"],"imageUrl":[1,"image-url"],"logoUrl":[1,"logo-url"],"slug":[1]}]]],["biggive-category-icon",[[0,"biggive-category-icon",{"backgroundColour":[1,"background-colour"],"iconColour":[1,"icon-colour"],"icon":[1],"label":[1],"url":[1]}]]],["biggive-form",[[1,"biggive-form"]]],["biggive-formatted-text",[[1,"biggive-formatted-text",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"]}]]],["biggive-icon-group",[[1,"biggive-icon-group",{"spaceBelow":[2,"space-below"],"label":[1]}]]],["biggive-image",[[1,"biggive-image",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"imageUrl":[1,"image-url"],"width":[2],"height":[2],"sizeUnit":[1,"size-unit"]}]]],["biggive-nav-group",[[1,"biggive-nav-group",{"inline":[4]}]]],["biggive-nav-item",[[1,"biggive-nav-item",{"url":[1],"label":[1],"iconColour":[1,"icon-colour"]}]]],["biggive-quote",[[1,"biggive-quote",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"],"quote":[1],"attribution":[1]}]]],["biggive-search",[[1,"biggive-search",{"placeholderText":[1,"placeholder-text"],"buttonText":[1,"button-text"],"searchText":[32]}]]],["biggive-tab",[[1,"biggive-tab",{"tabTitle":[1,"tab-title"]}]]],["biggive-tabbed-content",[[1,"biggive-tabbed-content",{"spaceBelow":[2,"space-below"],"defaultTextColour":[1,"default-text-colour"]}]]],["biggive-text-input",[[1,"biggive-text-input"]]],["biggive-video",[[1,"biggive-video",{"spaceAbove":[2,"space-above"],"spaceBelow":[2,"space-below"],"videoUrl":[1,"video-url"]}]]]], options);
|
|
14
14
|
});
|
|
15
15
|
};
|
|
16
16
|
|
|
@@ -9,7 +9,7 @@ export declare class BiggiveCampaignCardFilterGrid {
|
|
|
9
9
|
searchText: string;
|
|
10
10
|
sortBy: string;
|
|
11
11
|
filterCategory: string;
|
|
12
|
-
|
|
12
|
+
filterBeneficiary: string;
|
|
13
13
|
filterLocation: string;
|
|
14
14
|
filterFunding: string;
|
|
15
15
|
/**
|
|
@@ -32,23 +32,22 @@ export declare class BiggiveCampaignCardFilterGrid {
|
|
|
32
32
|
/**
|
|
33
33
|
* JSON array of category key/values
|
|
34
34
|
*/
|
|
35
|
-
categoryOptions: string;
|
|
35
|
+
categoryOptions: string[];
|
|
36
36
|
/**
|
|
37
|
-
* JSON array of
|
|
37
|
+
* JSON array of beneficiary key/values
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
beneficiaryOptions: string[];
|
|
40
40
|
/**
|
|
41
41
|
* JSON array of location key/values
|
|
42
42
|
*/
|
|
43
|
-
locationOptions: string;
|
|
43
|
+
locationOptions: string[];
|
|
44
44
|
/**
|
|
45
45
|
* JSON array of funding key/values
|
|
46
46
|
*/
|
|
47
|
-
fundingOptions: string;
|
|
47
|
+
fundingOptions: string[];
|
|
48
48
|
private getSearchAndFilterObject;
|
|
49
49
|
doOptionSelectCompletedHandler(): void;
|
|
50
50
|
private handleApplyFilterButtonClick;
|
|
51
|
-
private handleSearchTextChanged;
|
|
52
51
|
private handleSearchButtonPressed;
|
|
53
52
|
private handleEnterPressed;
|
|
54
53
|
private handleFilterButtonClick;
|
|
@@ -346,9 +346,9 @@ export namespace Components {
|
|
|
346
346
|
}
|
|
347
347
|
interface BiggiveCampaignCardFilterGrid {
|
|
348
348
|
/**
|
|
349
|
-
* JSON array of
|
|
349
|
+
* JSON array of beneficiary key/values
|
|
350
350
|
*/
|
|
351
|
-
"
|
|
351
|
+
"beneficiaryOptions": string[];
|
|
352
352
|
/**
|
|
353
353
|
* Defines the text on the search button
|
|
354
354
|
*/
|
|
@@ -356,15 +356,15 @@ export namespace Components {
|
|
|
356
356
|
/**
|
|
357
357
|
* JSON array of category key/values
|
|
358
358
|
*/
|
|
359
|
-
"categoryOptions": string;
|
|
360
|
-
"
|
|
359
|
+
"categoryOptions": string[];
|
|
360
|
+
"filterBeneficiary": string;
|
|
361
361
|
"filterCategory": string;
|
|
362
362
|
"filterFunding": string;
|
|
363
363
|
"filterLocation": string;
|
|
364
364
|
/**
|
|
365
365
|
* JSON array of funding key/values
|
|
366
366
|
*/
|
|
367
|
-
"fundingOptions": string;
|
|
367
|
+
"fundingOptions": string[];
|
|
368
368
|
/**
|
|
369
369
|
* Intro
|
|
370
370
|
*/
|
|
@@ -372,7 +372,7 @@ export namespace Components {
|
|
|
372
372
|
/**
|
|
373
373
|
* JSON array of location key/values
|
|
374
374
|
*/
|
|
375
|
-
"locationOptions": string;
|
|
375
|
+
"locationOptions": string[];
|
|
376
376
|
/**
|
|
377
377
|
* Defines the text displayed as the placeholder in the input field before the user types anything
|
|
378
378
|
*/
|
|
@@ -1598,9 +1598,9 @@ declare namespace LocalJSX {
|
|
|
1598
1598
|
}
|
|
1599
1599
|
interface BiggiveCampaignCardFilterGrid {
|
|
1600
1600
|
/**
|
|
1601
|
-
* JSON array of
|
|
1601
|
+
* JSON array of beneficiary key/values
|
|
1602
1602
|
*/
|
|
1603
|
-
"
|
|
1603
|
+
"beneficiaryOptions"?: string[];
|
|
1604
1604
|
/**
|
|
1605
1605
|
* Defines the text on the search button
|
|
1606
1606
|
*/
|
|
@@ -1608,15 +1608,15 @@ declare namespace LocalJSX {
|
|
|
1608
1608
|
/**
|
|
1609
1609
|
* JSON array of category key/values
|
|
1610
1610
|
*/
|
|
1611
|
-
"categoryOptions"?: string;
|
|
1612
|
-
"
|
|
1611
|
+
"categoryOptions"?: string[];
|
|
1612
|
+
"filterBeneficiary"?: string;
|
|
1613
1613
|
"filterCategory"?: string;
|
|
1614
1614
|
"filterFunding"?: string;
|
|
1615
1615
|
"filterLocation"?: string;
|
|
1616
1616
|
/**
|
|
1617
1617
|
* JSON array of funding key/values
|
|
1618
1618
|
*/
|
|
1619
|
-
"fundingOptions"?: string;
|
|
1619
|
+
"fundingOptions"?: string[];
|
|
1620
1620
|
/**
|
|
1621
1621
|
* Intro
|
|
1622
1622
|
*/
|
|
@@ -1624,7 +1624,7 @@ declare namespace LocalJSX {
|
|
|
1624
1624
|
/**
|
|
1625
1625
|
* JSON array of location key/values
|
|
1626
1626
|
*/
|
|
1627
|
-
"locationOptions"?: string;
|
|
1627
|
+
"locationOptions"?: string[];
|
|
1628
1628
|
/**
|
|
1629
1629
|
* This event `doChange` event is emitted and propogates to the parent component which handles it
|
|
1630
1630
|
*/
|
package/hydrate/index.js
CHANGED
|
@@ -6539,7 +6539,7 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6539
6539
|
this.searchText = null;
|
|
6540
6540
|
this.sortBy = null;
|
|
6541
6541
|
this.filterCategory = null;
|
|
6542
|
-
this.
|
|
6542
|
+
this.filterBeneficiary = null;
|
|
6543
6543
|
this.filterLocation = null;
|
|
6544
6544
|
this.filterFunding = null;
|
|
6545
6545
|
this.spaceBelow = 0;
|
|
@@ -6547,7 +6547,7 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6547
6547
|
this.placeholderText = 'Search';
|
|
6548
6548
|
this.buttonText = 'Search';
|
|
6549
6549
|
this.categoryOptions = null;
|
|
6550
|
-
this.
|
|
6550
|
+
this.beneficiaryOptions = null;
|
|
6551
6551
|
this.locationOptions = null;
|
|
6552
6552
|
this.fundingOptions = null;
|
|
6553
6553
|
}
|
|
@@ -6556,7 +6556,7 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6556
6556
|
searchText: this.searchText,
|
|
6557
6557
|
sortBy: this.sortBy,
|
|
6558
6558
|
filterCategory: this.filterCategory,
|
|
6559
|
-
|
|
6559
|
+
filterBeneficiary: this.filterBeneficiary,
|
|
6560
6560
|
filterLocation: this.filterLocation,
|
|
6561
6561
|
filterFunding: this.filterFunding,
|
|
6562
6562
|
};
|
|
@@ -6565,17 +6565,13 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6565
6565
|
doOptionSelectCompletedHandler() {
|
|
6566
6566
|
this.sortBy = this.el.shadowRoot.getElementById('sort-by').selectedValue;
|
|
6567
6567
|
this.filterCategory = this.el.shadowRoot.getElementById('categories').selectedValue;
|
|
6568
|
-
this.
|
|
6568
|
+
this.filterBeneficiary = this.el.shadowRoot.getElementById('beneficiaries').selectedValue;
|
|
6569
6569
|
this.filterLocation = this.el.shadowRoot.getElementById('locations').selectedValue;
|
|
6570
6570
|
this.filterFunding = this.el.shadowRoot.getElementById('funding').selectedValue;
|
|
6571
6571
|
}
|
|
6572
6572
|
handleApplyFilterButtonClick() {
|
|
6573
6573
|
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
6574
6574
|
}
|
|
6575
|
-
handleSearchTextChanged(event) {
|
|
6576
|
-
this.searchText = event.target.value;
|
|
6577
|
-
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
6578
|
-
}
|
|
6579
6575
|
handleSearchButtonPressed() {
|
|
6580
6576
|
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
6581
6577
|
}
|
|
@@ -6587,23 +6583,23 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6587
6583
|
handleFilterButtonClick() {
|
|
6588
6584
|
this.el.shadowRoot.getElementById('filter-popup').open();
|
|
6589
6585
|
if (this.categoryOptions != null) {
|
|
6590
|
-
var options =
|
|
6586
|
+
var options = this.categoryOptions;
|
|
6591
6587
|
this.el.shadowRoot.getElementById('categories').innerHTML = '';
|
|
6592
6588
|
for (var prop in options) {
|
|
6593
6589
|
this.el.shadowRoot.getElementById('categories').innerHTML +=
|
|
6594
6590
|
'<biggive-form-field-select-option value="' + options[prop] + '" label="' + options[prop] + '"></biggive-form-field-select-option>';
|
|
6595
6591
|
}
|
|
6596
6592
|
}
|
|
6597
|
-
if (this.
|
|
6598
|
-
var options =
|
|
6599
|
-
this.el.shadowRoot.getElementById('
|
|
6593
|
+
if (this.beneficiaryOptions != null) {
|
|
6594
|
+
var options = this.beneficiaryOptions;
|
|
6595
|
+
this.el.shadowRoot.getElementById('beneficiaries').innerHTML = '';
|
|
6600
6596
|
for (var prop in options) {
|
|
6601
|
-
this.el.shadowRoot.getElementById('
|
|
6597
|
+
this.el.shadowRoot.getElementById('beneficiaries').innerHTML +=
|
|
6602
6598
|
'<biggive-form-field-select-option value="' + options[prop] + '" label="' + options[prop] + '"></biggive-form-field-select-option>';
|
|
6603
6599
|
}
|
|
6604
6600
|
}
|
|
6605
6601
|
if (this.locationOptions != null) {
|
|
6606
|
-
var options =
|
|
6602
|
+
var options = this.locationOptions;
|
|
6607
6603
|
this.el.shadowRoot.getElementById('locations').innerHTML = '';
|
|
6608
6604
|
for (var prop in options) {
|
|
6609
6605
|
this.el.shadowRoot.getElementById('locations').innerHTML +=
|
|
@@ -6611,7 +6607,7 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6611
6607
|
}
|
|
6612
6608
|
}
|
|
6613
6609
|
if (this.fundingOptions != null) {
|
|
6614
|
-
var options =
|
|
6610
|
+
var options = this.fundingOptions;
|
|
6615
6611
|
this.el.shadowRoot.getElementById('funding').innerHTML = '';
|
|
6616
6612
|
for (var prop in options) {
|
|
6617
6613
|
this.el.shadowRoot.getElementById('funding').innerHTML +=
|
|
@@ -6620,7 +6616,7 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6620
6616
|
}
|
|
6621
6617
|
}
|
|
6622
6618
|
render() {
|
|
6623
|
-
return (hAsync("div", { class: 'container space-below-' + this.spaceBelow }, hAsync("div", { class: "sleeve" }, hAsync("div", { class: "search-wrap" }, hAsync("h4", null, this.intro), hAsync("div", { class: "field-wrap" }, hAsync("div", { class: "input-wrap" }, hAsync("svg", { xmlns: "http://www.w3.org/2000/svg", class: "icon", viewBox: "0 0 512 512" }, hAsync("path", { d: faMagnifyingGlass.icon[4].toString() })), hAsync("input", { type: "text", value: this.searchText, class: "input-text", placeholder: this.placeholderText,
|
|
6619
|
+
return (hAsync("div", { class: 'container space-below-' + this.spaceBelow }, hAsync("div", { class: "sleeve" }, hAsync("div", { class: "search-wrap" }, hAsync("h4", null, this.intro), hAsync("div", { class: "field-wrap" }, hAsync("div", { class: "input-wrap" }, hAsync("svg", { xmlns: "http://www.w3.org/2000/svg", class: "icon", viewBox: "0 0 512 512" }, hAsync("path", { d: faMagnifyingGlass.icon[4].toString() })), hAsync("input", { type: "text", value: this.searchText, class: "input-text", placeholder: this.placeholderText, onKeyDown: event => this.handleEnterPressed(event) })), hAsync("button", { onClick: () => this.handleSearchButtonPressed(), class: "button button-primary" }, this.buttonText))), hAsync("div", { class: "sort-filter-wrap" }, hAsync("div", { class: "sort-wrap" }, hAsync("biggive-form-field-select", { placeholder: "Sort by", id: "sort-by" }, hAsync("biggive-form-field-select-option", { value: "most-raised", label: "Most raised" }), hAsync("biggive-form-field-select-option", { value: "matched-funds-remaining", label: "Match funds remaining" }))), hAsync("div", { class: "filter-wrap" }, hAsync("div", { class: "button button-primary filter", onClick: () => this.handleFilterButtonClick() }, hAsync("span", { class: "filter-icon" }, hAsync("svg", { width: "16", height: "15", viewBox: "0 0 16 15", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, hAsync("path", { d: "M0.12042 0.76576C0.327224 0.298 0.766961 0 1.25014 0H14.7517C15.2361 0 15.6736 0.298 15.8799 0.76576C16.0893 1.23352 16.0237 1.787 15.6924 2.18745L10.0011 9.67328V13.929C10.0011 14.3341 9.7886 14.7058 9.44793 14.8866C9.1104 15.0674 8.7041 15.0306 8.40094 14.7862L6.40072 13.179C6.14756 12.9781 6.00067 12.66 6.00067 12.3218V9.67328L0.282594 2.18745C-0.023284 1.787 -0.0864161 1.23352 0.120451 0.76576H0.12042Z", fill: "white" }))), "Filters"), hAsync("biggive-popup", { id: "filter-popup" }, hAsync("h4", { class: "space-above-0 space-below-3 colour-primary" }, "Filters"), hAsync("biggive-form-field-select", { placeholder: "Category", id: "categories", "space-below": "2" }), hAsync("biggive-form-field-select", { placeholder: "Beneficiary", id: "beneficiaries", "space-below": "2" }), hAsync("biggive-form-field-select", { placeholder: "Location", id: "locations", "space-below": "2" }), hAsync("biggive-form-field-select", { placeholder: "Funding", id: "funding", "space-below": "2" }), hAsync("div", { class: "align-right" }, hAsync("a", { href: "#", class: "button button-primary", onClick: () => this.handleApplyFilterButtonClick() }, "Apply filters"))))), hAsync("div", { class: "campaign-grid" }, hAsync("slot", { name: "campaign-grid" })))));
|
|
6624
6620
|
}
|
|
6625
6621
|
get el() { return getElement(this); }
|
|
6626
6622
|
static get style() { return biggiveCampaignCardFilterGridCss; }
|
|
@@ -6631,17 +6627,17 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6631
6627
|
"searchText": [1, "search-text"],
|
|
6632
6628
|
"sortBy": [1, "sort-by"],
|
|
6633
6629
|
"filterCategory": [1, "filter-category"],
|
|
6634
|
-
"
|
|
6630
|
+
"filterBeneficiary": [1, "filter-beneficiary"],
|
|
6635
6631
|
"filterLocation": [1, "filter-location"],
|
|
6636
6632
|
"filterFunding": [1, "filter-funding"],
|
|
6637
6633
|
"spaceBelow": [2, "space-below"],
|
|
6638
6634
|
"intro": [1],
|
|
6639
6635
|
"placeholderText": [1, "placeholder-text"],
|
|
6640
6636
|
"buttonText": [1, "button-text"],
|
|
6641
|
-
"categoryOptions": [
|
|
6642
|
-
"
|
|
6643
|
-
"locationOptions": [
|
|
6644
|
-
"fundingOptions": [
|
|
6637
|
+
"categoryOptions": [16],
|
|
6638
|
+
"beneficiaryOptions": [16],
|
|
6639
|
+
"locationOptions": [16],
|
|
6640
|
+
"fundingOptions": [16]
|
|
6645
6641
|
},
|
|
6646
6642
|
"$listeners$": [[0, "doSelectChange", "doOptionSelectCompletedHandler"]],
|
|
6647
6643
|
"$lazyBundleId$": "-",
|