@spw-ds/spw-angular-library 1.4.1 → 1.4.2-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2529 @@
1
+ import * as i0 from '@angular/core';
2
+ import { ChangeDetectionStrategy, Component, NgModule, APP_INITIALIZER } 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: "19.2.18", 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: "19.2.18", type: SpwAccordion, isStandalone: true, selector: "spw-accordion", inputs: { background: "background" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
73
+ };
74
+ SpwAccordion = __decorate([
75
+ ProxyCmp({
76
+ inputs: ['background']
77
+ })
78
+ ], SpwAccordion);
79
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwAccordion, decorators: [{
80
+ type: Component,
81
+ args: [{
82
+ selector: 'spw-accordion',
83
+ changeDetection: ChangeDetectionStrategy.OnPush,
84
+ template: '<ng-content></ng-content>',
85
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
86
+ inputs: ['background'],
87
+ }]
88
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
89
+ let SpwAccordionContent = class SpwAccordionContent {
90
+ constructor(c, r, z) {
91
+ this.z = z;
92
+ c.detach();
93
+ this.el = r.nativeElement;
94
+ }
95
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwAccordionContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
96
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwAccordionContent, isStandalone: true, selector: "spw-accordion-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
97
+ };
98
+ SpwAccordionContent = __decorate([
99
+ ProxyCmp({})
100
+ ], SpwAccordionContent);
101
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwAccordionContent, decorators: [{
102
+ type: Component,
103
+ args: [{
104
+ selector: 'spw-accordion-content',
105
+ changeDetection: ChangeDetectionStrategy.OnPush,
106
+ template: '<ng-content></ng-content>',
107
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
108
+ inputs: [],
109
+ }]
110
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
111
+ let SpwAccordionItem = class SpwAccordionItem {
112
+ constructor(c, r, z) {
113
+ this.z = z;
114
+ c.detach();
115
+ this.el = r.nativeElement;
116
+ proxyOutputs(this, this.el, ['accordionToggle']);
117
+ }
118
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
119
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwAccordionItem, isStandalone: true, selector: "spw-accordion-item", inputs: { defaultOpen: "defaultOpen" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
120
+ };
121
+ SpwAccordionItem = __decorate([
122
+ ProxyCmp({
123
+ inputs: ['defaultOpen']
124
+ })
125
+ ], SpwAccordionItem);
126
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwAccordionItem, decorators: [{
127
+ type: Component,
128
+ args: [{
129
+ selector: 'spw-accordion-item',
130
+ changeDetection: ChangeDetectionStrategy.OnPush,
131
+ template: '<ng-content></ng-content>',
132
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
133
+ inputs: ['defaultOpen'],
134
+ }]
135
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
136
+ let SpwAccordionTitle = class SpwAccordionTitle {
137
+ constructor(c, r, z) {
138
+ this.z = z;
139
+ c.detach();
140
+ this.el = r.nativeElement;
141
+ }
142
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwAccordionTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
143
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwAccordionTitle, isStandalone: true, selector: "spw-accordion-title", inputs: { icon: "icon", tag: "tag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
144
+ };
145
+ SpwAccordionTitle = __decorate([
146
+ ProxyCmp({
147
+ inputs: ['icon', 'tag']
148
+ })
149
+ ], SpwAccordionTitle);
150
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwAccordionTitle, decorators: [{
151
+ type: Component,
152
+ args: [{
153
+ selector: 'spw-accordion-title',
154
+ changeDetection: ChangeDetectionStrategy.OnPush,
155
+ template: '<ng-content></ng-content>',
156
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
157
+ inputs: ['icon', 'tag'],
158
+ }]
159
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
160
+ let SpwBreadcrumb = class SpwBreadcrumb {
161
+ constructor(c, r, z) {
162
+ this.z = z;
163
+ c.detach();
164
+ this.el = r.nativeElement;
165
+ }
166
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
167
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwBreadcrumb, isStandalone: true, selector: "spw-breadcrumb", inputs: { accAriaLabel: "accAriaLabel", fontSize: "fontSize", surface: "surface", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
168
+ };
169
+ SpwBreadcrumb = __decorate([
170
+ ProxyCmp({
171
+ inputs: ['accAriaLabel', 'fontSize', 'surface', 'variant']
172
+ })
173
+ ], SpwBreadcrumb);
174
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwBreadcrumb, decorators: [{
175
+ type: Component,
176
+ args: [{
177
+ selector: 'spw-breadcrumb',
178
+ changeDetection: ChangeDetectionStrategy.OnPush,
179
+ template: '<ng-content></ng-content>',
180
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
181
+ inputs: ['accAriaLabel', 'fontSize', 'surface', 'variant'],
182
+ }]
183
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
184
+ let SpwBreadcrumbItem = class SpwBreadcrumbItem {
185
+ constructor(c, r, z) {
186
+ this.z = z;
187
+ c.detach();
188
+ this.el = r.nativeElement;
189
+ }
190
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
191
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwBreadcrumbItem, isStandalone: true, selector: "spw-breadcrumb-item", inputs: { href: "href" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
192
+ };
193
+ SpwBreadcrumbItem = __decorate([
194
+ ProxyCmp({
195
+ inputs: ['href']
196
+ })
197
+ ], SpwBreadcrumbItem);
198
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwBreadcrumbItem, decorators: [{
199
+ type: Component,
200
+ args: [{
201
+ selector: 'spw-breadcrumb-item',
202
+ changeDetection: ChangeDetectionStrategy.OnPush,
203
+ template: '<ng-content></ng-content>',
204
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
205
+ inputs: ['href'],
206
+ }]
207
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
208
+ let SpwButton = class SpwButton {
209
+ constructor(c, r, z) {
210
+ this.z = z;
211
+ c.detach();
212
+ this.el = r.nativeElement;
213
+ proxyOutputs(this, this.el, ['spwFocus', 'spwBlur', 'spwNavigate']);
214
+ }
215
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
216
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwButton, isStandalone: true, selector: "spw-button", inputs: { accAriaLabel: "accAriaLabel", disabled: "disabled", download: "download", hideTextOnMobile: "hideTextOnMobile", href: "href", icon: "icon", iconPosition: "iconPosition", isFullWidth: "isFullWidth", isFullWidthMobile: "isFullWidthMobile", isIconOnly: "isIconOnly", isLoading: "isLoading", 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 }); }
217
+ };
218
+ SpwButton = __decorate([
219
+ ProxyCmp({
220
+ inputs: ['accAriaLabel', 'disabled', 'download', 'hideTextOnMobile', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'isIconOnly', 'isLoading', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant']
221
+ })
222
+ ], SpwButton);
223
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwButton, decorators: [{
224
+ type: Component,
225
+ args: [{
226
+ selector: 'spw-button',
227
+ changeDetection: ChangeDetectionStrategy.OnPush,
228
+ template: '<ng-content></ng-content>',
229
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
230
+ inputs: ['accAriaLabel', 'disabled', 'download', 'hideTextOnMobile', 'href', 'icon', 'iconPosition', 'isFullWidth', 'isFullWidthMobile', 'isIconOnly', 'isLoading', 'name', 'rel', 'size', 'surface', 'target', 'type', 'value', 'variant'],
231
+ }]
232
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
233
+ let SpwCard = class SpwCard {
234
+ constructor(c, r, z) {
235
+ this.z = z;
236
+ c.detach();
237
+ this.el = r.nativeElement;
238
+ }
239
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
240
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCard, isStandalone: true, 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 }); }
241
+ };
242
+ SpwCard = __decorate([
243
+ ProxyCmp({
244
+ inputs: ['accAriaLabel', 'dateEnd', 'dateStart', 'disabled', 'elementType', 'fullHeight', 'href', 'rel', 'target', 'variant']
245
+ })
246
+ ], SpwCard);
247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCard, decorators: [{
248
+ type: Component,
249
+ args: [{
250
+ selector: 'spw-card',
251
+ changeDetection: ChangeDetectionStrategy.OnPush,
252
+ template: '<ng-content></ng-content>',
253
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
254
+ inputs: ['accAriaLabel', 'dateEnd', 'dateStart', 'disabled', 'elementType', 'fullHeight', 'href', 'rel', 'target', 'variant'],
255
+ }]
256
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
257
+ let SpwCardContent = class SpwCardContent {
258
+ constructor(c, r, z) {
259
+ this.z = z;
260
+ c.detach();
261
+ this.el = r.nativeElement;
262
+ }
263
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
264
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCardContent, isStandalone: true, selector: "spw-card-content", inputs: { date: "date", tag: "tag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
265
+ };
266
+ SpwCardContent = __decorate([
267
+ ProxyCmp({
268
+ inputs: ['date', 'tag']
269
+ })
270
+ ], SpwCardContent);
271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardContent, decorators: [{
272
+ type: Component,
273
+ args: [{
274
+ selector: 'spw-card-content',
275
+ changeDetection: ChangeDetectionStrategy.OnPush,
276
+ template: '<ng-content></ng-content>',
277
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
278
+ inputs: ['date', 'tag'],
279
+ }]
280
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
281
+ let SpwCardExcerpt = class SpwCardExcerpt {
282
+ constructor(c, r, z) {
283
+ this.z = z;
284
+ c.detach();
285
+ this.el = r.nativeElement;
286
+ }
287
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardExcerpt, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
288
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCardExcerpt, isStandalone: true, selector: "spw-card-excerpt", inputs: { lineClamp: "lineClamp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
289
+ };
290
+ SpwCardExcerpt = __decorate([
291
+ ProxyCmp({
292
+ inputs: ['lineClamp']
293
+ })
294
+ ], SpwCardExcerpt);
295
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardExcerpt, decorators: [{
296
+ type: Component,
297
+ args: [{
298
+ selector: 'spw-card-excerpt',
299
+ changeDetection: ChangeDetectionStrategy.OnPush,
300
+ template: '<ng-content></ng-content>',
301
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
302
+ inputs: ['lineClamp'],
303
+ }]
304
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
305
+ let SpwCardImage = class SpwCardImage {
306
+ constructor(c, r, z) {
307
+ this.z = z;
308
+ c.detach();
309
+ this.el = r.nativeElement;
310
+ }
311
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
312
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCardImage, isStandalone: true, selector: "spw-card-image", inputs: { label: "label", ratio: "ratio", ratioDesktop: "ratioDesktop", ratioMobile: "ratioMobile", ratioTablet: "ratioTablet" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
313
+ };
314
+ SpwCardImage = __decorate([
315
+ ProxyCmp({
316
+ inputs: ['label', 'ratio', 'ratioDesktop', 'ratioMobile', 'ratioTablet']
317
+ })
318
+ ], SpwCardImage);
319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardImage, decorators: [{
320
+ type: Component,
321
+ args: [{
322
+ selector: 'spw-card-image',
323
+ changeDetection: ChangeDetectionStrategy.OnPush,
324
+ template: '<ng-content></ng-content>',
325
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
326
+ inputs: ['label', 'ratio', 'ratioDesktop', 'ratioMobile', 'ratioTablet'],
327
+ }]
328
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
329
+ let SpwCardSubtagItem = class SpwCardSubtagItem {
330
+ constructor(c, r, z) {
331
+ this.z = z;
332
+ c.detach();
333
+ this.el = r.nativeElement;
334
+ }
335
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardSubtagItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
336
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCardSubtagItem, isStandalone: true, selector: "spw-card-subtag-item", inputs: { link: "link" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
337
+ };
338
+ SpwCardSubtagItem = __decorate([
339
+ ProxyCmp({
340
+ inputs: ['link']
341
+ })
342
+ ], SpwCardSubtagItem);
343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardSubtagItem, decorators: [{
344
+ type: Component,
345
+ args: [{
346
+ selector: 'spw-card-subtag-item',
347
+ changeDetection: ChangeDetectionStrategy.OnPush,
348
+ template: '<ng-content></ng-content>',
349
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
350
+ inputs: ['link'],
351
+ }]
352
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
353
+ let SpwCardSubtags = class SpwCardSubtags {
354
+ constructor(c, r, z) {
355
+ this.z = z;
356
+ c.detach();
357
+ this.el = r.nativeElement;
358
+ }
359
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardSubtags, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
360
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCardSubtags, isStandalone: true, selector: "spw-card-subtags", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
361
+ };
362
+ SpwCardSubtags = __decorate([
363
+ ProxyCmp({
364
+ inputs: ['variant']
365
+ })
366
+ ], SpwCardSubtags);
367
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardSubtags, decorators: [{
368
+ type: Component,
369
+ args: [{
370
+ selector: 'spw-card-subtags',
371
+ changeDetection: ChangeDetectionStrategy.OnPush,
372
+ template: '<ng-content></ng-content>',
373
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
374
+ inputs: ['variant'],
375
+ }]
376
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
377
+ let SpwCardTitle = class SpwCardTitle {
378
+ constructor(c, r, z) {
379
+ this.z = z;
380
+ c.detach();
381
+ this.el = r.nativeElement;
382
+ }
383
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
384
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCardTitle, isStandalone: true, selector: "spw-card-title", inputs: { borderColor: "borderColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
385
+ };
386
+ SpwCardTitle = __decorate([
387
+ ProxyCmp({
388
+ inputs: ['borderColor']
389
+ })
390
+ ], SpwCardTitle);
391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCardTitle, decorators: [{
392
+ type: Component,
393
+ args: [{
394
+ selector: 'spw-card-title',
395
+ changeDetection: ChangeDetectionStrategy.OnPush,
396
+ template: '<ng-content></ng-content>',
397
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
398
+ inputs: ['borderColor'],
399
+ }]
400
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
401
+ let SpwCheckbox = class SpwCheckbox {
402
+ constructor(c, r, z) {
403
+ this.z = z;
404
+ c.detach();
405
+ this.el = r.nativeElement;
406
+ proxyOutputs(this, this.el, ['spwChange']);
407
+ }
408
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
409
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCheckbox, isStandalone: true, selector: "spw-checkbox", inputs: { accAriaLabel: "accAriaLabel", checked: "checked", disabled: "disabled", error: "error", icon: "icon", name: "name", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
410
+ };
411
+ SpwCheckbox = __decorate([
412
+ ProxyCmp({
413
+ inputs: ['accAriaLabel', 'checked', 'disabled', 'error', 'icon', 'name', 'variant'],
414
+ methods: ['toggleCheckedState']
415
+ })
416
+ ], SpwCheckbox);
417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCheckbox, decorators: [{
418
+ type: Component,
419
+ args: [{
420
+ selector: 'spw-checkbox',
421
+ changeDetection: ChangeDetectionStrategy.OnPush,
422
+ template: '<ng-content></ng-content>',
423
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
424
+ inputs: ['accAriaLabel', 'checked', 'disabled', 'error', 'icon', 'name', 'variant'],
425
+ }]
426
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
427
+ let SpwCookies = class SpwCookies {
428
+ constructor(c, r, z) {
429
+ this.z = z;
430
+ c.detach();
431
+ this.el = r.nativeElement;
432
+ }
433
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCookies, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
434
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCookies, isStandalone: true, 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 }); }
435
+ };
436
+ SpwCookies = __decorate([
437
+ ProxyCmp({
438
+ inputs: ['acceptAllButtonText', 'acceptRequiredButtonText', 'cookiesDescription', 'cookiesTitle']
439
+ })
440
+ ], SpwCookies);
441
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCookies, decorators: [{
442
+ type: Component,
443
+ args: [{
444
+ selector: 'spw-cookies',
445
+ changeDetection: ChangeDetectionStrategy.OnPush,
446
+ template: '<ng-content></ng-content>',
447
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
448
+ inputs: ['acceptAllButtonText', 'acceptRequiredButtonText', 'cookiesDescription', 'cookiesTitle'],
449
+ }]
450
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
451
+ let SpwCustomSelect = class SpwCustomSelect {
452
+ constructor(c, r, z) {
453
+ this.z = z;
454
+ c.detach();
455
+ this.el = r.nativeElement;
456
+ proxyOutputs(this, this.el, ['valueChanged']);
457
+ }
458
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCustomSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
459
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwCustomSelect, isStandalone: true, selector: "spw-custom-select", inputs: { assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", isSearch: "isSearch", items: "items", label: "label", multiple: "multiple", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
460
+ };
461
+ SpwCustomSelect = __decorate([
462
+ ProxyCmp({
463
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
464
+ methods: ['resetSelect', 'setValue', 'getValue']
465
+ })
466
+ ], SpwCustomSelect);
467
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwCustomSelect, decorators: [{
468
+ type: Component,
469
+ args: [{
470
+ selector: 'spw-custom-select',
471
+ changeDetection: ChangeDetectionStrategy.OnPush,
472
+ template: '<ng-content></ng-content>',
473
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
474
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
475
+ }]
476
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
477
+ let SpwDatePicker = class SpwDatePicker {
478
+ constructor(c, r, z) {
479
+ this.z = z;
480
+ c.detach();
481
+ this.el = r.nativeElement;
482
+ proxyOutputs(this, this.el, ['dateChange', 'datePickerOpen', 'datePickerClose']);
483
+ }
484
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
485
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwDatePicker, isStandalone: true, selector: "spw-date-picker", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", dateFormat: "dateFormat", disabled: "disabled", disabledDates: "disabledDates", disabledDays: "disabledDays", error: "error", hint: "hint", isStart: "isStart", label: "label", maxDate: "maxDate", minDate: "minDate", name: "name", placeholder: "placeholder", position: "position", range: "range", rangeId: "rangeId", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
486
+ };
487
+ SpwDatePicker = __decorate([
488
+ ProxyCmp({
489
+ inputs: ['accAriaLabel', 'assistiveText', 'dateFormat', 'disabled', 'disabledDates', 'disabledDays', 'error', 'hint', 'isStart', 'label', 'maxDate', 'minDate', 'name', 'placeholder', 'position', 'range', 'rangeId', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
490
+ methods: ['open', 'close', 'setDate', 'getDate', 'getRange', 'updateConstraints', 'resetInput', 'resetConstraints']
491
+ })
492
+ ], SpwDatePicker);
493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDatePicker, decorators: [{
494
+ type: Component,
495
+ args: [{
496
+ selector: 'spw-date-picker',
497
+ changeDetection: ChangeDetectionStrategy.OnPush,
498
+ template: '<ng-content></ng-content>',
499
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
500
+ inputs: ['accAriaLabel', 'assistiveText', 'dateFormat', 'disabled', 'disabledDates', 'disabledDays', 'error', 'hint', 'isStart', 'label', 'maxDate', 'minDate', 'name', 'placeholder', 'position', 'range', 'rangeId', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
501
+ }]
502
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
503
+ let SpwDropdown = class SpwDropdown {
504
+ constructor(c, r, z) {
505
+ this.z = z;
506
+ c.detach();
507
+ this.el = r.nativeElement;
508
+ }
509
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
510
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwDropdown, isStandalone: true, selector: "spw-dropdown", inputs: { contentWidth: "contentWidth", direction: "direction", hasPadding: "hasPadding", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
511
+ };
512
+ SpwDropdown = __decorate([
513
+ ProxyCmp({
514
+ inputs: ['contentWidth', 'direction', 'hasPadding', 'open'],
515
+ methods: ['close']
516
+ })
517
+ ], SpwDropdown);
518
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDropdown, decorators: [{
519
+ type: Component,
520
+ args: [{
521
+ selector: 'spw-dropdown',
522
+ changeDetection: ChangeDetectionStrategy.OnPush,
523
+ template: '<ng-content></ng-content>',
524
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
525
+ inputs: ['contentWidth', 'direction', 'hasPadding', 'open'],
526
+ }]
527
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
528
+ let SpwDropdownContainer = class SpwDropdownContainer {
529
+ constructor(c, r, z) {
530
+ this.z = z;
531
+ c.detach();
532
+ this.el = r.nativeElement;
533
+ }
534
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDropdownContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
535
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwDropdownContainer, isStandalone: true, selector: "spw-dropdown-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
536
+ };
537
+ SpwDropdownContainer = __decorate([
538
+ ProxyCmp({})
539
+ ], SpwDropdownContainer);
540
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDropdownContainer, decorators: [{
541
+ type: Component,
542
+ args: [{
543
+ selector: 'spw-dropdown-container',
544
+ changeDetection: ChangeDetectionStrategy.OnPush,
545
+ template: '<ng-content></ng-content>',
546
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
547
+ inputs: [],
548
+ }]
549
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
550
+ let SpwDropdownItem = class SpwDropdownItem {
551
+ constructor(c, r, z) {
552
+ this.z = z;
553
+ c.detach();
554
+ this.el = r.nativeElement;
555
+ }
556
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
557
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwDropdownItem, isStandalone: true, selector: "spw-dropdown-item", inputs: { disabled: "disabled", href: "href", icon: "icon", iconVariant: "iconVariant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
558
+ };
559
+ SpwDropdownItem = __decorate([
560
+ ProxyCmp({
561
+ inputs: ['disabled', 'href', 'icon', 'iconVariant']
562
+ })
563
+ ], SpwDropdownItem);
564
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDropdownItem, decorators: [{
565
+ type: Component,
566
+ args: [{
567
+ selector: 'spw-dropdown-item',
568
+ changeDetection: ChangeDetectionStrategy.OnPush,
569
+ template: '<ng-content></ng-content>',
570
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
571
+ inputs: ['disabled', 'href', 'icon', 'iconVariant'],
572
+ }]
573
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
574
+ let SpwFieldLabel = class SpwFieldLabel {
575
+ constructor(c, r, z) {
576
+ this.z = z;
577
+ c.detach();
578
+ this.el = r.nativeElement;
579
+ }
580
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
581
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFieldLabel, isStandalone: true, selector: "spw-field-label", inputs: { label: "label", name: "name", required: "required", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
582
+ };
583
+ SpwFieldLabel = __decorate([
584
+ ProxyCmp({
585
+ inputs: ['label', 'name', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle']
586
+ })
587
+ ], SpwFieldLabel);
588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFieldLabel, decorators: [{
589
+ type: Component,
590
+ args: [{
591
+ selector: 'spw-field-label',
592
+ changeDetection: ChangeDetectionStrategy.OnPush,
593
+ template: '<ng-content></ng-content>',
594
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
595
+ inputs: ['label', 'name', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle'],
596
+ }]
597
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
598
+ let SpwFieldMessage = class SpwFieldMessage {
599
+ constructor(c, r, z) {
600
+ this.z = z;
601
+ c.detach();
602
+ this.el = r.nativeElement;
603
+ }
604
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFieldMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
605
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFieldMessage, isStandalone: true, selector: "spw-field-message", inputs: { showIcon: "showIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
606
+ };
607
+ SpwFieldMessage = __decorate([
608
+ ProxyCmp({
609
+ inputs: ['showIcon', 'variant']
610
+ })
611
+ ], SpwFieldMessage);
612
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFieldMessage, decorators: [{
613
+ type: Component,
614
+ args: [{
615
+ selector: 'spw-field-message',
616
+ changeDetection: ChangeDetectionStrategy.OnPush,
617
+ template: '<ng-content></ng-content>',
618
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
619
+ inputs: ['showIcon', 'variant'],
620
+ }]
621
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
622
+ let SpwFileUpload = class SpwFileUpload {
623
+ constructor(c, r, z) {
624
+ this.z = z;
625
+ c.detach();
626
+ this.el = r.nativeElement;
627
+ proxyOutputs(this, this.el, ['spwFileChange']);
628
+ }
629
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
630
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFileUpload, isStandalone: true, selector: "spw-file-upload", inputs: { accept: "accept", disabled: "disabled", enableDropZone: "enableDropZone", error: "error", maxFileSize: "maxFileSize", maxFileSizeUnit: "maxFileSizeUnit", maxFiles: "maxFiles", multiple: "multiple", name: "name", refuse: "refuse", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
631
+ };
632
+ SpwFileUpload = __decorate([
633
+ ProxyCmp({
634
+ inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFileSizeUnit', 'maxFiles', 'multiple', 'name', 'refuse', 'value'],
635
+ methods: ['resetInput']
636
+ })
637
+ ], SpwFileUpload);
638
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFileUpload, decorators: [{
639
+ type: Component,
640
+ args: [{
641
+ selector: 'spw-file-upload',
642
+ changeDetection: ChangeDetectionStrategy.OnPush,
643
+ template: '<ng-content></ng-content>',
644
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
645
+ inputs: ['accept', 'disabled', 'enableDropZone', 'error', 'maxFileSize', 'maxFileSizeUnit', 'maxFiles', 'multiple', 'name', 'refuse', 'value'],
646
+ }]
647
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
648
+ let SpwFooter = class SpwFooter {
649
+ constructor(c, r, z) {
650
+ this.z = z;
651
+ c.detach();
652
+ this.el = r.nativeElement;
653
+ }
654
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
655
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFooter, isStandalone: true, selector: "spw-footer", inputs: { colsDesktop: "colsDesktop", colsMobile: "colsMobile", colsTablet: "colsTablet" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
656
+ };
657
+ SpwFooter = __decorate([
658
+ ProxyCmp({
659
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet']
660
+ })
661
+ ], SpwFooter);
662
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooter, decorators: [{
663
+ type: Component,
664
+ args: [{
665
+ selector: 'spw-footer',
666
+ changeDetection: ChangeDetectionStrategy.OnPush,
667
+ template: '<ng-content></ng-content>',
668
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
669
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet'],
670
+ }]
671
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
672
+ let SpwFooterBottom = class SpwFooterBottom {
673
+ constructor(c, r, z) {
674
+ this.z = z;
675
+ c.detach();
676
+ this.el = r.nativeElement;
677
+ }
678
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterBottom, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
679
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFooterBottom, isStandalone: true, selector: "spw-footer-bottom", inputs: { hasWallonieLogo: "hasWallonieLogo", siteTitle: "siteTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
680
+ };
681
+ SpwFooterBottom = __decorate([
682
+ ProxyCmp({
683
+ inputs: ['hasWallonieLogo', 'siteTitle']
684
+ })
685
+ ], SpwFooterBottom);
686
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterBottom, decorators: [{
687
+ type: Component,
688
+ args: [{
689
+ selector: 'spw-footer-bottom',
690
+ changeDetection: ChangeDetectionStrategy.OnPush,
691
+ template: '<ng-content></ng-content>',
692
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
693
+ inputs: ['hasWallonieLogo', 'siteTitle'],
694
+ }]
695
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
696
+ let SpwFooterContent = class SpwFooterContent {
697
+ constructor(c, r, z) {
698
+ this.z = z;
699
+ c.detach();
700
+ this.el = r.nativeElement;
701
+ }
702
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
703
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFooterContent, isStandalone: true, selector: "spw-footer-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
704
+ };
705
+ SpwFooterContent = __decorate([
706
+ ProxyCmp({})
707
+ ], SpwFooterContent);
708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterContent, decorators: [{
709
+ type: Component,
710
+ args: [{
711
+ selector: 'spw-footer-content',
712
+ changeDetection: ChangeDetectionStrategy.OnPush,
713
+ template: '<ng-content></ng-content>',
714
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
715
+ inputs: [],
716
+ }]
717
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
718
+ let SpwFooterContentCol = class SpwFooterContentCol {
719
+ constructor(c, r, z) {
720
+ this.z = z;
721
+ c.detach();
722
+ this.el = r.nativeElement;
723
+ }
724
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterContentCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
725
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFooterContentCol, isStandalone: true, selector: "spw-footer-content-col", inputs: { colTitle: "colTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
726
+ };
727
+ SpwFooterContentCol = __decorate([
728
+ ProxyCmp({
729
+ inputs: ['colTitle']
730
+ })
731
+ ], SpwFooterContentCol);
732
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterContentCol, decorators: [{
733
+ type: Component,
734
+ args: [{
735
+ selector: 'spw-footer-content-col',
736
+ changeDetection: ChangeDetectionStrategy.OnPush,
737
+ template: '<ng-content></ng-content>',
738
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
739
+ inputs: ['colTitle'],
740
+ }]
741
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
742
+ let SpwFooterLink = class SpwFooterLink {
743
+ constructor(c, r, z) {
744
+ this.z = z;
745
+ c.detach();
746
+ this.el = r.nativeElement;
747
+ }
748
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
749
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwFooterLink, isStandalone: true, selector: "spw-footer-link", inputs: { href: "href", linkTitle: "linkTitle", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
750
+ };
751
+ SpwFooterLink = __decorate([
752
+ ProxyCmp({
753
+ inputs: ['href', 'linkTitle', 'target']
754
+ })
755
+ ], SpwFooterLink);
756
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwFooterLink, decorators: [{
757
+ type: Component,
758
+ args: [{
759
+ selector: 'spw-footer-link',
760
+ changeDetection: ChangeDetectionStrategy.OnPush,
761
+ template: '<ng-content></ng-content>',
762
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
763
+ inputs: ['href', 'linkTitle', 'target'],
764
+ }]
765
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
766
+ let SpwGrid = class SpwGrid {
767
+ constructor(c, r, z) {
768
+ this.z = z;
769
+ c.detach();
770
+ this.el = r.nativeElement;
771
+ }
772
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
773
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwGrid, isStandalone: true, selector: "spw-grid", inputs: { colsDesktop: "colsDesktop", colsMobile: "colsMobile", colsTablet: "colsTablet" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
774
+ };
775
+ SpwGrid = __decorate([
776
+ ProxyCmp({
777
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet']
778
+ })
779
+ ], SpwGrid);
780
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGrid, decorators: [{
781
+ type: Component,
782
+ args: [{
783
+ selector: 'spw-grid',
784
+ changeDetection: ChangeDetectionStrategy.OnPush,
785
+ template: '<ng-content></ng-content>',
786
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
787
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet'],
788
+ }]
789
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
790
+ let SpwGridItem = class SpwGridItem {
791
+ constructor(c, r, z) {
792
+ this.z = z;
793
+ c.detach();
794
+ this.el = r.nativeElement;
795
+ }
796
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
797
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwGridItem, isStandalone: true, selector: "spw-grid-item", inputs: { colSpanDesktop: "colSpanDesktop", colSpanMobile: "colSpanMobile", colSpanTablet: "colSpanTablet", rowSpanDesktop: "rowSpanDesktop", rowSpanMobile: "rowSpanMobile", rowSpanTablet: "rowSpanTablet" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
798
+ };
799
+ SpwGridItem = __decorate([
800
+ ProxyCmp({
801
+ inputs: ['colSpanDesktop', 'colSpanMobile', 'colSpanTablet', 'rowSpanDesktop', 'rowSpanMobile', 'rowSpanTablet']
802
+ })
803
+ ], SpwGridItem);
804
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGridItem, decorators: [{
805
+ type: Component,
806
+ args: [{
807
+ selector: 'spw-grid-item',
808
+ changeDetection: ChangeDetectionStrategy.OnPush,
809
+ template: '<ng-content></ng-content>',
810
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
811
+ inputs: ['colSpanDesktop', 'colSpanMobile', 'colSpanTablet', 'rowSpanDesktop', 'rowSpanMobile', 'rowSpanTablet'],
812
+ }]
813
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
814
+ let SpwGroup = class SpwGroup {
815
+ constructor(c, r, z) {
816
+ this.z = z;
817
+ c.detach();
818
+ this.el = r.nativeElement;
819
+ }
820
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
821
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwGroup, isStandalone: true, selector: "spw-group", inputs: { alignment: "alignment", disabled: "disabled", isFullWidth: "isFullWidth", isReversed: "isReversed", label: "label", name: "name", orientation: "orientation", required: "required", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
822
+ };
823
+ SpwGroup = __decorate([
824
+ ProxyCmp({
825
+ inputs: ['alignment', 'disabled', 'isFullWidth', 'isReversed', 'label', 'name', 'orientation', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type']
826
+ })
827
+ ], SpwGroup);
828
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwGroup, decorators: [{
829
+ type: Component,
830
+ args: [{
831
+ selector: 'spw-group',
832
+ changeDetection: ChangeDetectionStrategy.OnPush,
833
+ template: '<ng-content></ng-content>',
834
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
835
+ inputs: ['alignment', 'disabled', 'isFullWidth', 'isReversed', 'label', 'name', 'orientation', 'required', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type'],
836
+ }]
837
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
838
+ let SpwHeader = class SpwHeader {
839
+ constructor(c, r, z) {
840
+ this.z = z;
841
+ c.detach();
842
+ this.el = r.nativeElement;
843
+ }
844
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
845
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeader, isStandalone: true, selector: "spw-header", inputs: { borderColor: "borderColor", hasMaWallonie: "hasMaWallonie", hasSearch: "hasSearch", hasWallonieBe: "hasWallonieBe", hasWallonieLogo: "hasWallonieLogo", maWallonieLabel: "maWallonieLabel", maWallonieLink: "maWallonieLink", menuCloseLabel: "menuCloseLabel", menuOpenLabel: "menuOpenLabel", searchCloseLabel: "searchCloseLabel", searchDirectHref: "searchDirectHref", searchDirectTarget: "searchDirectTarget", searchOpenLabel: "searchOpenLabel", searchType: "searchType", siteTitle: "siteTitle", wallonieBeLabel: "wallonieBeLabel", wallonieBeLink: "wallonieBeLink" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
846
+ };
847
+ SpwHeader = __decorate([
848
+ ProxyCmp({
849
+ inputs: ['borderColor', 'hasMaWallonie', 'hasSearch', 'hasWallonieBe', 'hasWallonieLogo', 'maWallonieLabel', 'maWallonieLink', 'menuCloseLabel', 'menuOpenLabel', 'searchCloseLabel', 'searchDirectHref', 'searchDirectTarget', 'searchOpenLabel', 'searchType', 'siteTitle', 'wallonieBeLabel', 'wallonieBeLink']
850
+ })
851
+ ], SpwHeader);
852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeader, decorators: [{
853
+ type: Component,
854
+ args: [{
855
+ selector: 'spw-header',
856
+ changeDetection: ChangeDetectionStrategy.OnPush,
857
+ template: '<ng-content></ng-content>',
858
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
859
+ inputs: ['borderColor', 'hasMaWallonie', 'hasSearch', 'hasWallonieBe', 'hasWallonieLogo', 'maWallonieLabel', 'maWallonieLink', 'menuCloseLabel', 'menuOpenLabel', 'searchCloseLabel', 'searchDirectHref', 'searchDirectTarget', 'searchOpenLabel', 'searchType', 'siteTitle', 'wallonieBeLabel', 'wallonieBeLink'],
860
+ }]
861
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
862
+ let SpwHeaderLang = class SpwHeaderLang {
863
+ constructor(c, r, z) {
864
+ this.z = z;
865
+ c.detach();
866
+ this.el = r.nativeElement;
867
+ }
868
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderLang, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
869
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderLang, isStandalone: true, selector: "spw-header-lang", inputs: { accAriaLabel: "accAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
870
+ };
871
+ SpwHeaderLang = __decorate([
872
+ ProxyCmp({
873
+ inputs: ['accAriaLabel']
874
+ })
875
+ ], SpwHeaderLang);
876
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderLang, decorators: [{
877
+ type: Component,
878
+ args: [{
879
+ selector: 'spw-header-lang',
880
+ changeDetection: ChangeDetectionStrategy.OnPush,
881
+ template: '<ng-content></ng-content>',
882
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
883
+ inputs: ['accAriaLabel'],
884
+ }]
885
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
886
+ let SpwHeaderLangItem = class SpwHeaderLangItem {
887
+ constructor(c, r, z) {
888
+ this.z = z;
889
+ c.detach();
890
+ this.el = r.nativeElement;
891
+ }
892
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderLangItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
893
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderLangItem, isStandalone: true, selector: "spw-header-lang-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
894
+ };
895
+ SpwHeaderLangItem = __decorate([
896
+ ProxyCmp({
897
+ inputs: ['active']
898
+ })
899
+ ], SpwHeaderLangItem);
900
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderLangItem, decorators: [{
901
+ type: Component,
902
+ args: [{
903
+ selector: 'spw-header-lang-item',
904
+ changeDetection: ChangeDetectionStrategy.OnPush,
905
+ template: '<ng-content></ng-content>',
906
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
907
+ inputs: ['active'],
908
+ }]
909
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
910
+ let SpwHeaderNavigation = class SpwHeaderNavigation {
911
+ constructor(c, r, z) {
912
+ this.z = z;
913
+ c.detach();
914
+ this.el = r.nativeElement;
915
+ }
916
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
917
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderNavigation, isStandalone: true, selector: "spw-header-navigation", inputs: { alignment: "alignment", extraButton: "extraButton", extraButtonHref: "extraButtonHref", extraButtonIcon: "extraButtonIcon", extraButtonTarget: "extraButtonTarget", extraButtonText: "extraButtonText", extraButtonVariant: "extraButtonVariant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
918
+ };
919
+ SpwHeaderNavigation = __decorate([
920
+ ProxyCmp({
921
+ inputs: ['alignment', 'extraButton', 'extraButtonHref', 'extraButtonIcon', 'extraButtonTarget', 'extraButtonText', 'extraButtonVariant']
922
+ })
923
+ ], SpwHeaderNavigation);
924
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigation, decorators: [{
925
+ type: Component,
926
+ args: [{
927
+ selector: 'spw-header-navigation',
928
+ changeDetection: ChangeDetectionStrategy.OnPush,
929
+ template: '<ng-content></ng-content>',
930
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
931
+ inputs: ['alignment', 'extraButton', 'extraButtonHref', 'extraButtonIcon', 'extraButtonTarget', 'extraButtonText', 'extraButtonVariant'],
932
+ }]
933
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
934
+ let SpwHeaderNavigationDropdown = class SpwHeaderNavigationDropdown {
935
+ constructor(c, r, z) {
936
+ this.z = z;
937
+ c.detach();
938
+ this.el = r.nativeElement;
939
+ }
940
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
941
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderNavigationDropdown, isStandalone: true, selector: "spw-header-navigation-dropdown", inputs: { viewMoreText: "viewMoreText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
942
+ };
943
+ SpwHeaderNavigationDropdown = __decorate([
944
+ ProxyCmp({
945
+ inputs: ['viewMoreText']
946
+ })
947
+ ], SpwHeaderNavigationDropdown);
948
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationDropdown, decorators: [{
949
+ type: Component,
950
+ args: [{
951
+ selector: 'spw-header-navigation-dropdown',
952
+ changeDetection: ChangeDetectionStrategy.OnPush,
953
+ template: '<ng-content></ng-content>',
954
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
955
+ inputs: ['viewMoreText'],
956
+ }]
957
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
958
+ let SpwHeaderNavigationItem = class SpwHeaderNavigationItem {
959
+ constructor(c, r, z) {
960
+ this.z = z;
961
+ c.detach();
962
+ this.el = r.nativeElement;
963
+ proxyOutputs(this, this.el, ['spwHeaderNavigationNavigate']);
964
+ }
965
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
966
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderNavigationItem, isStandalone: true, selector: "spw-header-navigation-item", inputs: { isActive: "isActive", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
967
+ };
968
+ SpwHeaderNavigationItem = __decorate([
969
+ ProxyCmp({
970
+ inputs: ['isActive', 'variant']
971
+ })
972
+ ], SpwHeaderNavigationItem);
973
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderNavigationItem, decorators: [{
974
+ type: Component,
975
+ args: [{
976
+ selector: 'spw-header-navigation-item',
977
+ changeDetection: ChangeDetectionStrategy.OnPush,
978
+ template: '<ng-content></ng-content>',
979
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
980
+ inputs: ['isActive', 'variant'],
981
+ }]
982
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
983
+ let SpwHeaderPersona = class SpwHeaderPersona {
984
+ constructor(c, r, z) {
985
+ this.z = z;
986
+ c.detach();
987
+ this.el = r.nativeElement;
988
+ }
989
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderPersona, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
990
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderPersona, isStandalone: true, selector: "spw-header-persona", inputs: { accAriaLabel: "accAriaLabel", personaLabel: "personaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
991
+ };
992
+ SpwHeaderPersona = __decorate([
993
+ ProxyCmp({
994
+ inputs: ['accAriaLabel', 'personaLabel']
995
+ })
996
+ ], SpwHeaderPersona);
997
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderPersona, decorators: [{
998
+ type: Component,
999
+ args: [{
1000
+ selector: 'spw-header-persona',
1001
+ changeDetection: ChangeDetectionStrategy.OnPush,
1002
+ template: '<ng-content></ng-content>',
1003
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1004
+ inputs: ['accAriaLabel', 'personaLabel'],
1005
+ }]
1006
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1007
+ let SpwHeaderPersonaItem = class SpwHeaderPersonaItem {
1008
+ constructor(c, r, z) {
1009
+ this.z = z;
1010
+ c.detach();
1011
+ this.el = r.nativeElement;
1012
+ }
1013
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderPersonaItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1014
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHeaderPersonaItem, isStandalone: true, selector: "spw-header-persona-item", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1015
+ };
1016
+ SpwHeaderPersonaItem = __decorate([
1017
+ ProxyCmp({
1018
+ inputs: ['active']
1019
+ })
1020
+ ], SpwHeaderPersonaItem);
1021
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHeaderPersonaItem, decorators: [{
1022
+ type: Component,
1023
+ args: [{
1024
+ selector: 'spw-header-persona-item',
1025
+ changeDetection: ChangeDetectionStrategy.OnPush,
1026
+ template: '<ng-content></ng-content>',
1027
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1028
+ inputs: ['active'],
1029
+ }]
1030
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1031
+ let SpwHero = class SpwHero {
1032
+ constructor(c, r, z) {
1033
+ this.z = z;
1034
+ c.detach();
1035
+ this.el = r.nativeElement;
1036
+ }
1037
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHero, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1038
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwHero, isStandalone: true, selector: "spw-hero", inputs: { accPlayButtonAriaLabel: "accPlayButtonAriaLabel", alignment: "alignment", hasPictureFull: "hasPictureFull", hasRadius: "hasRadius", hasShadow: "hasShadow", hasVideo: "hasVideo", imageAlt: "imageAlt", imageSrc: "imageSrc", modalVideoId: "modalVideoId", overlayColor: "overlayColor", overlayOpacity: "overlayOpacity", surface: "surface", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1039
+ };
1040
+ SpwHero = __decorate([
1041
+ ProxyCmp({
1042
+ inputs: ['accPlayButtonAriaLabel', 'alignment', 'hasPictureFull', 'hasRadius', 'hasShadow', 'hasVideo', 'imageAlt', 'imageSrc', 'modalVideoId', 'overlayColor', 'overlayOpacity', 'surface', 'variant']
1043
+ })
1044
+ ], SpwHero);
1045
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwHero, decorators: [{
1046
+ type: Component,
1047
+ args: [{
1048
+ selector: 'spw-hero',
1049
+ changeDetection: ChangeDetectionStrategy.OnPush,
1050
+ template: '<ng-content></ng-content>',
1051
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1052
+ inputs: ['accPlayButtonAriaLabel', 'alignment', 'hasPictureFull', 'hasRadius', 'hasShadow', 'hasVideo', 'imageAlt', 'imageSrc', 'modalVideoId', 'overlayColor', 'overlayOpacity', 'surface', 'variant'],
1053
+ }]
1054
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1055
+ let SpwIcon = class SpwIcon {
1056
+ constructor(c, r, z) {
1057
+ this.z = z;
1058
+ c.detach();
1059
+ this.el = r.nativeElement;
1060
+ }
1061
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1062
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwIcon, isStandalone: true, selector: "spw-icon", inputs: { icon: "icon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1063
+ };
1064
+ SpwIcon = __decorate([
1065
+ ProxyCmp({
1066
+ inputs: ['icon', 'variant']
1067
+ })
1068
+ ], SpwIcon);
1069
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwIcon, decorators: [{
1070
+ type: Component,
1071
+ args: [{
1072
+ selector: 'spw-icon',
1073
+ changeDetection: ChangeDetectionStrategy.OnPush,
1074
+ template: '<ng-content></ng-content>',
1075
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1076
+ inputs: ['icon', 'variant'],
1077
+ }]
1078
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1079
+ let SpwIllustration = class SpwIllustration {
1080
+ constructor(c, r, z) {
1081
+ this.z = z;
1082
+ c.detach();
1083
+ this.el = r.nativeElement;
1084
+ }
1085
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwIllustration, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1086
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwIllustration, isStandalone: true, selector: "spw-illustration", inputs: { alt: "alt", height: "height", variant: "variant", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1087
+ };
1088
+ SpwIllustration = __decorate([
1089
+ ProxyCmp({
1090
+ inputs: ['alt', 'height', 'variant', 'width']
1091
+ })
1092
+ ], SpwIllustration);
1093
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwIllustration, decorators: [{
1094
+ type: Component,
1095
+ args: [{
1096
+ selector: 'spw-illustration',
1097
+ changeDetection: ChangeDetectionStrategy.OnPush,
1098
+ template: '<ng-content></ng-content>',
1099
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1100
+ inputs: ['alt', 'height', 'variant', 'width'],
1101
+ }]
1102
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1103
+ let SpwInputSlider = class SpwInputSlider {
1104
+ constructor(c, r, z) {
1105
+ this.z = z;
1106
+ c.detach();
1107
+ this.el = r.nativeElement;
1108
+ proxyOutputs(this, this.el, ['valueChange']);
1109
+ }
1110
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwInputSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1111
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwInputSlider, isStandalone: true, selector: "spw-input-slider", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hasTooltip: "hasTooltip", hint: "hint", label: "label", max: "max", min: "min", name: "name", orientation: "orientation", range: "range", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", step: "step", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1112
+ };
1113
+ SpwInputSlider = __decorate([
1114
+ ProxyCmp({
1115
+ inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hasTooltip', 'hint', 'label', 'max', 'min', 'name', 'orientation', 'range', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
1116
+ methods: ['setValue', 'getValue']
1117
+ })
1118
+ ], SpwInputSlider);
1119
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwInputSlider, decorators: [{
1120
+ type: Component,
1121
+ args: [{
1122
+ selector: 'spw-input-slider',
1123
+ changeDetection: ChangeDetectionStrategy.OnPush,
1124
+ template: '<ng-content></ng-content>',
1125
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1126
+ inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hasTooltip', 'hint', 'label', 'max', 'min', 'name', 'orientation', 'range', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
1127
+ }]
1128
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1129
+ let SpwLink = class SpwLink {
1130
+ constructor(c, r, z) {
1131
+ this.z = z;
1132
+ c.detach();
1133
+ this.el = r.nativeElement;
1134
+ proxyOutputs(this, this.el, ['spwClick']);
1135
+ }
1136
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1137
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwLink, isStandalone: true, 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 }); }
1138
+ };
1139
+ SpwLink = __decorate([
1140
+ ProxyCmp({
1141
+ inputs: ['accAriaLabel', 'disabled', 'href', 'icon', 'iconPosition', 'rel', 'surface', 'target']
1142
+ })
1143
+ ], SpwLink);
1144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwLink, decorators: [{
1145
+ type: Component,
1146
+ args: [{
1147
+ selector: 'spw-link',
1148
+ changeDetection: ChangeDetectionStrategy.OnPush,
1149
+ template: '<ng-content></ng-content>',
1150
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1151
+ inputs: ['accAriaLabel', 'disabled', 'href', 'icon', 'iconPosition', 'rel', 'surface', 'target'],
1152
+ }]
1153
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1154
+ let SpwList = class SpwList {
1155
+ constructor(c, r, z) {
1156
+ this.z = z;
1157
+ c.detach();
1158
+ this.el = r.nativeElement;
1159
+ }
1160
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1161
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwList, isStandalone: true, selector: "spw-list", inputs: { gap: "gap", surface: "surface" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1162
+ };
1163
+ SpwList = __decorate([
1164
+ ProxyCmp({
1165
+ inputs: ['gap', 'surface']
1166
+ })
1167
+ ], SpwList);
1168
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwList, decorators: [{
1169
+ type: Component,
1170
+ args: [{
1171
+ selector: 'spw-list',
1172
+ changeDetection: ChangeDetectionStrategy.OnPush,
1173
+ template: '<ng-content></ng-content>',
1174
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1175
+ inputs: ['gap', 'surface'],
1176
+ }]
1177
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1178
+ let SpwListDescription = class SpwListDescription {
1179
+ constructor(c, r, z) {
1180
+ this.z = z;
1181
+ c.detach();
1182
+ this.el = r.nativeElement;
1183
+ }
1184
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwListDescription, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1185
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwListDescription, isStandalone: true, selector: "spw-list-description", inputs: { lineClamp: "lineClamp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1186
+ };
1187
+ SpwListDescription = __decorate([
1188
+ ProxyCmp({
1189
+ inputs: ['lineClamp']
1190
+ })
1191
+ ], SpwListDescription);
1192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwListDescription, decorators: [{
1193
+ type: Component,
1194
+ args: [{
1195
+ selector: 'spw-list-description',
1196
+ changeDetection: ChangeDetectionStrategy.OnPush,
1197
+ template: '<ng-content></ng-content>',
1198
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1199
+ inputs: ['lineClamp'],
1200
+ }]
1201
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1202
+ let SpwListItem = class SpwListItem {
1203
+ constructor(c, r, z) {
1204
+ this.z = z;
1205
+ c.detach();
1206
+ this.el = r.nativeElement;
1207
+ }
1208
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1209
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwListItem, isStandalone: true, selector: "spw-list-item", inputs: { category: "category", categoryIcon: "categoryIcon", categoryLink: "categoryLink", href: "href", icon: "icon", lineClamp: "lineClamp", surface: "surface", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1210
+ };
1211
+ SpwListItem = __decorate([
1212
+ ProxyCmp({
1213
+ inputs: ['category', 'categoryIcon', 'categoryLink', 'href', 'icon', 'lineClamp', 'surface', 'target', 'variant']
1214
+ })
1215
+ ], SpwListItem);
1216
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwListItem, decorators: [{
1217
+ type: Component,
1218
+ args: [{
1219
+ selector: 'spw-list-item',
1220
+ changeDetection: ChangeDetectionStrategy.OnPush,
1221
+ template: '<ng-content></ng-content>',
1222
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1223
+ inputs: ['category', 'categoryIcon', 'categoryLink', 'href', 'icon', 'lineClamp', 'surface', 'target', 'variant'],
1224
+ }]
1225
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1226
+ let SpwListTitle = class SpwListTitle {
1227
+ constructor(c, r, z) {
1228
+ this.z = z;
1229
+ c.detach();
1230
+ this.el = r.nativeElement;
1231
+ }
1232
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwListTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1233
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwListTitle, isStandalone: true, selector: "spw-list-title", inputs: { icon: "icon", lineClamp: "lineClamp" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1234
+ };
1235
+ SpwListTitle = __decorate([
1236
+ ProxyCmp({
1237
+ inputs: ['icon', 'lineClamp']
1238
+ })
1239
+ ], SpwListTitle);
1240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwListTitle, decorators: [{
1241
+ type: Component,
1242
+ args: [{
1243
+ selector: 'spw-list-title',
1244
+ changeDetection: ChangeDetectionStrategy.OnPush,
1245
+ template: '<ng-content></ng-content>',
1246
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1247
+ inputs: ['icon', 'lineClamp'],
1248
+ }]
1249
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1250
+ let SpwLoading = class SpwLoading {
1251
+ constructor(c, r, z) {
1252
+ this.z = z;
1253
+ c.detach();
1254
+ this.el = r.nativeElement;
1255
+ }
1256
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwLoading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1257
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwLoading, isStandalone: true, selector: "spw-loading", inputs: { text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1258
+ };
1259
+ SpwLoading = __decorate([
1260
+ ProxyCmp({
1261
+ inputs: ['text']
1262
+ })
1263
+ ], SpwLoading);
1264
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwLoading, decorators: [{
1265
+ type: Component,
1266
+ args: [{
1267
+ selector: 'spw-loading',
1268
+ changeDetection: ChangeDetectionStrategy.OnPush,
1269
+ template: '<ng-content></ng-content>',
1270
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1271
+ inputs: ['text'],
1272
+ }]
1273
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1274
+ let SpwMessage = class SpwMessage {
1275
+ constructor(c, r, z) {
1276
+ this.z = z;
1277
+ c.detach();
1278
+ this.el = r.nativeElement;
1279
+ proxyOutputs(this, this.el, ['spwDismiss']);
1280
+ }
1281
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1282
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwMessage, isStandalone: true, selector: "spw-message", inputs: { dismissableText: "dismissableText", icon: "icon", isDismissable: "isDismissable", messageId: "messageId", messageTitle: "messageTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1283
+ };
1284
+ SpwMessage = __decorate([
1285
+ ProxyCmp({
1286
+ inputs: ['dismissableText', 'icon', 'isDismissable', 'messageId', 'messageTitle', 'variant'],
1287
+ methods: ['showMessage', 'hideMessage']
1288
+ })
1289
+ ], SpwMessage);
1290
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMessage, decorators: [{
1291
+ type: Component,
1292
+ args: [{
1293
+ selector: 'spw-message',
1294
+ changeDetection: ChangeDetectionStrategy.OnPush,
1295
+ template: '<ng-content></ng-content>',
1296
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1297
+ inputs: ['dismissableText', 'icon', 'isDismissable', 'messageId', 'messageTitle', 'variant'],
1298
+ }]
1299
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1300
+ let SpwModal = class SpwModal {
1301
+ constructor(c, r, z) {
1302
+ this.z = z;
1303
+ c.detach();
1304
+ this.el = r.nativeElement;
1305
+ proxyOutputs(this, this.el, ['spwModalOpen', 'spwModalClose']);
1306
+ }
1307
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1308
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwModal, isStandalone: true, selector: "spw-modal", inputs: { alertIcon: "alertIcon", caption: "caption", closeOnOverlayClick: "closeOnOverlayClick", opened: "opened", showCloseButton: "showCloseButton", size: "size", stickyButtons: "stickyButtons" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1309
+ };
1310
+ SpwModal = __decorate([
1311
+ ProxyCmp({
1312
+ inputs: ['alertIcon', 'caption', 'closeOnOverlayClick', 'opened', 'showCloseButton', 'size', 'stickyButtons'],
1313
+ methods: ['closeModal', 'openModal']
1314
+ })
1315
+ ], SpwModal);
1316
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwModal, decorators: [{
1317
+ type: Component,
1318
+ args: [{
1319
+ selector: 'spw-modal',
1320
+ changeDetection: ChangeDetectionStrategy.OnPush,
1321
+ template: '<ng-content></ng-content>',
1322
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1323
+ inputs: ['alertIcon', 'caption', 'closeOnOverlayClick', 'opened', 'showCloseButton', 'size', 'stickyButtons'],
1324
+ }]
1325
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1326
+ let SpwMosaic = class SpwMosaic {
1327
+ constructor(c, r, z) {
1328
+ this.z = z;
1329
+ c.detach();
1330
+ this.el = r.nativeElement;
1331
+ }
1332
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMosaic, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1333
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwMosaic, isStandalone: true, 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 }); }
1334
+ };
1335
+ SpwMosaic = __decorate([
1336
+ ProxyCmp({
1337
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet', 'isMasonry', 'items'],
1338
+ methods: ['waitForImages', 'initializeMasonry']
1339
+ })
1340
+ ], SpwMosaic);
1341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMosaic, decorators: [{
1342
+ type: Component,
1343
+ args: [{
1344
+ selector: 'spw-mosaic',
1345
+ changeDetection: ChangeDetectionStrategy.OnPush,
1346
+ template: '<ng-content></ng-content>',
1347
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1348
+ inputs: ['colsDesktop', 'colsMobile', 'colsTablet', 'isMasonry', 'items'],
1349
+ }]
1350
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1351
+ let SpwMosaicItem = class SpwMosaicItem {
1352
+ constructor(c, r, z) {
1353
+ this.z = z;
1354
+ c.detach();
1355
+ this.el = r.nativeElement;
1356
+ }
1357
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMosaicItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1358
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwMosaicItem, isStandalone: true, selector: "spw-mosaic-item", inputs: { colSpanDesktop: "colSpanDesktop", colSpanMobile: "colSpanMobile", colSpanTablet: "colSpanTablet" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1359
+ };
1360
+ SpwMosaicItem = __decorate([
1361
+ ProxyCmp({
1362
+ inputs: ['colSpanDesktop', 'colSpanMobile', 'colSpanTablet']
1363
+ })
1364
+ ], SpwMosaicItem);
1365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwMosaicItem, decorators: [{
1366
+ type: Component,
1367
+ args: [{
1368
+ selector: 'spw-mosaic-item',
1369
+ changeDetection: ChangeDetectionStrategy.OnPush,
1370
+ template: '<ng-content></ng-content>',
1371
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1372
+ inputs: ['colSpanDesktop', 'colSpanMobile', 'colSpanTablet'],
1373
+ }]
1374
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1375
+ let SpwPagination = class SpwPagination {
1376
+ constructor(c, r, z) {
1377
+ this.z = z;
1378
+ c.detach();
1379
+ this.el = r.nativeElement;
1380
+ proxyOutputs(this, this.el, ['pageChanged']);
1381
+ }
1382
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1383
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwPagination, isStandalone: true, selector: "spw-pagination", inputs: { currentPage: "currentPage", isDisabled: "isDisabled", isDynamic: "isDynamic", itemsPerPage: "itemsPerPage", nextButtonText: "nextButtonText", previousButtonText: "previousButtonText", totalItems: "totalItems", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1384
+ };
1385
+ SpwPagination = __decorate([
1386
+ ProxyCmp({
1387
+ inputs: ['currentPage', 'isDisabled', 'isDynamic', 'itemsPerPage', 'nextButtonText', 'previousButtonText', 'totalItems', 'variant'],
1388
+ methods: ['setPage']
1389
+ })
1390
+ ], SpwPagination);
1391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwPagination, decorators: [{
1392
+ type: Component,
1393
+ args: [{
1394
+ selector: 'spw-pagination',
1395
+ changeDetection: ChangeDetectionStrategy.OnPush,
1396
+ template: '<ng-content></ng-content>',
1397
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1398
+ inputs: ['currentPage', 'isDisabled', 'isDynamic', 'itemsPerPage', 'nextButtonText', 'previousButtonText', 'totalItems', 'variant'],
1399
+ }]
1400
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1401
+ let SpwRadio = class SpwRadio {
1402
+ constructor(c, r, z) {
1403
+ this.z = z;
1404
+ c.detach();
1405
+ this.el = r.nativeElement;
1406
+ proxyOutputs(this, this.el, ['spwChange']);
1407
+ }
1408
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1409
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwRadio, isStandalone: true, selector: "spw-radio", inputs: { accAriaLabel: "accAriaLabel", checked: "checked", disabled: "disabled", error: "error", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1410
+ };
1411
+ SpwRadio = __decorate([
1412
+ ProxyCmp({
1413
+ inputs: ['accAriaLabel', 'checked', 'disabled', 'error', 'name', 'value'],
1414
+ methods: ['setChecked']
1415
+ })
1416
+ ], SpwRadio);
1417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwRadio, decorators: [{
1418
+ type: Component,
1419
+ args: [{
1420
+ selector: 'spw-radio',
1421
+ changeDetection: ChangeDetectionStrategy.OnPush,
1422
+ template: '<ng-content></ng-content>',
1423
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1424
+ inputs: ['accAriaLabel', 'checked', 'disabled', 'error', 'name', 'value'],
1425
+ }]
1426
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1427
+ let SpwSearchField = class SpwSearchField {
1428
+ constructor(c, r, z) {
1429
+ this.z = z;
1430
+ c.detach();
1431
+ this.el = r.nativeElement;
1432
+ proxyOutputs(this, this.el, ['valueChanged', 'optionSelected']);
1433
+ }
1434
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1435
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSearchField, isStandalone: true, selector: "spw-search-field", inputs: { assistiveText: "assistiveText", disabled: "disabled", hasSubmitButton: "hasSubmitButton", isRounded: "isRounded", items: "items", label: "label", loadingText: "loadingText", minCharacters: "minCharacters", name: "name", noResults: "noResults", placeholder: "placeholder", required: "required", size: "size", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", viewAllResults: "viewAllResults", viewAllResultsLink: "viewAllResultsLink" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1436
+ };
1437
+ SpwSearchField = __decorate([
1438
+ ProxyCmp({
1439
+ inputs: ['assistiveText', 'disabled', 'hasSubmitButton', 'isRounded', 'items', 'label', 'loadingText', 'minCharacters', 'name', 'noResults', 'placeholder', 'required', 'size', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'viewAllResults', 'viewAllResultsLink'],
1440
+ methods: ['resetInput', 'setValue', 'getValue']
1441
+ })
1442
+ ], SpwSearchField);
1443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSearchField, decorators: [{
1444
+ type: Component,
1445
+ args: [{
1446
+ selector: 'spw-search-field',
1447
+ changeDetection: ChangeDetectionStrategy.OnPush,
1448
+ template: '<ng-content></ng-content>',
1449
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1450
+ inputs: ['assistiveText', 'disabled', 'hasSubmitButton', 'isRounded', 'items', 'label', 'loadingText', 'minCharacters', 'name', 'noResults', 'placeholder', 'required', 'size', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'viewAllResults', 'viewAllResultsLink'],
1451
+ }]
1452
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1453
+ let SpwSelect = class SpwSelect {
1454
+ constructor(c, r, z) {
1455
+ this.z = z;
1456
+ c.detach();
1457
+ this.el = r.nativeElement;
1458
+ proxyOutputs(this, this.el, ['valueChanged']);
1459
+ }
1460
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1461
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSelect, isStandalone: true, selector: "spw-select", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", itemLabel: "itemLabel", itemValue: "itemValue", items: "items", label: "label", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1462
+ };
1463
+ SpwSelect = __decorate([
1464
+ ProxyCmp({
1465
+ inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
1466
+ methods: ['resetSelect', 'setValue', 'getValue']
1467
+ })
1468
+ ], SpwSelect);
1469
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSelect, decorators: [{
1470
+ type: Component,
1471
+ args: [{
1472
+ selector: 'spw-select',
1473
+ changeDetection: ChangeDetectionStrategy.OnPush,
1474
+ template: '<ng-content></ng-content>',
1475
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1476
+ inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
1477
+ }]
1478
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1479
+ let SpwSeparator = class SpwSeparator {
1480
+ constructor(c, r, z) {
1481
+ this.z = z;
1482
+ c.detach();
1483
+ this.el = r.nativeElement;
1484
+ }
1485
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1486
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSeparator, isStandalone: true, 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 }); }
1487
+ };
1488
+ SpwSeparator = __decorate([
1489
+ ProxyCmp({
1490
+ inputs: ['direction', 'height', 'surface', 'thickness', 'width']
1491
+ })
1492
+ ], SpwSeparator);
1493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSeparator, decorators: [{
1494
+ type: Component,
1495
+ args: [{
1496
+ selector: 'spw-separator',
1497
+ changeDetection: ChangeDetectionStrategy.OnPush,
1498
+ template: '<ng-content></ng-content>',
1499
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1500
+ inputs: ['direction', 'height', 'surface', 'thickness', 'width'],
1501
+ }]
1502
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1503
+ let SpwSidebar = class SpwSidebar {
1504
+ constructor(c, r, z) {
1505
+ this.z = z;
1506
+ c.detach();
1507
+ this.el = r.nativeElement;
1508
+ }
1509
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1510
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSidebar, isStandalone: true, selector: "spw-sidebar", inputs: { defaultExpanded: "defaultExpanded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1511
+ };
1512
+ SpwSidebar = __decorate([
1513
+ ProxyCmp({
1514
+ inputs: ['defaultExpanded']
1515
+ })
1516
+ ], SpwSidebar);
1517
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebar, decorators: [{
1518
+ type: Component,
1519
+ args: [{
1520
+ selector: 'spw-sidebar',
1521
+ changeDetection: ChangeDetectionStrategy.OnPush,
1522
+ template: '<ng-content></ng-content>',
1523
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1524
+ inputs: ['defaultExpanded'],
1525
+ }]
1526
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1527
+ let SpwSidebarNavigationDropdown = class SpwSidebarNavigationDropdown {
1528
+ constructor(c, r, z) {
1529
+ this.z = z;
1530
+ c.detach();
1531
+ this.el = r.nativeElement;
1532
+ }
1533
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebarNavigationDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1534
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSidebarNavigationDropdown, isStandalone: true, selector: "spw-sidebar-navigation-dropdown", inputs: { open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1535
+ };
1536
+ SpwSidebarNavigationDropdown = __decorate([
1537
+ ProxyCmp({
1538
+ inputs: ['open']
1539
+ })
1540
+ ], SpwSidebarNavigationDropdown);
1541
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebarNavigationDropdown, decorators: [{
1542
+ type: Component,
1543
+ args: [{
1544
+ selector: 'spw-sidebar-navigation-dropdown',
1545
+ changeDetection: ChangeDetectionStrategy.OnPush,
1546
+ template: '<ng-content></ng-content>',
1547
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1548
+ inputs: ['open'],
1549
+ }]
1550
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1551
+ let SpwSidebarNavigationItem = class SpwSidebarNavigationItem {
1552
+ constructor(c, r, z) {
1553
+ this.z = z;
1554
+ c.detach();
1555
+ this.el = r.nativeElement;
1556
+ }
1557
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebarNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1558
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSidebarNavigationItem, isStandalone: true, selector: "spw-sidebar-navigation-item", inputs: { active: "active", bubble: "bubble", disabled: "disabled", href: "href", icon: "icon", iconVariant: "iconVariant", openOnClick: "openOnClick", tooltipTitle: "tooltipTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1559
+ };
1560
+ SpwSidebarNavigationItem = __decorate([
1561
+ ProxyCmp({
1562
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle']
1563
+ })
1564
+ ], SpwSidebarNavigationItem);
1565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebarNavigationItem, decorators: [{
1566
+ type: Component,
1567
+ args: [{
1568
+ selector: 'spw-sidebar-navigation-item',
1569
+ changeDetection: ChangeDetectionStrategy.OnPush,
1570
+ template: '<ng-content></ng-content>',
1571
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1572
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle'],
1573
+ }]
1574
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1575
+ let SpwSidebarNavigationSeparator = class SpwSidebarNavigationSeparator {
1576
+ constructor(c, r, z) {
1577
+ this.z = z;
1578
+ c.detach();
1579
+ this.el = r.nativeElement;
1580
+ }
1581
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebarNavigationSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1582
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSidebarNavigationSeparator, isStandalone: true, selector: "spw-sidebar-navigation-separator", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1583
+ };
1584
+ SpwSidebarNavigationSeparator = __decorate([
1585
+ ProxyCmp({})
1586
+ ], SpwSidebarNavigationSeparator);
1587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSidebarNavigationSeparator, decorators: [{
1588
+ type: Component,
1589
+ args: [{
1590
+ selector: 'spw-sidebar-navigation-separator',
1591
+ changeDetection: ChangeDetectionStrategy.OnPush,
1592
+ template: '<ng-content></ng-content>',
1593
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1594
+ inputs: [],
1595
+ }]
1596
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1597
+ let SpwSkeleton = class SpwSkeleton {
1598
+ constructor(c, r, z) {
1599
+ this.z = z;
1600
+ c.detach();
1601
+ this.el = r.nativeElement;
1602
+ }
1603
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1604
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSkeleton, isStandalone: true, selector: "spw-skeleton", inputs: { blocks: "blocks", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1605
+ };
1606
+ SpwSkeleton = __decorate([
1607
+ ProxyCmp({
1608
+ inputs: ['blocks', 'variant']
1609
+ })
1610
+ ], SpwSkeleton);
1611
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSkeleton, decorators: [{
1612
+ type: Component,
1613
+ args: [{
1614
+ selector: 'spw-skeleton',
1615
+ changeDetection: ChangeDetectionStrategy.OnPush,
1616
+ template: '<ng-content></ng-content>',
1617
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1618
+ inputs: ['blocks', 'variant'],
1619
+ }]
1620
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1621
+ let SpwSlider = class SpwSlider {
1622
+ constructor(c, r, z) {
1623
+ this.z = z;
1624
+ c.detach();
1625
+ this.el = r.nativeElement;
1626
+ }
1627
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1628
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSlider, isStandalone: true, selector: "spw-slider", inputs: { arrowsPosition: "arrowsPosition", autoplayEnabled: "autoplayEnabled", autoplayInterval: "autoplayInterval", autoplayText: "autoplayText", nextSlideText: "nextSlideText", previousSlideText: "previousSlideText", showArrows: "showArrows", showAutoplayToggle: "showAutoplayToggle", showDots: "showDots" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1629
+ };
1630
+ SpwSlider = __decorate([
1631
+ ProxyCmp({
1632
+ inputs: ['arrowsPosition', 'autoplayEnabled', 'autoplayInterval', 'autoplayText', 'nextSlideText', 'previousSlideText', 'showArrows', 'showAutoplayToggle', 'showDots']
1633
+ })
1634
+ ], SpwSlider);
1635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSlider, decorators: [{
1636
+ type: Component,
1637
+ args: [{
1638
+ selector: 'spw-slider',
1639
+ changeDetection: ChangeDetectionStrategy.OnPush,
1640
+ template: '<ng-content></ng-content>',
1641
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1642
+ inputs: ['arrowsPosition', 'autoplayEnabled', 'autoplayInterval', 'autoplayText', 'nextSlideText', 'previousSlideText', 'showArrows', 'showAutoplayToggle', 'showDots'],
1643
+ }]
1644
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1645
+ let SpwSliderItem = class SpwSliderItem {
1646
+ constructor(c, r, z) {
1647
+ this.z = z;
1648
+ c.detach();
1649
+ this.el = r.nativeElement;
1650
+ }
1651
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSliderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1652
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSliderItem, isStandalone: true, selector: "spw-slider-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1653
+ };
1654
+ SpwSliderItem = __decorate([
1655
+ ProxyCmp({})
1656
+ ], SpwSliderItem);
1657
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSliderItem, decorators: [{
1658
+ type: Component,
1659
+ args: [{
1660
+ selector: 'spw-slider-item',
1661
+ changeDetection: ChangeDetectionStrategy.OnPush,
1662
+ template: '<ng-content></ng-content>',
1663
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1664
+ inputs: [],
1665
+ }]
1666
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1667
+ let SpwSocials = class SpwSocials {
1668
+ constructor(c, r, z) {
1669
+ this.z = z;
1670
+ c.detach();
1671
+ this.el = r.nativeElement;
1672
+ }
1673
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSocials, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1674
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwSocials, isStandalone: true, selector: "spw-socials", inputs: { mainTitle: "mainTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1675
+ };
1676
+ SpwSocials = __decorate([
1677
+ ProxyCmp({
1678
+ inputs: ['mainTitle']
1679
+ })
1680
+ ], SpwSocials);
1681
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwSocials, decorators: [{
1682
+ type: Component,
1683
+ args: [{
1684
+ selector: 'spw-socials',
1685
+ changeDetection: ChangeDetectionStrategy.OnPush,
1686
+ template: '<ng-content></ng-content>',
1687
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1688
+ inputs: ['mainTitle'],
1689
+ }]
1690
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1691
+ let SpwTable = class SpwTable {
1692
+ constructor(c, r, z) {
1693
+ this.z = z;
1694
+ c.detach();
1695
+ this.el = r.nativeElement;
1696
+ proxyOutputs(this, this.el, ['spwSort', 'spwResize']);
1697
+ }
1698
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1699
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTable, isStandalone: true, selector: "spw-table", inputs: { accAriaLabel: "accAriaLabel", currentSort: "currentSort", disableSort: "disableSort", isSticky: "isSticky", isZebra: "isZebra", maxHeight: "maxHeight", minHeight: "minHeight", minWidth: "minWidth", resizable: "resizable", tableLayout: "tableLayout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1700
+ };
1701
+ SpwTable = __decorate([
1702
+ ProxyCmp({
1703
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minHeight', 'minWidth', 'resizable', 'tableLayout']
1704
+ })
1705
+ ], SpwTable);
1706
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTable, decorators: [{
1707
+ type: Component,
1708
+ args: [{
1709
+ selector: 'spw-table',
1710
+ changeDetection: ChangeDetectionStrategy.OnPush,
1711
+ template: '<ng-content></ng-content>',
1712
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1713
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minHeight', 'minWidth', 'resizable', 'tableLayout'],
1714
+ }]
1715
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1716
+ let SpwTableBody = class SpwTableBody {
1717
+ constructor(c, r, z) {
1718
+ this.z = z;
1719
+ c.detach();
1720
+ this.el = r.nativeElement;
1721
+ }
1722
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1723
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableBody, isStandalone: true, selector: "spw-table-body", inputs: { isZebra: "isZebra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1724
+ };
1725
+ SpwTableBody = __decorate([
1726
+ ProxyCmp({
1727
+ inputs: ['isZebra'],
1728
+ methods: ['updateZebraStyles']
1729
+ })
1730
+ ], SpwTableBody);
1731
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableBody, decorators: [{
1732
+ type: Component,
1733
+ args: [{
1734
+ selector: 'spw-table-body',
1735
+ changeDetection: ChangeDetectionStrategy.OnPush,
1736
+ template: '<ng-content></ng-content>',
1737
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1738
+ inputs: ['isZebra'],
1739
+ }]
1740
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1741
+ let SpwTableCell = class SpwTableCell {
1742
+ constructor(c, r, z) {
1743
+ this.z = z;
1744
+ c.detach();
1745
+ this.el = r.nativeElement;
1746
+ }
1747
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1748
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableCell, isStandalone: true, selector: "spw-table-cell", inputs: { colspan: "colspan", headers: "headers", isHighlighted: "isHighlighted", padding: "padding", rowspan: "rowspan", state: "state", sticky: "sticky", stickyOffset: "stickyOffset", stickyPosition: "stickyPosition", textAlign: "textAlign", verticalAlign: "verticalAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1749
+ };
1750
+ SpwTableCell = __decorate([
1751
+ ProxyCmp({
1752
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'verticalAlign', 'width']
1753
+ })
1754
+ ], SpwTableCell);
1755
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableCell, decorators: [{
1756
+ type: Component,
1757
+ args: [{
1758
+ selector: 'spw-table-cell',
1759
+ changeDetection: ChangeDetectionStrategy.OnPush,
1760
+ template: '<ng-content></ng-content>',
1761
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1762
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'verticalAlign', 'width'],
1763
+ }]
1764
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1765
+ let SpwTableContainer = class SpwTableContainer {
1766
+ constructor(c, r, z) {
1767
+ this.z = z;
1768
+ c.detach();
1769
+ this.el = r.nativeElement;
1770
+ }
1771
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1772
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableContainer, isStandalone: true, selector: "spw-table-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1773
+ };
1774
+ SpwTableContainer = __decorate([
1775
+ ProxyCmp({})
1776
+ ], SpwTableContainer);
1777
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableContainer, decorators: [{
1778
+ type: Component,
1779
+ args: [{
1780
+ selector: 'spw-table-container',
1781
+ changeDetection: ChangeDetectionStrategy.OnPush,
1782
+ template: '<ng-content></ng-content>',
1783
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1784
+ inputs: [],
1785
+ }]
1786
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1787
+ let SpwTableFooter = class SpwTableFooter {
1788
+ constructor(c, r, z) {
1789
+ this.z = z;
1790
+ c.detach();
1791
+ this.el = r.nativeElement;
1792
+ }
1793
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1794
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableFooter, isStandalone: true, selector: "spw-table-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1795
+ };
1796
+ SpwTableFooter = __decorate([
1797
+ ProxyCmp({})
1798
+ ], SpwTableFooter);
1799
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableFooter, decorators: [{
1800
+ type: Component,
1801
+ args: [{
1802
+ selector: 'spw-table-footer',
1803
+ changeDetection: ChangeDetectionStrategy.OnPush,
1804
+ template: '<ng-content></ng-content>',
1805
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1806
+ inputs: [],
1807
+ }]
1808
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1809
+ let SpwTableHead = class SpwTableHead {
1810
+ constructor(c, r, z) {
1811
+ this.z = z;
1812
+ c.detach();
1813
+ this.el = r.nativeElement;
1814
+ }
1815
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableHead, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1816
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableHead, isStandalone: true, selector: "spw-table-head", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1817
+ };
1818
+ SpwTableHead = __decorate([
1819
+ ProxyCmp({})
1820
+ ], SpwTableHead);
1821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableHead, decorators: [{
1822
+ type: Component,
1823
+ args: [{
1824
+ selector: 'spw-table-head',
1825
+ changeDetection: ChangeDetectionStrategy.OnPush,
1826
+ template: '<ng-content></ng-content>',
1827
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1828
+ inputs: [],
1829
+ }]
1830
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1831
+ let SpwTableHeader = class SpwTableHeader {
1832
+ constructor(c, r, z) {
1833
+ this.z = z;
1834
+ c.detach();
1835
+ this.el = r.nativeElement;
1836
+ proxyOutputs(this, this.el, ['spwHeaderClick']);
1837
+ }
1838
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1839
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableHeader, isStandalone: true, selector: "spw-table-header", inputs: { colspan: "colspan", columnId: "columnId", headers: "headers", isHighlighted: "isHighlighted", isSorted: "isSorted", padding: "padding", rowspan: "rowspan", sortDirection: "sortDirection", sortable: "sortable", sticky: "sticky", stickyOffset: "stickyOffset", stickyPosition: "stickyPosition", textAlign: "textAlign", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", verticalAlign: "verticalAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1840
+ };
1841
+ SpwTableHeader = __decorate([
1842
+ ProxyCmp({
1843
+ inputs: ['colspan', 'columnId', 'headers', 'isHighlighted', 'isSorted', 'padding', 'rowspan', 'sortDirection', 'sortable', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'tooltipText', 'tooltipTitle', 'verticalAlign']
1844
+ })
1845
+ ], SpwTableHeader);
1846
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableHeader, decorators: [{
1847
+ type: Component,
1848
+ args: [{
1849
+ selector: 'spw-table-header',
1850
+ changeDetection: ChangeDetectionStrategy.OnPush,
1851
+ template: '<ng-content></ng-content>',
1852
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1853
+ inputs: ['colspan', 'columnId', 'headers', 'isHighlighted', 'isSorted', 'padding', 'rowspan', 'sortDirection', 'sortable', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'tooltipText', 'tooltipTitle', 'verticalAlign'],
1854
+ }]
1855
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1856
+ let SpwTableRow = class SpwTableRow {
1857
+ constructor(c, r, z) {
1858
+ this.z = z;
1859
+ c.detach();
1860
+ this.el = r.nativeElement;
1861
+ }
1862
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1863
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableRow, isStandalone: true, selector: "spw-table-row", inputs: { padding: "padding", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1864
+ };
1865
+ SpwTableRow = __decorate([
1866
+ ProxyCmp({
1867
+ inputs: ['padding', 'state']
1868
+ })
1869
+ ], SpwTableRow);
1870
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableRow, decorators: [{
1871
+ type: Component,
1872
+ args: [{
1873
+ selector: 'spw-table-row',
1874
+ changeDetection: ChangeDetectionStrategy.OnPush,
1875
+ template: '<ng-content></ng-content>',
1876
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1877
+ inputs: ['padding', 'state'],
1878
+ }]
1879
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1880
+ let SpwTableSidebar = class SpwTableSidebar {
1881
+ constructor(c, r, z) {
1882
+ this.z = z;
1883
+ c.detach();
1884
+ this.el = r.nativeElement;
1885
+ proxyOutputs(this, this.el, ['sidebarReset']);
1886
+ }
1887
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1888
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTableSidebar, isStandalone: true, selector: "spw-table-sidebar", inputs: { defaultExpanded: "defaultExpanded", hasReset: "hasReset", resetIcon: "resetIcon", sidebarIcon: "sidebarIcon", sidebarTitle: "sidebarTitle", sidebarWidth: "sidebarWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1889
+ };
1890
+ SpwTableSidebar = __decorate([
1891
+ ProxyCmp({
1892
+ inputs: ['defaultExpanded', 'hasReset', 'resetIcon', 'sidebarIcon', 'sidebarTitle', 'sidebarWidth']
1893
+ })
1894
+ ], SpwTableSidebar);
1895
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTableSidebar, decorators: [{
1896
+ type: Component,
1897
+ args: [{
1898
+ selector: 'spw-table-sidebar',
1899
+ changeDetection: ChangeDetectionStrategy.OnPush,
1900
+ template: '<ng-content></ng-content>',
1901
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1902
+ inputs: ['defaultExpanded', 'hasReset', 'resetIcon', 'sidebarIcon', 'sidebarTitle', 'sidebarWidth'],
1903
+ }]
1904
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1905
+ let SpwTabs = class SpwTabs {
1906
+ constructor(c, r, z) {
1907
+ this.z = z;
1908
+ c.detach();
1909
+ this.el = r.nativeElement;
1910
+ proxyOutputs(this, this.el, ['tabChanged']);
1911
+ }
1912
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1913
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTabs, isStandalone: true, selector: "spw-tabs", inputs: { defaultActiveTab: "defaultActiveTab", hasEllipsis: "hasEllipsis", maxWidth: "maxWidth", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1914
+ };
1915
+ SpwTabs = __decorate([
1916
+ ProxyCmp({
1917
+ inputs: ['defaultActiveTab', 'hasEllipsis', 'maxWidth', 'size', 'variant'],
1918
+ methods: ['getSelectedTab', 'setSelectedTab']
1919
+ })
1920
+ ], SpwTabs);
1921
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabs, decorators: [{
1922
+ type: Component,
1923
+ args: [{
1924
+ selector: 'spw-tabs',
1925
+ changeDetection: ChangeDetectionStrategy.OnPush,
1926
+ template: '<ng-content></ng-content>',
1927
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1928
+ inputs: ['defaultActiveTab', 'hasEllipsis', 'maxWidth', 'size', 'variant'],
1929
+ }]
1930
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1931
+ let SpwTabsContent = class SpwTabsContent {
1932
+ constructor(c, r, z) {
1933
+ this.z = z;
1934
+ c.detach();
1935
+ this.el = r.nativeElement;
1936
+ }
1937
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabsContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1938
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTabsContent, isStandalone: true, selector: "spw-tabs-content", inputs: { active: "active", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1939
+ };
1940
+ SpwTabsContent = __decorate([
1941
+ ProxyCmp({
1942
+ inputs: ['active', 'tabId']
1943
+ })
1944
+ ], SpwTabsContent);
1945
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabsContent, decorators: [{
1946
+ type: Component,
1947
+ args: [{
1948
+ selector: 'spw-tabs-content',
1949
+ changeDetection: ChangeDetectionStrategy.OnPush,
1950
+ template: '<ng-content></ng-content>',
1951
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1952
+ inputs: ['active', 'tabId'],
1953
+ }]
1954
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1955
+ let SpwTabsNavigation = class SpwTabsNavigation {
1956
+ constructor(c, r, z) {
1957
+ this.z = z;
1958
+ c.detach();
1959
+ this.el = r.nativeElement;
1960
+ }
1961
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabsNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1962
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTabsNavigation, isStandalone: true, selector: "spw-tabs-navigation", inputs: { accAriaLabel: "accAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1963
+ };
1964
+ SpwTabsNavigation = __decorate([
1965
+ ProxyCmp({
1966
+ inputs: ['accAriaLabel']
1967
+ })
1968
+ ], SpwTabsNavigation);
1969
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabsNavigation, decorators: [{
1970
+ type: Component,
1971
+ args: [{
1972
+ selector: 'spw-tabs-navigation',
1973
+ changeDetection: ChangeDetectionStrategy.OnPush,
1974
+ template: '<ng-content></ng-content>',
1975
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1976
+ inputs: ['accAriaLabel'],
1977
+ }]
1978
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1979
+ let SpwTabsNavigationItem = class SpwTabsNavigationItem {
1980
+ constructor(c, r, z) {
1981
+ this.z = z;
1982
+ c.detach();
1983
+ this.el = r.nativeElement;
1984
+ proxyOutputs(this, this.el, ['tabSelected']);
1985
+ }
1986
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabsNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1987
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTabsNavigationItem, isStandalone: true, selector: "spw-tabs-navigation-item", inputs: { active: "active", bubble: "bubble", disabled: "disabled", hasEllipsis: "hasEllipsis", icon: "icon", iconPosition: "iconPosition", tabId: "tabId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1988
+ };
1989
+ SpwTabsNavigationItem = __decorate([
1990
+ ProxyCmp({
1991
+ inputs: ['active', 'bubble', 'disabled', 'hasEllipsis', 'icon', 'iconPosition', 'tabId']
1992
+ })
1993
+ ], SpwTabsNavigationItem);
1994
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTabsNavigationItem, decorators: [{
1995
+ type: Component,
1996
+ args: [{
1997
+ selector: 'spw-tabs-navigation-item',
1998
+ changeDetection: ChangeDetectionStrategy.OnPush,
1999
+ template: '<ng-content></ng-content>',
2000
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2001
+ inputs: ['active', 'bubble', 'disabled', 'hasEllipsis', 'icon', 'iconPosition', 'tabId'],
2002
+ }]
2003
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2004
+ let SpwTag = class SpwTag {
2005
+ constructor(c, r, z) {
2006
+ this.z = z;
2007
+ c.detach();
2008
+ this.el = r.nativeElement;
2009
+ }
2010
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2011
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTag, isStandalone: true, selector: "spw-tag", inputs: { hasIcon: "hasIcon", href: "href", size: "size", surface: "surface", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2012
+ };
2013
+ SpwTag = __decorate([
2014
+ ProxyCmp({
2015
+ inputs: ['hasIcon', 'href', 'size', 'surface', 'target', 'variant']
2016
+ })
2017
+ ], SpwTag);
2018
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTag, decorators: [{
2019
+ type: Component,
2020
+ args: [{
2021
+ selector: 'spw-tag',
2022
+ changeDetection: ChangeDetectionStrategy.OnPush,
2023
+ template: '<ng-content></ng-content>',
2024
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2025
+ inputs: ['hasIcon', 'href', 'size', 'surface', 'target', 'variant'],
2026
+ }]
2027
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2028
+ let SpwTextField = class SpwTextField {
2029
+ constructor(c, r, z) {
2030
+ this.z = z;
2031
+ c.detach();
2032
+ this.el = r.nativeElement;
2033
+ proxyOutputs(this, this.el, ['valueChanged']);
2034
+ }
2035
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2036
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTextField, isStandalone: true, selector: "spw-text-field", inputs: { accAriaLabel: "accAriaLabel", assistiveText: "assistiveText", disabled: "disabled", error: "error", hint: "hint", indicator: "indicator", isClear: "isClear", isSearch: "isSearch", label: "label", mask: "mask", max: "max", maxLength: "maxLength", min: "min", minLength: "minLength", name: "name", placeholder: "placeholder", required: "required", showErrorIcon: "showErrorIcon", showHintIcon: "showHintIcon", showSuccessIcon: "showSuccessIcon", showWarningIcon: "showWarningIcon", size: "size", step: "step", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", type: "type", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2037
+ };
2038
+ SpwTextField = __decorate([
2039
+ ProxyCmp({
2040
+ inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'mask', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type', 'value', 'warning'],
2041
+ methods: ['setValue']
2042
+ })
2043
+ ], SpwTextField);
2044
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTextField, decorators: [{
2045
+ type: Component,
2046
+ args: [{
2047
+ selector: 'spw-text-field',
2048
+ changeDetection: ChangeDetectionStrategy.OnPush,
2049
+ template: '<ng-content></ng-content>',
2050
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2051
+ inputs: ['accAriaLabel', 'assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isClear', 'isSearch', 'label', 'mask', 'max', 'maxLength', 'min', 'minLength', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'step', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'type', 'value', 'warning'],
2052
+ }]
2053
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2054
+ let SpwTextarea = class SpwTextarea {
2055
+ constructor(c, r, z) {
2056
+ this.z = z;
2057
+ c.detach();
2058
+ this.el = r.nativeElement;
2059
+ proxyOutputs(this, this.el, ['valueChanged']);
2060
+ }
2061
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2062
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTextarea, isStandalone: true, 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", showWarningIcon: "showWarningIcon", size: "size", success: "success", tooltipCursor: "tooltipCursor", tooltipDirection: "tooltipDirection", tooltipMaxWidth: "tooltipMaxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", value: "value", warning: "warning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2063
+ };
2064
+ SpwTextarea = __decorate([
2065
+ ProxyCmp({
2066
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning']
2067
+ })
2068
+ ], SpwTextarea);
2069
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTextarea, decorators: [{
2070
+ type: Component,
2071
+ args: [{
2072
+ selector: 'spw-textarea',
2073
+ changeDetection: ChangeDetectionStrategy.OnPush,
2074
+ template: '<ng-content></ng-content>',
2075
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2076
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'indicator', 'isSearch', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'required', 'rows', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'tooltipCursor', 'tooltipDirection', 'tooltipMaxWidth', 'tooltipText', 'tooltipTitle', 'value', 'warning'],
2077
+ }]
2078
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2079
+ let SpwThemeProvider = class SpwThemeProvider {
2080
+ constructor(c, r, z) {
2081
+ this.z = z;
2082
+ c.detach();
2083
+ this.el = r.nativeElement;
2084
+ }
2085
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2086
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwThemeProvider, isStandalone: true, selector: "spw-theme-provider", inputs: { theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2087
+ };
2088
+ SpwThemeProvider = __decorate([
2089
+ ProxyCmp({
2090
+ inputs: ['theme']
2091
+ })
2092
+ ], SpwThemeProvider);
2093
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwThemeProvider, decorators: [{
2094
+ type: Component,
2095
+ args: [{
2096
+ selector: 'spw-theme-provider',
2097
+ changeDetection: ChangeDetectionStrategy.OnPush,
2098
+ template: '<ng-content></ng-content>',
2099
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2100
+ inputs: ['theme'],
2101
+ }]
2102
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2103
+ let SpwTile = class SpwTile {
2104
+ constructor(c, r, z) {
2105
+ this.z = z;
2106
+ c.detach();
2107
+ this.el = r.nativeElement;
2108
+ }
2109
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2110
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTile, isStandalone: true, selector: "spw-tile", inputs: { height: "height", href: "href", imageAlt: "imageAlt", imageSrc: "imageSrc", overlayOpacity: "overlayOpacity", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2111
+ };
2112
+ SpwTile = __decorate([
2113
+ ProxyCmp({
2114
+ inputs: ['height', 'href', 'imageAlt', 'imageSrc', 'overlayOpacity', 'target', 'variant']
2115
+ })
2116
+ ], SpwTile);
2117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTile, decorators: [{
2118
+ type: Component,
2119
+ args: [{
2120
+ selector: 'spw-tile',
2121
+ changeDetection: ChangeDetectionStrategy.OnPush,
2122
+ template: '<ng-content></ng-content>',
2123
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2124
+ inputs: ['height', 'href', 'imageAlt', 'imageSrc', 'overlayOpacity', 'target', 'variant'],
2125
+ }]
2126
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2127
+ let SpwTileDescription = class SpwTileDescription {
2128
+ constructor(c, r, z) {
2129
+ this.z = z;
2130
+ c.detach();
2131
+ this.el = r.nativeElement;
2132
+ }
2133
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTileDescription, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2134
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTileDescription, isStandalone: true, selector: "spw-tile-description", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2135
+ };
2136
+ SpwTileDescription = __decorate([
2137
+ ProxyCmp({})
2138
+ ], SpwTileDescription);
2139
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTileDescription, decorators: [{
2140
+ type: Component,
2141
+ args: [{
2142
+ selector: 'spw-tile-description',
2143
+ changeDetection: ChangeDetectionStrategy.OnPush,
2144
+ template: '<ng-content></ng-content>',
2145
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2146
+ inputs: [],
2147
+ }]
2148
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2149
+ let SpwTileTitle = class SpwTileTitle {
2150
+ constructor(c, r, z) {
2151
+ this.z = z;
2152
+ c.detach();
2153
+ this.el = r.nativeElement;
2154
+ }
2155
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTileTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2156
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTileTitle, isStandalone: true, selector: "spw-tile-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2157
+ };
2158
+ SpwTileTitle = __decorate([
2159
+ ProxyCmp({})
2160
+ ], SpwTileTitle);
2161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTileTitle, decorators: [{
2162
+ type: Component,
2163
+ args: [{
2164
+ selector: 'spw-tile-title',
2165
+ changeDetection: ChangeDetectionStrategy.OnPush,
2166
+ template: '<ng-content></ng-content>',
2167
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2168
+ inputs: [],
2169
+ }]
2170
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2171
+ let SpwTimeline = class SpwTimeline {
2172
+ constructor(c, r, z) {
2173
+ this.z = z;
2174
+ c.detach();
2175
+ this.el = r.nativeElement;
2176
+ }
2177
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimeline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2178
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTimeline, isStandalone: true, selector: "spw-timeline", inputs: { showMoreText: "showMoreText", visibleItems: "visibleItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2179
+ };
2180
+ SpwTimeline = __decorate([
2181
+ ProxyCmp({
2182
+ inputs: ['showMoreText', 'visibleItems']
2183
+ })
2184
+ ], SpwTimeline);
2185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimeline, decorators: [{
2186
+ type: Component,
2187
+ args: [{
2188
+ selector: 'spw-timeline',
2189
+ changeDetection: ChangeDetectionStrategy.OnPush,
2190
+ template: '<ng-content></ng-content>',
2191
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2192
+ inputs: ['showMoreText', 'visibleItems'],
2193
+ }]
2194
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2195
+ let SpwTimelineItem = class SpwTimelineItem {
2196
+ constructor(c, r, z) {
2197
+ this.z = z;
2198
+ c.detach();
2199
+ this.el = r.nativeElement;
2200
+ }
2201
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimelineItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2202
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTimelineItem, isStandalone: true, selector: "spw-timeline-item", inputs: { accAriaLabel: "accAriaLabel", description: "description", href: "href", isLast: "isLast", label: "label", state: "state", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2203
+ };
2204
+ SpwTimelineItem = __decorate([
2205
+ ProxyCmp({
2206
+ inputs: ['accAriaLabel', 'description', 'href', 'isLast', 'label', 'state', 'target', 'variant']
2207
+ })
2208
+ ], SpwTimelineItem);
2209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTimelineItem, decorators: [{
2210
+ type: Component,
2211
+ args: [{
2212
+ selector: 'spw-timeline-item',
2213
+ changeDetection: ChangeDetectionStrategy.OnPush,
2214
+ template: '<ng-content></ng-content>',
2215
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2216
+ inputs: ['accAriaLabel', 'description', 'href', 'isLast', 'label', 'state', 'target', 'variant'],
2217
+ }]
2218
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2219
+ let SpwToc = class SpwToc {
2220
+ constructor(c, r, z) {
2221
+ this.z = z;
2222
+ c.detach();
2223
+ this.el = r.nativeElement;
2224
+ }
2225
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwToc, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2226
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwToc, isStandalone: true, selector: "spw-toc", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2227
+ };
2228
+ SpwToc = __decorate([
2229
+ ProxyCmp({})
2230
+ ], SpwToc);
2231
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwToc, decorators: [{
2232
+ type: Component,
2233
+ args: [{
2234
+ selector: 'spw-toc',
2235
+ changeDetection: ChangeDetectionStrategy.OnPush,
2236
+ template: '<ng-content></ng-content>',
2237
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2238
+ inputs: [],
2239
+ }]
2240
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2241
+ let SpwTocContainer = class SpwTocContainer {
2242
+ constructor(c, r, z) {
2243
+ this.z = z;
2244
+ c.detach();
2245
+ this.el = r.nativeElement;
2246
+ proxyOutputs(this, this.el, ['tocItemsChanged']);
2247
+ }
2248
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTocContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2249
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTocContainer, isStandalone: true, selector: "spw-toc-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2250
+ };
2251
+ SpwTocContainer = __decorate([
2252
+ ProxyCmp({
2253
+ methods: ['getItems']
2254
+ })
2255
+ ], SpwTocContainer);
2256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTocContainer, decorators: [{
2257
+ type: Component,
2258
+ args: [{
2259
+ selector: 'spw-toc-container',
2260
+ changeDetection: ChangeDetectionStrategy.OnPush,
2261
+ template: '<ng-content></ng-content>',
2262
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2263
+ inputs: [],
2264
+ }]
2265
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2266
+ let SpwTocNavigation = class SpwTocNavigation {
2267
+ constructor(c, r, z) {
2268
+ this.z = z;
2269
+ c.detach();
2270
+ this.el = r.nativeElement;
2271
+ }
2272
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTocNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2273
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTocNavigation, isStandalone: true, selector: "spw-toc-navigation", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2274
+ };
2275
+ SpwTocNavigation = __decorate([
2276
+ ProxyCmp({})
2277
+ ], SpwTocNavigation);
2278
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTocNavigation, decorators: [{
2279
+ type: Component,
2280
+ args: [{
2281
+ selector: 'spw-toc-navigation',
2282
+ changeDetection: ChangeDetectionStrategy.OnPush,
2283
+ template: '<ng-content></ng-content>',
2284
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2285
+ inputs: [],
2286
+ }]
2287
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2288
+ let SpwTooltip = class SpwTooltip {
2289
+ constructor(c, r, z) {
2290
+ this.z = z;
2291
+ c.detach();
2292
+ this.el = r.nativeElement;
2293
+ }
2294
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2295
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTooltip, isStandalone: true, selector: "spw-tooltip", inputs: { cursor: "cursor", direction: "direction", maxWidth: "maxWidth", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2296
+ };
2297
+ SpwTooltip = __decorate([
2298
+ ProxyCmp({
2299
+ inputs: ['cursor', 'direction', 'maxWidth', 'tooltipText', 'tooltipTitle', 'visible']
2300
+ })
2301
+ ], SpwTooltip);
2302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTooltip, decorators: [{
2303
+ type: Component,
2304
+ args: [{
2305
+ selector: 'spw-tooltip',
2306
+ changeDetection: ChangeDetectionStrategy.OnPush,
2307
+ template: '<ng-content></ng-content>',
2308
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2309
+ inputs: ['cursor', 'direction', 'maxWidth', 'tooltipText', 'tooltipTitle', 'visible'],
2310
+ }]
2311
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2312
+ let SpwTopbar = class SpwTopbar {
2313
+ constructor(c, r, z) {
2314
+ this.z = z;
2315
+ c.detach();
2316
+ this.el = r.nativeElement;
2317
+ }
2318
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTopbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2319
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwTopbar, isStandalone: true, selector: "spw-topbar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2320
+ };
2321
+ SpwTopbar = __decorate([
2322
+ ProxyCmp({})
2323
+ ], SpwTopbar);
2324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwTopbar, decorators: [{
2325
+ type: Component,
2326
+ args: [{
2327
+ selector: 'spw-topbar',
2328
+ changeDetection: ChangeDetectionStrategy.OnPush,
2329
+ template: '<ng-content></ng-content>',
2330
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2331
+ inputs: [],
2332
+ }]
2333
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2334
+ let SpwWizard = class SpwWizard {
2335
+ constructor(c, r, z) {
2336
+ this.z = z;
2337
+ c.detach();
2338
+ this.el = r.nativeElement;
2339
+ proxyOutputs(this, this.el, ['stepClick']);
2340
+ }
2341
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwWizard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2342
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwWizard, isStandalone: true, selector: "spw-wizard", inputs: { currentStep: "currentStep", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2343
+ };
2344
+ SpwWizard = __decorate([
2345
+ ProxyCmp({
2346
+ inputs: ['currentStep', 'variant'],
2347
+ methods: ['setStep']
2348
+ })
2349
+ ], SpwWizard);
2350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwWizard, decorators: [{
2351
+ type: Component,
2352
+ args: [{
2353
+ selector: 'spw-wizard',
2354
+ changeDetection: ChangeDetectionStrategy.OnPush,
2355
+ template: '<ng-content></ng-content>',
2356
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2357
+ inputs: ['currentStep', 'variant'],
2358
+ }]
2359
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2360
+ let SpwWizardItem = class SpwWizardItem {
2361
+ constructor(c, r, z) {
2362
+ this.z = z;
2363
+ c.detach();
2364
+ this.el = r.nativeElement;
2365
+ proxyOutputs(this, this.el, ['wizardItemClick']);
2366
+ }
2367
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwWizardItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2368
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", type: SpwWizardItem, isStandalone: true, selector: "spw-wizard-item", inputs: { additionalInfo: "additionalInfo", description: "description", icon: "icon", isAfterCurrent: "isAfterCurrent", isBeforeCurrent: "isBeforeCurrent", isClickable: "isClickable", isCurrent: "isCurrent", isLast: "isLast", label: "label", state: "state", status: "status", stepNumber: "stepNumber", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2369
+ };
2370
+ SpwWizardItem = __decorate([
2371
+ ProxyCmp({
2372
+ inputs: ['additionalInfo', 'description', 'icon', 'isAfterCurrent', 'isBeforeCurrent', 'isClickable', 'isCurrent', 'isLast', 'label', 'state', 'status', 'stepNumber', 'variant']
2373
+ })
2374
+ ], SpwWizardItem);
2375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwWizardItem, decorators: [{
2376
+ type: Component,
2377
+ args: [{
2378
+ selector: 'spw-wizard-item',
2379
+ changeDetection: ChangeDetectionStrategy.OnPush,
2380
+ template: '<ng-content></ng-content>',
2381
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2382
+ inputs: ['additionalInfo', 'description', 'icon', 'isAfterCurrent', 'isBeforeCurrent', 'isClickable', 'isCurrent', 'isLast', 'label', 'state', 'status', 'stepNumber', 'variant'],
2383
+ }]
2384
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2385
+
2386
+ const DIRECTIVES = [
2387
+ SpwAccordion,
2388
+ SpwAccordionContent,
2389
+ SpwAccordionItem,
2390
+ SpwAccordionTitle,
2391
+ SpwBreadcrumb,
2392
+ SpwBreadcrumbItem,
2393
+ SpwButton,
2394
+ SpwCard,
2395
+ SpwCardContent,
2396
+ SpwCardExcerpt,
2397
+ SpwCardImage,
2398
+ SpwCardSubtagItem,
2399
+ SpwCardSubtags,
2400
+ SpwCardTitle,
2401
+ SpwCheckbox,
2402
+ SpwCookies,
2403
+ SpwCustomSelect,
2404
+ SpwDatePicker,
2405
+ SpwDropdown,
2406
+ SpwDropdownContainer,
2407
+ SpwDropdownItem,
2408
+ SpwFieldLabel,
2409
+ SpwFieldMessage,
2410
+ SpwFileUpload,
2411
+ SpwFooter,
2412
+ SpwFooterBottom,
2413
+ SpwFooterContent,
2414
+ SpwFooterContentCol,
2415
+ SpwFooterLink,
2416
+ SpwGrid,
2417
+ SpwGridItem,
2418
+ SpwGroup,
2419
+ SpwHeader,
2420
+ SpwHeaderLang,
2421
+ SpwHeaderLangItem,
2422
+ SpwHeaderNavigation,
2423
+ SpwHeaderNavigationDropdown,
2424
+ SpwHeaderNavigationItem,
2425
+ SpwHeaderPersona,
2426
+ SpwHeaderPersonaItem,
2427
+ SpwHero,
2428
+ SpwIcon,
2429
+ SpwIllustration,
2430
+ SpwInputSlider,
2431
+ SpwLink,
2432
+ SpwList,
2433
+ SpwListDescription,
2434
+ SpwListItem,
2435
+ SpwListTitle,
2436
+ SpwLoading,
2437
+ SpwMessage,
2438
+ SpwModal,
2439
+ SpwMosaic,
2440
+ SpwMosaicItem,
2441
+ SpwPagination,
2442
+ SpwRadio,
2443
+ SpwSearchField,
2444
+ SpwSelect,
2445
+ SpwSeparator,
2446
+ SpwSidebar,
2447
+ SpwSidebarNavigationDropdown,
2448
+ SpwSidebarNavigationItem,
2449
+ SpwSidebarNavigationSeparator,
2450
+ SpwSkeleton,
2451
+ SpwSlider,
2452
+ SpwSliderItem,
2453
+ SpwSocials,
2454
+ SpwTable,
2455
+ SpwTableBody,
2456
+ SpwTableCell,
2457
+ SpwTableContainer,
2458
+ SpwTableFooter,
2459
+ SpwTableHead,
2460
+ SpwTableHeader,
2461
+ SpwTableRow,
2462
+ SpwTableSidebar,
2463
+ SpwTabs,
2464
+ SpwTabsContent,
2465
+ SpwTabsNavigation,
2466
+ SpwTabsNavigationItem,
2467
+ SpwTag,
2468
+ SpwTextField,
2469
+ SpwTextarea,
2470
+ SpwThemeProvider,
2471
+ SpwTile,
2472
+ SpwTileDescription,
2473
+ SpwTileTitle,
2474
+ SpwTimeline,
2475
+ SpwTimelineItem,
2476
+ SpwToc,
2477
+ SpwTocContainer,
2478
+ SpwTocNavigation,
2479
+ SpwTooltip,
2480
+ SpwTopbar,
2481
+ SpwWizard,
2482
+ SpwWizardItem
2483
+ ];
2484
+
2485
+ class SpwDesignSystemDirectivesModule {
2486
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2487
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule, imports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwInputSlider, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTimeline, SpwTimelineItem, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem], exports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwInputSlider, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTimeline, SpwTimelineItem, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem] }); }
2488
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule }); }
2489
+ }
2490
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemDirectivesModule, decorators: [{
2491
+ type: NgModule,
2492
+ args: [{
2493
+ imports: [...DIRECTIVES],
2494
+ exports: [...DIRECTIVES],
2495
+ }]
2496
+ }] });
2497
+
2498
+ class SpwDesignSystemModule {
2499
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2500
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemModule, imports: [SpwDesignSystemDirectivesModule], exports: [SpwDesignSystemDirectivesModule] }); }
2501
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemModule, providers: [
2502
+ {
2503
+ provide: APP_INITIALIZER,
2504
+ useFactory: () => defineCustomElements,
2505
+ multi: true,
2506
+ },
2507
+ ], imports: [SpwDesignSystemDirectivesModule, SpwDesignSystemDirectivesModule] }); }
2508
+ }
2509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: SpwDesignSystemModule, decorators: [{
2510
+ type: NgModule,
2511
+ args: [{
2512
+ imports: [SpwDesignSystemDirectivesModule],
2513
+ exports: [SpwDesignSystemDirectivesModule],
2514
+ providers: [
2515
+ {
2516
+ provide: APP_INITIALIZER,
2517
+ useFactory: () => defineCustomElements,
2518
+ multi: true,
2519
+ },
2520
+ ],
2521
+ }]
2522
+ }] });
2523
+
2524
+ /**
2525
+ * Generated bundle index. Do not edit.
2526
+ */
2527
+
2528
+ export { SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDesignSystemDirectivesModule, SpwDesignSystemModule, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGrid, SpwGridItem, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwInputSlider, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSlider, SpwSliderItem, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableContainer, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTableSidebar, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTimeline, SpwTimelineItem, SpwToc, SpwTocContainer, SpwTocNavigation, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem };
2529
+ //# sourceMappingURL=spw-ds-spw-angular-library.mjs.map