@spw-ds/spw-angular-library 1.2.3 → 1.2.5

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;
@@ -1273,7 +1320,8 @@ let SpwPagination = class SpwPagination {
1273
1320
  };
1274
1321
  SpwPagination = __decorate([
1275
1322
  ProxyCmp({
1276
- inputs: ['currentPage', 'isDisabled', 'itemsPerPage', 'totalItems', 'variant']
1323
+ inputs: ['currentPage', 'isDisabled', 'itemsPerPage', 'totalItems', 'variant'],
1324
+ methods: ['setPage']
1277
1325
  })
1278
1326
  ], SpwPagination);
1279
1327
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwPagination, decorators: [{
@@ -1317,13 +1365,15 @@ let SpwSearchField = class SpwSearchField {
1317
1365
  this.z = z;
1318
1366
  c.detach();
1319
1367
  this.el = r.nativeElement;
1368
+ proxyOutputs(this, this.el, ['valueChanged']);
1320
1369
  }
1321
1370
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1322
1371
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwSearchField, isStandalone: true, selector: "spw-search-field", inputs: { assistiveText: "assistiveText", disabled: "disabled", items: "items", label: "label", name: "name", placeholder: "placeholder", required: "required", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1323
1372
  };
1324
1373
  SpwSearchField = __decorate([
1325
1374
  ProxyCmp({
1326
- inputs: ['assistiveText', 'disabled', 'items', 'label', 'name', 'placeholder', 'required', 'size']
1375
+ inputs: ['assistiveText', 'disabled', 'items', 'label', 'name', 'placeholder', 'required', 'size'],
1376
+ methods: ['resetInput']
1327
1377
  })
1328
1378
  ], SpwSearchField);
1329
1379
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSearchField, decorators: [{
@@ -1348,7 +1398,8 @@ let SpwSelect = class SpwSelect {
1348
1398
  };
1349
1399
  SpwSelect = __decorate([
1350
1400
  ProxyCmp({
1351
- inputs: ['assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning']
1401
+ inputs: ['assistiveText', 'disabled', 'error', 'hint', 'itemLabel', 'itemValue', 'items', 'label', 'name', 'placeholder', 'required', 'showErrorIcon', 'showHintIcon', 'showSuccessIcon', 'showWarningIcon', 'size', 'success', 'value', 'warning'],
1402
+ methods: ['resetSelect']
1352
1403
  })
1353
1404
  ], SpwSelect);
1354
1405
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSelect, decorators: [{
@@ -1440,11 +1491,11 @@ let SpwSidebarNavigationItem = class SpwSidebarNavigationItem {
1440
1491
  this.el = r.nativeElement;
1441
1492
  }
1442
1493
  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 }); }
1494
+ 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
1495
  };
1445
1496
  SpwSidebarNavigationItem = __decorate([
1446
1497
  ProxyCmp({
1447
- inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'tooltipTitle']
1498
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle']
1448
1499
  })
1449
1500
  ], SpwSidebarNavigationItem);
1450
1501
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwSidebarNavigationItem, decorators: [{
@@ -1454,7 +1505,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1454
1505
  changeDetection: ChangeDetectionStrategy.OnPush,
1455
1506
  template: '<ng-content></ng-content>',
1456
1507
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1457
- inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'tooltipTitle'],
1508
+ inputs: ['active', 'bubble', 'disabled', 'href', 'icon', 'iconVariant', 'openOnClick', 'tooltipTitle'],
1458
1509
  }]
1459
1510
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1460
1511
  let SpwSidebarNavigationSeparator = class SpwSidebarNavigationSeparator {
@@ -1535,11 +1586,11 @@ let SpwTable = class SpwTable {
1535
1586
  proxyOutputs(this, this.el, ['spwSort']);
1536
1587
  }
1537
1588
  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 }); }
1589
+ 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
1590
  };
1540
1591
  SpwTable = __decorate([
1541
1592
  ProxyCmp({
1542
- inputs: ['accAriaLabel', 'isSticky', 'isZebra', 'maxHeight', 'minWidth']
1593
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minWidth', 'tableLayout']
1543
1594
  })
1544
1595
  ], SpwTable);
1545
1596
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTable, decorators: [{
@@ -1549,7 +1600,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1549
1600
  changeDetection: ChangeDetectionStrategy.OnPush,
1550
1601
  template: '<ng-content></ng-content>',
1551
1602
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1552
- inputs: ['accAriaLabel', 'isSticky', 'isZebra', 'maxHeight', 'minWidth'],
1603
+ inputs: ['accAriaLabel', 'currentSort', 'disableSort', 'isSticky', 'isZebra', 'maxHeight', 'minWidth', 'tableLayout'],
1553
1604
  }]
1554
1605
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1555
1606
  let SpwTableBody = class SpwTableBody {
@@ -1584,11 +1635,11 @@ let SpwTableCell = class SpwTableCell {
1584
1635
  this.el = r.nativeElement;
1585
1636
  }
1586
1637
  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 }); }
1638
+ 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", sticky: "sticky", stickyOffset: "stickyOffset", stickyPosition: "stickyPosition", textAlign: "textAlign", verticalAlign: "verticalAlign", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1588
1639
  };
1589
1640
  SpwTableCell = __decorate([
1590
1641
  ProxyCmp({
1591
- inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'textAlign', 'verticalAlign', 'width']
1642
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'verticalAlign', 'width']
1592
1643
  })
1593
1644
  ], SpwTableCell);
1594
1645
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableCell, decorators: [{
@@ -1598,7 +1649,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1598
1649
  changeDetection: ChangeDetectionStrategy.OnPush,
1599
1650
  template: '<ng-content></ng-content>',
1600
1651
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1601
- inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'textAlign', 'verticalAlign', 'width'],
1652
+ inputs: ['colspan', 'headers', 'isHighlighted', 'padding', 'rowspan', 'state', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'verticalAlign', 'width'],
1602
1653
  }]
1603
1654
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1604
1655
  let SpwTableFooter = class SpwTableFooter {
@@ -1653,11 +1704,11 @@ let SpwTableHeader = class SpwTableHeader {
1653
1704
  proxyOutputs(this, this.el, ['spwHeaderClick']);
1654
1705
  }
1655
1706
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1656
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTableHeader, isStandalone: true, selector: "spw-table-header", inputs: { colspan: "colspan", columnId: "columnId", headers: "headers", isHighlighted: "isHighlighted", isSorted: "isSorted", padding: "padding", rowspan: "rowspan", sortDirection: "sortDirection", sortable: "sortable", textAlign: "textAlign", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", verticalAlign: "verticalAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1707
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTableHeader, isStandalone: true, selector: "spw-table-header", inputs: { colspan: "colspan", columnId: "columnId", headers: "headers", isHighlighted: "isHighlighted", isSorted: "isSorted", padding: "padding", rowspan: "rowspan", sortDirection: "sortDirection", sortable: "sortable", sticky: "sticky", stickyOffset: "stickyOffset", stickyPosition: "stickyPosition", textAlign: "textAlign", tooltipText: "tooltipText", tooltipTitle: "tooltipTitle", verticalAlign: "verticalAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1657
1708
  };
1658
1709
  SpwTableHeader = __decorate([
1659
1710
  ProxyCmp({
1660
- inputs: ['colspan', 'columnId', 'headers', 'isHighlighted', 'isSorted', 'padding', 'rowspan', 'sortDirection', 'sortable', 'textAlign', 'tooltipText', 'tooltipTitle', 'verticalAlign']
1711
+ inputs: ['colspan', 'columnId', 'headers', 'isHighlighted', 'isSorted', 'padding', 'rowspan', 'sortDirection', 'sortable', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'tooltipText', 'tooltipTitle', 'verticalAlign']
1661
1712
  })
1662
1713
  ], SpwTableHeader);
1663
1714
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableHeader, decorators: [{
@@ -1667,7 +1718,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1667
1718
  changeDetection: ChangeDetectionStrategy.OnPush,
1668
1719
  template: '<ng-content></ng-content>',
1669
1720
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1670
- inputs: ['colspan', 'columnId', 'headers', 'isHighlighted', 'isSorted', 'padding', 'rowspan', 'sortDirection', 'sortable', 'textAlign', 'tooltipText', 'tooltipTitle', 'verticalAlign'],
1721
+ inputs: ['colspan', 'columnId', 'headers', 'isHighlighted', 'isSorted', 'padding', 'rowspan', 'sortDirection', 'sortable', 'sticky', 'stickyOffset', 'stickyPosition', 'textAlign', 'tooltipText', 'tooltipTitle', 'verticalAlign'],
1671
1722
  }]
1672
1723
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1673
1724
  let SpwTableRow = class SpwTableRow {
@@ -1677,11 +1728,11 @@ let SpwTableRow = class SpwTableRow {
1677
1728
  this.el = r.nativeElement;
1678
1729
  }
1679
1730
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1680
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTableRow, isStandalone: true, selector: "spw-table-row", inputs: { state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1731
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.11", type: SpwTableRow, isStandalone: true, selector: "spw-table-row", inputs: { padding: "padding", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1681
1732
  };
1682
1733
  SpwTableRow = __decorate([
1683
1734
  ProxyCmp({
1684
- inputs: ['state']
1735
+ inputs: ['padding', 'state']
1685
1736
  })
1686
1737
  ], SpwTableRow);
1687
1738
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwTableRow, decorators: [{
@@ -1691,7 +1742,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
1691
1742
  changeDetection: ChangeDetectionStrategy.OnPush,
1692
1743
  template: '<ng-content></ng-content>',
1693
1744
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1694
- inputs: ['state'],
1745
+ inputs: ['padding', 'state'],
1695
1746
  }]
1696
1747
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1697
1748
  let SpwTabs = class SpwTabs {
@@ -2004,6 +2055,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
2004
2055
  inputs: [],
2005
2056
  }]
2006
2057
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2058
+ let SpwWizard = class SpwWizard {
2059
+ constructor(c, r, z) {
2060
+ this.z = z;
2061
+ c.detach();
2062
+ this.el = r.nativeElement;
2063
+ proxyOutputs(this, this.el, ['stepClick']);
2064
+ }
2065
+ 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 }); }
2066
+ 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 }); }
2067
+ };
2068
+ SpwWizard = __decorate([
2069
+ ProxyCmp({
2070
+ inputs: ['currentStep', 'variant'],
2071
+ methods: ['setStep']
2072
+ })
2073
+ ], SpwWizard);
2074
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwWizard, decorators: [{
2075
+ type: Component,
2076
+ args: [{
2077
+ selector: 'spw-wizard',
2078
+ changeDetection: ChangeDetectionStrategy.OnPush,
2079
+ template: '<ng-content></ng-content>',
2080
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2081
+ inputs: ['currentStep', 'variant'],
2082
+ }]
2083
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2084
+ let SpwWizardItem = class SpwWizardItem {
2085
+ constructor(c, r, z) {
2086
+ this.z = z;
2087
+ c.detach();
2088
+ this.el = r.nativeElement;
2089
+ proxyOutputs(this, this.el, ['wizardItemClick']);
2090
+ }
2091
+ 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 }); }
2092
+ 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 }); }
2093
+ };
2094
+ SpwWizardItem = __decorate([
2095
+ ProxyCmp({
2096
+ inputs: ['additionalInfo', 'description', 'icon', 'isAfterCurrent', 'isBeforeCurrent', 'isClickable', 'isCurrent', 'isLast', 'label', 'state', 'status', 'stepNumber', 'variant']
2097
+ })
2098
+ ], SpwWizardItem);
2099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwWizardItem, decorators: [{
2100
+ type: Component,
2101
+ args: [{
2102
+ selector: 'spw-wizard-item',
2103
+ changeDetection: ChangeDetectionStrategy.OnPush,
2104
+ template: '<ng-content></ng-content>',
2105
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2106
+ inputs: ['additionalInfo', 'description', 'icon', 'isAfterCurrent', 'isBeforeCurrent', 'isClickable', 'isCurrent', 'isLast', 'label', 'state', 'status', 'stepNumber', 'variant'],
2107
+ }]
2108
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2007
2109
 
2008
2110
  const DIRECTIVES = [
2009
2111
  SpwAccordion,
@@ -2025,6 +2127,8 @@ const DIRECTIVES = [
2025
2127
  SpwCustomSelect,
2026
2128
  SpwDatePicker,
2027
2129
  SpwDropdown,
2130
+ SpwDropdownContainer,
2131
+ SpwDropdownItem,
2028
2132
  SpwFieldLabel,
2029
2133
  SpwFieldMessage,
2030
2134
  SpwFileUpload,
@@ -2086,12 +2190,14 @@ const DIRECTIVES = [
2086
2190
  SpwTileDescription,
2087
2191
  SpwTileTitle,
2088
2192
  SpwTooltip,
2089
- SpwTopbar
2193
+ SpwTopbar,
2194
+ SpwWizard,
2195
+ SpwWizardItem
2090
2196
  ];
2091
2197
 
2092
2198
  class SpwDesignSystemDirectivesModule {
2093
2199
  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] }); }
2200
+ 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
2201
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule }); }
2096
2202
  }
2097
2203
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImport: i0, type: SpwDesignSystemDirectivesModule, decorators: [{
@@ -2132,5 +2238,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.11", ngImpo
2132
2238
  * Generated bundle index. Do not edit.
2133
2239
  */
2134
2240
 
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 };
2241
+ 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
2242
  //# sourceMappingURL=spw-ds-spw-angular-library.mjs.map