@ascentgl/ads-ui 21.131.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.
package/package.json
CHANGED
|
@@ -4125,6 +4125,8 @@ type ShipmentHistoryContextTag = {
|
|
|
4125
4125
|
type ShipmentHistoryEvent = {
|
|
4126
4126
|
/** Status of the event — determines the indicator icon */
|
|
4127
4127
|
action: ShipmentHistoryAction;
|
|
4128
|
+
/** Overrides the displayed action label (e.g. a translated or custom string). Falls back to `action` if not provided. */
|
|
4129
|
+
actionLabel?: string;
|
|
4128
4130
|
/** Optional context badge shown between action and field name */
|
|
4129
4131
|
contextTag?: ShipmentHistoryContextTag;
|
|
4130
4132
|
/** Name of the changed field */
|
|
@@ -4167,7 +4169,7 @@ declare class AdsShipmentHistoryStepperComponent {
|
|
|
4167
4169
|
/** @ignore */
|
|
4168
4170
|
protected resolveTagColor(color: Colors | undefined): Colors;
|
|
4169
4171
|
/** @ignore */
|
|
4170
|
-
protected resolveIconName(action: ShipmentHistoryAction): 'pencil' | 'file_add' | '
|
|
4172
|
+
protected resolveIconName(action: ShipmentHistoryAction): 'pencil' | 'file_add' | 'canceled_shipment';
|
|
4171
4173
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsShipmentHistoryStepperComponent, never>;
|
|
4172
4174
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsShipmentHistoryStepperComponent, "ads-shipment-history-stepper", never, { "groups": { "alias": "groups"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
4173
4175
|
}
|