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