@spw-ds/spw-angular-library 1.2.2 → 1.2.4

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.
@@ -458,7 +458,8 @@ let SpwCustomSelect = class SpwCustomSelect {
458
458
  };
459
459
  SpwCustomSelect = __decorate([
460
460
  ProxyCmp({
461
- inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning']
461
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'isSearch', 'items', 'label', 'multiple', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
462
+ methods: ['resetSelect']
462
463
  })
463
464
  ], SpwCustomSelect);
464
465
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwCustomSelect, decorators: [{
@@ -484,7 +485,7 @@ let SpwDatePicker = class SpwDatePicker {
484
485
  SpwDatePicker = __decorate([
485
486
  ProxyCmp({
486
487
  inputs: ['assistiveText', 'dateFormat', 'disabled', 'disabledDates', 'disabledDays', 'error', 'hint', 'isStart', 'label', 'maxDate', 'minDate', 'name', 'placeholder', 'position', 'range', 'rangeId', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'success', 'value', 'warning'],
487
- methods: ['open', 'close', 'setDate', 'getDate', 'getRange']
488
+ methods: ['open', 'close', 'setDate', 'getDate', 'getRange', 'updateConstraints', 'resetInput']
488
489
  })
489
490
  ], SpwDatePicker);
490
491
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDatePicker, decorators: [{
@@ -522,6 +523,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
522
523
  inputs: ['contentWidth', 'direction', 'hasPadding', 'open'],
523
524
  }]
524
525
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
526
+ let SpwDropdownContainer = class SpwDropdownContainer {
527
+ constructor(c, r, z) {
528
+ this.z = z;
529
+ c.detach();
530
+ this.el = r.nativeElement;
531
+ }
532
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDropdownContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
533
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwDropdownContainer, isStandalone: true, selector: "spw-dropdown-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
534
+ };
535
+ SpwDropdownContainer = __decorate([
536
+ ProxyCmp({})
537
+ ], SpwDropdownContainer);
538
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDropdownContainer, decorators: [{
539
+ type: Component,
540
+ args: [{
541
+ selector: 'spw-dropdown-container',
542
+ changeDetection: ChangeDetectionStrategy.OnPush,
543
+ template: '<ng-content></ng-content>',
544
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
545
+ inputs: [],
546
+ }]
547
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
548
+ let SpwDropdownItem = class SpwDropdownItem {
549
+ constructor(c, r, z) {
550
+ this.z = z;
551
+ c.detach();
552
+ this.el = r.nativeElement;
553
+ }
554
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
555
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwDropdownItem, isStandalone: true, selector: "spw-dropdown-item", inputs: { disabled: "disabled", href: "href", icon: "icon", iconVariant: "iconVariant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
556
+ };
557
+ SpwDropdownItem = __decorate([
558
+ ProxyCmp({
559
+ inputs: ['disabled', 'href', 'icon', 'iconVariant']
560
+ })
561
+ ], SpwDropdownItem);
562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDropdownItem, decorators: [{
563
+ type: Component,
564
+ args: [{
565
+ selector: 'spw-dropdown-item',
566
+ changeDetection: ChangeDetectionStrategy.OnPush,
567
+ template: '<ng-content></ng-content>',
568
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
569
+ inputs: ['disabled', 'href', 'icon', 'iconVariant'],
570
+ }]
571
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
525
572
  let SpwFieldLabel = class SpwFieldLabel {
526
573
  constructor(c, r, z) {
527
574
  this.z = z;
@@ -745,11 +792,11 @@ let SpwHeader = class SpwHeader {
745
792
  this.el = r.nativeElement;
746
793
  }
747
794
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
748
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwHeader, isStandalone: true, selector: "spw-header", inputs: { borderColor: "borderColor", hasMaWallonie: "hasMaWallonie", hasSearch: "hasSearch", hasWallonieLogo: "hasWallonieLogo", siteTitle: "siteTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
795
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwHeader, isStandalone: true, selector: "spw-header", inputs: { borderColor: "borderColor", hasMaWallonie: "hasMaWallonie", hasSearch: "hasSearch", hasWallonieBe: "hasWallonieBe", hasWallonieLogo: "hasWallonieLogo", maWallonieLabel: "maWallonieLabel", maWallonieLink: "maWallonieLink", menuCloseLabel: "menuCloseLabel", menuOpenLabel: "menuOpenLabel", searchCloseLabel: "searchCloseLabel", searchOpenLabel: "searchOpenLabel", siteTitle: "siteTitle", wallonieBeLabel: "wallonieBeLabel", wallonieBeLink: "wallonieBeLink" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
749
796
  };
750
797
  SpwHeader = __decorate([
751
798
  ProxyCmp({
752
- inputs: ['borderColor', 'hasMaWallonie', 'hasSearch', 'hasWallonieLogo', 'siteTitle']
799
+ inputs: ['borderColor', 'hasMaWallonie', 'hasSearch', 'hasWallonieBe', 'hasWallonieLogo', 'maWallonieLabel', 'maWallonieLink', 'menuCloseLabel', 'menuOpenLabel', 'searchCloseLabel', 'searchOpenLabel', 'siteTitle', 'wallonieBeLabel', 'wallonieBeLink']
753
800
  })
754
801
  ], SpwHeader);
755
802
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwHeader, decorators: [{
@@ -759,7 +806,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
759
806
  changeDetection: ChangeDetectionStrategy.OnPush,
760
807
  template: '<ng-content></ng-content>',
761
808
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
762
- inputs: ['borderColor', 'hasMaWallonie', 'hasSearch', 'hasWallonieLogo', 'siteTitle'],
809
+ inputs: ['borderColor', 'hasMaWallonie', 'hasSearch', 'hasWallonieBe', 'hasWallonieLogo', 'maWallonieLabel', 'maWallonieLink', 'menuCloseLabel', 'menuOpenLabel', 'searchCloseLabel', 'searchOpenLabel', 'siteTitle', 'wallonieBeLabel', 'wallonieBeLink'],
763
810
  }]
764
811
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
765
812
  let SpwHeaderLang = class SpwHeaderLang {
@@ -884,10 +931,12 @@ let SpwHeaderPersona = class SpwHeaderPersona {
884
931
  this.el = r.nativeElement;
885
932
  }
886
933
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwHeaderPersona, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
887
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwHeaderPersona, isStandalone: true, selector: "spw-header-persona", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
934
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwHeaderPersona, isStandalone: true, selector: "spw-header-persona", inputs: { personaLabel: "personaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
888
935
  };
889
936
  SpwHeaderPersona = __decorate([
890
- ProxyCmp({})
937
+ ProxyCmp({
938
+ inputs: ['personaLabel']
939
+ })
891
940
  ], SpwHeaderPersona);
892
941
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwHeaderPersona, decorators: [{
893
942
  type: Component,
@@ -896,7 +945,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
896
945
  changeDetection: ChangeDetectionStrategy.OnPush,
897
946
  template: '<ng-content></ng-content>',
898
947
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
899
- inputs: [],
948
+ inputs: ['personaLabel'],
900
949
  }]
901
950
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
902
951
  let SpwHeaderPersonaItem = class SpwHeaderPersonaItem {
@@ -930,11 +979,11 @@ let SpwHero = class SpwHero {
930
979
  this.el = r.nativeElement;
931
980
  }
932
981
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwHero, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
933
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwHero, isStandalone: true, selector: "spw-hero", inputs: { alignment: "alignment", hasPictureFull: "hasPictureFull", imageAlt: "imageAlt", imageSrc: "imageSrc", overlayOpacity: "overlayOpacity", surface: "surface", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
982
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwHero, isStandalone: true, selector: "spw-hero", inputs: { alignment: "alignment", hasPictureFull: "hasPictureFull", hasVideo: "hasVideo", imageAlt: "imageAlt", imageSrc: "imageSrc", modalVideoId: "modalVideoId", overlayOpacity: "overlayOpacity", surface: "surface", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
934
983
  };
935
984
  SpwHero = __decorate([
936
985
  ProxyCmp({
937
- inputs: ['alignment', 'hasPictureFull', 'imageAlt', 'imageSrc', 'overlayOpacity', 'surface', 'variant']
986
+ inputs: ['alignment', 'hasPictureFull', 'hasVideo', 'imageAlt', 'imageSrc', 'modalVideoId', 'overlayOpacity', 'surface', 'variant']
938
987
  })
939
988
  ], SpwHero);
940
989
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwHero, decorators: [{
@@ -944,7 +993,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
944
993
  changeDetection: ChangeDetectionStrategy.OnPush,
945
994
  template: '<ng-content></ng-content>',
946
995
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
947
- inputs: ['alignment', 'hasPictureFull', 'imageAlt', 'imageSrc', 'overlayOpacity', 'surface', 'variant'],
996
+ inputs: ['alignment', 'hasPictureFull', 'hasVideo', 'imageAlt', 'imageSrc', 'modalVideoId', 'overlayOpacity', 'surface', 'variant'],
948
997
  }]
949
998
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
950
999
  let SpwIcon = class SpwIcon {
@@ -1049,11 +1098,11 @@ let SpwList = class SpwList {
1049
1098
  this.el = r.nativeElement;
1050
1099
  }
1051
1100
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1052
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwList, isStandalone: true, selector: "spw-list", inputs: { gap: "gap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1101
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwList, isStandalone: true, selector: "spw-list", inputs: { gap: "gap", surface: "surface" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1053
1102
  };
1054
1103
  SpwList = __decorate([
1055
1104
  ProxyCmp({
1056
- inputs: ['gap']
1105
+ inputs: ['gap', 'surface']
1057
1106
  })
1058
1107
  ], SpwList);
1059
1108
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwList, decorators: [{
@@ -1063,7 +1112,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1063
1112
  changeDetection: ChangeDetectionStrategy.OnPush,
1064
1113
  template: '<ng-content></ng-content>',
1065
1114
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1066
- inputs: ['gap'],
1115
+ inputs: ['gap', 'surface'],
1067
1116
  }]
1068
1117
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1069
1118
  let SpwListDescription = class SpwListDescription {
@@ -1097,11 +1146,11 @@ let SpwListItem = class SpwListItem {
1097
1146
  this.el = r.nativeElement;
1098
1147
  }
1099
1148
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1100
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwListItem, isStandalone: true, selector: "spw-list-item", inputs: { category: "category", categoryIcon: "categoryIcon", categoryLink: "categoryLink", href: "href", icon: "icon", lineClamp: "lineClamp", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1149
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwListItem, isStandalone: true, selector: "spw-list-item", inputs: { category: "category", categoryIcon: "categoryIcon", categoryLink: "categoryLink", href: "href", icon: "icon", lineClamp: "lineClamp", surface: "surface", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1101
1150
  };
1102
1151
  SpwListItem = __decorate([
1103
1152
  ProxyCmp({
1104
- inputs: ['category', 'categoryIcon', 'categoryLink', 'href', 'icon', 'lineClamp', 'target', 'variant']
1153
+ inputs: ['category', 'categoryIcon', 'categoryLink', 'href', 'icon', 'lineClamp', 'surface', 'target', 'variant']
1105
1154
  })
1106
1155
  ], SpwListItem);
1107
1156
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwListItem, decorators: [{
@@ -1111,7 +1160,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1111
1160
  changeDetection: ChangeDetectionStrategy.OnPush,
1112
1161
  template: '<ng-content></ng-content>',
1113
1162
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1114
- inputs: ['category', 'categoryIcon', 'categoryLink', 'href', 'icon', 'lineClamp', 'target', 'variant'],
1163
+ inputs: ['category', 'categoryIcon', 'categoryLink', 'href', 'icon', 'lineClamp', 'surface', 'target', 'variant'],
1115
1164
  }]
1116
1165
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1117
1166
  let SpwListTitle = class SpwListTitle {
@@ -1346,7 +1395,8 @@ let SpwSelect = class SpwSelect {
1346
1395
  };
1347
1396
  SpwSelect = __decorate([
1348
1397
  ProxyCmp({
1349
- inputs: ['assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning']
1398
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
1399
+ methods: ['resetSelect']
1350
1400
  })
1351
1401
  ], SpwSelect);
1352
1402
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSelect, decorators: [{
@@ -1438,11 +1488,11 @@ let SpwSidebarNavigationItem = class SpwSidebarNavigationItem {
1438
1488
  this.el = r.nativeElement;
1439
1489
  }
1440
1490
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSidebarNavigationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1441
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwSidebarNavigationItem, isStandalone: true, selector: "spw-sidebar-navigation-item", inputs: { active: "active", bubble: "bubble", disabled: "disabled", href: "href", icon: "icon", iconVariant: "iconVariant", tooltipTitle: "tooltipTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1491
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwSidebarNavigationItem, isStandalone: true, selector: "spw-sidebar-navigation-item", inputs: { active: "active", bubble: "bubble", disabled: "disabled", href: "href", icon: "icon", iconVariant: "iconVariant", openOnClick: "openOnClick", tooltipTitle: "tooltipTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1442
1492
  };
1443
1493
  SpwSidebarNavigationItem = __decorate([
1444
1494
  ProxyCmp({
1445
- inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'tooltipTitle']
1495
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle']
1446
1496
  })
1447
1497
  ], SpwSidebarNavigationItem);
1448
1498
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSidebarNavigationItem, decorators: [{
@@ -1452,7 +1502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1452
1502
  changeDetection: ChangeDetectionStrategy.OnPush,
1453
1503
  template: '<ng-content></ng-content>',
1454
1504
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1455
- inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'tooltipTitle'],
1505
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle'],
1456
1506
  }]
1457
1507
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1458
1508
  let SpwSidebarNavigationSeparator = class SpwSidebarNavigationSeparator {
@@ -1533,11 +1583,11 @@ let SpwTable = class SpwTable {
1533
1583
  proxyOutputs(this, this.el, ['spwSort']);
1534
1584
  }
1535
1585
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1536
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTable, isStandalone: true, selector: "spw-table", inputs: { accAriaLabel: "accAriaLabel", isSticky: "isSticky", isZebra: "isZebra", maxHeight: "maxHeight", minWidth: "minWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1586
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTable, isStandalone: true, selector: "spw-table", inputs: { accAriaLabel: "accAriaLabel", currentSort: "currentSort", disableSort: "disableSort", isSticky: "isSticky", isZebra: "isZebra", maxHeight: "maxHeight", minWidth: "minWidth", tableLayout: "tableLayout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1537
1587
  };
1538
1588
  SpwTable = __decorate([
1539
1589
  ProxyCmp({
1540
- inputs: ['accAriaLabel', 'isSticky', 'isZebra', 'maxHeight', 'minWidth']
1590
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minWidth', 'tableLayout']
1541
1591
  })
1542
1592
  ], SpwTable);
1543
1593
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTable, decorators: [{
@@ -1547,7 +1597,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1547
1597
  changeDetection: ChangeDetectionStrategy.OnPush,
1548
1598
  template: '<ng-content></ng-content>',
1549
1599
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1550
- inputs: ['accAriaLabel', 'isSticky', 'isZebra', 'maxHeight', 'minWidth'],
1600
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minWidth', 'tableLayout'],
1551
1601
  }]
1552
1602
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1553
1603
  let SpwTableBody = class SpwTableBody {
@@ -1582,11 +1632,11 @@ let SpwTableCell = class SpwTableCell {
1582
1632
  this.el = r.nativeElement;
1583
1633
  }
1584
1634
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1585
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTableCell, isStandalone: true, selector: "spw-table-cell", inputs: { colspan: "colspan", headers: "headers", isHighlighted: "isHighlighted", padding: "padding", rowspan: "rowspan", textAlign: "textAlign", verticalAlign: "verticalAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1635
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTableCell, isStandalone: true, selector: "spw-table-cell", inputs: { colspan: "colspan", headers: "headers", isHighlighted: "isHighlighted", padding: "padding", rowspan: "rowspan", state: "state", textAlign: "textAlign", verticalAlign: "verticalAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1586
1636
  };
1587
1637
  SpwTableCell = __decorate([
1588
1638
  ProxyCmp({
1589
- inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'textAlign', 'verticalAlign', 'width']
1639
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'textAlign', 'verticalAlign', 'width']
1590
1640
  })
1591
1641
  ], SpwTableCell);
1592
1642
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableCell, decorators: [{
@@ -1596,7 +1646,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1596
1646
  changeDetection: ChangeDetectionStrategy.OnPush,
1597
1647
  template: '<ng-content></ng-content>',
1598
1648
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1599
- inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'textAlign', 'verticalAlign', 'width'],
1649
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'textAlign', 'verticalAlign', 'width'],
1600
1650
  }]
1601
1651
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1602
1652
  let SpwTableFooter = class SpwTableFooter {
@@ -2002,6 +2052,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
2002
2052
  inputs: [],
2003
2053
  }]
2004
2054
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2055
+ let SpwWizard = class SpwWizard {
2056
+ constructor(c, r, z) {
2057
+ this.z = z;
2058
+ c.detach();
2059
+ this.el = r.nativeElement;
2060
+ proxyOutputs(this, this.el, ['stepClick']);
2061
+ }
2062
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwWizard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2063
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwWizard, isStandalone: true, selector: "spw-wizard", inputs: { currentStep: "currentStep", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2064
+ };
2065
+ SpwWizard = __decorate([
2066
+ ProxyCmp({
2067
+ inputs: ['currentStep', 'variant'],
2068
+ methods: ['setStep']
2069
+ })
2070
+ ], SpwWizard);
2071
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwWizard, decorators: [{
2072
+ type: Component,
2073
+ args: [{
2074
+ selector: 'spw-wizard',
2075
+ changeDetection: ChangeDetectionStrategy.OnPush,
2076
+ template: '<ng-content></ng-content>',
2077
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2078
+ inputs: ['currentStep', 'variant'],
2079
+ }]
2080
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2081
+ let SpwWizardItem = class SpwWizardItem {
2082
+ constructor(c, r, z) {
2083
+ this.z = z;
2084
+ c.detach();
2085
+ this.el = r.nativeElement;
2086
+ proxyOutputs(this, this.el, ['wizardItemClick']);
2087
+ }
2088
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwWizardItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2089
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwWizardItem, isStandalone: true, selector: "spw-wizard-item", inputs: { additionalInfo: "additionalInfo", description: "description", icon: "icon", isAfterCurrent: "isAfterCurrent", isBeforeCurrent: "isBeforeCurrent", isClickable: "isClickable", isCurrent: "isCurrent", isLast: "isLast", label: "label", state: "state", status: "status", stepNumber: "stepNumber", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2090
+ };
2091
+ SpwWizardItem = __decorate([
2092
+ ProxyCmp({
2093
+ inputs: ['additionalInfo', 'description', 'icon', 'isAfterCurrent', 'isBeforeCurrent', 'isClickable', 'isCurrent', 'isLast', 'label', 'state', 'status', 'stepNumber', 'variant']
2094
+ })
2095
+ ], SpwWizardItem);
2096
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwWizardItem, decorators: [{
2097
+ type: Component,
2098
+ args: [{
2099
+ selector: 'spw-wizard-item',
2100
+ changeDetection: ChangeDetectionStrategy.OnPush,
2101
+ template: '<ng-content></ng-content>',
2102
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2103
+ inputs: ['additionalInfo', 'description', 'icon', 'isAfterCurrent', 'isBeforeCurrent', 'isClickable', 'isCurrent', 'isLast', 'label', 'state', 'status', 'stepNumber', 'variant'],
2104
+ }]
2105
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2005
2106
 
2006
2107
  const DIRECTIVES = [
2007
2108
  SpwAccordion,
@@ -2023,6 +2124,8 @@ const DIRECTIVES = [
2023
2124
  SpwCustomSelect,
2024
2125
  SpwDatePicker,
2025
2126
  SpwDropdown,
2127
+ SpwDropdownContainer,
2128
+ SpwDropdownItem,
2026
2129
  SpwFieldLabel,
2027
2130
  SpwFieldMessage,
2028
2131
  SpwFileUpload,
@@ -2084,12 +2187,14 @@ const DIRECTIVES = [
2084
2187
  SpwTileDescription,
2085
2188
  SpwTileTitle,
2086
2189
  SpwTooltip,
2087
- SpwTopbar
2190
+ SpwTopbar,
2191
+ SpwWizard,
2192
+ SpwWizardItem
2088
2193
  ];
2089
2194
 
2090
2195
  class SpwDesignSystemDirectivesModule {
2091
2196
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2092
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule, imports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwIodda, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTooltip, SpwTopbar], exports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwIodda, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTooltip, SpwTopbar] }); }
2197
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule, imports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwIodda, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem], exports: [SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwIodda, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem] }); }
2093
2198
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule }); }
2094
2199
  }
2095
2200
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule, decorators: [{
@@ -2130,5 +2235,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
2130
2235
  * Generated bundle index. Do not edit.
2131
2236
  */
2132
2237
 
2133
- export { SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDesignSystemDirectivesModule, SpwDesignSystemModule, SpwDropdown, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwIodda, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTooltip, SpwTopbar };
2238
+ export { SpwAccordion, SpwAccordionContent, SpwAccordionItem, SpwAccordionTitle, SpwBreadcrumb, SpwBreadcrumbItem, SpwButton, SpwCard, SpwCardContent, SpwCardExcerpt, SpwCardImage, SpwCardSubtagItem, SpwCardSubtags, SpwCardTitle, SpwCheckbox, SpwCookies, SpwCustomSelect, SpwDatePicker, SpwDesignSystemDirectivesModule, SpwDesignSystemModule, SpwDropdown, SpwDropdownContainer, SpwDropdownItem, SpwFieldLabel, SpwFieldMessage, SpwFileUpload, SpwFooter, SpwFooterBottom, SpwFooterContent, SpwFooterContentCol, SpwFooterLink, SpwGroup, SpwHeader, SpwHeaderLang, SpwHeaderLangItem, SpwHeaderNavigation, SpwHeaderNavigationDropdown, SpwHeaderNavigationItem, SpwHeaderPersona, SpwHeaderPersonaItem, SpwHero, SpwIcon, SpwIllustration, SpwIodda, SpwLink, SpwList, SpwListDescription, SpwListItem, SpwListTitle, SpwLoading, SpwMessage, SpwModal, SpwMosaic, SpwMosaicItem, SpwPagination, SpwRadio, SpwSearchField, SpwSelect, SpwSeparator, SpwSidebar, SpwSidebarNavigationDropdown, SpwSidebarNavigationItem, SpwSidebarNavigationSeparator, SpwSkeleton, SpwSocials, SpwTable, SpwTableBody, SpwTableCell, SpwTableFooter, SpwTableHead, SpwTableHeader, SpwTableRow, SpwTabs, SpwTabsContent, SpwTabsNavigation, SpwTabsNavigationItem, SpwTag, SpwTextField, SpwTextarea, SpwThemeProvider, SpwTile, SpwTileDescription, SpwTileTitle, SpwTooltip, SpwTopbar, SpwWizard, SpwWizardItem };
2134
2239
  //# sourceMappingURL=spw-ds-spw-angular-library.mjs.map