@biggive/components-angular 202502111754.0.0 → 202502121659.0.0

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.
@@ -1,27 +1,1542 @@
1
+ import { __decorate } from 'tslib';
1
2
  import * as i0 from '@angular/core';
2
- import { NgModule } from '@angular/core';
3
+ import { Component, ChangeDetectionStrategy, APP_INITIALIZER, NgModule } from '@angular/core';
4
+ import { fromEvent } from 'rxjs';
5
+ import { CommonModule } from '@angular/common';
6
+ import { defineCustomElements } from '@biggive/components/loader';
7
+
8
+ /* eslint-disable */
9
+ /* tslint:disable */
10
+ const proxyInputs = (Cmp, inputs) => {
11
+ const Prototype = Cmp.prototype;
12
+ inputs.forEach((item) => {
13
+ Object.defineProperty(Prototype, item, {
14
+ get() {
15
+ return this.el[item];
16
+ },
17
+ set(val) {
18
+ this.z.runOutsideAngular(() => (this.el[item] = val));
19
+ },
20
+ /**
21
+ * In the event that proxyInputs is called
22
+ * multiple times re-defining these inputs
23
+ * will cause an error to be thrown. As a result
24
+ * we set configurable: true to indicate these
25
+ * properties can be changed.
26
+ */
27
+ configurable: true,
28
+ });
29
+ });
30
+ };
31
+ const proxyMethods = (Cmp, methods) => {
32
+ const Prototype = Cmp.prototype;
33
+ methods.forEach((methodName) => {
34
+ Prototype[methodName] = function () {
35
+ const args = arguments;
36
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
37
+ };
38
+ });
39
+ };
40
+ const proxyOutputs = (instance, el, events) => {
41
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
42
+ };
43
+ const defineCustomElement = (tagName, customElement) => {
44
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
45
+ customElements.define(tagName, customElement);
46
+ }
47
+ };
48
+ // tslint:disable-next-line: only-arrow-functions
49
+ function ProxyCmp(opts) {
50
+ const decorator = function (cls) {
51
+ const { defineCustomElementFn, inputs, methods } = opts;
52
+ if (defineCustomElementFn !== undefined) {
53
+ defineCustomElementFn();
54
+ }
55
+ if (inputs) {
56
+ proxyInputs(cls, inputs);
57
+ }
58
+ if (methods) {
59
+ proxyMethods(cls, methods);
60
+ }
61
+ return cls;
62
+ };
63
+ return decorator;
64
+ }
65
+
66
+ let BiggiveAccordion = class BiggiveAccordion {
67
+ z;
68
+ el;
69
+ constructor(c, r, z) {
70
+ this.z = z;
71
+ c.detach();
72
+ this.el = r.nativeElement;
73
+ }
74
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
75
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveAccordion, selector: "biggive-accordion", inputs: { headingColour: "headingColour", spaceBelow: "spaceBelow", textColour: "textColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
76
+ };
77
+ BiggiveAccordion = __decorate([
78
+ ProxyCmp({
79
+ inputs: ['headingColour', 'spaceBelow', 'textColour']
80
+ })
81
+ ], BiggiveAccordion);
82
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveAccordion, decorators: [{
83
+ type: Component,
84
+ args: [{
85
+ selector: 'biggive-accordion',
86
+ changeDetection: ChangeDetectionStrategy.OnPush,
87
+ template: '<ng-content></ng-content>',
88
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
89
+ inputs: ['headingColour', 'spaceBelow', 'textColour'],
90
+ }]
91
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
92
+ let BiggiveAccordionEntry = class BiggiveAccordionEntry {
93
+ z;
94
+ el;
95
+ constructor(c, r, z) {
96
+ this.z = z;
97
+ c.detach();
98
+ this.el = r.nativeElement;
99
+ }
100
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveAccordionEntry, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
101
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveAccordionEntry, selector: "biggive-accordion-entry", inputs: { heading: "heading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
102
+ };
103
+ BiggiveAccordionEntry = __decorate([
104
+ ProxyCmp({
105
+ inputs: ['heading']
106
+ })
107
+ ], BiggiveAccordionEntry);
108
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveAccordionEntry, decorators: [{
109
+ type: Component,
110
+ args: [{
111
+ selector: 'biggive-accordion-entry',
112
+ changeDetection: ChangeDetectionStrategy.OnPush,
113
+ template: '<ng-content></ng-content>',
114
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
115
+ inputs: ['heading'],
116
+ }]
117
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
118
+ let BiggiveArticleCard = class BiggiveArticleCard {
119
+ z;
120
+ el;
121
+ constructor(c, r, z) {
122
+ this.z = z;
123
+ c.detach();
124
+ this.el = r.nativeElement;
125
+ }
126
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveArticleCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
127
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveArticleCard, selector: "biggive-article-card", inputs: { backgroundColour: "backgroundColour", backgroundImageUrl: "backgroundImageUrl", buttonColour: "buttonColour", buttonLabel: "buttonLabel", buttonUrl: "buttonUrl", clipBottomLeftCorner: "clipBottomLeftCorner", clipTopRightCorner: "clipTopRightCorner", date: "date", dateColour: "dateColour", image1AltText: "image1AltText", image1Url: "image1Url", image2AltText: "image2AltText", image2Url: "image2Url", imageLabel: "imageLabel", imageLabelColour: "imageLabelColour", mainImageAltText: "mainImageAltText", mainImageUrl: "mainImageUrl", mainTitle: "mainTitle", mainTitleColour: "mainTitleColour", slug: "slug", slugColour: "slugColour", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
128
+ };
129
+ BiggiveArticleCard = __decorate([
130
+ ProxyCmp({
131
+ inputs: ['backgroundColour', 'backgroundImageUrl', 'buttonColour', 'buttonLabel', 'buttonUrl', 'clipBottomLeftCorner', 'clipTopRightCorner', 'date', 'dateColour', 'image1AltText', 'image1Url', 'image2AltText', 'image2Url', 'imageLabel', 'imageLabelColour', 'mainImageAltText', 'mainImageUrl', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceBelow']
132
+ })
133
+ ], BiggiveArticleCard);
134
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveArticleCard, decorators: [{
135
+ type: Component,
136
+ args: [{
137
+ selector: 'biggive-article-card',
138
+ changeDetection: ChangeDetectionStrategy.OnPush,
139
+ template: '<ng-content></ng-content>',
140
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
141
+ inputs: ['backgroundColour', 'backgroundImageUrl', 'buttonColour', 'buttonLabel', 'buttonUrl', 'clipBottomLeftCorner', 'clipTopRightCorner', 'date', 'dateColour', 'image1AltText', 'image1Url', 'image2AltText', 'image2Url', 'imageLabel', 'imageLabelColour', 'mainImageAltText', 'mainImageUrl', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceBelow'],
142
+ }]
143
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
144
+ let BiggiveBackToTop = class BiggiveBackToTop {
145
+ z;
146
+ el;
147
+ constructor(c, r, z) {
148
+ this.z = z;
149
+ c.detach();
150
+ this.el = r.nativeElement;
151
+ }
152
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBackToTop, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
153
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveBackToTop, selector: "biggive-back-to-top", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
154
+ };
155
+ BiggiveBackToTop = __decorate([
156
+ ProxyCmp({})
157
+ ], BiggiveBackToTop);
158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBackToTop, decorators: [{
159
+ type: Component,
160
+ args: [{
161
+ selector: 'biggive-back-to-top',
162
+ changeDetection: ChangeDetectionStrategy.OnPush,
163
+ template: '<ng-content></ng-content>',
164
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
165
+ inputs: [],
166
+ }]
167
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
168
+ let BiggiveBasicCard = class BiggiveBasicCard {
169
+ z;
170
+ el;
171
+ constructor(c, r, z) {
172
+ this.z = z;
173
+ c.detach();
174
+ this.el = r.nativeElement;
175
+ }
176
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBasicCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
177
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveBasicCard, selector: "biggive-basic-card", inputs: { addAnimation: "addAnimation", backgroundColour: "backgroundColour", backgroundImageUrl: "backgroundImageUrl", buttonAlign: "buttonAlign", buttonColourScheme: "buttonColourScheme", buttonLabel: "buttonLabel", buttonStyle: "buttonStyle", buttonUrl: "buttonUrl", cardColour: "cardColour", clipBottomLeftCorner: "clipBottomLeftCorner", clipTopRightCorner: "clipTopRightCorner", headingLevel: "headingLevel", icon: "icon", iconColour: "iconColour", mainImageAltText: "mainImageAltText", mainImageUrl: "mainImageUrl", mainTitle: "mainTitle", spaceBelow: "spaceBelow", subtitle: "subtitle", teaser: "teaser", textColour: "textColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
178
+ };
179
+ BiggiveBasicCard = __decorate([
180
+ ProxyCmp({
181
+ inputs: ['addAnimation', 'backgroundColour', 'backgroundImageUrl', 'buttonAlign', 'buttonColourScheme', 'buttonLabel', 'buttonStyle', 'buttonUrl', 'cardColour', 'clipBottomLeftCorner', 'clipTopRightCorner', 'headingLevel', 'icon', 'iconColour', 'mainImageAltText', 'mainImageUrl', 'mainTitle', 'spaceBelow', 'subtitle', 'teaser', 'textColour']
182
+ })
183
+ ], BiggiveBasicCard);
184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBasicCard, decorators: [{
185
+ type: Component,
186
+ args: [{
187
+ selector: 'biggive-basic-card',
188
+ changeDetection: ChangeDetectionStrategy.OnPush,
189
+ template: '<ng-content></ng-content>',
190
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
191
+ inputs: ['addAnimation', 'backgroundColour', 'backgroundImageUrl', 'buttonAlign', 'buttonColourScheme', 'buttonLabel', 'buttonStyle', 'buttonUrl', 'cardColour', 'clipBottomLeftCorner', 'clipTopRightCorner', 'headingLevel', 'icon', 'iconColour', 'mainImageAltText', 'mainImageUrl', 'mainTitle', 'spaceBelow', 'subtitle', 'teaser', 'textColour'],
192
+ }]
193
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
194
+ let BiggiveBeneficiaryIcon = class BiggiveBeneficiaryIcon {
195
+ z;
196
+ el;
197
+ constructor(c, r, z) {
198
+ this.z = z;
199
+ c.detach();
200
+ this.el = r.nativeElement;
201
+ }
202
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBeneficiaryIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
203
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveBeneficiaryIcon, selector: "biggive-beneficiary-icon", inputs: { backgroundColour: "backgroundColour", icon: "icon", iconColour: "iconColour", label: "label", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
204
+ };
205
+ BiggiveBeneficiaryIcon = __decorate([
206
+ ProxyCmp({
207
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'label', 'url']
208
+ })
209
+ ], BiggiveBeneficiaryIcon);
210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBeneficiaryIcon, decorators: [{
211
+ type: Component,
212
+ args: [{
213
+ selector: 'biggive-beneficiary-icon',
214
+ changeDetection: ChangeDetectionStrategy.OnPush,
215
+ template: '<ng-content></ng-content>',
216
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
217
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'label', 'url'],
218
+ }]
219
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
220
+ let BiggiveBiographyCard = class BiggiveBiographyCard {
221
+ z;
222
+ el;
223
+ constructor(c, r, z) {
224
+ this.z = z;
225
+ c.detach();
226
+ this.el = r.nativeElement;
227
+ }
228
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBiographyCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
229
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveBiographyCard, selector: "biggive-biography-card", inputs: { backgroundColour: "backgroundColour", borderWidth: "borderWidth", circle: "circle", circleColour: "circleColour", fullName: "fullName", imageStyle: "imageStyle", imageUrl: "imageUrl", jobTitle: "jobTitle", ratio: "ratio", rounded: "rounded", spaceBelow: "spaceBelow", textAlign: "textAlign", textColour: "textColour", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
230
+ };
231
+ BiggiveBiographyCard = __decorate([
232
+ ProxyCmp({
233
+ inputs: ['backgroundColour', 'borderWidth', 'circle', 'circleColour', 'fullName', 'imageStyle', 'imageUrl', 'jobTitle', 'ratio', 'rounded', 'spaceBelow', 'textAlign', 'textColour', 'url']
234
+ })
235
+ ], BiggiveBiographyCard);
236
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBiographyCard, decorators: [{
237
+ type: Component,
238
+ args: [{
239
+ selector: 'biggive-biography-card',
240
+ changeDetection: ChangeDetectionStrategy.OnPush,
241
+ template: '<ng-content></ng-content>',
242
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
243
+ inputs: ['backgroundColour', 'borderWidth', 'circle', 'circleColour', 'fullName', 'imageStyle', 'imageUrl', 'jobTitle', 'ratio', 'rounded', 'spaceBelow', 'textAlign', 'textColour', 'url'],
244
+ }]
245
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
246
+ let BiggiveBoxedContent = class BiggiveBoxedContent {
247
+ z;
248
+ el;
249
+ constructor(c, r, z) {
250
+ this.z = z;
251
+ c.detach();
252
+ this.el = r.nativeElement;
253
+ }
254
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBoxedContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
255
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveBoxedContent, selector: "biggive-boxed-content", inputs: { backgroundColour: "backgroundColour", horizontalPadding: "horizontalPadding", shadow: "shadow", spaceBelow: "spaceBelow", verticalPadding: "verticalPadding" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
256
+ };
257
+ BiggiveBoxedContent = __decorate([
258
+ ProxyCmp({
259
+ inputs: ['backgroundColour', 'horizontalPadding', 'shadow', 'spaceBelow', 'verticalPadding']
260
+ })
261
+ ], BiggiveBoxedContent);
262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBoxedContent, decorators: [{
263
+ type: Component,
264
+ args: [{
265
+ selector: 'biggive-boxed-content',
266
+ changeDetection: ChangeDetectionStrategy.OnPush,
267
+ template: '<ng-content></ng-content>',
268
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
269
+ inputs: ['backgroundColour', 'horizontalPadding', 'shadow', 'spaceBelow', 'verticalPadding'],
270
+ }]
271
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
272
+ let BiggiveBrandedImage = class BiggiveBrandedImage {
273
+ z;
274
+ el;
275
+ constructor(c, r, z) {
276
+ this.z = z;
277
+ c.detach();
278
+ this.el = r.nativeElement;
279
+ }
280
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBrandedImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
281
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveBrandedImage, selector: "biggive-branded-image", inputs: { charityLocation: "charityLocation", charityName: "charityName", charityUrl: "charityUrl", imageUrl: "imageUrl", logoUrl: "logoUrl", slug: "slug", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
282
+ };
283
+ BiggiveBrandedImage = __decorate([
284
+ ProxyCmp({
285
+ inputs: ['charityLocation', 'charityName', 'charityUrl', 'imageUrl', 'logoUrl', 'slug', 'spaceBelow']
286
+ })
287
+ ], BiggiveBrandedImage);
288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveBrandedImage, decorators: [{
289
+ type: Component,
290
+ args: [{
291
+ selector: 'biggive-branded-image',
292
+ changeDetection: ChangeDetectionStrategy.OnPush,
293
+ template: '<ng-content></ng-content>',
294
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
295
+ inputs: ['charityLocation', 'charityName', 'charityUrl', 'imageUrl', 'logoUrl', 'slug', 'spaceBelow'],
296
+ }]
297
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
298
+ let BiggiveButton = class BiggiveButton {
299
+ z;
300
+ el;
301
+ constructor(c, r, z) {
302
+ this.z = z;
303
+ c.detach();
304
+ this.el = r.nativeElement;
305
+ proxyOutputs(this, this.el, ['doButtonClick']);
306
+ }
307
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
308
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveButton, selector: "biggive-button", inputs: { buttonId: "buttonId", centered: "centered", colourScheme: "colourScheme", fullWidth: "fullWidth", label: "label", openInNewTab: "openInNewTab", rounded: "rounded", size: "size", spaceBelow: "spaceBelow", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
309
+ };
310
+ BiggiveButton = __decorate([
311
+ ProxyCmp({
312
+ inputs: ['buttonId', 'centered', 'colourScheme', 'fullWidth', 'label', 'openInNewTab', 'rounded', 'size', 'spaceBelow', 'url']
313
+ })
314
+ ], BiggiveButton);
315
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveButton, decorators: [{
316
+ type: Component,
317
+ args: [{
318
+ selector: 'biggive-button',
319
+ changeDetection: ChangeDetectionStrategy.OnPush,
320
+ template: '<ng-content></ng-content>',
321
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
322
+ inputs: ['buttonId', 'centered', 'colourScheme', 'fullWidth', 'label', 'openInNewTab', 'rounded', 'size', 'spaceBelow', 'url'],
323
+ }]
324
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
325
+ let BiggiveCallToAction = class BiggiveCallToAction {
326
+ z;
327
+ el;
328
+ constructor(c, r, z) {
329
+ this.z = z;
330
+ c.detach();
331
+ this.el = r.nativeElement;
332
+ }
333
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCallToAction, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
334
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveCallToAction, selector: "biggive-call-to-action", inputs: { defaultTextColour: "defaultTextColour", mainTitle: "mainTitle", mainTitleColour: "mainTitleColour", mainTitleSize: "mainTitleSize", primaryButtonColourScheme: "primaryButtonColourScheme", primaryButtonLabel: "primaryButtonLabel", primaryButtonUrl: "primaryButtonUrl", secondaryButtonColourScheme: "secondaryButtonColourScheme", secondaryButtonLabel: "secondaryButtonLabel", secondaryButtonUrl: "secondaryButtonUrl", slug: "slug", slugColour: "slugColour", slugSize: "slugSize", spaceAbove: "spaceAbove", spaceBelow: "spaceBelow", subtitle: "subtitle", subtitleColour: "subtitleColour", subtitleSize: "subtitleSize", teaser: "teaser", teaserColour: "teaserColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
335
+ };
336
+ BiggiveCallToAction = __decorate([
337
+ ProxyCmp({
338
+ inputs: ['defaultTextColour', 'mainTitle', 'mainTitleColour', 'mainTitleSize', 'primaryButtonColourScheme', 'primaryButtonLabel', 'primaryButtonUrl', 'secondaryButtonColourScheme', 'secondaryButtonLabel', 'secondaryButtonUrl', 'slug', 'slugColour', 'slugSize', 'spaceAbove', 'spaceBelow', 'subtitle', 'subtitleColour', 'subtitleSize', 'teaser', 'teaserColour']
339
+ })
340
+ ], BiggiveCallToAction);
341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCallToAction, decorators: [{
342
+ type: Component,
343
+ args: [{
344
+ selector: 'biggive-call-to-action',
345
+ changeDetection: ChangeDetectionStrategy.OnPush,
346
+ template: '<ng-content></ng-content>',
347
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
348
+ inputs: ['defaultTextColour', 'mainTitle', 'mainTitleColour', 'mainTitleSize', 'primaryButtonColourScheme', 'primaryButtonLabel', 'primaryButtonUrl', 'secondaryButtonColourScheme', 'secondaryButtonLabel', 'secondaryButtonUrl', 'slug', 'slugColour', 'slugSize', 'spaceAbove', 'spaceBelow', 'subtitle', 'subtitleColour', 'subtitleSize', 'teaser', 'teaserColour'],
349
+ }]
350
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
351
+ let BiggiveCampaignCard = class BiggiveCampaignCard {
352
+ z;
353
+ el;
354
+ constructor(c, r, z) {
355
+ this.z = z;
356
+ c.detach();
357
+ this.el = r.nativeElement;
358
+ proxyOutputs(this, this.el, ['doCardGeneralClick']);
359
+ }
360
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCampaignCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
361
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveCampaignCard, selector: "biggive-campaign-card", inputs: { banner: "banner", campaignTitle: "campaignTitle", campaignType: "campaignType", datetime: "datetime", donateButtonColourScheme: "donateButtonColourScheme", donateButtonLabel: "donateButtonLabel", donateButtonUrl: "donateButtonUrl", isFutureCampaign: "isFutureCampaign", isPastCampaign: "isPastCampaign", moreInfoButtonColourScheme: "moreInfoButtonColourScheme", moreInfoButtonLabel: "moreInfoButtonLabel", moreInfoButtonUrl: "moreInfoButtonUrl", organisationName: "organisationName", primaryFigureAmount: "primaryFigureAmount", primaryFigureLabel: "primaryFigureLabel", progressBarCounter: "progressBarCounter", secondaryFigureAmount: "secondaryFigureAmount", secondaryFigureLabel: "secondaryFigureLabel", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
362
+ };
363
+ BiggiveCampaignCard = __decorate([
364
+ ProxyCmp({
365
+ inputs: ['banner', 'campaignTitle', 'campaignType', 'datetime', 'donateButtonColourScheme', 'donateButtonLabel', 'donateButtonUrl', 'isFutureCampaign', 'isPastCampaign', 'moreInfoButtonColourScheme', 'moreInfoButtonLabel', 'moreInfoButtonUrl', 'organisationName', 'primaryFigureAmount', 'primaryFigureLabel', 'progressBarCounter', 'secondaryFigureAmount', 'secondaryFigureLabel', 'spaceBelow']
366
+ })
367
+ ], BiggiveCampaignCard);
368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCampaignCard, decorators: [{
369
+ type: Component,
370
+ args: [{
371
+ selector: 'biggive-campaign-card',
372
+ changeDetection: ChangeDetectionStrategy.OnPush,
373
+ template: '<ng-content></ng-content>',
374
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
375
+ inputs: ['banner', 'campaignTitle', 'campaignType', 'datetime', 'donateButtonColourScheme', 'donateButtonLabel', 'donateButtonUrl', 'isFutureCampaign', 'isPastCampaign', 'moreInfoButtonColourScheme', 'moreInfoButtonLabel', 'moreInfoButtonUrl', 'organisationName', 'primaryFigureAmount', 'primaryFigureLabel', 'progressBarCounter', 'secondaryFigureAmount', 'secondaryFigureLabel', 'spaceBelow'],
376
+ }]
377
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
378
+ let BiggiveCampaignCardFilterGrid = class BiggiveCampaignCardFilterGrid {
379
+ z;
380
+ el;
381
+ constructor(c, r, z) {
382
+ this.z = z;
383
+ c.detach();
384
+ this.el = r.nativeElement;
385
+ proxyOutputs(this, this.el, ['doSearchAndFilterUpdate']);
386
+ }
387
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCampaignCardFilterGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
388
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveCampaignCardFilterGrid, selector: "biggive-campaign-card-filter-grid", inputs: { beneficiaryOptions: "beneficiaryOptions", buttonText: "buttonText", categoryOptions: "categoryOptions", intro: "intro", locationOptions: "locationOptions", placeholderText: "placeholderText", searchText: "searchText", selectedFilterBeneficiary: "selectedFilterBeneficiary", selectedFilterCategory: "selectedFilterCategory", selectedFilterLocation: "selectedFilterLocation", selectedSortByOption: "selectedSortByOption", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
389
+ };
390
+ BiggiveCampaignCardFilterGrid = __decorate([
391
+ ProxyCmp({
392
+ inputs: ['beneficiaryOptions', 'buttonText', 'categoryOptions', 'intro', 'locationOptions', 'placeholderText', 'searchText', 'selectedFilterBeneficiary', 'selectedFilterCategory', 'selectedFilterLocation', 'selectedSortByOption', 'spaceBelow'],
393
+ methods: ['unfocusInputs']
394
+ })
395
+ ], BiggiveCampaignCardFilterGrid);
396
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCampaignCardFilterGrid, decorators: [{
397
+ type: Component,
398
+ args: [{
399
+ selector: 'biggive-campaign-card-filter-grid',
400
+ changeDetection: ChangeDetectionStrategy.OnPush,
401
+ template: '<ng-content></ng-content>',
402
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
403
+ inputs: ['beneficiaryOptions', 'buttonText', 'categoryOptions', 'intro', 'locationOptions', 'placeholderText', 'searchText', 'selectedFilterBeneficiary', 'selectedFilterCategory', 'selectedFilterLocation', 'selectedSortByOption', 'spaceBelow'],
404
+ }]
405
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
406
+ let BiggiveCampaignHighlights = class BiggiveCampaignHighlights {
407
+ z;
408
+ el;
409
+ constructor(c, r, z) {
410
+ this.z = z;
411
+ c.detach();
412
+ this.el = r.nativeElement;
413
+ }
414
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCampaignHighlights, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
415
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveCampaignHighlights, selector: "biggive-campaign-highlights", inputs: { banner: "banner", campaignTitle: "campaignTitle", championName: "championName", championUrl: "championUrl", primaryFigureAmount: "primaryFigureAmount", primaryFigureLabel: "primaryFigureLabel", primaryStatIcon: "primaryStatIcon", primaryStatText: "primaryStatText", progressBarCounter: "progressBarCounter", secondaryFigureAmount: "secondaryFigureAmount", secondaryFigureLabel: "secondaryFigureLabel", secondaryStatIcon: "secondaryStatIcon", secondaryStatText: "secondaryStatText", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
416
+ };
417
+ BiggiveCampaignHighlights = __decorate([
418
+ ProxyCmp({
419
+ inputs: ['banner', 'campaignTitle', 'championName', 'championUrl', 'primaryFigureAmount', 'primaryFigureLabel', 'primaryStatIcon', 'primaryStatText', 'progressBarCounter', 'secondaryFigureAmount', 'secondaryFigureLabel', 'secondaryStatIcon', 'secondaryStatText', 'spaceBelow']
420
+ })
421
+ ], BiggiveCampaignHighlights);
422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCampaignHighlights, decorators: [{
423
+ type: Component,
424
+ args: [{
425
+ selector: 'biggive-campaign-highlights',
426
+ changeDetection: ChangeDetectionStrategy.OnPush,
427
+ template: '<ng-content></ng-content>',
428
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
429
+ inputs: ['banner', 'campaignTitle', 'championName', 'championUrl', 'primaryFigureAmount', 'primaryFigureLabel', 'primaryStatIcon', 'primaryStatText', 'progressBarCounter', 'secondaryFigureAmount', 'secondaryFigureLabel', 'secondaryStatIcon', 'secondaryStatText', 'spaceBelow'],
430
+ }]
431
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
432
+ let BiggiveCategoryIcon = class BiggiveCategoryIcon {
433
+ z;
434
+ el;
435
+ constructor(c, r, z) {
436
+ this.z = z;
437
+ c.detach();
438
+ this.el = r.nativeElement;
439
+ }
440
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCategoryIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
441
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveCategoryIcon, selector: "biggive-category-icon", inputs: { backgroundColour: "backgroundColour", icon: "icon", iconColour: "iconColour", label: "label", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
442
+ };
443
+ BiggiveCategoryIcon = __decorate([
444
+ ProxyCmp({
445
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'label', 'url']
446
+ })
447
+ ], BiggiveCategoryIcon);
448
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCategoryIcon, decorators: [{
449
+ type: Component,
450
+ args: [{
451
+ selector: 'biggive-category-icon',
452
+ changeDetection: ChangeDetectionStrategy.OnPush,
453
+ template: '<ng-content></ng-content>',
454
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
455
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'label', 'url'],
456
+ }]
457
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
458
+ let BiggiveContainerCard = class BiggiveContainerCard {
459
+ z;
460
+ el;
461
+ constructor(c, r, z) {
462
+ this.z = z;
463
+ c.detach();
464
+ this.el = r.nativeElement;
465
+ }
466
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveContainerCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
467
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveContainerCard, selector: "biggive-container-card", inputs: { backgroundColour: "backgroundColour", backgroundImageUrl: "backgroundImageUrl", cardColour: "cardColour", clipBottomLeftCorner: "clipBottomLeftCorner", clipTopRightCorner: "clipTopRightCorner", headingLevel: "headingLevel", spaceBelow: "spaceBelow", textColour: "textColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
468
+ };
469
+ BiggiveContainerCard = __decorate([
470
+ ProxyCmp({
471
+ inputs: ['backgroundColour', 'backgroundImageUrl', 'cardColour', 'clipBottomLeftCorner', 'clipTopRightCorner', 'headingLevel', 'spaceBelow', 'textColour']
472
+ })
473
+ ], BiggiveContainerCard);
474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveContainerCard, decorators: [{
475
+ type: Component,
476
+ args: [{
477
+ selector: 'biggive-container-card',
478
+ changeDetection: ChangeDetectionStrategy.OnPush,
479
+ template: '<ng-content></ng-content>',
480
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
481
+ inputs: ['backgroundColour', 'backgroundImageUrl', 'cardColour', 'clipBottomLeftCorner', 'clipTopRightCorner', 'headingLevel', 'spaceBelow', 'textColour'],
482
+ }]
483
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
484
+ let BiggiveCookieBanner = class BiggiveCookieBanner {
485
+ z;
486
+ el;
487
+ constructor(c, r, z) {
488
+ this.z = z;
489
+ c.detach();
490
+ this.el = r.nativeElement;
491
+ proxyOutputs(this, this.el, ['preferenceModalClosed', 'cookieBannerAcceptAllSelected', 'cookieBannerSavePreferencesSelected']);
492
+ }
493
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCookieBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
494
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveCookieBanner, selector: "biggive-cookie-banner", inputs: { autoOpenPreferences: "autoOpenPreferences", blogUriPrefix: "blogUriPrefix", previouslyAgreedCookiePreferences: "previouslyAgreedCookiePreferences" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
495
+ };
496
+ BiggiveCookieBanner = __decorate([
497
+ ProxyCmp({
498
+ inputs: ['autoOpenPreferences', 'blogUriPrefix', 'previouslyAgreedCookiePreferences']
499
+ })
500
+ ], BiggiveCookieBanner);
501
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveCookieBanner, decorators: [{
502
+ type: Component,
503
+ args: [{
504
+ selector: 'biggive-cookie-banner',
505
+ changeDetection: ChangeDetectionStrategy.OnPush,
506
+ template: '<ng-content></ng-content>',
507
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
508
+ inputs: ['autoOpenPreferences', 'blogUriPrefix', 'previouslyAgreedCookiePreferences'],
509
+ }]
510
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
511
+ let BiggiveFooter = class BiggiveFooter {
512
+ z;
513
+ el;
514
+ constructor(c, r, z) {
515
+ this.z = z;
516
+ c.detach();
517
+ this.el = r.nativeElement;
518
+ }
519
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
520
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveFooter, selector: "biggive-footer", inputs: { blogUrlPrefix: "blogUrlPrefix", donateUrlPrefix: "donateUrlPrefix", experienceUrlPrefix: "experienceUrlPrefix", headingLevel: "headingLevel", smallCharityWeekEnabled: "smallCharityWeekEnabled", usePresetFooter: "usePresetFooter" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
521
+ };
522
+ BiggiveFooter = __decorate([
523
+ ProxyCmp({
524
+ inputs: ['blogUrlPrefix', 'donateUrlPrefix', 'experienceUrlPrefix', 'headingLevel', 'smallCharityWeekEnabled', 'usePresetFooter']
525
+ })
526
+ ], BiggiveFooter);
527
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveFooter, decorators: [{
528
+ type: Component,
529
+ args: [{
530
+ selector: 'biggive-footer',
531
+ changeDetection: ChangeDetectionStrategy.OnPush,
532
+ template: '<ng-content></ng-content>',
533
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
534
+ inputs: ['blogUrlPrefix', 'donateUrlPrefix', 'experienceUrlPrefix', 'headingLevel', 'smallCharityWeekEnabled', 'usePresetFooter'],
535
+ }]
536
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
537
+ let BiggiveForm = class BiggiveForm {
538
+ z;
539
+ el;
540
+ constructor(c, r, z) {
541
+ this.z = z;
542
+ c.detach();
543
+ this.el = r.nativeElement;
544
+ }
545
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
546
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveForm, selector: "biggive-form", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
547
+ };
548
+ BiggiveForm = __decorate([
549
+ ProxyCmp({})
550
+ ], BiggiveForm);
551
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveForm, decorators: [{
552
+ type: Component,
553
+ args: [{
554
+ selector: 'biggive-form',
555
+ changeDetection: ChangeDetectionStrategy.OnPush,
556
+ template: '<ng-content></ng-content>',
557
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
558
+ inputs: [],
559
+ }]
560
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
561
+ let BiggiveFormFieldSelect = class BiggiveFormFieldSelect {
562
+ z;
563
+ el;
564
+ constructor(c, r, z) {
565
+ this.z = z;
566
+ c.detach();
567
+ this.el = r.nativeElement;
568
+ }
569
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveFormFieldSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
570
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveFormFieldSelect, selector: "biggive-form-field-select", inputs: { backgroundColour: "backgroundColour", options: "options", placeholder: "placeholder", prompt: "prompt", selectStyle: "selectStyle", selectedLabel: "selectedLabel", selectedOptionColour: "selectedOptionColour", selectedValue: "selectedValue", selectionChanged: "selectionChanged", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
571
+ };
572
+ BiggiveFormFieldSelect = __decorate([
573
+ ProxyCmp({
574
+ inputs: ['backgroundColour', 'options', 'placeholder', 'prompt', 'selectStyle', 'selectedLabel', 'selectedOptionColour', 'selectedValue', 'selectionChanged', 'spaceBelow']
575
+ })
576
+ ], BiggiveFormFieldSelect);
577
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveFormFieldSelect, decorators: [{
578
+ type: Component,
579
+ args: [{
580
+ selector: 'biggive-form-field-select',
581
+ changeDetection: ChangeDetectionStrategy.OnPush,
582
+ template: '<ng-content></ng-content>',
583
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
584
+ inputs: ['backgroundColour', 'options', 'placeholder', 'prompt', 'selectStyle', 'selectedLabel', 'selectedOptionColour', 'selectedValue', 'selectionChanged', 'spaceBelow'],
585
+ }]
586
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
587
+ let BiggiveFormattedText = class BiggiveFormattedText {
588
+ z;
589
+ el;
590
+ constructor(c, r, z) {
591
+ this.z = z;
592
+ c.detach();
593
+ this.el = r.nativeElement;
594
+ }
595
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveFormattedText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
596
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveFormattedText, selector: "biggive-formatted-text", inputs: { defaultTextColour: "defaultTextColour", maxWidth: "maxWidth", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
597
+ };
598
+ BiggiveFormattedText = __decorate([
599
+ ProxyCmp({
600
+ inputs: ['defaultTextColour', 'maxWidth', 'spaceBelow']
601
+ })
602
+ ], BiggiveFormattedText);
603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveFormattedText, decorators: [{
604
+ type: Component,
605
+ args: [{
606
+ selector: 'biggive-formatted-text',
607
+ changeDetection: ChangeDetectionStrategy.OnPush,
608
+ template: '<ng-content></ng-content>',
609
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
610
+ inputs: ['defaultTextColour', 'maxWidth', 'spaceBelow'],
611
+ }]
612
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
613
+ let BiggiveGenericIcon = class BiggiveGenericIcon {
614
+ z;
615
+ el;
616
+ constructor(c, r, z) {
617
+ this.z = z;
618
+ c.detach();
619
+ this.el = r.nativeElement;
620
+ }
621
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveGenericIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
622
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveGenericIcon, selector: "biggive-generic-icon", inputs: { backgroundColour: "backgroundColour", icon: "icon", iconColour: "iconColour", iconGroup: "iconGroup", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
623
+ };
624
+ BiggiveGenericIcon = __decorate([
625
+ ProxyCmp({
626
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'iconGroup', 'url']
627
+ })
628
+ ], BiggiveGenericIcon);
629
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveGenericIcon, decorators: [{
630
+ type: Component,
631
+ args: [{
632
+ selector: 'biggive-generic-icon',
633
+ changeDetection: ChangeDetectionStrategy.OnPush,
634
+ template: '<ng-content></ng-content>',
635
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
636
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'iconGroup', 'url'],
637
+ }]
638
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
639
+ let BiggiveGrid = class BiggiveGrid {
640
+ z;
641
+ el;
642
+ constructor(c, r, z) {
643
+ this.z = z;
644
+ c.detach();
645
+ this.el = r.nativeElement;
646
+ }
647
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
648
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveGrid, selector: "biggive-grid", inputs: { columnCount: "columnCount", columnGap: "columnGap", spaceBelow: "spaceBelow", spaceBetween: "spaceBetween" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
649
+ };
650
+ BiggiveGrid = __decorate([
651
+ ProxyCmp({
652
+ inputs: ['columnCount', 'columnGap', 'spaceBelow', 'spaceBetween']
653
+ })
654
+ ], BiggiveGrid);
655
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveGrid, decorators: [{
656
+ type: Component,
657
+ args: [{
658
+ selector: 'biggive-grid',
659
+ changeDetection: ChangeDetectionStrategy.OnPush,
660
+ template: '<ng-content></ng-content>',
661
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
662
+ inputs: ['columnCount', 'columnGap', 'spaceBelow', 'spaceBetween'],
663
+ }]
664
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
665
+ let BiggiveHeading = class BiggiveHeading {
666
+ z;
667
+ el;
668
+ constructor(c, r, z) {
669
+ this.z = z;
670
+ c.detach();
671
+ this.el = r.nativeElement;
672
+ }
673
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveHeading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
674
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveHeading, selector: "biggive-heading", inputs: { align: "align", colour: "colour", htmlElement: "htmlElement", icon: "icon", iconColour: "iconColour", size: "size", spaceAbove: "spaceAbove", spaceBelow: "spaceBelow", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
675
+ };
676
+ BiggiveHeading = __decorate([
677
+ ProxyCmp({
678
+ inputs: ['align', 'colour', 'htmlElement', 'icon', 'iconColour', 'size', 'spaceAbove', 'spaceBelow', 'text']
679
+ })
680
+ ], BiggiveHeading);
681
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveHeading, decorators: [{
682
+ type: Component,
683
+ args: [{
684
+ selector: 'biggive-heading',
685
+ changeDetection: ChangeDetectionStrategy.OnPush,
686
+ template: '<ng-content></ng-content>',
687
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
688
+ inputs: ['align', 'colour', 'htmlElement', 'icon', 'iconColour', 'size', 'spaceAbove', 'spaceBelow', 'text'],
689
+ }]
690
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
691
+ let BiggiveHeroImage = class BiggiveHeroImage {
692
+ z;
693
+ el;
694
+ constructor(c, r, z) {
695
+ this.z = z;
696
+ c.detach();
697
+ this.el = r.nativeElement;
698
+ }
699
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveHeroImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
700
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveHeroImage, selector: "biggive-hero-image", inputs: { buttonColourScheme: "buttonColourScheme", buttonLabel: "buttonLabel", buttonUrl: "buttonUrl", colourScheme: "colourScheme", logo: "logo", logoAltText: "logoAltText", logoHeight: "logoHeight", mainImage: "mainImage", mainImageAlignHorizontal: "mainImageAlignHorizontal", mainImageAlignVertical: "mainImageAlignVertical", mainImageShape: "mainImageShape", mainTitle: "mainTitle", mainTitleColour: "mainTitleColour", slug: "slug", slugColour: "slugColour", spaceBelow: "spaceBelow", teaser: "teaser", teaserColour: "teaserColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
701
+ };
702
+ BiggiveHeroImage = __decorate([
703
+ ProxyCmp({
704
+ inputs: ['buttonColourScheme', 'buttonLabel', 'buttonUrl', 'colourScheme', 'logo', 'logoAltText', 'logoHeight', 'mainImage', 'mainImageAlignHorizontal', 'mainImageAlignVertical', 'mainImageShape', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceBelow', 'teaser', 'teaserColour']
705
+ })
706
+ ], BiggiveHeroImage);
707
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveHeroImage, decorators: [{
708
+ type: Component,
709
+ args: [{
710
+ selector: 'biggive-hero-image',
711
+ changeDetection: ChangeDetectionStrategy.OnPush,
712
+ template: '<ng-content></ng-content>',
713
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
714
+ inputs: ['buttonColourScheme', 'buttonLabel', 'buttonUrl', 'colourScheme', 'logo', 'logoAltText', 'logoHeight', 'mainImage', 'mainImageAlignHorizontal', 'mainImageAlignVertical', 'mainImageShape', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceBelow', 'teaser', 'teaserColour'],
715
+ }]
716
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
717
+ let BiggiveIconButton = class BiggiveIconButton {
718
+ z;
719
+ el;
720
+ constructor(c, r, z) {
721
+ this.z = z;
722
+ c.detach();
723
+ this.el = r.nativeElement;
724
+ proxyOutputs(this, this.el, ['doButtonClick']);
725
+ }
726
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
727
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveIconButton, selector: "biggive-icon-button", inputs: { arrow: "arrow", arrowColour: "arrowColour", backgroundColour: "backgroundColour", backgroundPadding: "backgroundPadding", buttonId: "buttonId", centered: "centered", circle: "circle", icon: "icon", iconGroup: "iconGroup", openInNewTab: "openInNewTab", rounded: "rounded", shadow: "shadow", size: "size", spaceBelow: "spaceBelow", text: "text", textColour: "textColour", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
728
+ };
729
+ BiggiveIconButton = __decorate([
730
+ ProxyCmp({
731
+ inputs: ['arrow', 'arrowColour', 'backgroundColour', 'backgroundPadding', 'buttonId', 'centered', 'circle', 'icon', 'iconGroup', 'openInNewTab', 'rounded', 'shadow', 'size', 'spaceBelow', 'text', 'textColour', 'url']
732
+ })
733
+ ], BiggiveIconButton);
734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveIconButton, decorators: [{
735
+ type: Component,
736
+ args: [{
737
+ selector: 'biggive-icon-button',
738
+ changeDetection: ChangeDetectionStrategy.OnPush,
739
+ template: '<ng-content></ng-content>',
740
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
741
+ inputs: ['arrow', 'arrowColour', 'backgroundColour', 'backgroundPadding', 'buttonId', 'centered', 'circle', 'icon', 'iconGroup', 'openInNewTab', 'rounded', 'shadow', 'size', 'spaceBelow', 'text', 'textColour', 'url'],
742
+ }]
743
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
744
+ let BiggiveIconGroup = class BiggiveIconGroup {
745
+ z;
746
+ el;
747
+ constructor(c, r, z) {
748
+ this.z = z;
749
+ c.detach();
750
+ this.el = r.nativeElement;
751
+ }
752
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveIconGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
753
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveIconGroup, selector: "biggive-icon-group", inputs: { label: "label", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
754
+ };
755
+ BiggiveIconGroup = __decorate([
756
+ ProxyCmp({
757
+ inputs: ['label', 'spaceBelow']
758
+ })
759
+ ], BiggiveIconGroup);
760
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveIconGroup, decorators: [{
761
+ type: Component,
762
+ args: [{
763
+ selector: 'biggive-icon-group',
764
+ changeDetection: ChangeDetectionStrategy.OnPush,
765
+ template: '<ng-content></ng-content>',
766
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
767
+ inputs: ['label', 'spaceBelow'],
768
+ }]
769
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
770
+ let BiggiveImage = class BiggiveImage {
771
+ z;
772
+ el;
773
+ constructor(c, r, z) {
774
+ this.z = z;
775
+ c.detach();
776
+ this.el = r.nativeElement;
777
+ }
778
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
779
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveImage, selector: "biggive-image", inputs: { height: "height", imageAltText: "imageAltText", imageUrl: "imageUrl", sizeUnit: "sizeUnit", spaceAbove: "spaceAbove", spaceBelow: "spaceBelow", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
780
+ };
781
+ BiggiveImage = __decorate([
782
+ ProxyCmp({
783
+ inputs: ['height', 'imageAltText', 'imageUrl', 'sizeUnit', 'spaceAbove', 'spaceBelow', 'width']
784
+ })
785
+ ], BiggiveImage);
786
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImage, decorators: [{
787
+ type: Component,
788
+ args: [{
789
+ selector: 'biggive-image',
790
+ changeDetection: ChangeDetectionStrategy.OnPush,
791
+ template: '<ng-content></ng-content>',
792
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
793
+ inputs: ['height', 'imageAltText', 'imageUrl', 'sizeUnit', 'spaceAbove', 'spaceBelow', 'width'],
794
+ }]
795
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
796
+ let BiggiveImageButton = class BiggiveImageButton {
797
+ z;
798
+ el;
799
+ constructor(c, r, z) {
800
+ this.z = z;
801
+ c.detach();
802
+ this.el = r.nativeElement;
803
+ proxyOutputs(this, this.el, ['doButtonClick']);
804
+ }
805
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImageButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
806
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveImageButton, selector: "biggive-image-button", inputs: { arrow: "arrow", arrowColour: "arrowColour", backgroundColour: "backgroundColour", backgroundPadding: "backgroundPadding", buttonId: "buttonId", centered: "centered", circle: "circle", imageStyle: "imageStyle", imageUrl: "imageUrl", openInNewTab: "openInNewTab", rounded: "rounded", shadow: "shadow", size: "size", spaceBelow: "spaceBelow", text: "text", textColour: "textColour", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
807
+ };
808
+ BiggiveImageButton = __decorate([
809
+ ProxyCmp({
810
+ inputs: ['arrow', 'arrowColour', 'backgroundColour', 'backgroundPadding', 'buttonId', 'centered', 'circle', 'imageStyle', 'imageUrl', 'openInNewTab', 'rounded', 'shadow', 'size', 'spaceBelow', 'text', 'textColour', 'url']
811
+ })
812
+ ], BiggiveImageButton);
813
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImageButton, decorators: [{
814
+ type: Component,
815
+ args: [{
816
+ selector: 'biggive-image-button',
817
+ changeDetection: ChangeDetectionStrategy.OnPush,
818
+ template: '<ng-content></ng-content>',
819
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
820
+ inputs: ['arrow', 'arrowColour', 'backgroundColour', 'backgroundPadding', 'buttonId', 'centered', 'circle', 'imageStyle', 'imageUrl', 'openInNewTab', 'rounded', 'shadow', 'size', 'spaceBelow', 'text', 'textColour', 'url'],
821
+ }]
822
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
823
+ let BiggiveImageCard = class BiggiveImageCard {
824
+ z;
825
+ el;
826
+ constructor(c, r, z) {
827
+ this.z = z;
828
+ c.detach();
829
+ this.el = r.nativeElement;
830
+ }
831
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImageCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
832
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveImageCard, selector: "biggive-image-card", inputs: { addAnimation: "addAnimation", backgroundColour: "backgroundColour", buttonAlign: "buttonAlign", buttonColourScheme: "buttonColourScheme", buttonLabel: "buttonLabel", buttonStyle: "buttonStyle", buttonUrl: "buttonUrl", clipBottomLeftCorner: "clipBottomLeftCorner", clipTopRightCorner: "clipTopRightCorner", mainImageAltText: "mainImageAltText", mainImageUrl: "mainImageUrl", spaceBelow: "spaceBelow", teaser: "teaser", teaserColour: "teaserColour", textAlign: "textAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
833
+ };
834
+ BiggiveImageCard = __decorate([
835
+ ProxyCmp({
836
+ inputs: ['addAnimation', 'backgroundColour', 'buttonAlign', 'buttonColourScheme', 'buttonLabel', 'buttonStyle', 'buttonUrl', 'clipBottomLeftCorner', 'clipTopRightCorner', 'mainImageAltText', 'mainImageUrl', 'spaceBelow', 'teaser', 'teaserColour', 'textAlign']
837
+ })
838
+ ], BiggiveImageCard);
839
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImageCard, decorators: [{
840
+ type: Component,
841
+ args: [{
842
+ selector: 'biggive-image-card',
843
+ changeDetection: ChangeDetectionStrategy.OnPush,
844
+ template: '<ng-content></ng-content>',
845
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
846
+ inputs: ['addAnimation', 'backgroundColour', 'buttonAlign', 'buttonColourScheme', 'buttonLabel', 'buttonStyle', 'buttonUrl', 'clipBottomLeftCorner', 'clipTopRightCorner', 'mainImageAltText', 'mainImageUrl', 'spaceBelow', 'teaser', 'teaserColour', 'textAlign'],
847
+ }]
848
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
849
+ let BiggiveImageFeature = class BiggiveImageFeature {
850
+ z;
851
+ el;
852
+ constructor(c, r, z) {
853
+ this.z = z;
854
+ c.detach();
855
+ this.el = r.nativeElement;
856
+ }
857
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImageFeature, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
858
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveImageFeature, selector: "biggive-image-feature", inputs: { buttonColourScheme: "buttonColourScheme", buttonLabel: "buttonLabel", buttonUrl: "buttonUrl", defaultTextColour: "defaultTextColour", imageAltText: "imageAltText", imageUrl: "imageUrl", mainTitle: "mainTitle", mainTitleColour: "mainTitleColour", slug: "slug", slugColour: "slugColour", spaceBelow: "spaceBelow", teaser: "teaser", teaserColour: "teaserColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
859
+ };
860
+ BiggiveImageFeature = __decorate([
861
+ ProxyCmp({
862
+ inputs: ['buttonColourScheme', 'buttonLabel', 'buttonUrl', 'defaultTextColour', 'imageAltText', 'imageUrl', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceBelow', 'teaser', 'teaserColour']
863
+ })
864
+ ], BiggiveImageFeature);
865
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveImageFeature, decorators: [{
866
+ type: Component,
867
+ args: [{
868
+ selector: 'biggive-image-feature',
869
+ changeDetection: ChangeDetectionStrategy.OnPush,
870
+ template: '<ng-content></ng-content>',
871
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
872
+ inputs: ['buttonColourScheme', 'buttonLabel', 'buttonUrl', 'defaultTextColour', 'imageAltText', 'imageUrl', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceBelow', 'teaser', 'teaserColour'],
873
+ }]
874
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
875
+ let BiggiveMainMenu = class BiggiveMainMenu {
876
+ z;
877
+ el;
878
+ constructor(c, r, z) {
879
+ this.z = z;
880
+ c.detach();
881
+ this.el = r.nativeElement;
882
+ proxyOutputs(this, this.el, ['logoutClicked']);
883
+ }
884
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveMainMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
885
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveMainMenu, selector: "biggive-main-menu", inputs: { blogUrlPrefix: "blogUrlPrefix", donateUrlPrefix: "donateUrlPrefix", experienceUrlPrefix: "experienceUrlPrefix", isLoggedIn: "isLoggedIn", smallCharityWeekEnabled: "smallCharityWeekEnabled", someCampaignHasHomePageRedirect: "someCampaignHasHomePageRedirect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
886
+ };
887
+ BiggiveMainMenu = __decorate([
888
+ ProxyCmp({
889
+ inputs: ['blogUrlPrefix', 'donateUrlPrefix', 'experienceUrlPrefix', 'isLoggedIn', 'smallCharityWeekEnabled', 'someCampaignHasHomePageRedirect'],
890
+ methods: ['closeMobileMenuFromOutside']
891
+ })
892
+ ], BiggiveMainMenu);
893
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveMainMenu, decorators: [{
894
+ type: Component,
895
+ args: [{
896
+ selector: 'biggive-main-menu',
897
+ changeDetection: ChangeDetectionStrategy.OnPush,
898
+ template: '<ng-content></ng-content>',
899
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
900
+ inputs: ['blogUrlPrefix', 'donateUrlPrefix', 'experienceUrlPrefix', 'isLoggedIn', 'smallCharityWeekEnabled', 'someCampaignHasHomePageRedirect'],
901
+ }]
902
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
903
+ let BiggiveMiscIcon = class BiggiveMiscIcon {
904
+ z;
905
+ el;
906
+ constructor(c, r, z) {
907
+ this.z = z;
908
+ c.detach();
909
+ this.el = r.nativeElement;
910
+ }
911
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveMiscIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
912
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveMiscIcon, selector: "biggive-misc-icon", inputs: { backgroundColour: "backgroundColour", icon: "icon", iconColour: "iconColour", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
913
+ };
914
+ BiggiveMiscIcon = __decorate([
915
+ ProxyCmp({
916
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'url']
917
+ })
918
+ ], BiggiveMiscIcon);
919
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveMiscIcon, decorators: [{
920
+ type: Component,
921
+ args: [{
922
+ selector: 'biggive-misc-icon',
923
+ changeDetection: ChangeDetectionStrategy.OnPush,
924
+ template: '<ng-content></ng-content>',
925
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
926
+ inputs: ['backgroundColour', 'icon', 'iconColour', 'url'],
927
+ }]
928
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
929
+ let BiggiveNavGroup = class BiggiveNavGroup {
930
+ z;
931
+ el;
932
+ constructor(c, r, z) {
933
+ this.z = z;
934
+ c.detach();
935
+ this.el = r.nativeElement;
936
+ }
937
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveNavGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
938
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveNavGroup, selector: "biggive-nav-group", inputs: { inline: "inline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
939
+ };
940
+ BiggiveNavGroup = __decorate([
941
+ ProxyCmp({
942
+ inputs: ['inline']
943
+ })
944
+ ], BiggiveNavGroup);
945
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveNavGroup, decorators: [{
946
+ type: Component,
947
+ args: [{
948
+ selector: 'biggive-nav-group',
949
+ changeDetection: ChangeDetectionStrategy.OnPush,
950
+ template: '<ng-content></ng-content>',
951
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
952
+ inputs: ['inline'],
953
+ }]
954
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
955
+ let BiggiveNavItem = class BiggiveNavItem {
956
+ z;
957
+ el;
958
+ constructor(c, r, z) {
959
+ this.z = z;
960
+ c.detach();
961
+ this.el = r.nativeElement;
962
+ }
963
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveNavItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
964
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveNavItem, selector: "biggive-nav-item", inputs: { iconColour: "iconColour", label: "label", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
965
+ };
966
+ BiggiveNavItem = __decorate([
967
+ ProxyCmp({
968
+ inputs: ['iconColour', 'label', 'url']
969
+ })
970
+ ], BiggiveNavItem);
971
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveNavItem, decorators: [{
972
+ type: Component,
973
+ args: [{
974
+ selector: 'biggive-nav-item',
975
+ changeDetection: ChangeDetectionStrategy.OnPush,
976
+ template: '<ng-content></ng-content>',
977
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
978
+ inputs: ['iconColour', 'label', 'url'],
979
+ }]
980
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
981
+ let BiggivePageColumn = class BiggivePageColumn {
982
+ z;
983
+ el;
984
+ constructor(c, r, z) {
985
+ this.z = z;
986
+ c.detach();
987
+ this.el = r.nativeElement;
988
+ }
989
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePageColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
990
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggivePageColumn, selector: "biggive-page-column", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
991
+ };
992
+ BiggivePageColumn = __decorate([
993
+ ProxyCmp({})
994
+ ], BiggivePageColumn);
995
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePageColumn, decorators: [{
996
+ type: Component,
997
+ args: [{
998
+ selector: 'biggive-page-column',
999
+ changeDetection: ChangeDetectionStrategy.OnPush,
1000
+ template: '<ng-content></ng-content>',
1001
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1002
+ inputs: [],
1003
+ }]
1004
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1005
+ let BiggivePageColumns = class BiggivePageColumns {
1006
+ z;
1007
+ el;
1008
+ constructor(c, r, z) {
1009
+ this.z = z;
1010
+ c.detach();
1011
+ this.el = r.nativeElement;
1012
+ }
1013
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePageColumns, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1014
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggivePageColumns, selector: "biggive-page-columns", inputs: { spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1015
+ };
1016
+ BiggivePageColumns = __decorate([
1017
+ ProxyCmp({
1018
+ inputs: ['spaceBelow']
1019
+ })
1020
+ ], BiggivePageColumns);
1021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePageColumns, decorators: [{
1022
+ type: Component,
1023
+ args: [{
1024
+ selector: 'biggive-page-columns',
1025
+ changeDetection: ChangeDetectionStrategy.OnPush,
1026
+ template: '<ng-content></ng-content>',
1027
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1028
+ inputs: ['spaceBelow'],
1029
+ }]
1030
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1031
+ let BiggivePageSection = class BiggivePageSection {
1032
+ z;
1033
+ el;
1034
+ constructor(c, r, z) {
1035
+ this.z = z;
1036
+ c.detach();
1037
+ this.el = r.nativeElement;
1038
+ }
1039
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePageSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1040
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggivePageSection, selector: "biggive-page-section", inputs: { colourScheme: "colourScheme", maxWidth: "maxWidth", primaryFullBleed: "primaryFullBleed", sectionStyleBottom: "sectionStyleBottom", sectionStyleTop: "sectionStyleTop", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1041
+ };
1042
+ BiggivePageSection = __decorate([
1043
+ ProxyCmp({
1044
+ inputs: ['colourScheme', 'maxWidth', 'primaryFullBleed', 'sectionStyleBottom', 'sectionStyleTop', 'spaceBelow']
1045
+ })
1046
+ ], BiggivePageSection);
1047
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePageSection, decorators: [{
1048
+ type: Component,
1049
+ args: [{
1050
+ selector: 'biggive-page-section',
1051
+ changeDetection: ChangeDetectionStrategy.OnPush,
1052
+ template: '<ng-content></ng-content>',
1053
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1054
+ inputs: ['colourScheme', 'maxWidth', 'primaryFullBleed', 'sectionStyleBottom', 'sectionStyleTop', 'spaceBelow'],
1055
+ }]
1056
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1057
+ let BiggivePopup = class BiggivePopup {
1058
+ z;
1059
+ el;
1060
+ constructor(c, r, z) {
1061
+ this.z = z;
1062
+ c.detach();
1063
+ this.el = r.nativeElement;
1064
+ }
1065
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePopup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1066
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggivePopup, selector: "biggive-popup", inputs: { modalClosedCallback: "modalClosedCallback" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1067
+ };
1068
+ BiggivePopup = __decorate([
1069
+ ProxyCmp({
1070
+ inputs: ['modalClosedCallback'],
1071
+ methods: ['openFromOutside', 'closeFromOutside']
1072
+ })
1073
+ ], BiggivePopup);
1074
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggivePopup, decorators: [{
1075
+ type: Component,
1076
+ args: [{
1077
+ selector: 'biggive-popup',
1078
+ changeDetection: ChangeDetectionStrategy.OnPush,
1079
+ template: '<ng-content></ng-content>',
1080
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1081
+ inputs: ['modalClosedCallback'],
1082
+ }]
1083
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1084
+ let BiggiveProgressBar = class BiggiveProgressBar {
1085
+ z;
1086
+ el;
1087
+ constructor(c, r, z) {
1088
+ this.z = z;
1089
+ c.detach();
1090
+ this.el = r.nativeElement;
1091
+ }
1092
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1093
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveProgressBar, selector: "biggive-progress-bar", inputs: { colourScheme: "colourScheme", counter: "counter", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1094
+ };
1095
+ BiggiveProgressBar = __decorate([
1096
+ ProxyCmp({
1097
+ inputs: ['colourScheme', 'counter', 'spaceBelow']
1098
+ })
1099
+ ], BiggiveProgressBar);
1100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveProgressBar, decorators: [{
1101
+ type: Component,
1102
+ args: [{
1103
+ selector: 'biggive-progress-bar',
1104
+ changeDetection: ChangeDetectionStrategy.OnPush,
1105
+ template: '<ng-content></ng-content>',
1106
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1107
+ inputs: ['colourScheme', 'counter', 'spaceBelow'],
1108
+ }]
1109
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1110
+ let BiggiveQuote = class BiggiveQuote {
1111
+ z;
1112
+ el;
1113
+ constructor(c, r, z) {
1114
+ this.z = z;
1115
+ c.detach();
1116
+ this.el = r.nativeElement;
1117
+ }
1118
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveQuote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1119
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveQuote, selector: "biggive-quote", inputs: { attribution: "attribution", defaultTextColour: "defaultTextColour", quote: "quote", quoteIconColour: "quoteIconColour", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1120
+ };
1121
+ BiggiveQuote = __decorate([
1122
+ ProxyCmp({
1123
+ inputs: ['attribution', 'defaultTextColour', 'quote', 'quoteIconColour', 'spaceBelow']
1124
+ })
1125
+ ], BiggiveQuote);
1126
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveQuote, decorators: [{
1127
+ type: Component,
1128
+ args: [{
1129
+ selector: 'biggive-quote',
1130
+ changeDetection: ChangeDetectionStrategy.OnPush,
1131
+ template: '<ng-content></ng-content>',
1132
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1133
+ inputs: ['attribution', 'defaultTextColour', 'quote', 'quoteIconColour', 'spaceBelow'],
1134
+ }]
1135
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1136
+ let BiggiveSheet = class BiggiveSheet {
1137
+ z;
1138
+ el;
1139
+ constructor(c, r, z) {
1140
+ this.z = z;
1141
+ c.detach();
1142
+ this.el = r.nativeElement;
1143
+ }
1144
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1145
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveSheet, selector: "biggive-sheet", inputs: { backgroundColour: "backgroundColour", sheetId: "sheetId", textColour: "textColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1146
+ };
1147
+ BiggiveSheet = __decorate([
1148
+ ProxyCmp({
1149
+ inputs: ['backgroundColour', 'sheetId', 'textColour']
1150
+ })
1151
+ ], BiggiveSheet);
1152
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveSheet, decorators: [{
1153
+ type: Component,
1154
+ args: [{
1155
+ selector: 'biggive-sheet',
1156
+ changeDetection: ChangeDetectionStrategy.OnPush,
1157
+ template: '<ng-content></ng-content>',
1158
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1159
+ inputs: ['backgroundColour', 'sheetId', 'textColour'],
1160
+ }]
1161
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1162
+ let BiggiveSocialIcon = class BiggiveSocialIcon {
1163
+ z;
1164
+ el;
1165
+ constructor(c, r, z) {
1166
+ this.z = z;
1167
+ c.detach();
1168
+ this.el = r.nativeElement;
1169
+ }
1170
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveSocialIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1171
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveSocialIcon, selector: "biggive-social-icon", inputs: { backgroundColour: "backgroundColour", iconColour: "iconColour", labelPrefix: "labelPrefix", service: "service", url: "url", wide: "wide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1172
+ };
1173
+ BiggiveSocialIcon = __decorate([
1174
+ ProxyCmp({
1175
+ inputs: ['backgroundColour', 'iconColour', 'labelPrefix', 'service', 'url', 'wide']
1176
+ })
1177
+ ], BiggiveSocialIcon);
1178
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveSocialIcon, decorators: [{
1179
+ type: Component,
1180
+ args: [{
1181
+ selector: 'biggive-social-icon',
1182
+ changeDetection: ChangeDetectionStrategy.OnPush,
1183
+ template: '<ng-content></ng-content>',
1184
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1185
+ inputs: ['backgroundColour', 'iconColour', 'labelPrefix', 'service', 'url', 'wide'],
1186
+ }]
1187
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1188
+ let BiggiveTab = class BiggiveTab {
1189
+ z;
1190
+ el;
1191
+ constructor(c, r, z) {
1192
+ this.z = z;
1193
+ c.detach();
1194
+ this.el = r.nativeElement;
1195
+ }
1196
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1197
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTab, selector: "biggive-tab", inputs: { tabTitle: "tabTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1198
+ };
1199
+ BiggiveTab = __decorate([
1200
+ ProxyCmp({
1201
+ inputs: ['tabTitle']
1202
+ })
1203
+ ], BiggiveTab);
1204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTab, decorators: [{
1205
+ type: Component,
1206
+ args: [{
1207
+ selector: 'biggive-tab',
1208
+ changeDetection: ChangeDetectionStrategy.OnPush,
1209
+ template: '<ng-content></ng-content>',
1210
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1211
+ inputs: ['tabTitle'],
1212
+ }]
1213
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1214
+ let BiggiveTabbedContent = class BiggiveTabbedContent {
1215
+ z;
1216
+ el;
1217
+ constructor(c, r, z) {
1218
+ this.z = z;
1219
+ c.detach();
1220
+ this.el = r.nativeElement;
1221
+ }
1222
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTabbedContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1223
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTabbedContent, selector: "biggive-tabbed-content", inputs: { buttonBackgroundColour: "buttonBackgroundColour", buttonIconColour: "buttonIconColour", navigationHighlightColour: "navigationHighlightColour", selectedNavigationHighlightColour: "selectedNavigationHighlightColour", selectedTextColour: "selectedTextColour", spaceBelow: "spaceBelow", textColour: "textColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1224
+ };
1225
+ BiggiveTabbedContent = __decorate([
1226
+ ProxyCmp({
1227
+ inputs: ['buttonBackgroundColour', 'buttonIconColour', 'navigationHighlightColour', 'selectedNavigationHighlightColour', 'selectedTextColour', 'spaceBelow', 'textColour']
1228
+ })
1229
+ ], BiggiveTabbedContent);
1230
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTabbedContent, decorators: [{
1231
+ type: Component,
1232
+ args: [{
1233
+ selector: 'biggive-tabbed-content',
1234
+ changeDetection: ChangeDetectionStrategy.OnPush,
1235
+ template: '<ng-content></ng-content>',
1236
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1237
+ inputs: ['buttonBackgroundColour', 'buttonIconColour', 'navigationHighlightColour', 'selectedNavigationHighlightColour', 'selectedTextColour', 'spaceBelow', 'textColour'],
1238
+ }]
1239
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1240
+ let BiggiveTable = class BiggiveTable {
1241
+ z;
1242
+ el;
1243
+ constructor(c, r, z) {
1244
+ this.z = z;
1245
+ c.detach();
1246
+ this.el = r.nativeElement;
1247
+ }
1248
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1249
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTable, selector: "biggive-table", inputs: { bodyBackgroundColour: "bodyBackgroundColour", bodyTextColour: "bodyTextColour", headerBackgroundColour: "headerBackgroundColour", headerTextColour: "headerTextColour", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1250
+ };
1251
+ BiggiveTable = __decorate([
1252
+ ProxyCmp({
1253
+ inputs: ['bodyBackgroundColour', 'bodyTextColour', 'headerBackgroundColour', 'headerTextColour', 'spaceBelow']
1254
+ })
1255
+ ], BiggiveTable);
1256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTable, decorators: [{
1257
+ type: Component,
1258
+ args: [{
1259
+ selector: 'biggive-table',
1260
+ changeDetection: ChangeDetectionStrategy.OnPush,
1261
+ template: '<ng-content></ng-content>',
1262
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1263
+ inputs: ['bodyBackgroundColour', 'bodyTextColour', 'headerBackgroundColour', 'headerTextColour', 'spaceBelow'],
1264
+ }]
1265
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1266
+ let BiggiveTextInput = class BiggiveTextInput {
1267
+ z;
1268
+ el;
1269
+ constructor(c, r, z) {
1270
+ this.z = z;
1271
+ c.detach();
1272
+ this.el = r.nativeElement;
1273
+ }
1274
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1275
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTextInput, selector: "biggive-text-input", inputs: { currency: "currency", selectStyle: "selectStyle", spaceBelow: "spaceBelow", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1276
+ };
1277
+ BiggiveTextInput = __decorate([
1278
+ ProxyCmp({
1279
+ inputs: ['currency', 'selectStyle', 'spaceBelow', 'value']
1280
+ })
1281
+ ], BiggiveTextInput);
1282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTextInput, decorators: [{
1283
+ type: Component,
1284
+ args: [{
1285
+ selector: 'biggive-text-input',
1286
+ changeDetection: ChangeDetectionStrategy.OnPush,
1287
+ template: '<ng-content></ng-content>',
1288
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1289
+ inputs: ['currency', 'selectStyle', 'spaceBelow', 'value'],
1290
+ }]
1291
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1292
+ let BiggiveTimeline = class BiggiveTimeline {
1293
+ z;
1294
+ el;
1295
+ constructor(c, r, z) {
1296
+ this.z = z;
1297
+ c.detach();
1298
+ this.el = r.nativeElement;
1299
+ }
1300
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTimeline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1301
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTimeline, selector: "biggive-timeline", inputs: { buttonBackgroundColour: "buttonBackgroundColour", buttonIconColour: "buttonIconColour", entryBackgroundColour: "entryBackgroundColour", entryDateColour: "entryDateColour", entryHighlightColour: "entryHighlightColour", entryTextColour: "entryTextColour", entryTitleColour: "entryTitleColour", navigationHighlightColour: "navigationHighlightColour", selectedNavigationHighlightColour: "selectedNavigationHighlightColour", selectedTextColour: "selectedTextColour", spaceBelow: "spaceBelow", textColour: "textColour" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1302
+ };
1303
+ BiggiveTimeline = __decorate([
1304
+ ProxyCmp({
1305
+ inputs: ['buttonBackgroundColour', 'buttonIconColour', 'entryBackgroundColour', 'entryDateColour', 'entryHighlightColour', 'entryTextColour', 'entryTitleColour', 'navigationHighlightColour', 'selectedNavigationHighlightColour', 'selectedTextColour', 'spaceBelow', 'textColour']
1306
+ })
1307
+ ], BiggiveTimeline);
1308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTimeline, decorators: [{
1309
+ type: Component,
1310
+ args: [{
1311
+ selector: 'biggive-timeline',
1312
+ changeDetection: ChangeDetectionStrategy.OnPush,
1313
+ template: '<ng-content></ng-content>',
1314
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1315
+ inputs: ['buttonBackgroundColour', 'buttonIconColour', 'entryBackgroundColour', 'entryDateColour', 'entryHighlightColour', 'entryTextColour', 'entryTitleColour', 'navigationHighlightColour', 'selectedNavigationHighlightColour', 'selectedTextColour', 'spaceBelow', 'textColour'],
1316
+ }]
1317
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1318
+ let BiggiveTimelineEntry = class BiggiveTimelineEntry {
1319
+ z;
1320
+ el;
1321
+ constructor(c, r, z) {
1322
+ this.z = z;
1323
+ c.detach();
1324
+ this.el = r.nativeElement;
1325
+ }
1326
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTimelineEntry, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1327
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTimelineEntry, selector: "biggive-timeline-entry", inputs: { date: "date", heading: "heading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1328
+ };
1329
+ BiggiveTimelineEntry = __decorate([
1330
+ ProxyCmp({
1331
+ inputs: ['date', 'heading']
1332
+ })
1333
+ ], BiggiveTimelineEntry);
1334
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTimelineEntry, decorators: [{
1335
+ type: Component,
1336
+ args: [{
1337
+ selector: 'biggive-timeline-entry',
1338
+ changeDetection: ChangeDetectionStrategy.OnPush,
1339
+ template: '<ng-content></ng-content>',
1340
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1341
+ inputs: ['date', 'heading'],
1342
+ }]
1343
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1344
+ let BiggiveTotalizer = class BiggiveTotalizer {
1345
+ z;
1346
+ el;
1347
+ constructor(c, r, z) {
1348
+ this.z = z;
1349
+ c.detach();
1350
+ this.el = r.nativeElement;
1351
+ }
1352
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTotalizer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1353
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTotalizer, selector: "biggive-totalizer", inputs: { mainMessage: "mainMessage", primaryColour: "primaryColour", primaryTextColour: "primaryTextColour", secondaryColour: "secondaryColour", secondaryTextColour: "secondaryTextColour", spaceBelow: "spaceBelow" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1354
+ };
1355
+ BiggiveTotalizer = __decorate([
1356
+ ProxyCmp({
1357
+ inputs: ['mainMessage', 'primaryColour', 'primaryTextColour', 'secondaryColour', 'secondaryTextColour', 'spaceBelow']
1358
+ })
1359
+ ], BiggiveTotalizer);
1360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTotalizer, decorators: [{
1361
+ type: Component,
1362
+ args: [{
1363
+ selector: 'biggive-totalizer',
1364
+ changeDetection: ChangeDetectionStrategy.OnPush,
1365
+ template: '<ng-content></ng-content>',
1366
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1367
+ inputs: ['mainMessage', 'primaryColour', 'primaryTextColour', 'secondaryColour', 'secondaryTextColour', 'spaceBelow'],
1368
+ }]
1369
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1370
+ let BiggiveTotalizerTickerItem = class BiggiveTotalizerTickerItem {
1371
+ z;
1372
+ el;
1373
+ constructor(c, r, z) {
1374
+ this.z = z;
1375
+ c.detach();
1376
+ this.el = r.nativeElement;
1377
+ }
1378
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTotalizerTickerItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1379
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveTotalizerTickerItem, selector: "biggive-totalizer-ticker-item", inputs: { figure: "figure", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1380
+ };
1381
+ BiggiveTotalizerTickerItem = __decorate([
1382
+ ProxyCmp({
1383
+ inputs: ['figure', 'label']
1384
+ })
1385
+ ], BiggiveTotalizerTickerItem);
1386
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveTotalizerTickerItem, decorators: [{
1387
+ type: Component,
1388
+ args: [{
1389
+ selector: 'biggive-totalizer-ticker-item',
1390
+ changeDetection: ChangeDetectionStrategy.OnPush,
1391
+ template: '<ng-content></ng-content>',
1392
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1393
+ inputs: ['figure', 'label'],
1394
+ }]
1395
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1396
+ let BiggiveVideo = class BiggiveVideo {
1397
+ z;
1398
+ el;
1399
+ constructor(c, r, z) {
1400
+ this.z = z;
1401
+ c.detach();
1402
+ this.el = r.nativeElement;
1403
+ }
1404
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveVideo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1405
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveVideo, selector: "biggive-video", inputs: { spaceAbove: "spaceAbove", spaceBelow: "spaceBelow", videoUrl: "videoUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1406
+ };
1407
+ BiggiveVideo = __decorate([
1408
+ ProxyCmp({
1409
+ inputs: ['spaceAbove', 'spaceBelow', 'videoUrl']
1410
+ })
1411
+ ], BiggiveVideo);
1412
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveVideo, decorators: [{
1413
+ type: Component,
1414
+ args: [{
1415
+ selector: 'biggive-video',
1416
+ changeDetection: ChangeDetectionStrategy.OnPush,
1417
+ template: '<ng-content></ng-content>',
1418
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1419
+ inputs: ['spaceAbove', 'spaceBelow', 'videoUrl'],
1420
+ }]
1421
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1422
+ let BiggiveVideoFeature = class BiggiveVideoFeature {
1423
+ z;
1424
+ el;
1425
+ constructor(c, r, z) {
1426
+ this.z = z;
1427
+ c.detach();
1428
+ this.el = r.nativeElement;
1429
+ }
1430
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveVideoFeature, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1431
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BiggiveVideoFeature, selector: "biggive-video-feature", inputs: { buttonColourScheme: "buttonColourScheme", buttonLabel: "buttonLabel", buttonUrl: "buttonUrl", defaultTextColour: "defaultTextColour", mainTitle: "mainTitle", mainTitleColour: "mainTitleColour", slug: "slug", slugColour: "slugColour", spaceAbove: "spaceAbove", spaceBelow: "spaceBelow", teaser: "teaser", teaserColour: "teaserColour", videoUrl: "videoUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1432
+ };
1433
+ BiggiveVideoFeature = __decorate([
1434
+ ProxyCmp({
1435
+ inputs: ['buttonColourScheme', 'buttonLabel', 'buttonUrl', 'defaultTextColour', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceAbove', 'spaceBelow', 'teaser', 'teaserColour', 'videoUrl']
1436
+ })
1437
+ ], BiggiveVideoFeature);
1438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BiggiveVideoFeature, decorators: [{
1439
+ type: Component,
1440
+ args: [{
1441
+ selector: 'biggive-video-feature',
1442
+ changeDetection: ChangeDetectionStrategy.OnPush,
1443
+ template: '<ng-content></ng-content>',
1444
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1445
+ inputs: ['buttonColourScheme', 'buttonLabel', 'buttonUrl', 'defaultTextColour', 'mainTitle', 'mainTitleColour', 'slug', 'slugColour', 'spaceAbove', 'spaceBelow', 'teaser', 'teaserColour', 'videoUrl'],
1446
+ }]
1447
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1448
+
1449
+ const DIRECTIVES = [
1450
+ BiggiveAccordion,
1451
+ BiggiveAccordionEntry,
1452
+ BiggiveArticleCard,
1453
+ BiggiveBackToTop,
1454
+ BiggiveBasicCard,
1455
+ BiggiveBeneficiaryIcon,
1456
+ BiggiveBiographyCard,
1457
+ BiggiveBoxedContent,
1458
+ BiggiveBrandedImage,
1459
+ BiggiveButton,
1460
+ BiggiveCallToAction,
1461
+ BiggiveCampaignCard,
1462
+ BiggiveCampaignCardFilterGrid,
1463
+ BiggiveCampaignHighlights,
1464
+ BiggiveCategoryIcon,
1465
+ BiggiveContainerCard,
1466
+ BiggiveCookieBanner,
1467
+ BiggiveFooter,
1468
+ BiggiveForm,
1469
+ BiggiveFormFieldSelect,
1470
+ BiggiveFormattedText,
1471
+ BiggiveGenericIcon,
1472
+ BiggiveGrid,
1473
+ BiggiveHeading,
1474
+ BiggiveHeroImage,
1475
+ BiggiveIconButton,
1476
+ BiggiveIconGroup,
1477
+ BiggiveImage,
1478
+ BiggiveImageButton,
1479
+ BiggiveImageCard,
1480
+ BiggiveImageFeature,
1481
+ BiggiveMainMenu,
1482
+ BiggiveMiscIcon,
1483
+ BiggiveNavGroup,
1484
+ BiggiveNavItem,
1485
+ BiggivePageColumn,
1486
+ BiggivePageColumns,
1487
+ BiggivePageSection,
1488
+ BiggivePopup,
1489
+ BiggiveProgressBar,
1490
+ BiggiveQuote,
1491
+ BiggiveSheet,
1492
+ BiggiveSocialIcon,
1493
+ BiggiveTab,
1494
+ BiggiveTabbedContent,
1495
+ BiggiveTable,
1496
+ BiggiveTextInput,
1497
+ BiggiveTimeline,
1498
+ BiggiveTimelineEntry,
1499
+ BiggiveTotalizer,
1500
+ BiggiveTotalizerTickerItem,
1501
+ BiggiveVideo,
1502
+ BiggiveVideoFeature
1503
+ ];
3
1504
 
4
1505
  class ComponentsModule {
5
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
6
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.5", ngImport: i0, type: ComponentsModule });
7
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ComponentsModule });
1506
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1507
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ComponentsModule, declarations: [BiggiveAccordion, BiggiveAccordionEntry, BiggiveArticleCard, BiggiveBackToTop, BiggiveBasicCard, BiggiveBeneficiaryIcon, BiggiveBiographyCard, BiggiveBoxedContent, BiggiveBrandedImage, BiggiveButton, BiggiveCallToAction, BiggiveCampaignCard, BiggiveCampaignCardFilterGrid, BiggiveCampaignHighlights, BiggiveCategoryIcon, BiggiveContainerCard, BiggiveCookieBanner, BiggiveFooter, BiggiveForm, BiggiveFormFieldSelect, BiggiveFormattedText, BiggiveGenericIcon, BiggiveGrid, BiggiveHeading, BiggiveHeroImage, BiggiveIconButton, BiggiveIconGroup, BiggiveImage, BiggiveImageButton, BiggiveImageCard, BiggiveImageFeature, BiggiveMainMenu, BiggiveMiscIcon, BiggiveNavGroup, BiggiveNavItem, BiggivePageColumn, BiggivePageColumns, BiggivePageSection, BiggivePopup, BiggiveProgressBar, BiggiveQuote, BiggiveSheet, BiggiveSocialIcon, BiggiveTab, BiggiveTabbedContent, BiggiveTable, BiggiveTextInput, BiggiveTimeline, BiggiveTimelineEntry, BiggiveTotalizer, BiggiveTotalizerTickerItem, BiggiveVideo, BiggiveVideoFeature], imports: [CommonModule], exports: [BiggiveAccordion, BiggiveAccordionEntry, BiggiveArticleCard, BiggiveBackToTop, BiggiveBasicCard, BiggiveBeneficiaryIcon, BiggiveBiographyCard, BiggiveBoxedContent, BiggiveBrandedImage, BiggiveButton, BiggiveCallToAction, BiggiveCampaignCard, BiggiveCampaignCardFilterGrid, BiggiveCampaignHighlights, BiggiveCategoryIcon, BiggiveContainerCard, BiggiveCookieBanner, BiggiveFooter, BiggiveForm, BiggiveFormFieldSelect, BiggiveFormattedText, BiggiveGenericIcon, BiggiveGrid, BiggiveHeading, BiggiveHeroImage, BiggiveIconButton, BiggiveIconGroup, BiggiveImage, BiggiveImageButton, BiggiveImageCard, BiggiveImageFeature, BiggiveMainMenu, BiggiveMiscIcon, BiggiveNavGroup, BiggiveNavItem, BiggivePageColumn, BiggivePageColumns, BiggivePageSection, BiggivePopup, BiggiveProgressBar, BiggiveQuote, BiggiveSheet, BiggiveSocialIcon, BiggiveTab, BiggiveTabbedContent, BiggiveTable, BiggiveTextInput, BiggiveTimeline, BiggiveTimelineEntry, BiggiveTotalizer, BiggiveTotalizerTickerItem, BiggiveVideo, BiggiveVideoFeature] });
1508
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ComponentsModule, providers: [
1509
+ {
1510
+ provide: APP_INITIALIZER,
1511
+ useFactory: () => defineCustomElements,
1512
+ multi: true,
1513
+ },
1514
+ ], imports: [CommonModule] });
8
1515
  }
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ComponentsModule, decorators: [{
1516
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ComponentsModule, decorators: [{
10
1517
  type: NgModule,
11
1518
  args: [{
12
- declarations: [],
13
- imports: [],
14
- exports: []
1519
+ imports: [CommonModule],
1520
+ declarations: [...DIRECTIVES],
1521
+ exports: [...DIRECTIVES],
1522
+ providers: [
1523
+ {
1524
+ provide: APP_INITIALIZER,
1525
+ useFactory: () => defineCustomElements,
1526
+ multi: true,
1527
+ },
1528
+ ],
15
1529
  }]
16
1530
  }] });
17
1531
 
18
1532
  /*
19
1533
  * Public API Surface of components
20
1534
  */
1535
+ // Directives
21
1536
 
22
1537
  /**
23
1538
  * Generated bundle index. Do not edit.
24
1539
  */
25
1540
 
26
- export { ComponentsModule };
1541
+ export { BiggiveAccordion, BiggiveAccordionEntry, BiggiveArticleCard, BiggiveBackToTop, BiggiveBasicCard, BiggiveBeneficiaryIcon, BiggiveBiographyCard, BiggiveBoxedContent, BiggiveBrandedImage, BiggiveButton, BiggiveCallToAction, BiggiveCampaignCard, BiggiveCampaignCardFilterGrid, BiggiveCampaignHighlights, BiggiveCategoryIcon, BiggiveContainerCard, BiggiveCookieBanner, BiggiveFooter, BiggiveForm, BiggiveFormFieldSelect, BiggiveFormattedText, BiggiveGenericIcon, BiggiveGrid, BiggiveHeading, BiggiveHeroImage, BiggiveIconButton, BiggiveIconGroup, BiggiveImage, BiggiveImageButton, BiggiveImageCard, BiggiveImageFeature, BiggiveMainMenu, BiggiveMiscIcon, BiggiveNavGroup, BiggiveNavItem, BiggivePageColumn, BiggivePageColumns, BiggivePageSection, BiggivePopup, BiggiveProgressBar, BiggiveQuote, BiggiveSheet, BiggiveSocialIcon, BiggiveTab, BiggiveTabbedContent, BiggiveTable, BiggiveTextInput, BiggiveTimeline, BiggiveTimelineEntry, BiggiveTotalizer, BiggiveTotalizerTickerItem, BiggiveVideo, BiggiveVideoFeature, ComponentsModule };
27
1542
  //# sourceMappingURL=biggive-components-angular.mjs.map