@spw-ds/spw-angular-library 0.0.2

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.
@@ -0,0 +1,1535 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, APP_INITIALIZER, NgModule } from '@angular/core';
3
+ import { defineCustomElements } from '@spw-ds/spw-stencil-library/loader';
4
+ import { __decorate } from 'tslib';
5
+ import { fromEvent } from 'rxjs';
6
+
7
+ /* eslint-disable */
8
+ /* tslint:disable */
9
+ const proxyInputs = (Cmp, inputs) => {
10
+ const Prototype = Cmp.prototype;
11
+ inputs.forEach((item) => {
12
+ Object.defineProperty(Prototype, item, {
13
+ get() {
14
+ return this.el[item];
15
+ },
16
+ set(val) {
17
+ this.z.runOutsideAngular(() => (this.el[item] = val));
18
+ },
19
+ /**
20
+ * In the event that proxyInputs is called
21
+ * multiple times re-defining these inputs
22
+ * will cause an error to be thrown. As a result
23
+ * we set configurable: true to indicate these
24
+ * properties can be changed.
25
+ */
26
+ configurable: true,
27
+ });
28
+ });
29
+ };
30
+ const proxyMethods = (Cmp, methods) => {
31
+ const Prototype = Cmp.prototype;
32
+ methods.forEach((methodName) => {
33
+ Prototype[methodName] = function () {
34
+ const args = arguments;
35
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
36
+ };
37
+ });
38
+ };
39
+ const proxyOutputs = (instance, el, events) => {
40
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
41
+ };
42
+ const defineCustomElement = (tagName, customElement) => {
43
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
44
+ customElements.define(tagName, customElement);
45
+ }
46
+ };
47
+ // tslint:disable-next-line: only-arrow-functions
48
+ function ProxyCmp(opts) {
49
+ const decorator = function (cls) {
50
+ const { defineCustomElementFn, inputs, methods } = opts;
51
+ if (defineCustomElementFn !== undefined) {
52
+ defineCustomElementFn();
53
+ }
54
+ if (inputs) {
55
+ proxyInputs(cls, inputs);
56
+ }
57
+ if (methods) {
58
+ proxyMethods(cls, methods);
59
+ }
60
+ return cls;
61
+ };
62
+ return decorator;
63
+ }
64
+
65
+ let SpwAccordion = class SpwAccordion {
66
+ constructor(c, r, z) {
67
+ this.z = z;
68
+ c.detach();
69
+ this.el = r.nativeElement;
70
+ }
71
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
72
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwAccordion, selector: "spw-accordion", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
73
+ };
74
+ SpwAccordion = __decorate([
75
+ ProxyCmp({})
76
+ ], SpwAccordion);
77
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordion, decorators: [{
78
+ type: Component,
79
+ args: [{
80
+ selector: 'spw-accordion',
81
+ changeDetection: ChangeDetectionStrategy.OnPush,
82
+ template: '<ng-content></ng-content>',
83
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
84
+ inputs: [],
85
+ }]
86
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
87
+ let SpwAccordionContent = class SpwAccordionContent {
88
+ constructor(c, r, z) {
89
+ this.z = z;
90
+ c.detach();
91
+ this.el = r.nativeElement;
92
+ }
93
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordionContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
94
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwAccordionContent, selector: "spw-accordion-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
95
+ };
96
+ SpwAccordionContent = __decorate([
97
+ ProxyCmp({})
98
+ ], SpwAccordionContent);
99
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordionContent, decorators: [{
100
+ type: Component,
101
+ args: [{
102
+ selector: 'spw-accordion-content',
103
+ changeDetection: ChangeDetectionStrategy.OnPush,
104
+ template: '<ng-content></ng-content>',
105
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
106
+ inputs: [],
107
+ }]
108
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
109
+ let SpwAccordionItem = class SpwAccordionItem {
110
+ constructor(c, r, z) {
111
+ this.z = z;
112
+ c.detach();
113
+ this.el = r.nativeElement;
114
+ proxyOutputs(this, this.el, ['accordionToggle']);
115
+ }
116
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
117
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwAccordionItem, selector: "spw-accordion-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
118
+ };
119
+ SpwAccordionItem = __decorate([
120
+ ProxyCmp({})
121
+ ], SpwAccordionItem);
122
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordionItem, decorators: [{
123
+ type: Component,
124
+ args: [{
125
+ selector: 'spw-accordion-item',
126
+ changeDetection: ChangeDetectionStrategy.OnPush,
127
+ template: '<ng-content></ng-content>',
128
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
129
+ inputs: [],
130
+ }]
131
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
132
+ let SpwAccordionTitle = class SpwAccordionTitle {
133
+ constructor(c, r, z) {
134
+ this.z = z;
135
+ c.detach();
136
+ this.el = r.nativeElement;
137
+ }
138
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordionTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
139
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwAccordionTitle, selector: "spw-accordion-title", inputs: { icon: "icon", tag: "tag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
140
+ };
141
+ SpwAccordionTitle = __decorate([
142
+ ProxyCmp({
143
+ inputs: ['icon', 'tag']
144
+ })
145
+ ], SpwAccordionTitle);
146
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwAccordionTitle, decorators: [{
147
+ type: Component,
148
+ args: [{
149
+ selector: 'spw-accordion-title',
150
+ changeDetection: ChangeDetectionStrategy.OnPush,
151
+ template: '<ng-content></ng-content>',
152
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
153
+ inputs: ['icon', 'tag'],
154
+ }]
155
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
156
+ let SpwBreadcrumb = class SpwBreadcrumb {
157
+ constructor(c, r, z) {
158
+ this.z = z;
159
+ c.detach();
160
+ this.el = r.nativeElement;
161
+ }
162
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
163
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwBreadcrumb, selector: "spw-breadcrumb", inputs: { surface: "surface", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
164
+ };
165
+ SpwBreadcrumb = __decorate([
166
+ ProxyCmp({
167
+ inputs: ['surface', 'variant']
168
+ })
169
+ ], SpwBreadcrumb);
170
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwBreadcrumb, decorators: [{
171
+ type: Component,
172
+ args: [{
173
+ selector: 'spw-breadcrumb',
174
+ changeDetection: ChangeDetectionStrategy.OnPush,
175
+ template: '<ng-content></ng-content>',
176
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
177
+ inputs: ['surface', 'variant'],
178
+ }]
179
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
180
+ let SpwBreadcrumbItem = class SpwBreadcrumbItem {
181
+ constructor(c, r, z) {
182
+ this.z = z;
183
+ c.detach();
184
+ this.el = r.nativeElement;
185
+ }
186
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
187
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwBreadcrumbItem, selector: "spw-breadcrumb-item", inputs: { href: "href" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
188
+ };
189
+ SpwBreadcrumbItem = __decorate([
190
+ ProxyCmp({
191
+ inputs: ['href']
192
+ })
193
+ ], SpwBreadcrumbItem);
194
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwBreadcrumbItem, decorators: [{
195
+ type: Component,
196
+ args: [{
197
+ selector: 'spw-breadcrumb-item',
198
+ changeDetection: ChangeDetectionStrategy.OnPush,
199
+ template: '<ng-content></ng-content>',
200
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
201
+ inputs: ['href'],
202
+ }]
203
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
204
+ let SpwButton = class SpwButton {
205
+ constructor(c, r, z) {
206
+ this.z = z;
207
+ c.detach();
208
+ this.el = r.nativeElement;
209
+ proxyOutputs(this, this.el, ['spwFocus', 'spwBlur', 'spwNavigate']);
210
+ }
211
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
212
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwButton, selector: "spw-button", inputs: { accAriaLabel: "accAriaLabel", disabled: "disabled", download: "download", href: "href", icon: "icon", iconPosition: "iconPosition", isFullWidth: "isFullWidth", isFullWidthMobile: "isFullWidthMobile", name: "name", rel: "rel", size: "size", surface: "surface", target: "target", type: "type", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
213
+ };
214
+ SpwButton = __decorate([
215
+ ProxyCmp({
216
+ inputs: ['accAriaLabel', 'disabled', 'download', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant']
217
+ })
218
+ ], SpwButton);
219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwButton, decorators: [{
220
+ type: Component,
221
+ args: [{
222
+ selector: 'spw-button',
223
+ changeDetection: ChangeDetectionStrategy.OnPush,
224
+ template: '<ng-content></ng-content>',
225
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
226
+ inputs: ['accAriaLabel', 'disabled', 'download', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant'],
227
+ }]
228
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
229
+ let SpwCard = class SpwCard {
230
+ constructor(c, r, z) {
231
+ this.z = z;
232
+ c.detach();
233
+ this.el = r.nativeElement;
234
+ }
235
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
236
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCard, selector: "spw-card", inputs: { accAriaLabel: "accAriaLabel", dateEnd: "dateEnd", dateStart: "dateStart", disabled: "disabled", elementType: "elementType", fullHeight: "fullHeight", href: "href", rel: "rel", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
237
+ };
238
+ SpwCard = __decorate([
239
+ ProxyCmp({
240
+ inputs: ['accAriaLabel', 'dateEnd', 'dateStart', 'disabled', 'elementType', 'fullHeight', 'href', 'rel', 'target', 'variant']
241
+ })
242
+ ], SpwCard);
243
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCard, decorators: [{
244
+ type: Component,
245
+ args: [{
246
+ selector: 'spw-card',
247
+ changeDetection: ChangeDetectionStrategy.OnPush,
248
+ template: '<ng-content></ng-content>',
249
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
250
+ inputs: ['accAriaLabel', 'dateEnd', 'dateStart', 'disabled', 'elementType', 'fullHeight', 'href', 'rel', 'target', 'variant'],
251
+ }]
252
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
253
+ let SpwCardContent = class SpwCardContent {
254
+ constructor(c, r, z) {
255
+ this.z = z;
256
+ c.detach();
257
+ this.el = r.nativeElement;
258
+ }
259
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
260
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCardContent, selector: "spw-card-content", inputs: { date: "date", tag: "tag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
261
+ };
262
+ SpwCardContent = __decorate([
263
+ ProxyCmp({
264
+ inputs: ['date', 'tag']
265
+ })
266
+ ], SpwCardContent);
267
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardContent, decorators: [{
268
+ type: Component,
269
+ args: [{
270
+ selector: 'spw-card-content',
271
+ changeDetection: ChangeDetectionStrategy.OnPush,
272
+ template: '<ng-content></ng-content>',
273
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
274
+ inputs: ['date', 'tag'],
275
+ }]
276
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
277
+ let SpwCardExcerpt = class SpwCardExcerpt {
278
+ constructor(c, r, z) {
279
+ this.z = z;
280
+ c.detach();
281
+ this.el = r.nativeElement;
282
+ }
283
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardExcerpt, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
284
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCardExcerpt, selector: "spw-card-excerpt", inputs: { lineClamp: "lineClamp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
285
+ };
286
+ SpwCardExcerpt = __decorate([
287
+ ProxyCmp({
288
+ inputs: ['lineClamp']
289
+ })
290
+ ], SpwCardExcerpt);
291
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardExcerpt, decorators: [{
292
+ type: Component,
293
+ args: [{
294
+ selector: 'spw-card-excerpt',
295
+ changeDetection: ChangeDetectionStrategy.OnPush,
296
+ template: '<ng-content></ng-content>',
297
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
298
+ inputs: ['lineClamp'],
299
+ }]
300
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
301
+ let SpwCardImage = class SpwCardImage {
302
+ constructor(c, r, z) {
303
+ this.z = z;
304
+ c.detach();
305
+ this.el = r.nativeElement;
306
+ }
307
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
308
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCardImage, selector: "spw-card-image", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
309
+ };
310
+ SpwCardImage = __decorate([
311
+ ProxyCmp({
312
+ inputs: ['label']
313
+ })
314
+ ], SpwCardImage);
315
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardImage, decorators: [{
316
+ type: Component,
317
+ args: [{
318
+ selector: 'spw-card-image',
319
+ changeDetection: ChangeDetectionStrategy.OnPush,
320
+ template: '<ng-content></ng-content>',
321
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
322
+ inputs: ['label'],
323
+ }]
324
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
325
+ let SpwCardSubtagItem = class SpwCardSubtagItem {
326
+ constructor(c, r, z) {
327
+ this.z = z;
328
+ c.detach();
329
+ this.el = r.nativeElement;
330
+ }
331
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardSubtagItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
332
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCardSubtagItem, selector: "spw-card-subtag-item", inputs: { link: "link" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
333
+ };
334
+ SpwCardSubtagItem = __decorate([
335
+ ProxyCmp({
336
+ inputs: ['link']
337
+ })
338
+ ], SpwCardSubtagItem);
339
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardSubtagItem, decorators: [{
340
+ type: Component,
341
+ args: [{
342
+ selector: 'spw-card-subtag-item',
343
+ changeDetection: ChangeDetectionStrategy.OnPush,
344
+ template: '<ng-content></ng-content>',
345
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
346
+ inputs: ['link'],
347
+ }]
348
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
349
+ let SpwCardSubtags = class SpwCardSubtags {
350
+ constructor(c, r, z) {
351
+ this.z = z;
352
+ c.detach();
353
+ this.el = r.nativeElement;
354
+ }
355
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardSubtags, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
356
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCardSubtags, selector: "spw-card-subtags", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
357
+ };
358
+ SpwCardSubtags = __decorate([
359
+ ProxyCmp({
360
+ inputs: ['variant']
361
+ })
362
+ ], SpwCardSubtags);
363
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardSubtags, decorators: [{
364
+ type: Component,
365
+ args: [{
366
+ selector: 'spw-card-subtags',
367
+ changeDetection: ChangeDetectionStrategy.OnPush,
368
+ template: '<ng-content></ng-content>',
369
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
370
+ inputs: ['variant'],
371
+ }]
372
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
373
+ let SpwCardTitle = class SpwCardTitle {
374
+ constructor(c, r, z) {
375
+ this.z = z;
376
+ c.detach();
377
+ this.el = r.nativeElement;
378
+ }
379
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
380
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCardTitle, selector: "spw-card-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
381
+ };
382
+ SpwCardTitle = __decorate([
383
+ ProxyCmp({})
384
+ ], SpwCardTitle);
385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCardTitle, decorators: [{
386
+ type: Component,
387
+ args: [{
388
+ selector: 'spw-card-title',
389
+ changeDetection: ChangeDetectionStrategy.OnPush,
390
+ template: '<ng-content></ng-content>',
391
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
392
+ inputs: [],
393
+ }]
394
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
395
+ let SpwCheckbox = class SpwCheckbox {
396
+ constructor(c, r, z) {
397
+ this.z = z;
398
+ c.detach();
399
+ this.el = r.nativeElement;
400
+ proxyOutputs(this, this.el, ['spwChange']);
401
+ }
402
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
403
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCheckbox, selector: "spw-checkbox", inputs: { checked: "checked", disabled: "disabled", error: "error", icon: "icon", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
404
+ };
405
+ SpwCheckbox = __decorate([
406
+ ProxyCmp({
407
+ inputs: ['checked', 'disabled', 'error', 'icon', 'name'],
408
+ methods: ['toggleCheckedState']
409
+ })
410
+ ], SpwCheckbox);
411
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCheckbox, decorators: [{
412
+ type: Component,
413
+ args: [{
414
+ selector: 'spw-checkbox',
415
+ changeDetection: ChangeDetectionStrategy.OnPush,
416
+ template: '<ng-content></ng-content>',
417
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
418
+ inputs: ['checked', 'disabled', 'error', 'icon', 'name'],
419
+ }]
420
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
421
+ let SpwCookies = class SpwCookies {
422
+ constructor(c, r, z) {
423
+ this.z = z;
424
+ c.detach();
425
+ this.el = r.nativeElement;
426
+ }
427
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCookies, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
428
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCookies, selector: "spw-cookies", inputs: { acceptAllButtonText: "acceptAllButtonText", acceptRequiredButtonText: "acceptRequiredButtonText", cookiesDescription: "cookiesDescription", cookiesTitle: "cookiesTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
429
+ };
430
+ SpwCookies = __decorate([
431
+ ProxyCmp({
432
+ inputs: ['acceptAllButtonText', 'acceptRequiredButtonText', 'cookiesDescription', 'cookiesTitle']
433
+ })
434
+ ], SpwCookies);
435
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCookies, decorators: [{
436
+ type: Component,
437
+ args: [{
438
+ selector: 'spw-cookies',
439
+ changeDetection: ChangeDetectionStrategy.OnPush,
440
+ template: '<ng-content></ng-content>',
441
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
442
+ inputs: ['acceptAllButtonText', 'acceptRequiredButtonText', 'cookiesDescription', 'cookiesTitle'],
443
+ }]
444
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
445
+ let SpwCustomSelect = class SpwCustomSelect {
446
+ constructor(c, r, z) {
447
+ this.z = z;
448
+ c.detach();
449
+ this.el = r.nativeElement;
450
+ proxyOutputs(this, this.el, ['valueChanged']);
451
+ }
452
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCustomSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
453
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwCustomSelect, selector: "spw-custom-select", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", isSearch: "isSearch", label: "label", multiple: "multiple", name: "name", options: "options", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", size: "size", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
454
+ };
455
+ SpwCustomSelect = __decorate([
456
+ ProxyCmp({
457
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'label', 'multiple', 'name', 'options', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'value']
458
+ })
459
+ ], SpwCustomSelect);
460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwCustomSelect, decorators: [{
461
+ type: Component,
462
+ args: [{
463
+ selector: 'spw-custom-select',
464
+ changeDetection: ChangeDetectionStrategy.OnPush,
465
+ template: '<ng-content></ng-content>',
466
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
467
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'label', 'multiple', 'name', 'options', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'value'],
468
+ }]
469
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
470
+ let SpwFieldLabel = class SpwFieldLabel {
471
+ constructor(c, r, z) {
472
+ this.z = z;
473
+ c.detach();
474
+ this.el = r.nativeElement;
475
+ }
476
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
477
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFieldLabel, selector: "spw-field-label", inputs: { label: "label", name: "name", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
478
+ };
479
+ SpwFieldLabel = __decorate([
480
+ ProxyCmp({
481
+ inputs: ['label', 'name', 'required']
482
+ })
483
+ ], SpwFieldLabel);
484
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFieldLabel, decorators: [{
485
+ type: Component,
486
+ args: [{
487
+ selector: 'spw-field-label',
488
+ changeDetection: ChangeDetectionStrategy.OnPush,
489
+ template: '<ng-content></ng-content>',
490
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
491
+ inputs: ['label', 'name', 'required'],
492
+ }]
493
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
494
+ let SpwFieldMessage = class SpwFieldMessage {
495
+ constructor(c, r, z) {
496
+ this.z = z;
497
+ c.detach();
498
+ this.el = r.nativeElement;
499
+ }
500
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFieldMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
501
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFieldMessage, selector: "spw-field-message", inputs: { showIcon: "showIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
502
+ };
503
+ SpwFieldMessage = __decorate([
504
+ ProxyCmp({
505
+ inputs: ['showIcon', 'variant']
506
+ })
507
+ ], SpwFieldMessage);
508
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFieldMessage, decorators: [{
509
+ type: Component,
510
+ args: [{
511
+ selector: 'spw-field-message',
512
+ changeDetection: ChangeDetectionStrategy.OnPush,
513
+ template: '<ng-content></ng-content>',
514
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
515
+ inputs: ['showIcon', 'variant'],
516
+ }]
517
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
518
+ let SpwFileUpload = class SpwFileUpload {
519
+ constructor(c, r, z) {
520
+ this.z = z;
521
+ c.detach();
522
+ this.el = r.nativeElement;
523
+ proxyOutputs(this, this.el, ['spwFileChange']);
524
+ }
525
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
526
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFileUpload, selector: "spw-file-upload", inputs: { accept: "accept", disabled: "disabled", enableDropZone: "enableDropZone", error: "error", maxFileSize: "maxFileSize", maxFiles: "maxFiles", multiple: "multiple", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
527
+ };
528
+ SpwFileUpload = __decorate([
529
+ ProxyCmp({
530
+ inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFiles', 'multiple', 'name', 'value'],
531
+ methods: ['resetInput']
532
+ })
533
+ ], SpwFileUpload);
534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFileUpload, decorators: [{
535
+ type: Component,
536
+ args: [{
537
+ selector: 'spw-file-upload',
538
+ changeDetection: ChangeDetectionStrategy.OnPush,
539
+ template: '<ng-content></ng-content>',
540
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
541
+ inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFiles', 'multiple', 'name', 'value'],
542
+ }]
543
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
544
+ let SpwFooter = class SpwFooter {
545
+ constructor(c, r, z) {
546
+ this.z = z;
547
+ c.detach();
548
+ this.el = r.nativeElement;
549
+ }
550
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
551
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFooter, selector: "spw-footer", inputs: { colsDesktop: "colsDesktop", colsMobile: "colsMobile", colsTablet: "colsTablet" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
552
+ };
553
+ SpwFooter = __decorate([
554
+ ProxyCmp({
555
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet']
556
+ })
557
+ ], SpwFooter);
558
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooter, decorators: [{
559
+ type: Component,
560
+ args: [{
561
+ selector: 'spw-footer',
562
+ changeDetection: ChangeDetectionStrategy.OnPush,
563
+ template: '<ng-content></ng-content>',
564
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
565
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet'],
566
+ }]
567
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
568
+ let SpwFooterBottom = class SpwFooterBottom {
569
+ constructor(c, r, z) {
570
+ this.z = z;
571
+ c.detach();
572
+ this.el = r.nativeElement;
573
+ }
574
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterBottom, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
575
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFooterBottom, selector: "spw-footer-bottom", inputs: { siteTitle: "siteTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
576
+ };
577
+ SpwFooterBottom = __decorate([
578
+ ProxyCmp({
579
+ inputs: ['siteTitle']
580
+ })
581
+ ], SpwFooterBottom);
582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterBottom, decorators: [{
583
+ type: Component,
584
+ args: [{
585
+ selector: 'spw-footer-bottom',
586
+ changeDetection: ChangeDetectionStrategy.OnPush,
587
+ template: '<ng-content></ng-content>',
588
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
589
+ inputs: ['siteTitle'],
590
+ }]
591
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
592
+ let SpwFooterContent = class SpwFooterContent {
593
+ constructor(c, r, z) {
594
+ this.z = z;
595
+ c.detach();
596
+ this.el = r.nativeElement;
597
+ }
598
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
599
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFooterContent, selector: "spw-footer-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
600
+ };
601
+ SpwFooterContent = __decorate([
602
+ ProxyCmp({})
603
+ ], SpwFooterContent);
604
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterContent, decorators: [{
605
+ type: Component,
606
+ args: [{
607
+ selector: 'spw-footer-content',
608
+ changeDetection: ChangeDetectionStrategy.OnPush,
609
+ template: '<ng-content></ng-content>',
610
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
611
+ inputs: [],
612
+ }]
613
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
614
+ let SpwFooterContentCol = class SpwFooterContentCol {
615
+ constructor(c, r, z) {
616
+ this.z = z;
617
+ c.detach();
618
+ this.el = r.nativeElement;
619
+ }
620
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterContentCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
621
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFooterContentCol, selector: "spw-footer-content-col", inputs: { colTitle: "colTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
622
+ };
623
+ SpwFooterContentCol = __decorate([
624
+ ProxyCmp({
625
+ inputs: ['colTitle']
626
+ })
627
+ ], SpwFooterContentCol);
628
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterContentCol, decorators: [{
629
+ type: Component,
630
+ args: [{
631
+ selector: 'spw-footer-content-col',
632
+ changeDetection: ChangeDetectionStrategy.OnPush,
633
+ template: '<ng-content></ng-content>',
634
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
635
+ inputs: ['colTitle'],
636
+ }]
637
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
638
+ let SpwFooterLink = class SpwFooterLink {
639
+ constructor(c, r, z) {
640
+ this.z = z;
641
+ c.detach();
642
+ this.el = r.nativeElement;
643
+ }
644
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
645
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFooterLink, selector: "spw-footer-link", inputs: { href: "href", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
646
+ };
647
+ SpwFooterLink = __decorate([
648
+ ProxyCmp({
649
+ inputs: ['href', 'target']
650
+ })
651
+ ], SpwFooterLink);
652
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterLink, decorators: [{
653
+ type: Component,
654
+ args: [{
655
+ selector: 'spw-footer-link',
656
+ changeDetection: ChangeDetectionStrategy.OnPush,
657
+ template: '<ng-content></ng-content>',
658
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
659
+ inputs: ['href', 'target'],
660
+ }]
661
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
662
+ let SpwFooterSocials = class SpwFooterSocials {
663
+ constructor(c, r, z) {
664
+ this.z = z;
665
+ c.detach();
666
+ this.el = r.nativeElement;
667
+ }
668
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterSocials, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
669
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwFooterSocials, selector: "spw-footer-socials", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
670
+ };
671
+ SpwFooterSocials = __decorate([
672
+ ProxyCmp({})
673
+ ], SpwFooterSocials);
674
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwFooterSocials, decorators: [{
675
+ type: Component,
676
+ args: [{
677
+ selector: 'spw-footer-socials',
678
+ changeDetection: ChangeDetectionStrategy.OnPush,
679
+ template: '<ng-content></ng-content>',
680
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
681
+ inputs: [],
682
+ }]
683
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
684
+ let SpwGroup = class SpwGroup {
685
+ constructor(c, r, z) {
686
+ this.z = z;
687
+ c.detach();
688
+ this.el = r.nativeElement;
689
+ }
690
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
691
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwGroup, selector: "spw-group", inputs: { alignment: "alignment", disabled: "disabled", label: "label", name: "name", orientation: "orientation", required: "required", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
692
+ };
693
+ SpwGroup = __decorate([
694
+ ProxyCmp({
695
+ inputs: ['alignment', 'disabled', 'label', 'name', 'orientation', 'required', 'type']
696
+ })
697
+ ], SpwGroup);
698
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwGroup, decorators: [{
699
+ type: Component,
700
+ args: [{
701
+ selector: 'spw-group',
702
+ changeDetection: ChangeDetectionStrategy.OnPush,
703
+ template: '<ng-content></ng-content>',
704
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
705
+ inputs: ['alignment', 'disabled', 'label', 'name', 'orientation', 'required', 'type'],
706
+ }]
707
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
708
+ let SpwHeader = class SpwHeader {
709
+ constructor(c, r, z) {
710
+ this.z = z;
711
+ c.detach();
712
+ this.el = r.nativeElement;
713
+ }
714
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
715
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeader, selector: "spw-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
716
+ };
717
+ SpwHeader = __decorate([
718
+ ProxyCmp({})
719
+ ], SpwHeader);
720
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeader, decorators: [{
721
+ type: Component,
722
+ args: [{
723
+ selector: 'spw-header',
724
+ changeDetection: ChangeDetectionStrategy.OnPush,
725
+ template: '<ng-content></ng-content>',
726
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
727
+ inputs: [],
728
+ }]
729
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
730
+ let SpwHeaderLang = class SpwHeaderLang {
731
+ constructor(c, r, z) {
732
+ this.z = z;
733
+ c.detach();
734
+ this.el = r.nativeElement;
735
+ }
736
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderLang, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
737
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeaderLang, selector: "spw-header-lang", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
738
+ };
739
+ SpwHeaderLang = __decorate([
740
+ ProxyCmp({})
741
+ ], SpwHeaderLang);
742
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderLang, decorators: [{
743
+ type: Component,
744
+ args: [{
745
+ selector: 'spw-header-lang',
746
+ changeDetection: ChangeDetectionStrategy.OnPush,
747
+ template: '<ng-content></ng-content>',
748
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
749
+ inputs: [],
750
+ }]
751
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
752
+ let SpwHeaderLangItem = class SpwHeaderLangItem {
753
+ constructor(c, r, z) {
754
+ this.z = z;
755
+ c.detach();
756
+ this.el = r.nativeElement;
757
+ }
758
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderLangItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
759
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeaderLangItem, selector: "spw-header-lang-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
760
+ };
761
+ SpwHeaderLangItem = __decorate([
762
+ ProxyCmp({
763
+ inputs: ['active']
764
+ })
765
+ ], SpwHeaderLangItem);
766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderLangItem, decorators: [{
767
+ type: Component,
768
+ args: [{
769
+ selector: 'spw-header-lang-item',
770
+ changeDetection: ChangeDetectionStrategy.OnPush,
771
+ template: '<ng-content></ng-content>',
772
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
773
+ inputs: ['active'],
774
+ }]
775
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
776
+ let SpwHeaderNavigation = class SpwHeaderNavigation {
777
+ constructor(c, r, z) {
778
+ this.z = z;
779
+ c.detach();
780
+ this.el = r.nativeElement;
781
+ }
782
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
783
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeaderNavigation, selector: "spw-header-navigation", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
784
+ };
785
+ SpwHeaderNavigation = __decorate([
786
+ ProxyCmp({})
787
+ ], SpwHeaderNavigation);
788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderNavigation, decorators: [{
789
+ type: Component,
790
+ args: [{
791
+ selector: 'spw-header-navigation',
792
+ changeDetection: ChangeDetectionStrategy.OnPush,
793
+ template: '<ng-content></ng-content>',
794
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
795
+ inputs: [],
796
+ }]
797
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
798
+ let SpwHeaderNavigationDropdown = class SpwHeaderNavigationDropdown {
799
+ constructor(c, r, z) {
800
+ this.z = z;
801
+ c.detach();
802
+ this.el = r.nativeElement;
803
+ }
804
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderNavigationDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
805
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeaderNavigationDropdown, selector: "spw-header-navigation-dropdown", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
806
+ };
807
+ SpwHeaderNavigationDropdown = __decorate([
808
+ ProxyCmp({})
809
+ ], SpwHeaderNavigationDropdown);
810
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderNavigationDropdown, decorators: [{
811
+ type: Component,
812
+ args: [{
813
+ selector: 'spw-header-navigation-dropdown',
814
+ changeDetection: ChangeDetectionStrategy.OnPush,
815
+ template: '<ng-content></ng-content>',
816
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
817
+ inputs: [],
818
+ }]
819
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
820
+ let SpwHeaderNavigationItem = class SpwHeaderNavigationItem {
821
+ constructor(c, r, z) {
822
+ this.z = z;
823
+ c.detach();
824
+ this.el = r.nativeElement;
825
+ proxyOutputs(this, this.el, ['spwHeaderNavigationNavigate']);
826
+ }
827
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
828
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeaderNavigationItem, selector: "spw-header-navigation-item", inputs: { isActive: "isActive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
829
+ };
830
+ SpwHeaderNavigationItem = __decorate([
831
+ ProxyCmp({
832
+ inputs: ['isActive']
833
+ })
834
+ ], SpwHeaderNavigationItem);
835
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderNavigationItem, decorators: [{
836
+ type: Component,
837
+ args: [{
838
+ selector: 'spw-header-navigation-item',
839
+ changeDetection: ChangeDetectionStrategy.OnPush,
840
+ template: '<ng-content></ng-content>',
841
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
842
+ inputs: ['isActive'],
843
+ }]
844
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
845
+ let SpwHeaderPersona = class SpwHeaderPersona {
846
+ constructor(c, r, z) {
847
+ this.z = z;
848
+ c.detach();
849
+ this.el = r.nativeElement;
850
+ }
851
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderPersona, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
852
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeaderPersona, selector: "spw-header-persona", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
853
+ };
854
+ SpwHeaderPersona = __decorate([
855
+ ProxyCmp({})
856
+ ], SpwHeaderPersona);
857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderPersona, decorators: [{
858
+ type: Component,
859
+ args: [{
860
+ selector: 'spw-header-persona',
861
+ changeDetection: ChangeDetectionStrategy.OnPush,
862
+ template: '<ng-content></ng-content>',
863
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
864
+ inputs: [],
865
+ }]
866
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
867
+ let SpwHeaderPersonaItem = class SpwHeaderPersonaItem {
868
+ constructor(c, r, z) {
869
+ this.z = z;
870
+ c.detach();
871
+ this.el = r.nativeElement;
872
+ }
873
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderPersonaItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
874
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwHeaderPersonaItem, selector: "spw-header-persona-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
875
+ };
876
+ SpwHeaderPersonaItem = __decorate([
877
+ ProxyCmp({
878
+ inputs: ['active']
879
+ })
880
+ ], SpwHeaderPersonaItem);
881
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwHeaderPersonaItem, decorators: [{
882
+ type: Component,
883
+ args: [{
884
+ selector: 'spw-header-persona-item',
885
+ changeDetection: ChangeDetectionStrategy.OnPush,
886
+ template: '<ng-content></ng-content>',
887
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
888
+ inputs: ['active'],
889
+ }]
890
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
891
+ let SpwIcon = class SpwIcon {
892
+ constructor(c, r, z) {
893
+ this.z = z;
894
+ c.detach();
895
+ this.el = r.nativeElement;
896
+ }
897
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
898
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwIcon, selector: "spw-icon", inputs: { icon: "icon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
899
+ };
900
+ SpwIcon = __decorate([
901
+ ProxyCmp({
902
+ inputs: ['icon', 'variant']
903
+ })
904
+ ], SpwIcon);
905
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwIcon, decorators: [{
906
+ type: Component,
907
+ args: [{
908
+ selector: 'spw-icon',
909
+ changeDetection: ChangeDetectionStrategy.OnPush,
910
+ template: '<ng-content></ng-content>',
911
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
912
+ inputs: ['icon', 'variant'],
913
+ }]
914
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
915
+ let SpwIodda = class SpwIodda {
916
+ constructor(c, r, z) {
917
+ this.z = z;
918
+ c.detach();
919
+ this.el = r.nativeElement;
920
+ }
921
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwIodda, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
922
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwIodda, selector: "spw-iodda", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
923
+ };
924
+ SpwIodda = __decorate([
925
+ ProxyCmp({})
926
+ ], SpwIodda);
927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwIodda, decorators: [{
928
+ type: Component,
929
+ args: [{
930
+ selector: 'spw-iodda',
931
+ changeDetection: ChangeDetectionStrategy.OnPush,
932
+ template: '<ng-content></ng-content>',
933
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
934
+ inputs: [],
935
+ }]
936
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
937
+ let SpwLink = class SpwLink {
938
+ constructor(c, r, z) {
939
+ this.z = z;
940
+ c.detach();
941
+ this.el = r.nativeElement;
942
+ proxyOutputs(this, this.el, ['spwClick']);
943
+ }
944
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
945
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwLink, selector: "spw-link", inputs: { accAriaLabel: "accAriaLabel", disabled: "disabled", href: "href", icon: "icon", iconPosition: "iconPosition", rel: "rel", surface: "surface", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
946
+ };
947
+ SpwLink = __decorate([
948
+ ProxyCmp({
949
+ inputs: ['accAriaLabel', 'disabled', 'href', 'icon', 'iconPosition', 'rel', 'surface', 'target']
950
+ })
951
+ ], SpwLink);
952
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwLink, decorators: [{
953
+ type: Component,
954
+ args: [{
955
+ selector: 'spw-link',
956
+ changeDetection: ChangeDetectionStrategy.OnPush,
957
+ template: '<ng-content></ng-content>',
958
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
959
+ inputs: ['accAriaLabel', 'disabled', 'href', 'icon', 'iconPosition', 'rel', 'surface', 'target'],
960
+ }]
961
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
962
+ let SpwLoading = class SpwLoading {
963
+ constructor(c, r, z) {
964
+ this.z = z;
965
+ c.detach();
966
+ this.el = r.nativeElement;
967
+ }
968
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
969
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwLoading, selector: "spw-loading", inputs: { text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
970
+ };
971
+ SpwLoading = __decorate([
972
+ ProxyCmp({
973
+ inputs: ['text']
974
+ })
975
+ ], SpwLoading);
976
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwLoading, decorators: [{
977
+ type: Component,
978
+ args: [{
979
+ selector: 'spw-loading',
980
+ changeDetection: ChangeDetectionStrategy.OnPush,
981
+ template: '<ng-content></ng-content>',
982
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
983
+ inputs: ['text'],
984
+ }]
985
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
986
+ let SpwMessage = class SpwMessage {
987
+ constructor(c, r, z) {
988
+ this.z = z;
989
+ c.detach();
990
+ this.el = r.nativeElement;
991
+ }
992
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
993
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwMessage, selector: "spw-message", inputs: { dismissableText: "dismissableText", isDismissable: "isDismissable", messageId: "messageId", messageTitle: "messageTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
994
+ };
995
+ SpwMessage = __decorate([
996
+ ProxyCmp({
997
+ inputs: ['dismissableText', 'isDismissable', 'messageId', 'messageTitle', 'variant']
998
+ })
999
+ ], SpwMessage);
1000
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwMessage, decorators: [{
1001
+ type: Component,
1002
+ args: [{
1003
+ selector: 'spw-message',
1004
+ changeDetection: ChangeDetectionStrategy.OnPush,
1005
+ template: '<ng-content></ng-content>',
1006
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1007
+ inputs: ['dismissableText', 'isDismissable', 'messageId', 'messageTitle', 'variant'],
1008
+ }]
1009
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1010
+ let SpwModal = class SpwModal {
1011
+ constructor(c, r, z) {
1012
+ this.z = z;
1013
+ c.detach();
1014
+ this.el = r.nativeElement;
1015
+ proxyOutputs(this, this.el, ['spwModalOpen', 'spwModalClose']);
1016
+ }
1017
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1018
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwModal, selector: "spw-modal", inputs: { alertIcon: "alertIcon", cancelButtonLabel: "cancelButtonLabel", caption: "caption", closeOnOverlayClick: "closeOnOverlayClick", okButtonLabel: "okButtonLabel", opened: "opened", showCloseButton: "showCloseButton", size: "size", stickyButtons: "stickyButtons" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1019
+ };
1020
+ SpwModal = __decorate([
1021
+ ProxyCmp({
1022
+ inputs: ['alertIcon', 'cancelButtonLabel', 'caption', 'closeOnOverlayClick', 'okButtonLabel', 'opened', 'showCloseButton', 'size', 'stickyButtons']
1023
+ })
1024
+ ], SpwModal);
1025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwModal, decorators: [{
1026
+ type: Component,
1027
+ args: [{
1028
+ selector: 'spw-modal',
1029
+ changeDetection: ChangeDetectionStrategy.OnPush,
1030
+ template: '<ng-content></ng-content>',
1031
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1032
+ inputs: ['alertIcon', 'cancelButtonLabel', 'caption', 'closeOnOverlayClick', 'okButtonLabel', 'opened', 'showCloseButton', 'size', 'stickyButtons'],
1033
+ }]
1034
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1035
+ let SpwMosaic = class SpwMosaic {
1036
+ constructor(c, r, z) {
1037
+ this.z = z;
1038
+ c.detach();
1039
+ this.el = r.nativeElement;
1040
+ }
1041
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwMosaic, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1042
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwMosaic, selector: "spw-mosaic", inputs: { colsDesktop: "colsDesktop", colsMobile: "colsMobile", colsTablet: "colsTablet", isMasonry: "isMasonry", items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1043
+ };
1044
+ SpwMosaic = __decorate([
1045
+ ProxyCmp({
1046
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet', 'isMasonry', 'items'],
1047
+ methods: ['waitForImages', 'initializeMasonry']
1048
+ })
1049
+ ], SpwMosaic);
1050
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwMosaic, decorators: [{
1051
+ type: Component,
1052
+ args: [{
1053
+ selector: 'spw-mosaic',
1054
+ changeDetection: ChangeDetectionStrategy.OnPush,
1055
+ template: '<ng-content></ng-content>',
1056
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1057
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet', 'isMasonry', 'items'],
1058
+ }]
1059
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1060
+ let SpwMosaicItem = class SpwMosaicItem {
1061
+ constructor(c, r, z) {
1062
+ this.z = z;
1063
+ c.detach();
1064
+ this.el = r.nativeElement;
1065
+ }
1066
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwMosaicItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1067
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwMosaicItem, selector: "spw-mosaic-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1068
+ };
1069
+ SpwMosaicItem = __decorate([
1070
+ ProxyCmp({})
1071
+ ], SpwMosaicItem);
1072
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwMosaicItem, decorators: [{
1073
+ type: Component,
1074
+ args: [{
1075
+ selector: 'spw-mosaic-item',
1076
+ changeDetection: ChangeDetectionStrategy.OnPush,
1077
+ template: '<ng-content></ng-content>',
1078
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1079
+ inputs: [],
1080
+ }]
1081
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1082
+ let SpwPagination = class SpwPagination {
1083
+ constructor(c, r, z) {
1084
+ this.z = z;
1085
+ c.detach();
1086
+ this.el = r.nativeElement;
1087
+ proxyOutputs(this, this.el, ['pageChanged']);
1088
+ }
1089
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1090
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwPagination, selector: "spw-pagination", inputs: { currentPage: "currentPage", isDisabled: "isDisabled", itemsPerPage: "itemsPerPage", totalItems: "totalItems", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1091
+ };
1092
+ SpwPagination = __decorate([
1093
+ ProxyCmp({
1094
+ inputs: ['currentPage', 'isDisabled', 'itemsPerPage', 'totalItems', 'variant']
1095
+ })
1096
+ ], SpwPagination);
1097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwPagination, decorators: [{
1098
+ type: Component,
1099
+ args: [{
1100
+ selector: 'spw-pagination',
1101
+ changeDetection: ChangeDetectionStrategy.OnPush,
1102
+ template: '<ng-content></ng-content>',
1103
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1104
+ inputs: ['currentPage', 'isDisabled', 'itemsPerPage', 'totalItems', 'variant'],
1105
+ }]
1106
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1107
+ let SpwRadio = class SpwRadio {
1108
+ constructor(c, r, z) {
1109
+ this.z = z;
1110
+ c.detach();
1111
+ this.el = r.nativeElement;
1112
+ proxyOutputs(this, this.el, ['spwChange']);
1113
+ }
1114
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1115
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwRadio, selector: "spw-radio", inputs: { checked: "checked", disabled: "disabled", error: "error", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1116
+ };
1117
+ SpwRadio = __decorate([
1118
+ ProxyCmp({
1119
+ inputs: ['checked', 'disabled', 'error', 'name', 'value'],
1120
+ methods: ['setChecked']
1121
+ })
1122
+ ], SpwRadio);
1123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwRadio, decorators: [{
1124
+ type: Component,
1125
+ args: [{
1126
+ selector: 'spw-radio',
1127
+ changeDetection: ChangeDetectionStrategy.OnPush,
1128
+ template: '<ng-content></ng-content>',
1129
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1130
+ inputs: ['checked', 'disabled', 'error', 'name', 'value'],
1131
+ }]
1132
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1133
+ let SpwSearchField = class SpwSearchField {
1134
+ constructor(c, r, z) {
1135
+ this.z = z;
1136
+ c.detach();
1137
+ this.el = r.nativeElement;
1138
+ }
1139
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1140
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwSearchField, selector: "spw-search-field", inputs: { assistiveText: "assistiveText", disabled: "disabled", items: "items", label: "label", name: "name", placeholder: "placeholder", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1141
+ };
1142
+ SpwSearchField = __decorate([
1143
+ ProxyCmp({
1144
+ inputs: ['assistiveText', 'disabled', 'items', 'label', 'name', 'placeholder', 'required']
1145
+ })
1146
+ ], SpwSearchField);
1147
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwSearchField, decorators: [{
1148
+ type: Component,
1149
+ args: [{
1150
+ selector: 'spw-search-field',
1151
+ changeDetection: ChangeDetectionStrategy.OnPush,
1152
+ template: '<ng-content></ng-content>',
1153
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1154
+ inputs: ['assistiveText', 'disabled', 'items', 'label', 'name', 'placeholder', 'required'],
1155
+ }]
1156
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1157
+ let SpwSelect = class SpwSelect {
1158
+ constructor(c, r, z) {
1159
+ this.z = z;
1160
+ c.detach();
1161
+ this.el = r.nativeElement;
1162
+ proxyOutputs(this, this.el, ['valueChanged']);
1163
+ }
1164
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1165
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwSelect, selector: "spw-select", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", label: "label", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", size: "size", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1166
+ };
1167
+ SpwSelect = __decorate([
1168
+ ProxyCmp({
1169
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'value']
1170
+ })
1171
+ ], SpwSelect);
1172
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwSelect, decorators: [{
1173
+ type: Component,
1174
+ args: [{
1175
+ selector: 'spw-select',
1176
+ changeDetection: ChangeDetectionStrategy.OnPush,
1177
+ template: '<ng-content></ng-content>',
1178
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1179
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'value'],
1180
+ }]
1181
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1182
+ let SpwSeparator = class SpwSeparator {
1183
+ constructor(c, r, z) {
1184
+ this.z = z;
1185
+ c.detach();
1186
+ this.el = r.nativeElement;
1187
+ }
1188
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1189
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwSeparator, selector: "spw-separator", inputs: { direction: "direction", height: "height", surface: "surface", thickness: "thickness", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1190
+ };
1191
+ SpwSeparator = __decorate([
1192
+ ProxyCmp({
1193
+ inputs: ['direction', 'height', 'surface', 'thickness', 'width']
1194
+ })
1195
+ ], SpwSeparator);
1196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwSeparator, decorators: [{
1197
+ type: Component,
1198
+ args: [{
1199
+ selector: 'spw-separator',
1200
+ changeDetection: ChangeDetectionStrategy.OnPush,
1201
+ template: '<ng-content></ng-content>',
1202
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1203
+ inputs: ['direction', 'height', 'surface', 'thickness', 'width'],
1204
+ }]
1205
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1206
+ let SpwTable = class SpwTable {
1207
+ constructor(c, r, z) {
1208
+ this.z = z;
1209
+ c.detach();
1210
+ this.el = r.nativeElement;
1211
+ }
1212
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1213
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTable, selector: "spw-table", inputs: { accAriaLabel: "accAriaLabel", isSticky: "isSticky", maxHeight: "maxHeight", minWidth: "minWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1214
+ };
1215
+ SpwTable = __decorate([
1216
+ ProxyCmp({
1217
+ inputs: ['accAriaLabel', 'isSticky', 'maxHeight', 'minWidth']
1218
+ })
1219
+ ], SpwTable);
1220
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTable, decorators: [{
1221
+ type: Component,
1222
+ args: [{
1223
+ selector: 'spw-table',
1224
+ changeDetection: ChangeDetectionStrategy.OnPush,
1225
+ template: '<ng-content></ng-content>',
1226
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1227
+ inputs: ['accAriaLabel', 'isSticky', 'maxHeight', 'minWidth'],
1228
+ }]
1229
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1230
+ let SpwTableBody = class SpwTableBody {
1231
+ constructor(c, r, z) {
1232
+ this.z = z;
1233
+ c.detach();
1234
+ this.el = r.nativeElement;
1235
+ }
1236
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1237
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTableBody, selector: "spw-table-body", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1238
+ };
1239
+ SpwTableBody = __decorate([
1240
+ ProxyCmp({})
1241
+ ], SpwTableBody);
1242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableBody, decorators: [{
1243
+ type: Component,
1244
+ args: [{
1245
+ selector: 'spw-table-body',
1246
+ changeDetection: ChangeDetectionStrategy.OnPush,
1247
+ template: '<ng-content></ng-content>',
1248
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1249
+ inputs: [],
1250
+ }]
1251
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1252
+ let SpwTableCell = class SpwTableCell {
1253
+ constructor(c, r, z) {
1254
+ this.z = z;
1255
+ c.detach();
1256
+ this.el = r.nativeElement;
1257
+ }
1258
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1259
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTableCell, selector: "spw-table-cell", inputs: { colspan: "colspan", headers: "headers", isHighlighted: "isHighlighted", rowspan: "rowspan", textAlign: "textAlign", verticalAlign: "verticalAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1260
+ };
1261
+ SpwTableCell = __decorate([
1262
+ ProxyCmp({
1263
+ inputs: ['colspan', 'headers', 'isHighlighted', 'rowspan', 'textAlign', 'verticalAlign']
1264
+ })
1265
+ ], SpwTableCell);
1266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableCell, decorators: [{
1267
+ type: Component,
1268
+ args: [{
1269
+ selector: 'spw-table-cell',
1270
+ changeDetection: ChangeDetectionStrategy.OnPush,
1271
+ template: '<ng-content></ng-content>',
1272
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1273
+ inputs: ['colspan', 'headers', 'isHighlighted', 'rowspan', 'textAlign', 'verticalAlign'],
1274
+ }]
1275
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1276
+ let SpwTableHead = class SpwTableHead {
1277
+ constructor(c, r, z) {
1278
+ this.z = z;
1279
+ c.detach();
1280
+ this.el = r.nativeElement;
1281
+ }
1282
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1283
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTableHead, selector: "spw-table-head", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1284
+ };
1285
+ SpwTableHead = __decorate([
1286
+ ProxyCmp({})
1287
+ ], SpwTableHead);
1288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableHead, decorators: [{
1289
+ type: Component,
1290
+ args: [{
1291
+ selector: 'spw-table-head',
1292
+ changeDetection: ChangeDetectionStrategy.OnPush,
1293
+ template: '<ng-content></ng-content>',
1294
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1295
+ inputs: [],
1296
+ }]
1297
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1298
+ let SpwTableHeader = class SpwTableHeader {
1299
+ constructor(c, r, z) {
1300
+ this.z = z;
1301
+ c.detach();
1302
+ this.el = r.nativeElement;
1303
+ }
1304
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1305
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTableHeader, selector: "spw-table-header", inputs: { colspan: "colspan", headers: "headers", isHighlighted: "isHighlighted", rowspan: "rowspan", textAlign: "textAlign", verticalAlign: "verticalAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1306
+ };
1307
+ SpwTableHeader = __decorate([
1308
+ ProxyCmp({
1309
+ inputs: ['colspan', 'headers', 'isHighlighted', 'rowspan', 'textAlign', 'verticalAlign']
1310
+ })
1311
+ ], SpwTableHeader);
1312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableHeader, decorators: [{
1313
+ type: Component,
1314
+ args: [{
1315
+ selector: 'spw-table-header',
1316
+ changeDetection: ChangeDetectionStrategy.OnPush,
1317
+ template: '<ng-content></ng-content>',
1318
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1319
+ inputs: ['colspan', 'headers', 'isHighlighted', 'rowspan', 'textAlign', 'verticalAlign'],
1320
+ }]
1321
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1322
+ let SpwTableRow = class SpwTableRow {
1323
+ constructor(c, r, z) {
1324
+ this.z = z;
1325
+ c.detach();
1326
+ this.el = r.nativeElement;
1327
+ }
1328
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1329
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTableRow, selector: "spw-table-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1330
+ };
1331
+ SpwTableRow = __decorate([
1332
+ ProxyCmp({})
1333
+ ], SpwTableRow);
1334
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTableRow, decorators: [{
1335
+ type: Component,
1336
+ args: [{
1337
+ selector: 'spw-table-row',
1338
+ changeDetection: ChangeDetectionStrategy.OnPush,
1339
+ template: '<ng-content></ng-content>',
1340
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1341
+ inputs: [],
1342
+ }]
1343
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1344
+ let SpwTextField = class SpwTextField {
1345
+ constructor(c, r, z) {
1346
+ this.z = z;
1347
+ c.detach();
1348
+ this.el = r.nativeElement;
1349
+ proxyOutputs(this, this.el, ['valueChanged']);
1350
+ }
1351
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1352
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTextField, selector: "spw-text-field", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", indicator: "indicator", isClear: "isClear", isSearch: "isSearch", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", size: "size", success: "success", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1353
+ };
1354
+ SpwTextField = __decorate([
1355
+ ProxyCmp({
1356
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'type', 'value']
1357
+ })
1358
+ ], SpwTextField);
1359
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTextField, decorators: [{
1360
+ type: Component,
1361
+ args: [{
1362
+ selector: 'spw-text-field',
1363
+ changeDetection: ChangeDetectionStrategy.OnPush,
1364
+ template: '<ng-content></ng-content>',
1365
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1366
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'type', 'value'],
1367
+ }]
1368
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1369
+ let SpwTextarea = class SpwTextarea {
1370
+ constructor(c, r, z) {
1371
+ this.z = z;
1372
+ c.detach();
1373
+ this.el = r.nativeElement;
1374
+ proxyOutputs(this, this.el, ['valueChanged']);
1375
+ }
1376
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1377
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTextarea, selector: "spw-textarea", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", indicator: "indicator", isSearch: "isSearch", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", rows: "rows", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", size: "size", success: "success", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1378
+ };
1379
+ SpwTextarea = __decorate([
1380
+ ProxyCmp({
1381
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'value']
1382
+ })
1383
+ ], SpwTextarea);
1384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTextarea, decorators: [{
1385
+ type: Component,
1386
+ args: [{
1387
+ selector: 'spw-textarea',
1388
+ changeDetection: ChangeDetectionStrategy.OnPush,
1389
+ template: '<ng-content></ng-content>',
1390
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1391
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'size', 'success', 'value'],
1392
+ }]
1393
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1394
+ let SpwThemeProvider = class SpwThemeProvider {
1395
+ constructor(c, r, z) {
1396
+ this.z = z;
1397
+ c.detach();
1398
+ this.el = r.nativeElement;
1399
+ }
1400
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1401
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwThemeProvider, selector: "spw-theme-provider", inputs: { theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1402
+ };
1403
+ SpwThemeProvider = __decorate([
1404
+ ProxyCmp({
1405
+ inputs: ['theme']
1406
+ })
1407
+ ], SpwThemeProvider);
1408
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwThemeProvider, decorators: [{
1409
+ type: Component,
1410
+ args: [{
1411
+ selector: 'spw-theme-provider',
1412
+ changeDetection: ChangeDetectionStrategy.OnPush,
1413
+ template: '<ng-content></ng-content>',
1414
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1415
+ inputs: ['theme'],
1416
+ }]
1417
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1418
+ let SpwTooltip = class SpwTooltip {
1419
+ constructor(c, r, z) {
1420
+ this.z = z;
1421
+ c.detach();
1422
+ this.el = r.nativeElement;
1423
+ }
1424
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1425
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: SpwTooltip, selector: "spw-tooltip", inputs: { direction: "direction", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1426
+ };
1427
+ SpwTooltip = __decorate([
1428
+ ProxyCmp({
1429
+ inputs: ['direction', 'tooltipText', 'tooltipTitle']
1430
+ })
1431
+ ], SpwTooltip);
1432
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwTooltip, decorators: [{
1433
+ type: Component,
1434
+ args: [{
1435
+ selector: 'spw-tooltip',
1436
+ changeDetection: ChangeDetectionStrategy.OnPush,
1437
+ template: '<ng-content></ng-content>',
1438
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1439
+ inputs: ['direction', 'tooltipText', 'tooltipTitle'],
1440
+ }]
1441
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1442
+
1443
+ const DIRECTIVES = [
1444
+ SpwAccordion,
1445
+ SpwAccordionContent,
1446
+ SpwAccordionItem,
1447
+ SpwAccordionTitle,
1448
+ SpwBreadcrumb,
1449
+ SpwBreadcrumbItem,
1450
+ SpwButton,
1451
+ SpwCard,
1452
+ SpwCardContent,
1453
+ SpwCardExcerpt,
1454
+ SpwCardImage,
1455
+ SpwCardSubtagItem,
1456
+ SpwCardSubtags,
1457
+ SpwCardTitle,
1458
+ SpwCheckbox,
1459
+ SpwCookies,
1460
+ SpwCustomSelect,
1461
+ SpwFieldLabel,
1462
+ SpwFieldMessage,
1463
+ SpwFileUpload,
1464
+ SpwFooter,
1465
+ SpwFooterBottom,
1466
+ SpwFooterContent,
1467
+ SpwFooterContentCol,
1468
+ SpwFooterLink,
1469
+ SpwFooterSocials,
1470
+ SpwGroup,
1471
+ SpwHeader,
1472
+ SpwHeaderLang,
1473
+ SpwHeaderLangItem,
1474
+ SpwHeaderNavigation,
1475
+ SpwHeaderNavigationDropdown,
1476
+ SpwHeaderNavigationItem,
1477
+ SpwHeaderPersona,
1478
+ SpwHeaderPersonaItem,
1479
+ SpwIcon,
1480
+ SpwIodda,
1481
+ SpwLink,
1482
+ SpwLoading,
1483
+ SpwMessage,
1484
+ SpwModal,
1485
+ SpwMosaic,
1486
+ SpwMosaicItem,
1487
+ SpwPagination,
1488
+ SpwRadio,
1489
+ SpwSearchField,
1490
+ SpwSelect,
1491
+ SpwSeparator,
1492
+ SpwTable,
1493
+ SpwTableBody,
1494
+ SpwTableCell,
1495
+ SpwTableHead,
1496
+ SpwTableHeader,
1497
+ SpwTableRow,
1498
+ SpwTextField,
1499
+ SpwTextarea,
1500
+ SpwThemeProvider,
1501
+ SpwTooltip
1502
+ ];
1503
+
1504
+ class SpwDesignSystemModule {
1505
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwDesignSystemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1506
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.7", ngImport: i0, type: SpwDesignSystemModule, declarations: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwFooterSocials, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwIcon, SpwIodda, SpwLink, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwTable, SpwTableBody, SpwTableCell, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTooltip], exports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwFooterSocials, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwIcon, SpwIodda, SpwLink, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwTable, SpwTableBody, SpwTableCell, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTooltip] }); }
1507
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwDesignSystemModule, providers: [
1508
+ {
1509
+ provide: APP_INITIALIZER,
1510
+ useFactory: () => defineCustomElements,
1511
+ multi: true,
1512
+ },
1513
+ ] }); }
1514
+ }
1515
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: SpwDesignSystemModule, decorators: [{
1516
+ type: NgModule,
1517
+ args: [{
1518
+ declarations: [...DIRECTIVES],
1519
+ exports: [...DIRECTIVES],
1520
+ providers: [
1521
+ {
1522
+ provide: APP_INITIALIZER,
1523
+ useFactory: () => defineCustomElements,
1524
+ multi: true,
1525
+ },
1526
+ ],
1527
+ }]
1528
+ }] });
1529
+
1530
+ /**
1531
+ * Generated bundle index. Do not edit.
1532
+ */
1533
+
1534
+ export { DIRECTIVES, SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDesignSystemModule, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwFooterSocials, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwIcon, SpwIodda, SpwLink, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwTable, SpwTableBody, SpwTableCell, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTooltip };
1535
+ //# sourceMappingURL=spw-ds-spw-angular-library.mjs.map