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