@spw-ds/spw-angular-library 1.2.3 → 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;
@@ -1348,7 +1395,8 @@ let SpwSelect = class SpwSelect {
1348
1395
  };
1349
1396
  SpwSelect = __decorate([
1350
1397
  ProxyCmp({
1351
- 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']
1352
1400
  })
1353
1401
  ], SpwSelect);
1354
1402
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSelect, decorators: [{
@@ -1440,11 +1488,11 @@ let SpwSidebarNavigationItem = class SpwSidebarNavigationItem {
1440
1488
  this.el = r.nativeElement;
1441
1489
  }
1442
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 }); }
1443
- 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 }); }
1444
1492
  };
1445
1493
  SpwSidebarNavigationItem = __decorate([
1446
1494
  ProxyCmp({
1447
- inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'tooltipTitle']
1495
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle']
1448
1496
  })
1449
1497
  ], SpwSidebarNavigationItem);
1450
1498
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSidebarNavigationItem, decorators: [{
@@ -1454,7 +1502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1454
1502
  changeDetection: ChangeDetectionStrategy.OnPush,
1455
1503
  template: '<ng-content></ng-content>',
1456
1504
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1457
- inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'tooltipTitle'],
1505
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle'],
1458
1506
  }]
1459
1507
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1460
1508
  let SpwSidebarNavigationSeparator = class SpwSidebarNavigationSeparator {
@@ -1535,11 +1583,11 @@ let SpwTable = class SpwTable {
1535
1583
  proxyOutputs(this, this.el, ['spwSort']);
1536
1584
  }
1537
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 }); }
1538
- 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 }); }
1539
1587
  };
1540
1588
  SpwTable = __decorate([
1541
1589
  ProxyCmp({
1542
- inputs: ['accAriaLabel', 'isSticky', 'isZebra', 'maxHeight', 'minWidth']
1590
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minWidth', 'tableLayout']
1543
1591
  })
1544
1592
  ], SpwTable);
1545
1593
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTable, decorators: [{
@@ -1549,7 +1597,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1549
1597
  changeDetection: ChangeDetectionStrategy.OnPush,
1550
1598
  template: '<ng-content></ng-content>',
1551
1599
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1552
- inputs: ['accAriaLabel', 'isSticky', 'isZebra', 'maxHeight', 'minWidth'],
1600
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minWidth', 'tableLayout'],
1553
1601
  }]
1554
1602
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1555
1603
  let SpwTableBody = class SpwTableBody {
@@ -1584,11 +1632,11 @@ let SpwTableCell = class SpwTableCell {
1584
1632
  this.el = r.nativeElement;
1585
1633
  }
1586
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 }); }
1587
- 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 }); }
1588
1636
  };
1589
1637
  SpwTableCell = __decorate([
1590
1638
  ProxyCmp({
1591
- inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'textAlign', 'verticalAlign', 'width']
1639
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'textAlign', 'verticalAlign', 'width']
1592
1640
  })
1593
1641
  ], SpwTableCell);
1594
1642
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableCell, decorators: [{
@@ -1598,7 +1646,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1598
1646
  changeDetection: ChangeDetectionStrategy.OnPush,
1599
1647
  template: '<ng-content></ng-content>',
1600
1648
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1601
- inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'textAlign', 'verticalAlign', 'width'],
1649
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'textAlign', 'verticalAlign', 'width'],
1602
1650
  }]
1603
1651
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1604
1652
  let SpwTableFooter = class SpwTableFooter {
@@ -2004,6 +2052,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
2004
2052
  inputs: [],
2005
2053
  }]
2006
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 }] });
2007
2106
 
2008
2107
  const DIRECTIVES = [
2009
2108
  SpwAccordion,
@@ -2025,6 +2124,8 @@ const DIRECTIVES = [
2025
2124
  SpwCustomSelect,
2026
2125
  SpwDatePicker,
2027
2126
  SpwDropdown,
2127
+ SpwDropdownContainer,
2128
+ SpwDropdownItem,
2028
2129
  SpwFieldLabel,
2029
2130
  SpwFieldMessage,
2030
2131
  SpwFileUpload,
@@ -2086,12 +2187,14 @@ const DIRECTIVES = [
2086
2187
  SpwTileDescription,
2087
2188
  SpwTileTitle,
2088
2189
  SpwTooltip,
2089
- SpwTopbar
2190
+ SpwTopbar,
2191
+ SpwWizard,
2192
+ SpwWizardItem
2090
2193
  ];
2091
2194
 
2092
2195
  class SpwDesignSystemDirectivesModule {
2093
2196
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2094
- 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] }); }
2095
2198
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule }); }
2096
2199
  }
2097
2200
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule, decorators: [{
@@ -2132,5 +2235,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
2132
2235
  * Generated bundle index. Do not edit.
2133
2236
  */
2134
2237
 
2135
- 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 };
2136
2239
  //# sourceMappingURL=spw-ds-spw-angular-library.mjs.map