@biggive/components 1.0.120 → 1.0.121
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-9b389ba1.entry.js +1 -0
- package/dist/cjs/biggive-back-to-top_24.cjs.entry.js +4 -38
- package/dist/cjs/biggive.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/biggive-campaign-card/biggive-campaign-card.js +9 -42
- package/dist/collection/components/biggive-campaign-highlights/biggive-campaign-highlights.js +9 -42
- package/dist/collection/components/biggive-progress-bar/biggive-progress-bar.js +2 -5
- package/dist/collection/components/biggive-social-icon/biggive-social-icon.js +3 -3
- package/dist/components/biggive-campaign-card.js +3 -20
- package/dist/components/biggive-campaign-highlights.js +3 -19
- package/dist/components/biggive-progress-bar2.js +1 -4
- package/dist/components/biggive-social-icon.js +1 -1
- package/dist/esm/biggive-back-to-top_24.entry.js +4 -38
- package/dist/esm/biggive.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/types/components/biggive-campaign-card/biggive-campaign-card.d.ts +4 -12
- package/dist/types/components/biggive-campaign-highlights/biggive-campaign-highlights.d.ts +4 -12
- package/dist/types/components/biggive-progress-bar/biggive-progress-bar.d.ts +1 -2
- package/dist/types/components/biggive-social-icon/biggive-social-icon.d.ts +2 -2
- package/dist/types/components.d.ts +22 -38
- package/hydrate/index.js +8 -44
- package/package.json +1 -1
- package/dist/biggive/p-429ef990.entry.js +0 -1
|
@@ -17,7 +17,7 @@ const BiggiveSocialIcon$1 = /*@__PURE__*/ proxyCustomElement(class extends HTMLE
|
|
|
17
17
|
return icon;
|
|
18
18
|
}
|
|
19
19
|
render() {
|
|
20
|
-
return (h("div", { class: 'social-icon-item background-colour-' + this.backgroundColour }, h("a", { href: this.url, target: "_blank" }, h("svg", { width: this.getSocialIcon().icon[0], height: this.getSocialIcon().icon[1], xmlns: "http://www.w3.org/2000/svg", class: 'fill-' + this.iconColour, viewBox: '0 0 ' + this.getSocialIcon().icon[0] + ' ' + this.getSocialIcon().icon[1] }, h("path", { d: this.getSocialIcon().icon[4].toString() })))));
|
|
20
|
+
return (h("div", { class: 'social-icon-item background-colour-' + this.backgroundColour }, h("a", { href: this.url, "aria-label": `Big Give on ${this.service}`, target: "_blank" }, h("svg", { width: this.getSocialIcon().icon[0], height: this.getSocialIcon().icon[1], xmlns: "http://www.w3.org/2000/svg", class: 'fill-' + this.iconColour, viewBox: '0 0 ' + this.getSocialIcon().icon[0] + ' ' + this.getSocialIcon().icon[1] }, h("path", { d: this.getSocialIcon().icon[4].toString() })))));
|
|
21
21
|
}
|
|
22
22
|
static get style() { return biggiveSocialIconCss; }
|
|
23
23
|
}, [0, "biggive-social-icon", {
|
|
@@ -76,7 +76,6 @@ const BiggiveCampaignCard = class {
|
|
|
76
76
|
this.banner = null;
|
|
77
77
|
this.campaignTitle = null;
|
|
78
78
|
this.organisationName = null;
|
|
79
|
-
this.currencyCode = undefined;
|
|
80
79
|
this.primaryFigureLabel = null;
|
|
81
80
|
this.primaryFigureAmount = null;
|
|
82
81
|
this.secondaryFigureLabel = null;
|
|
@@ -89,23 +88,8 @@ const BiggiveCampaignCard = class {
|
|
|
89
88
|
this.moreInfoButtonUrl = null;
|
|
90
89
|
this.moreInfoButtonColourScheme = 'clear-primary';
|
|
91
90
|
}
|
|
92
|
-
/**
|
|
93
|
-
* @returns Whole large currency units (e.g. pounds) formatted with symbol.
|
|
94
|
-
*/
|
|
95
|
-
formatCurrency(currencyCode, amount) {
|
|
96
|
-
if (amount === null || isNaN(amount)) {
|
|
97
|
-
return '–';
|
|
98
|
-
}
|
|
99
|
-
return Intl.NumberFormat('en-GB', {
|
|
100
|
-
style: 'currency',
|
|
101
|
-
currency: currencyCode,
|
|
102
|
-
currencyDisplay: 'symbol',
|
|
103
|
-
minimumFractionDigits: 0,
|
|
104
|
-
maximumFractionDigits: 0,
|
|
105
|
-
}).format(amount);
|
|
106
|
-
}
|
|
107
91
|
render() {
|
|
108
|
-
return (h("div", { class: 'container space-below-' + this.spaceBelow.toString() }, h("div", { class: "sleeve" }, this.campaignType !== null ? (h("div", { class: "campaign-type" }, h("span", null, this.campaignType))) : null, this.banner !== null ? (h("div", { class: "image-wrap banner", style: { 'background-image': 'url(' + this.banner + ')' } }, h("img", { src: this.banner, class: "banner" }))) : (h("div", { class: "image-wrap banner" })), h("div", { class: "title-wrap" }, h("h3", null, this.campaignTitle), h("div", { class: "organisation-name" }, "By ", this.organisationName)), h("div", { class: "meta-wrap" }, h("div", { class: "meta-item" }, h("span", { class: "label" }, this.primaryFigureLabel), h("span", { class: "text" }, this.
|
|
92
|
+
return (h("div", { class: 'container space-below-' + this.spaceBelow.toString() }, h("div", { class: "sleeve" }, this.campaignType !== null ? (h("div", { class: "campaign-type" }, h("span", null, this.campaignType))) : null, this.banner !== null ? (h("div", { class: "image-wrap banner", style: { 'background-image': 'url(' + this.banner + ')' } }, h("img", { src: this.banner, class: "banner" }))) : (h("div", { class: "image-wrap banner" })), h("div", { class: "title-wrap" }, h("h3", null, this.campaignTitle), h("div", { class: "organisation-name" }, "By ", this.organisationName)), h("div", { class: "meta-wrap" }, h("div", { class: "meta-item" }, h("span", { class: "label" }, this.primaryFigureLabel), h("span", { class: "text" }, this.primaryFigureAmount)), h("div", { class: "meta-item" }, h("span", { class: "label" }, this.secondaryFigureLabel), h("span", { class: "text" }, this.secondaryFigureAmount))), h("div", { class: "progress-bar-wrap" }, h("biggive-progress-bar", { counter: this.progressBarCounter, "colour-scheme": "primary" })), h("div", { class: "button-wrap" }, h("biggive-button", { "full-width": "true", "colour-scheme": this.donateButtonColourScheme, url: this.donateButtonUrl, label: this.donateButtonLabel }), h("biggive-button", { "full-width": "true", "colour-scheme": this.moreInfoButtonColourScheme, url: this.moreInfoButtonUrl, label: this.moreInfoButtonLabel })))));
|
|
109
93
|
}
|
|
110
94
|
};
|
|
111
95
|
BiggiveCampaignCard.style = biggiveCampaignCardCss;
|
|
@@ -193,7 +177,6 @@ const BiggiveCampaignHighlights = class {
|
|
|
193
177
|
this.spaceBelow = 0;
|
|
194
178
|
this.banner = '';
|
|
195
179
|
this.campaignTitle = null;
|
|
196
|
-
this.currencyCode = 'GBP';
|
|
197
180
|
this.primaryFigureLabel = null;
|
|
198
181
|
this.primaryFigureAmount = null;
|
|
199
182
|
this.secondaryFigureLabel = null;
|
|
@@ -204,22 +187,8 @@ const BiggiveCampaignHighlights = class {
|
|
|
204
187
|
this.secondaryStatIcon = null;
|
|
205
188
|
this.secondaryStatText = null;
|
|
206
189
|
}
|
|
207
|
-
/**
|
|
208
|
-
* @returns Whole large currency units (e.g. pounds) formatted with symbol.
|
|
209
|
-
*/
|
|
210
|
-
formatCurrency(currencyCode, amount) {
|
|
211
|
-
if (amount === null || isNaN(amount)) {
|
|
212
|
-
return '–';
|
|
213
|
-
}
|
|
214
|
-
return Intl.NumberFormat('en-GB', {
|
|
215
|
-
style: 'currency',
|
|
216
|
-
currency: currencyCode,
|
|
217
|
-
currencyDisplay: 'symbol',
|
|
218
|
-
maximumFractionDigits: 0,
|
|
219
|
-
}).format(amount);
|
|
220
|
-
}
|
|
221
190
|
render() {
|
|
222
|
-
return (h("div", { class: 'container space-below-' + this.spaceBelow }, h("div", { class: "sleeve" }, this.campaignTitle != null ? (h("div", { class: "campaign-title" }, h("span", null, this.campaignTitle))) : null, this.banner.length > 0 ? (h("div", { class: "image-wrap banner", style: { 'background-image': 'url(' + this.banner + ')' } }, h("img", { src: this.banner, class: "banner" }))) : null, h("div", { class: "meta-wrap" }, h("div", { class: "meta-item" }, h("span", { class: "label" }, this.primaryFigureLabel), h("span", { class: "text" }, this.
|
|
191
|
+
return (h("div", { class: 'container space-below-' + this.spaceBelow }, h("div", { class: "sleeve" }, this.campaignTitle != null ? (h("div", { class: "campaign-title" }, h("span", null, this.campaignTitle))) : null, this.banner.length > 0 ? (h("div", { class: "image-wrap banner", style: { 'background-image': 'url(' + this.banner + ')' } }, h("img", { src: this.banner, class: "banner" }))) : null, h("div", { class: "meta-wrap" }, h("div", { class: "meta-item" }, h("span", { class: "label" }, this.primaryFigureLabel), h("span", { class: "text" }, this.primaryFigureAmount)), h("div", { class: "meta-item" }, h("span", { class: "label" }, this.secondaryFigureLabel), h("span", { class: "text" }, this.secondaryFigureAmount))), h("div", { class: "progress-bar-wrap" }, h("biggive-progress-bar", { counter: this.progressBarCounter, "colour-scheme": "primary" })), h("div", { class: "stat-wrap" }, this.primaryStatIcon != null ? (h("div", { class: "stat-item" }, h("biggive-misc-icon", { icon: this.primaryStatIcon, "background-colour": "white", "icon-colour": "tertiary" }), h("span", { class: "label" }, this.primaryStatText))) : null, this.secondaryStatIcon != null ? (h("div", { class: "stat-item" }, h("biggive-misc-icon", { icon: this.secondaryStatIcon, "background-colour": "white", "icon-colour": "tertiary" }), h("span", { class: "label" }, this.secondaryStatText))) : null))));
|
|
223
192
|
}
|
|
224
193
|
};
|
|
225
194
|
BiggiveCampaignHighlights.style = biggiveCampaignHighlightsCss;
|
|
@@ -509,11 +478,8 @@ const BiggiveProgressBar = class {
|
|
|
509
478
|
this.colourScheme = 'primary';
|
|
510
479
|
this.counter = 100;
|
|
511
480
|
}
|
|
512
|
-
getPercentage() {
|
|
513
|
-
return Math.round(this.counter);
|
|
514
|
-
}
|
|
515
481
|
render() {
|
|
516
|
-
return (h("div", { class: 'progress-bar progress-bar-' + this.colourScheme + ' space-below-' + this.spaceBelow }, h("div", { class: "slider" }, h("div", { class: "progress", style: { width: this.
|
|
482
|
+
return (h("div", { class: 'progress-bar progress-bar-' + this.colourScheme + ' space-below-' + this.spaceBelow }, h("div", { class: "slider" }, h("div", { class: "progress", style: { width: `${this.counter}%` } })), h("div", { class: "counter" }, this.counter, "%")));
|
|
517
483
|
}
|
|
518
484
|
};
|
|
519
485
|
BiggiveProgressBar.style = biggiveProgressBarCss;
|
|
@@ -533,7 +499,7 @@ const BiggiveSocialIcon = class {
|
|
|
533
499
|
return icon;
|
|
534
500
|
}
|
|
535
501
|
render() {
|
|
536
|
-
return (h("div", { class: 'social-icon-item background-colour-' + this.backgroundColour }, h("a", { href: this.url, target: "_blank" }, h("svg", { width: this.getSocialIcon().icon[0], height: this.getSocialIcon().icon[1], xmlns: "http://www.w3.org/2000/svg", class: 'fill-' + this.iconColour, viewBox: '0 0 ' + this.getSocialIcon().icon[0] + ' ' + this.getSocialIcon().icon[1] }, h("path", { d: this.getSocialIcon().icon[4].toString() })))));
|
|
502
|
+
return (h("div", { class: 'social-icon-item background-colour-' + this.backgroundColour }, h("a", { href: this.url, "aria-label": `Big Give on ${this.service}`, target: "_blank" }, h("svg", { width: this.getSocialIcon().icon[0], height: this.getSocialIcon().icon[1], xmlns: "http://www.w3.org/2000/svg", class: 'fill-' + this.iconColour, viewBox: '0 0 ' + this.getSocialIcon().icon[0] + ' ' + this.getSocialIcon().icon[1] }, h("path", { d: this.getSocialIcon().icon[4].toString() })))));
|
|
537
503
|
}
|
|
538
504
|
};
|
|
539
505
|
BiggiveSocialIcon.style = biggiveSocialIconCss;
|
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_24",[[1,"biggive-campaign-card-filter-grid",{"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"],"
|
|
16
|
+
return bootstrapLazy([["biggive-back-to-top_24",[[1,"biggive-campaign-card-filter-grid",{"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"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[1,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[1,"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"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[1,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[1,"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-totalizer",{"spaceBelow":[2,"space-below"],"primaryColour":[1,"primary-colour"],"primaryTextColour":[1,"primary-text-colour"],"secondaryColour":[1,"secondary-colour"],"secondaryTextColour":[1,"secondary-text-colour"],"mainMessage":[1,"main-message"],"tickerItems":[16]}],[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-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-totalizer-ticker-item",{"figure":[1],"label":[1]}],[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-search",[[1,"biggive-search",{"placeholderText":[1,"placeholder-text"],"buttonText":[1,"button-text"],"searchText":[32]}]]],["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-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_24",[[1,"biggive-campaign-card-filter-grid",{"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"],"
|
|
13
|
+
return bootstrapLazy([["biggive-back-to-top_24",[[1,"biggive-campaign-card-filter-grid",{"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"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[1,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[1,"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"],"primaryFigureLabel":[1,"primary-figure-label"],"primaryFigureAmount":[1,"primary-figure-amount"],"secondaryFigureLabel":[1,"secondary-figure-label"],"secondaryFigureAmount":[1,"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-totalizer",{"spaceBelow":[2,"space-below"],"primaryColour":[1,"primary-colour"],"primaryTextColour":[1,"primary-text-colour"],"secondaryColour":[1,"secondary-colour"],"secondaryTextColour":[1,"secondary-text-colour"],"mainMessage":[1,"main-message"],"tickerItems":[16]}],[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-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-totalizer-ticker-item",{"figure":[1],"label":[1]}],[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-search",[[1,"biggive-search",{"placeholderText":[1,"placeholder-text"],"buttonText":[1,"button-text"],"searchText":[32]}]]],["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-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
|
|
|
@@ -19,26 +19,22 @@ export declare class BiggiveCampaignCard {
|
|
|
19
19
|
* Display name of the charity or non-profit.
|
|
20
20
|
*/
|
|
21
21
|
organisationName: string;
|
|
22
|
-
/**
|
|
23
|
-
* e.g. 'GBP'.
|
|
24
|
-
*/
|
|
25
|
-
currencyCode: string;
|
|
26
22
|
/**
|
|
27
23
|
* Label for the primary figure
|
|
28
24
|
*/
|
|
29
25
|
primaryFigureLabel: string;
|
|
30
26
|
/**
|
|
31
|
-
* Amount for the primary figure
|
|
27
|
+
* Amount for the primary figure, formatted with currency symbol
|
|
32
28
|
*/
|
|
33
|
-
primaryFigureAmount:
|
|
29
|
+
primaryFigureAmount: string;
|
|
34
30
|
/**
|
|
35
31
|
* Label for the secondary figure
|
|
36
32
|
*/
|
|
37
33
|
secondaryFigureLabel: string;
|
|
38
34
|
/**
|
|
39
|
-
* Amount for the secondary figure
|
|
35
|
+
* Amount for the secondary figure, formatted with currency symbol
|
|
40
36
|
*/
|
|
41
|
-
secondaryFigureAmount:
|
|
37
|
+
secondaryFigureAmount: string;
|
|
42
38
|
/**
|
|
43
39
|
* Progress bar percentage
|
|
44
40
|
*/
|
|
@@ -67,9 +63,5 @@ export declare class BiggiveCampaignCard {
|
|
|
67
63
|
* Donate button colour scheme
|
|
68
64
|
*/
|
|
69
65
|
moreInfoButtonColourScheme: string;
|
|
70
|
-
/**
|
|
71
|
-
* @returns Whole large currency units (e.g. pounds) formatted with symbol.
|
|
72
|
-
*/
|
|
73
|
-
private formatCurrency;
|
|
74
66
|
render(): any;
|
|
75
67
|
}
|
|
@@ -11,26 +11,22 @@ export declare class BiggiveCampaignHighlights {
|
|
|
11
11
|
* Display name of the charity's specific time-bound fundraising campaign.
|
|
12
12
|
*/
|
|
13
13
|
campaignTitle: string;
|
|
14
|
-
/**
|
|
15
|
-
* e.g. 'GBP'.
|
|
16
|
-
*/
|
|
17
|
-
currencyCode: string;
|
|
18
14
|
/**
|
|
19
15
|
* Label for the primary figure
|
|
20
16
|
*/
|
|
21
17
|
primaryFigureLabel: string;
|
|
22
18
|
/**
|
|
23
|
-
* Amount for the primary figure
|
|
19
|
+
* Amount for the primary figure, formatted with currency symbol
|
|
24
20
|
*/
|
|
25
|
-
primaryFigureAmount:
|
|
21
|
+
primaryFigureAmount: string;
|
|
26
22
|
/**
|
|
27
23
|
* Label for the secondary figure
|
|
28
24
|
*/
|
|
29
25
|
secondaryFigureLabel: string;
|
|
30
26
|
/**
|
|
31
|
-
* Amount for the secondary figure
|
|
27
|
+
* Amount for the secondary figure, formatted with currency symbol
|
|
32
28
|
*/
|
|
33
|
-
secondaryFigureAmount:
|
|
29
|
+
secondaryFigureAmount: string;
|
|
34
30
|
/**
|
|
35
31
|
* Progress bar percentage
|
|
36
32
|
*/
|
|
@@ -51,9 +47,5 @@ export declare class BiggiveCampaignHighlights {
|
|
|
51
47
|
* Secondary stat text
|
|
52
48
|
*/
|
|
53
49
|
secondaryStatText: string;
|
|
54
|
-
/**
|
|
55
|
-
* @returns Whole large currency units (e.g. pounds) formatted with symbol.
|
|
56
|
-
*/
|
|
57
|
-
private formatCurrency;
|
|
58
50
|
render(): any;
|
|
59
51
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare class BiggiveSocialIcon {
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Service name
|
|
4
4
|
*/
|
|
5
5
|
service: string;
|
|
6
6
|
/**
|
|
@@ -8,7 +8,7 @@ export declare class BiggiveSocialIcon {
|
|
|
8
8
|
*/
|
|
9
9
|
backgroundColour: string;
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Icon colour
|
|
12
12
|
*/
|
|
13
13
|
iconColour: string;
|
|
14
14
|
/**
|
|
@@ -287,10 +287,6 @@ export namespace Components {
|
|
|
287
287
|
* e.g. "Match Funded".
|
|
288
288
|
*/
|
|
289
289
|
"campaignType": string;
|
|
290
|
-
/**
|
|
291
|
-
* e.g. 'GBP'.
|
|
292
|
-
*/
|
|
293
|
-
"currencyCode": string;
|
|
294
290
|
/**
|
|
295
291
|
* Donate button colour scheme
|
|
296
292
|
*/
|
|
@@ -320,9 +316,9 @@ export namespace Components {
|
|
|
320
316
|
*/
|
|
321
317
|
"organisationName": string;
|
|
322
318
|
/**
|
|
323
|
-
* Amount for the primary figure
|
|
319
|
+
* Amount for the primary figure, formatted with currency symbol
|
|
324
320
|
*/
|
|
325
|
-
"primaryFigureAmount":
|
|
321
|
+
"primaryFigureAmount": string;
|
|
326
322
|
/**
|
|
327
323
|
* Label for the primary figure
|
|
328
324
|
*/
|
|
@@ -332,9 +328,9 @@ export namespace Components {
|
|
|
332
328
|
*/
|
|
333
329
|
"progressBarCounter": number;
|
|
334
330
|
/**
|
|
335
|
-
* Amount for the secondary figure
|
|
331
|
+
* Amount for the secondary figure, formatted with currency symbol
|
|
336
332
|
*/
|
|
337
|
-
"secondaryFigureAmount":
|
|
333
|
+
"secondaryFigureAmount": string;
|
|
338
334
|
/**
|
|
339
335
|
* Label for the secondary figure
|
|
340
336
|
*/
|
|
@@ -388,13 +384,9 @@ export namespace Components {
|
|
|
388
384
|
*/
|
|
389
385
|
"campaignTitle": string;
|
|
390
386
|
/**
|
|
391
|
-
*
|
|
392
|
-
*/
|
|
393
|
-
"currencyCode": string;
|
|
394
|
-
/**
|
|
395
|
-
* Amount for the primary figure
|
|
387
|
+
* Amount for the primary figure, formatted with currency symbol
|
|
396
388
|
*/
|
|
397
|
-
"primaryFigureAmount":
|
|
389
|
+
"primaryFigureAmount": string;
|
|
398
390
|
/**
|
|
399
391
|
* Label for the primary figure
|
|
400
392
|
*/
|
|
@@ -412,9 +404,9 @@ export namespace Components {
|
|
|
412
404
|
*/
|
|
413
405
|
"progressBarCounter": number;
|
|
414
406
|
/**
|
|
415
|
-
* Amount for the secondary figure
|
|
407
|
+
* Amount for the secondary figure, formatted with currency symbol
|
|
416
408
|
*/
|
|
417
|
-
"secondaryFigureAmount":
|
|
409
|
+
"secondaryFigureAmount": string;
|
|
418
410
|
/**
|
|
419
411
|
* Label for the secondary figure
|
|
420
412
|
*/
|
|
@@ -765,7 +757,7 @@ export namespace Components {
|
|
|
765
757
|
*/
|
|
766
758
|
"colourScheme": string;
|
|
767
759
|
/**
|
|
768
|
-
*
|
|
760
|
+
* Percentage to show + use for CSS width; round before input if desired
|
|
769
761
|
*/
|
|
770
762
|
"counter": number;
|
|
771
763
|
/**
|
|
@@ -807,11 +799,11 @@ export namespace Components {
|
|
|
807
799
|
*/
|
|
808
800
|
"backgroundColour": string;
|
|
809
801
|
/**
|
|
810
|
-
*
|
|
802
|
+
* Icon colour
|
|
811
803
|
*/
|
|
812
804
|
"iconColour": string;
|
|
813
805
|
/**
|
|
814
|
-
*
|
|
806
|
+
* Service name
|
|
815
807
|
*/
|
|
816
808
|
"service": string;
|
|
817
809
|
/**
|
|
@@ -1539,10 +1531,6 @@ declare namespace LocalJSX {
|
|
|
1539
1531
|
* e.g. "Match Funded".
|
|
1540
1532
|
*/
|
|
1541
1533
|
"campaignType"?: string;
|
|
1542
|
-
/**
|
|
1543
|
-
* e.g. 'GBP'.
|
|
1544
|
-
*/
|
|
1545
|
-
"currencyCode"?: string;
|
|
1546
1534
|
/**
|
|
1547
1535
|
* Donate button colour scheme
|
|
1548
1536
|
*/
|
|
@@ -1572,9 +1560,9 @@ declare namespace LocalJSX {
|
|
|
1572
1560
|
*/
|
|
1573
1561
|
"organisationName"?: string;
|
|
1574
1562
|
/**
|
|
1575
|
-
* Amount for the primary figure
|
|
1563
|
+
* Amount for the primary figure, formatted with currency symbol
|
|
1576
1564
|
*/
|
|
1577
|
-
"primaryFigureAmount"?:
|
|
1565
|
+
"primaryFigureAmount"?: string;
|
|
1578
1566
|
/**
|
|
1579
1567
|
* Label for the primary figure
|
|
1580
1568
|
*/
|
|
@@ -1584,9 +1572,9 @@ declare namespace LocalJSX {
|
|
|
1584
1572
|
*/
|
|
1585
1573
|
"progressBarCounter"?: number;
|
|
1586
1574
|
/**
|
|
1587
|
-
* Amount for the secondary figure
|
|
1575
|
+
* Amount for the secondary figure, formatted with currency symbol
|
|
1588
1576
|
*/
|
|
1589
|
-
"secondaryFigureAmount"?:
|
|
1577
|
+
"secondaryFigureAmount"?: string;
|
|
1590
1578
|
/**
|
|
1591
1579
|
* Label for the secondary figure
|
|
1592
1580
|
*/
|
|
@@ -1651,13 +1639,9 @@ declare namespace LocalJSX {
|
|
|
1651
1639
|
*/
|
|
1652
1640
|
"campaignTitle"?: string;
|
|
1653
1641
|
/**
|
|
1654
|
-
*
|
|
1655
|
-
*/
|
|
1656
|
-
"currencyCode"?: string;
|
|
1657
|
-
/**
|
|
1658
|
-
* Amount for the primary figure
|
|
1642
|
+
* Amount for the primary figure, formatted with currency symbol
|
|
1659
1643
|
*/
|
|
1660
|
-
"primaryFigureAmount"?:
|
|
1644
|
+
"primaryFigureAmount"?: string;
|
|
1661
1645
|
/**
|
|
1662
1646
|
* Label for the primary figure
|
|
1663
1647
|
*/
|
|
@@ -1675,9 +1659,9 @@ declare namespace LocalJSX {
|
|
|
1675
1659
|
*/
|
|
1676
1660
|
"progressBarCounter"?: number;
|
|
1677
1661
|
/**
|
|
1678
|
-
* Amount for the secondary figure
|
|
1662
|
+
* Amount for the secondary figure, formatted with currency symbol
|
|
1679
1663
|
*/
|
|
1680
|
-
"secondaryFigureAmount"?:
|
|
1664
|
+
"secondaryFigureAmount"?: string;
|
|
1681
1665
|
/**
|
|
1682
1666
|
* Label for the secondary figure
|
|
1683
1667
|
*/
|
|
@@ -2035,7 +2019,7 @@ declare namespace LocalJSX {
|
|
|
2035
2019
|
*/
|
|
2036
2020
|
"colourScheme"?: string;
|
|
2037
2021
|
/**
|
|
2038
|
-
*
|
|
2022
|
+
* Percentage to show + use for CSS width; round before input if desired
|
|
2039
2023
|
*/
|
|
2040
2024
|
"counter"?: number;
|
|
2041
2025
|
/**
|
|
@@ -2081,11 +2065,11 @@ declare namespace LocalJSX {
|
|
|
2081
2065
|
*/
|
|
2082
2066
|
"backgroundColour"?: string;
|
|
2083
2067
|
/**
|
|
2084
|
-
*
|
|
2068
|
+
* Icon colour
|
|
2085
2069
|
*/
|
|
2086
2070
|
"iconColour"?: string;
|
|
2087
2071
|
/**
|
|
2088
|
-
*
|
|
2072
|
+
* Service name
|
|
2089
2073
|
*/
|
|
2090
2074
|
"service"?: string;
|
|
2091
2075
|
/**
|