ngx-vector-components 4.96.0 → 4.97.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/CHANGELOG.md +13 -1
- package/esm2020/lib/components/generic-modal/generic-modal.component.mjs +4 -4
- package/esm2020/lib/models/generic-modal.model.mjs +1 -1
- package/esm2020/lib/models/profile.model.mjs +5 -1
- package/fesm2015/ngx-vector-components.mjs +7 -3
- package/fesm2015/ngx-vector-components.mjs.map +1 -1
- package/fesm2020/ngx-vector-components.mjs +7 -3
- package/fesm2020/ngx-vector-components.mjs.map +1 -1
- package/lib/models/generic-modal.model.d.ts +8 -9
- package/lib/models/profile.model.d.ts +5 -1
- package/package.json +1 -1
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
export declare type GenericModalMessage = {
|
|
2
|
-
fileIcon?: string;
|
|
2
|
+
fileIcon?: 'alert_icon' | 'check_icon' | 'emoji_flashing_icon' | 'watch_icon' | string;
|
|
3
3
|
title?: string;
|
|
4
4
|
message?: string[];
|
|
5
|
-
confirmButton?:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
};
|
|
5
|
+
confirmButton?: GenericModalButtonType;
|
|
6
|
+
cancelButton?: GenericModalButtonType;
|
|
7
|
+
};
|
|
8
|
+
export declare type GenericModalButtonType = {
|
|
9
|
+
label: string;
|
|
10
|
+
type?: 'success' | 'success-outlined' | 'default' | 'default-filled' | 'cancel' | 'cancel-filled';
|
|
11
|
+
clickFunction: Function;
|
|
13
12
|
};
|
|
@@ -288,5 +288,9 @@ export declare enum ProfileModuleActionType {
|
|
|
288
288
|
SEND_OFFER_PRICE_TAKING = "Send Offer PriceTaking",
|
|
289
289
|
CHANGE_STATUS_PRICE_TAKING = "Change Status PriceTaking",
|
|
290
290
|
SHOWTABLE_PRICE_TAKING_HISTORY = "ShowTable PriceTaking History",
|
|
291
|
-
SAVE_PRICE_TAKING = "Save PriceTaking"
|
|
291
|
+
SAVE_PRICE_TAKING = "Save PriceTaking",
|
|
292
|
+
SHOW_SHIPPING_ORIGIN = "Show Shipping Origin",
|
|
293
|
+
SHOW_SHIPPING_COMBINED = "Show Shipping Combined",
|
|
294
|
+
SHOW_SHIPPING_CONTINUOUS = "Show Shipping Continuous",
|
|
295
|
+
SHOW_LOYALTY = "Show Loyalty"
|
|
292
296
|
}
|