ionic-vhframeworks 10.5.6 → 10.5.7

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.
@@ -435,7 +435,17 @@ export declare class VhAlgorithm {
435
435
  vhnumeral(classname: any): Cleave;
436
436
  vhphoneNumber(classname: any): Cleave;
437
437
  vhYoutubeLink(value: any): import("@angular/platform-browser").SafeResourceUrl;
438
+ /**
439
+ * @example
440
+ array = this.sortVietnamesebyASC(array, 'name');
441
+ * @return array
442
+ */
438
443
  sortVietnamesebyASC(array: any, field: any): any;
444
+ /**
445
+ * @example
446
+ array = this.sortVietnamesebyDESC(array, 'name');
447
+ * @return array
448
+ */
439
449
  sortVietnamesebyDESC(array: any, field: any): any;
440
450
  sortDatebyASC(array: any, field: any): any;
441
451
  sortDatebyDESC(array: any, field: any): any;
@@ -602,6 +612,17 @@ export declare class VhAuth {
602
612
  */
603
613
  checkPaymentIOS(): Promise<unknown>;
604
614
  /**
615
+ * @example:
616
+ * this.vhAuth.checkPaymentIOS2()
617
+ .then((bool:any)=>{
618
+ console.log('bool', bool);
619
+ },(error:any)=>{
620
+ console.log('error', error);
621
+ })
622
+ * @returns Promise => boolean
623
+ */
624
+ checkPaymentIOS2(): Promise<unknown>;
625
+ /**
605
626
  * Nếu paymentIOS == true : cho phép hiển thị các chức năng liên quan đến thanh toán trên iphone, ipad. Ngược lại thì ko
606
627
  * lưu ý: hàm này chỉ dùng cho iphone và ipad
607
628
  * let paymentIOS = this.vhAuth.checkLocalPaymentIOS();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ionic-vhframeworks",
3
- "version": "10.5.6",
3
+ "version": "10.5.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.2.0",
6
6
  "@angular/core": "^12.2.0"