@ascentgl/ads-ui 21.132.0 → 21.133.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11614,7 +11614,7 @@ class AdsShipmentHistoryStepperComponent {
|
|
|
11614
11614
|
}
|
|
11615
11615
|
return items;
|
|
11616
11616
|
}, ...(ngDevMode ? [{ debugName: "listItems" }] : []));
|
|
11617
|
-
this.registry.register([adsIconPencil, adsIconFileAdd,
|
|
11617
|
+
this.registry.register([adsIconPencil, adsIconFileAdd, adsIconCanceledShipment]);
|
|
11618
11618
|
}
|
|
11619
11619
|
/** @ignore */
|
|
11620
11620
|
trackItem(_index, item) {
|
|
@@ -11630,9 +11630,8 @@ class AdsShipmentHistoryStepperComponent {
|
|
|
11630
11630
|
case ShipmentHistoryAction.Created:
|
|
11631
11631
|
case ShipmentHistoryAction.Added:
|
|
11632
11632
|
return 'file_add';
|
|
11633
|
-
case ShipmentHistoryAction.Removed:
|
|
11634
|
-
return 'cross';
|
|
11635
11633
|
case ShipmentHistoryAction.Cancelled:
|
|
11634
|
+
case ShipmentHistoryAction.Removed:
|
|
11636
11635
|
return 'canceled_shipment';
|
|
11637
11636
|
case ShipmentHistoryAction.Edited:
|
|
11638
11637
|
default:
|