@anker-in/ui 0.3.1 → 0.3.3
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 +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +301 -200
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +302 -201
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -611,6 +611,9 @@ interface BookingFormPageData {
|
|
|
611
611
|
emailDescription?: string;
|
|
612
612
|
dealsType?: string;
|
|
613
613
|
agrees?: string[];
|
|
614
|
+
errorMsg?: {
|
|
615
|
+
[key: string]: string;
|
|
616
|
+
};
|
|
614
617
|
};
|
|
615
618
|
}
|
|
616
619
|
/**
|
|
@@ -645,6 +648,8 @@ interface BookingSuccessPageData {
|
|
|
645
648
|
* 活动标题
|
|
646
649
|
*/
|
|
647
650
|
event?: string;
|
|
651
|
+
contactUs?: string;
|
|
652
|
+
contactUsLink?: string;
|
|
648
653
|
/**
|
|
649
654
|
* Demo Room 标题
|
|
650
655
|
*/
|
|
@@ -665,6 +670,10 @@ interface BookingSuccessPageData {
|
|
|
665
670
|
* 取消预约按钮
|
|
666
671
|
*/
|
|
667
672
|
cancelAppointment?: string;
|
|
673
|
+
/**
|
|
674
|
+
* 改变领取状态按钮(门店店员身份时显示)
|
|
675
|
+
*/
|
|
676
|
+
changeStatusButton?: string;
|
|
668
677
|
/**
|
|
669
678
|
* 编辑预约按钮
|
|
670
679
|
*/
|
|
@@ -698,6 +707,7 @@ interface BookingSuccessPageData {
|
|
|
698
707
|
QRCodeSubTitle?: string;
|
|
699
708
|
/** 添加到钱包按钮文案 */
|
|
700
709
|
btnToWallet?: string;
|
|
710
|
+
QRCodeUrl?: string;
|
|
701
711
|
/** 打印按钮文案 */
|
|
702
712
|
btnToPrint?: string;
|
|
703
713
|
};
|
|
@@ -744,6 +754,7 @@ declare const BookingFormO2O: React.FC<BookingFormO2OProps>;
|
|
|
744
754
|
interface BookingSuccessO2OProps {
|
|
745
755
|
bookingData?: Booking;
|
|
746
756
|
token?: string;
|
|
757
|
+
isStoreUser?: string;
|
|
747
758
|
apiConfig?: DemoRoomApiConfig;
|
|
748
759
|
onScheduleAgain?: (demoRoomCode: string) => void;
|
|
749
760
|
onCancelSuccess?: (booking: Booking) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -611,6 +611,9 @@ interface BookingFormPageData {
|
|
|
611
611
|
emailDescription?: string;
|
|
612
612
|
dealsType?: string;
|
|
613
613
|
agrees?: string[];
|
|
614
|
+
errorMsg?: {
|
|
615
|
+
[key: string]: string;
|
|
616
|
+
};
|
|
614
617
|
};
|
|
615
618
|
}
|
|
616
619
|
/**
|
|
@@ -645,6 +648,8 @@ interface BookingSuccessPageData {
|
|
|
645
648
|
* 活动标题
|
|
646
649
|
*/
|
|
647
650
|
event?: string;
|
|
651
|
+
contactUs?: string;
|
|
652
|
+
contactUsLink?: string;
|
|
648
653
|
/**
|
|
649
654
|
* Demo Room 标题
|
|
650
655
|
*/
|
|
@@ -665,6 +670,10 @@ interface BookingSuccessPageData {
|
|
|
665
670
|
* 取消预约按钮
|
|
666
671
|
*/
|
|
667
672
|
cancelAppointment?: string;
|
|
673
|
+
/**
|
|
674
|
+
* 改变领取状态按钮(门店店员身份时显示)
|
|
675
|
+
*/
|
|
676
|
+
changeStatusButton?: string;
|
|
668
677
|
/**
|
|
669
678
|
* 编辑预约按钮
|
|
670
679
|
*/
|
|
@@ -698,6 +707,7 @@ interface BookingSuccessPageData {
|
|
|
698
707
|
QRCodeSubTitle?: string;
|
|
699
708
|
/** 添加到钱包按钮文案 */
|
|
700
709
|
btnToWallet?: string;
|
|
710
|
+
QRCodeUrl?: string;
|
|
701
711
|
/** 打印按钮文案 */
|
|
702
712
|
btnToPrint?: string;
|
|
703
713
|
};
|
|
@@ -744,6 +754,7 @@ declare const BookingFormO2O: React.FC<BookingFormO2OProps>;
|
|
|
744
754
|
interface BookingSuccessO2OProps {
|
|
745
755
|
bookingData?: Booking;
|
|
746
756
|
token?: string;
|
|
757
|
+
isStoreUser?: string;
|
|
747
758
|
apiConfig?: DemoRoomApiConfig;
|
|
748
759
|
onScheduleAgain?: (demoRoomCode: string) => void;
|
|
749
760
|
onCancelSuccess?: (booking: Booking) => void;
|