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