@ukho/admiralty-angular 2.0.0 → 3.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.
Files changed (40) hide show
  1. package/bundles/ukho-admiralty-angular.umd.js +2473 -0
  2. package/bundles/ukho-admiralty-angular.umd.js.map +1 -0
  3. package/esm2015/lib/app_initialise.js +9 -0
  4. package/esm2015/lib/design-system.module.js +60 -0
  5. package/{esm2022/lib/stencil-generated/angular-component-lib/utils.mjs → esm2015/lib/stencil-generated/angular-component-lib/utils.js} +1 -1
  6. package/esm2015/lib/stencil-generated/boolean-value-accessor.js +40 -0
  7. package/esm2015/lib/stencil-generated/components.js +1357 -0
  8. package/esm2015/lib/stencil-generated/index.js +52 -0
  9. package/esm2015/lib/stencil-generated/number-value-accessor.js +42 -0
  10. package/esm2015/lib/stencil-generated/radio-value-accessor.js +37 -0
  11. package/esm2015/lib/stencil-generated/select-value-accessor.js +37 -0
  12. package/esm2015/lib/stencil-generated/text-value-accessor.js +37 -0
  13. package/esm2015/lib/stencil-generated/value-accessor.js +42 -0
  14. package/fesm2015/ukho-admiralty-angular.js +1699 -0
  15. package/fesm2015/ukho-admiralty-angular.js.map +1 -0
  16. package/lib/app_initialise.d.ts +1 -0
  17. package/lib/design-system.module.d.ts +1 -1
  18. package/lib/stencil-generated/boolean-value-accessor.d.ts +1 -1
  19. package/lib/stencil-generated/components.d.ts +49 -58
  20. package/lib/stencil-generated/index.d.ts +1 -1
  21. package/lib/stencil-generated/number-value-accessor.d.ts +1 -1
  22. package/lib/stencil-generated/radio-value-accessor.d.ts +1 -1
  23. package/lib/stencil-generated/select-value-accessor.d.ts +1 -1
  24. package/lib/stencil-generated/text-value-accessor.d.ts +1 -1
  25. package/lib/stencil-generated/value-accessor.d.ts +1 -1
  26. package/package.json +15 -19
  27. package/ukho-admiralty-angular.d.ts +5 -0
  28. package/esm2022/lib/design-system.module.mjs +0 -59
  29. package/esm2022/lib/stencil-generated/boolean-value-accessor.mjs +0 -38
  30. package/esm2022/lib/stencil-generated/components.mjs +0 -1335
  31. package/esm2022/lib/stencil-generated/index.mjs +0 -53
  32. package/esm2022/lib/stencil-generated/number-value-accessor.mjs +0 -40
  33. package/esm2022/lib/stencil-generated/radio-value-accessor.mjs +0 -35
  34. package/esm2022/lib/stencil-generated/select-value-accessor.mjs +0 -35
  35. package/esm2022/lib/stencil-generated/text-value-accessor.mjs +0 -35
  36. package/esm2022/lib/stencil-generated/value-accessor.mjs +0 -42
  37. package/fesm2022/ukho-admiralty-angular.mjs +0 -1659
  38. package/fesm2022/ukho-admiralty-angular.mjs.map +0 -1
  39. /package/{esm2022/index.mjs → esm2015/index.js} +0 -0
  40. /package/{esm2022/ukho-admiralty-angular.mjs → esm2015/ukho-admiralty-angular.js} +0 -0
@@ -0,0 +1,1699 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, Directive, HostListener, APP_INITIALIZER, NgModule } from '@angular/core';
3
+ import { CommonModule } from '@angular/common';
4
+ import { applyPolyfills, defineCustomElements } from '@ukho/admiralty-core/loader';
5
+ import { __decorate } from 'tslib';
6
+ import { fromEvent } from 'rxjs';
7
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
8
+
9
+ const appInitialise = () => {
10
+ return () => {
11
+ return applyPolyfills().then(() => {
12
+ return defineCustomElements();
13
+ });
14
+ };
15
+ };
16
+
17
+ /* eslint-disable */
18
+ const proxyInputs = (Cmp, inputs) => {
19
+ const Prototype = Cmp.prototype;
20
+ inputs.forEach((item) => {
21
+ Object.defineProperty(Prototype, item, {
22
+ get() {
23
+ return this.el[item];
24
+ },
25
+ set(val) {
26
+ this.z.runOutsideAngular(() => (this.el[item] = val));
27
+ },
28
+ /**
29
+ * In the event that proxyInputs is called
30
+ * multiple times re-defining these inputs
31
+ * will cause an error to be thrown. As a result
32
+ * we set configurable: true to indicate these
33
+ * properties can be changed.
34
+ */
35
+ configurable: true,
36
+ });
37
+ });
38
+ };
39
+ const proxyMethods = (Cmp, methods) => {
40
+ const Prototype = Cmp.prototype;
41
+ methods.forEach((methodName) => {
42
+ Prototype[methodName] = function () {
43
+ const args = arguments;
44
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
45
+ };
46
+ });
47
+ };
48
+ const proxyOutputs = (instance, el, events) => {
49
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
50
+ };
51
+ const defineCustomElement = (tagName, customElement) => {
52
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
53
+ customElements.define(tagName, customElement);
54
+ }
55
+ };
56
+ // tslint:disable-next-line: only-arrow-functions
57
+ function ProxyCmp(opts) {
58
+ const decorator = function (cls) {
59
+ const { defineCustomElementFn, inputs, methods } = opts;
60
+ if (defineCustomElementFn !== undefined) {
61
+ defineCustomElementFn();
62
+ }
63
+ if (inputs) {
64
+ proxyInputs(cls, inputs);
65
+ }
66
+ if (methods) {
67
+ proxyMethods(cls, methods);
68
+ }
69
+ return cls;
70
+ };
71
+ return decorator;
72
+ }
73
+
74
+ const _c0 = ["*"];
75
+ let AdmiraltyAutocomplete = class AdmiraltyAutocomplete {
76
+ constructor(c, r, z) {
77
+ this.z = z;
78
+ c.detach();
79
+ this.el = r.nativeElement;
80
+ proxyOutputs(this, this.el, ['admiraltyChange']);
81
+ }
82
+ };
83
+ /** @nocollapse */ AdmiraltyAutocomplete.ɵfac = function AdmiraltyAutocomplete_Factory(t) { return new (t || AdmiraltyAutocomplete)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
84
+ /** @nocollapse */ AdmiraltyAutocomplete.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyAutocomplete, selectors: [["admiralty-autocomplete"]], inputs: { assistiveHint: "assistiveHint", autoselect: "autoselect", confirmOnBlur: "confirmOnBlur", cssNamespace: "cssNamespace", disabled: "disabled", displayMenu: "displayMenu", hint: "hint", inputClasses: "inputClasses", invalid: "invalid", invalidMessage: "invalidMessage", label: "label", menuAttributes: "menuAttributes", menuClasses: "menuClasses", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", showAllValues: "showAllValues", showNoOptionsFound: "showNoOptionsFound", value: "value" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyAutocomplete_Template(rf, ctx) { if (rf & 1) {
85
+ i0.ɵɵprojectionDef();
86
+ i0.ɵɵprojection(0);
87
+ } }, encapsulation: 2, changeDetection: 0 });
88
+ AdmiraltyAutocomplete = __decorate([
89
+ ProxyCmp({
90
+ inputs: ['assistiveHint', 'autoselect', 'confirmOnBlur', 'cssNamespace', 'disabled', 'displayMenu', 'hint', 'inputClasses', 'invalid', 'invalidMessage', 'label', 'menuAttributes', 'menuClasses', 'minLength', 'name', 'placeholder', 'required', 'showAllValues', 'showNoOptionsFound', 'value']
91
+ })
92
+ ], AdmiraltyAutocomplete);
93
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyAutocomplete, [{
94
+ type: Component,
95
+ args: [{
96
+ selector: 'admiralty-autocomplete',
97
+ changeDetection: ChangeDetectionStrategy.OnPush,
98
+ template: '<ng-content></ng-content>',
99
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
100
+ inputs: ['assistiveHint', 'autoselect', 'confirmOnBlur', 'cssNamespace', 'disabled', 'displayMenu', 'hint', 'inputClasses', 'invalid', 'invalidMessage', 'label', 'menuAttributes', 'menuClasses', 'minLength', 'name', 'placeholder', 'required', 'showAllValues', 'showNoOptionsFound', 'value'],
101
+ }]
102
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
103
+ let AdmiraltyAutocompleteOption = class AdmiraltyAutocompleteOption {
104
+ constructor(c, r, z) {
105
+ this.z = z;
106
+ c.detach();
107
+ this.el = r.nativeElement;
108
+ }
109
+ };
110
+ /** @nocollapse */ AdmiraltyAutocompleteOption.ɵfac = function AdmiraltyAutocompleteOption_Factory(t) { return new (t || AdmiraltyAutocompleteOption)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
111
+ /** @nocollapse */ AdmiraltyAutocompleteOption.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyAutocompleteOption, selectors: [["admiralty-autocomplete-option"]], inputs: { value: "value" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyAutocompleteOption_Template(rf, ctx) { if (rf & 1) {
112
+ i0.ɵɵprojectionDef();
113
+ i0.ɵɵprojection(0);
114
+ } }, encapsulation: 2, changeDetection: 0 });
115
+ AdmiraltyAutocompleteOption = __decorate([
116
+ ProxyCmp({
117
+ inputs: ['value']
118
+ })
119
+ ], AdmiraltyAutocompleteOption);
120
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyAutocompleteOption, [{
121
+ type: Component,
122
+ args: [{
123
+ selector: 'admiralty-autocomplete-option',
124
+ changeDetection: ChangeDetectionStrategy.OnPush,
125
+ template: '<ng-content></ng-content>',
126
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
127
+ inputs: ['value'],
128
+ }]
129
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
130
+ let AdmiraltyBreadcrumb = class AdmiraltyBreadcrumb {
131
+ constructor(c, r, z) {
132
+ this.z = z;
133
+ c.detach();
134
+ this.el = r.nativeElement;
135
+ }
136
+ };
137
+ /** @nocollapse */ AdmiraltyBreadcrumb.ɵfac = function AdmiraltyBreadcrumb_Factory(t) { return new (t || AdmiraltyBreadcrumb)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
138
+ /** @nocollapse */ AdmiraltyBreadcrumb.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyBreadcrumb, selectors: [["admiralty-breadcrumb"]], inputs: { active: "active", href: "href" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyBreadcrumb_Template(rf, ctx) { if (rf & 1) {
139
+ i0.ɵɵprojectionDef();
140
+ i0.ɵɵprojection(0);
141
+ } }, encapsulation: 2, changeDetection: 0 });
142
+ AdmiraltyBreadcrumb = __decorate([
143
+ ProxyCmp({
144
+ inputs: ['active', 'href']
145
+ })
146
+ ], AdmiraltyBreadcrumb);
147
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyBreadcrumb, [{
148
+ type: Component,
149
+ args: [{
150
+ selector: 'admiralty-breadcrumb',
151
+ changeDetection: ChangeDetectionStrategy.OnPush,
152
+ template: '<ng-content></ng-content>',
153
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
154
+ inputs: ['active', 'href'],
155
+ }]
156
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
157
+ let AdmiraltyBreadcrumbs = class AdmiraltyBreadcrumbs {
158
+ constructor(c, r, z) {
159
+ this.z = z;
160
+ c.detach();
161
+ this.el = r.nativeElement;
162
+ }
163
+ };
164
+ /** @nocollapse */ AdmiraltyBreadcrumbs.ɵfac = function AdmiraltyBreadcrumbs_Factory(t) { return new (t || AdmiraltyBreadcrumbs)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
165
+ /** @nocollapse */ AdmiraltyBreadcrumbs.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyBreadcrumbs, selectors: [["admiralty-breadcrumbs"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyBreadcrumbs_Template(rf, ctx) { if (rf & 1) {
166
+ i0.ɵɵprojectionDef();
167
+ i0.ɵɵprojection(0);
168
+ } }, encapsulation: 2, changeDetection: 0 });
169
+ AdmiraltyBreadcrumbs = __decorate([
170
+ ProxyCmp({})
171
+ ], AdmiraltyBreadcrumbs);
172
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyBreadcrumbs, [{
173
+ type: Component,
174
+ args: [{
175
+ selector: 'admiralty-breadcrumbs',
176
+ changeDetection: ChangeDetectionStrategy.OnPush,
177
+ template: '<ng-content></ng-content>',
178
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
179
+ inputs: [],
180
+ }]
181
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
182
+ let AdmiraltyButton = class AdmiraltyButton {
183
+ constructor(c, r, z) {
184
+ this.z = z;
185
+ c.detach();
186
+ this.el = r.nativeElement;
187
+ }
188
+ };
189
+ /** @nocollapse */ AdmiraltyButton.ɵfac = function AdmiraltyButton_Factory(t) { return new (t || AdmiraltyButton)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
190
+ /** @nocollapse */ AdmiraltyButton.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyButton, selectors: [["admiralty-button"]], inputs: { disabled: "disabled", form: "form", icon: "icon", name: "name", type: "type", value: "value", variant: "variant" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyButton_Template(rf, ctx) { if (rf & 1) {
191
+ i0.ɵɵprojectionDef();
192
+ i0.ɵɵprojection(0);
193
+ } }, encapsulation: 2, changeDetection: 0 });
194
+ AdmiraltyButton = __decorate([
195
+ ProxyCmp({
196
+ inputs: ['disabled', 'form', 'icon', 'name', 'type', 'value', 'variant']
197
+ })
198
+ ], AdmiraltyButton);
199
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyButton, [{
200
+ type: Component,
201
+ args: [{
202
+ selector: 'admiralty-button',
203
+ changeDetection: ChangeDetectionStrategy.OnPush,
204
+ template: '<ng-content></ng-content>',
205
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
206
+ inputs: ['disabled', 'form', 'icon', 'name', 'type', 'value', 'variant'],
207
+ }]
208
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
209
+ let AdmiraltyCard = class AdmiraltyCard {
210
+ constructor(c, r, z) {
211
+ this.z = z;
212
+ c.detach();
213
+ this.el = r.nativeElement;
214
+ }
215
+ };
216
+ /** @nocollapse */ AdmiraltyCard.ɵfac = function AdmiraltyCard_Factory(t) { return new (t || AdmiraltyCard)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
217
+ /** @nocollapse */ AdmiraltyCard.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyCard, selectors: [["admiralty-card"]], inputs: { heading: "heading" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyCard_Template(rf, ctx) { if (rf & 1) {
218
+ i0.ɵɵprojectionDef();
219
+ i0.ɵɵprojection(0);
220
+ } }, encapsulation: 2, changeDetection: 0 });
221
+ AdmiraltyCard = __decorate([
222
+ ProxyCmp({
223
+ inputs: ['heading']
224
+ })
225
+ ], AdmiraltyCard);
226
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyCard, [{
227
+ type: Component,
228
+ args: [{
229
+ selector: 'admiralty-card',
230
+ changeDetection: ChangeDetectionStrategy.OnPush,
231
+ template: '<ng-content></ng-content>',
232
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
233
+ inputs: ['heading'],
234
+ }]
235
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
236
+ let AdmiraltyCheckbox = class AdmiraltyCheckbox {
237
+ constructor(c, r, z) {
238
+ this.z = z;
239
+ c.detach();
240
+ this.el = r.nativeElement;
241
+ proxyOutputs(this, this.el, ['admiraltyChange', 'checkboxFocus', 'checkboxBlur']);
242
+ }
243
+ };
244
+ /** @nocollapse */ AdmiraltyCheckbox.ɵfac = function AdmiraltyCheckbox_Factory(t) { return new (t || AdmiraltyCheckbox)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
245
+ /** @nocollapse */ AdmiraltyCheckbox.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyCheckbox, selectors: [["admiralty-checkbox"]], inputs: { checkboxRight: "checkboxRight", checked: "checked", disabled: "disabled", labelHidden: "labelHidden", labelText: "labelText", name: "name", value: "value" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyCheckbox_Template(rf, ctx) { if (rf & 1) {
246
+ i0.ɵɵprojectionDef();
247
+ i0.ɵɵprojection(0);
248
+ } }, encapsulation: 2, changeDetection: 0 });
249
+ AdmiraltyCheckbox = __decorate([
250
+ ProxyCmp({
251
+ inputs: ['checkboxRight', 'checked', 'disabled', 'labelHidden', 'labelText', 'name', 'value']
252
+ })
253
+ ], AdmiraltyCheckbox);
254
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyCheckbox, [{
255
+ type: Component,
256
+ args: [{
257
+ selector: 'admiralty-checkbox',
258
+ changeDetection: ChangeDetectionStrategy.OnPush,
259
+ template: '<ng-content></ng-content>',
260
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
261
+ inputs: ['checkboxRight', 'checked', 'disabled', 'labelHidden', 'labelText', 'name', 'value'],
262
+ }]
263
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
264
+ let AdmiraltyColourBlock = class AdmiraltyColourBlock {
265
+ constructor(c, r, z) {
266
+ this.z = z;
267
+ c.detach();
268
+ this.el = r.nativeElement;
269
+ proxyOutputs(this, this.el, ['colourBlockLinkClicked']);
270
+ }
271
+ };
272
+ /** @nocollapse */ AdmiraltyColourBlock.ɵfac = function AdmiraltyColourBlock_Factory(t) { return new (t || AdmiraltyColourBlock)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
273
+ /** @nocollapse */ AdmiraltyColourBlock.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyColourBlock, selectors: [["admiralty-colour-block"]], inputs: { actionText: "actionText", colour: "colour", enableCardEvent: "enableCardEvent", heading: "heading", height: "height", href: "href", linkText: "linkText", suppressRedirect: "suppressRedirect", width: "width" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyColourBlock_Template(rf, ctx) { if (rf & 1) {
274
+ i0.ɵɵprojectionDef();
275
+ i0.ɵɵprojection(0);
276
+ } }, encapsulation: 2, changeDetection: 0 });
277
+ AdmiraltyColourBlock = __decorate([
278
+ ProxyCmp({
279
+ inputs: ['actionText', 'colour', 'enableCardEvent', 'heading', 'height', 'href', 'linkText', 'suppressRedirect', 'width']
280
+ })
281
+ ], AdmiraltyColourBlock);
282
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyColourBlock, [{
283
+ type: Component,
284
+ args: [{
285
+ selector: 'admiralty-colour-block',
286
+ changeDetection: ChangeDetectionStrategy.OnPush,
287
+ template: '<ng-content></ng-content>',
288
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
289
+ inputs: ['actionText', 'colour', 'enableCardEvent', 'heading', 'height', 'href', 'linkText', 'suppressRedirect', 'width'],
290
+ }]
291
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
292
+ let AdmiraltyDialogue = class AdmiraltyDialogue {
293
+ constructor(c, r, z) {
294
+ this.z = z;
295
+ c.detach();
296
+ this.el = r.nativeElement;
297
+ }
298
+ };
299
+ /** @nocollapse */ AdmiraltyDialogue.ɵfac = function AdmiraltyDialogue_Factory(t) { return new (t || AdmiraltyDialogue)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
300
+ /** @nocollapse */ AdmiraltyDialogue.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyDialogue, selectors: [["admiralty-dialogue"]], inputs: { heading: "heading", type: "type" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyDialogue_Template(rf, ctx) { if (rf & 1) {
301
+ i0.ɵɵprojectionDef();
302
+ i0.ɵɵprojection(0);
303
+ } }, encapsulation: 2, changeDetection: 0 });
304
+ AdmiraltyDialogue = __decorate([
305
+ ProxyCmp({
306
+ inputs: ['heading', 'type']
307
+ })
308
+ ], AdmiraltyDialogue);
309
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyDialogue, [{
310
+ type: Component,
311
+ args: [{
312
+ selector: 'admiralty-dialogue',
313
+ changeDetection: ChangeDetectionStrategy.OnPush,
314
+ template: '<ng-content></ng-content>',
315
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
316
+ inputs: ['heading', 'type'],
317
+ }]
318
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
319
+ let AdmiraltyExpansion = class AdmiraltyExpansion {
320
+ constructor(c, r, z) {
321
+ this.z = z;
322
+ c.detach();
323
+ this.el = r.nativeElement;
324
+ proxyOutputs(this, this.el, ['toggled']);
325
+ }
326
+ };
327
+ /** @nocollapse */ AdmiraltyExpansion.ɵfac = function AdmiraltyExpansion_Factory(t) { return new (t || AdmiraltyExpansion)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
328
+ /** @nocollapse */ AdmiraltyExpansion.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyExpansion, selectors: [["admiralty-expansion"]], inputs: { alignHeadingRight: "alignHeadingRight", expanded: "expanded", heading: "heading", hideBorder: "hideBorder" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyExpansion_Template(rf, ctx) { if (rf & 1) {
329
+ i0.ɵɵprojectionDef();
330
+ i0.ɵɵprojection(0);
331
+ } }, encapsulation: 2, changeDetection: 0 });
332
+ AdmiraltyExpansion = __decorate([
333
+ ProxyCmp({
334
+ inputs: ['alignHeadingRight', 'expanded', 'heading', 'hideBorder']
335
+ })
336
+ ], AdmiraltyExpansion);
337
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyExpansion, [{
338
+ type: Component,
339
+ args: [{
340
+ selector: 'admiralty-expansion',
341
+ changeDetection: ChangeDetectionStrategy.OnPush,
342
+ template: '<ng-content></ng-content>',
343
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
344
+ inputs: ['alignHeadingRight', 'expanded', 'heading', 'hideBorder'],
345
+ }]
346
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
347
+ let AdmiraltyFileInput = class AdmiraltyFileInput {
348
+ constructor(c, r, z) {
349
+ this.z = z;
350
+ c.detach();
351
+ this.el = r.nativeElement;
352
+ proxyOutputs(this, this.el, ['fileInputChange']);
353
+ }
354
+ };
355
+ /** @nocollapse */ AdmiraltyFileInput.ɵfac = function AdmiraltyFileInput_Factory(t) { return new (t || AdmiraltyFileInput)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
356
+ /** @nocollapse */ AdmiraltyFileInput.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyFileInput, selectors: [["admiralty-file-input"]], inputs: { invalid: "invalid", invalidMessage: "invalidMessage", label: "label", multiple: "multiple" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyFileInput_Template(rf, ctx) { if (rf & 1) {
357
+ i0.ɵɵprojectionDef();
358
+ i0.ɵɵprojection(0);
359
+ } }, encapsulation: 2, changeDetection: 0 });
360
+ AdmiraltyFileInput = __decorate([
361
+ ProxyCmp({
362
+ inputs: ['invalid', 'invalidMessage', 'label', 'multiple']
363
+ })
364
+ ], AdmiraltyFileInput);
365
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyFileInput, [{
366
+ type: Component,
367
+ args: [{
368
+ selector: 'admiralty-file-input',
369
+ changeDetection: ChangeDetectionStrategy.OnPush,
370
+ template: '<ng-content></ng-content>',
371
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
372
+ inputs: ['invalid', 'invalidMessage', 'label', 'multiple'],
373
+ }]
374
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
375
+ let AdmiraltyFilter = class AdmiraltyFilter {
376
+ constructor(c, r, z) {
377
+ this.z = z;
378
+ c.detach();
379
+ this.el = r.nativeElement;
380
+ proxyOutputs(this, this.el, ['filterCleared', 'filterApplied']);
381
+ }
382
+ };
383
+ /** @nocollapse */ AdmiraltyFilter.ɵfac = function AdmiraltyFilter_Factory(t) { return new (t || AdmiraltyFilter)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
384
+ /** @nocollapse */ AdmiraltyFilter.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyFilter, selectors: [["admiralty-filter"]], inputs: { filterTitle: "filterTitle" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyFilter_Template(rf, ctx) { if (rf & 1) {
385
+ i0.ɵɵprojectionDef();
386
+ i0.ɵɵprojection(0);
387
+ } }, encapsulation: 2, changeDetection: 0 });
388
+ AdmiraltyFilter = __decorate([
389
+ ProxyCmp({
390
+ inputs: ['filterTitle']
391
+ })
392
+ ], AdmiraltyFilter);
393
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyFilter, [{
394
+ type: Component,
395
+ args: [{
396
+ selector: 'admiralty-filter',
397
+ changeDetection: ChangeDetectionStrategy.OnPush,
398
+ template: '<ng-content></ng-content>',
399
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
400
+ inputs: ['filterTitle'],
401
+ }]
402
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
403
+ let AdmiraltyFilterGroup = class AdmiraltyFilterGroup {
404
+ constructor(c, r, z) {
405
+ this.z = z;
406
+ c.detach();
407
+ this.el = r.nativeElement;
408
+ }
409
+ };
410
+ /** @nocollapse */ AdmiraltyFilterGroup.ɵfac = function AdmiraltyFilterGroup_Factory(t) { return new (t || AdmiraltyFilterGroup)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
411
+ /** @nocollapse */ AdmiraltyFilterGroup.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyFilterGroup, selectors: [["admiralty-filter-group"]], inputs: { groupTitle: "groupTitle" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyFilterGroup_Template(rf, ctx) { if (rf & 1) {
412
+ i0.ɵɵprojectionDef();
413
+ i0.ɵɵprojection(0);
414
+ } }, encapsulation: 2, changeDetection: 0 });
415
+ AdmiraltyFilterGroup = __decorate([
416
+ ProxyCmp({
417
+ inputs: ['groupTitle']
418
+ })
419
+ ], AdmiraltyFilterGroup);
420
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyFilterGroup, [{
421
+ type: Component,
422
+ args: [{
423
+ selector: 'admiralty-filter-group',
424
+ changeDetection: ChangeDetectionStrategy.OnPush,
425
+ template: '<ng-content></ng-content>',
426
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
427
+ inputs: ['groupTitle'],
428
+ }]
429
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
430
+ let AdmiraltyFooter = class AdmiraltyFooter {
431
+ constructor(c, r, z) {
432
+ this.z = z;
433
+ c.detach();
434
+ this.el = r.nativeElement;
435
+ }
436
+ };
437
+ /** @nocollapse */ AdmiraltyFooter.ɵfac = function AdmiraltyFooter_Factory(t) { return new (t || AdmiraltyFooter)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
438
+ /** @nocollapse */ AdmiraltyFooter.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyFooter, selectors: [["admiralty-footer"]], inputs: { imageAlt: "imageAlt", imageLink: "imageLink", imageSrc: "imageSrc", text: "text" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyFooter_Template(rf, ctx) { if (rf & 1) {
439
+ i0.ɵɵprojectionDef();
440
+ i0.ɵɵprojection(0);
441
+ } }, encapsulation: 2, changeDetection: 0 });
442
+ AdmiraltyFooter = __decorate([
443
+ ProxyCmp({
444
+ inputs: ['imageAlt', 'imageLink', 'imageSrc', 'text']
445
+ })
446
+ ], AdmiraltyFooter);
447
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyFooter, [{
448
+ type: Component,
449
+ args: [{
450
+ selector: 'admiralty-footer',
451
+ changeDetection: ChangeDetectionStrategy.OnPush,
452
+ template: '<ng-content></ng-content>',
453
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
454
+ inputs: ['imageAlt', 'imageLink', 'imageSrc', 'text'],
455
+ }]
456
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
457
+ let AdmiraltyHeader = class AdmiraltyHeader {
458
+ constructor(c, r, z) {
459
+ this.z = z;
460
+ c.detach();
461
+ this.el = r.nativeElement;
462
+ proxyOutputs(this, this.el, ['titledClicked']);
463
+ }
464
+ };
465
+ /** @nocollapse */ AdmiraltyHeader.ɵfac = function AdmiraltyHeader_Factory(t) { return new (t || AdmiraltyHeader)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
466
+ /** @nocollapse */ AdmiraltyHeader.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyHeader, selectors: [["admiralty-header"]], inputs: { headerTitle: "headerTitle", headerTitleUrl: "headerTitleUrl", logoAltText: "logoAltText", logoImgUrl: "logoImgUrl", logoLinkUrl: "logoLinkUrl" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyHeader_Template(rf, ctx) { if (rf & 1) {
467
+ i0.ɵɵprojectionDef();
468
+ i0.ɵɵprojection(0);
469
+ } }, encapsulation: 2, changeDetection: 0 });
470
+ AdmiraltyHeader = __decorate([
471
+ ProxyCmp({
472
+ inputs: ['headerTitle', 'headerTitleUrl', 'logoAltText', 'logoImgUrl', 'logoLinkUrl']
473
+ })
474
+ ], AdmiraltyHeader);
475
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyHeader, [{
476
+ type: Component,
477
+ args: [{
478
+ selector: 'admiralty-header',
479
+ changeDetection: ChangeDetectionStrategy.OnPush,
480
+ template: '<ng-content></ng-content>',
481
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
482
+ inputs: ['headerTitle', 'headerTitleUrl', 'logoAltText', 'logoImgUrl', 'logoLinkUrl'],
483
+ }]
484
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
485
+ let AdmiraltyHeaderMenuItem = class AdmiraltyHeaderMenuItem {
486
+ constructor(c, r, z) {
487
+ this.z = z;
488
+ c.detach();
489
+ this.el = r.nativeElement;
490
+ proxyOutputs(this, this.el, ['menuItemClick']);
491
+ }
492
+ };
493
+ /** @nocollapse */ AdmiraltyHeaderMenuItem.ɵfac = function AdmiraltyHeaderMenuItem_Factory(t) { return new (t || AdmiraltyHeaderMenuItem)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
494
+ /** @nocollapse */ AdmiraltyHeaderMenuItem.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyHeaderMenuItem, selectors: [["admiralty-header-menu-item"]], inputs: { active: "active", menuTitle: "menuTitle" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyHeaderMenuItem_Template(rf, ctx) { if (rf & 1) {
495
+ i0.ɵɵprojectionDef();
496
+ i0.ɵɵprojection(0);
497
+ } }, encapsulation: 2, changeDetection: 0 });
498
+ AdmiraltyHeaderMenuItem = __decorate([
499
+ ProxyCmp({
500
+ inputs: ['active', 'menuTitle']
501
+ })
502
+ ], AdmiraltyHeaderMenuItem);
503
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyHeaderMenuItem, [{
504
+ type: Component,
505
+ args: [{
506
+ selector: 'admiralty-header-menu-item',
507
+ changeDetection: ChangeDetectionStrategy.OnPush,
508
+ template: '<ng-content></ng-content>',
509
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
510
+ inputs: ['active', 'menuTitle'],
511
+ }]
512
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
513
+ let AdmiraltyHeaderMenuLink = class AdmiraltyHeaderMenuLink {
514
+ constructor(c, r, z) {
515
+ this.z = z;
516
+ c.detach();
517
+ this.el = r.nativeElement;
518
+ proxyOutputs(this, this.el, ['menuItemClick']);
519
+ }
520
+ };
521
+ /** @nocollapse */ AdmiraltyHeaderMenuLink.ɵfac = function AdmiraltyHeaderMenuLink_Factory(t) { return new (t || AdmiraltyHeaderMenuLink)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
522
+ /** @nocollapse */ AdmiraltyHeaderMenuLink.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyHeaderMenuLink, selectors: [["admiralty-header-menu-link"]], inputs: { active: "active", href: "href", menuTitle: "menuTitle", suppressRedirect: "suppressRedirect" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyHeaderMenuLink_Template(rf, ctx) { if (rf & 1) {
523
+ i0.ɵɵprojectionDef();
524
+ i0.ɵɵprojection(0);
525
+ } }, encapsulation: 2, changeDetection: 0 });
526
+ AdmiraltyHeaderMenuLink = __decorate([
527
+ ProxyCmp({
528
+ inputs: ['active', 'href', 'menuTitle', 'suppressRedirect']
529
+ })
530
+ ], AdmiraltyHeaderMenuLink);
531
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyHeaderMenuLink, [{
532
+ type: Component,
533
+ args: [{
534
+ selector: 'admiralty-header-menu-link',
535
+ changeDetection: ChangeDetectionStrategy.OnPush,
536
+ template: '<ng-content></ng-content>',
537
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
538
+ inputs: ['active', 'href', 'menuTitle', 'suppressRedirect'],
539
+ }]
540
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
541
+ let AdmiraltyHeaderProfile = class AdmiraltyHeaderProfile {
542
+ constructor(c, r, z) {
543
+ this.z = z;
544
+ c.detach();
545
+ this.el = r.nativeElement;
546
+ proxyOutputs(this, this.el, ['signInClicked', 'yourAccountClicked', 'signOutClicked']);
547
+ }
548
+ };
549
+ /** @nocollapse */ AdmiraltyHeaderProfile.ɵfac = function AdmiraltyHeaderProfile_Factory(t) { return new (t || AdmiraltyHeaderProfile)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
550
+ /** @nocollapse */ AdmiraltyHeaderProfile.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyHeaderProfile, selectors: [["admiralty-header-profile"]], inputs: { isSignedIn: "isSignedIn", signInOnly: "signInOnly", signedInText: "signedInText" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyHeaderProfile_Template(rf, ctx) { if (rf & 1) {
551
+ i0.ɵɵprojectionDef();
552
+ i0.ɵɵprojection(0);
553
+ } }, encapsulation: 2, changeDetection: 0 });
554
+ AdmiraltyHeaderProfile = __decorate([
555
+ ProxyCmp({
556
+ inputs: ['isSignedIn', 'signInOnly', 'signedInText']
557
+ })
558
+ ], AdmiraltyHeaderProfile);
559
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyHeaderProfile, [{
560
+ type: Component,
561
+ args: [{
562
+ selector: 'admiralty-header-profile',
563
+ changeDetection: ChangeDetectionStrategy.OnPush,
564
+ template: '<ng-content></ng-content>',
565
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
566
+ inputs: ['isSignedIn', 'signInOnly', 'signedInText'],
567
+ }]
568
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
569
+ let AdmiraltyHeaderSubMenuItem = class AdmiraltyHeaderSubMenuItem {
570
+ constructor(c, r, z) {
571
+ this.z = z;
572
+ c.detach();
573
+ this.el = r.nativeElement;
574
+ proxyOutputs(this, this.el, ['subMenuItemClick']);
575
+ }
576
+ };
577
+ /** @nocollapse */ AdmiraltyHeaderSubMenuItem.ɵfac = function AdmiraltyHeaderSubMenuItem_Factory(t) { return new (t || AdmiraltyHeaderSubMenuItem)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
578
+ /** @nocollapse */ AdmiraltyHeaderSubMenuItem.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyHeaderSubMenuItem, selectors: [["admiralty-header-sub-menu-item"]], inputs: { menuTitle: "menuTitle" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyHeaderSubMenuItem_Template(rf, ctx) { if (rf & 1) {
579
+ i0.ɵɵprojectionDef();
580
+ i0.ɵɵprojection(0);
581
+ } }, encapsulation: 2, changeDetection: 0 });
582
+ AdmiraltyHeaderSubMenuItem = __decorate([
583
+ ProxyCmp({
584
+ inputs: ['menuTitle']
585
+ })
586
+ ], AdmiraltyHeaderSubMenuItem);
587
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyHeaderSubMenuItem, [{
588
+ type: Component,
589
+ args: [{
590
+ selector: 'admiralty-header-sub-menu-item',
591
+ changeDetection: ChangeDetectionStrategy.OnPush,
592
+ template: '<ng-content></ng-content>',
593
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
594
+ inputs: ['menuTitle'],
595
+ }]
596
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
597
+ let AdmiraltyHint = class AdmiraltyHint {
598
+ constructor(c, r, z) {
599
+ this.z = z;
600
+ c.detach();
601
+ this.el = r.nativeElement;
602
+ }
603
+ };
604
+ /** @nocollapse */ AdmiraltyHint.ɵfac = function AdmiraltyHint_Factory(t) { return new (t || AdmiraltyHint)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
605
+ /** @nocollapse */ AdmiraltyHint.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyHint, selectors: [["admiralty-hint"]], inputs: { disabled: "disabled" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyHint_Template(rf, ctx) { if (rf & 1) {
606
+ i0.ɵɵprojectionDef();
607
+ i0.ɵɵprojection(0);
608
+ } }, encapsulation: 2, changeDetection: 0 });
609
+ AdmiraltyHint = __decorate([
610
+ ProxyCmp({
611
+ inputs: ['disabled']
612
+ })
613
+ ], AdmiraltyHint);
614
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyHint, [{
615
+ type: Component,
616
+ args: [{
617
+ selector: 'admiralty-hint',
618
+ changeDetection: ChangeDetectionStrategy.OnPush,
619
+ template: '<ng-content></ng-content>',
620
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
621
+ inputs: ['disabled'],
622
+ }]
623
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
624
+ let AdmiraltyHr = class AdmiraltyHr {
625
+ constructor(c, r, z) {
626
+ this.z = z;
627
+ c.detach();
628
+ this.el = r.nativeElement;
629
+ }
630
+ };
631
+ /** @nocollapse */ AdmiraltyHr.ɵfac = function AdmiraltyHr_Factory(t) { return new (t || AdmiraltyHr)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
632
+ /** @nocollapse */ AdmiraltyHr.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyHr, selectors: [["admiralty-hr"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyHr_Template(rf, ctx) { if (rf & 1) {
633
+ i0.ɵɵprojectionDef();
634
+ i0.ɵɵprojection(0);
635
+ } }, encapsulation: 2, changeDetection: 0 });
636
+ AdmiraltyHr = __decorate([
637
+ ProxyCmp({})
638
+ ], AdmiraltyHr);
639
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyHr, [{
640
+ type: Component,
641
+ args: [{
642
+ selector: 'admiralty-hr',
643
+ changeDetection: ChangeDetectionStrategy.OnPush,
644
+ template: '<ng-content></ng-content>',
645
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
646
+ inputs: [],
647
+ }]
648
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
649
+ let AdmiraltyIcon = class AdmiraltyIcon {
650
+ constructor(c, r, z) {
651
+ this.z = z;
652
+ c.detach();
653
+ this.el = r.nativeElement;
654
+ }
655
+ };
656
+ /** @nocollapse */ AdmiraltyIcon.ɵfac = function AdmiraltyIcon_Factory(t) { return new (t || AdmiraltyIcon)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
657
+ /** @nocollapse */ AdmiraltyIcon.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyIcon, selectors: [["admiralty-icon"]], inputs: { iconName: "iconName", iconPrefix: "iconPrefix" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyIcon_Template(rf, ctx) { if (rf & 1) {
658
+ i0.ɵɵprojectionDef();
659
+ i0.ɵɵprojection(0);
660
+ } }, encapsulation: 2, changeDetection: 0 });
661
+ AdmiraltyIcon = __decorate([
662
+ ProxyCmp({
663
+ inputs: ['iconName', 'iconPrefix']
664
+ })
665
+ ], AdmiraltyIcon);
666
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyIcon, [{
667
+ type: Component,
668
+ args: [{
669
+ selector: 'admiralty-icon',
670
+ changeDetection: ChangeDetectionStrategy.OnPush,
671
+ template: '<ng-content></ng-content>',
672
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
673
+ inputs: ['iconName', 'iconPrefix'],
674
+ }]
675
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
676
+ let AdmiraltyInput = class AdmiraltyInput {
677
+ constructor(c, r, z) {
678
+ this.z = z;
679
+ c.detach();
680
+ this.el = r.nativeElement;
681
+ proxyOutputs(this, this.el, ['admiraltyInput', 'admiraltyFocus', 'admiraltyBlur']);
682
+ }
683
+ };
684
+ /** @nocollapse */ AdmiraltyInput.ɵfac = function AdmiraltyInput_Factory(t) { return new (t || AdmiraltyInput)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
685
+ /** @nocollapse */ AdmiraltyInput.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyInput, selectors: [["admiralty-input"]], inputs: { autocomplete: "autocomplete", disabled: "disabled", hint: "hint", invalid: "invalid", invalidMessage: "invalidMessage", label: "label", name: "name", placeholder: "placeholder", required: "required", type: "type", value: "value", width: "width" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyInput_Template(rf, ctx) { if (rf & 1) {
686
+ i0.ɵɵprojectionDef();
687
+ i0.ɵɵprojection(0);
688
+ } }, encapsulation: 2, changeDetection: 0 });
689
+ AdmiraltyInput = __decorate([
690
+ ProxyCmp({
691
+ inputs: ['autocomplete', 'disabled', 'hint', 'invalid', 'invalidMessage', 'label', 'name', 'placeholder', 'required', 'type', 'value', 'width']
692
+ })
693
+ ], AdmiraltyInput);
694
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyInput, [{
695
+ type: Component,
696
+ args: [{
697
+ selector: 'admiralty-input',
698
+ changeDetection: ChangeDetectionStrategy.OnPush,
699
+ template: '<ng-content></ng-content>',
700
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
701
+ inputs: ['autocomplete', 'disabled', 'hint', 'invalid', 'invalidMessage', 'label', 'name', 'placeholder', 'required', 'type', 'value', 'width'],
702
+ }]
703
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
704
+ let AdmiraltyInputInvalid = class AdmiraltyInputInvalid {
705
+ constructor(c, r, z) {
706
+ this.z = z;
707
+ c.detach();
708
+ this.el = r.nativeElement;
709
+ }
710
+ };
711
+ /** @nocollapse */ AdmiraltyInputInvalid.ɵfac = function AdmiraltyInputInvalid_Factory(t) { return new (t || AdmiraltyInputInvalid)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
712
+ /** @nocollapse */ AdmiraltyInputInvalid.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyInputInvalid, selectors: [["admiralty-input-invalid"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyInputInvalid_Template(rf, ctx) { if (rf & 1) {
713
+ i0.ɵɵprojectionDef();
714
+ i0.ɵɵprojection(0);
715
+ } }, encapsulation: 2, changeDetection: 0 });
716
+ AdmiraltyInputInvalid = __decorate([
717
+ ProxyCmp({})
718
+ ], AdmiraltyInputInvalid);
719
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyInputInvalid, [{
720
+ type: Component,
721
+ args: [{
722
+ selector: 'admiralty-input-invalid',
723
+ changeDetection: ChangeDetectionStrategy.OnPush,
724
+ template: '<ng-content></ng-content>',
725
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
726
+ inputs: [],
727
+ }]
728
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
729
+ let AdmiraltyLabel = class AdmiraltyLabel {
730
+ constructor(c, r, z) {
731
+ this.z = z;
732
+ c.detach();
733
+ this.el = r.nativeElement;
734
+ }
735
+ };
736
+ /** @nocollapse */ AdmiraltyLabel.ɵfac = function AdmiraltyLabel_Factory(t) { return new (t || AdmiraltyLabel)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
737
+ /** @nocollapse */ AdmiraltyLabel.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyLabel, selectors: [["admiralty-label"]], inputs: { disabled: "disabled", for: "for" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyLabel_Template(rf, ctx) { if (rf & 1) {
738
+ i0.ɵɵprojectionDef();
739
+ i0.ɵɵprojection(0);
740
+ } }, encapsulation: 2, changeDetection: 0 });
741
+ AdmiraltyLabel = __decorate([
742
+ ProxyCmp({
743
+ inputs: ['disabled', 'for']
744
+ })
745
+ ], AdmiraltyLabel);
746
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyLabel, [{
747
+ type: Component,
748
+ args: [{
749
+ selector: 'admiralty-label',
750
+ changeDetection: ChangeDetectionStrategy.OnPush,
751
+ template: '<ng-content></ng-content>',
752
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
753
+ inputs: ['disabled', 'for'],
754
+ }]
755
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
756
+ let AdmiraltyLink = class AdmiraltyLink {
757
+ constructor(c, r, z) {
758
+ this.z = z;
759
+ c.detach();
760
+ this.el = r.nativeElement;
761
+ }
762
+ };
763
+ /** @nocollapse */ AdmiraltyLink.ɵfac = function AdmiraltyLink_Factory(t) { return new (t || AdmiraltyLink)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
764
+ /** @nocollapse */ AdmiraltyLink.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyLink, selectors: [["admiralty-link"]], inputs: { href: "href", newTab: "newTab" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyLink_Template(rf, ctx) { if (rf & 1) {
765
+ i0.ɵɵprojectionDef();
766
+ i0.ɵɵprojection(0);
767
+ } }, encapsulation: 2, changeDetection: 0 });
768
+ AdmiraltyLink = __decorate([
769
+ ProxyCmp({
770
+ inputs: ['href', 'newTab']
771
+ })
772
+ ], AdmiraltyLink);
773
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyLink, [{
774
+ type: Component,
775
+ args: [{
776
+ selector: 'admiralty-link',
777
+ changeDetection: ChangeDetectionStrategy.OnPush,
778
+ template: '<ng-content></ng-content>',
779
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
780
+ inputs: ['href', 'newTab'],
781
+ }]
782
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
783
+ let AdmiraltyModalDialog = class AdmiraltyModalDialog {
784
+ constructor(c, r, z) {
785
+ this.z = z;
786
+ c.detach();
787
+ this.el = r.nativeElement;
788
+ }
789
+ };
790
+ /** @nocollapse */ AdmiraltyModalDialog.ɵfac = function AdmiraltyModalDialog_Factory(t) { return new (t || AdmiraltyModalDialog)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
791
+ /** @nocollapse */ AdmiraltyModalDialog.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyModalDialog, selectors: [["admiralty-modal-dialog"]], inputs: { description: "description", heading: "heading", label: "label", show: "show" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyModalDialog_Template(rf, ctx) { if (rf & 1) {
792
+ i0.ɵɵprojectionDef();
793
+ i0.ɵɵprojection(0);
794
+ } }, encapsulation: 2, changeDetection: 0 });
795
+ AdmiraltyModalDialog = __decorate([
796
+ ProxyCmp({
797
+ inputs: ['description', 'heading', 'label', 'show']
798
+ })
799
+ ], AdmiraltyModalDialog);
800
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyModalDialog, [{
801
+ type: Component,
802
+ args: [{
803
+ selector: 'admiralty-modal-dialog',
804
+ changeDetection: ChangeDetectionStrategy.OnPush,
805
+ template: '<ng-content></ng-content>',
806
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
807
+ inputs: ['description', 'heading', 'label', 'show'],
808
+ }]
809
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
810
+ let AdmiraltyPaginator = class AdmiraltyPaginator {
811
+ constructor(c, r, z) {
812
+ this.z = z;
813
+ c.detach();
814
+ this.el = r.nativeElement;
815
+ proxyOutputs(this, this.el, ['pageChange']);
816
+ }
817
+ };
818
+ /** @nocollapse */ AdmiraltyPaginator.ɵfac = function AdmiraltyPaginator_Factory(t) { return new (t || AdmiraltyPaginator)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
819
+ /** @nocollapse */ AdmiraltyPaginator.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyPaginator, selectors: [["admiralty-paginator"]], inputs: { currentPage: "currentPage", label: "label", pages: "pages" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyPaginator_Template(rf, ctx) { if (rf & 1) {
820
+ i0.ɵɵprojectionDef();
821
+ i0.ɵɵprojection(0);
822
+ } }, encapsulation: 2, changeDetection: 0 });
823
+ AdmiraltyPaginator = __decorate([
824
+ ProxyCmp({
825
+ inputs: ['currentPage', 'label', 'pages']
826
+ })
827
+ ], AdmiraltyPaginator);
828
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyPaginator, [{
829
+ type: Component,
830
+ args: [{
831
+ selector: 'admiralty-paginator',
832
+ changeDetection: ChangeDetectionStrategy.OnPush,
833
+ template: '<ng-content></ng-content>',
834
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
835
+ inputs: ['currentPage', 'label', 'pages'],
836
+ }]
837
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
838
+ let AdmiraltyPhaseBanner = class AdmiraltyPhaseBanner {
839
+ constructor(c, r, z) {
840
+ this.z = z;
841
+ c.detach();
842
+ this.el = r.nativeElement;
843
+ }
844
+ };
845
+ /** @nocollapse */ AdmiraltyPhaseBanner.ɵfac = function AdmiraltyPhaseBanner_Factory(t) { return new (t || AdmiraltyPhaseBanner)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
846
+ /** @nocollapse */ AdmiraltyPhaseBanner.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyPhaseBanner, selectors: [["admiralty-phase-banner"]], inputs: { link: "link", phase: "phase" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyPhaseBanner_Template(rf, ctx) { if (rf & 1) {
847
+ i0.ɵɵprojectionDef();
848
+ i0.ɵɵprojection(0);
849
+ } }, encapsulation: 2, changeDetection: 0 });
850
+ AdmiraltyPhaseBanner = __decorate([
851
+ ProxyCmp({
852
+ inputs: ['link', 'phase']
853
+ })
854
+ ], AdmiraltyPhaseBanner);
855
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyPhaseBanner, [{
856
+ type: Component,
857
+ args: [{
858
+ selector: 'admiralty-phase-banner',
859
+ changeDetection: ChangeDetectionStrategy.OnPush,
860
+ template: '<ng-content></ng-content>',
861
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
862
+ inputs: ['link', 'phase'],
863
+ }]
864
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
865
+ let AdmiraltyProgressBar = class AdmiraltyProgressBar {
866
+ constructor(c, r, z) {
867
+ this.z = z;
868
+ c.detach();
869
+ this.el = r.nativeElement;
870
+ }
871
+ };
872
+ /** @nocollapse */ AdmiraltyProgressBar.ɵfac = function AdmiraltyProgressBar_Factory(t) { return new (t || AdmiraltyProgressBar)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
873
+ /** @nocollapse */ AdmiraltyProgressBar.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyProgressBar, selectors: [["admiralty-progress-bar"]], inputs: { error: "error", label: "label", progression: "progression" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyProgressBar_Template(rf, ctx) { if (rf & 1) {
874
+ i0.ɵɵprojectionDef();
875
+ i0.ɵɵprojection(0);
876
+ } }, encapsulation: 2, changeDetection: 0 });
877
+ AdmiraltyProgressBar = __decorate([
878
+ ProxyCmp({
879
+ inputs: ['error', 'label', 'progression']
880
+ })
881
+ ], AdmiraltyProgressBar);
882
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyProgressBar, [{
883
+ type: Component,
884
+ args: [{
885
+ selector: 'admiralty-progress-bar',
886
+ changeDetection: ChangeDetectionStrategy.OnPush,
887
+ template: '<ng-content></ng-content>',
888
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
889
+ inputs: ['error', 'label', 'progression'],
890
+ }]
891
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
892
+ let AdmiraltyRadio = class AdmiraltyRadio {
893
+ constructor(c, r, z) {
894
+ this.z = z;
895
+ c.detach();
896
+ this.el = r.nativeElement;
897
+ proxyOutputs(this, this.el, ['admiraltyFocus', 'admiraltyBlur', 'admiraltyChange']);
898
+ }
899
+ };
900
+ /** @nocollapse */ AdmiraltyRadio.ɵfac = function AdmiraltyRadio_Factory(t) { return new (t || AdmiraltyRadio)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
901
+ /** @nocollapse */ AdmiraltyRadio.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyRadio, selectors: [["admiralty-radio"]], inputs: { checked: "checked", disabled: "disabled", invalid: "invalid", name: "name", value: "value" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyRadio_Template(rf, ctx) { if (rf & 1) {
902
+ i0.ɵɵprojectionDef();
903
+ i0.ɵɵprojection(0);
904
+ } }, encapsulation: 2, changeDetection: 0 });
905
+ AdmiraltyRadio = __decorate([
906
+ ProxyCmp({
907
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value']
908
+ })
909
+ ], AdmiraltyRadio);
910
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyRadio, [{
911
+ type: Component,
912
+ args: [{
913
+ selector: 'admiralty-radio',
914
+ changeDetection: ChangeDetectionStrategy.OnPush,
915
+ template: '<ng-content></ng-content>',
916
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
917
+ inputs: ['checked', 'disabled', 'invalid', 'name', 'value'],
918
+ }]
919
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
920
+ let AdmiraltyRadioGroup = class AdmiraltyRadioGroup {
921
+ constructor(c, r, z) {
922
+ this.z = z;
923
+ c.detach();
924
+ this.el = r.nativeElement;
925
+ proxyOutputs(this, this.el, ['admiraltyChange']);
926
+ }
927
+ };
928
+ /** @nocollapse */ AdmiraltyRadioGroup.ɵfac = function AdmiraltyRadioGroup_Factory(t) { return new (t || AdmiraltyRadioGroup)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
929
+ /** @nocollapse */ AdmiraltyRadioGroup.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyRadioGroup, selectors: [["admiralty-radio-group"]], inputs: { disabled: "disabled", displayVertical: "displayVertical", hint: "hint", invalid: "invalid", invalidMessage: "invalidMessage", label: "label", name: "name", value: "value" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyRadioGroup_Template(rf, ctx) { if (rf & 1) {
930
+ i0.ɵɵprojectionDef();
931
+ i0.ɵɵprojection(0);
932
+ } }, encapsulation: 2, changeDetection: 0 });
933
+ AdmiraltyRadioGroup = __decorate([
934
+ ProxyCmp({
935
+ inputs: ['disabled', 'displayVertical', 'hint', 'invalid', 'invalidMessage', 'label', 'name', 'value']
936
+ })
937
+ ], AdmiraltyRadioGroup);
938
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyRadioGroup, [{
939
+ type: Component,
940
+ args: [{
941
+ selector: 'admiralty-radio-group',
942
+ changeDetection: ChangeDetectionStrategy.OnPush,
943
+ template: '<ng-content></ng-content>',
944
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
945
+ inputs: ['disabled', 'displayVertical', 'hint', 'invalid', 'invalidMessage', 'label', 'name', 'value'],
946
+ }]
947
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
948
+ let AdmiraltyReadMore = class AdmiraltyReadMore {
949
+ constructor(c, r, z) {
950
+ this.z = z;
951
+ c.detach();
952
+ this.el = r.nativeElement;
953
+ proxyOutputs(this, this.el, ['admiraltyToggled']);
954
+ }
955
+ };
956
+ /** @nocollapse */ AdmiraltyReadMore.ɵfac = function AdmiraltyReadMore_Factory(t) { return new (t || AdmiraltyReadMore)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
957
+ /** @nocollapse */ AdmiraltyReadMore.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyReadMore, selectors: [["admiralty-read-more"]], inputs: { heading: "heading" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyReadMore_Template(rf, ctx) { if (rf & 1) {
958
+ i0.ɵɵprojectionDef();
959
+ i0.ɵɵprojection(0);
960
+ } }, encapsulation: 2, changeDetection: 0 });
961
+ AdmiraltyReadMore = __decorate([
962
+ ProxyCmp({
963
+ inputs: ['heading']
964
+ })
965
+ ], AdmiraltyReadMore);
966
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyReadMore, [{
967
+ type: Component,
968
+ args: [{
969
+ selector: 'admiralty-read-more',
970
+ changeDetection: ChangeDetectionStrategy.OnPush,
971
+ template: '<ng-content></ng-content>',
972
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
973
+ inputs: ['heading'],
974
+ }]
975
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
976
+ let AdmiraltySelect = class AdmiraltySelect {
977
+ constructor(c, r, z) {
978
+ this.z = z;
979
+ c.detach();
980
+ this.el = r.nativeElement;
981
+ proxyOutputs(this, this.el, ['admiraltyChange', 'admiraltyBlur']);
982
+ }
983
+ };
984
+ /** @nocollapse */ AdmiraltySelect.ɵfac = function AdmiraltySelect_Factory(t) { return new (t || AdmiraltySelect)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
985
+ /** @nocollapse */ AdmiraltySelect.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltySelect, selectors: [["admiralty-select"]], inputs: { disabled: "disabled", hint: "hint", invalid: "invalid", invalidMessage: "invalidMessage", label: "label", value: "value", width: "width" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltySelect_Template(rf, ctx) { if (rf & 1) {
986
+ i0.ɵɵprojectionDef();
987
+ i0.ɵɵprojection(0);
988
+ } }, encapsulation: 2, changeDetection: 0 });
989
+ AdmiraltySelect = __decorate([
990
+ ProxyCmp({
991
+ inputs: ['disabled', 'hint', 'invalid', 'invalidMessage', 'label', 'value', 'width']
992
+ })
993
+ ], AdmiraltySelect);
994
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltySelect, [{
995
+ type: Component,
996
+ args: [{
997
+ selector: 'admiralty-select',
998
+ changeDetection: ChangeDetectionStrategy.OnPush,
999
+ template: '<ng-content></ng-content>',
1000
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1001
+ inputs: ['disabled', 'hint', 'invalid', 'invalidMessage', 'label', 'value', 'width'],
1002
+ }]
1003
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1004
+ let AdmiraltySideNav = class AdmiraltySideNav {
1005
+ constructor(c, r, z) {
1006
+ this.z = z;
1007
+ c.detach();
1008
+ this.el = r.nativeElement;
1009
+ }
1010
+ };
1011
+ /** @nocollapse */ AdmiraltySideNav.ɵfac = function AdmiraltySideNav_Factory(t) { return new (t || AdmiraltySideNav)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1012
+ /** @nocollapse */ AdmiraltySideNav.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltySideNav, selectors: [["admiralty-side-nav"]], inputs: { label: "label" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltySideNav_Template(rf, ctx) { if (rf & 1) {
1013
+ i0.ɵɵprojectionDef();
1014
+ i0.ɵɵprojection(0);
1015
+ } }, encapsulation: 2, changeDetection: 0 });
1016
+ AdmiraltySideNav = __decorate([
1017
+ ProxyCmp({
1018
+ inputs: ['label']
1019
+ })
1020
+ ], AdmiraltySideNav);
1021
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltySideNav, [{
1022
+ type: Component,
1023
+ args: [{
1024
+ selector: 'admiralty-side-nav',
1025
+ changeDetection: ChangeDetectionStrategy.OnPush,
1026
+ template: '<ng-content></ng-content>',
1027
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1028
+ inputs: ['label'],
1029
+ }]
1030
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1031
+ let AdmiraltySideNavItem = class AdmiraltySideNavItem {
1032
+ constructor(c, r, z) {
1033
+ this.z = z;
1034
+ c.detach();
1035
+ this.el = r.nativeElement;
1036
+ proxyOutputs(this, this.el, ['sideNavItemSelected']);
1037
+ }
1038
+ };
1039
+ /** @nocollapse */ AdmiraltySideNavItem.ɵfac = function AdmiraltySideNavItem_Factory(t) { return new (t || AdmiraltySideNavItem)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1040
+ /** @nocollapse */ AdmiraltySideNavItem.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltySideNavItem, selectors: [["admiralty-side-nav-item"]], inputs: { headingTitle: "headingTitle", navActive: "navActive", sideNavItemId: "sideNavItemId" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltySideNavItem_Template(rf, ctx) { if (rf & 1) {
1041
+ i0.ɵɵprojectionDef();
1042
+ i0.ɵɵprojection(0);
1043
+ } }, encapsulation: 2, changeDetection: 0 });
1044
+ AdmiraltySideNavItem = __decorate([
1045
+ ProxyCmp({
1046
+ inputs: ['headingTitle', 'navActive', 'sideNavItemId']
1047
+ })
1048
+ ], AdmiraltySideNavItem);
1049
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltySideNavItem, [{
1050
+ type: Component,
1051
+ args: [{
1052
+ selector: 'admiralty-side-nav-item',
1053
+ changeDetection: ChangeDetectionStrategy.OnPush,
1054
+ template: '<ng-content></ng-content>',
1055
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1056
+ inputs: ['headingTitle', 'navActive', 'sideNavItemId'],
1057
+ }]
1058
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1059
+ let AdmiraltySkipLink = class AdmiraltySkipLink {
1060
+ constructor(c, r, z) {
1061
+ this.z = z;
1062
+ c.detach();
1063
+ this.el = r.nativeElement;
1064
+ }
1065
+ };
1066
+ /** @nocollapse */ AdmiraltySkipLink.ɵfac = function AdmiraltySkipLink_Factory(t) { return new (t || AdmiraltySkipLink)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1067
+ /** @nocollapse */ AdmiraltySkipLink.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltySkipLink, selectors: [["admiralty-skip-link"]], inputs: { href: "href" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltySkipLink_Template(rf, ctx) { if (rf & 1) {
1068
+ i0.ɵɵprojectionDef();
1069
+ i0.ɵɵprojection(0);
1070
+ } }, encapsulation: 2, changeDetection: 0 });
1071
+ AdmiraltySkipLink = __decorate([
1072
+ ProxyCmp({
1073
+ inputs: ['href']
1074
+ })
1075
+ ], AdmiraltySkipLink);
1076
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltySkipLink, [{
1077
+ type: Component,
1078
+ args: [{
1079
+ selector: 'admiralty-skip-link',
1080
+ changeDetection: ChangeDetectionStrategy.OnPush,
1081
+ template: '<ng-content></ng-content>',
1082
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1083
+ inputs: ['href'],
1084
+ }]
1085
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1086
+ let AdmiraltyTab = class AdmiraltyTab {
1087
+ constructor(c, r, z) {
1088
+ this.z = z;
1089
+ c.detach();
1090
+ this.el = r.nativeElement;
1091
+ }
1092
+ };
1093
+ /** @nocollapse */ AdmiraltyTab.ɵfac = function AdmiraltyTab_Factory(t) { return new (t || AdmiraltyTab)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1094
+ /** @nocollapse */ AdmiraltyTab.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTab, selectors: [["admiralty-tab"]], inputs: { label: "label", tabContentId: "tabContentId", tabLabelId: "tabLabelId" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTab_Template(rf, ctx) { if (rf & 1) {
1095
+ i0.ɵɵprojectionDef();
1096
+ i0.ɵɵprojection(0);
1097
+ } }, encapsulation: 2, changeDetection: 0 });
1098
+ AdmiraltyTab = __decorate([
1099
+ ProxyCmp({
1100
+ inputs: ['label', 'tabContentId', 'tabLabelId']
1101
+ })
1102
+ ], AdmiraltyTab);
1103
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTab, [{
1104
+ type: Component,
1105
+ args: [{
1106
+ selector: 'admiralty-tab',
1107
+ changeDetection: ChangeDetectionStrategy.OnPush,
1108
+ template: '<ng-content></ng-content>',
1109
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1110
+ inputs: ['label', 'tabContentId', 'tabLabelId'],
1111
+ }]
1112
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1113
+ let AdmiraltyTabGroup = class AdmiraltyTabGroup {
1114
+ constructor(c, r, z) {
1115
+ this.z = z;
1116
+ c.detach();
1117
+ this.el = r.nativeElement;
1118
+ proxyOutputs(this, this.el, ['admiraltyTabSelected']);
1119
+ }
1120
+ };
1121
+ /** @nocollapse */ AdmiraltyTabGroup.ɵfac = function AdmiraltyTabGroup_Factory(t) { return new (t || AdmiraltyTabGroup)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1122
+ /** @nocollapse */ AdmiraltyTabGroup.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTabGroup, selectors: [["admiralty-tab-group"]], inputs: { selectedIndex: "selectedIndex" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTabGroup_Template(rf, ctx) { if (rf & 1) {
1123
+ i0.ɵɵprojectionDef();
1124
+ i0.ɵɵprojection(0);
1125
+ } }, encapsulation: 2, changeDetection: 0 });
1126
+ AdmiraltyTabGroup = __decorate([
1127
+ ProxyCmp({
1128
+ inputs: ['selectedIndex']
1129
+ })
1130
+ ], AdmiraltyTabGroup);
1131
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTabGroup, [{
1132
+ type: Component,
1133
+ args: [{
1134
+ selector: 'admiralty-tab-group',
1135
+ changeDetection: ChangeDetectionStrategy.OnPush,
1136
+ template: '<ng-content></ng-content>',
1137
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1138
+ inputs: ['selectedIndex'],
1139
+ }]
1140
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1141
+ let AdmiraltyTable = class AdmiraltyTable {
1142
+ constructor(c, r, z) {
1143
+ this.z = z;
1144
+ c.detach();
1145
+ this.el = r.nativeElement;
1146
+ }
1147
+ };
1148
+ /** @nocollapse */ AdmiraltyTable.ɵfac = function AdmiraltyTable_Factory(t) { return new (t || AdmiraltyTable)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1149
+ /** @nocollapse */ AdmiraltyTable.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTable, selectors: [["admiralty-table"]], inputs: { caption: "caption" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTable_Template(rf, ctx) { if (rf & 1) {
1150
+ i0.ɵɵprojectionDef();
1151
+ i0.ɵɵprojection(0);
1152
+ } }, encapsulation: 2, changeDetection: 0 });
1153
+ AdmiraltyTable = __decorate([
1154
+ ProxyCmp({
1155
+ inputs: ['caption']
1156
+ })
1157
+ ], AdmiraltyTable);
1158
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTable, [{
1159
+ type: Component,
1160
+ args: [{
1161
+ selector: 'admiralty-table',
1162
+ changeDetection: ChangeDetectionStrategy.OnPush,
1163
+ template: '<ng-content></ng-content>',
1164
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1165
+ inputs: ['caption'],
1166
+ }]
1167
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1168
+ let AdmiraltyTableBody = class AdmiraltyTableBody {
1169
+ constructor(c, r, z) {
1170
+ this.z = z;
1171
+ c.detach();
1172
+ this.el = r.nativeElement;
1173
+ }
1174
+ };
1175
+ /** @nocollapse */ AdmiraltyTableBody.ɵfac = function AdmiraltyTableBody_Factory(t) { return new (t || AdmiraltyTableBody)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1176
+ /** @nocollapse */ AdmiraltyTableBody.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTableBody, selectors: [["admiralty-table-body"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTableBody_Template(rf, ctx) { if (rf & 1) {
1177
+ i0.ɵɵprojectionDef();
1178
+ i0.ɵɵprojection(0);
1179
+ } }, encapsulation: 2, changeDetection: 0 });
1180
+ AdmiraltyTableBody = __decorate([
1181
+ ProxyCmp({})
1182
+ ], AdmiraltyTableBody);
1183
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTableBody, [{
1184
+ type: Component,
1185
+ args: [{
1186
+ selector: 'admiralty-table-body',
1187
+ changeDetection: ChangeDetectionStrategy.OnPush,
1188
+ template: '<ng-content></ng-content>',
1189
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1190
+ inputs: [],
1191
+ }]
1192
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1193
+ let AdmiraltyTableCell = class AdmiraltyTableCell {
1194
+ constructor(c, r, z) {
1195
+ this.z = z;
1196
+ c.detach();
1197
+ this.el = r.nativeElement;
1198
+ }
1199
+ };
1200
+ /** @nocollapse */ AdmiraltyTableCell.ɵfac = function AdmiraltyTableCell_Factory(t) { return new (t || AdmiraltyTableCell)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1201
+ /** @nocollapse */ AdmiraltyTableCell.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTableCell, selectors: [["admiralty-table-cell"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTableCell_Template(rf, ctx) { if (rf & 1) {
1202
+ i0.ɵɵprojectionDef();
1203
+ i0.ɵɵprojection(0);
1204
+ } }, encapsulation: 2, changeDetection: 0 });
1205
+ AdmiraltyTableCell = __decorate([
1206
+ ProxyCmp({})
1207
+ ], AdmiraltyTableCell);
1208
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTableCell, [{
1209
+ type: Component,
1210
+ args: [{
1211
+ selector: 'admiralty-table-cell',
1212
+ changeDetection: ChangeDetectionStrategy.OnPush,
1213
+ template: '<ng-content></ng-content>',
1214
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1215
+ inputs: [],
1216
+ }]
1217
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1218
+ let AdmiraltyTableHeader = class AdmiraltyTableHeader {
1219
+ constructor(c, r, z) {
1220
+ this.z = z;
1221
+ c.detach();
1222
+ this.el = r.nativeElement;
1223
+ }
1224
+ };
1225
+ /** @nocollapse */ AdmiraltyTableHeader.ɵfac = function AdmiraltyTableHeader_Factory(t) { return new (t || AdmiraltyTableHeader)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1226
+ /** @nocollapse */ AdmiraltyTableHeader.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTableHeader, selectors: [["admiralty-table-header"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTableHeader_Template(rf, ctx) { if (rf & 1) {
1227
+ i0.ɵɵprojectionDef();
1228
+ i0.ɵɵprojection(0);
1229
+ } }, encapsulation: 2, changeDetection: 0 });
1230
+ AdmiraltyTableHeader = __decorate([
1231
+ ProxyCmp({})
1232
+ ], AdmiraltyTableHeader);
1233
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTableHeader, [{
1234
+ type: Component,
1235
+ args: [{
1236
+ selector: 'admiralty-table-header',
1237
+ changeDetection: ChangeDetectionStrategy.OnPush,
1238
+ template: '<ng-content></ng-content>',
1239
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1240
+ inputs: [],
1241
+ }]
1242
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1243
+ let AdmiraltyTableHeaderCell = class AdmiraltyTableHeaderCell {
1244
+ constructor(c, r, z) {
1245
+ this.z = z;
1246
+ c.detach();
1247
+ this.el = r.nativeElement;
1248
+ }
1249
+ };
1250
+ /** @nocollapse */ AdmiraltyTableHeaderCell.ɵfac = function AdmiraltyTableHeaderCell_Factory(t) { return new (t || AdmiraltyTableHeaderCell)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1251
+ /** @nocollapse */ AdmiraltyTableHeaderCell.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTableHeaderCell, selectors: [["admiralty-table-header-cell"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTableHeaderCell_Template(rf, ctx) { if (rf & 1) {
1252
+ i0.ɵɵprojectionDef();
1253
+ i0.ɵɵprojection(0);
1254
+ } }, encapsulation: 2, changeDetection: 0 });
1255
+ AdmiraltyTableHeaderCell = __decorate([
1256
+ ProxyCmp({})
1257
+ ], AdmiraltyTableHeaderCell);
1258
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTableHeaderCell, [{
1259
+ type: Component,
1260
+ args: [{
1261
+ selector: 'admiralty-table-header-cell',
1262
+ changeDetection: ChangeDetectionStrategy.OnPush,
1263
+ template: '<ng-content></ng-content>',
1264
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1265
+ inputs: [],
1266
+ }]
1267
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1268
+ let AdmiraltyTableRow = class AdmiraltyTableRow {
1269
+ constructor(c, r, z) {
1270
+ this.z = z;
1271
+ c.detach();
1272
+ this.el = r.nativeElement;
1273
+ }
1274
+ };
1275
+ /** @nocollapse */ AdmiraltyTableRow.ɵfac = function AdmiraltyTableRow_Factory(t) { return new (t || AdmiraltyTableRow)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1276
+ /** @nocollapse */ AdmiraltyTableRow.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTableRow, selectors: [["admiralty-table-row"]], ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTableRow_Template(rf, ctx) { if (rf & 1) {
1277
+ i0.ɵɵprojectionDef();
1278
+ i0.ɵɵprojection(0);
1279
+ } }, encapsulation: 2, changeDetection: 0 });
1280
+ AdmiraltyTableRow = __decorate([
1281
+ ProxyCmp({})
1282
+ ], AdmiraltyTableRow);
1283
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTableRow, [{
1284
+ type: Component,
1285
+ args: [{
1286
+ selector: 'admiralty-table-row',
1287
+ changeDetection: ChangeDetectionStrategy.OnPush,
1288
+ template: '<ng-content></ng-content>',
1289
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1290
+ inputs: [],
1291
+ }]
1292
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1293
+ let AdmiraltyTextarea = class AdmiraltyTextarea {
1294
+ constructor(c, r, z) {
1295
+ this.z = z;
1296
+ c.detach();
1297
+ this.el = r.nativeElement;
1298
+ proxyOutputs(this, this.el, ['textareaBlur', 'admiraltyInput']);
1299
+ }
1300
+ };
1301
+ /** @nocollapse */ AdmiraltyTextarea.ɵfac = function AdmiraltyTextarea_Factory(t) { return new (t || AdmiraltyTextarea)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1302
+ /** @nocollapse */ AdmiraltyTextarea.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTextarea, selectors: [["admiralty-textarea"]], inputs: { disabled: "disabled", hint: "hint", invalid: "invalid", invalidMessage: "invalidMessage", label: "label", value: "value", width: "width" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTextarea_Template(rf, ctx) { if (rf & 1) {
1303
+ i0.ɵɵprojectionDef();
1304
+ i0.ɵɵprojection(0);
1305
+ } }, encapsulation: 2, changeDetection: 0 });
1306
+ AdmiraltyTextarea = __decorate([
1307
+ ProxyCmp({
1308
+ inputs: ['disabled', 'hint', 'invalid', 'invalidMessage', 'label', 'value', 'width']
1309
+ })
1310
+ ], AdmiraltyTextarea);
1311
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTextarea, [{
1312
+ type: Component,
1313
+ args: [{
1314
+ selector: 'admiralty-textarea',
1315
+ changeDetection: ChangeDetectionStrategy.OnPush,
1316
+ template: '<ng-content></ng-content>',
1317
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1318
+ inputs: ['disabled', 'hint', 'invalid', 'invalidMessage', 'label', 'value', 'width'],
1319
+ }]
1320
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1321
+ let AdmiraltyTypeAhead = class AdmiraltyTypeAhead {
1322
+ constructor(c, r, z) {
1323
+ this.z = z;
1324
+ c.detach();
1325
+ this.el = r.nativeElement;
1326
+ proxyOutputs(this, this.el, ['selectionChanged', 'valueChanged']);
1327
+ }
1328
+ };
1329
+ /** @nocollapse */ AdmiraltyTypeAhead.ɵfac = function AdmiraltyTypeAhead_Factory(t) { return new (t || AdmiraltyTypeAhead)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1330
+ /** @nocollapse */ AdmiraltyTypeAhead.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTypeAhead, selectors: [["admiralty-type-ahead"]], inputs: { hint: "hint", label: "label", placeholder: "placeholder", resultsOnInitFocus: "resultsOnInitFocus", value: "value" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTypeAhead_Template(rf, ctx) { if (rf & 1) {
1331
+ i0.ɵɵprojectionDef();
1332
+ i0.ɵɵprojection(0);
1333
+ } }, encapsulation: 2, changeDetection: 0 });
1334
+ AdmiraltyTypeAhead = __decorate([
1335
+ ProxyCmp({
1336
+ inputs: ['hint', 'label', 'placeholder', 'resultsOnInitFocus', 'value']
1337
+ })
1338
+ ], AdmiraltyTypeAhead);
1339
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTypeAhead, [{
1340
+ type: Component,
1341
+ args: [{
1342
+ selector: 'admiralty-type-ahead',
1343
+ changeDetection: ChangeDetectionStrategy.OnPush,
1344
+ template: '<ng-content></ng-content>',
1345
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1346
+ inputs: ['hint', 'label', 'placeholder', 'resultsOnInitFocus', 'value'],
1347
+ }]
1348
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1349
+ let AdmiraltyTypeAheadItem = class AdmiraltyTypeAheadItem {
1350
+ constructor(c, r, z) {
1351
+ this.z = z;
1352
+ c.detach();
1353
+ this.el = r.nativeElement;
1354
+ }
1355
+ };
1356
+ /** @nocollapse */ AdmiraltyTypeAheadItem.ɵfac = function AdmiraltyTypeAheadItem_Factory(t) { return new (t || AdmiraltyTypeAheadItem)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.NgZone)); };
1357
+ /** @nocollapse */ AdmiraltyTypeAheadItem.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: AdmiraltyTypeAheadItem, selectors: [["admiralty-type-ahead-item"]], inputs: { value: "value" }, ngContentSelectors: _c0, decls: 1, vars: 0, template: function AdmiraltyTypeAheadItem_Template(rf, ctx) { if (rf & 1) {
1358
+ i0.ɵɵprojectionDef();
1359
+ i0.ɵɵprojection(0);
1360
+ } }, encapsulation: 2, changeDetection: 0 });
1361
+ AdmiraltyTypeAheadItem = __decorate([
1362
+ ProxyCmp({
1363
+ inputs: ['value']
1364
+ })
1365
+ ], AdmiraltyTypeAheadItem);
1366
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AdmiraltyTypeAheadItem, [{
1367
+ type: Component,
1368
+ args: [{
1369
+ selector: 'admiralty-type-ahead-item',
1370
+ changeDetection: ChangeDetectionStrategy.OnPush,
1371
+ template: '<ng-content></ng-content>',
1372
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1373
+ inputs: ['value'],
1374
+ }]
1375
+ }], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, null); })();
1376
+
1377
+ const DIRECTIVES = [
1378
+ AdmiraltyAutocomplete,
1379
+ AdmiraltyAutocompleteOption,
1380
+ AdmiraltyBreadcrumb,
1381
+ AdmiraltyBreadcrumbs,
1382
+ AdmiraltyButton,
1383
+ AdmiraltyCard,
1384
+ AdmiraltyCheckbox,
1385
+ AdmiraltyColourBlock,
1386
+ AdmiraltyDialogue,
1387
+ AdmiraltyExpansion,
1388
+ AdmiraltyFileInput,
1389
+ AdmiraltyFilter,
1390
+ AdmiraltyFilterGroup,
1391
+ AdmiraltyFooter,
1392
+ AdmiraltyHeader,
1393
+ AdmiraltyHeaderMenuItem,
1394
+ AdmiraltyHeaderMenuLink,
1395
+ AdmiraltyHeaderProfile,
1396
+ AdmiraltyHeaderSubMenuItem,
1397
+ AdmiraltyHint,
1398
+ AdmiraltyHr,
1399
+ AdmiraltyIcon,
1400
+ AdmiraltyInput,
1401
+ AdmiraltyInputInvalid,
1402
+ AdmiraltyLabel,
1403
+ AdmiraltyLink,
1404
+ AdmiraltyModalDialog,
1405
+ AdmiraltyPaginator,
1406
+ AdmiraltyPhaseBanner,
1407
+ AdmiraltyProgressBar,
1408
+ AdmiraltyRadio,
1409
+ AdmiraltyRadioGroup,
1410
+ AdmiraltyReadMore,
1411
+ AdmiraltySelect,
1412
+ AdmiraltySideNav,
1413
+ AdmiraltySideNavItem,
1414
+ AdmiraltySkipLink,
1415
+ AdmiraltyTab,
1416
+ AdmiraltyTabGroup,
1417
+ AdmiraltyTable,
1418
+ AdmiraltyTableBody,
1419
+ AdmiraltyTableCell,
1420
+ AdmiraltyTableHeader,
1421
+ AdmiraltyTableHeaderCell,
1422
+ AdmiraltyTableRow,
1423
+ AdmiraltyTextarea,
1424
+ AdmiraltyTypeAhead,
1425
+ AdmiraltyTypeAheadItem
1426
+ ];
1427
+
1428
+ class ValueAccessor {
1429
+ constructor(el) {
1430
+ this.el = el;
1431
+ this.onChange = () => { };
1432
+ this.onTouched = () => { };
1433
+ }
1434
+ writeValue(value) {
1435
+ this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
1436
+ }
1437
+ handleChangeEvent(value) {
1438
+ if (value !== this.lastValue) {
1439
+ this.lastValue = value;
1440
+ this.onChange(value);
1441
+ }
1442
+ }
1443
+ _handleBlurEvent() {
1444
+ this.onTouched();
1445
+ }
1446
+ registerOnChange(fn) {
1447
+ this.onChange = fn;
1448
+ }
1449
+ registerOnTouched(fn) {
1450
+ this.onTouched = fn;
1451
+ }
1452
+ setDisabledState(isDisabled) {
1453
+ this.el.nativeElement.disabled = isDisabled;
1454
+ }
1455
+ }
1456
+ /** @nocollapse */ ValueAccessor.ɵfac = function ValueAccessor_Factory(t) { return new (t || ValueAccessor)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
1457
+ /** @nocollapse */ ValueAccessor.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: ValueAccessor, hostBindings: function ValueAccessor_HostBindings(rf, ctx) { if (rf & 1) {
1458
+ i0.ɵɵlistener("focusout", function ValueAccessor_focusout_HostBindingHandler() { return ctx._handleBlurEvent(); });
1459
+ } } });
1460
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ValueAccessor, [{
1461
+ type: Directive,
1462
+ args: [{}]
1463
+ }], function () { return [{ type: i0.ElementRef }]; }, { _handleBlurEvent: [{
1464
+ type: HostListener,
1465
+ args: ['focusout']
1466
+ }] }); })();
1467
+
1468
+ class TextValueAccessor extends ValueAccessor {
1469
+ constructor(el) {
1470
+ super(el);
1471
+ }
1472
+ }
1473
+ /** @nocollapse */ TextValueAccessor.ɵfac = function TextValueAccessor_Factory(t) { return new (t || TextValueAccessor)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
1474
+ /** @nocollapse */ TextValueAccessor.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: TextValueAccessor, selectors: [["admiralty-input", 3, "type", "number"], ["admiralty-textarea"]], hostBindings: function TextValueAccessor_HostBindings(rf, ctx) { if (rf & 1) {
1475
+ i0.ɵɵlistener("admiraltyInput", function TextValueAccessor_admiraltyInput_HostBindingHandler($event) { return ctx.handleChangeEvent($event.target.value); });
1476
+ } }, features: [i0.ɵɵProvidersFeature([
1477
+ {
1478
+ provide: NG_VALUE_ACCESSOR,
1479
+ useExisting: TextValueAccessor,
1480
+ multi: true
1481
+ }
1482
+ ]), i0.ɵɵInheritDefinitionFeature] });
1483
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TextValueAccessor, [{
1484
+ type: Directive,
1485
+ args: [{
1486
+ /* tslint:disable-next-line:directive-selector */
1487
+ selector: 'admiralty-input:not([type=number]), admiralty-textarea',
1488
+ host: {
1489
+ '(admiraltyInput)': 'handleChangeEvent($event.target.value)'
1490
+ },
1491
+ providers: [
1492
+ {
1493
+ provide: NG_VALUE_ACCESSOR,
1494
+ useExisting: TextValueAccessor,
1495
+ multi: true
1496
+ }
1497
+ ]
1498
+ }]
1499
+ }], function () { return [{ type: i0.ElementRef }]; }, null); })();
1500
+
1501
+ class BooleanValueAccessor extends ValueAccessor {
1502
+ constructor(el) {
1503
+ super(el);
1504
+ }
1505
+ writeValue(value) {
1506
+ this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
1507
+ }
1508
+ }
1509
+ /** @nocollapse */ BooleanValueAccessor.ɵfac = function BooleanValueAccessor_Factory(t) { return new (t || BooleanValueAccessor)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
1510
+ /** @nocollapse */ BooleanValueAccessor.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: BooleanValueAccessor, selectors: [["admiralty-checkbox"]], hostBindings: function BooleanValueAccessor_HostBindings(rf, ctx) { if (rf & 1) {
1511
+ i0.ɵɵlistener("admiraltyChange", function BooleanValueAccessor_admiraltyChange_HostBindingHandler($event) { return ctx.handleChangeEvent($event.target.checked); });
1512
+ } }, features: [i0.ɵɵProvidersFeature([
1513
+ {
1514
+ provide: NG_VALUE_ACCESSOR,
1515
+ useExisting: BooleanValueAccessor,
1516
+ multi: true
1517
+ }
1518
+ ]), i0.ɵɵInheritDefinitionFeature] });
1519
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BooleanValueAccessor, [{
1520
+ type: Directive,
1521
+ args: [{
1522
+ /* tslint:disable-next-line:directive-selector */
1523
+ selector: 'admiralty-checkbox',
1524
+ host: {
1525
+ '(admiraltyChange)': 'handleChangeEvent($event.target.checked)'
1526
+ },
1527
+ providers: [
1528
+ {
1529
+ provide: NG_VALUE_ACCESSOR,
1530
+ useExisting: BooleanValueAccessor,
1531
+ multi: true
1532
+ }
1533
+ ]
1534
+ }]
1535
+ }], function () { return [{ type: i0.ElementRef }]; }, null); })();
1536
+
1537
+ class NumericValueAccessor extends ValueAccessor {
1538
+ constructor(el) {
1539
+ super(el);
1540
+ }
1541
+ registerOnChange(fn) {
1542
+ super.registerOnChange(value => {
1543
+ fn(value === '' ? null : parseFloat(value));
1544
+ });
1545
+ }
1546
+ }
1547
+ /** @nocollapse */ NumericValueAccessor.ɵfac = function NumericValueAccessor_Factory(t) { return new (t || NumericValueAccessor)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
1548
+ /** @nocollapse */ NumericValueAccessor.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: NumericValueAccessor, selectors: [["admiralty-input", "type", "number"]], hostBindings: function NumericValueAccessor_HostBindings(rf, ctx) { if (rf & 1) {
1549
+ i0.ɵɵlistener("admiraltyInput", function NumericValueAccessor_admiraltyInput_HostBindingHandler($event) { return ctx.handleChangeEvent($event.target.value); });
1550
+ } }, features: [i0.ɵɵProvidersFeature([
1551
+ {
1552
+ provide: NG_VALUE_ACCESSOR,
1553
+ useExisting: NumericValueAccessor,
1554
+ multi: true
1555
+ }
1556
+ ]), i0.ɵɵInheritDefinitionFeature] });
1557
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NumericValueAccessor, [{
1558
+ type: Directive,
1559
+ args: [{
1560
+ /* tslint:disable-next-line:directive-selector */
1561
+ selector: 'admiralty-input[type=number]',
1562
+ host: {
1563
+ '(admiraltyInput)': 'handleChangeEvent($event.target.value)'
1564
+ },
1565
+ providers: [
1566
+ {
1567
+ provide: NG_VALUE_ACCESSOR,
1568
+ useExisting: NumericValueAccessor,
1569
+ multi: true
1570
+ }
1571
+ ]
1572
+ }]
1573
+ }], function () { return [{ type: i0.ElementRef }]; }, null); })();
1574
+
1575
+ class RadioValueAccessor extends ValueAccessor {
1576
+ constructor(el) {
1577
+ super(el);
1578
+ }
1579
+ }
1580
+ /** @nocollapse */ RadioValueAccessor.ɵfac = function RadioValueAccessor_Factory(t) { return new (t || RadioValueAccessor)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
1581
+ /** @nocollapse */ RadioValueAccessor.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: RadioValueAccessor, selectors: [["admiralty-radio"]], hostBindings: function RadioValueAccessor_HostBindings(rf, ctx) { if (rf & 1) {
1582
+ i0.ɵɵlistener("admiraltyRadioChange", function RadioValueAccessor_admiraltyRadioChange_HostBindingHandler($event) { return ctx.handleChangeEvent($event.target.value); });
1583
+ } }, features: [i0.ɵɵProvidersFeature([
1584
+ {
1585
+ provide: NG_VALUE_ACCESSOR,
1586
+ useExisting: RadioValueAccessor,
1587
+ multi: true
1588
+ }
1589
+ ]), i0.ɵɵInheritDefinitionFeature] });
1590
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RadioValueAccessor, [{
1591
+ type: Directive,
1592
+ args: [{
1593
+ /* tslint:disable-next-line:directive-selector */
1594
+ selector: 'admiralty-radio',
1595
+ host: {
1596
+ '(admiraltyRadioChange)': 'handleChangeEvent($event.target.value)'
1597
+ },
1598
+ providers: [
1599
+ {
1600
+ provide: NG_VALUE_ACCESSOR,
1601
+ useExisting: RadioValueAccessor,
1602
+ multi: true
1603
+ }
1604
+ ]
1605
+ }]
1606
+ }], function () { return [{ type: i0.ElementRef }]; }, null); })();
1607
+
1608
+ class SelectValueAccessor extends ValueAccessor {
1609
+ constructor(el) {
1610
+ super(el);
1611
+ }
1612
+ }
1613
+ /** @nocollapse */ SelectValueAccessor.ɵfac = function SelectValueAccessor_Factory(t) { return new (t || SelectValueAccessor)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
1614
+ /** @nocollapse */ SelectValueAccessor.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: SelectValueAccessor, selectors: [["admiralty-select"], ["admiralty-radio-group"], ["admiralty-autocomplete"]], hostBindings: function SelectValueAccessor_HostBindings(rf, ctx) { if (rf & 1) {
1615
+ i0.ɵɵlistener("admiraltyChange", function SelectValueAccessor_admiraltyChange_HostBindingHandler($event) { return ctx.handleChangeEvent($event.target.value); });
1616
+ } }, features: [i0.ɵɵProvidersFeature([
1617
+ {
1618
+ provide: NG_VALUE_ACCESSOR,
1619
+ useExisting: SelectValueAccessor,
1620
+ multi: true
1621
+ }
1622
+ ]), i0.ɵɵInheritDefinitionFeature] });
1623
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SelectValueAccessor, [{
1624
+ type: Directive,
1625
+ args: [{
1626
+ /* tslint:disable-next-line:directive-selector */
1627
+ selector: 'admiralty-select, admiralty-radio-group, admiralty-autocomplete',
1628
+ host: {
1629
+ '(admiraltyChange)': 'handleChangeEvent($event.target.value)'
1630
+ },
1631
+ providers: [
1632
+ {
1633
+ provide: NG_VALUE_ACCESSOR,
1634
+ useExisting: SelectValueAccessor,
1635
+ multi: true
1636
+ }
1637
+ ]
1638
+ }]
1639
+ }], function () { return [{ type: i0.ElementRef }]; }, null); })();
1640
+
1641
+ class DesignSystemModule {
1642
+ static forRoot() {
1643
+ return {
1644
+ ngModule: DesignSystemModule,
1645
+ providers: [
1646
+ {
1647
+ provide: APP_INITIALIZER,
1648
+ useFactory: appInitialise,
1649
+ multi: true,
1650
+ },
1651
+ ],
1652
+ };
1653
+ }
1654
+ }
1655
+ /** @nocollapse */ DesignSystemModule.ɵfac = function DesignSystemModule_Factory(t) { return new (t || DesignSystemModule)(); };
1656
+ /** @nocollapse */ DesignSystemModule.ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: DesignSystemModule });
1657
+ /** @nocollapse */ DesignSystemModule.ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ imports: [[CommonModule]] });
1658
+ (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DesignSystemModule, [{
1659
+ type: NgModule,
1660
+ args: [{
1661
+ declarations: [
1662
+ ...DIRECTIVES,
1663
+ TextValueAccessor,
1664
+ BooleanValueAccessor,
1665
+ NumericValueAccessor,
1666
+ RadioValueAccessor,
1667
+ SelectValueAccessor,
1668
+ ],
1669
+ imports: [CommonModule],
1670
+ exports: [
1671
+ ...DIRECTIVES,
1672
+ TextValueAccessor,
1673
+ BooleanValueAccessor,
1674
+ NumericValueAccessor,
1675
+ RadioValueAccessor,
1676
+ SelectValueAccessor,
1677
+ ],
1678
+ }]
1679
+ }], null, null); })();
1680
+ (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(DesignSystemModule, { declarations: [AdmiraltyAutocomplete, AdmiraltyAutocompleteOption, AdmiraltyBreadcrumb, AdmiraltyBreadcrumbs, AdmiraltyButton, AdmiraltyCard, AdmiraltyCheckbox, AdmiraltyColourBlock, AdmiraltyDialogue, AdmiraltyExpansion, AdmiraltyFileInput, AdmiraltyFilter, AdmiraltyFilterGroup, AdmiraltyFooter, AdmiraltyHeader, AdmiraltyHeaderMenuItem, AdmiraltyHeaderMenuLink, AdmiraltyHeaderProfile, AdmiraltyHeaderSubMenuItem, AdmiraltyHint, AdmiraltyHr, AdmiraltyIcon, AdmiraltyInput, AdmiraltyInputInvalid, AdmiraltyLabel, AdmiraltyLink, AdmiraltyModalDialog, AdmiraltyPaginator, AdmiraltyPhaseBanner, AdmiraltyProgressBar, AdmiraltyRadio, AdmiraltyRadioGroup, AdmiraltyReadMore, AdmiraltySelect, AdmiraltySideNav, AdmiraltySideNavItem, AdmiraltySkipLink, AdmiraltyTab, AdmiraltyTabGroup, AdmiraltyTable, AdmiraltyTableBody, AdmiraltyTableCell, AdmiraltyTableHeader, AdmiraltyTableHeaderCell, AdmiraltyTableRow, AdmiraltyTextarea, AdmiraltyTypeAhead, AdmiraltyTypeAheadItem, TextValueAccessor,
1681
+ BooleanValueAccessor,
1682
+ NumericValueAccessor,
1683
+ RadioValueAccessor,
1684
+ SelectValueAccessor], imports: [CommonModule], exports: [AdmiraltyAutocomplete, AdmiraltyAutocompleteOption, AdmiraltyBreadcrumb, AdmiraltyBreadcrumbs, AdmiraltyButton, AdmiraltyCard, AdmiraltyCheckbox, AdmiraltyColourBlock, AdmiraltyDialogue, AdmiraltyExpansion, AdmiraltyFileInput, AdmiraltyFilter, AdmiraltyFilterGroup, AdmiraltyFooter, AdmiraltyHeader, AdmiraltyHeaderMenuItem, AdmiraltyHeaderMenuLink, AdmiraltyHeaderProfile, AdmiraltyHeaderSubMenuItem, AdmiraltyHint, AdmiraltyHr, AdmiraltyIcon, AdmiraltyInput, AdmiraltyInputInvalid, AdmiraltyLabel, AdmiraltyLink, AdmiraltyModalDialog, AdmiraltyPaginator, AdmiraltyPhaseBanner, AdmiraltyProgressBar, AdmiraltyRadio, AdmiraltyRadioGroup, AdmiraltyReadMore, AdmiraltySelect, AdmiraltySideNav, AdmiraltySideNavItem, AdmiraltySkipLink, AdmiraltyTab, AdmiraltyTabGroup, AdmiraltyTable, AdmiraltyTableBody, AdmiraltyTableCell, AdmiraltyTableHeader, AdmiraltyTableHeaderCell, AdmiraltyTableRow, AdmiraltyTextarea, AdmiraltyTypeAhead, AdmiraltyTypeAheadItem, TextValueAccessor,
1685
+ BooleanValueAccessor,
1686
+ NumericValueAccessor,
1687
+ RadioValueAccessor,
1688
+ SelectValueAccessor] }); })();
1689
+
1690
+ /*
1691
+ * Public API Surface of component-library
1692
+ */
1693
+
1694
+ /**
1695
+ * Generated bundle index. Do not edit.
1696
+ */
1697
+
1698
+ export { AdmiraltyAutocomplete, AdmiraltyAutocompleteOption, AdmiraltyBreadcrumb, AdmiraltyBreadcrumbs, AdmiraltyButton, AdmiraltyCard, AdmiraltyCheckbox, AdmiraltyColourBlock, AdmiraltyDialogue, AdmiraltyExpansion, AdmiraltyFileInput, AdmiraltyFilter, AdmiraltyFilterGroup, AdmiraltyFooter, AdmiraltyHeader, AdmiraltyHeaderMenuItem, AdmiraltyHeaderMenuLink, AdmiraltyHeaderProfile, AdmiraltyHeaderSubMenuItem, AdmiraltyHint, AdmiraltyHr, AdmiraltyIcon, AdmiraltyInput, AdmiraltyInputInvalid, AdmiraltyLabel, AdmiraltyLink, AdmiraltyModalDialog, AdmiraltyPaginator, AdmiraltyPhaseBanner, AdmiraltyProgressBar, AdmiraltyRadio, AdmiraltyRadioGroup, AdmiraltyReadMore, AdmiraltySelect, AdmiraltySideNav, AdmiraltySideNavItem, AdmiraltySkipLink, AdmiraltyTab, AdmiraltyTabGroup, AdmiraltyTable, AdmiraltyTableBody, AdmiraltyTableCell, AdmiraltyTableHeader, AdmiraltyTableHeaderCell, AdmiraltyTableRow, AdmiraltyTextarea, AdmiraltyTypeAhead, AdmiraltyTypeAheadItem, BooleanValueAccessor, DIRECTIVES, DesignSystemModule, NumericValueAccessor, RadioValueAccessor, SelectValueAccessor, TextValueAccessor };
1699
+ //# sourceMappingURL=ukho-admiralty-angular.js.map