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.
@@ -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
- label: string;
7
- clickFunction: Function;
8
- };
9
- cancelButton?: {
10
- label: string;
11
- clickFunction: Function;
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-vector-components",
3
- "version": "4.96.0",
3
+ "version": "4.97.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~13.2.3",
6
6
  "@angular/cdk": "^13.3.9",