@getflip/swirl-components-angular 0.346.0 → 0.347.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. package/.turbo/turbo-build.log +2 -1
  2. package/CHANGELOG.md +14 -0
  3. package/dist/component-library/esm2022/getflip-swirl-components-angular.mjs +5 -0
  4. package/dist/component-library/esm2022/lib/component-library.module.mjs +35 -0
  5. package/dist/component-library/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
  6. package/dist/component-library/esm2022/lib/stencil-generated/boolean-value-accessor.mjs +38 -0
  7. package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +10853 -0
  8. package/dist/component-library/esm2022/lib/stencil-generated/index.mjs +403 -0
  9. package/dist/component-library/esm2022/lib/stencil-generated/select-value-accessor.mjs +35 -0
  10. package/dist/component-library/esm2022/lib/stencil-generated/text-value-accessor.mjs +35 -0
  11. package/dist/component-library/esm2022/lib/stencil-generated/value-accessor.mjs +42 -0
  12. package/dist/component-library/esm2022/public-api.mjs +9 -0
  13. package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1691 -2093
  14. package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
  15. package/dist/component-library/lib/stencil-generated/components.d.ts +467 -467
  16. package/dist/component-library/lib/stencil-generated/value-accessor.d.ts +1 -1
  17. package/dist/component-library/package.json +25 -0
  18. package/package.json +17 -17
  19. package/projects/component-library/src/lib/stencil-generated/boolean-value-accessor.ts +3 -4
  20. package/projects/component-library/src/lib/stencil-generated/components.ts +467 -866
  21. package/projects/component-library/src/lib/stencil-generated/select-value-accessor.ts +2 -3
  22. package/projects/component-library/src/lib/stencil-generated/text-value-accessor.ts +2 -3
@@ -15,10 +15,9 @@ import { Components } from '@getflip/swirl-components';
15
15
  template: '<ng-content></ng-content>',
16
16
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
17
17
  inputs: [],
18
- standalone: false
19
18
  })
20
19
  export class FileManager {
21
- protected el: HTMLFileManagerElement;
20
+ protected el: HTMLElement;
22
21
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
23
22
  c.detach();
24
23
  this.el = r.nativeElement;
@@ -38,10 +37,9 @@ export declare interface FileManager extends Components.FileManager {}
38
37
  template: '<ng-content></ng-content>',
39
38
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
40
39
  inputs: [],
41
- standalone: false
42
40
  })
43
41
  export class SwirlAccordion {
44
- protected el: HTMLSwirlAccordionElement;
42
+ protected el: HTMLElement;
45
43
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
46
44
  c.detach();
47
45
  this.el = r.nativeElement;
@@ -65,11 +63,10 @@ export declare interface SwirlAccordion extends Components.SwirlAccordion {
65
63
  changeDetection: ChangeDetectionStrategy.OnPush,
66
64
  template: '<ng-content></ng-content>',
67
65
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
68
- inputs: ['description', 'disabled', { name: 'heading', required: true }, 'headingLevel', 'initiallyOpen', 'itemId'],
69
- standalone: false
66
+ inputs: ['description', 'disabled', 'heading', 'headingLevel', 'initiallyOpen', 'itemId'],
70
67
  })
71
68
  export class SwirlAccordionItem {
72
- protected el: HTMLSwirlAccordionItemElement;
69
+ protected el: HTMLElement;
73
70
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
74
71
  c.detach();
75
72
  this.el = r.nativeElement;
@@ -92,10 +89,9 @@ export declare interface SwirlAccordionItem extends Components.SwirlAccordionIte
92
89
  template: '<ng-content></ng-content>',
93
90
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
94
91
  inputs: [],
95
- standalone: false
96
92
  })
97
93
  export class SwirlActionList {
98
- protected el: HTMLSwirlActionListElement;
94
+ protected el: HTMLElement;
99
95
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
100
96
  c.detach();
101
97
  this.el = r.nativeElement;
@@ -114,11 +110,10 @@ export declare interface SwirlActionList extends Components.SwirlActionList {}
114
110
  changeDetection: ChangeDetectionStrategy.OnPush,
115
111
  template: '<ng-content></ng-content>',
116
112
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
117
- inputs: ['badge', 'description', 'disabled', 'icon', 'iconBadge', 'intent', { name: 'label', required: true }, 'size', 'suffix', 'swirlAriaExpanded', 'swirlAriaHaspopup'],
118
- standalone: false
113
+ inputs: ['badge', 'description', 'disabled', 'icon', 'iconBadge', 'intent', 'label', 'size', 'suffix', 'swirlAriaExpanded', 'swirlAriaHaspopup'],
119
114
  })
120
115
  export class SwirlActionListItem {
121
- protected el: HTMLSwirlActionListItemElement;
116
+ protected el: HTMLElement;
122
117
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
123
118
  c.detach();
124
119
  this.el = r.nativeElement;
@@ -137,11 +132,10 @@ export declare interface SwirlActionListItem extends Components.SwirlActionListI
137
132
  changeDetection: ChangeDetectionStrategy.OnPush,
138
133
  template: '<ng-content></ng-content>',
139
134
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
140
- inputs: ['hasSeparator', { name: 'label', required: true }, 'separatorSpacing', 'spacing'],
141
- standalone: false
135
+ inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing'],
142
136
  })
143
137
  export class SwirlActionListSection {
144
- protected el: HTMLSwirlActionListSectionElement;
138
+ protected el: HTMLElement;
145
139
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
146
140
  c.detach();
147
141
  this.el = r.nativeElement;
@@ -161,10 +155,9 @@ export declare interface SwirlActionListSection extends Components.SwirlActionLi
161
155
  template: '<ng-content></ng-content>',
162
156
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
163
157
  inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'paddingInlineEnd', 'paddingInlineStart', 'showBackButton', 'showCloseButton', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel'],
164
- standalone: false
165
158
  })
166
159
  export class SwirlAppBar {
167
- protected el: HTMLSwirlAppBarElement;
160
+ protected el: HTMLElement;
168
161
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
169
162
  c.detach();
170
163
  this.el = r.nativeElement;
@@ -194,10 +187,9 @@ export declare interface SwirlAppBar extends Components.SwirlAppBar {
194
187
  template: '<ng-content></ng-content>',
195
188
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
196
189
  inputs: ['icon', 'src'],
197
- standalone: false
198
190
  })
199
191
  export class SwirlAppIcon {
200
- protected el: HTMLSwirlAppIconElement;
192
+ protected el: HTMLElement;
201
193
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
202
194
  c.detach();
203
195
  this.el = r.nativeElement;
@@ -217,11 +209,10 @@ export declare interface SwirlAppIcon extends Components.SwirlAppIcon {}
217
209
  changeDetection: ChangeDetectionStrategy.OnPush,
218
210
  template: '<ng-content></ng-content>',
219
211
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
220
- inputs: [{ name: 'appName', required: true }, 'backToNavigationViewButtonLabel', 'collapsibleNavigation', 'ctaIcon', 'ctaLabel', 'hasNavigation', 'hideAppBar', 'initialMobileView', 'navigationBackButtonLabel', 'navigationExpansionStateStorageKey', 'navigationLabel', 'navigationOverlayLabel', 'navigationToggleLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'transitionStyle'],
221
- standalone: false
212
+ inputs: ['appName', 'backToNavigationViewButtonLabel', 'collapsibleNavigation', 'ctaIcon', 'ctaLabel', 'hasNavigation', 'hideAppBar', 'initialMobileView', 'navigationBackButtonLabel', 'navigationExpansionStateStorageKey', 'navigationLabel', 'navigationOverlayLabel', 'navigationToggleLabel', 'showNavigationBackButton', 'sidebarCloseButtonLabel', 'sidebarHeading', 'transitionStyle'],
222
213
  })
223
214
  export class SwirlAppLayout {
224
- protected el: HTMLSwirlAppLayoutElement;
215
+ protected el: HTMLElement;
225
216
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
226
217
  c.detach();
227
218
  this.el = r.nativeElement;
@@ -256,10 +247,9 @@ export declare interface SwirlAppLayout extends Components.SwirlAppLayout {
256
247
  template: '<ng-content></ng-content>',
257
248
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
258
249
  inputs: ['autoSelect', 'clearButtonLabel', 'clearable', 'disabled', 'generateSuggestions', 'inline', 'invalid', 'maxLength', 'menuLabel', 'mode', 'multiSelect', 'placeholder', 'required', 'spellCheck', 'swirlAriaDescribedby', 'value'],
259
- standalone: false
260
250
  })
261
251
  export class SwirlAutocomplete {
262
- protected el: HTMLSwirlAutocompleteElement;
252
+ protected el: HTMLElement;
263
253
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
264
254
  c.detach();
265
255
  this.el = r.nativeElement;
@@ -284,11 +274,10 @@ export declare interface SwirlAutocomplete extends Components.SwirlAutocomplete
284
274
  changeDetection: ChangeDetectionStrategy.OnPush,
285
275
  template: '<ng-content></ng-content>',
286
276
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
287
- inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', { name: 'label', required: true }, 'loading', 'showLabel', 'size', 'src', 'toolPosition', 'variant'],
288
- standalone: false
277
+ inputs: ['badge', 'badgePosition', 'color', 'icon', 'initials', 'interactive', 'label', 'loading', 'showLabel', 'size', 'src', 'toolPosition', 'variant'],
289
278
  })
290
279
  export class SwirlAvatar {
291
- protected el: HTMLSwirlAvatarElement;
280
+ protected el: HTMLElement;
292
281
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
293
282
  c.detach();
294
283
  this.el = r.nativeElement;
@@ -314,10 +303,9 @@ export declare interface SwirlAvatar extends Components.SwirlAvatar {
314
303
  template: '<ng-content></ng-content>',
315
304
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
316
305
  inputs: ['badge'],
317
- standalone: false
318
306
  })
319
307
  export class SwirlAvatarGroup {
320
- protected el: HTMLSwirlAvatarGroupElement;
308
+ protected el: HTMLElement;
321
309
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
322
310
  c.detach();
323
311
  this.el = r.nativeElement;
@@ -336,11 +324,10 @@ export declare interface SwirlAvatarGroup extends Components.SwirlAvatarGroup {}
336
324
  changeDetection: ChangeDetectionStrategy.OnPush,
337
325
  template: '<ng-content></ng-content>',
338
326
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
339
- inputs: ['icon', 'intent', { name: 'label', required: true }, 'size', 'variant'],
340
- standalone: false
327
+ inputs: ['icon', 'intent', 'label', 'size', 'variant'],
341
328
  })
342
329
  export class SwirlBadge {
343
- protected el: HTMLSwirlBadgeElement;
330
+ protected el: HTMLElement;
344
331
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
345
332
  c.detach();
346
333
  this.el = r.nativeElement;
@@ -359,11 +346,10 @@ export declare interface SwirlBadge extends Components.SwirlBadge {}
359
346
  changeDetection: ChangeDetectionStrategy.OnPush,
360
347
  template: '<ng-content></ng-content>',
361
348
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
362
- inputs: ['actionLabel', { name: 'content', required: true }, 'dismissLabel', 'dismissable', 'icon', 'importance', 'intent', 'showIcon', 'size'],
363
- standalone: false
349
+ inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'icon', 'importance', 'intent', 'showIcon', 'size'],
364
350
  })
365
351
  export class SwirlBanner {
366
- protected el: HTMLSwirlBannerElement;
352
+ protected el: HTMLElement;
367
353
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
368
354
  c.detach();
369
355
  this.el = r.nativeElement;
@@ -389,10 +375,9 @@ export declare interface SwirlBanner extends Components.SwirlBanner {
389
375
  template: '<ng-content></ng-content>',
390
376
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
391
377
  inputs: ['basis', 'borderColor', 'bordered', 'borderedBlockEnd', 'borderedBlockEndWhenScrolled', 'borderedBlockStart', 'borderedBlockStartWhenScrolled', 'borderedInlineEnd', 'borderedInlineStart', 'bottom', 'centerBlock', 'centerInline', 'cover', 'grow', 'height', 'left', 'maxHeight', 'maxWidth', 'minHeight', 'minWidth', 'overflow', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'position', 'right', 'shrink', 'top', 'width', 'zIndex'],
392
- standalone: false
393
378
  })
394
379
  export class SwirlBox {
395
- protected el: HTMLSwirlBoxElement;
380
+ protected el: HTMLElement;
396
381
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
397
382
  c.detach();
398
383
  this.el = r.nativeElement;
@@ -415,11 +400,10 @@ export declare interface SwirlBox extends Components.SwirlBox {
415
400
  changeDetection: ChangeDetectionStrategy.OnPush,
416
401
  template: '<ng-content></ng-content>',
417
402
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
418
- inputs: ['disabled', 'download', 'elevated', 'form', 'hideLabel', 'href', 'icon', 'iconPosition', 'inheritFontSize', 'intent', { name: 'label', required: true }, 'name', 'pill', 'pressed', 'size', 'swirlAriaControls', 'swirlAriaCurrent', 'swirlAriaDescribedby', 'swirlAriaExpanded', 'swirlAriaHaspopup', 'swirlAriaLabel', 'target', 'textAlign', 'type', 'value', 'variant'],
419
- standalone: false
403
+ inputs: ['disabled', 'download', 'elevated', 'form', 'hideLabel', 'href', 'icon', 'iconPosition', 'inheritFontSize', 'intent', 'label', 'name', 'pill', 'pressed', 'size', 'swirlAriaControls', 'swirlAriaCurrent', 'swirlAriaDescribedby', 'swirlAriaExpanded', 'swirlAriaHaspopup', 'swirlAriaLabel', 'target', 'textAlign', 'type', 'value', 'variant'],
420
404
  })
421
405
  export class SwirlButton {
422
- protected el: HTMLSwirlButtonElement;
406
+ protected el: HTMLElement;
423
407
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
424
408
  c.detach();
425
409
  this.el = r.nativeElement;
@@ -439,10 +423,9 @@ export declare interface SwirlButton extends Components.SwirlButton {}
439
423
  template: '<ng-content></ng-content>',
440
424
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
441
425
  inputs: ['orientation', 'segmented', 'spacing', 'stretch', 'wrap'],
442
- standalone: false
443
426
  })
444
427
  export class SwirlButtonGroup {
445
- protected el: HTMLSwirlButtonGroupElement;
428
+ protected el: HTMLElement;
446
429
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
447
430
  c.detach();
448
431
  this.el = r.nativeElement;
@@ -463,10 +446,9 @@ export declare interface SwirlButtonGroup extends Components.SwirlButtonGroup {}
463
446
  template: '<ng-content></ng-content>',
464
447
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
465
448
  inputs: ['as', 'borderRadius', 'customBackgroundColor', 'elevated', 'elevationLevel', 'height', 'highlighted', 'href', 'imageAspectRatio', 'intent', 'interactive', 'isBorderless', 'justifyContent', 'linkTarget', 'minHeight', 'overflow', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'swirlAriaLabel', 'swirlAriaLabelledby'],
466
- standalone: false
467
449
  })
468
450
  export class SwirlCard {
469
- protected el: HTMLSwirlCardElement;
451
+ protected el: HTMLElement;
470
452
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
471
453
  c.detach();
472
454
  this.el = r.nativeElement;
@@ -490,11 +472,10 @@ export declare interface SwirlCard extends Components.SwirlCard {
490
472
  changeDetection: ChangeDetectionStrategy.OnPush,
491
473
  template: '<ng-content></ng-content>',
492
474
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
493
- inputs: ['fade', 'fadeColor', { name: 'label', required: true }, 'loopAround', 'nextSlideButtonLabel', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'previousSlideButtonLabel', 'spacing'],
494
- standalone: false
475
+ inputs: ['fade', 'fadeColor', 'label', 'loopAround', 'nextSlideButtonLabel', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'previousSlideButtonLabel', 'spacing'],
495
476
  })
496
477
  export class SwirlCarousel {
497
- protected el: HTMLSwirlCarouselElement;
478
+ protected el: HTMLElement;
498
479
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
499
480
  c.detach();
500
481
  this.el = r.nativeElement;
@@ -518,10 +499,9 @@ export declare interface SwirlCarousel extends Components.SwirlCarousel {
518
499
  template: '<ng-content></ng-content>',
519
500
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
520
501
  inputs: ['aspectRatio', 'label', 'minHeight', 'width'],
521
- standalone: false
522
502
  })
523
503
  export class SwirlCarouselSlide {
524
- protected el: HTMLSwirlCarouselSlideElement;
504
+ protected el: HTMLElement;
525
505
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
526
506
  c.detach();
527
507
  this.el = r.nativeElement;
@@ -540,11 +520,10 @@ export declare interface SwirlCarouselSlide extends Components.SwirlCarouselSlid
540
520
  changeDetection: ChangeDetectionStrategy.OnPush,
541
521
  template: '<ng-content></ng-content>',
542
522
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
543
- inputs: ['checked', 'description', 'disabled', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'invalid', 'label', 'labelWeight', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value', 'variant'],
544
- standalone: false
523
+ inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'labelWeight', 'swirlAriaDescribedby', 'swirlAriaLabel', 'value', 'variant'],
545
524
  })
546
525
  export class SwirlCheckbox {
547
- protected el: HTMLSwirlCheckboxElement;
526
+ protected el: HTMLElement;
548
527
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
549
528
  c.detach();
550
529
  this.el = r.nativeElement;
@@ -567,11 +546,10 @@ export declare interface SwirlCheckbox extends Components.SwirlCheckbox {
567
546
  changeDetection: ChangeDetectionStrategy.OnPush,
568
547
  template: '<ng-content></ng-content>',
569
548
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
570
- inputs: ['borderRadius', 'icon', 'iconColor', 'intent', 'interactive', { name: 'label', required: true }, 'pressed', 'progress', 'progressBarLabel', 'removable', 'removeButtonLabel', 'size', 'variant'],
571
- standalone: false
549
+ inputs: ['borderRadius', 'icon', 'iconColor', 'intent', 'interactive', 'label', 'pressed', 'progress', 'progressBarLabel', 'removable', 'removeButtonLabel', 'size', 'variant'],
572
550
  })
573
551
  export class SwirlChip {
574
- protected el: HTMLSwirlChipElement;
552
+ protected el: HTMLElement;
575
553
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
576
554
  c.detach();
577
555
  this.el = r.nativeElement;
@@ -597,10 +575,9 @@ export declare interface SwirlChip extends Components.SwirlChip {
597
575
  template: '<ng-content></ng-content>',
598
576
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
599
577
  inputs: ['autoFocus', 'autoSelect', 'disabled', 'inline', 'invalid', 'pickerButtonLabel', 'pickerLabel', 'placeholder', 'required', 'swirlAriaDescribedby', 'value'],
600
- standalone: false
601
578
  })
602
579
  export class SwirlColorInput {
603
- protected el: HTMLSwirlColorInputElement;
580
+ protected el: HTMLElement;
604
581
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
605
582
  c.detach();
606
583
  this.el = r.nativeElement;
@@ -628,10 +605,9 @@ export declare interface SwirlColorInput extends Components.SwirlColorInput {
628
605
  template: '<ng-content></ng-content>',
629
606
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
630
607
  inputs: ['columns', 'spacing'],
631
- standalone: false
632
608
  })
633
609
  export class SwirlColumns {
634
- protected el: HTMLSwirlColumnsElement;
610
+ protected el: HTMLElement;
635
611
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
636
612
  c.detach();
637
613
  this.el = r.nativeElement;
@@ -652,10 +628,9 @@ export declare interface SwirlColumns extends Components.SwirlColumns {}
652
628
  template: '<ng-content></ng-content>',
653
629
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
654
630
  inputs: ['appName', 'backButonLabel', 'heading', 'helpButonLabel', 'hideNavigationButtonLabel', 'logoText', 'maxContentWidth', 'navigationLabel', 'showBackButton', 'showHelpButton', 'showNavigationButtonLabel', 'subheading'],
655
- standalone: false
656
631
  })
657
632
  export class SwirlConsoleLayout {
658
- protected el: HTMLSwirlConsoleLayoutElement;
633
+ protected el: HTMLElement;
659
634
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
660
635
  c.detach();
661
636
  this.el = r.nativeElement;
@@ -681,10 +656,9 @@ export declare interface SwirlConsoleLayout extends Components.SwirlConsoleLayou
681
656
  template: '<ng-content></ng-content>',
682
657
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
683
658
  inputs: ['autoFocus', 'autoSelect', 'datePickerDisableDate', 'datePickerLabel', 'datePickerTriggerLabel', 'disabled', 'firstDayOfWeek', 'format', 'inline', 'invalid', 'labels', 'locale', 'placeholder', 'preferredInputMode', 'required', 'swirlAriaDescribedby', 'value'],
684
- standalone: false
685
659
  })
686
660
  export class SwirlDateInput {
687
- protected el: HTMLSwirlDateInputElement;
661
+ protected el: HTMLElement;
688
662
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
689
663
  c.detach();
690
664
  this.el = r.nativeElement;
@@ -710,10 +684,9 @@ export declare interface SwirlDateInput extends Components.SwirlDateInput {
710
684
  template: '<ng-content></ng-content>',
711
685
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
712
686
  inputs: ['disableDate', 'firstDayOfWeek', 'labels', 'locale', 'range', 'startDate', 'value'],
713
- standalone: false
714
687
  })
715
688
  export class SwirlDatePicker {
716
- protected el: HTMLSwirlDatePickerElement;
689
+ protected el: HTMLElement;
717
690
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
718
691
  c.detach();
719
692
  this.el = r.nativeElement;
@@ -736,10 +709,9 @@ export declare interface SwirlDatePicker extends Components.SwirlDatePicker {
736
709
  template: '<ng-content></ng-content>',
737
710
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
738
711
  inputs: [],
739
- standalone: false
740
712
  })
741
713
  export class SwirlDescriptionList {
742
- protected el: HTMLSwirlDescriptionListElement;
714
+ protected el: HTMLElement;
743
715
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
744
716
  c.detach();
745
717
  this.el = r.nativeElement;
@@ -758,11 +730,10 @@ export declare interface SwirlDescriptionList extends Components.SwirlDescriptio
758
730
  changeDetection: ChangeDetectionStrategy.OnPush,
759
731
  template: '<ng-content></ng-content>',
760
732
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
761
- inputs: ['bordered', 'maxWidth', { name: 'term', required: true }, 'tooltip'],
762
- standalone: false
733
+ inputs: ['bordered', 'maxWidth', 'term', 'tooltip'],
763
734
  })
764
735
  export class SwirlDescriptionListItem {
765
- protected el: HTMLSwirlDescriptionListItemElement;
736
+ protected el: HTMLElement;
766
737
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
767
738
  c.detach();
768
739
  this.el = r.nativeElement;
@@ -782,11 +753,10 @@ export declare interface SwirlDescriptionListItem extends Components.SwirlDescri
782
753
  changeDetection: ChangeDetectionStrategy.OnPush,
783
754
  template: '<ng-content></ng-content>',
784
755
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
785
- inputs: ['hideLabel', 'intent', { name: 'label', required: true }, 'primaryActionLabel', 'secondaryActionLabel'],
786
- standalone: false
756
+ inputs: ['hideLabel', 'intent', 'label', 'primaryActionLabel', 'secondaryActionLabel'],
787
757
  })
788
758
  export class SwirlDialog {
789
- protected el: HTMLSwirlDialogElement;
759
+ protected el: HTMLElement;
790
760
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
791
761
  c.detach();
792
762
  this.el = r.nativeElement;
@@ -815,11 +785,10 @@ export declare interface SwirlDialog extends Components.SwirlDialog {
815
785
  changeDetection: ChangeDetectionStrategy.OnPush,
816
786
  template: '<ng-content></ng-content>',
817
787
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
818
- inputs: ['label', { name: 'name', required: true }, 'size'],
819
- standalone: false
788
+ inputs: ['label', 'name', 'size'],
820
789
  })
821
790
  export class SwirlEmoji {
822
- protected el: HTMLSwirlEmojiElement;
791
+ protected el: HTMLElement;
823
792
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
824
793
  c.detach();
825
794
  this.el = r.nativeElement;
@@ -839,10 +808,9 @@ export declare interface SwirlEmoji extends Components.SwirlEmoji {}
839
808
  template: '<ng-content></ng-content>',
840
809
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
841
810
  inputs: ['label', 'size'],
842
- standalone: false
843
811
  })
844
812
  export class SwirlEmojiClap {
845
- protected el: HTMLSwirlEmojiClapElement;
813
+ protected el: HTMLElement;
846
814
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
847
815
  c.detach();
848
816
  this.el = r.nativeElement;
@@ -862,10 +830,9 @@ export declare interface SwirlEmojiClap extends Components.SwirlEmojiClap {}
862
830
  template: '<ng-content></ng-content>',
863
831
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
864
832
  inputs: ['label', 'size'],
865
- standalone: false
866
833
  })
867
834
  export class SwirlEmojiHappy {
868
- protected el: HTMLSwirlEmojiHappyElement;
835
+ protected el: HTMLElement;
869
836
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
870
837
  c.detach();
871
838
  this.el = r.nativeElement;
@@ -885,10 +852,9 @@ export declare interface SwirlEmojiHappy extends Components.SwirlEmojiHappy {}
885
852
  template: '<ng-content></ng-content>',
886
853
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
887
854
  inputs: ['label', 'size'],
888
- standalone: false
889
855
  })
890
856
  export class SwirlEmojiIdea {
891
- protected el: HTMLSwirlEmojiIdeaElement;
857
+ protected el: HTMLElement;
892
858
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
893
859
  c.detach();
894
860
  this.el = r.nativeElement;
@@ -908,10 +874,9 @@ export declare interface SwirlEmojiIdea extends Components.SwirlEmojiIdea {}
908
874
  template: '<ng-content></ng-content>',
909
875
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
910
876
  inputs: ['label', 'size'],
911
- standalone: false
912
877
  })
913
878
  export class SwirlEmojiLove {
914
- protected el: HTMLSwirlEmojiLoveElement;
879
+ protected el: HTMLElement;
915
880
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
916
881
  c.detach();
917
882
  this.el = r.nativeElement;
@@ -931,10 +896,9 @@ export declare interface SwirlEmojiLove extends Components.SwirlEmojiLove {}
931
896
  template: '<ng-content></ng-content>',
932
897
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
933
898
  inputs: ['label', 'size'],
934
- standalone: false
935
899
  })
936
900
  export class SwirlEmojiSad {
937
- protected el: HTMLSwirlEmojiSadElement;
901
+ protected el: HTMLElement;
938
902
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
939
903
  c.detach();
940
904
  this.el = r.nativeElement;
@@ -954,10 +918,9 @@ export declare interface SwirlEmojiSad extends Components.SwirlEmojiSad {}
954
918
  template: '<ng-content></ng-content>',
955
919
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
956
920
  inputs: ['label', 'size'],
957
- standalone: false
958
921
  })
959
922
  export class SwirlEmojiThumbsUp {
960
- protected el: HTMLSwirlEmojiThumbsUpElement;
923
+ protected el: HTMLElement;
961
924
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
962
925
  c.detach();
963
926
  this.el = r.nativeElement;
@@ -977,10 +940,9 @@ export declare interface SwirlEmojiThumbsUp extends Components.SwirlEmojiThumbsU
977
940
  template: '<ng-content></ng-content>',
978
941
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
979
942
  inputs: ['heading', 'headingLevel', 'illustration'],
980
- standalone: false
981
943
  })
982
944
  export class SwirlEmptyState {
983
- protected el: HTMLSwirlEmptyStateElement;
945
+ protected el: HTMLElement;
984
946
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
985
947
  c.detach();
986
948
  this.el = r.nativeElement;
@@ -999,11 +961,10 @@ export declare interface SwirlEmptyState extends Components.SwirlEmptyState {}
999
961
  changeDetection: ChangeDetectionStrategy.OnPush,
1000
962
  template: '<ng-content></ng-content>',
1001
963
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1002
- inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', { name: 'name', required: true }, 'previewButtonLabel', 'showDownloadButton', 'showPreviewButton', 'skipNativeDownload', { name: 'type', required: true }, { name: 'url', required: true }],
1003
- standalone: false
964
+ inputs: ['description', 'downloadButtonLabel', 'loading', 'loadingLabel', 'name', 'previewButtonLabel', 'showDownloadButton', 'showPreviewButton', 'skipNativeDownload', 'type', 'url'],
1004
965
  })
1005
966
  export class SwirlFileChip {
1006
- protected el: HTMLSwirlFileChipElement;
967
+ protected el: HTMLElement;
1007
968
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1008
969
  c.detach();
1009
970
  this.el = r.nativeElement;
@@ -1029,11 +990,10 @@ export declare interface SwirlFileChip extends Components.SwirlFileChip {
1029
990
  changeDetection: ChangeDetectionStrategy.OnPush,
1030
991
  template: '<ng-content></ng-content>',
1031
992
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1032
- inputs: ['accept', 'ctaLabel', 'description', 'descriptionAllowHtml', 'disabled', 'dragDropLabel', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, { name: 'label', required: true }, 'multiple', 'showDropzone', 'uploadButtonIcon', 'uploadButtonLabel', 'uploadButtonVariant'],
1033
- standalone: false
993
+ inputs: ['accept', 'ctaLabel', 'description', 'descriptionAllowHtml', 'disabled', 'dragDropLabel', 'hideLabel', 'inputId', 'inputName', 'label', 'multiple', 'showDropzone', 'uploadButtonIcon', 'uploadButtonLabel', 'uploadButtonVariant'],
1034
994
  })
1035
995
  export class SwirlFileUploader {
1036
- protected el: HTMLSwirlFileUploaderElement;
996
+ protected el: HTMLElement;
1037
997
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1038
998
  c.detach();
1039
999
  this.el = r.nativeElement;
@@ -1057,11 +1017,10 @@ export declare interface SwirlFileUploader extends Components.SwirlFileUploader
1057
1017
  changeDetection: ChangeDetectionStrategy.OnPush,
1058
1018
  template: '<ng-content></ng-content>',
1059
1019
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1060
- inputs: ['active', 'autoplay', 'description', 'disableDownload', 'disablePrint', 'errorMessage', { name: 'file', required: true }, 'fileName', 'pdfWorkerSrc', 'skipNativeDownload', 'thumbnailUrl', { name: 'type', required: true }, 'typeUnsupportedMessage', 'viewMode', 'zoom'],
1061
- standalone: false
1020
+ inputs: ['active', 'autoplay', 'description', 'disableDownload', 'disablePrint', 'errorMessage', 'file', 'fileName', 'pdfWorkerSrc', 'skipNativeDownload', 'thumbnailUrl', 'type', 'typeUnsupportedMessage', 'viewMode', 'zoom'],
1062
1021
  })
1063
1022
  export class SwirlFileViewer {
1064
- protected el: HTMLSwirlFileViewerElement;
1023
+ protected el: HTMLElement;
1065
1024
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1066
1025
  c.detach();
1067
1026
  this.el = r.nativeElement;
@@ -1088,11 +1047,10 @@ export declare interface SwirlFileViewer extends Components.SwirlFileViewer {
1088
1047
  changeDetection: ChangeDetectionStrategy.OnPush,
1089
1048
  template: '<ng-content></ng-content>',
1090
1049
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1091
- inputs: ['autoplay', { name: 'file', required: true }],
1092
- standalone: false
1050
+ inputs: ['autoplay', 'file'],
1093
1051
  })
1094
1052
  export class SwirlFileViewerAudio {
1095
- protected el: HTMLSwirlFileViewerAudioElement;
1053
+ protected el: HTMLElement;
1096
1054
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1097
1055
  c.detach();
1098
1056
  this.el = r.nativeElement;
@@ -1115,11 +1073,10 @@ export declare interface SwirlFileViewerAudio extends Components.SwirlFileViewer
1115
1073
  changeDetection: ChangeDetectionStrategy.OnPush,
1116
1074
  template: '<ng-content></ng-content>',
1117
1075
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1118
- inputs: ['errorMessage', { name: 'file', required: true }],
1119
- standalone: false
1076
+ inputs: ['errorMessage', 'file'],
1120
1077
  })
1121
1078
  export class SwirlFileViewerCsv {
1122
- protected el: HTMLSwirlFileViewerCsvElement;
1079
+ protected el: HTMLElement;
1123
1080
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1124
1081
  c.detach();
1125
1082
  this.el = r.nativeElement;
@@ -1142,11 +1099,10 @@ export declare interface SwirlFileViewerCsv extends Components.SwirlFileViewerCs
1142
1099
  changeDetection: ChangeDetectionStrategy.OnPush,
1143
1100
  template: '<ng-content></ng-content>',
1144
1101
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1145
- inputs: ['disableDownload', 'downloadButtonLabel', { name: 'file', required: true }, 'fileName'],
1146
- standalone: false
1102
+ inputs: ['disableDownload', 'downloadButtonLabel', 'file', 'fileName'],
1147
1103
  })
1148
1104
  export class SwirlFileViewerFallback {
1149
- protected el: HTMLSwirlFileViewerFallbackElement;
1105
+ protected el: HTMLElement;
1150
1106
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1151
1107
  c.detach();
1152
1108
  this.el = r.nativeElement;
@@ -1172,11 +1128,10 @@ export declare interface SwirlFileViewerFallback extends Components.SwirlFileVie
1172
1128
  changeDetection: ChangeDetectionStrategy.OnPush,
1173
1129
  template: '<ng-content></ng-content>',
1174
1130
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1175
- inputs: ['description', 'errorMessage', { name: 'file', required: true }, 'maxZoom'],
1176
- standalone: false
1131
+ inputs: ['description', 'errorMessage', 'file', 'maxZoom'],
1177
1132
  })
1178
1133
  export class SwirlFileViewerImage {
1179
- protected el: HTMLSwirlFileViewerImageElement;
1134
+ protected el: HTMLElement;
1180
1135
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1181
1136
  c.detach();
1182
1137
  this.el = r.nativeElement;
@@ -1200,11 +1155,10 @@ export declare interface SwirlFileViewerImage extends Components.SwirlFileViewer
1200
1155
  changeDetection: ChangeDetectionStrategy.OnPush,
1201
1156
  template: '<ng-content></ng-content>',
1202
1157
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1203
- inputs: ['errorMessage', { name: 'file', required: true }, 'singlePageMode', 'viewMode', 'workerSrc', 'zoom'],
1204
- standalone: false
1158
+ inputs: ['errorMessage', 'file', 'singlePageMode', 'viewMode', 'workerSrc', 'zoom'],
1205
1159
  })
1206
1160
  export class SwirlFileViewerPdf {
1207
- protected el: HTMLSwirlFileViewerPdfElement;
1161
+ protected el: HTMLElement;
1208
1162
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1209
1163
  c.detach();
1210
1164
  this.el = r.nativeElement;
@@ -1229,11 +1183,10 @@ export declare interface SwirlFileViewerPdf extends Components.SwirlFileViewerPd
1229
1183
  changeDetection: ChangeDetectionStrategy.OnPush,
1230
1184
  template: '<ng-content></ng-content>',
1231
1185
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1232
- inputs: ['errorMessage', { name: 'file', required: true }],
1233
- standalone: false
1186
+ inputs: ['errorMessage', 'file'],
1234
1187
  })
1235
1188
  export class SwirlFileViewerText {
1236
- protected el: HTMLSwirlFileViewerTextElement;
1189
+ protected el: HTMLElement;
1237
1190
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1238
1191
  c.detach();
1239
1192
  this.el = r.nativeElement;
@@ -1256,11 +1209,10 @@ export declare interface SwirlFileViewerText extends Components.SwirlFileViewerT
1256
1209
  changeDetection: ChangeDetectionStrategy.OnPush,
1257
1210
  template: '<ng-content></ng-content>',
1258
1211
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1259
- inputs: ['autoplay', 'disableDownload', { name: 'file', required: true }],
1260
- standalone: false
1212
+ inputs: ['autoplay', 'disableDownload', 'file'],
1261
1213
  })
1262
1214
  export class SwirlFileViewerVideo {
1263
- protected el: HTMLSwirlFileViewerVideoElement;
1215
+ protected el: HTMLElement;
1264
1216
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1265
1217
  c.detach();
1266
1218
  this.el = r.nativeElement;
@@ -1283,11 +1235,10 @@ export declare interface SwirlFileViewerVideo extends Components.SwirlFileViewer
1283
1235
  changeDetection: ChangeDetectionStrategy.OnPush,
1284
1236
  template: '<ng-content></ng-content>',
1285
1237
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1286
- inputs: ['description', 'disabled', 'errorMessage', 'fontSize', 'hideLabel', 'icon', 'inline', 'invalid', { name: 'label', required: true }, 'labelPosition', 'secondaryLabel', 'tooltip'],
1287
- standalone: false
1238
+ inputs: ['description', 'disabled', 'errorMessage', 'fontSize', 'hideLabel', 'icon', 'inline', 'invalid', 'label', 'labelPosition', 'secondaryLabel', 'tooltip'],
1288
1239
  })
1289
1240
  export class SwirlFormControl {
1290
- protected el: HTMLSwirlFormControlElement;
1241
+ protected el: HTMLElement;
1291
1242
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1292
1243
  c.detach();
1293
1244
  this.el = r.nativeElement;
@@ -1307,10 +1258,9 @@ export declare interface SwirlFormControl extends Components.SwirlFormControl {}
1307
1258
  template: '<ng-content></ng-content>',
1308
1259
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1309
1260
  inputs: ['orientation'],
1310
- standalone: false
1311
1261
  })
1312
1262
  export class SwirlFormGroup {
1313
- protected el: HTMLSwirlFormGroupElement;
1263
+ protected el: HTMLElement;
1314
1264
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1315
1265
  c.detach();
1316
1266
  this.el = r.nativeElement;
@@ -1329,11 +1279,10 @@ export declare interface SwirlFormGroup extends Components.SwirlFormGroup {}
1329
1279
  changeDetection: ChangeDetectionStrategy.OnPush,
1330
1280
  template: '<ng-content></ng-content>',
1331
1281
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1332
- inputs: ['align', 'as', 'balance', 'headingId', 'level', 'lines', { name: 'text', required: true }, 'truncate'],
1333
- standalone: false
1282
+ inputs: ['align', 'as', 'balance', 'headingId', 'level', 'lines', 'text', 'truncate'],
1334
1283
  })
1335
1284
  export class SwirlHeading {
1336
- protected el: HTMLSwirlHeadingElement;
1285
+ protected el: HTMLElement;
1337
1286
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1338
1287
  c.detach();
1339
1288
  this.el = r.nativeElement;
@@ -1352,11 +1301,10 @@ export declare interface SwirlHeading extends Components.SwirlHeading {}
1352
1301
  changeDetection: ChangeDetectionStrategy.OnPush,
1353
1302
  template: '<ng-content></ng-content>',
1354
1303
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1355
- inputs: ['color', { name: 'glyph', required: true }, 'size'],
1356
- standalone: false
1304
+ inputs: ['color', 'glyph', 'size'],
1357
1305
  })
1358
1306
  export class SwirlIcon {
1359
- protected el: HTMLSwirlIconElement;
1307
+ protected el: HTMLElement;
1360
1308
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1361
1309
  c.detach();
1362
1310
  this.el = r.nativeElement;
@@ -1376,10 +1324,9 @@ export declare interface SwirlIcon extends Components.SwirlIcon {}
1376
1324
  template: '<ng-content></ng-content>',
1377
1325
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1378
1326
  inputs: ['color', 'size'],
1379
- standalone: false
1380
1327
  })
1381
1328
  export class SwirlIconAdd {
1382
- protected el: HTMLSwirlIconAddElement;
1329
+ protected el: HTMLElement;
1383
1330
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1384
1331
  c.detach();
1385
1332
  this.el = r.nativeElement;
@@ -1399,10 +1346,9 @@ export declare interface SwirlIconAdd extends Components.SwirlIconAdd {}
1399
1346
  template: '<ng-content></ng-content>',
1400
1347
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1401
1348
  inputs: ['color', 'size'],
1402
- standalone: false
1403
1349
  })
1404
1350
  export class SwirlIconAddModerator {
1405
- protected el: HTMLSwirlIconAddModeratorElement;
1351
+ protected el: HTMLElement;
1406
1352
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1407
1353
  c.detach();
1408
1354
  this.el = r.nativeElement;
@@ -1422,10 +1368,9 @@ export declare interface SwirlIconAddModerator extends Components.SwirlIconAddMo
1422
1368
  template: '<ng-content></ng-content>',
1423
1369
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1424
1370
  inputs: ['color', 'size'],
1425
- standalone: false
1426
1371
  })
1427
1372
  export class SwirlIconAddPhoto {
1428
- protected el: HTMLSwirlIconAddPhotoElement;
1373
+ protected el: HTMLElement;
1429
1374
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1430
1375
  c.detach();
1431
1376
  this.el = r.nativeElement;
@@ -1445,10 +1390,9 @@ export declare interface SwirlIconAddPhoto extends Components.SwirlIconAddPhoto
1445
1390
  template: '<ng-content></ng-content>',
1446
1391
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1447
1392
  inputs: ['color', 'size'],
1448
- standalone: false
1449
1393
  })
1450
1394
  export class SwirlIconAddReaction {
1451
- protected el: HTMLSwirlIconAddReactionElement;
1395
+ protected el: HTMLElement;
1452
1396
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1453
1397
  c.detach();
1454
1398
  this.el = r.nativeElement;
@@ -1468,10 +1412,9 @@ export declare interface SwirlIconAddReaction extends Components.SwirlIconAddRea
1468
1412
  template: '<ng-content></ng-content>',
1469
1413
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1470
1414
  inputs: ['color', 'size'],
1471
- standalone: false
1472
1415
  })
1473
1416
  export class SwirlIconAdminPanelSettings {
1474
- protected el: HTMLSwirlIconAdminPanelSettingsElement;
1417
+ protected el: HTMLElement;
1475
1418
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1476
1419
  c.detach();
1477
1420
  this.el = r.nativeElement;
@@ -1491,10 +1434,9 @@ export declare interface SwirlIconAdminPanelSettings extends Components.SwirlIco
1491
1434
  template: '<ng-content></ng-content>',
1492
1435
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1493
1436
  inputs: ['color', 'size'],
1494
- standalone: false
1495
1437
  })
1496
1438
  export class SwirlIconAi {
1497
- protected el: HTMLSwirlIconAiElement;
1439
+ protected el: HTMLElement;
1498
1440
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1499
1441
  c.detach();
1500
1442
  this.el = r.nativeElement;
@@ -1514,10 +1456,9 @@ export declare interface SwirlIconAi extends Components.SwirlIconAi {}
1514
1456
  template: '<ng-content></ng-content>',
1515
1457
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1516
1458
  inputs: ['color', 'size'],
1517
- standalone: false
1518
1459
  })
1519
1460
  export class SwirlIconAiFilled {
1520
- protected el: HTMLSwirlIconAiFilledElement;
1461
+ protected el: HTMLElement;
1521
1462
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1522
1463
  c.detach();
1523
1464
  this.el = r.nativeElement;
@@ -1537,10 +1478,9 @@ export declare interface SwirlIconAiFilled extends Components.SwirlIconAiFilled
1537
1478
  template: '<ng-content></ng-content>',
1538
1479
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1539
1480
  inputs: ['color', 'size'],
1540
- standalone: false
1541
1481
  })
1542
1482
  export class SwirlIconApps {
1543
- protected el: HTMLSwirlIconAppsElement;
1483
+ protected el: HTMLElement;
1544
1484
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1545
1485
  c.detach();
1546
1486
  this.el = r.nativeElement;
@@ -1560,10 +1500,9 @@ export declare interface SwirlIconApps extends Components.SwirlIconApps {}
1560
1500
  template: '<ng-content></ng-content>',
1561
1501
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1562
1502
  inputs: ['color', 'size'],
1563
- standalone: false
1564
1503
  })
1565
1504
  export class SwirlIconArrowBack {
1566
- protected el: HTMLSwirlIconArrowBackElement;
1505
+ protected el: HTMLElement;
1567
1506
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1568
1507
  c.detach();
1569
1508
  this.el = r.nativeElement;
@@ -1583,10 +1522,9 @@ export declare interface SwirlIconArrowBack extends Components.SwirlIconArrowBac
1583
1522
  template: '<ng-content></ng-content>',
1584
1523
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1585
1524
  inputs: ['color', 'size'],
1586
- standalone: false
1587
1525
  })
1588
1526
  export class SwirlIconArrowDownward {
1589
- protected el: HTMLSwirlIconArrowDownwardElement;
1527
+ protected el: HTMLElement;
1590
1528
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1591
1529
  c.detach();
1592
1530
  this.el = r.nativeElement;
@@ -1606,10 +1544,9 @@ export declare interface SwirlIconArrowDownward extends Components.SwirlIconArro
1606
1544
  template: '<ng-content></ng-content>',
1607
1545
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1608
1546
  inputs: ['color', 'size'],
1609
- standalone: false
1610
1547
  })
1611
1548
  export class SwirlIconArrowForward {
1612
- protected el: HTMLSwirlIconArrowForwardElement;
1549
+ protected el: HTMLElement;
1613
1550
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1614
1551
  c.detach();
1615
1552
  this.el = r.nativeElement;
@@ -1629,10 +1566,9 @@ export declare interface SwirlIconArrowForward extends Components.SwirlIconArrow
1629
1566
  template: '<ng-content></ng-content>',
1630
1567
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1631
1568
  inputs: ['color', 'size'],
1632
- standalone: false
1633
1569
  })
1634
1570
  export class SwirlIconArrowLeft {
1635
- protected el: HTMLSwirlIconArrowLeftElement;
1571
+ protected el: HTMLElement;
1636
1572
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1637
1573
  c.detach();
1638
1574
  this.el = r.nativeElement;
@@ -1652,10 +1588,9 @@ export declare interface SwirlIconArrowLeft extends Components.SwirlIconArrowLef
1652
1588
  template: '<ng-content></ng-content>',
1653
1589
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1654
1590
  inputs: ['color', 'size'],
1655
- standalone: false
1656
1591
  })
1657
1592
  export class SwirlIconArrowRight {
1658
- protected el: HTMLSwirlIconArrowRightElement;
1593
+ protected el: HTMLElement;
1659
1594
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1660
1595
  c.detach();
1661
1596
  this.el = r.nativeElement;
@@ -1675,10 +1610,9 @@ export declare interface SwirlIconArrowRight extends Components.SwirlIconArrowRi
1675
1610
  template: '<ng-content></ng-content>',
1676
1611
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1677
1612
  inputs: ['color', 'size'],
1678
- standalone: false
1679
1613
  })
1680
1614
  export class SwirlIconArrowRightSmall {
1681
- protected el: HTMLSwirlIconArrowRightSmallElement;
1615
+ protected el: HTMLElement;
1682
1616
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1683
1617
  c.detach();
1684
1618
  this.el = r.nativeElement;
@@ -1698,10 +1632,9 @@ export declare interface SwirlIconArrowRightSmall extends Components.SwirlIconAr
1698
1632
  template: '<ng-content></ng-content>',
1699
1633
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1700
1634
  inputs: ['color', 'size'],
1701
- standalone: false
1702
1635
  })
1703
1636
  export class SwirlIconArrowUpward {
1704
- protected el: HTMLSwirlIconArrowUpwardElement;
1637
+ protected el: HTMLElement;
1705
1638
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1706
1639
  c.detach();
1707
1640
  this.el = r.nativeElement;
@@ -1721,10 +1654,9 @@ export declare interface SwirlIconArrowUpward extends Components.SwirlIconArrowU
1721
1654
  template: '<ng-content></ng-content>',
1722
1655
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1723
1656
  inputs: ['color', 'size'],
1724
- standalone: false
1725
1657
  })
1726
1658
  export class SwirlIconAspectRatio {
1727
- protected el: HTMLSwirlIconAspectRatioElement;
1659
+ protected el: HTMLElement;
1728
1660
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1729
1661
  c.detach();
1730
1662
  this.el = r.nativeElement;
@@ -1744,10 +1676,9 @@ export declare interface SwirlIconAspectRatio extends Components.SwirlIconAspect
1744
1676
  template: '<ng-content></ng-content>',
1745
1677
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1746
1678
  inputs: ['color', 'size'],
1747
- standalone: false
1748
1679
  })
1749
1680
  export class SwirlIconAttachment {
1750
- protected el: HTMLSwirlIconAttachmentElement;
1681
+ protected el: HTMLElement;
1751
1682
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1752
1683
  c.detach();
1753
1684
  this.el = r.nativeElement;
@@ -1767,10 +1698,9 @@ export declare interface SwirlIconAttachment extends Components.SwirlIconAttachm
1767
1698
  template: '<ng-content></ng-content>',
1768
1699
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1769
1700
  inputs: ['color', 'size'],
1770
- standalone: false
1771
1701
  })
1772
1702
  export class SwirlIconAudioFile {
1773
- protected el: HTMLSwirlIconAudioFileElement;
1703
+ protected el: HTMLElement;
1774
1704
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1775
1705
  c.detach();
1776
1706
  this.el = r.nativeElement;
@@ -1790,10 +1720,9 @@ export declare interface SwirlIconAudioFile extends Components.SwirlIconAudioFil
1790
1720
  template: '<ng-content></ng-content>',
1791
1721
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1792
1722
  inputs: ['color', 'size'],
1793
- standalone: false
1794
1723
  })
1795
1724
  export class SwirlIconAutorenew {
1796
- protected el: HTMLSwirlIconAutorenewElement;
1725
+ protected el: HTMLElement;
1797
1726
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1798
1727
  c.detach();
1799
1728
  this.el = r.nativeElement;
@@ -1813,10 +1742,9 @@ export declare interface SwirlIconAutorenew extends Components.SwirlIconAutorene
1813
1742
  template: '<ng-content></ng-content>',
1814
1743
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1815
1744
  inputs: ['color', 'size'],
1816
- standalone: false
1817
1745
  })
1818
1746
  export class SwirlIconBarChart {
1819
- protected el: HTMLSwirlIconBarChartElement;
1747
+ protected el: HTMLElement;
1820
1748
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1821
1749
  c.detach();
1822
1750
  this.el = r.nativeElement;
@@ -1836,10 +1764,9 @@ export declare interface SwirlIconBarChart extends Components.SwirlIconBarChart
1836
1764
  template: '<ng-content></ng-content>',
1837
1765
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1838
1766
  inputs: ['color', 'size'],
1839
- standalone: false
1840
1767
  })
1841
1768
  export class SwirlIconBeachAccess {
1842
- protected el: HTMLSwirlIconBeachAccessElement;
1769
+ protected el: HTMLElement;
1843
1770
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1844
1771
  c.detach();
1845
1772
  this.el = r.nativeElement;
@@ -1859,10 +1786,9 @@ export declare interface SwirlIconBeachAccess extends Components.SwirlIconBeachA
1859
1786
  template: '<ng-content></ng-content>',
1860
1787
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1861
1788
  inputs: ['color', 'size'],
1862
- standalone: false
1863
1789
  })
1864
1790
  export class SwirlIconBeachAccessFilled {
1865
- protected el: HTMLSwirlIconBeachAccessFilledElement;
1791
+ protected el: HTMLElement;
1866
1792
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1867
1793
  c.detach();
1868
1794
  this.el = r.nativeElement;
@@ -1882,10 +1808,9 @@ export declare interface SwirlIconBeachAccessFilled extends Components.SwirlIcon
1882
1808
  template: '<ng-content></ng-content>',
1883
1809
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1884
1810
  inputs: ['color', 'size'],
1885
- standalone: false
1886
1811
  })
1887
1812
  export class SwirlIconBlock {
1888
- protected el: HTMLSwirlIconBlockElement;
1813
+ protected el: HTMLElement;
1889
1814
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1890
1815
  c.detach();
1891
1816
  this.el = r.nativeElement;
@@ -1905,10 +1830,9 @@ export declare interface SwirlIconBlock extends Components.SwirlIconBlock {}
1905
1830
  template: '<ng-content></ng-content>',
1906
1831
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1907
1832
  inputs: ['color', 'size'],
1908
- standalone: false
1909
1833
  })
1910
1834
  export class SwirlIconBookmark {
1911
- protected el: HTMLSwirlIconBookmarkElement;
1835
+ protected el: HTMLElement;
1912
1836
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1913
1837
  c.detach();
1914
1838
  this.el = r.nativeElement;
@@ -1928,10 +1852,9 @@ export declare interface SwirlIconBookmark extends Components.SwirlIconBookmark
1928
1852
  template: '<ng-content></ng-content>',
1929
1853
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1930
1854
  inputs: ['color', 'size'],
1931
- standalone: false
1932
1855
  })
1933
1856
  export class SwirlIconBookmarkFilled {
1934
- protected el: HTMLSwirlIconBookmarkFilledElement;
1857
+ protected el: HTMLElement;
1935
1858
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1936
1859
  c.detach();
1937
1860
  this.el = r.nativeElement;
@@ -1951,10 +1874,9 @@ export declare interface SwirlIconBookmarkFilled extends Components.SwirlIconBoo
1951
1874
  template: '<ng-content></ng-content>',
1952
1875
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1953
1876
  inputs: ['color', 'size'],
1954
- standalone: false
1955
1877
  })
1956
1878
  export class SwirlIconCalendarAddOnFilled {
1957
- protected el: HTMLSwirlIconCalendarAddOnFilledElement;
1879
+ protected el: HTMLElement;
1958
1880
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1959
1881
  c.detach();
1960
1882
  this.el = r.nativeElement;
@@ -1974,10 +1896,9 @@ export declare interface SwirlIconCalendarAddOnFilled extends Components.SwirlIc
1974
1896
  template: '<ng-content></ng-content>',
1975
1897
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1976
1898
  inputs: ['color', 'size'],
1977
- standalone: false
1978
1899
  })
1979
1900
  export class SwirlIconCalendarRespond {
1980
- protected el: HTMLSwirlIconCalendarRespondElement;
1901
+ protected el: HTMLElement;
1981
1902
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1982
1903
  c.detach();
1983
1904
  this.el = r.nativeElement;
@@ -1997,10 +1918,9 @@ export declare interface SwirlIconCalendarRespond extends Components.SwirlIconCa
1997
1918
  template: '<ng-content></ng-content>',
1998
1919
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1999
1920
  inputs: ['color', 'size'],
2000
- standalone: false
2001
1921
  })
2002
1922
  export class SwirlIconCalendarToday {
2003
- protected el: HTMLSwirlIconCalendarTodayElement;
1923
+ protected el: HTMLElement;
2004
1924
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2005
1925
  c.detach();
2006
1926
  this.el = r.nativeElement;
@@ -2020,10 +1940,9 @@ export declare interface SwirlIconCalendarToday extends Components.SwirlIconCale
2020
1940
  template: '<ng-content></ng-content>',
2021
1941
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2022
1942
  inputs: ['color', 'size'],
2023
- standalone: false
2024
1943
  })
2025
1944
  export class SwirlIconCall {
2026
- protected el: HTMLSwirlIconCallElement;
1945
+ protected el: HTMLElement;
2027
1946
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2028
1947
  c.detach();
2029
1948
  this.el = r.nativeElement;
@@ -2043,10 +1962,9 @@ export declare interface SwirlIconCall extends Components.SwirlIconCall {}
2043
1962
  template: '<ng-content></ng-content>',
2044
1963
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2045
1964
  inputs: ['color', 'size'],
2046
- standalone: false
2047
1965
  })
2048
1966
  export class SwirlIconCallEnd {
2049
- protected el: HTMLSwirlIconCallEndElement;
1967
+ protected el: HTMLElement;
2050
1968
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2051
1969
  c.detach();
2052
1970
  this.el = r.nativeElement;
@@ -2066,10 +1984,9 @@ export declare interface SwirlIconCallEnd extends Components.SwirlIconCallEnd {}
2066
1984
  template: '<ng-content></ng-content>',
2067
1985
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2068
1986
  inputs: ['color', 'size'],
2069
- standalone: false
2070
1987
  })
2071
1988
  export class SwirlIconCancel {
2072
- protected el: HTMLSwirlIconCancelElement;
1989
+ protected el: HTMLElement;
2073
1990
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2074
1991
  c.detach();
2075
1992
  this.el = r.nativeElement;
@@ -2089,10 +2006,9 @@ export declare interface SwirlIconCancel extends Components.SwirlIconCancel {}
2089
2006
  template: '<ng-content></ng-content>',
2090
2007
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2091
2008
  inputs: ['color', 'size'],
2092
- standalone: false
2093
2009
  })
2094
2010
  export class SwirlIconCancelFilled {
2095
- protected el: HTMLSwirlIconCancelFilledElement;
2011
+ protected el: HTMLElement;
2096
2012
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2097
2013
  c.detach();
2098
2014
  this.el = r.nativeElement;
@@ -2112,10 +2028,9 @@ export declare interface SwirlIconCancelFilled extends Components.SwirlIconCance
2112
2028
  template: '<ng-content></ng-content>',
2113
2029
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2114
2030
  inputs: ['color', 'size'],
2115
- standalone: false
2116
2031
  })
2117
2032
  export class SwirlIconChatBubble {
2118
- protected el: HTMLSwirlIconChatBubbleElement;
2033
+ protected el: HTMLElement;
2119
2034
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2120
2035
  c.detach();
2121
2036
  this.el = r.nativeElement;
@@ -2135,10 +2050,9 @@ export declare interface SwirlIconChatBubble extends Components.SwirlIconChatBub
2135
2050
  template: '<ng-content></ng-content>',
2136
2051
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2137
2052
  inputs: ['color', 'size'],
2138
- standalone: false
2139
2053
  })
2140
2054
  export class SwirlIconChats {
2141
- protected el: HTMLSwirlIconChatsElement;
2055
+ protected el: HTMLElement;
2142
2056
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2143
2057
  c.detach();
2144
2058
  this.el = r.nativeElement;
@@ -2158,10 +2072,9 @@ export declare interface SwirlIconChats extends Components.SwirlIconChats {}
2158
2072
  template: '<ng-content></ng-content>',
2159
2073
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2160
2074
  inputs: ['color', 'size'],
2161
- standalone: false
2162
2075
  })
2163
2076
  export class SwirlIconChatsFilled {
2164
- protected el: HTMLSwirlIconChatsFilledElement;
2077
+ protected el: HTMLElement;
2165
2078
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2166
2079
  c.detach();
2167
2080
  this.el = r.nativeElement;
@@ -2181,10 +2094,9 @@ export declare interface SwirlIconChatsFilled extends Components.SwirlIconChatsF
2181
2094
  template: '<ng-content></ng-content>',
2182
2095
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2183
2096
  inputs: ['color', 'size'],
2184
- standalone: false
2185
2097
  })
2186
2098
  export class SwirlIconCheck {
2187
- protected el: HTMLSwirlIconCheckElement;
2099
+ protected el: HTMLElement;
2188
2100
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2189
2101
  c.detach();
2190
2102
  this.el = r.nativeElement;
@@ -2204,10 +2116,9 @@ export declare interface SwirlIconCheck extends Components.SwirlIconCheck {}
2204
2116
  template: '<ng-content></ng-content>',
2205
2117
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2206
2118
  inputs: ['color', 'size'],
2207
- standalone: false
2208
2119
  })
2209
2120
  export class SwirlIconCheckCircle {
2210
- protected el: HTMLSwirlIconCheckCircleElement;
2121
+ protected el: HTMLElement;
2211
2122
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2212
2123
  c.detach();
2213
2124
  this.el = r.nativeElement;
@@ -2227,10 +2138,9 @@ export declare interface SwirlIconCheckCircle extends Components.SwirlIconCheckC
2227
2138
  template: '<ng-content></ng-content>',
2228
2139
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2229
2140
  inputs: ['color', 'size'],
2230
- standalone: false
2231
2141
  })
2232
2142
  export class SwirlIconCheckCircleFilled {
2233
- protected el: HTMLSwirlIconCheckCircleFilledElement;
2143
+ protected el: HTMLElement;
2234
2144
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2235
2145
  c.detach();
2236
2146
  this.el = r.nativeElement;
@@ -2250,10 +2160,9 @@ export declare interface SwirlIconCheckCircleFilled extends Components.SwirlIcon
2250
2160
  template: '<ng-content></ng-content>',
2251
2161
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2252
2162
  inputs: ['color', 'size'],
2253
- standalone: false
2254
2163
  })
2255
2164
  export class SwirlIconCheckSmall {
2256
- protected el: HTMLSwirlIconCheckSmallElement;
2165
+ protected el: HTMLElement;
2257
2166
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2258
2167
  c.detach();
2259
2168
  this.el = r.nativeElement;
@@ -2273,10 +2182,9 @@ export declare interface SwirlIconCheckSmall extends Components.SwirlIconCheckSm
2273
2182
  template: '<ng-content></ng-content>',
2274
2183
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2275
2184
  inputs: ['color', 'size'],
2276
- standalone: false
2277
2185
  })
2278
2186
  export class SwirlIconCheckStrong {
2279
- protected el: HTMLSwirlIconCheckStrongElement;
2187
+ protected el: HTMLElement;
2280
2188
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2281
2189
  c.detach();
2282
2190
  this.el = r.nativeElement;
@@ -2296,10 +2204,9 @@ export declare interface SwirlIconCheckStrong extends Components.SwirlIconCheckS
2296
2204
  template: '<ng-content></ng-content>',
2297
2205
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2298
2206
  inputs: ['color', 'size'],
2299
- standalone: false
2300
2207
  })
2301
2208
  export class SwirlIconChevronLeft {
2302
- protected el: HTMLSwirlIconChevronLeftElement;
2209
+ protected el: HTMLElement;
2303
2210
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2304
2211
  c.detach();
2305
2212
  this.el = r.nativeElement;
@@ -2319,10 +2226,9 @@ export declare interface SwirlIconChevronLeft extends Components.SwirlIconChevro
2319
2226
  template: '<ng-content></ng-content>',
2320
2227
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2321
2228
  inputs: ['color', 'size'],
2322
- standalone: false
2323
2229
  })
2324
2230
  export class SwirlIconChevronRight {
2325
- protected el: HTMLSwirlIconChevronRightElement;
2231
+ protected el: HTMLElement;
2326
2232
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2327
2233
  c.detach();
2328
2234
  this.el = r.nativeElement;
@@ -2342,10 +2248,9 @@ export declare interface SwirlIconChevronRight extends Components.SwirlIconChevr
2342
2248
  template: '<ng-content></ng-content>',
2343
2249
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2344
2250
  inputs: ['color', 'size'],
2345
- standalone: false
2346
2251
  })
2347
2252
  export class SwirlIconClose {
2348
- protected el: HTMLSwirlIconCloseElement;
2253
+ protected el: HTMLElement;
2349
2254
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2350
2255
  c.detach();
2351
2256
  this.el = r.nativeElement;
@@ -2365,10 +2270,9 @@ export declare interface SwirlIconClose extends Components.SwirlIconClose {}
2365
2270
  template: '<ng-content></ng-content>',
2366
2271
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2367
2272
  inputs: ['color', 'size'],
2368
- standalone: false
2369
2273
  })
2370
2274
  export class SwirlIconCloseFullscreen {
2371
- protected el: HTMLSwirlIconCloseFullscreenElement;
2275
+ protected el: HTMLElement;
2372
2276
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2373
2277
  c.detach();
2374
2278
  this.el = r.nativeElement;
@@ -2388,10 +2292,9 @@ export declare interface SwirlIconCloseFullscreen extends Components.SwirlIconCl
2388
2292
  template: '<ng-content></ng-content>',
2389
2293
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2390
2294
  inputs: ['color', 'size'],
2391
- standalone: false
2392
2295
  })
2393
2296
  export class SwirlIconCloseSmall {
2394
- protected el: HTMLSwirlIconCloseSmallElement;
2297
+ protected el: HTMLElement;
2395
2298
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2396
2299
  c.detach();
2397
2300
  this.el = r.nativeElement;
@@ -2411,10 +2314,9 @@ export declare interface SwirlIconCloseSmall extends Components.SwirlIconCloseSm
2411
2314
  template: '<ng-content></ng-content>',
2412
2315
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2413
2316
  inputs: ['color', 'size'],
2414
- standalone: false
2415
2317
  })
2416
2318
  export class SwirlIconCloudUpload {
2417
- protected el: HTMLSwirlIconCloudUploadElement;
2319
+ protected el: HTMLElement;
2418
2320
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2419
2321
  c.detach();
2420
2322
  this.el = r.nativeElement;
@@ -2434,10 +2336,9 @@ export declare interface SwirlIconCloudUpload extends Components.SwirlIconCloudU
2434
2336
  template: '<ng-content></ng-content>',
2435
2337
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2436
2338
  inputs: ['color', 'size'],
2437
- standalone: false
2438
2339
  })
2439
2340
  export class SwirlIconColumn {
2440
- protected el: HTMLSwirlIconColumnElement;
2341
+ protected el: HTMLElement;
2441
2342
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2442
2343
  c.detach();
2443
2344
  this.el = r.nativeElement;
@@ -2457,10 +2358,9 @@ export declare interface SwirlIconColumn extends Components.SwirlIconColumn {}
2457
2358
  template: '<ng-content></ng-content>',
2458
2359
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2459
2360
  inputs: ['color', 'size'],
2460
- standalone: false
2461
2361
  })
2462
2362
  export class SwirlIconComment {
2463
- protected el: HTMLSwirlIconCommentElement;
2363
+ protected el: HTMLElement;
2464
2364
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2465
2365
  c.detach();
2466
2366
  this.el = r.nativeElement;
@@ -2480,10 +2380,9 @@ export declare interface SwirlIconComment extends Components.SwirlIconComment {}
2480
2380
  template: '<ng-content></ng-content>',
2481
2381
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2482
2382
  inputs: ['color', 'size'],
2483
- standalone: false
2484
2383
  })
2485
2384
  export class SwirlIconContrast {
2486
- protected el: HTMLSwirlIconContrastElement;
2385
+ protected el: HTMLElement;
2487
2386
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2488
2387
  c.detach();
2489
2388
  this.el = r.nativeElement;
@@ -2503,10 +2402,9 @@ export declare interface SwirlIconContrast extends Components.SwirlIconContrast
2503
2402
  template: '<ng-content></ng-content>',
2504
2403
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2505
2404
  inputs: ['color', 'size'],
2506
- standalone: false
2507
2405
  })
2508
2406
  export class SwirlIconCopy {
2509
- protected el: HTMLSwirlIconCopyElement;
2407
+ protected el: HTMLElement;
2510
2408
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2511
2409
  c.detach();
2512
2410
  this.el = r.nativeElement;
@@ -2526,10 +2424,9 @@ export declare interface SwirlIconCopy extends Components.SwirlIconCopy {}
2526
2424
  template: '<ng-content></ng-content>',
2527
2425
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2528
2426
  inputs: ['color', 'size'],
2529
- standalone: false
2530
2427
  })
2531
2428
  export class SwirlIconCrop {
2532
- protected el: HTMLSwirlIconCropElement;
2429
+ protected el: HTMLElement;
2533
2430
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2534
2431
  c.detach();
2535
2432
  this.el = r.nativeElement;
@@ -2549,10 +2446,9 @@ export declare interface SwirlIconCrop extends Components.SwirlIconCrop {}
2549
2446
  template: '<ng-content></ng-content>',
2550
2447
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2551
2448
  inputs: ['color', 'size'],
2552
- standalone: false
2553
2449
  })
2554
2450
  export class SwirlIconDarkMode {
2555
- protected el: HTMLSwirlIconDarkModeElement;
2451
+ protected el: HTMLElement;
2556
2452
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2557
2453
  c.detach();
2558
2454
  this.el = r.nativeElement;
@@ -2572,10 +2468,9 @@ export declare interface SwirlIconDarkMode extends Components.SwirlIconDarkMode
2572
2468
  template: '<ng-content></ng-content>',
2573
2469
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2574
2470
  inputs: ['color', 'size'],
2575
- standalone: false
2576
2471
  })
2577
2472
  export class SwirlIconDateRange {
2578
- protected el: HTMLSwirlIconDateRangeElement;
2473
+ protected el: HTMLElement;
2579
2474
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2580
2475
  c.detach();
2581
2476
  this.el = r.nativeElement;
@@ -2595,10 +2490,9 @@ export declare interface SwirlIconDateRange extends Components.SwirlIconDateRang
2595
2490
  template: '<ng-content></ng-content>',
2596
2491
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2597
2492
  inputs: ['color', 'size'],
2598
- standalone: false
2599
2493
  })
2600
2494
  export class SwirlIconDelete {
2601
- protected el: HTMLSwirlIconDeleteElement;
2495
+ protected el: HTMLElement;
2602
2496
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2603
2497
  c.detach();
2604
2498
  this.el = r.nativeElement;
@@ -2618,10 +2512,9 @@ export declare interface SwirlIconDelete extends Components.SwirlIconDelete {}
2618
2512
  template: '<ng-content></ng-content>',
2619
2513
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2620
2514
  inputs: ['color', 'size'],
2621
- standalone: false
2622
2515
  })
2623
2516
  export class SwirlIconDeployedCode {
2624
- protected el: HTMLSwirlIconDeployedCodeElement;
2517
+ protected el: HTMLElement;
2625
2518
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2626
2519
  c.detach();
2627
2520
  this.el = r.nativeElement;
@@ -2641,10 +2534,9 @@ export declare interface SwirlIconDeployedCode extends Components.SwirlIconDeplo
2641
2534
  template: '<ng-content></ng-content>',
2642
2535
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2643
2536
  inputs: ['color', 'size'],
2644
- standalone: false
2645
2537
  })
2646
2538
  export class SwirlIconDescription {
2647
- protected el: HTMLSwirlIconDescriptionElement;
2539
+ protected el: HTMLElement;
2648
2540
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2649
2541
  c.detach();
2650
2542
  this.el = r.nativeElement;
@@ -2664,10 +2556,9 @@ export declare interface SwirlIconDescription extends Components.SwirlIconDescri
2664
2556
  template: '<ng-content></ng-content>',
2665
2557
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2666
2558
  inputs: ['color', 'size'],
2667
- standalone: false
2668
2559
  })
2669
2560
  export class SwirlIconDesktop {
2670
- protected el: HTMLSwirlIconDesktopElement;
2561
+ protected el: HTMLElement;
2671
2562
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2672
2563
  c.detach();
2673
2564
  this.el = r.nativeElement;
@@ -2687,10 +2578,9 @@ export declare interface SwirlIconDesktop extends Components.SwirlIconDesktop {}
2687
2578
  template: '<ng-content></ng-content>',
2688
2579
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2689
2580
  inputs: ['color', 'size'],
2690
- standalone: false
2691
2581
  })
2692
2582
  export class SwirlIconDirectory {
2693
- protected el: HTMLSwirlIconDirectoryElement;
2583
+ protected el: HTMLElement;
2694
2584
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2695
2585
  c.detach();
2696
2586
  this.el = r.nativeElement;
@@ -2710,10 +2600,9 @@ export declare interface SwirlIconDirectory extends Components.SwirlIconDirector
2710
2600
  template: '<ng-content></ng-content>',
2711
2601
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2712
2602
  inputs: ['color', 'size'],
2713
- standalone: false
2714
2603
  })
2715
2604
  export class SwirlIconDirectoryFilled {
2716
- protected el: HTMLSwirlIconDirectoryFilledElement;
2605
+ protected el: HTMLElement;
2717
2606
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2718
2607
  c.detach();
2719
2608
  this.el = r.nativeElement;
@@ -2733,10 +2622,9 @@ export declare interface SwirlIconDirectoryFilled extends Components.SwirlIconDi
2733
2622
  template: '<ng-content></ng-content>',
2734
2623
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2735
2624
  inputs: ['color', 'size'],
2736
- standalone: false
2737
2625
  })
2738
2626
  export class SwirlIconDiscover {
2739
- protected el: HTMLSwirlIconDiscoverElement;
2627
+ protected el: HTMLElement;
2740
2628
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2741
2629
  c.detach();
2742
2630
  this.el = r.nativeElement;
@@ -2756,10 +2644,9 @@ export declare interface SwirlIconDiscover extends Components.SwirlIconDiscover
2756
2644
  template: '<ng-content></ng-content>',
2757
2645
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2758
2646
  inputs: ['color', 'size'],
2759
- standalone: false
2760
2647
  })
2761
2648
  export class SwirlIconDockLeft {
2762
- protected el: HTMLSwirlIconDockLeftElement;
2649
+ protected el: HTMLElement;
2763
2650
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2764
2651
  c.detach();
2765
2652
  this.el = r.nativeElement;
@@ -2779,10 +2666,9 @@ export declare interface SwirlIconDockLeft extends Components.SwirlIconDockLeft
2779
2666
  template: '<ng-content></ng-content>',
2780
2667
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2781
2668
  inputs: ['color', 'size'],
2782
- standalone: false
2783
2669
  })
2784
2670
  export class SwirlIconDockLeftCollapse {
2785
- protected el: HTMLSwirlIconDockLeftCollapseElement;
2671
+ protected el: HTMLElement;
2786
2672
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2787
2673
  c.detach();
2788
2674
  this.el = r.nativeElement;
@@ -2802,10 +2688,9 @@ export declare interface SwirlIconDockLeftCollapse extends Components.SwirlIconD
2802
2688
  template: '<ng-content></ng-content>',
2803
2689
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2804
2690
  inputs: ['color', 'size'],
2805
- standalone: false
2806
2691
  })
2807
2692
  export class SwirlIconDockLeftExpand {
2808
- protected el: HTMLSwirlIconDockLeftExpandElement;
2693
+ protected el: HTMLElement;
2809
2694
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2810
2695
  c.detach();
2811
2696
  this.el = r.nativeElement;
@@ -2825,10 +2710,9 @@ export declare interface SwirlIconDockLeftExpand extends Components.SwirlIconDoc
2825
2710
  template: '<ng-content></ng-content>',
2826
2711
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2827
2712
  inputs: ['color', 'size'],
2828
- standalone: false
2829
2713
  })
2830
2714
  export class SwirlIconDoorOpen {
2831
- protected el: HTMLSwirlIconDoorOpenElement;
2715
+ protected el: HTMLElement;
2832
2716
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2833
2717
  c.detach();
2834
2718
  this.el = r.nativeElement;
@@ -2848,10 +2732,9 @@ export declare interface SwirlIconDoorOpen extends Components.SwirlIconDoorOpen
2848
2732
  template: '<ng-content></ng-content>',
2849
2733
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2850
2734
  inputs: ['color', 'size'],
2851
- standalone: false
2852
2735
  })
2853
2736
  export class SwirlIconDot {
2854
- protected el: HTMLSwirlIconDotElement;
2737
+ protected el: HTMLElement;
2855
2738
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2856
2739
  c.detach();
2857
2740
  this.el = r.nativeElement;
@@ -2871,10 +2754,9 @@ export declare interface SwirlIconDot extends Components.SwirlIconDot {}
2871
2754
  template: '<ng-content></ng-content>',
2872
2755
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2873
2756
  inputs: ['color', 'size'],
2874
- standalone: false
2875
2757
  })
2876
2758
  export class SwirlIconDoubleArrowLeft {
2877
- protected el: HTMLSwirlIconDoubleArrowLeftElement;
2759
+ protected el: HTMLElement;
2878
2760
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2879
2761
  c.detach();
2880
2762
  this.el = r.nativeElement;
@@ -2894,10 +2776,9 @@ export declare interface SwirlIconDoubleArrowLeft extends Components.SwirlIconDo
2894
2776
  template: '<ng-content></ng-content>',
2895
2777
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2896
2778
  inputs: ['color', 'size'],
2897
- standalone: false
2898
2779
  })
2899
2780
  export class SwirlIconDoubleArrowRight {
2900
- protected el: HTMLSwirlIconDoubleArrowRightElement;
2781
+ protected el: HTMLElement;
2901
2782
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2902
2783
  c.detach();
2903
2784
  this.el = r.nativeElement;
@@ -2917,10 +2798,9 @@ export declare interface SwirlIconDoubleArrowRight extends Components.SwirlIconD
2917
2798
  template: '<ng-content></ng-content>',
2918
2799
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2919
2800
  inputs: ['color', 'size'],
2920
- standalone: false
2921
2801
  })
2922
2802
  export class SwirlIconDownload {
2923
- protected el: HTMLSwirlIconDownloadElement;
2803
+ protected el: HTMLElement;
2924
2804
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2925
2805
  c.detach();
2926
2806
  this.el = r.nativeElement;
@@ -2940,10 +2820,9 @@ export declare interface SwirlIconDownload extends Components.SwirlIconDownload
2940
2820
  template: '<ng-content></ng-content>',
2941
2821
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2942
2822
  inputs: ['color', 'size'],
2943
- standalone: false
2944
2823
  })
2945
2824
  export class SwirlIconDragHandle {
2946
- protected el: HTMLSwirlIconDragHandleElement;
2825
+ protected el: HTMLElement;
2947
2826
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2948
2827
  c.detach();
2949
2828
  this.el = r.nativeElement;
@@ -2963,10 +2842,9 @@ export declare interface SwirlIconDragHandle extends Components.SwirlIconDragHan
2963
2842
  template: '<ng-content></ng-content>',
2964
2843
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2965
2844
  inputs: ['color', 'size'],
2966
- standalone: false
2967
2845
  })
2968
2846
  export class SwirlIconEdit {
2969
- protected el: HTMLSwirlIconEditElement;
2847
+ protected el: HTMLElement;
2970
2848
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2971
2849
  c.detach();
2972
2850
  this.el = r.nativeElement;
@@ -2986,10 +2864,9 @@ export declare interface SwirlIconEdit extends Components.SwirlIconEdit {}
2986
2864
  template: '<ng-content></ng-content>',
2987
2865
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2988
2866
  inputs: ['color', 'size'],
2989
- standalone: false
2990
2867
  })
2991
2868
  export class SwirlIconEditNote {
2992
- protected el: HTMLSwirlIconEditNoteElement;
2869
+ protected el: HTMLElement;
2993
2870
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2994
2871
  c.detach();
2995
2872
  this.el = r.nativeElement;
@@ -3009,10 +2886,9 @@ export declare interface SwirlIconEditNote extends Components.SwirlIconEditNote
3009
2886
  template: '<ng-content></ng-content>',
3010
2887
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3011
2888
  inputs: ['color', 'size'],
3012
- standalone: false
3013
2889
  })
3014
2890
  export class SwirlIconEmojiMood {
3015
- protected el: HTMLSwirlIconEmojiMoodElement;
2891
+ protected el: HTMLElement;
3016
2892
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3017
2893
  c.detach();
3018
2894
  this.el = r.nativeElement;
@@ -3032,10 +2908,9 @@ export declare interface SwirlIconEmojiMood extends Components.SwirlIconEmojiMoo
3032
2908
  template: '<ng-content></ng-content>',
3033
2909
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3034
2910
  inputs: ['color', 'size'],
3035
- standalone: false
3036
2911
  })
3037
2912
  export class SwirlIconEmojiSatisfied {
3038
- protected el: HTMLSwirlIconEmojiSatisfiedElement;
2913
+ protected el: HTMLElement;
3039
2914
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3040
2915
  c.detach();
3041
2916
  this.el = r.nativeElement;
@@ -3055,10 +2930,9 @@ export declare interface SwirlIconEmojiSatisfied extends Components.SwirlIconEmo
3055
2930
  template: '<ng-content></ng-content>',
3056
2931
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3057
2932
  inputs: ['color', 'size'],
3058
- standalone: false
3059
2933
  })
3060
2934
  export class SwirlIconError {
3061
- protected el: HTMLSwirlIconErrorElement;
2935
+ protected el: HTMLElement;
3062
2936
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3063
2937
  c.detach();
3064
2938
  this.el = r.nativeElement;
@@ -3078,10 +2952,9 @@ export declare interface SwirlIconError extends Components.SwirlIconError {}
3078
2952
  template: '<ng-content></ng-content>',
3079
2953
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3080
2954
  inputs: ['color', 'size'],
3081
- standalone: false
3082
2955
  })
3083
2956
  export class SwirlIconExpandLess {
3084
- protected el: HTMLSwirlIconExpandLessElement;
2957
+ protected el: HTMLElement;
3085
2958
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3086
2959
  c.detach();
3087
2960
  this.el = r.nativeElement;
@@ -3101,10 +2974,9 @@ export declare interface SwirlIconExpandLess extends Components.SwirlIconExpandL
3101
2974
  template: '<ng-content></ng-content>',
3102
2975
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3103
2976
  inputs: ['color', 'size'],
3104
- standalone: false
3105
2977
  })
3106
2978
  export class SwirlIconExpandMore {
3107
- protected el: HTMLSwirlIconExpandMoreElement;
2979
+ protected el: HTMLElement;
3108
2980
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3109
2981
  c.detach();
3110
2982
  this.el = r.nativeElement;
@@ -3124,10 +2996,9 @@ export declare interface SwirlIconExpandMore extends Components.SwirlIconExpandM
3124
2996
  template: '<ng-content></ng-content>',
3125
2997
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3126
2998
  inputs: ['color', 'size'],
3127
- standalone: false
3128
2999
  })
3129
3000
  export class SwirlIconExperiment {
3130
- protected el: HTMLSwirlIconExperimentElement;
3001
+ protected el: HTMLElement;
3131
3002
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3132
3003
  c.detach();
3133
3004
  this.el = r.nativeElement;
@@ -3147,10 +3018,9 @@ export declare interface SwirlIconExperiment extends Components.SwirlIconExperim
3147
3018
  template: '<ng-content></ng-content>',
3148
3019
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3149
3020
  inputs: ['color', 'size'],
3150
- standalone: false
3151
3021
  })
3152
3022
  export class SwirlIconFile {
3153
- protected el: HTMLSwirlIconFileElement;
3023
+ protected el: HTMLElement;
3154
3024
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3155
3025
  c.detach();
3156
3026
  this.el = r.nativeElement;
@@ -3170,10 +3040,9 @@ export declare interface SwirlIconFile extends Components.SwirlIconFile {}
3170
3040
  template: '<ng-content></ng-content>',
3171
3041
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3172
3042
  inputs: ['color', 'size'],
3173
- standalone: false
3174
3043
  })
3175
3044
  export class SwirlIconFileCopy {
3176
- protected el: HTMLSwirlIconFileCopyElement;
3045
+ protected el: HTMLElement;
3177
3046
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3178
3047
  c.detach();
3179
3048
  this.el = r.nativeElement;
@@ -3193,10 +3062,9 @@ export declare interface SwirlIconFileCopy extends Components.SwirlIconFileCopy
3193
3062
  template: '<ng-content></ng-content>',
3194
3063
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3195
3064
  inputs: ['color', 'size'],
3196
- standalone: false
3197
3065
  })
3198
3066
  export class SwirlIconFilter {
3199
- protected el: HTMLSwirlIconFilterElement;
3067
+ protected el: HTMLElement;
3200
3068
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3201
3069
  c.detach();
3202
3070
  this.el = r.nativeElement;
@@ -3216,10 +3084,9 @@ export declare interface SwirlIconFilter extends Components.SwirlIconFilter {}
3216
3084
  template: '<ng-content></ng-content>',
3217
3085
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3218
3086
  inputs: ['color', 'size'],
3219
- standalone: false
3220
3087
  })
3221
3088
  export class SwirlIconFolder {
3222
- protected el: HTMLSwirlIconFolderElement;
3089
+ protected el: HTMLElement;
3223
3090
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3224
3091
  c.detach();
3225
3092
  this.el = r.nativeElement;
@@ -3239,10 +3106,9 @@ export declare interface SwirlIconFolder extends Components.SwirlIconFolder {}
3239
3106
  template: '<ng-content></ng-content>',
3240
3107
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3241
3108
  inputs: ['color', 'size'],
3242
- standalone: false
3243
3109
  })
3244
3110
  export class SwirlIconFolderShared {
3245
- protected el: HTMLSwirlIconFolderSharedElement;
3111
+ protected el: HTMLElement;
3246
3112
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3247
3113
  c.detach();
3248
3114
  this.el = r.nativeElement;
@@ -3262,10 +3128,9 @@ export declare interface SwirlIconFolderShared extends Components.SwirlIconFolde
3262
3128
  template: '<ng-content></ng-content>',
3263
3129
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3264
3130
  inputs: ['color', 'size'],
3265
- standalone: false
3266
3131
  })
3267
3132
  export class SwirlIconFormatHOne {
3268
- protected el: HTMLSwirlIconFormatHOneElement;
3133
+ protected el: HTMLElement;
3269
3134
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3270
3135
  c.detach();
3271
3136
  this.el = r.nativeElement;
@@ -3285,10 +3150,9 @@ export declare interface SwirlIconFormatHOne extends Components.SwirlIconFormatH
3285
3150
  template: '<ng-content></ng-content>',
3286
3151
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3287
3152
  inputs: ['color', 'size'],
3288
- standalone: false
3289
3153
  })
3290
3154
  export class SwirlIconFormatListBulleted {
3291
- protected el: HTMLSwirlIconFormatListBulletedElement;
3155
+ protected el: HTMLElement;
3292
3156
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3293
3157
  c.detach();
3294
3158
  this.el = r.nativeElement;
@@ -3308,10 +3172,9 @@ export declare interface SwirlIconFormatListBulleted extends Components.SwirlIco
3308
3172
  template: '<ng-content></ng-content>',
3309
3173
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3310
3174
  inputs: ['color', 'size'],
3311
- standalone: false
3312
3175
  })
3313
3176
  export class SwirlIconFullscreen {
3314
- protected el: HTMLSwirlIconFullscreenElement;
3177
+ protected el: HTMLElement;
3315
3178
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3316
3179
  c.detach();
3317
3180
  this.el = r.nativeElement;
@@ -3331,10 +3194,9 @@ export declare interface SwirlIconFullscreen extends Components.SwirlIconFullscr
3331
3194
  template: '<ng-content></ng-content>',
3332
3195
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3333
3196
  inputs: ['color', 'size'],
3334
- standalone: false
3335
3197
  })
3336
3198
  export class SwirlIconFullscreenExit {
3337
- protected el: HTMLSwirlIconFullscreenExitElement;
3199
+ protected el: HTMLElement;
3338
3200
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3339
3201
  c.detach();
3340
3202
  this.el = r.nativeElement;
@@ -3354,10 +3216,9 @@ export declare interface SwirlIconFullscreenExit extends Components.SwirlIconFul
3354
3216
  template: '<ng-content></ng-content>',
3355
3217
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3356
3218
  inputs: ['color', 'size'],
3357
- standalone: false
3358
3219
  })
3359
3220
  export class SwirlIconGif {
3360
- protected el: HTMLSwirlIconGifElement;
3221
+ protected el: HTMLElement;
3361
3222
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3362
3223
  c.detach();
3363
3224
  this.el = r.nativeElement;
@@ -3377,10 +3238,9 @@ export declare interface SwirlIconGif extends Components.SwirlIconGif {}
3377
3238
  template: '<ng-content></ng-content>',
3378
3239
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3379
3240
  inputs: ['color', 'size'],
3380
- standalone: false
3381
3241
  })
3382
3242
  export class SwirlIconGroupAdd {
3383
- protected el: HTMLSwirlIconGroupAddElement;
3243
+ protected el: HTMLElement;
3384
3244
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3385
3245
  c.detach();
3386
3246
  this.el = r.nativeElement;
@@ -3400,10 +3260,9 @@ export declare interface SwirlIconGroupAdd extends Components.SwirlIconGroupAdd
3400
3260
  template: '<ng-content></ng-content>',
3401
3261
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3402
3262
  inputs: ['color', 'size'],
3403
- standalone: false
3404
3263
  })
3405
3264
  export class SwirlIconGroupAssign {
3406
- protected el: HTMLSwirlIconGroupAssignElement;
3265
+ protected el: HTMLElement;
3407
3266
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3408
3267
  c.detach();
3409
3268
  this.el = r.nativeElement;
@@ -3423,10 +3282,9 @@ export declare interface SwirlIconGroupAssign extends Components.SwirlIconGroupA
3423
3282
  template: '<ng-content></ng-content>',
3424
3283
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3425
3284
  inputs: ['color', 'size'],
3426
- standalone: false
3427
3285
  })
3428
3286
  export class SwirlIconGroups {
3429
- protected el: HTMLSwirlIconGroupsElement;
3287
+ protected el: HTMLElement;
3430
3288
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3431
3289
  c.detach();
3432
3290
  this.el = r.nativeElement;
@@ -3446,10 +3304,9 @@ export declare interface SwirlIconGroups extends Components.SwirlIconGroups {}
3446
3304
  template: '<ng-content></ng-content>',
3447
3305
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3448
3306
  inputs: ['color', 'size'],
3449
- standalone: false
3450
3307
  })
3451
3308
  export class SwirlIconGroupsFilled {
3452
- protected el: HTMLSwirlIconGroupsFilledElement;
3309
+ protected el: HTMLElement;
3453
3310
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3454
3311
  c.detach();
3455
3312
  this.el = r.nativeElement;
@@ -3469,10 +3326,9 @@ export declare interface SwirlIconGroupsFilled extends Components.SwirlIconGroup
3469
3326
  template: '<ng-content></ng-content>',
3470
3327
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3471
3328
  inputs: ['color', 'size'],
3472
- standalone: false
3473
3329
  })
3474
3330
  export class SwirlIconHamburgerMenu {
3475
- protected el: HTMLSwirlIconHamburgerMenuElement;
3331
+ protected el: HTMLElement;
3476
3332
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3477
3333
  c.detach();
3478
3334
  this.el = r.nativeElement;
@@ -3492,10 +3348,9 @@ export declare interface SwirlIconHamburgerMenu extends Components.SwirlIconHamb
3492
3348
  template: '<ng-content></ng-content>',
3493
3349
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3494
3350
  inputs: ['color', 'size'],
3495
- standalone: false
3496
3351
  })
3497
3352
  export class SwirlIconHealthAndSafety {
3498
- protected el: HTMLSwirlIconHealthAndSafetyElement;
3353
+ protected el: HTMLElement;
3499
3354
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3500
3355
  c.detach();
3501
3356
  this.el = r.nativeElement;
@@ -3515,10 +3370,9 @@ export declare interface SwirlIconHealthAndSafety extends Components.SwirlIconHe
3515
3370
  template: '<ng-content></ng-content>',
3516
3371
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3517
3372
  inputs: ['color', 'size'],
3518
- standalone: false
3519
3373
  })
3520
3374
  export class SwirlIconHelp {
3521
- protected el: HTMLSwirlIconHelpElement;
3375
+ protected el: HTMLElement;
3522
3376
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3523
3377
  c.detach();
3524
3378
  this.el = r.nativeElement;
@@ -3538,10 +3392,9 @@ export declare interface SwirlIconHelp extends Components.SwirlIconHelp {}
3538
3392
  template: '<ng-content></ng-content>',
3539
3393
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3540
3394
  inputs: ['color', 'size'],
3541
- standalone: false
3542
3395
  })
3543
3396
  export class SwirlIconHelpFilled {
3544
- protected el: HTMLSwirlIconHelpFilledElement;
3397
+ protected el: HTMLElement;
3545
3398
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3546
3399
  c.detach();
3547
3400
  this.el = r.nativeElement;
@@ -3561,10 +3414,9 @@ export declare interface SwirlIconHelpFilled extends Components.SwirlIconHelpFil
3561
3414
  template: '<ng-content></ng-content>',
3562
3415
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3563
3416
  inputs: ['color', 'size'],
3564
- standalone: false
3565
3417
  })
3566
3418
  export class SwirlIconHighlight {
3567
- protected el: HTMLSwirlIconHighlightElement;
3419
+ protected el: HTMLElement;
3568
3420
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3569
3421
  c.detach();
3570
3422
  this.el = r.nativeElement;
@@ -3584,10 +3436,9 @@ export declare interface SwirlIconHighlight extends Components.SwirlIconHighligh
3584
3436
  template: '<ng-content></ng-content>',
3585
3437
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3586
3438
  inputs: ['color', 'size'],
3587
- standalone: false
3588
3439
  })
3589
3440
  export class SwirlIconHistory {
3590
- protected el: HTMLSwirlIconHistoryElement;
3441
+ protected el: HTMLElement;
3591
3442
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3592
3443
  c.detach();
3593
3444
  this.el = r.nativeElement;
@@ -3607,10 +3458,9 @@ export declare interface SwirlIconHistory extends Components.SwirlIconHistory {}
3607
3458
  template: '<ng-content></ng-content>',
3608
3459
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3609
3460
  inputs: ['color', 'size'],
3610
- standalone: false
3611
3461
  })
3612
3462
  export class SwirlIconHome {
3613
- protected el: HTMLSwirlIconHomeElement;
3463
+ protected el: HTMLElement;
3614
3464
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3615
3465
  c.detach();
3616
3466
  this.el = r.nativeElement;
@@ -3630,10 +3480,9 @@ export declare interface SwirlIconHome extends Components.SwirlIconHome {}
3630
3480
  template: '<ng-content></ng-content>',
3631
3481
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3632
3482
  inputs: ['color', 'size'],
3633
- standalone: false
3634
3483
  })
3635
3484
  export class SwirlIconHrResting {
3636
- protected el: HTMLSwirlIconHrRestingElement;
3485
+ protected el: HTMLElement;
3637
3486
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3638
3487
  c.detach();
3639
3488
  this.el = r.nativeElement;
@@ -3653,10 +3502,9 @@ export declare interface SwirlIconHrResting extends Components.SwirlIconHrRestin
3653
3502
  template: '<ng-content></ng-content>',
3654
3503
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3655
3504
  inputs: ['color', 'size'],
3656
- standalone: false
3657
3505
  })
3658
3506
  export class SwirlIconImage {
3659
- protected el: HTMLSwirlIconImageElement;
3507
+ protected el: HTMLElement;
3660
3508
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3661
3509
  c.detach();
3662
3510
  this.el = r.nativeElement;
@@ -3676,10 +3524,9 @@ export declare interface SwirlIconImage extends Components.SwirlIconImage {}
3676
3524
  template: '<ng-content></ng-content>',
3677
3525
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3678
3526
  inputs: ['color', 'size'],
3679
- standalone: false
3680
3527
  })
3681
3528
  export class SwirlIconImproveText {
3682
- protected el: HTMLSwirlIconImproveTextElement;
3529
+ protected el: HTMLElement;
3683
3530
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3684
3531
  c.detach();
3685
3532
  this.el = r.nativeElement;
@@ -3699,10 +3546,9 @@ export declare interface SwirlIconImproveText extends Components.SwirlIconImprov
3699
3546
  template: '<ng-content></ng-content>',
3700
3547
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3701
3548
  inputs: ['color', 'size'],
3702
- standalone: false
3703
3549
  })
3704
3550
  export class SwirlIconInfo {
3705
- protected el: HTMLSwirlIconInfoElement;
3551
+ protected el: HTMLElement;
3706
3552
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3707
3553
  c.detach();
3708
3554
  this.el = r.nativeElement;
@@ -3722,10 +3568,9 @@ export declare interface SwirlIconInfo extends Components.SwirlIconInfo {}
3722
3568
  template: '<ng-content></ng-content>',
3723
3569
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3724
3570
  inputs: ['color', 'size'],
3725
- standalone: false
3726
3571
  })
3727
3572
  export class SwirlIconInsertBelow {
3728
- protected el: HTMLSwirlIconInsertBelowElement;
3573
+ protected el: HTMLElement;
3729
3574
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3730
3575
  c.detach();
3731
3576
  this.el = r.nativeElement;
@@ -3745,10 +3590,9 @@ export declare interface SwirlIconInsertBelow extends Components.SwirlIconInsert
3745
3590
  template: '<ng-content></ng-content>',
3746
3591
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3747
3592
  inputs: ['color', 'size'],
3748
- standalone: false
3749
3593
  })
3750
3594
  export class SwirlIconInsertChart {
3751
- protected el: HTMLSwirlIconInsertChartElement;
3595
+ protected el: HTMLElement;
3752
3596
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3753
3597
  c.detach();
3754
3598
  this.el = r.nativeElement;
@@ -3768,10 +3612,9 @@ export declare interface SwirlIconInsertChart extends Components.SwirlIconInsert
3768
3612
  template: '<ng-content></ng-content>',
3769
3613
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3770
3614
  inputs: ['color', 'size'],
3771
- standalone: false
3772
3615
  })
3773
3616
  export class SwirlIconInsertOnTop {
3774
- protected el: HTMLSwirlIconInsertOnTopElement;
3617
+ protected el: HTMLElement;
3775
3618
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3776
3619
  c.detach();
3777
3620
  this.el = r.nativeElement;
@@ -3791,10 +3634,9 @@ export declare interface SwirlIconInsertOnTop extends Components.SwirlIconInsert
3791
3634
  template: '<ng-content></ng-content>',
3792
3635
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3793
3636
  inputs: ['color', 'size'],
3794
- standalone: false
3795
3637
  })
3796
3638
  export class SwirlIconInventory {
3797
- protected el: HTMLSwirlIconInventoryElement;
3639
+ protected el: HTMLElement;
3798
3640
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3799
3641
  c.detach();
3800
3642
  this.el = r.nativeElement;
@@ -3814,10 +3656,9 @@ export declare interface SwirlIconInventory extends Components.SwirlIconInventor
3814
3656
  template: '<ng-content></ng-content>',
3815
3657
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3816
3658
  inputs: ['color', 'size'],
3817
- standalone: false
3818
3659
  })
3819
3660
  export class SwirlIconInventoryOff {
3820
- protected el: HTMLSwirlIconInventoryOffElement;
3661
+ protected el: HTMLElement;
3821
3662
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3822
3663
  c.detach();
3823
3664
  this.el = r.nativeElement;
@@ -3837,10 +3678,9 @@ export declare interface SwirlIconInventoryOff extends Components.SwirlIconInven
3837
3678
  template: '<ng-content></ng-content>',
3838
3679
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3839
3680
  inputs: ['color', 'size'],
3840
- standalone: false
3841
3681
  })
3842
3682
  export class SwirlIconIphone {
3843
- protected el: HTMLSwirlIconIphoneElement;
3683
+ protected el: HTMLElement;
3844
3684
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3845
3685
  c.detach();
3846
3686
  this.el = r.nativeElement;
@@ -3860,10 +3700,9 @@ export declare interface SwirlIconIphone extends Components.SwirlIconIphone {}
3860
3700
  template: '<ng-content></ng-content>',
3861
3701
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3862
3702
  inputs: ['color', 'size'],
3863
- standalone: false
3864
3703
  })
3865
3704
  export class SwirlIconKey {
3866
- protected el: HTMLSwirlIconKeyElement;
3705
+ protected el: HTMLElement;
3867
3706
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3868
3707
  c.detach();
3869
3708
  this.el = r.nativeElement;
@@ -3883,10 +3722,9 @@ export declare interface SwirlIconKey extends Components.SwirlIconKey {}
3883
3722
  template: '<ng-content></ng-content>',
3884
3723
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3885
3724
  inputs: ['color', 'size'],
3886
- standalone: false
3887
3725
  })
3888
3726
  export class SwirlIconKeyboard {
3889
- protected el: HTMLSwirlIconKeyboardElement;
3727
+ protected el: HTMLElement;
3890
3728
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3891
3729
  c.detach();
3892
3730
  this.el = r.nativeElement;
@@ -3906,10 +3744,9 @@ export declare interface SwirlIconKeyboard extends Components.SwirlIconKeyboard
3906
3744
  template: '<ng-content></ng-content>',
3907
3745
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3908
3746
  inputs: ['color', 'size'],
3909
- standalone: false
3910
3747
  })
3911
3748
  export class SwirlIconKeyboardHide {
3912
- protected el: HTMLSwirlIconKeyboardHideElement;
3749
+ protected el: HTMLElement;
3913
3750
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3914
3751
  c.detach();
3915
3752
  this.el = r.nativeElement;
@@ -3929,10 +3766,9 @@ export declare interface SwirlIconKeyboardHide extends Components.SwirlIconKeybo
3929
3766
  template: '<ng-content></ng-content>',
3930
3767
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3931
3768
  inputs: ['color', 'size'],
3932
- standalone: false
3933
3769
  })
3934
3770
  export class SwirlIconLightMode {
3935
- protected el: HTMLSwirlIconLightModeElement;
3771
+ protected el: HTMLElement;
3936
3772
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3937
3773
  c.detach();
3938
3774
  this.el = r.nativeElement;
@@ -3952,10 +3788,9 @@ export declare interface SwirlIconLightMode extends Components.SwirlIconLightMod
3952
3788
  template: '<ng-content></ng-content>',
3953
3789
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3954
3790
  inputs: ['color', 'size'],
3955
- standalone: false
3956
3791
  })
3957
3792
  export class SwirlIconLike {
3958
- protected el: HTMLSwirlIconLikeElement;
3793
+ protected el: HTMLElement;
3959
3794
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3960
3795
  c.detach();
3961
3796
  this.el = r.nativeElement;
@@ -3975,10 +3810,9 @@ export declare interface SwirlIconLike extends Components.SwirlIconLike {}
3975
3810
  template: '<ng-content></ng-content>',
3976
3811
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
3977
3812
  inputs: ['color', 'size'],
3978
- standalone: false
3979
3813
  })
3980
3814
  export class SwirlIconLink {
3981
- protected el: HTMLSwirlIconLinkElement;
3815
+ protected el: HTMLElement;
3982
3816
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
3983
3817
  c.detach();
3984
3818
  this.el = r.nativeElement;
@@ -3998,10 +3832,9 @@ export declare interface SwirlIconLink extends Components.SwirlIconLink {}
3998
3832
  template: '<ng-content></ng-content>',
3999
3833
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4000
3834
  inputs: ['color', 'size'],
4001
- standalone: false
4002
3835
  })
4003
3836
  export class SwirlIconLive {
4004
- protected el: HTMLSwirlIconLiveElement;
3837
+ protected el: HTMLElement;
4005
3838
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4006
3839
  c.detach();
4007
3840
  this.el = r.nativeElement;
@@ -4021,10 +3854,9 @@ export declare interface SwirlIconLive extends Components.SwirlIconLive {}
4021
3854
  template: '<ng-content></ng-content>',
4022
3855
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4023
3856
  inputs: ['color', 'size'],
4024
- standalone: false
4025
3857
  })
4026
3858
  export class SwirlIconLoad {
4027
- protected el: HTMLSwirlIconLoadElement;
3859
+ protected el: HTMLElement;
4028
3860
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4029
3861
  c.detach();
4030
3862
  this.el = r.nativeElement;
@@ -4044,10 +3876,9 @@ export declare interface SwirlIconLoad extends Components.SwirlIconLoad {}
4044
3876
  template: '<ng-content></ng-content>',
4045
3877
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4046
3878
  inputs: ['color', 'size'],
4047
- standalone: false
4048
3879
  })
4049
3880
  export class SwirlIconLocationOn {
4050
- protected el: HTMLSwirlIconLocationOnElement;
3881
+ protected el: HTMLElement;
4051
3882
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4052
3883
  c.detach();
4053
3884
  this.el = r.nativeElement;
@@ -4067,10 +3898,9 @@ export declare interface SwirlIconLocationOn extends Components.SwirlIconLocatio
4067
3898
  template: '<ng-content></ng-content>',
4068
3899
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4069
3900
  inputs: ['color', 'size'],
4070
- standalone: false
4071
3901
  })
4072
3902
  export class SwirlIconLock {
4073
- protected el: HTMLSwirlIconLockElement;
3903
+ protected el: HTMLElement;
4074
3904
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4075
3905
  c.detach();
4076
3906
  this.el = r.nativeElement;
@@ -4090,10 +3920,9 @@ export declare interface SwirlIconLock extends Components.SwirlIconLock {}
4090
3920
  template: '<ng-content></ng-content>',
4091
3921
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4092
3922
  inputs: ['color', 'size'],
4093
- standalone: false
4094
3923
  })
4095
3924
  export class SwirlIconLockOpen {
4096
- protected el: HTMLSwirlIconLockOpenElement;
3925
+ protected el: HTMLElement;
4097
3926
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4098
3927
  c.detach();
4099
3928
  this.el = r.nativeElement;
@@ -4113,10 +3942,9 @@ export declare interface SwirlIconLockOpen extends Components.SwirlIconLockOpen
4113
3942
  template: '<ng-content></ng-content>',
4114
3943
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4115
3944
  inputs: ['color', 'size'],
4116
- standalone: false
4117
3945
  })
4118
3946
  export class SwirlIconLockPerson {
4119
- protected el: HTMLSwirlIconLockPersonElement;
3947
+ protected el: HTMLElement;
4120
3948
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4121
3949
  c.detach();
4122
3950
  this.el = r.nativeElement;
@@ -4136,10 +3964,9 @@ export declare interface SwirlIconLockPerson extends Components.SwirlIconLockPer
4136
3964
  template: '<ng-content></ng-content>',
4137
3965
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4138
3966
  inputs: ['color', 'size'],
4139
- standalone: false
4140
3967
  })
4141
3968
  export class SwirlIconLogin {
4142
- protected el: HTMLSwirlIconLoginElement;
3969
+ protected el: HTMLElement;
4143
3970
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4144
3971
  c.detach();
4145
3972
  this.el = r.nativeElement;
@@ -4159,10 +3986,9 @@ export declare interface SwirlIconLogin extends Components.SwirlIconLogin {}
4159
3986
  template: '<ng-content></ng-content>',
4160
3987
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4161
3988
  inputs: ['color', 'size'],
4162
- standalone: false
4163
3989
  })
4164
3990
  export class SwirlIconLogout {
4165
- protected el: HTMLSwirlIconLogoutElement;
3991
+ protected el: HTMLElement;
4166
3992
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4167
3993
  c.detach();
4168
3994
  this.el = r.nativeElement;
@@ -4182,10 +4008,9 @@ export declare interface SwirlIconLogout extends Components.SwirlIconLogout {}
4182
4008
  template: '<ng-content></ng-content>',
4183
4009
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4184
4010
  inputs: ['color', 'size'],
4185
- standalone: false
4186
4011
  })
4187
4012
  export class SwirlIconLongText {
4188
- protected el: HTMLSwirlIconLongTextElement;
4013
+ protected el: HTMLElement;
4189
4014
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4190
4015
  c.detach();
4191
4016
  this.el = r.nativeElement;
@@ -4205,10 +4030,9 @@ export declare interface SwirlIconLongText extends Components.SwirlIconLongText
4205
4030
  template: '<ng-content></ng-content>',
4206
4031
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4207
4032
  inputs: ['color', 'size'],
4208
- standalone: false
4209
4033
  })
4210
4034
  export class SwirlIconMail {
4211
- protected el: HTMLSwirlIconMailElement;
4035
+ protected el: HTMLElement;
4212
4036
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4213
4037
  c.detach();
4214
4038
  this.el = r.nativeElement;
@@ -4228,10 +4052,9 @@ export declare interface SwirlIconMail extends Components.SwirlIconMail {}
4228
4052
  template: '<ng-content></ng-content>',
4229
4053
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4230
4054
  inputs: ['color', 'size'],
4231
- standalone: false
4232
4055
  })
4233
4056
  export class SwirlIconManageAccounts {
4234
- protected el: HTMLSwirlIconManageAccountsElement;
4057
+ protected el: HTMLElement;
4235
4058
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4236
4059
  c.detach();
4237
4060
  this.el = r.nativeElement;
@@ -4251,10 +4074,9 @@ export declare interface SwirlIconManageAccounts extends Components.SwirlIconMan
4251
4074
  template: '<ng-content></ng-content>',
4252
4075
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4253
4076
  inputs: ['color', 'size'],
4254
- standalone: false
4255
4077
  })
4256
4078
  export class SwirlIconMarkChatRead {
4257
- protected el: HTMLSwirlIconMarkChatReadElement;
4079
+ protected el: HTMLElement;
4258
4080
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4259
4081
  c.detach();
4260
4082
  this.el = r.nativeElement;
@@ -4274,10 +4096,9 @@ export declare interface SwirlIconMarkChatRead extends Components.SwirlIconMarkC
4274
4096
  template: '<ng-content></ng-content>',
4275
4097
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4276
4098
  inputs: ['color', 'size'],
4277
- standalone: false
4278
4099
  })
4279
4100
  export class SwirlIconMarkChatUnread {
4280
- protected el: HTMLSwirlIconMarkChatUnreadElement;
4101
+ protected el: HTMLElement;
4281
4102
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4282
4103
  c.detach();
4283
4104
  this.el = r.nativeElement;
@@ -4297,10 +4118,9 @@ export declare interface SwirlIconMarkChatUnread extends Components.SwirlIconMar
4297
4118
  template: '<ng-content></ng-content>',
4298
4119
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4299
4120
  inputs: ['color', 'size'],
4300
- standalone: false
4301
4121
  })
4302
4122
  export class SwirlIconMention {
4303
- protected el: HTMLSwirlIconMentionElement;
4123
+ protected el: HTMLElement;
4304
4124
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4305
4125
  c.detach();
4306
4126
  this.el = r.nativeElement;
@@ -4320,10 +4140,9 @@ export declare interface SwirlIconMention extends Components.SwirlIconMention {}
4320
4140
  template: '<ng-content></ng-content>',
4321
4141
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4322
4142
  inputs: ['color', 'size'],
4323
- standalone: false
4324
4143
  })
4325
4144
  export class SwirlIconMenu {
4326
- protected el: HTMLSwirlIconMenuElement;
4145
+ protected el: HTMLElement;
4327
4146
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4328
4147
  c.detach();
4329
4148
  this.el = r.nativeElement;
@@ -4343,10 +4162,9 @@ export declare interface SwirlIconMenu extends Components.SwirlIconMenu {}
4343
4162
  template: '<ng-content></ng-content>',
4344
4163
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4345
4164
  inputs: ['color', 'size'],
4346
- standalone: false
4347
4165
  })
4348
4166
  export class SwirlIconMenuBook {
4349
- protected el: HTMLSwirlIconMenuBookElement;
4167
+ protected el: HTMLElement;
4350
4168
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4351
4169
  c.detach();
4352
4170
  this.el = r.nativeElement;
@@ -4366,10 +4184,9 @@ export declare interface SwirlIconMenuBook extends Components.SwirlIconMenuBook
4366
4184
  template: '<ng-content></ng-content>',
4367
4185
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4368
4186
  inputs: ['color', 'size'],
4369
- standalone: false
4370
4187
  })
4371
4188
  export class SwirlIconMenuBookFilled {
4372
- protected el: HTMLSwirlIconMenuBookFilledElement;
4189
+ protected el: HTMLElement;
4373
4190
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4374
4191
  c.detach();
4375
4192
  this.el = r.nativeElement;
@@ -4389,10 +4206,9 @@ export declare interface SwirlIconMenuBookFilled extends Components.SwirlIconMen
4389
4206
  template: '<ng-content></ng-content>',
4390
4207
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4391
4208
  inputs: ['color', 'size'],
4392
- standalone: false
4393
4209
  })
4394
4210
  export class SwirlIconMenuFilled {
4395
- protected el: HTMLSwirlIconMenuFilledElement;
4211
+ protected el: HTMLElement;
4396
4212
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4397
4213
  c.detach();
4398
4214
  this.el = r.nativeElement;
@@ -4412,10 +4228,9 @@ export declare interface SwirlIconMenuFilled extends Components.SwirlIconMenuFil
4412
4228
  template: '<ng-content></ng-content>',
4413
4229
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4414
4230
  inputs: ['color', 'size'],
4415
- standalone: false
4416
4231
  })
4417
4232
  export class SwirlIconMessage {
4418
- protected el: HTMLSwirlIconMessageElement;
4233
+ protected el: HTMLElement;
4419
4234
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4420
4235
  c.detach();
4421
4236
  this.el = r.nativeElement;
@@ -4435,10 +4250,9 @@ export declare interface SwirlIconMessage extends Components.SwirlIconMessage {}
4435
4250
  template: '<ng-content></ng-content>',
4436
4251
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4437
4252
  inputs: ['color', 'size'],
4438
- standalone: false
4439
4253
  })
4440
4254
  export class SwirlIconMic {
4441
- protected el: HTMLSwirlIconMicElement;
4255
+ protected el: HTMLElement;
4442
4256
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4443
4257
  c.detach();
4444
4258
  this.el = r.nativeElement;
@@ -4458,10 +4272,9 @@ export declare interface SwirlIconMic extends Components.SwirlIconMic {}
4458
4272
  template: '<ng-content></ng-content>',
4459
4273
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4460
4274
  inputs: ['color', 'size'],
4461
- standalone: false
4462
4275
  })
4463
4276
  export class SwirlIconMicOff {
4464
- protected el: HTMLSwirlIconMicOffElement;
4277
+ protected el: HTMLElement;
4465
4278
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4466
4279
  c.detach();
4467
4280
  this.el = r.nativeElement;
@@ -4481,10 +4294,9 @@ export declare interface SwirlIconMicOff extends Components.SwirlIconMicOff {}
4481
4294
  template: '<ng-content></ng-content>',
4482
4295
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4483
4296
  inputs: ['color', 'size'],
4484
- standalone: false
4485
4297
  })
4486
4298
  export class SwirlIconMoreHorizontal {
4487
- protected el: HTMLSwirlIconMoreHorizontalElement;
4299
+ protected el: HTMLElement;
4488
4300
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4489
4301
  c.detach();
4490
4302
  this.el = r.nativeElement;
@@ -4504,10 +4316,9 @@ export declare interface SwirlIconMoreHorizontal extends Components.SwirlIconMor
4504
4316
  template: '<ng-content></ng-content>',
4505
4317
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4506
4318
  inputs: ['color', 'size'],
4507
- standalone: false
4508
4319
  })
4509
4320
  export class SwirlIconMoreVertikal {
4510
- protected el: HTMLSwirlIconMoreVertikalElement;
4321
+ protected el: HTMLElement;
4511
4322
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4512
4323
  c.detach();
4513
4324
  this.el = r.nativeElement;
@@ -4527,10 +4338,9 @@ export declare interface SwirlIconMoreVertikal extends Components.SwirlIconMoreV
4527
4338
  template: '<ng-content></ng-content>',
4528
4339
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4529
4340
  inputs: ['color', 'size'],
4530
- standalone: false
4531
4341
  })
4532
4342
  export class SwirlIconNews {
4533
- protected el: HTMLSwirlIconNewsElement;
4343
+ protected el: HTMLElement;
4534
4344
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4535
4345
  c.detach();
4536
4346
  this.el = r.nativeElement;
@@ -4550,10 +4360,9 @@ export declare interface SwirlIconNews extends Components.SwirlIconNews {}
4550
4360
  template: '<ng-content></ng-content>',
4551
4361
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4552
4362
  inputs: ['color', 'size'],
4553
- standalone: false
4554
4363
  })
4555
4364
  export class SwirlIconNewsFilled {
4556
- protected el: HTMLSwirlIconNewsFilledElement;
4365
+ protected el: HTMLElement;
4557
4366
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4558
4367
  c.detach();
4559
4368
  this.el = r.nativeElement;
@@ -4573,10 +4382,9 @@ export declare interface SwirlIconNewsFilled extends Components.SwirlIconNewsFil
4573
4382
  template: '<ng-content></ng-content>',
4574
4383
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4575
4384
  inputs: ['color', 'size'],
4576
- standalone: false
4577
4385
  })
4578
4386
  export class SwirlIconNewsOff {
4579
- protected el: HTMLSwirlIconNewsOffElement;
4387
+ protected el: HTMLElement;
4580
4388
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4581
4389
  c.detach();
4582
4390
  this.el = r.nativeElement;
@@ -4596,10 +4404,9 @@ export declare interface SwirlIconNewsOff extends Components.SwirlIconNewsOff {}
4596
4404
  template: '<ng-content></ng-content>',
4597
4405
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4598
4406
  inputs: ['color', 'size'],
4599
- standalone: false
4600
4407
  })
4601
4408
  export class SwirlIconNextPlan {
4602
- protected el: HTMLSwirlIconNextPlanElement;
4409
+ protected el: HTMLElement;
4603
4410
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4604
4411
  c.detach();
4605
4412
  this.el = r.nativeElement;
@@ -4619,10 +4426,9 @@ export declare interface SwirlIconNextPlan extends Components.SwirlIconNextPlan
4619
4426
  template: '<ng-content></ng-content>',
4620
4427
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4621
4428
  inputs: ['color', 'size'],
4622
- standalone: false
4623
4429
  })
4624
4430
  export class SwirlIconNotifications {
4625
- protected el: HTMLSwirlIconNotificationsElement;
4431
+ protected el: HTMLElement;
4626
4432
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4627
4433
  c.detach();
4628
4434
  this.el = r.nativeElement;
@@ -4642,10 +4448,9 @@ export declare interface SwirlIconNotifications extends Components.SwirlIconNoti
4642
4448
  template: '<ng-content></ng-content>',
4643
4449
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4644
4450
  inputs: ['color', 'size'],
4645
- standalone: false
4646
4451
  })
4647
4452
  export class SwirlIconNotificationsActive {
4648
- protected el: HTMLSwirlIconNotificationsActiveElement;
4453
+ protected el: HTMLElement;
4649
4454
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4650
4455
  c.detach();
4651
4456
  this.el = r.nativeElement;
@@ -4665,10 +4470,9 @@ export declare interface SwirlIconNotificationsActive extends Components.SwirlIc
4665
4470
  template: '<ng-content></ng-content>',
4666
4471
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4667
4472
  inputs: ['color', 'size'],
4668
- standalone: false
4669
4473
  })
4670
4474
  export class SwirlIconNotificationsOff {
4671
- protected el: HTMLSwirlIconNotificationsOffElement;
4475
+ protected el: HTMLElement;
4672
4476
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4673
4477
  c.detach();
4674
4478
  this.el = r.nativeElement;
@@ -4688,10 +4492,9 @@ export declare interface SwirlIconNotificationsOff extends Components.SwirlIconN
4688
4492
  template: '<ng-content></ng-content>',
4689
4493
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4690
4494
  inputs: ['color', 'size'],
4691
- standalone: false
4692
4495
  })
4693
4496
  export class SwirlIconOpenInFull {
4694
- protected el: HTMLSwirlIconOpenInFullElement;
4497
+ protected el: HTMLElement;
4695
4498
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4696
4499
  c.detach();
4697
4500
  this.el = r.nativeElement;
@@ -4711,10 +4514,9 @@ export declare interface SwirlIconOpenInFull extends Components.SwirlIconOpenInF
4711
4514
  template: '<ng-content></ng-content>',
4712
4515
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4713
4516
  inputs: ['color', 'size'],
4714
- standalone: false
4715
4517
  })
4716
4518
  export class SwirlIconOpenInNew {
4717
- protected el: HTMLSwirlIconOpenInNewElement;
4519
+ protected el: HTMLElement;
4718
4520
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4719
4521
  c.detach();
4720
4522
  this.el = r.nativeElement;
@@ -4734,10 +4536,9 @@ export declare interface SwirlIconOpenInNew extends Components.SwirlIconOpenInNe
4734
4536
  template: '<ng-content></ng-content>',
4735
4537
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4736
4538
  inputs: ['color', 'size'],
4737
- standalone: false
4738
4539
  })
4739
4540
  export class SwirlIconPause {
4740
- protected el: HTMLSwirlIconPauseElement;
4541
+ protected el: HTMLElement;
4741
4542
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4742
4543
  c.detach();
4743
4544
  this.el = r.nativeElement;
@@ -4757,10 +4558,9 @@ export declare interface SwirlIconPause extends Components.SwirlIconPause {}
4757
4558
  template: '<ng-content></ng-content>',
4758
4559
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4759
4560
  inputs: ['color', 'size'],
4760
- standalone: false
4761
4561
  })
4762
4562
  export class SwirlIconPauseCircle {
4763
- protected el: HTMLSwirlIconPauseCircleElement;
4563
+ protected el: HTMLElement;
4764
4564
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4765
4565
  c.detach();
4766
4566
  this.el = r.nativeElement;
@@ -4780,10 +4580,9 @@ export declare interface SwirlIconPauseCircle extends Components.SwirlIconPauseC
4780
4580
  template: '<ng-content></ng-content>',
4781
4581
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4782
4582
  inputs: ['color', 'size'],
4783
- standalone: false
4784
4583
  })
4785
4584
  export class SwirlIconPeopleAlt {
4786
- protected el: HTMLSwirlIconPeopleAltElement;
4585
+ protected el: HTMLElement;
4787
4586
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4788
4587
  c.detach();
4789
4588
  this.el = r.nativeElement;
@@ -4803,10 +4602,9 @@ export declare interface SwirlIconPeopleAlt extends Components.SwirlIconPeopleAl
4803
4602
  template: '<ng-content></ng-content>',
4804
4603
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4805
4604
  inputs: ['color', 'size'],
4806
- standalone: false
4807
4605
  })
4808
4606
  export class SwirlIconPerson {
4809
- protected el: HTMLSwirlIconPersonElement;
4607
+ protected el: HTMLElement;
4810
4608
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4811
4609
  c.detach();
4812
4610
  this.el = r.nativeElement;
@@ -4826,10 +4624,9 @@ export declare interface SwirlIconPerson extends Components.SwirlIconPerson {}
4826
4624
  template: '<ng-content></ng-content>',
4827
4625
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4828
4626
  inputs: ['color', 'size'],
4829
- standalone: false
4830
4627
  })
4831
4628
  export class SwirlIconPersonOff {
4832
- protected el: HTMLSwirlIconPersonOffElement;
4629
+ protected el: HTMLElement;
4833
4630
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4834
4631
  c.detach();
4835
4632
  this.el = r.nativeElement;
@@ -4849,10 +4646,9 @@ export declare interface SwirlIconPersonOff extends Components.SwirlIconPersonOf
4849
4646
  template: '<ng-content></ng-content>',
4850
4647
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4851
4648
  inputs: ['color', 'size'],
4852
- standalone: false
4853
4649
  })
4854
4650
  export class SwirlIconPhone {
4855
- protected el: HTMLSwirlIconPhoneElement;
4651
+ protected el: HTMLElement;
4856
4652
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4857
4653
  c.detach();
4858
4654
  this.el = r.nativeElement;
@@ -4872,10 +4668,9 @@ export declare interface SwirlIconPhone extends Components.SwirlIconPhone {}
4872
4668
  template: '<ng-content></ng-content>',
4873
4669
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4874
4670
  inputs: ['color', 'size'],
4875
- standalone: false
4876
4671
  })
4877
4672
  export class SwirlIconPhotoCamera {
4878
- protected el: HTMLSwirlIconPhotoCameraElement;
4673
+ protected el: HTMLElement;
4879
4674
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4880
4675
  c.detach();
4881
4676
  this.el = r.nativeElement;
@@ -4895,10 +4690,9 @@ export declare interface SwirlIconPhotoCamera extends Components.SwirlIconPhotoC
4895
4690
  template: '<ng-content></ng-content>',
4896
4691
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4897
4692
  inputs: ['color', 'size'],
4898
- standalone: false
4899
4693
  })
4900
4694
  export class SwirlIconPictureAsPdf {
4901
- protected el: HTMLSwirlIconPictureAsPdfElement;
4695
+ protected el: HTMLElement;
4902
4696
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4903
4697
  c.detach();
4904
4698
  this.el = r.nativeElement;
@@ -4918,10 +4712,9 @@ export declare interface SwirlIconPictureAsPdf extends Components.SwirlIconPictu
4918
4712
  template: '<ng-content></ng-content>',
4919
4713
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4920
4714
  inputs: ['color', 'size'],
4921
- standalone: false
4922
4715
  })
4923
4716
  export class SwirlIconPictureInPicture {
4924
- protected el: HTMLSwirlIconPictureInPictureElement;
4717
+ protected el: HTMLElement;
4925
4718
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4926
4719
  c.detach();
4927
4720
  this.el = r.nativeElement;
@@ -4941,10 +4734,9 @@ export declare interface SwirlIconPictureInPicture extends Components.SwirlIconP
4941
4734
  template: '<ng-content></ng-content>',
4942
4735
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4943
4736
  inputs: ['color', 'size'],
4944
- standalone: false
4945
4737
  })
4946
4738
  export class SwirlIconPin {
4947
- protected el: HTMLSwirlIconPinElement;
4739
+ protected el: HTMLElement;
4948
4740
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4949
4741
  c.detach();
4950
4742
  this.el = r.nativeElement;
@@ -4964,10 +4756,9 @@ export declare interface SwirlIconPin extends Components.SwirlIconPin {}
4964
4756
  template: '<ng-content></ng-content>',
4965
4757
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4966
4758
  inputs: ['color', 'size'],
4967
- standalone: false
4968
4759
  })
4969
4760
  export class SwirlIconPinOff {
4970
- protected el: HTMLSwirlIconPinOffElement;
4761
+ protected el: HTMLElement;
4971
4762
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4972
4763
  c.detach();
4973
4764
  this.el = r.nativeElement;
@@ -4987,10 +4778,9 @@ export declare interface SwirlIconPinOff extends Components.SwirlIconPinOff {}
4987
4778
  template: '<ng-content></ng-content>',
4988
4779
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
4989
4780
  inputs: ['color', 'size'],
4990
- standalone: false
4991
4781
  })
4992
4782
  export class SwirlIconPlace {
4993
- protected el: HTMLSwirlIconPlaceElement;
4783
+ protected el: HTMLElement;
4994
4784
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
4995
4785
  c.detach();
4996
4786
  this.el = r.nativeElement;
@@ -5010,10 +4800,9 @@ export declare interface SwirlIconPlace extends Components.SwirlIconPlace {}
5010
4800
  template: '<ng-content></ng-content>',
5011
4801
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5012
4802
  inputs: ['color', 'size'],
5013
- standalone: false
5014
4803
  })
5015
4804
  export class SwirlIconPlayArrow {
5016
- protected el: HTMLSwirlIconPlayArrowElement;
4805
+ protected el: HTMLElement;
5017
4806
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5018
4807
  c.detach();
5019
4808
  this.el = r.nativeElement;
@@ -5033,10 +4822,9 @@ export declare interface SwirlIconPlayArrow extends Components.SwirlIconPlayArro
5033
4822
  template: '<ng-content></ng-content>',
5034
4823
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5035
4824
  inputs: ['color', 'size'],
5036
- standalone: false
5037
4825
  })
5038
4826
  export class SwirlIconPoll {
5039
- protected el: HTMLSwirlIconPollElement;
4827
+ protected el: HTMLElement;
5040
4828
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5041
4829
  c.detach();
5042
4830
  this.el = r.nativeElement;
@@ -5056,10 +4844,9 @@ export declare interface SwirlIconPoll extends Components.SwirlIconPoll {}
5056
4844
  template: '<ng-content></ng-content>',
5057
4845
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5058
4846
  inputs: ['color', 'size'],
5059
- standalone: false
5060
4847
  })
5061
4848
  export class SwirlIconPostApproval {
5062
- protected el: HTMLSwirlIconPostApprovalElement;
4849
+ protected el: HTMLElement;
5063
4850
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5064
4851
  c.detach();
5065
4852
  this.el = r.nativeElement;
@@ -5079,10 +4866,9 @@ export declare interface SwirlIconPostApproval extends Components.SwirlIconPostA
5079
4866
  template: '<ng-content></ng-content>',
5080
4867
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5081
4868
  inputs: ['color', 'size'],
5082
- standalone: false
5083
4869
  })
5084
4870
  export class SwirlIconPresent {
5085
- protected el: HTMLSwirlIconPresentElement;
4871
+ protected el: HTMLElement;
5086
4872
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5087
4873
  c.detach();
5088
4874
  this.el = r.nativeElement;
@@ -5102,10 +4888,9 @@ export declare interface SwirlIconPresent extends Components.SwirlIconPresent {}
5102
4888
  template: '<ng-content></ng-content>',
5103
4889
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5104
4890
  inputs: ['color', 'size'],
5105
- standalone: false
5106
4891
  })
5107
4892
  export class SwirlIconPreview {
5108
- protected el: HTMLSwirlIconPreviewElement;
4893
+ protected el: HTMLElement;
5109
4894
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5110
4895
  c.detach();
5111
4896
  this.el = r.nativeElement;
@@ -5125,10 +4910,9 @@ export declare interface SwirlIconPreview extends Components.SwirlIconPreview {}
5125
4910
  template: '<ng-content></ng-content>',
5126
4911
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5127
4912
  inputs: ['color', 'size'],
5128
- standalone: false
5129
4913
  })
5130
4914
  export class SwirlIconPrint {
5131
- protected el: HTMLSwirlIconPrintElement;
4915
+ protected el: HTMLElement;
5132
4916
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5133
4917
  c.detach();
5134
4918
  this.el = r.nativeElement;
@@ -5148,10 +4932,9 @@ export declare interface SwirlIconPrint extends Components.SwirlIconPrint {}
5148
4932
  template: '<ng-content></ng-content>',
5149
4933
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5150
4934
  inputs: ['color', 'size'],
5151
- standalone: false
5152
4935
  })
5153
4936
  export class SwirlIconPublic {
5154
- protected el: HTMLSwirlIconPublicElement;
4937
+ protected el: HTMLElement;
5155
4938
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5156
4939
  c.detach();
5157
4940
  this.el = r.nativeElement;
@@ -5171,10 +4954,9 @@ export declare interface SwirlIconPublic extends Components.SwirlIconPublic {}
5171
4954
  template: '<ng-content></ng-content>',
5172
4955
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5173
4956
  inputs: ['color', 'size'],
5174
- standalone: false
5175
4957
  })
5176
4958
  export class SwirlIconPublicOff {
5177
- protected el: HTMLSwirlIconPublicOffElement;
4959
+ protected el: HTMLElement;
5178
4960
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5179
4961
  c.detach();
5180
4962
  this.el = r.nativeElement;
@@ -5194,10 +4976,9 @@ export declare interface SwirlIconPublicOff extends Components.SwirlIconPublicOf
5194
4976
  template: '<ng-content></ng-content>',
5195
4977
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5196
4978
  inputs: ['color', 'size'],
5197
- standalone: false
5198
4979
  })
5199
4980
  export class SwirlIconPublishedWithChanges {
5200
- protected el: HTMLSwirlIconPublishedWithChangesElement;
4981
+ protected el: HTMLElement;
5201
4982
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5202
4983
  c.detach();
5203
4984
  this.el = r.nativeElement;
@@ -5217,10 +4998,9 @@ export declare interface SwirlIconPublishedWithChanges extends Components.SwirlI
5217
4998
  template: '<ng-content></ng-content>',
5218
4999
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5219
5000
  inputs: ['color', 'size'],
5220
- standalone: false
5221
5001
  })
5222
5002
  export class SwirlIconRatioFourToThree {
5223
- protected el: HTMLSwirlIconRatioFourToThreeElement;
5003
+ protected el: HTMLElement;
5224
5004
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5225
5005
  c.detach();
5226
5006
  this.el = r.nativeElement;
@@ -5240,10 +5020,9 @@ export declare interface SwirlIconRatioFourToThree extends Components.SwirlIconR
5240
5020
  template: '<ng-content></ng-content>',
5241
5021
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5242
5022
  inputs: ['color', 'size'],
5243
- standalone: false
5244
5023
  })
5245
5024
  export class SwirlIconRatioFreeform {
5246
- protected el: HTMLSwirlIconRatioFreeformElement;
5025
+ protected el: HTMLElement;
5247
5026
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5248
5027
  c.detach();
5249
5028
  this.el = r.nativeElement;
@@ -5263,10 +5042,9 @@ export declare interface SwirlIconRatioFreeform extends Components.SwirlIconRati
5263
5042
  template: '<ng-content></ng-content>',
5264
5043
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5265
5044
  inputs: ['color', 'size'],
5266
- standalone: false
5267
5045
  })
5268
5046
  export class SwirlIconRatioSixteenToNine {
5269
- protected el: HTMLSwirlIconRatioSixteenToNineElement;
5047
+ protected el: HTMLElement;
5270
5048
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5271
5049
  c.detach();
5272
5050
  this.el = r.nativeElement;
@@ -5286,10 +5064,9 @@ export declare interface SwirlIconRatioSixteenToNine extends Components.SwirlIco
5286
5064
  template: '<ng-content></ng-content>',
5287
5065
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5288
5066
  inputs: ['color', 'size'],
5289
- standalone: false
5290
5067
  })
5291
5068
  export class SwirlIconRatioSquare {
5292
- protected el: HTMLSwirlIconRatioSquareElement;
5069
+ protected el: HTMLElement;
5293
5070
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5294
5071
  c.detach();
5295
5072
  this.el = r.nativeElement;
@@ -5309,10 +5086,9 @@ export declare interface SwirlIconRatioSquare extends Components.SwirlIconRatioS
5309
5086
  template: '<ng-content></ng-content>',
5310
5087
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5311
5088
  inputs: ['color', 'size'],
5312
- standalone: false
5313
5089
  })
5314
5090
  export class SwirlIconRatioThreeToFour {
5315
- protected el: HTMLSwirlIconRatioThreeToFourElement;
5091
+ protected el: HTMLElement;
5316
5092
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5317
5093
  c.detach();
5318
5094
  this.el = r.nativeElement;
@@ -5332,10 +5108,9 @@ export declare interface SwirlIconRatioThreeToFour extends Components.SwirlIconR
5332
5108
  template: '<ng-content></ng-content>',
5333
5109
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5334
5110
  inputs: ['color', 'size'],
5335
- standalone: false
5336
5111
  })
5337
5112
  export class SwirlIconRatioThreeToTwo {
5338
- protected el: HTMLSwirlIconRatioThreeToTwoElement;
5113
+ protected el: HTMLElement;
5339
5114
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5340
5115
  c.detach();
5341
5116
  this.el = r.nativeElement;
@@ -5355,10 +5130,9 @@ export declare interface SwirlIconRatioThreeToTwo extends Components.SwirlIconRa
5355
5130
  template: '<ng-content></ng-content>',
5356
5131
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5357
5132
  inputs: ['color', 'size'],
5358
- standalone: false
5359
5133
  })
5360
5134
  export class SwirlIconRecieved {
5361
- protected el: HTMLSwirlIconRecievedElement;
5135
+ protected el: HTMLElement;
5362
5136
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5363
5137
  c.detach();
5364
5138
  this.el = r.nativeElement;
@@ -5378,10 +5152,9 @@ export declare interface SwirlIconRecieved extends Components.SwirlIconRecieved
5378
5152
  template: '<ng-content></ng-content>',
5379
5153
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5380
5154
  inputs: ['color', 'size'],
5381
- standalone: false
5382
5155
  })
5383
5156
  export class SwirlIconRemove {
5384
- protected el: HTMLSwirlIconRemoveElement;
5157
+ protected el: HTMLElement;
5385
5158
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5386
5159
  c.detach();
5387
5160
  this.el = r.nativeElement;
@@ -5401,10 +5174,9 @@ export declare interface SwirlIconRemove extends Components.SwirlIconRemove {}
5401
5174
  template: '<ng-content></ng-content>',
5402
5175
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5403
5176
  inputs: ['color', 'size'],
5404
- standalone: false
5405
5177
  })
5406
5178
  export class SwirlIconRemoveCircle {
5407
- protected el: HTMLSwirlIconRemoveCircleElement;
5179
+ protected el: HTMLElement;
5408
5180
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5409
5181
  c.detach();
5410
5182
  this.el = r.nativeElement;
@@ -5424,10 +5196,9 @@ export declare interface SwirlIconRemoveCircle extends Components.SwirlIconRemov
5424
5196
  template: '<ng-content></ng-content>',
5425
5197
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5426
5198
  inputs: ['color', 'size'],
5427
- standalone: false
5428
5199
  })
5429
5200
  export class SwirlIconRemoveModerator {
5430
- protected el: HTMLSwirlIconRemoveModeratorElement;
5201
+ protected el: HTMLElement;
5431
5202
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5432
5203
  c.detach();
5433
5204
  this.el = r.nativeElement;
@@ -5447,10 +5218,9 @@ export declare interface SwirlIconRemoveModerator extends Components.SwirlIconRe
5447
5218
  template: '<ng-content></ng-content>',
5448
5219
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5449
5220
  inputs: ['color', 'size'],
5450
- standalone: false
5451
5221
  })
5452
5222
  export class SwirlIconReply {
5453
- protected el: HTMLSwirlIconReplyElement;
5223
+ protected el: HTMLElement;
5454
5224
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5455
5225
  c.detach();
5456
5226
  this.el = r.nativeElement;
@@ -5470,10 +5240,9 @@ export declare interface SwirlIconReply extends Components.SwirlIconReply {}
5470
5240
  template: '<ng-content></ng-content>',
5471
5241
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5472
5242
  inputs: ['color', 'size'],
5473
- standalone: false
5474
5243
  })
5475
5244
  export class SwirlIconReport {
5476
- protected el: HTMLSwirlIconReportElement;
5245
+ protected el: HTMLElement;
5477
5246
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5478
5247
  c.detach();
5479
5248
  this.el = r.nativeElement;
@@ -5493,10 +5262,9 @@ export declare interface SwirlIconReport extends Components.SwirlIconReport {}
5493
5262
  template: '<ng-content></ng-content>',
5494
5263
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5495
5264
  inputs: ['color', 'size'],
5496
- standalone: false
5497
5265
  })
5498
5266
  export class SwirlIconRoadmap {
5499
- protected el: HTMLSwirlIconRoadmapElement;
5267
+ protected el: HTMLElement;
5500
5268
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5501
5269
  c.detach();
5502
5270
  this.el = r.nativeElement;
@@ -5516,10 +5284,9 @@ export declare interface SwirlIconRoadmap extends Components.SwirlIconRoadmap {}
5516
5284
  template: '<ng-content></ng-content>',
5517
5285
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5518
5286
  inputs: ['color', 'size'],
5519
- standalone: false
5520
5287
  })
5521
5288
  export class SwirlIconRotateLeft {
5522
- protected el: HTMLSwirlIconRotateLeftElement;
5289
+ protected el: HTMLElement;
5523
5290
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5524
5291
  c.detach();
5525
5292
  this.el = r.nativeElement;
@@ -5539,10 +5306,9 @@ export declare interface SwirlIconRotateLeft extends Components.SwirlIconRotateL
5539
5306
  template: '<ng-content></ng-content>',
5540
5307
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5541
5308
  inputs: ['color', 'size'],
5542
- standalone: false
5543
5309
  })
5544
5310
  export class SwirlIconRotateRight {
5545
- protected el: HTMLSwirlIconRotateRightElement;
5311
+ protected el: HTMLElement;
5546
5312
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5547
5313
  c.detach();
5548
5314
  this.el = r.nativeElement;
@@ -5562,10 +5328,9 @@ export declare interface SwirlIconRotateRight extends Components.SwirlIconRotate
5562
5328
  template: '<ng-content></ng-content>',
5563
5329
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5564
5330
  inputs: ['color', 'size'],
5565
- standalone: false
5566
5331
  })
5567
5332
  export class SwirlIconScreenshare {
5568
- protected el: HTMLSwirlIconScreenshareElement;
5333
+ protected el: HTMLElement;
5569
5334
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5570
5335
  c.detach();
5571
5336
  this.el = r.nativeElement;
@@ -5585,10 +5350,9 @@ export declare interface SwirlIconScreenshare extends Components.SwirlIconScreen
5585
5350
  template: '<ng-content></ng-content>',
5586
5351
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5587
5352
  inputs: ['color', 'size'],
5588
- standalone: false
5589
5353
  })
5590
5354
  export class SwirlIconScreenshareOff {
5591
- protected el: HTMLSwirlIconScreenshareOffElement;
5355
+ protected el: HTMLElement;
5592
5356
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5593
5357
  c.detach();
5594
5358
  this.el = r.nativeElement;
@@ -5608,10 +5372,9 @@ export declare interface SwirlIconScreenshareOff extends Components.SwirlIconScr
5608
5372
  template: '<ng-content></ng-content>',
5609
5373
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5610
5374
  inputs: ['color', 'size'],
5611
- standalone: false
5612
5375
  })
5613
5376
  export class SwirlIconSearch {
5614
- protected el: HTMLSwirlIconSearchElement;
5377
+ protected el: HTMLElement;
5615
5378
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5616
5379
  c.detach();
5617
5380
  this.el = r.nativeElement;
@@ -5631,10 +5394,9 @@ export declare interface SwirlIconSearch extends Components.SwirlIconSearch {}
5631
5394
  template: '<ng-content></ng-content>',
5632
5395
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5633
5396
  inputs: ['color', 'size'],
5634
- standalone: false
5635
5397
  })
5636
5398
  export class SwirlIconSearchStrong {
5637
- protected el: HTMLSwirlIconSearchStrongElement;
5399
+ protected el: HTMLElement;
5638
5400
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5639
5401
  c.detach();
5640
5402
  this.el = r.nativeElement;
@@ -5654,10 +5416,9 @@ export declare interface SwirlIconSearchStrong extends Components.SwirlIconSearc
5654
5416
  template: '<ng-content></ng-content>',
5655
5417
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5656
5418
  inputs: ['color', 'size'],
5657
- standalone: false
5658
5419
  })
5659
5420
  export class SwirlIconSecure {
5660
- protected el: HTMLSwirlIconSecureElement;
5421
+ protected el: HTMLElement;
5661
5422
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5662
5423
  c.detach();
5663
5424
  this.el = r.nativeElement;
@@ -5677,10 +5438,9 @@ export declare interface SwirlIconSecure extends Components.SwirlIconSecure {}
5677
5438
  template: '<ng-content></ng-content>',
5678
5439
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5679
5440
  inputs: ['color', 'size'],
5680
- standalone: false
5681
5441
  })
5682
5442
  export class SwirlIconSend {
5683
- protected el: HTMLSwirlIconSendElement;
5443
+ protected el: HTMLElement;
5684
5444
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5685
5445
  c.detach();
5686
5446
  this.el = r.nativeElement;
@@ -5700,10 +5460,9 @@ export declare interface SwirlIconSend extends Components.SwirlIconSend {}
5700
5460
  template: '<ng-content></ng-content>',
5701
5461
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5702
5462
  inputs: ['color', 'size'],
5703
- standalone: false
5704
5463
  })
5705
5464
  export class SwirlIconSettings {
5706
- protected el: HTMLSwirlIconSettingsElement;
5465
+ protected el: HTMLElement;
5707
5466
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5708
5467
  c.detach();
5709
5468
  this.el = r.nativeElement;
@@ -5723,10 +5482,9 @@ export declare interface SwirlIconSettings extends Components.SwirlIconSettings
5723
5482
  template: '<ng-content></ng-content>',
5724
5483
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5725
5484
  inputs: ['color', 'size'],
5726
- standalone: false
5727
5485
  })
5728
5486
  export class SwirlIconShortText {
5729
- protected el: HTMLSwirlIconShortTextElement;
5487
+ protected el: HTMLElement;
5730
5488
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5731
5489
  c.detach();
5732
5490
  this.el = r.nativeElement;
@@ -5746,10 +5504,9 @@ export declare interface SwirlIconShortText extends Components.SwirlIconShortTex
5746
5504
  template: '<ng-content></ng-content>',
5747
5505
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5748
5506
  inputs: ['color', 'size'],
5749
- standalone: false
5750
5507
  })
5751
5508
  export class SwirlIconSimplify {
5752
- protected el: HTMLSwirlIconSimplifyElement;
5509
+ protected el: HTMLElement;
5753
5510
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5754
5511
  c.detach();
5755
5512
  this.el = r.nativeElement;
@@ -5769,10 +5526,9 @@ export declare interface SwirlIconSimplify extends Components.SwirlIconSimplify
5769
5526
  template: '<ng-content></ng-content>',
5770
5527
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5771
5528
  inputs: ['color', 'size'],
5772
- standalone: false
5773
5529
  })
5774
5530
  export class SwirlIconSpellcheck {
5775
- protected el: HTMLSwirlIconSpellcheckElement;
5531
+ protected el: HTMLElement;
5776
5532
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5777
5533
  c.detach();
5778
5534
  this.el = r.nativeElement;
@@ -5792,10 +5548,9 @@ export declare interface SwirlIconSpellcheck extends Components.SwirlIconSpellch
5792
5548
  template: '<ng-content></ng-content>',
5793
5549
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5794
5550
  inputs: ['color', 'size'],
5795
- standalone: false
5796
5551
  })
5797
5552
  export class SwirlIconStars {
5798
- protected el: HTMLSwirlIconStarsElement;
5553
+ protected el: HTMLElement;
5799
5554
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5800
5555
  c.detach();
5801
5556
  this.el = r.nativeElement;
@@ -5815,10 +5570,9 @@ export declare interface SwirlIconStars extends Components.SwirlIconStars {}
5815
5570
  template: '<ng-content></ng-content>',
5816
5571
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5817
5572
  inputs: ['color', 'size'],
5818
- standalone: false
5819
5573
  })
5820
5574
  export class SwirlIconStickyNote {
5821
- protected el: HTMLSwirlIconStickyNoteElement;
5575
+ protected el: HTMLElement;
5822
5576
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5823
5577
  c.detach();
5824
5578
  this.el = r.nativeElement;
@@ -5838,10 +5592,9 @@ export declare interface SwirlIconStickyNote extends Components.SwirlIconStickyN
5838
5592
  template: '<ng-content></ng-content>',
5839
5593
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5840
5594
  inputs: ['color', 'size'],
5841
- standalone: false
5842
5595
  })
5843
5596
  export class SwirlIconStop {
5844
- protected el: HTMLSwirlIconStopElement;
5597
+ protected el: HTMLElement;
5845
5598
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5846
5599
  c.detach();
5847
5600
  this.el = r.nativeElement;
@@ -5861,10 +5614,9 @@ export declare interface SwirlIconStop extends Components.SwirlIconStop {}
5861
5614
  template: '<ng-content></ng-content>',
5862
5615
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5863
5616
  inputs: ['color', 'size'],
5864
- standalone: false
5865
5617
  })
5866
5618
  export class SwirlIconStopCircle {
5867
- protected el: HTMLSwirlIconStopCircleElement;
5619
+ protected el: HTMLElement;
5868
5620
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5869
5621
  c.detach();
5870
5622
  this.el = r.nativeElement;
@@ -5884,10 +5636,9 @@ export declare interface SwirlIconStopCircle extends Components.SwirlIconStopCir
5884
5636
  template: '<ng-content></ng-content>',
5885
5637
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5886
5638
  inputs: ['color', 'size'],
5887
- standalone: false
5888
5639
  })
5889
5640
  export class SwirlIconSunny {
5890
- protected el: HTMLSwirlIconSunnyElement;
5641
+ protected el: HTMLElement;
5891
5642
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5892
5643
  c.detach();
5893
5644
  this.el = r.nativeElement;
@@ -5907,10 +5658,9 @@ export declare interface SwirlIconSunny extends Components.SwirlIconSunny {}
5907
5658
  template: '<ng-content></ng-content>',
5908
5659
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5909
5660
  inputs: ['color', 'size'],
5910
- standalone: false
5911
5661
  })
5912
5662
  export class SwirlIconSync {
5913
- protected el: HTMLSwirlIconSyncElement;
5663
+ protected el: HTMLElement;
5914
5664
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5915
5665
  c.detach();
5916
5666
  this.el = r.nativeElement;
@@ -5930,10 +5680,9 @@ export declare interface SwirlIconSync extends Components.SwirlIconSync {}
5930
5680
  template: '<ng-content></ng-content>',
5931
5681
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5932
5682
  inputs: ['color', 'size'],
5933
- standalone: false
5934
5683
  })
5935
5684
  export class SwirlIconTasks {
5936
- protected el: HTMLSwirlIconTasksElement;
5685
+ protected el: HTMLElement;
5937
5686
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5938
5687
  c.detach();
5939
5688
  this.el = r.nativeElement;
@@ -5953,10 +5702,9 @@ export declare interface SwirlIconTasks extends Components.SwirlIconTasks {}
5953
5702
  template: '<ng-content></ng-content>',
5954
5703
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5955
5704
  inputs: ['color', 'size'],
5956
- standalone: false
5957
5705
  })
5958
5706
  export class SwirlIconTasksFilled {
5959
- protected el: HTMLSwirlIconTasksFilledElement;
5707
+ protected el: HTMLElement;
5960
5708
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5961
5709
  c.detach();
5962
5710
  this.el = r.nativeElement;
@@ -5976,10 +5724,9 @@ export declare interface SwirlIconTasksFilled extends Components.SwirlIconTasksF
5976
5724
  template: '<ng-content></ng-content>',
5977
5725
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5978
5726
  inputs: ['color', 'size'],
5979
- standalone: false
5980
5727
  })
5981
5728
  export class SwirlIconTerminal {
5982
- protected el: HTMLSwirlIconTerminalElement;
5729
+ protected el: HTMLElement;
5983
5730
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
5984
5731
  c.detach();
5985
5732
  this.el = r.nativeElement;
@@ -5999,10 +5746,9 @@ export declare interface SwirlIconTerminal extends Components.SwirlIconTerminal
5999
5746
  template: '<ng-content></ng-content>',
6000
5747
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6001
5748
  inputs: ['color', 'size'],
6002
- standalone: false
6003
5749
  })
6004
5750
  export class SwirlIconTime {
6005
- protected el: HTMLSwirlIconTimeElement;
5751
+ protected el: HTMLElement;
6006
5752
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6007
5753
  c.detach();
6008
5754
  this.el = r.nativeElement;
@@ -6022,10 +5768,9 @@ export declare interface SwirlIconTime extends Components.SwirlIconTime {}
6022
5768
  template: '<ng-content></ng-content>',
6023
5769
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6024
5770
  inputs: ['color', 'size'],
6025
- standalone: false
6026
5771
  })
6027
5772
  export class SwirlIconTimeFilled {
6028
- protected el: HTMLSwirlIconTimeFilledElement;
5773
+ protected el: HTMLElement;
6029
5774
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6030
5775
  c.detach();
6031
5776
  this.el = r.nativeElement;
@@ -6045,10 +5790,9 @@ export declare interface SwirlIconTimeFilled extends Components.SwirlIconTimeFil
6045
5790
  template: '<ng-content></ng-content>',
6046
5791
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6047
5792
  inputs: ['color', 'size'],
6048
- standalone: false
6049
5793
  })
6050
5794
  export class SwirlIconToday {
6051
- protected el: HTMLSwirlIconTodayElement;
5795
+ protected el: HTMLElement;
6052
5796
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6053
5797
  c.detach();
6054
5798
  this.el = r.nativeElement;
@@ -6068,10 +5812,9 @@ export declare interface SwirlIconToday extends Components.SwirlIconToday {}
6068
5812
  template: '<ng-content></ng-content>',
6069
5813
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6070
5814
  inputs: ['color', 'size'],
6071
- standalone: false
6072
5815
  })
6073
5816
  export class SwirlIconTodayFilled {
6074
- protected el: HTMLSwirlIconTodayFilledElement;
5817
+ protected el: HTMLElement;
6075
5818
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6076
5819
  c.detach();
6077
5820
  this.el = r.nativeElement;
@@ -6091,10 +5834,9 @@ export declare interface SwirlIconTodayFilled extends Components.SwirlIconTodayF
6091
5834
  template: '<ng-content></ng-content>',
6092
5835
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6093
5836
  inputs: ['color', 'size'],
6094
- standalone: false
6095
5837
  })
6096
5838
  export class SwirlIconTranslate {
6097
- protected el: HTMLSwirlIconTranslateElement;
5839
+ protected el: HTMLElement;
6098
5840
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6099
5841
  c.detach();
6100
5842
  this.el = r.nativeElement;
@@ -6114,10 +5856,9 @@ export declare interface SwirlIconTranslate extends Components.SwirlIconTranslat
6114
5856
  template: '<ng-content></ng-content>',
6115
5857
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6116
5858
  inputs: ['color', 'size'],
6117
- standalone: false
6118
5859
  })
6119
5860
  export class SwirlIconTreeStructure {
6120
- protected el: HTMLSwirlIconTreeStructureElement;
5861
+ protected el: HTMLElement;
6121
5862
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6122
5863
  c.detach();
6123
5864
  this.el = r.nativeElement;
@@ -6137,10 +5878,9 @@ export declare interface SwirlIconTreeStructure extends Components.SwirlIconTree
6137
5878
  template: '<ng-content></ng-content>',
6138
5879
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6139
5880
  inputs: ['color', 'size'],
6140
- standalone: false
6141
5881
  })
6142
5882
  export class SwirlIconUndo {
6143
- protected el: HTMLSwirlIconUndoElement;
5883
+ protected el: HTMLElement;
6144
5884
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6145
5885
  c.detach();
6146
5886
  this.el = r.nativeElement;
@@ -6160,10 +5900,9 @@ export declare interface SwirlIconUndo extends Components.SwirlIconUndo {}
6160
5900
  template: '<ng-content></ng-content>',
6161
5901
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6162
5902
  inputs: ['color', 'size'],
6163
- standalone: false
6164
5903
  })
6165
5904
  export class SwirlIconUnlockPerson {
6166
- protected el: HTMLSwirlIconUnlockPersonElement;
5905
+ protected el: HTMLElement;
6167
5906
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6168
5907
  c.detach();
6169
5908
  this.el = r.nativeElement;
@@ -6183,10 +5922,9 @@ export declare interface SwirlIconUnlockPerson extends Components.SwirlIconUnloc
6183
5922
  template: '<ng-content></ng-content>',
6184
5923
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6185
5924
  inputs: ['color', 'size'],
6186
- standalone: false
6187
5925
  })
6188
5926
  export class SwirlIconUpload {
6189
- protected el: HTMLSwirlIconUploadElement;
5927
+ protected el: HTMLElement;
6190
5928
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6191
5929
  c.detach();
6192
5930
  this.el = r.nativeElement;
@@ -6206,10 +5944,9 @@ export declare interface SwirlIconUpload extends Components.SwirlIconUpload {}
6206
5944
  template: '<ng-content></ng-content>',
6207
5945
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6208
5946
  inputs: ['color', 'size'],
6209
- standalone: false
6210
5947
  })
6211
5948
  export class SwirlIconUserAdd {
6212
- protected el: HTMLSwirlIconUserAddElement;
5949
+ protected el: HTMLElement;
6213
5950
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6214
5951
  c.detach();
6215
5952
  this.el = r.nativeElement;
@@ -6229,10 +5966,9 @@ export declare interface SwirlIconUserAdd extends Components.SwirlIconUserAdd {}
6229
5966
  template: '<ng-content></ng-content>',
6230
5967
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6231
5968
  inputs: ['color', 'size'],
6232
- standalone: false
6233
5969
  })
6234
5970
  export class SwirlIconUserAssign {
6235
- protected el: HTMLSwirlIconUserAssignElement;
5971
+ protected el: HTMLElement;
6236
5972
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6237
5973
  c.detach();
6238
5974
  this.el = r.nativeElement;
@@ -6252,10 +5988,9 @@ export declare interface SwirlIconUserAssign extends Components.SwirlIconUserAss
6252
5988
  template: '<ng-content></ng-content>',
6253
5989
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6254
5990
  inputs: ['color', 'size'],
6255
- standalone: false
6256
5991
  })
6257
5992
  export class SwirlIconVideoCamera {
6258
- protected el: HTMLSwirlIconVideoCameraElement;
5993
+ protected el: HTMLElement;
6259
5994
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6260
5995
  c.detach();
6261
5996
  this.el = r.nativeElement;
@@ -6275,10 +6010,9 @@ export declare interface SwirlIconVideoCamera extends Components.SwirlIconVideoC
6275
6010
  template: '<ng-content></ng-content>',
6276
6011
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6277
6012
  inputs: ['color', 'size'],
6278
- standalone: false
6279
6013
  })
6280
6014
  export class SwirlIconVideoCameraOff {
6281
- protected el: HTMLSwirlIconVideoCameraOffElement;
6015
+ protected el: HTMLElement;
6282
6016
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6283
6017
  c.detach();
6284
6018
  this.el = r.nativeElement;
@@ -6298,10 +6032,9 @@ export declare interface SwirlIconVideoCameraOff extends Components.SwirlIconVid
6298
6032
  template: '<ng-content></ng-content>',
6299
6033
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6300
6034
  inputs: ['color', 'size'],
6301
- standalone: false
6302
6035
  })
6303
6036
  export class SwirlIconVideoLibrary {
6304
- protected el: HTMLSwirlIconVideoLibraryElement;
6037
+ protected el: HTMLElement;
6305
6038
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6306
6039
  c.detach();
6307
6040
  this.el = r.nativeElement;
@@ -6321,10 +6054,9 @@ export declare interface SwirlIconVideoLibrary extends Components.SwirlIconVideo
6321
6054
  template: '<ng-content></ng-content>',
6322
6055
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6323
6056
  inputs: ['color', 'size'],
6324
- standalone: false
6325
6057
  })
6326
6058
  export class SwirlIconVideoPlayer {
6327
- protected el: HTMLSwirlIconVideoPlayerElement;
6059
+ protected el: HTMLElement;
6328
6060
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6329
6061
  c.detach();
6330
6062
  this.el = r.nativeElement;
@@ -6344,10 +6076,9 @@ export declare interface SwirlIconVideoPlayer extends Components.SwirlIconVideoP
6344
6076
  template: '<ng-content></ng-content>',
6345
6077
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6346
6078
  inputs: ['color', 'size'],
6347
- standalone: false
6348
6079
  })
6349
6080
  export class SwirlIconViewAgenda {
6350
- protected el: HTMLSwirlIconViewAgendaElement;
6081
+ protected el: HTMLElement;
6351
6082
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6352
6083
  c.detach();
6353
6084
  this.el = r.nativeElement;
@@ -6367,10 +6098,9 @@ export declare interface SwirlIconViewAgenda extends Components.SwirlIconViewAge
6367
6098
  template: '<ng-content></ng-content>',
6368
6099
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6369
6100
  inputs: ['color', 'size'],
6370
- standalone: false
6371
6101
  })
6372
6102
  export class SwirlIconVisibility {
6373
- protected el: HTMLSwirlIconVisibilityElement;
6103
+ protected el: HTMLElement;
6374
6104
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6375
6105
  c.detach();
6376
6106
  this.el = r.nativeElement;
@@ -6390,10 +6120,9 @@ export declare interface SwirlIconVisibility extends Components.SwirlIconVisibil
6390
6120
  template: '<ng-content></ng-content>',
6391
6121
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6392
6122
  inputs: ['color', 'size'],
6393
- standalone: false
6394
6123
  })
6395
6124
  export class SwirlIconVisibilityOff {
6396
- protected el: HTMLSwirlIconVisibilityOffElement;
6125
+ protected el: HTMLElement;
6397
6126
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6398
6127
  c.detach();
6399
6128
  this.el = r.nativeElement;
@@ -6413,10 +6142,9 @@ export declare interface SwirlIconVisibilityOff extends Components.SwirlIconVisi
6413
6142
  template: '<ng-content></ng-content>',
6414
6143
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6415
6144
  inputs: ['color', 'size'],
6416
- standalone: false
6417
6145
  })
6418
6146
  export class SwirlIconVoice {
6419
- protected el: HTMLSwirlIconVoiceElement;
6147
+ protected el: HTMLElement;
6420
6148
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6421
6149
  c.detach();
6422
6150
  this.el = r.nativeElement;
@@ -6436,10 +6164,9 @@ export declare interface SwirlIconVoice extends Components.SwirlIconVoice {}
6436
6164
  template: '<ng-content></ng-content>',
6437
6165
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6438
6166
  inputs: ['color', 'size'],
6439
- standalone: false
6440
6167
  })
6441
6168
  export class SwirlIconVolumeUp {
6442
- protected el: HTMLSwirlIconVolumeUpElement;
6169
+ protected el: HTMLElement;
6443
6170
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6444
6171
  c.detach();
6445
6172
  this.el = r.nativeElement;
@@ -6459,10 +6186,9 @@ export declare interface SwirlIconVolumeUp extends Components.SwirlIconVolumeUp
6459
6186
  template: '<ng-content></ng-content>',
6460
6187
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6461
6188
  inputs: ['color', 'size'],
6462
- standalone: false
6463
6189
  })
6464
6190
  export class SwirlIconWarning {
6465
- protected el: HTMLSwirlIconWarningElement;
6191
+ protected el: HTMLElement;
6466
6192
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6467
6193
  c.detach();
6468
6194
  this.el = r.nativeElement;
@@ -6482,10 +6208,9 @@ export declare interface SwirlIconWarning extends Components.SwirlIconWarning {}
6482
6208
  template: '<ng-content></ng-content>',
6483
6209
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6484
6210
  inputs: ['color', 'size'],
6485
- standalone: false
6486
6211
  })
6487
6212
  export class SwirlIconWebAsset {
6488
- protected el: HTMLSwirlIconWebAssetElement;
6213
+ protected el: HTMLElement;
6489
6214
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6490
6215
  c.detach();
6491
6216
  this.el = r.nativeElement;
@@ -6505,10 +6230,9 @@ export declare interface SwirlIconWebAsset extends Components.SwirlIconWebAsset
6505
6230
  template: '<ng-content></ng-content>',
6506
6231
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6507
6232
  inputs: ['color', 'size'],
6508
- standalone: false
6509
6233
  })
6510
6234
  export class SwirlIconWebAssetOff {
6511
- protected el: HTMLSwirlIconWebAssetOffElement;
6235
+ protected el: HTMLElement;
6512
6236
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6513
6237
  c.detach();
6514
6238
  this.el = r.nativeElement;
@@ -6528,10 +6252,9 @@ export declare interface SwirlIconWebAssetOff extends Components.SwirlIconWebAss
6528
6252
  template: '<ng-content></ng-content>',
6529
6253
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6530
6254
  inputs: ['color', 'size'],
6531
- standalone: false
6532
6255
  })
6533
6256
  export class SwirlIconWork {
6534
- protected el: HTMLSwirlIconWorkElement;
6257
+ protected el: HTMLElement;
6535
6258
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6536
6259
  c.detach();
6537
6260
  this.el = r.nativeElement;
@@ -6551,10 +6274,9 @@ export declare interface SwirlIconWork extends Components.SwirlIconWork {}
6551
6274
  template: '<ng-content></ng-content>',
6552
6275
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6553
6276
  inputs: ['aspectRatio', 'borderRadius', 'label'],
6554
- standalone: false
6555
6277
  })
6556
6278
  export class SwirlImageGrid {
6557
- protected el: HTMLSwirlImageGridElement;
6279
+ protected el: HTMLElement;
6558
6280
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6559
6281
  c.detach();
6560
6282
  this.el = r.nativeElement;
@@ -6574,11 +6296,10 @@ export declare interface SwirlImageGrid extends Components.SwirlImageGrid {}
6574
6296
  changeDetection: ChangeDetectionStrategy.OnPush,
6575
6297
  template: '<ng-content></ng-content>',
6576
6298
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6577
- inputs: [{ name: 'alt', required: true }, 'gifPauseLabel', 'gifPlayLabel', 'icon', 'interactive', 'loading', 'overlay', 'showGifControls', { name: 'src', required: true }],
6578
- standalone: false
6299
+ inputs: ['alt', 'gifPauseLabel', 'gifPlayLabel', 'icon', 'interactive', 'loading', 'overlay', 'showGifControls', 'src'],
6579
6300
  })
6580
6301
  export class SwirlImageGridItem {
6581
- protected el: HTMLSwirlImageGridItemElement;
6302
+ protected el: HTMLElement;
6582
6303
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6583
6304
  c.detach();
6584
6305
  this.el = r.nativeElement;
@@ -6607,11 +6328,10 @@ export declare interface SwirlImageGridItem extends Components.SwirlImageGridIte
6607
6328
  changeDetection: ChangeDetectionStrategy.OnPush,
6608
6329
  template: '<ng-content></ng-content>',
6609
6330
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6610
- inputs: [{ name: 'message', required: true }, 'size'],
6611
- standalone: false
6331
+ inputs: ['message', 'size'],
6612
6332
  })
6613
6333
  export class SwirlInlineError {
6614
- protected el: HTMLSwirlInlineErrorElement;
6334
+ protected el: HTMLElement;
6615
6335
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6616
6336
  c.detach();
6617
6337
  this.el = r.nativeElement;
@@ -6630,11 +6350,10 @@ export declare interface SwirlInlineError extends Components.SwirlInlineError {}
6630
6350
  changeDetection: ChangeDetectionStrategy.OnPush,
6631
6351
  template: '<ng-content></ng-content>',
6632
6352
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6633
- inputs: [{ name: 'heading', required: true }, 'hideHeading', 'importance', 'intent'],
6634
- standalone: false
6353
+ inputs: ['heading', 'hideHeading', 'importance', 'intent'],
6635
6354
  })
6636
6355
  export class SwirlInlineNotification {
6637
- protected el: HTMLSwirlInlineNotificationElement;
6356
+ protected el: HTMLElement;
6638
6357
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6639
6358
  c.detach();
6640
6359
  this.el = r.nativeElement;
@@ -6653,11 +6372,10 @@ export declare interface SwirlInlineNotification extends Components.SwirlInlineN
6653
6372
  changeDetection: ChangeDetectionStrategy.OnPush,
6654
6373
  template: '<ng-content></ng-content>',
6655
6374
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6656
- inputs: ['icon', { name: 'intent', required: true }, { name: 'message', required: true }, 'size'],
6657
- standalone: false
6375
+ inputs: ['icon', 'intent', 'message', 'size'],
6658
6376
  })
6659
6377
  export class SwirlInlineStatus {
6660
- protected el: HTMLSwirlInlineStatusElement;
6378
+ protected el: HTMLElement;
6661
6379
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6662
6380
  c.detach();
6663
6381
  this.el = r.nativeElement;
@@ -6677,11 +6395,10 @@ export declare interface SwirlInlineStatus extends Components.SwirlInlineStatus
6677
6395
  changeDetection: ChangeDetectionStrategy.OnPush,
6678
6396
  template: '<ng-content></ng-content>',
6679
6397
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6680
- inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', 'hideMenu', { name: 'label', required: true }, 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
6681
- standalone: false
6398
+ inputs: ['closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', 'hideMenu', 'label', 'menuLabel', 'menuTriggerLabel', 'nextSlideButtonLabel', 'previousSlideButtonLabel'],
6682
6399
  })
6683
6400
  export class SwirlLightbox {
6684
- protected el: HTMLSwirlLightboxElement;
6401
+ protected el: HTMLElement;
6685
6402
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6686
6403
  c.detach();
6687
6404
  this.el = r.nativeElement;
@@ -6706,11 +6423,10 @@ export declare interface SwirlLightbox extends Components.SwirlLightbox {
6706
6423
  changeDetection: ChangeDetectionStrategy.OnPush,
6707
6424
  template: '<ng-content></ng-content>',
6708
6425
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6709
- inputs: ['color', { name: 'href', required: true }, { name: 'label', required: true }, 'target'],
6710
- standalone: false
6426
+ inputs: ['color', 'href', 'label', 'target'],
6711
6427
  })
6712
6428
  export class SwirlLink {
6713
- protected el: HTMLSwirlLinkElement;
6429
+ protected el: HTMLElement;
6714
6430
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6715
6431
  c.detach();
6716
6432
  this.el = r.nativeElement;
@@ -6729,10 +6445,9 @@ export declare interface SwirlLink extends Components.SwirlLink {}
6729
6445
  template: '<ng-content></ng-content>',
6730
6446
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6731
6447
  inputs: [],
6732
- standalone: false
6733
6448
  })
6734
6449
  export class SwirlList {
6735
- protected el: HTMLSwirlListElement;
6450
+ protected el: HTMLElement;
6736
6451
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6737
6452
  c.detach();
6738
6453
  this.el = r.nativeElement;
@@ -6752,11 +6467,10 @@ export declare interface SwirlList extends Components.SwirlList {}
6752
6467
  changeDetection: ChangeDetectionStrategy.OnPush,
6753
6468
  template: '<ng-content></ng-content>',
6754
6469
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6755
- inputs: ['active', { name: 'label', required: true }, 'level', 'mobileBackButtonLabel', 'mobileCloseMenuButtonLabel', 'mobileDoneButtonLabel', 'value', 'variant'],
6756
- standalone: false
6470
+ inputs: ['active', 'label', 'level', 'mobileBackButtonLabel', 'mobileCloseMenuButtonLabel', 'mobileDoneButtonLabel', 'value', 'variant'],
6757
6471
  })
6758
6472
  export class SwirlMenu {
6759
- protected el: HTMLSwirlMenuElement;
6473
+ protected el: HTMLElement;
6760
6474
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6761
6475
  c.detach();
6762
6476
  this.el = r.nativeElement;
@@ -6782,11 +6496,10 @@ export declare interface SwirlMenu extends Components.SwirlMenu {
6782
6496
  changeDetection: ChangeDetectionStrategy.OnPush,
6783
6497
  template: '<ng-content></ng-content>',
6784
6498
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6785
- inputs: ['description', 'disabled', 'expanded', 'icon', 'iconBadge', 'intent', { name: 'label', required: true }, 'suffix', 'value'],
6786
- standalone: false
6499
+ inputs: ['description', 'disabled', 'expanded', 'icon', 'iconBadge', 'intent', 'label', 'suffix', 'value'],
6787
6500
  })
6788
6501
  export class SwirlMenuItem {
6789
- protected el: HTMLSwirlMenuItemElement;
6502
+ protected el: HTMLElement;
6790
6503
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6791
6504
  c.detach();
6792
6505
  this.el = r.nativeElement;
@@ -6806,11 +6519,10 @@ export declare interface SwirlMenuItem extends Components.SwirlMenuItem {}
6806
6519
  changeDetection: ChangeDetectionStrategy.OnPush,
6807
6520
  template: '<ng-content></ng-content>',
6808
6521
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6809
- inputs: ['closable', 'closeButtonLabel', 'contentGap', 'fullscreenDisableButtonLabel', 'fullscreenEnableButtonLabel', 'hasSidebarCloseButton', 'height', 'hideCloseButton', 'hideLabel', 'hideSecondaryContent', 'hideSecondaryContentBorders', 'hideSidebarContent', { name: 'label', required: true }, 'maxHeight', 'maxWidth', 'minHeight', 'padded', 'primaryActionLabel', 'primaryContentFlex', 'primaryContentMaxWidth', 'secondaryActionLabel', 'secondaryContentFlex', 'secondaryContentMaxWidth', 'secondaryContentPadding', 'secondaryContentPaddingBlockEnd', 'secondaryContentPaddingBlockStart', 'secondaryContentPaddingInlineEnd', 'secondaryContentPaddingInlineStart', 'showFullscreenButton', 'sidebarCloseButtonLabel', 'sidebarFooterPadded', 'sidebarLabel', 'sidebarPadded', 'variant'],
6810
- standalone: false
6522
+ inputs: ['closable', 'closeButtonLabel', 'contentGap', 'fullscreenDisableButtonLabel', 'fullscreenEnableButtonLabel', 'hasSidebarCloseButton', 'height', 'hideCloseButton', 'hideLabel', 'hideSecondaryContent', 'hideSecondaryContentBorders', 'hideSidebarContent', 'label', 'maxHeight', 'maxWidth', 'minHeight', 'padded', 'primaryActionLabel', 'primaryContentFlex', 'primaryContentMaxWidth', 'secondaryActionLabel', 'secondaryContentFlex', 'secondaryContentMaxWidth', 'secondaryContentPadding', 'secondaryContentPaddingBlockEnd', 'secondaryContentPaddingBlockStart', 'secondaryContentPaddingInlineEnd', 'secondaryContentPaddingInlineStart', 'showFullscreenButton', 'sidebarCloseButtonLabel', 'sidebarFooterPadded', 'sidebarLabel', 'sidebarPadded', 'variant'],
6811
6523
  })
6812
6524
  export class SwirlModal {
6813
- protected el: HTMLSwirlModalElement;
6525
+ protected el: HTMLElement;
6814
6526
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6815
6527
  c.detach();
6816
6528
  this.el = r.nativeElement;
@@ -6846,10 +6558,9 @@ export declare interface SwirlModal extends Components.SwirlModal {
6846
6558
  template: '<ng-content></ng-content>',
6847
6559
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6848
6560
  inputs: ['allowDeselect', 'allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'disabled', 'label', 'multiSelect', 'optionListId', 'value'],
6849
- standalone: false
6850
6561
  })
6851
6562
  export class SwirlOptionList {
6852
- protected el: HTMLSwirlOptionListElement;
6563
+ protected el: HTMLElement;
6853
6564
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6854
6565
  c.detach();
6855
6566
  this.el = r.nativeElement;
@@ -6874,11 +6585,10 @@ export declare interface SwirlOptionList extends Components.SwirlOptionList {
6874
6585
  changeDetection: ChangeDetectionStrategy.OnPush,
6875
6586
  template: '<ng-content></ng-content>',
6876
6587
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6877
- inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'iconBadge', { name: 'label', required: true }, 'selected', 'swirlAriaRole', { name: 'value', required: true }],
6878
- standalone: false
6588
+ inputs: ['allowDrag', 'context', 'description', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'icon', 'iconBadge', 'label', 'selected', 'swirlAriaRole', 'value'],
6879
6589
  })
6880
6590
  export class SwirlOptionListItem {
6881
- protected el: HTMLSwirlOptionListItemElement;
6591
+ protected el: HTMLElement;
6882
6592
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6883
6593
  c.detach();
6884
6594
  this.el = r.nativeElement;
@@ -6901,11 +6611,10 @@ export declare interface SwirlOptionListItem extends Components.SwirlOptionListI
6901
6611
  changeDetection: ChangeDetectionStrategy.OnPush,
6902
6612
  template: '<ng-content></ng-content>',
6903
6613
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6904
- inputs: ['hasSeparator', { name: 'label', required: true }, 'separatorSpacing', 'spacing'],
6905
- standalone: false
6614
+ inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing'],
6906
6615
  })
6907
6616
  export class SwirlOptionListSection {
6908
- protected el: HTMLSwirlOptionListSectionElement;
6617
+ protected el: HTMLElement;
6909
6618
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6910
6619
  c.detach();
6911
6620
  this.el = r.nativeElement;
@@ -6924,11 +6633,10 @@ export declare interface SwirlOptionListSection extends Components.SwirlOptionLi
6924
6633
  changeDetection: ChangeDetectionStrategy.OnPush,
6925
6634
  template: '<ng-content></ng-content>',
6926
6635
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6927
- inputs: ['firstPageButtonLabel', { name: 'label', required: true }, 'lastPageButtonLabel', 'nextButtonLabel', { name: 'page', required: true }, 'pageLabel', 'pageSelectLabel', 'pageSize', 'pageSizeOptions', 'pageSizeSelectLabel', { name: 'pages', required: true }, 'prevButtonLabel', 'showPageSizeSelect', 'variant'],
6928
- standalone: false
6636
+ inputs: ['firstPageButtonLabel', 'label', 'lastPageButtonLabel', 'nextButtonLabel', 'page', 'pageLabel', 'pageSelectLabel', 'pageSize', 'pageSizeOptions', 'pageSizeSelectLabel', 'pages', 'prevButtonLabel', 'showPageSizeSelect', 'variant'],
6929
6637
  })
6930
6638
  export class SwirlPagination {
6931
- protected el: HTMLSwirlPaginationElement;
6639
+ protected el: HTMLElement;
6932
6640
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6933
6641
  c.detach();
6934
6642
  this.el = r.nativeElement;
@@ -6954,11 +6662,10 @@ export declare interface SwirlPagination extends Components.SwirlPagination {
6954
6662
  changeDetection: ChangeDetectionStrategy.OnPush,
6955
6663
  template: '<ng-content></ng-content>',
6956
6664
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6957
- inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', { name: 'file', required: true }, 'fileName', 'fileTypeLabel', { name: 'label', required: true }, 'menuLabel', 'menuTriggerLabel', 'pdfWorkerSrc', 'printButtonEnabled', 'printButtonLabel', 'sideBySideButtonLabel', 'skipNativeDownload', 'thumbnailButtonLabel', 'thumbnailsButtonLabel', 'thumbnailsLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel'],
6958
- standalone: false
6665
+ inputs: ['autoZoomLabel', 'closeButtonLabel', 'downloadButtonEnabled', 'downloadButtonLabel', 'file', 'fileName', 'fileTypeLabel', 'label', 'menuLabel', 'menuTriggerLabel', 'pdfWorkerSrc', 'printButtonEnabled', 'printButtonLabel', 'sideBySideButtonLabel', 'skipNativeDownload', 'thumbnailButtonLabel', 'thumbnailsButtonLabel', 'thumbnailsLabel', 'zoomInButtonLabel', 'zoomOutButtonLabel', 'zoomSelectLabel'],
6959
6666
  })
6960
6667
  export class SwirlPdfReader {
6961
- protected el: HTMLSwirlPdfReaderElement;
6668
+ protected el: HTMLElement;
6962
6669
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6963
6670
  c.detach();
6964
6671
  this.el = r.nativeElement;
@@ -6984,11 +6691,10 @@ export declare interface SwirlPdfReader extends Components.SwirlPdfReader {
6984
6691
  changeDetection: ChangeDetectionStrategy.OnPush,
6985
6692
  template: '<ng-content></ng-content>',
6986
6693
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
6987
- inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', { name: 'label', required: true }, 'maxHeight', 'offset', 'padded', 'placement', 'popoverId', 'returnFocusToTrigger', 'transparent', 'trigger', 'triggerContainer', 'useContainerWidth'],
6988
- standalone: false
6694
+ inputs: ['animation', 'disableScrollLock', 'enableFlip', 'fullscreenBottomSheet', 'label', 'maxHeight', 'offset', 'padded', 'placement', 'popoverId', 'returnFocusToTrigger', 'transparent', 'trigger', 'triggerContainer', 'useContainerWidth'],
6989
6695
  })
6990
6696
  export class SwirlPopover {
6991
- protected el: HTMLSwirlPopoverElement;
6697
+ protected el: HTMLElement;
6992
6698
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
6993
6699
  c.detach();
6994
6700
  this.el = r.nativeElement;
@@ -7015,11 +6721,10 @@ export declare interface SwirlPopover extends Components.SwirlPopover {
7015
6721
  changeDetection: ChangeDetectionStrategy.OnPush,
7016
6722
  template: '<ng-content></ng-content>',
7017
6723
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7018
- inputs: ['hidePopoverWhenInvisible', 'hoverDelay', 'hoverLingerDuration', 'parentScrollContainer', 'setAriaAttributes', { name: 'swirlPopover', required: true }, 'triggerOnClick', 'triggerOnHover'],
7019
- standalone: false
6724
+ inputs: ['hidePopoverWhenInvisible', 'hoverDelay', 'hoverLingerDuration', 'parentScrollContainer', 'setAriaAttributes', 'swirlPopover', 'triggerOnClick', 'triggerOnHover'],
7020
6725
  })
7021
6726
  export class SwirlPopoverTrigger {
7022
- protected el: HTMLSwirlPopoverTriggerElement;
6727
+ protected el: HTMLElement;
7023
6728
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7024
6729
  c.detach();
7025
6730
  this.el = r.nativeElement;
@@ -7038,11 +6743,10 @@ export declare interface SwirlPopoverTrigger extends Components.SwirlPopoverTrig
7038
6743
  changeDetection: ChangeDetectionStrategy.OnPush,
7039
6744
  template: '<ng-content></ng-content>',
7040
6745
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7041
- inputs: [{ name: 'label', required: true }, 'size', 'value', 'variant'],
7042
- standalone: false
6746
+ inputs: ['label', 'size', 'value', 'variant'],
7043
6747
  })
7044
6748
  export class SwirlProgressIndicator {
7045
- protected el: HTMLSwirlProgressIndicatorElement;
6749
+ protected el: HTMLElement;
7046
6750
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7047
6751
  c.detach();
7048
6752
  this.el = r.nativeElement;
@@ -7061,11 +6765,10 @@ export declare interface SwirlProgressIndicator extends Components.SwirlProgress
7061
6765
  changeDetection: ChangeDetectionStrategy.OnPush,
7062
6766
  template: '<ng-content></ng-content>',
7063
6767
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7064
- inputs: ['checked', 'description', 'disabled', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'invalid', 'label', 'tooltip', { name: 'value', required: true }, 'variant'],
7065
- standalone: false
6768
+ inputs: ['checked', 'description', 'disabled', 'inputId', 'inputName', 'invalid', 'label', 'tooltip', 'value', 'variant'],
7066
6769
  })
7067
6770
  export class SwirlRadio {
7068
- protected el: HTMLSwirlRadioElement;
6771
+ protected el: HTMLElement;
7069
6772
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7070
6773
  c.detach();
7071
6774
  this.el = r.nativeElement;
@@ -7089,10 +6792,9 @@ export declare interface SwirlRadio extends Components.SwirlRadio {
7089
6792
  template: '<ng-content></ng-content>',
7090
6793
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7091
6794
  inputs: ['swirlAriaDescribedby', 'value'],
7092
- standalone: false
7093
6795
  })
7094
6796
  export class SwirlRadioGroup {
7095
- protected el: HTMLSwirlRadioGroupElement;
6797
+ protected el: HTMLElement;
7096
6798
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7097
6799
  c.detach();
7098
6800
  this.el = r.nativeElement;
@@ -7116,10 +6818,9 @@ export declare interface SwirlRadioGroup extends Components.SwirlRadioGroup {
7116
6818
  template: '<ng-content></ng-content>',
7117
6819
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7118
6820
  inputs: ['allowDrag', 'assistiveTextItemGrabbed', 'assistiveTextItemMoved', 'assistiveTextItemMoving', 'controllingElement', 'label', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'semantics', 'spacing'],
7119
- standalone: false
7120
6821
  })
7121
6822
  export class SwirlResourceList {
7122
- protected el: HTMLSwirlResourceListElement;
6823
+ protected el: HTMLElement;
7123
6824
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7124
6825
  c.detach();
7125
6826
  this.el = r.nativeElement;
@@ -7142,11 +6843,10 @@ export declare interface SwirlResourceList extends Components.SwirlResourceList
7142
6843
  changeDetection: ChangeDetectionStrategy.OnPush,
7143
6844
  template: '<ng-content></ng-content>',
7144
6845
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7145
- inputs: ['description', 'errorMessage', 'icon', { name: 'label', required: true }, 'loading', 'removable', 'removeButtonLabel'],
7146
- standalone: false
6846
+ inputs: ['description', 'errorMessage', 'icon', 'label', 'loading', 'removable', 'removeButtonLabel'],
7147
6847
  })
7148
6848
  export class SwirlResourceListFileItem {
7149
- protected el: HTMLSwirlResourceListFileItemElement;
6849
+ protected el: HTMLElement;
7150
6850
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7151
6851
  c.detach();
7152
6852
  this.el = r.nativeElement;
@@ -7169,11 +6869,10 @@ export declare interface SwirlResourceListFileItem extends Components.SwirlResou
7169
6869
  changeDetection: ChangeDetectionStrategy.OnPush,
7170
6870
  template: '<ng-content></ng-content>',
7171
6871
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7172
- inputs: ['active', 'allowDrag', 'allowHtml', 'checked', 'compact', 'description', 'descriptionWrap', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'hideDivider', 'href', 'interactive', { name: 'label', required: true }, 'labelMinHeight', 'labelWeight', 'labelWrap', 'menuTriggerId', 'menuTriggerLabel', 'meta', 'selectable', 'swirlAriaLabel', 'value'],
7173
- standalone: false
6872
+ inputs: ['active', 'allowDrag', 'allowHtml', 'checked', 'compact', 'description', 'descriptionWrap', 'disabled', 'dragHandleDescription', 'dragHandleLabel', 'dragging', 'hideDivider', 'href', 'interactive', 'label', 'labelMinHeight', 'labelWeight', 'labelWrap', 'menuTriggerId', 'menuTriggerLabel', 'meta', 'selectable', 'swirlAriaLabel', 'value'],
7174
6873
  })
7175
6874
  export class SwirlResourceListItem {
7176
- protected el: HTMLSwirlResourceListItemElement;
6875
+ protected el: HTMLElement;
7177
6876
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7178
6877
  c.detach();
7179
6878
  this.el = r.nativeElement;
@@ -7198,11 +6897,10 @@ export declare interface SwirlResourceListItem extends Components.SwirlResourceL
7198
6897
  changeDetection: ChangeDetectionStrategy.OnPush,
7199
6898
  template: '<ng-content></ng-content>',
7200
6899
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7201
- inputs: ['hasSeparator', { name: 'label', required: true }, 'separatorSpacing', 'spacing'],
7202
- standalone: false
6900
+ inputs: ['hasSeparator', 'label', 'separatorSpacing', 'spacing'],
7203
6901
  })
7204
6902
  export class SwirlResourceListSection {
7205
- protected el: HTMLSwirlResourceListSectionElement;
6903
+ protected el: HTMLElement;
7206
6904
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7207
6905
  c.detach();
7208
6906
  this.el = r.nativeElement;
@@ -7222,10 +6920,9 @@ export declare interface SwirlResourceListSection extends Components.SwirlResour
7222
6920
  template: '<ng-content></ng-content>',
7223
6921
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7224
6922
  inputs: ['autoFocus', 'clearButtonLabel', 'disabled', 'inputId', 'inputName', 'label', 'placeholder', 'value', 'variant'],
7225
- standalone: false
7226
6923
  })
7227
6924
  export class SwirlSearch {
7228
- protected el: HTMLSwirlSearchElement;
6925
+ protected el: HTMLElement;
7229
6926
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7230
6927
  c.detach();
7231
6928
  this.el = r.nativeElement;
@@ -7254,11 +6951,10 @@ export declare interface SwirlSearch extends Components.SwirlSearch {
7254
6951
  changeDetection: ChangeDetectionStrategy.OnPush,
7255
6952
  template: '<ng-content></ng-content>',
7256
6953
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7257
- inputs: ['allowDeselect', 'disabled', 'emptyListLabel', 'inline', 'invalid', { name: 'label', required: true }, 'multiSelect', 'required', 'searchInputLabel', 'searchLoading', 'searchPlaceholder', 'selectId', 'standalone', 'swirlAriaDescribedby', 'value', 'withSearch'],
7258
- standalone: false
6954
+ inputs: ['allowDeselect', 'disabled', 'emptyListLabel', 'inline', 'invalid', 'label', 'multiSelect', 'required', 'searchInputLabel', 'searchLoading', 'searchPlaceholder', 'selectId', 'standalone', 'swirlAriaDescribedby', 'value', 'withSearch'],
7259
6955
  })
7260
6956
  export class SwirlSelect {
7261
- protected el: HTMLSwirlSelectElement;
6957
+ protected el: HTMLElement;
7262
6958
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7263
6959
  c.detach();
7264
6960
  this.el = r.nativeElement;
@@ -7284,10 +6980,9 @@ export declare interface SwirlSelect extends Components.SwirlSelect {
7284
6980
  template: '<ng-content></ng-content>',
7285
6981
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7286
6982
  inputs: ['borderColor', 'color', 'label', 'orientation', 'spacing'],
7287
- standalone: false
7288
6983
  })
7289
6984
  export class SwirlSeparator {
7290
- protected el: HTMLSwirlSeparatorElement;
6985
+ protected el: HTMLElement;
7291
6986
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7292
6987
  c.detach();
7293
6988
  this.el = r.nativeElement;
@@ -7308,10 +7003,9 @@ export declare interface SwirlSeparator extends Components.SwirlSeparator {}
7308
7003
  template: '<ng-content></ng-content>',
7309
7004
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7310
7005
  inputs: ['brandedHeader', 'browserBackButtonLabel', 'browserForwardButtonLabel', 'collapseNavigationButtonLabel', 'enableSecondaryNavGridLayout', 'expandNavigationButtonLabel', 'gridNavLayoutToggleLabel', 'hideMobileNavigationButtonLabel', 'listNavLayoutToggleLabel', 'navigationLabel', 'secondaryNavCollapseLabel', 'secondaryNavExpandLabel', 'sidebarActive', 'sidebarToggleBadge', 'sidebarToggleBadgeAriaLabel', 'sidebarToggleIcon', 'sidebarToggleLabel', 'skipLinkLabel'],
7311
- standalone: false
7312
7006
  })
7313
7007
  export class SwirlShellLayout {
7314
- protected el: HTMLSwirlShellLayoutElement;
7008
+ protected el: HTMLElement;
7315
7009
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7316
7010
  c.detach();
7317
7011
  this.el = r.nativeElement;
@@ -7336,11 +7030,10 @@ export declare interface SwirlShellLayout extends Components.SwirlShellLayout {
7336
7030
  changeDetection: ChangeDetectionStrategy.OnPush,
7337
7031
  template: '<ng-content></ng-content>',
7338
7032
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7339
- inputs: ['active', 'badgeLabel', 'boxed', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', { name: 'label', required: true }, 'target', 'tiled', 'withGradient'],
7340
- standalone: false
7033
+ inputs: ['active', 'badgeLabel', 'boxed', 'hideLabel', 'href', 'inlineLabel', 'inlineLabelColor', 'label', 'target', 'tiled', 'withGradient'],
7341
7034
  })
7342
7035
  export class SwirlShellNavigationItem {
7343
- protected el: HTMLSwirlShellNavigationItemElement;
7036
+ protected el: HTMLElement;
7344
7037
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7345
7038
  c.detach();
7346
7039
  this.el = r.nativeElement;
@@ -7360,10 +7053,9 @@ export declare interface SwirlShellNavigationItem extends Components.SwirlShellN
7360
7053
  template: '<ng-content></ng-content>',
7361
7054
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7362
7055
  inputs: ['animated', 'aspectRatio', 'borderRadius', 'height', 'width'],
7363
- standalone: false
7364
7056
  })
7365
7057
  export class SwirlSkeletonBox {
7366
- protected el: HTMLSwirlSkeletonBoxElement;
7058
+ protected el: HTMLElement;
7367
7059
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7368
7060
  c.detach();
7369
7061
  this.el = r.nativeElement;
@@ -7383,10 +7075,9 @@ export declare interface SwirlSkeletonBox extends Components.SwirlSkeletonBox {}
7383
7075
  template: '<ng-content></ng-content>',
7384
7076
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7385
7077
  inputs: ['animated', 'lines', 'size'],
7386
- standalone: false
7387
7078
  })
7388
7079
  export class SwirlSkeletonText {
7389
- protected el: HTMLSwirlSkeletonTextElement;
7080
+ protected el: HTMLElement;
7390
7081
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7391
7082
  c.detach();
7392
7083
  this.el = r.nativeElement;
@@ -7406,10 +7097,9 @@ export declare interface SwirlSkeletonText extends Components.SwirlSkeletonText
7406
7097
  template: '<ng-content></ng-content>',
7407
7098
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7408
7099
  inputs: ['label', 'size'],
7409
- standalone: false
7410
7100
  })
7411
7101
  export class SwirlSpinner {
7412
- protected el: HTMLSwirlSpinnerElement;
7102
+ protected el: HTMLElement;
7413
7103
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7414
7104
  c.detach();
7415
7105
  this.el = r.nativeElement;
@@ -7429,10 +7119,9 @@ export declare interface SwirlSpinner extends Components.SwirlSpinner {}
7429
7119
  template: '<ng-content></ng-content>',
7430
7120
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7431
7121
  inputs: ['align', 'as', 'columnSpacing', 'height', 'justify', 'orientation', 'rowSpacing', 'spacing', 'swirlAriaRole', 'wrap'],
7432
- standalone: false
7433
7122
  })
7434
7123
  export class SwirlStack {
7435
- protected el: HTMLSwirlStackElement;
7124
+ protected el: HTMLElement;
7436
7125
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7437
7126
  c.detach();
7438
7127
  this.el = r.nativeElement;
@@ -7451,11 +7140,10 @@ export declare interface SwirlStack extends Components.SwirlStack {}
7451
7140
  changeDetection: ChangeDetectionStrategy.OnPush,
7452
7141
  template: '<ng-content></ng-content>',
7453
7142
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7454
- inputs: [{ name: 'intent', required: true }, { name: 'label', required: true }],
7455
- standalone: false
7143
+ inputs: ['intent', 'label'],
7456
7144
  })
7457
7145
  export class SwirlStatusIndicator {
7458
- protected el: HTMLSwirlStatusIndicatorElement;
7146
+ protected el: HTMLElement;
7459
7147
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7460
7148
  c.detach();
7461
7149
  this.el = r.nativeElement;
@@ -7475,11 +7163,10 @@ export declare interface SwirlStatusIndicator extends Components.SwirlStatusIndi
7475
7163
  changeDetection: ChangeDetectionStrategy.OnPush,
7476
7164
  template: '<ng-content></ng-content>',
7477
7165
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7478
- inputs: ['checked', 'disabled', 'hideLabel', { name: 'inputId', required: true }, { name: 'inputName', required: true }, 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
7479
- standalone: false
7166
+ inputs: ['checked', 'disabled', 'hideLabel', 'inputId', 'inputName', 'label', 'labelPosition', 'swirlAriaLabel', 'value'],
7480
7167
  })
7481
7168
  export class SwirlSwitch {
7482
- protected el: HTMLSwirlSwitchElement;
7169
+ protected el: HTMLElement;
7483
7170
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7484
7171
  c.detach();
7485
7172
  this.el = r.nativeElement;
@@ -7502,11 +7189,10 @@ export declare interface SwirlSwitch extends Components.SwirlSwitch {
7502
7189
  changeDetection: ChangeDetectionStrategy.OnPush,
7503
7190
  template: '<ng-content></ng-content>',
7504
7191
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7505
- inputs: [{ name: 'glyph', required: true }, 'size'],
7506
- standalone: false
7192
+ inputs: ['glyph', 'size'],
7507
7193
  })
7508
7194
  export class SwirlSymbol {
7509
- protected el: HTMLSwirlSymbolElement;
7195
+ protected el: HTMLElement;
7510
7196
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7511
7197
  c.detach();
7512
7198
  this.el = r.nativeElement;
@@ -7526,10 +7212,9 @@ export declare interface SwirlSymbol extends Components.SwirlSymbol {}
7526
7212
  template: '<ng-content></ng-content>',
7527
7213
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7528
7214
  inputs: ['size'],
7529
- standalone: false
7530
7215
  })
7531
7216
  export class SwirlSymbolAccountCircle {
7532
- protected el: HTMLSwirlSymbolAccountCircleElement;
7217
+ protected el: HTMLElement;
7533
7218
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7534
7219
  c.detach();
7535
7220
  this.el = r.nativeElement;
@@ -7549,10 +7234,9 @@ export declare interface SwirlSymbolAccountCircle extends Components.SwirlSymbol
7549
7234
  template: '<ng-content></ng-content>',
7550
7235
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7551
7236
  inputs: ['size'],
7552
- standalone: false
7553
7237
  })
7554
7238
  export class SwirlSymbolAlternateEmail {
7555
- protected el: HTMLSwirlSymbolAlternateEmailElement;
7239
+ protected el: HTMLElement;
7556
7240
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7557
7241
  c.detach();
7558
7242
  this.el = r.nativeElement;
@@ -7572,10 +7256,9 @@ export declare interface SwirlSymbolAlternateEmail extends Components.SwirlSymbo
7572
7256
  template: '<ng-content></ng-content>',
7573
7257
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7574
7258
  inputs: ['size'],
7575
- standalone: false
7576
7259
  })
7577
7260
  export class SwirlSymbolAndroid {
7578
- protected el: HTMLSwirlSymbolAndroidElement;
7261
+ protected el: HTMLElement;
7579
7262
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7580
7263
  c.detach();
7581
7264
  this.el = r.nativeElement;
@@ -7595,10 +7278,9 @@ export declare interface SwirlSymbolAndroid extends Components.SwirlSymbolAndroi
7595
7278
  template: '<ng-content></ng-content>',
7596
7279
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7597
7280
  inputs: ['size'],
7598
- standalone: false
7599
7281
  })
7600
7282
  export class SwirlSymbolAnnouncement {
7601
- protected el: HTMLSwirlSymbolAnnouncementElement;
7283
+ protected el: HTMLElement;
7602
7284
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7603
7285
  c.detach();
7604
7286
  this.el = r.nativeElement;
@@ -7618,10 +7300,9 @@ export declare interface SwirlSymbolAnnouncement extends Components.SwirlSymbolA
7618
7300
  template: '<ng-content></ng-content>',
7619
7301
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7620
7302
  inputs: ['size'],
7621
- standalone: false
7622
7303
  })
7623
7304
  export class SwirlSymbolBackup {
7624
- protected el: HTMLSwirlSymbolBackupElement;
7305
+ protected el: HTMLElement;
7625
7306
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7626
7307
  c.detach();
7627
7308
  this.el = r.nativeElement;
@@ -7641,10 +7322,9 @@ export declare interface SwirlSymbolBackup extends Components.SwirlSymbolBackup
7641
7322
  template: '<ng-content></ng-content>',
7642
7323
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7643
7324
  inputs: ['size'],
7644
- standalone: false
7645
7325
  })
7646
7326
  export class SwirlSymbolBeachAccess {
7647
- protected el: HTMLSwirlSymbolBeachAccessElement;
7327
+ protected el: HTMLElement;
7648
7328
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7649
7329
  c.detach();
7650
7330
  this.el = r.nativeElement;
@@ -7664,10 +7344,9 @@ export declare interface SwirlSymbolBeachAccess extends Components.SwirlSymbolBe
7664
7344
  template: '<ng-content></ng-content>',
7665
7345
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7666
7346
  inputs: ['size'],
7667
- standalone: false
7668
7347
  })
7669
7348
  export class SwirlSymbolBookmark {
7670
- protected el: HTMLSwirlSymbolBookmarkElement;
7349
+ protected el: HTMLElement;
7671
7350
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7672
7351
  c.detach();
7673
7352
  this.el = r.nativeElement;
@@ -7687,10 +7366,9 @@ export declare interface SwirlSymbolBookmark extends Components.SwirlSymbolBookm
7687
7366
  template: '<ng-content></ng-content>',
7688
7367
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7689
7368
  inputs: ['size'],
7690
- standalone: false
7691
7369
  })
7692
7370
  export class SwirlSymbolCloud {
7693
- protected el: HTMLSwirlSymbolCloudElement;
7371
+ protected el: HTMLElement;
7694
7372
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7695
7373
  c.detach();
7696
7374
  this.el = r.nativeElement;
@@ -7710,10 +7388,9 @@ export declare interface SwirlSymbolCloud extends Components.SwirlSymbolCloud {}
7710
7388
  template: '<ng-content></ng-content>',
7711
7389
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7712
7390
  inputs: ['size'],
7713
- standalone: false
7714
7391
  })
7715
7392
  export class SwirlSymbolCoronavirus {
7716
- protected el: HTMLSwirlSymbolCoronavirusElement;
7393
+ protected el: HTMLElement;
7717
7394
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7718
7395
  c.detach();
7719
7396
  this.el = r.nativeElement;
@@ -7733,10 +7410,9 @@ export declare interface SwirlSymbolCoronavirus extends Components.SwirlSymbolCo
7733
7410
  template: '<ng-content></ng-content>',
7734
7411
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7735
7412
  inputs: ['size'],
7736
- standalone: false
7737
7413
  })
7738
7414
  export class SwirlSymbolDesktopWindows {
7739
- protected el: HTMLSwirlSymbolDesktopWindowsElement;
7415
+ protected el: HTMLElement;
7740
7416
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7741
7417
  c.detach();
7742
7418
  this.el = r.nativeElement;
@@ -7756,10 +7432,9 @@ export declare interface SwirlSymbolDesktopWindows extends Components.SwirlSymbo
7756
7432
  template: '<ng-content></ng-content>',
7757
7433
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7758
7434
  inputs: ['size'],
7759
- standalone: false
7760
7435
  })
7761
7436
  export class SwirlSymbolDirectionsCarFilled {
7762
- protected el: HTMLSwirlSymbolDirectionsCarFilledElement;
7437
+ protected el: HTMLElement;
7763
7438
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7764
7439
  c.detach();
7765
7440
  this.el = r.nativeElement;
@@ -7779,10 +7454,9 @@ export declare interface SwirlSymbolDirectionsCarFilled extends Components.Swirl
7779
7454
  template: '<ng-content></ng-content>',
7780
7455
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7781
7456
  inputs: ['size'],
7782
- standalone: false
7783
7457
  })
7784
7458
  export class SwirlSymbolEditCalendar {
7785
- protected el: HTMLSwirlSymbolEditCalendarElement;
7459
+ protected el: HTMLElement;
7786
7460
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7787
7461
  c.detach();
7788
7462
  this.el = r.nativeElement;
@@ -7802,10 +7476,9 @@ export declare interface SwirlSymbolEditCalendar extends Components.SwirlSymbolE
7802
7476
  template: '<ng-content></ng-content>',
7803
7477
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7804
7478
  inputs: ['size'],
7805
- standalone: false
7806
7479
  })
7807
7480
  export class SwirlSymbolEmail {
7808
- protected el: HTMLSwirlSymbolEmailElement;
7481
+ protected el: HTMLElement;
7809
7482
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7810
7483
  c.detach();
7811
7484
  this.el = r.nativeElement;
@@ -7825,10 +7498,9 @@ export declare interface SwirlSymbolEmail extends Components.SwirlSymbolEmail {}
7825
7498
  template: '<ng-content></ng-content>',
7826
7499
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7827
7500
  inputs: ['size'],
7828
- standalone: false
7829
7501
  })
7830
7502
  export class SwirlSymbolEmojiFoodBeverage {
7831
- protected el: HTMLSwirlSymbolEmojiFoodBeverageElement;
7503
+ protected el: HTMLElement;
7832
7504
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7833
7505
  c.detach();
7834
7506
  this.el = r.nativeElement;
@@ -7848,10 +7520,9 @@ export declare interface SwirlSymbolEmojiFoodBeverage extends Components.SwirlSy
7848
7520
  template: '<ng-content></ng-content>',
7849
7521
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7850
7522
  inputs: ['size'],
7851
- standalone: false
7852
7523
  })
7853
7524
  export class SwirlSymbolEventMenu {
7854
- protected el: HTMLSwirlSymbolEventMenuElement;
7525
+ protected el: HTMLElement;
7855
7526
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7856
7527
  c.detach();
7857
7528
  this.el = r.nativeElement;
@@ -7871,10 +7542,9 @@ export declare interface SwirlSymbolEventMenu extends Components.SwirlSymbolEven
7871
7542
  template: '<ng-content></ng-content>',
7872
7543
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7873
7544
  inputs: ['size'],
7874
- standalone: false
7875
7545
  })
7876
7546
  export class SwirlSymbolFacebook {
7877
- protected el: HTMLSwirlSymbolFacebookElement;
7547
+ protected el: HTMLElement;
7878
7548
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7879
7549
  c.detach();
7880
7550
  this.el = r.nativeElement;
@@ -7894,10 +7564,9 @@ export declare interface SwirlSymbolFacebook extends Components.SwirlSymbolFaceb
7894
7564
  template: '<ng-content></ng-content>',
7895
7565
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7896
7566
  inputs: ['size'],
7897
- standalone: false
7898
7567
  })
7899
7568
  export class SwirlSymbolFavorite {
7900
- protected el: HTMLSwirlSymbolFavoriteElement;
7569
+ protected el: HTMLElement;
7901
7570
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7902
7571
  c.detach();
7903
7572
  this.el = r.nativeElement;
@@ -7917,10 +7586,9 @@ export declare interface SwirlSymbolFavorite extends Components.SwirlSymbolFavor
7917
7586
  template: '<ng-content></ng-content>',
7918
7587
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7919
7588
  inputs: ['size'],
7920
- standalone: false
7921
7589
  })
7922
7590
  export class SwirlSymbolFitnessCenter {
7923
- protected el: HTMLSwirlSymbolFitnessCenterElement;
7591
+ protected el: HTMLElement;
7924
7592
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7925
7593
  c.detach();
7926
7594
  this.el = r.nativeElement;
@@ -7940,10 +7608,9 @@ export declare interface SwirlSymbolFitnessCenter extends Components.SwirlSymbol
7940
7608
  template: '<ng-content></ng-content>',
7941
7609
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7942
7610
  inputs: ['size'],
7943
- standalone: false
7944
7611
  })
7945
7612
  export class SwirlSymbolFlag {
7946
- protected el: HTMLSwirlSymbolFlagElement;
7613
+ protected el: HTMLElement;
7947
7614
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7948
7615
  c.detach();
7949
7616
  this.el = r.nativeElement;
@@ -7963,10 +7630,9 @@ export declare interface SwirlSymbolFlag extends Components.SwirlSymbolFlag {}
7963
7630
  template: '<ng-content></ng-content>',
7964
7631
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7965
7632
  inputs: ['size'],
7966
- standalone: false
7967
7633
  })
7968
7634
  export class SwirlSymbolFolder {
7969
- protected el: HTMLSwirlSymbolFolderElement;
7635
+ protected el: HTMLElement;
7970
7636
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7971
7637
  c.detach();
7972
7638
  this.el = r.nativeElement;
@@ -7986,10 +7652,9 @@ export declare interface SwirlSymbolFolder extends Components.SwirlSymbolFolder
7986
7652
  template: '<ng-content></ng-content>',
7987
7653
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
7988
7654
  inputs: ['size'],
7989
- standalone: false
7990
7655
  })
7991
7656
  export class SwirlSymbolGlobe {
7992
- protected el: HTMLSwirlSymbolGlobeElement;
7657
+ protected el: HTMLElement;
7993
7658
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7994
7659
  c.detach();
7995
7660
  this.el = r.nativeElement;
@@ -8009,10 +7674,9 @@ export declare interface SwirlSymbolGlobe extends Components.SwirlSymbolGlobe {}
8009
7674
  template: '<ng-content></ng-content>',
8010
7675
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8011
7676
  inputs: ['size'],
8012
- standalone: false
8013
7677
  })
8014
7678
  export class SwirlSymbolGroups {
8015
- protected el: HTMLSwirlSymbolGroupsElement;
7679
+ protected el: HTMLElement;
8016
7680
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8017
7681
  c.detach();
8018
7682
  this.el = r.nativeElement;
@@ -8032,10 +7696,9 @@ export declare interface SwirlSymbolGroups extends Components.SwirlSymbolGroups
8032
7696
  template: '<ng-content></ng-content>',
8033
7697
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8034
7698
  inputs: ['size'],
8035
- standalone: false
8036
7699
  })
8037
7700
  export class SwirlSymbolHelp {
8038
- protected el: HTMLSwirlSymbolHelpElement;
7701
+ protected el: HTMLElement;
8039
7702
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8040
7703
  c.detach();
8041
7704
  this.el = r.nativeElement;
@@ -8055,10 +7718,9 @@ export declare interface SwirlSymbolHelp extends Components.SwirlSymbolHelp {}
8055
7718
  template: '<ng-content></ng-content>',
8056
7719
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8057
7720
  inputs: ['size'],
8058
- standalone: false
8059
7721
  })
8060
7722
  export class SwirlSymbolImage {
8061
- protected el: HTMLSwirlSymbolImageElement;
7723
+ protected el: HTMLElement;
8062
7724
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8063
7725
  c.detach();
8064
7726
  this.el = r.nativeElement;
@@ -8078,10 +7740,9 @@ export declare interface SwirlSymbolImage extends Components.SwirlSymbolImage {}
8078
7740
  template: '<ng-content></ng-content>',
8079
7741
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8080
7742
  inputs: ['size'],
8081
- standalone: false
8082
7743
  })
8083
7744
  export class SwirlSymbolInfoMenu {
8084
- protected el: HTMLSwirlSymbolInfoMenuElement;
7745
+ protected el: HTMLElement;
8085
7746
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8086
7747
  c.detach();
8087
7748
  this.el = r.nativeElement;
@@ -8101,10 +7762,9 @@ export declare interface SwirlSymbolInfoMenu extends Components.SwirlSymbolInfoM
8101
7762
  template: '<ng-content></ng-content>',
8102
7763
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8103
7764
  inputs: ['size'],
8104
- standalone: false
8105
7765
  })
8106
7766
  export class SwirlSymbolInstagram {
8107
- protected el: HTMLSwirlSymbolInstagramElement;
7767
+ protected el: HTMLElement;
8108
7768
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8109
7769
  c.detach();
8110
7770
  this.el = r.nativeElement;
@@ -8124,10 +7784,9 @@ export declare interface SwirlSymbolInstagram extends Components.SwirlSymbolInst
8124
7784
  template: '<ng-content></ng-content>',
8125
7785
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8126
7786
  inputs: ['size'],
8127
- standalone: false
8128
7787
  })
8129
7788
  export class SwirlSymbolIos {
8130
- protected el: HTMLSwirlSymbolIosElement;
7789
+ protected el: HTMLElement;
8131
7790
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8132
7791
  c.detach();
8133
7792
  this.el = r.nativeElement;
@@ -8147,10 +7806,9 @@ export declare interface SwirlSymbolIos extends Components.SwirlSymbolIos {}
8147
7806
  template: '<ng-content></ng-content>',
8148
7807
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8149
7808
  inputs: ['size'],
8150
- standalone: false
8151
7809
  })
8152
7810
  export class SwirlSymbolLanguage {
8153
- protected el: HTMLSwirlSymbolLanguageElement;
7811
+ protected el: HTMLElement;
8154
7812
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8155
7813
  c.detach();
8156
7814
  this.el = r.nativeElement;
@@ -8170,10 +7828,9 @@ export declare interface SwirlSymbolLanguage extends Components.SwirlSymbolLangu
8170
7828
  template: '<ng-content></ng-content>',
8171
7829
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8172
7830
  inputs: ['size'],
8173
- standalone: false
8174
7831
  })
8175
7832
  export class SwirlSymbolLeaderboard {
8176
- protected el: HTMLSwirlSymbolLeaderboardElement;
7833
+ protected el: HTMLElement;
8177
7834
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8178
7835
  c.detach();
8179
7836
  this.el = r.nativeElement;
@@ -8193,10 +7850,9 @@ export declare interface SwirlSymbolLeaderboard extends Components.SwirlSymbolLe
8193
7850
  template: '<ng-content></ng-content>',
8194
7851
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8195
7852
  inputs: ['size'],
8196
- standalone: false
8197
7853
  })
8198
7854
  export class SwirlSymbolLightbulb {
8199
- protected el: HTMLSwirlSymbolLightbulbElement;
7855
+ protected el: HTMLElement;
8200
7856
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8201
7857
  c.detach();
8202
7858
  this.el = r.nativeElement;
@@ -8216,10 +7872,9 @@ export declare interface SwirlSymbolLightbulb extends Components.SwirlSymbolLigh
8216
7872
  template: '<ng-content></ng-content>',
8217
7873
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8218
7874
  inputs: ['size'],
8219
- standalone: false
8220
7875
  })
8221
7876
  export class SwirlSymbolLinkedin {
8222
- protected el: HTMLSwirlSymbolLinkedinElement;
7877
+ protected el: HTMLElement;
8223
7878
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8224
7879
  c.detach();
8225
7880
  this.el = r.nativeElement;
@@ -8239,10 +7894,9 @@ export declare interface SwirlSymbolLinkedin extends Components.SwirlSymbolLinke
8239
7894
  template: '<ng-content></ng-content>',
8240
7895
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8241
7896
  inputs: ['size'],
8242
- standalone: false
8243
7897
  })
8244
7898
  export class SwirlSymbolLocationOn {
8245
- protected el: HTMLSwirlSymbolLocationOnElement;
7899
+ protected el: HTMLElement;
8246
7900
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8247
7901
  c.detach();
8248
7902
  this.el = r.nativeElement;
@@ -8262,10 +7916,9 @@ export declare interface SwirlSymbolLocationOn extends Components.SwirlSymbolLoc
8262
7916
  template: '<ng-content></ng-content>',
8263
7917
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8264
7918
  inputs: ['size'],
8265
- standalone: false
8266
7919
  })
8267
7920
  export class SwirlSymbolLoyalty {
8268
- protected el: HTMLSwirlSymbolLoyaltyElement;
7921
+ protected el: HTMLElement;
8269
7922
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8270
7923
  c.detach();
8271
7924
  this.el = r.nativeElement;
@@ -8285,10 +7938,9 @@ export declare interface SwirlSymbolLoyalty extends Components.SwirlSymbolLoyalt
8285
7938
  template: '<ng-content></ng-content>',
8286
7939
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8287
7940
  inputs: ['size'],
8288
- standalone: false
8289
7941
  })
8290
7942
  export class SwirlSymbolMapsHomeWork {
8291
- protected el: HTMLSwirlSymbolMapsHomeWorkElement;
7943
+ protected el: HTMLElement;
8292
7944
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8293
7945
  c.detach();
8294
7946
  this.el = r.nativeElement;
@@ -8308,10 +7960,9 @@ export declare interface SwirlSymbolMapsHomeWork extends Components.SwirlSymbolM
8308
7960
  template: '<ng-content></ng-content>',
8309
7961
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8310
7962
  inputs: ['size'],
8311
- standalone: false
8312
7963
  })
8313
7964
  export class SwirlSymbolNotifications {
8314
- protected el: HTMLSwirlSymbolNotificationsElement;
7965
+ protected el: HTMLElement;
8315
7966
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8316
7967
  c.detach();
8317
7968
  this.el = r.nativeElement;
@@ -8331,10 +7982,9 @@ export declare interface SwirlSymbolNotifications extends Components.SwirlSymbol
8331
7982
  template: '<ng-content></ng-content>',
8332
7983
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8333
7984
  inputs: ['size'],
8334
- standalone: false
8335
7985
  })
8336
7986
  export class SwirlSymbolOpenInNew {
8337
- protected el: HTMLSwirlSymbolOpenInNewElement;
7987
+ protected el: HTMLElement;
8338
7988
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8339
7989
  c.detach();
8340
7990
  this.el = r.nativeElement;
@@ -8354,10 +8004,9 @@ export declare interface SwirlSymbolOpenInNew extends Components.SwirlSymbolOpen
8354
8004
  template: '<ng-content></ng-content>',
8355
8005
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8356
8006
  inputs: ['size'],
8357
- standalone: false
8358
8007
  })
8359
8008
  export class SwirlSymbolPedalBike {
8360
- protected el: HTMLSwirlSymbolPedalBikeElement;
8009
+ protected el: HTMLElement;
8361
8010
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8362
8011
  c.detach();
8363
8012
  this.el = r.nativeElement;
@@ -8377,10 +8026,9 @@ export declare interface SwirlSymbolPedalBike extends Components.SwirlSymbolPeda
8377
8026
  template: '<ng-content></ng-content>',
8378
8027
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8379
8028
  inputs: ['size'],
8380
- standalone: false
8381
8029
  })
8382
8030
  export class SwirlSymbolPinterest {
8383
- protected el: HTMLSwirlSymbolPinterestElement;
8031
+ protected el: HTMLElement;
8384
8032
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8385
8033
  c.detach();
8386
8034
  this.el = r.nativeElement;
@@ -8400,10 +8048,9 @@ export declare interface SwirlSymbolPinterest extends Components.SwirlSymbolPint
8400
8048
  template: '<ng-content></ng-content>',
8401
8049
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8402
8050
  inputs: ['size'],
8403
- standalone: false
8404
8051
  })
8405
8052
  export class SwirlSymbolPolicy {
8406
- protected el: HTMLSwirlSymbolPolicyElement;
8053
+ protected el: HTMLElement;
8407
8054
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8408
8055
  c.detach();
8409
8056
  this.el = r.nativeElement;
@@ -8423,10 +8070,9 @@ export declare interface SwirlSymbolPolicy extends Components.SwirlSymbolPolicy
8423
8070
  template: '<ng-content></ng-content>',
8424
8071
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8425
8072
  inputs: ['size'],
8426
- standalone: false
8427
8073
  })
8428
8074
  export class SwirlSymbolPushPin {
8429
- protected el: HTMLSwirlSymbolPushPinElement;
8075
+ protected el: HTMLElement;
8430
8076
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8431
8077
  c.detach();
8432
8078
  this.el = r.nativeElement;
@@ -8446,10 +8092,9 @@ export declare interface SwirlSymbolPushPin extends Components.SwirlSymbolPushPi
8446
8092
  template: '<ng-content></ng-content>',
8447
8093
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8448
8094
  inputs: ['size'],
8449
- standalone: false
8450
8095
  })
8451
8096
  export class SwirlSymbolRedeem {
8452
- protected el: HTMLSwirlSymbolRedeemElement;
8097
+ protected el: HTMLElement;
8453
8098
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8454
8099
  c.detach();
8455
8100
  this.el = r.nativeElement;
@@ -8469,10 +8114,9 @@ export declare interface SwirlSymbolRedeem extends Components.SwirlSymbolRedeem
8469
8114
  template: '<ng-content></ng-content>',
8470
8115
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8471
8116
  inputs: ['size'],
8472
- standalone: false
8473
8117
  })
8474
8118
  export class SwirlSymbolReportProblem {
8475
- protected el: HTMLSwirlSymbolReportProblemElement;
8119
+ protected el: HTMLElement;
8476
8120
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8477
8121
  c.detach();
8478
8122
  this.el = r.nativeElement;
@@ -8492,10 +8136,9 @@ export declare interface SwirlSymbolReportProblem extends Components.SwirlSymbol
8492
8136
  template: '<ng-content></ng-content>',
8493
8137
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8494
8138
  inputs: ['size'],
8495
- standalone: false
8496
8139
  })
8497
8140
  export class SwirlSymbolRestaurant {
8498
- protected el: HTMLSwirlSymbolRestaurantElement;
8141
+ protected el: HTMLElement;
8499
8142
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8500
8143
  c.detach();
8501
8144
  this.el = r.nativeElement;
@@ -8515,10 +8158,9 @@ export declare interface SwirlSymbolRestaurant extends Components.SwirlSymbolRes
8515
8158
  template: '<ng-content></ng-content>',
8516
8159
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8517
8160
  inputs: ['size'],
8518
- standalone: false
8519
8161
  })
8520
8162
  export class SwirlSymbolRoadmap {
8521
- protected el: HTMLSwirlSymbolRoadmapElement;
8163
+ protected el: HTMLElement;
8522
8164
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8523
8165
  c.detach();
8524
8166
  this.el = r.nativeElement;
@@ -8538,10 +8180,9 @@ export declare interface SwirlSymbolRoadmap extends Components.SwirlSymbolRoadma
8538
8180
  template: '<ng-content></ng-content>',
8539
8181
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8540
8182
  inputs: ['size'],
8541
- standalone: false
8542
8183
  })
8543
8184
  export class SwirlSymbolRoom {
8544
- protected el: HTMLSwirlSymbolRoomElement;
8185
+ protected el: HTMLElement;
8545
8186
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8546
8187
  c.detach();
8547
8188
  this.el = r.nativeElement;
@@ -8561,10 +8202,9 @@ export declare interface SwirlSymbolRoom extends Components.SwirlSymbolRoom {}
8561
8202
  template: '<ng-content></ng-content>',
8562
8203
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8563
8204
  inputs: ['size'],
8564
- standalone: false
8565
8205
  })
8566
8206
  export class SwirlSymbolSavings {
8567
- protected el: HTMLSwirlSymbolSavingsElement;
8207
+ protected el: HTMLElement;
8568
8208
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8569
8209
  c.detach();
8570
8210
  this.el = r.nativeElement;
@@ -8584,10 +8224,9 @@ export declare interface SwirlSymbolSavings extends Components.SwirlSymbolSaving
8584
8224
  template: '<ng-content></ng-content>',
8585
8225
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8586
8226
  inputs: ['size'],
8587
- standalone: false
8588
8227
  })
8589
8228
  export class SwirlSymbolSettingsVoice {
8590
- protected el: HTMLSwirlSymbolSettingsVoiceElement;
8229
+ protected el: HTMLElement;
8591
8230
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8592
8231
  c.detach();
8593
8232
  this.el = r.nativeElement;
@@ -8607,10 +8246,9 @@ export declare interface SwirlSymbolSettingsVoice extends Components.SwirlSymbol
8607
8246
  template: '<ng-content></ng-content>',
8608
8247
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8609
8248
  inputs: ['size'],
8610
- standalone: false
8611
8249
  })
8612
8250
  export class SwirlSymbolShoppingCart {
8613
- protected el: HTMLSwirlSymbolShoppingCartElement;
8251
+ protected el: HTMLElement;
8614
8252
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8615
8253
  c.detach();
8616
8254
  this.el = r.nativeElement;
@@ -8630,10 +8268,9 @@ export declare interface SwirlSymbolShoppingCart extends Components.SwirlSymbolS
8630
8268
  template: '<ng-content></ng-content>',
8631
8269
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8632
8270
  inputs: ['size'],
8633
- standalone: false
8634
8271
  })
8635
8272
  export class SwirlSymbolSmartphone {
8636
- protected el: HTMLSwirlSymbolSmartphoneElement;
8273
+ protected el: HTMLElement;
8637
8274
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8638
8275
  c.detach();
8639
8276
  this.el = r.nativeElement;
@@ -8653,10 +8290,9 @@ export declare interface SwirlSymbolSmartphone extends Components.SwirlSymbolSma
8653
8290
  template: '<ng-content></ng-content>',
8654
8291
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8655
8292
  inputs: ['size'],
8656
- standalone: false
8657
8293
  })
8658
8294
  export class SwirlSymbolStar {
8659
- protected el: HTMLSwirlSymbolStarElement;
8295
+ protected el: HTMLElement;
8660
8296
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8661
8297
  c.detach();
8662
8298
  this.el = r.nativeElement;
@@ -8676,10 +8312,9 @@ export declare interface SwirlSymbolStar extends Components.SwirlSymbolStar {}
8676
8312
  template: '<ng-content></ng-content>',
8677
8313
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8678
8314
  inputs: ['size'],
8679
- standalone: false
8680
8315
  })
8681
8316
  export class SwirlSymbolSupervisorAccount {
8682
- protected el: HTMLSwirlSymbolSupervisorAccountElement;
8317
+ protected el: HTMLElement;
8683
8318
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8684
8319
  c.detach();
8685
8320
  this.el = r.nativeElement;
@@ -8699,10 +8334,9 @@ export declare interface SwirlSymbolSupervisorAccount extends Components.SwirlSy
8699
8334
  template: '<ng-content></ng-content>',
8700
8335
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8701
8336
  inputs: ['size'],
8702
- standalone: false
8703
8337
  })
8704
8338
  export class SwirlSymbolThumbsUpDown {
8705
- protected el: HTMLSwirlSymbolThumbsUpDownElement;
8339
+ protected el: HTMLElement;
8706
8340
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8707
8341
  c.detach();
8708
8342
  this.el = r.nativeElement;
@@ -8722,10 +8356,9 @@ export declare interface SwirlSymbolThumbsUpDown extends Components.SwirlSymbolT
8722
8356
  template: '<ng-content></ng-content>',
8723
8357
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8724
8358
  inputs: ['size'],
8725
- standalone: false
8726
8359
  })
8727
8360
  export class SwirlSymbolTwitter {
8728
- protected el: HTMLSwirlSymbolTwitterElement;
8361
+ protected el: HTMLElement;
8729
8362
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8730
8363
  c.detach();
8731
8364
  this.el = r.nativeElement;
@@ -8745,10 +8378,9 @@ export declare interface SwirlSymbolTwitter extends Components.SwirlSymbolTwitte
8745
8378
  template: '<ng-content></ng-content>',
8746
8379
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8747
8380
  inputs: ['size'],
8748
- standalone: false
8749
8381
  })
8750
8382
  export class SwirlSymbolWbSunny {
8751
- protected el: HTMLSwirlSymbolWbSunnyElement;
8383
+ protected el: HTMLElement;
8752
8384
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8753
8385
  c.detach();
8754
8386
  this.el = r.nativeElement;
@@ -8768,10 +8400,9 @@ export declare interface SwirlSymbolWbSunny extends Components.SwirlSymbolWbSunn
8768
8400
  template: '<ng-content></ng-content>',
8769
8401
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8770
8402
  inputs: ['size'],
8771
- standalone: false
8772
8403
  })
8773
8404
  export class SwirlSymbolWechat {
8774
- protected el: HTMLSwirlSymbolWechatElement;
8405
+ protected el: HTMLElement;
8775
8406
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8776
8407
  c.detach();
8777
8408
  this.el = r.nativeElement;
@@ -8791,10 +8422,9 @@ export declare interface SwirlSymbolWechat extends Components.SwirlSymbolWechat
8791
8422
  template: '<ng-content></ng-content>',
8792
8423
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8793
8424
  inputs: ['size'],
8794
- standalone: false
8795
8425
  })
8796
8426
  export class SwirlSymbolWeibo {
8797
- protected el: HTMLSwirlSymbolWeiboElement;
8427
+ protected el: HTMLElement;
8798
8428
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8799
8429
  c.detach();
8800
8430
  this.el = r.nativeElement;
@@ -8814,10 +8444,9 @@ export declare interface SwirlSymbolWeibo extends Components.SwirlSymbolWeibo {}
8814
8444
  template: '<ng-content></ng-content>',
8815
8445
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8816
8446
  inputs: ['size'],
8817
- standalone: false
8818
8447
  })
8819
8448
  export class SwirlSymbolWork {
8820
- protected el: HTMLSwirlSymbolWorkElement;
8449
+ protected el: HTMLElement;
8821
8450
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8822
8451
  c.detach();
8823
8452
  this.el = r.nativeElement;
@@ -8837,10 +8466,9 @@ export declare interface SwirlSymbolWork extends Components.SwirlSymbolWork {}
8837
8466
  template: '<ng-content></ng-content>',
8838
8467
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8839
8468
  inputs: ['size'],
8840
- standalone: false
8841
8469
  })
8842
8470
  export class SwirlSymbolXing {
8843
- protected el: HTMLSwirlSymbolXingElement;
8471
+ protected el: HTMLElement;
8844
8472
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8845
8473
  c.detach();
8846
8474
  this.el = r.nativeElement;
@@ -8860,10 +8488,9 @@ export declare interface SwirlSymbolXing extends Components.SwirlSymbolXing {}
8860
8488
  template: '<ng-content></ng-content>',
8861
8489
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8862
8490
  inputs: ['size'],
8863
- standalone: false
8864
8491
  })
8865
8492
  export class SwirlSymbolYoutube {
8866
- protected el: HTMLSwirlSymbolYoutubeElement;
8493
+ protected el: HTMLElement;
8867
8494
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8868
8495
  c.detach();
8869
8496
  this.el = r.nativeElement;
@@ -8882,11 +8509,10 @@ export declare interface SwirlSymbolYoutube extends Components.SwirlSymbolYoutub
8882
8509
  changeDetection: ChangeDetectionStrategy.OnPush,
8883
8510
  template: '<ng-content></ng-content>',
8884
8511
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8885
- inputs: ['active', 'icon', { name: 'label', required: true }, 'padding', { name: 'tabId', required: true }],
8886
- standalone: false
8512
+ inputs: ['active', 'icon', 'label', 'padding', 'tabId'],
8887
8513
  })
8888
8514
  export class SwirlTab {
8889
- protected el: HTMLSwirlTabElement;
8515
+ protected el: HTMLElement;
8890
8516
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8891
8517
  c.detach();
8892
8518
  this.el = r.nativeElement;
@@ -8905,11 +8531,10 @@ export declare interface SwirlTab extends Components.SwirlTab {}
8905
8531
  changeDetection: ChangeDetectionStrategy.OnPush,
8906
8532
  template: '<ng-content></ng-content>',
8907
8533
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8908
- inputs: ['disableTabSemantics', 'justify', { name: 'label', required: true }, 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'tabs', 'variant'],
8909
- standalone: false
8534
+ inputs: ['disableTabSemantics', 'justify', 'label', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'tabs', 'variant'],
8910
8535
  })
8911
8536
  export class SwirlTabBar {
8912
- protected el: HTMLSwirlTabBarElement;
8537
+ protected el: HTMLElement;
8913
8538
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8914
8539
  c.detach();
8915
8540
  this.el = r.nativeElement;
@@ -8937,11 +8562,10 @@ export declare interface SwirlTabBar extends Components.SwirlTabBar {
8937
8562
  changeDetection: ChangeDetectionStrategy.OnPush,
8938
8563
  template: '<ng-content></ng-content>',
8939
8564
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8940
- inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', { name: 'label', required: true }],
8941
- standalone: false
8565
+ inputs: ['caption', 'dragDropHandle', 'dragDropInstructions', 'emptyStateLabel', 'enableDragDrop', 'label'],
8942
8566
  })
8943
8567
  export class SwirlTable {
8944
- protected el: HTMLSwirlTableElement;
8568
+ protected el: HTMLElement;
8945
8569
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8946
8570
  c.detach();
8947
8571
  this.el = r.nativeElement;
@@ -8966,10 +8590,9 @@ export declare interface SwirlTable extends Components.SwirlTable {
8966
8590
  template: '<ng-content></ng-content>',
8967
8591
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8968
8592
  inputs: [],
8969
- standalone: false
8970
8593
  })
8971
8594
  export class SwirlTableCell {
8972
- protected el: HTMLSwirlTableCellElement;
8595
+ protected el: HTMLElement;
8973
8596
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8974
8597
  c.detach();
8975
8598
  this.el = r.nativeElement;
@@ -8989,10 +8612,9 @@ export declare interface SwirlTableCell extends Components.SwirlTableCell {}
8989
8612
  template: '<ng-content></ng-content>',
8990
8613
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
8991
8614
  inputs: ['maxWidth', 'minWidth', 'sort', 'sortable', 'sticky', 'width'],
8992
- standalone: false
8993
8615
  })
8994
8616
  export class SwirlTableColumn {
8995
- protected el: HTMLSwirlTableColumnElement;
8617
+ protected el: HTMLElement;
8996
8618
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
8997
8619
  c.detach();
8998
8620
  this.el = r.nativeElement;
@@ -9012,10 +8634,9 @@ export declare interface SwirlTableColumn extends Components.SwirlTableColumn {}
9012
8634
  template: '<ng-content></ng-content>',
9013
8635
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9014
8636
  inputs: ['highlighted', 'index'],
9015
- standalone: false
9016
8637
  })
9017
8638
  export class SwirlTableRow {
9018
- protected el: HTMLSwirlTableRowElement;
8639
+ protected el: HTMLElement;
9019
8640
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9020
8641
  c.detach();
9021
8642
  this.el = r.nativeElement;
@@ -9034,11 +8655,10 @@ export declare interface SwirlTableRow extends Components.SwirlTableRow {}
9034
8655
  changeDetection: ChangeDetectionStrategy.OnPush,
9035
8656
  template: '<ng-content></ng-content>',
9036
8657
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9037
- inputs: ['collapseButtonLabel', 'collapsible', { name: 'label', required: true }, 'tooltip'],
9038
- standalone: false
8658
+ inputs: ['collapseButtonLabel', 'collapsible', 'label', 'tooltip'],
9039
8659
  })
9040
8660
  export class SwirlTableRowGroup {
9041
- protected el: HTMLSwirlTableRowGroupElement;
8661
+ protected el: HTMLElement;
9042
8662
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9043
8663
  c.detach();
9044
8664
  this.el = r.nativeElement;
@@ -9058,11 +8678,10 @@ export declare interface SwirlTableRowGroup extends Components.SwirlTableRowGrou
9058
8678
  changeDetection: ChangeDetectionStrategy.OnPush,
9059
8679
  template: '<ng-content></ng-content>',
9060
8680
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9061
- inputs: ['initialTab', 'justifyTabBar', { name: 'label', required: true }, 'tabBarPaddingBlockEnd', 'tabBarPaddingBlockStart', 'tabBarPaddingInlineEnd', 'tabBarPaddingInlineStart', 'tabBarVariant'],
9062
- standalone: false
8681
+ inputs: ['initialTab', 'justifyTabBar', 'label', 'tabBarPaddingBlockEnd', 'tabBarPaddingBlockStart', 'tabBarPaddingInlineEnd', 'tabBarPaddingInlineStart', 'tabBarVariant'],
9063
8682
  })
9064
8683
  export class SwirlTabs {
9065
- protected el: HTMLSwirlTabsElement;
8684
+ protected el: HTMLElement;
9066
8685
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9067
8686
  c.detach();
9068
8687
  this.el = r.nativeElement;
@@ -9085,11 +8704,10 @@ export declare interface SwirlTabs extends Components.SwirlTabs {
9085
8704
  changeDetection: ChangeDetectionStrategy.OnPush,
9086
8705
  template: '<ng-content></ng-content>',
9087
8706
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9088
- inputs: ['bordered', 'icon', 'iconPosition', 'intent', { name: 'label', required: true }, 'removable', 'removalButtonLabel', 'size', 'variant'],
9089
- standalone: false
8707
+ inputs: ['bordered', 'icon', 'iconPosition', 'intent', 'label', 'removable', 'removalButtonLabel', 'size', 'variant'],
9090
8708
  })
9091
8709
  export class SwirlTag {
9092
- protected el: HTMLSwirlTagElement;
8710
+ protected el: HTMLElement;
9093
8711
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9094
8712
  c.detach();
9095
8713
  this.el = r.nativeElement;
@@ -9113,10 +8731,9 @@ export declare interface SwirlTag extends Components.SwirlTag {
9113
8731
  template: '<ng-content></ng-content>',
9114
8732
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9115
8733
  inputs: ['align', 'as', 'balance', 'color', 'fontFamily', 'fontStyle', 'lines', 'responsive', 'size', 'truncate', 'truncateDirection', 'weight', 'whiteSpace'],
9116
- standalone: false
9117
8734
  })
9118
8735
  export class SwirlText {
9119
- protected el: HTMLSwirlTextElement;
8736
+ protected el: HTMLElement;
9120
8737
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9121
8738
  c.detach();
9122
8739
  this.el = r.nativeElement;
@@ -9137,10 +8754,9 @@ export declare interface SwirlText extends Components.SwirlText {}
9137
8754
  template: '<ng-content></ng-content>',
9138
8755
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9139
8756
  inputs: ['autoComplete', 'autoFocus', 'autoGrow', 'autoSelect', 'characterCounterLabel', 'clearButtonLabel', 'clearable', 'disableDynamicWidth', 'disabled', 'fontSize', 'inline', 'inputName', 'invalid', 'max', 'maxLength', 'min', 'mode', 'passwordToggleLabel', 'placeholder', 'prefixLabel', 'required', 'rows', 'showCharacterCounter', 'spellCheck', 'step', 'suffixLabel', 'swirlAriaAutocomplete', 'swirlAriaControls', 'swirlAriaDescribedby', 'swirlAriaExpanded', 'swirlRole', 'type', 'value'],
9140
- standalone: false
9141
8757
  })
9142
8758
  export class SwirlTextInput {
9143
- protected el: HTMLSwirlTextInputElement;
8759
+ protected el: HTMLElement;
9144
8760
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9145
8761
  c.detach();
9146
8762
  this.el = r.nativeElement;
@@ -9169,10 +8785,9 @@ export declare interface SwirlTextInput extends Components.SwirlTextInput {
9169
8785
  template: '<ng-content></ng-content>',
9170
8786
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9171
8787
  inputs: ['config'],
9172
- standalone: false
9173
8788
  })
9174
8789
  export class SwirlThemeProvider {
9175
- protected el: HTMLSwirlThemeProviderElement;
8790
+ protected el: HTMLElement;
9176
8791
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9177
8792
  c.detach();
9178
8793
  this.el = r.nativeElement;
@@ -9199,11 +8814,10 @@ export declare interface SwirlThemeProvider extends Components.SwirlThemeProvide
9199
8814
  changeDetection: ChangeDetectionStrategy.OnPush,
9200
8815
  template: '<ng-content></ng-content>',
9201
8816
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9202
- inputs: [{ name: 'alt', required: true }, 'editButtonIcon', 'editButtonLabel', 'format', 'interactive', 'progress', 'progressLabel', 'removeButtonLabel', 'showEditButton', 'showRemoveButton', 'size', { name: 'src', required: true }, 'timestamp'],
9203
- standalone: false
8817
+ inputs: ['alt', 'editButtonIcon', 'editButtonLabel', 'format', 'interactive', 'progress', 'progressLabel', 'removeButtonLabel', 'showEditButton', 'showRemoveButton', 'size', 'src', 'timestamp'],
9204
8818
  })
9205
8819
  export class SwirlThumbnail {
9206
- protected el: HTMLSwirlThumbnailElement;
8820
+ protected el: HTMLElement;
9207
8821
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9208
8822
  c.detach();
9209
8823
  this.el = r.nativeElement;
@@ -9231,10 +8845,9 @@ export declare interface SwirlThumbnail extends Components.SwirlThumbnail {
9231
8845
  template: '<ng-content></ng-content>',
9232
8846
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9233
8847
  inputs: ['autoFocus', 'autoSelect', 'disabled', 'format', 'inline', 'invalid', 'placeholder', 'required', 'swirlAriaDescribedby', 'value'],
9234
- standalone: false
9235
8848
  })
9236
8849
  export class SwirlTimeInput {
9237
- protected el: HTMLSwirlTimeInputElement;
8850
+ protected el: HTMLElement;
9238
8851
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9239
8852
  c.detach();
9240
8853
  this.el = r.nativeElement;
@@ -9261,11 +8874,10 @@ export declare interface SwirlTimeInput extends Components.SwirlTimeInput {
9261
8874
  changeDetection: ChangeDetectionStrategy.OnPush,
9262
8875
  template: '<ng-content></ng-content>',
9263
8876
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9264
- inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', { name: 'toastId', required: true }],
9265
- standalone: false
8877
+ inputs: ['accessibleDismissLabel', 'content', 'dismissLabel', 'duration', 'icon', 'intent', 'toastId'],
9266
8878
  })
9267
8879
  export class SwirlToast {
9268
- protected el: HTMLSwirlToastElement;
8880
+ protected el: HTMLElement;
9269
8881
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9270
8882
  c.detach();
9271
8883
  this.el = r.nativeElement;
@@ -9290,10 +8902,9 @@ export declare interface SwirlToast extends Components.SwirlToast {
9290
8902
  template: '<ng-content></ng-content>',
9291
8903
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9292
8904
  inputs: ['globalDuration'],
9293
- standalone: false
9294
8905
  })
9295
8906
  export class SwirlToastProvider {
9296
- protected el: HTMLSwirlToastProviderElement;
8907
+ protected el: HTMLElement;
9297
8908
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9298
8909
  c.detach();
9299
8910
  this.el = r.nativeElement;
@@ -9312,11 +8923,10 @@ export declare interface SwirlToastProvider extends Components.SwirlToastProvide
9312
8923
  changeDetection: ChangeDetectionStrategy.OnPush,
9313
8924
  template: '<ng-content></ng-content>',
9314
8925
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9315
- inputs: ['icon', { name: 'identifier', required: true }, 'isPressed', { name: 'label', required: true }],
9316
- standalone: false
8926
+ inputs: ['icon', 'identifier', 'isPressed', 'label'],
9317
8927
  })
9318
8928
  export class SwirlToggleButton {
9319
- protected el: HTMLSwirlToggleButtonElement;
8929
+ protected el: HTMLElement;
9320
8930
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9321
8931
  c.detach();
9322
8932
  this.el = r.nativeElement;
@@ -9335,11 +8945,10 @@ export declare interface SwirlToggleButton extends Components.SwirlToggleButton
9335
8945
  changeDetection: ChangeDetectionStrategy.OnPush,
9336
8946
  template: '<ng-content></ng-content>',
9337
8947
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9338
- inputs: ['elevated', { name: 'selectedToggleId', required: true }, 'swirlAriaLabel', 'variant'],
9339
- standalone: false
8948
+ inputs: ['elevated', 'selectedToggleId', 'swirlAriaLabel', 'variant'],
9340
8949
  })
9341
8950
  export class SwirlToggleGroup {
9342
- protected el: HTMLSwirlToggleGroupElement;
8951
+ protected el: HTMLElement;
9343
8952
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9344
8953
  c.detach();
9345
8954
  this.el = r.nativeElement;
@@ -9363,10 +8972,9 @@ export declare interface SwirlToggleGroup extends Components.SwirlToggleGroup {
9363
8972
  template: '<ng-content></ng-content>',
9364
8973
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9365
8974
  inputs: ['label', 'orientation'],
9366
- standalone: false
9367
8975
  })
9368
8976
  export class SwirlToolbar {
9369
- protected el: HTMLSwirlToolbarElement;
8977
+ protected el: HTMLElement;
9370
8978
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9371
8979
  c.detach();
9372
8980
  this.el = r.nativeElement;
@@ -9385,11 +8993,10 @@ export declare interface SwirlToolbar extends Components.SwirlToolbar {}
9385
8993
  changeDetection: ChangeDetectionStrategy.OnPush,
9386
8994
  template: '<ng-content></ng-content>',
9387
8995
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9388
- inputs: ['active', { name: 'content', required: true }, 'delay', 'position', 'positioning'],
9389
- standalone: false
8996
+ inputs: ['active', 'content', 'delay', 'position', 'positioning'],
9390
8997
  })
9391
8998
  export class SwirlTooltip {
9392
- protected el: HTMLSwirlTooltipElement;
8999
+ protected el: HTMLElement;
9393
9000
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9394
9001
  c.detach();
9395
9002
  this.el = r.nativeElement;
@@ -9408,11 +9015,10 @@ export declare interface SwirlTooltip extends Components.SwirlTooltip {}
9408
9015
  changeDetection: ChangeDetectionStrategy.OnPush,
9409
9016
  template: '<ng-content></ng-content>',
9410
9017
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9411
- inputs: [{ name: 'label', required: true }],
9412
- standalone: false
9018
+ inputs: ['label'],
9413
9019
  })
9414
9020
  export class SwirlTreeNavigation {
9415
- protected el: HTMLSwirlTreeNavigationElement;
9021
+ protected el: HTMLElement;
9416
9022
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9417
9023
  c.detach();
9418
9024
  this.el = r.nativeElement;
@@ -9432,11 +9038,10 @@ export declare interface SwirlTreeNavigation extends Components.SwirlTreeNavigat
9432
9038
  changeDetection: ChangeDetectionStrategy.OnPush,
9433
9039
  template: '<ng-content></ng-content>',
9434
9040
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9435
- inputs: ['active', 'expandable', 'external', 'href', 'icon', { name: 'label', required: true }, 'level', { name: 'navigationItemId', required: true }, 'target'],
9436
- standalone: false
9041
+ inputs: ['active', 'expandable', 'external', 'href', 'icon', 'label', 'level', 'navigationItemId', 'target'],
9437
9042
  })
9438
9043
  export class SwirlTreeNavigationItem {
9439
- protected el: HTMLSwirlTreeNavigationItemElement;
9044
+ protected el: HTMLElement;
9440
9045
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9441
9046
  c.detach();
9442
9047
  this.el = r.nativeElement;
@@ -9460,11 +9065,10 @@ export declare interface SwirlTreeNavigationItem extends Components.SwirlTreeNav
9460
9065
  changeDetection: ChangeDetectionStrategy.OnPush,
9461
9066
  template: '<ng-content></ng-content>',
9462
9067
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9463
- inputs: ['canDrop', 'dragDropInstructions', 'dragDropItemSelector', 'enableDragDrop', 'initiallyExpandedItemIds', { name: 'label', required: true }, 'semantics'],
9464
- standalone: false
9068
+ inputs: ['canDrop', 'dragDropInstructions', 'dragDropItemSelector', 'enableDragDrop', 'initiallyExpandedItemIds', 'label', 'semantics'],
9465
9069
  })
9466
9070
  export class SwirlTreeView {
9467
- protected el: HTMLSwirlTreeViewElement;
9071
+ protected el: HTMLElement;
9468
9072
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9469
9073
  c.detach();
9470
9074
  this.el = r.nativeElement;
@@ -9492,11 +9096,10 @@ export declare interface SwirlTreeView extends Components.SwirlTreeView {
9492
9096
  changeDetection: ChangeDetectionStrategy.OnPush,
9493
9097
  template: '<ng-content></ng-content>',
9494
9098
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9495
- inputs: ['active', 'disableDrag', 'expandable', 'href', 'icon', 'iconColor', { name: 'itemId', required: true }, { name: 'label', required: true }],
9496
- standalone: false
9099
+ inputs: ['active', 'disableDrag', 'expandable', 'href', 'icon', 'iconColor', 'itemId', 'label'],
9497
9100
  })
9498
9101
  export class SwirlTreeViewItem {
9499
- protected el: HTMLSwirlTreeViewItemElement;
9102
+ protected el: HTMLElement;
9500
9103
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9501
9104
  c.detach();
9502
9105
  this.el = r.nativeElement;
@@ -9532,11 +9135,10 @@ export declare interface SwirlTreeViewItem extends Components.SwirlTreeViewItem
9532
9135
  changeDetection: ChangeDetectionStrategy.OnPush,
9533
9136
  template: '<ng-content></ng-content>',
9534
9137
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9535
- inputs: ['duration', 'durationLabel', { name: 'label', required: true }, { name: 'src', required: true }],
9536
- standalone: false
9138
+ inputs: ['duration', 'durationLabel', 'label', 'src'],
9537
9139
  })
9538
9140
  export class SwirlVideoThumbnail {
9539
- protected el: HTMLSwirlVideoThumbnailElement;
9141
+ protected el: HTMLElement;
9540
9142
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9541
9143
  c.detach();
9542
9144
  this.el = r.nativeElement;
@@ -9555,10 +9157,9 @@ export declare interface SwirlVideoThumbnail extends Components.SwirlVideoThumbn
9555
9157
  template: '<ng-content></ng-content>',
9556
9158
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
9557
9159
  inputs: [],
9558
- standalone: false
9559
9160
  })
9560
9161
  export class SwirlVisuallyHidden {
9561
- protected el: HTMLSwirlVisuallyHiddenElement;
9162
+ protected el: HTMLElement;
9562
9163
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
9563
9164
  c.detach();
9564
9165
  this.el = r.nativeElement;