@asdp/ferryui 0.1.22-dev.9415 → 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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1548 -360
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1549 -361
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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;
|
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;
|