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