@asdp/ferryui 0.1.22-dev.9360 → 0.1.22-dev.9417

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/dist/index.d.mts CHANGED
@@ -894,6 +894,7 @@ interface InputDynamicLabels {
894
894
  invalidEmailOrPhoneError: string;
895
895
  identityPhoneMustStartWithPlusError: string;
896
896
  identityPhoneMustBeOnlyDigitsError: string;
897
+ phoneInvalidLengthError: string;
897
898
  }
898
899
 
899
900
  declare const InputDynamic: React$1.FC<InputDynamicProps>;
@@ -1311,6 +1312,10 @@ interface ServiceItem {
1311
1312
  * Detailed description of the service
1312
1313
  */
1313
1314
  serviceDescription: string;
1315
+ /**
1316
+ * Color code for the service type
1317
+ */
1318
+ serviceTypeColor: string;
1314
1319
  }
1315
1320
  interface ModalServiceLabels {
1316
1321
  title: string;
@@ -3614,6 +3619,7 @@ interface CardPaymentInfoLabels {
3614
3619
  checkStatusInfo: string;
3615
3620
  checkStatusButton: string;
3616
3621
  currencySymbol: string;
3622
+ changePayment: string;
3617
3623
  }
3618
3624
  interface CardPaymentInfoProps {
3619
3625
  /**
@@ -3632,6 +3638,7 @@ interface CardPaymentInfoProps {
3632
3638
  guides: PaymentGuideStep[];
3633
3639
  onCopyVA?: () => void;
3634
3640
  onCheckStatus?: () => void;
3641
+ onChangePayment?: () => void;
3635
3642
  }
3636
3643
 
3637
3644
  declare const CardPaymentInfo: React$1.FC<CardPaymentInfoProps>;
package/dist/index.d.ts CHANGED
@@ -894,6 +894,7 @@ interface InputDynamicLabels {
894
894
  invalidEmailOrPhoneError: string;
895
895
  identityPhoneMustStartWithPlusError: string;
896
896
  identityPhoneMustBeOnlyDigitsError: string;
897
+ phoneInvalidLengthError: string;
897
898
  }
898
899
 
899
900
  declare const InputDynamic: React$1.FC<InputDynamicProps>;
@@ -1311,6 +1312,10 @@ interface ServiceItem {
1311
1312
  * Detailed description of the service
1312
1313
  */
1313
1314
  serviceDescription: string;
1315
+ /**
1316
+ * Color code for the service type
1317
+ */
1318
+ serviceTypeColor: string;
1314
1319
  }
1315
1320
  interface ModalServiceLabels {
1316
1321
  title: string;
@@ -3614,6 +3619,7 @@ interface CardPaymentInfoLabels {
3614
3619
  checkStatusInfo: string;
3615
3620
  checkStatusButton: string;
3616
3621
  currencySymbol: string;
3622
+ changePayment: string;
3617
3623
  }
3618
3624
  interface CardPaymentInfoProps {
3619
3625
  /**
@@ -3632,6 +3638,7 @@ interface CardPaymentInfoProps {
3632
3638
  guides: PaymentGuideStep[];
3633
3639
  onCopyVA?: () => void;
3634
3640
  onCheckStatus?: () => void;
3641
+ onChangePayment?: () => void;
3635
3642
  }
3636
3643
 
3637
3644
  declare const CardPaymentInfo: React$1.FC<CardPaymentInfoProps>;