@asdp/ferryui 0.1.22-dev.8784 → 0.1.22-dev.8826
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 +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +192 -161
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +193 -162
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1098,9 +1098,9 @@ declare const ModalSelectDate: React$1.FC<ModalSelectDateProps>;
|
|
|
1098
1098
|
*/
|
|
1099
1099
|
interface ServiceItem {
|
|
1100
1100
|
/**
|
|
1101
|
-
* Unique identifier for the service
|
|
1101
|
+
* Unique identifier for the service type
|
|
1102
1102
|
*/
|
|
1103
|
-
|
|
1103
|
+
serviceTypeId: number;
|
|
1104
1104
|
/**
|
|
1105
1105
|
* Display name of the service type
|
|
1106
1106
|
*/
|
|
@@ -3271,6 +3271,12 @@ interface FileUploadProps<T extends FieldValues = FieldValues> {
|
|
|
3271
3271
|
disabled?: boolean;
|
|
3272
3272
|
language?: Language;
|
|
3273
3273
|
labels?: Partial<FileUploadLabels>;
|
|
3274
|
+
/**
|
|
3275
|
+
* URL or path for the PDF icon image.
|
|
3276
|
+
* This should be provided by the consumer app.
|
|
3277
|
+
* Example: '/assets/images/icons/pdficon.svg'
|
|
3278
|
+
*/
|
|
3279
|
+
pdfIcon?: string;
|
|
3274
3280
|
}
|
|
3275
3281
|
|
|
3276
3282
|
declare const FileUpload: React$1.ForwardRefExoticComponent<FileUploadProps<react_hook_form.FieldValues> & React$1.RefAttributes<HTMLDivElement>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1098,9 +1098,9 @@ declare const ModalSelectDate: React$1.FC<ModalSelectDateProps>;
|
|
|
1098
1098
|
*/
|
|
1099
1099
|
interface ServiceItem {
|
|
1100
1100
|
/**
|
|
1101
|
-
* Unique identifier for the service
|
|
1101
|
+
* Unique identifier for the service type
|
|
1102
1102
|
*/
|
|
1103
|
-
|
|
1103
|
+
serviceTypeId: number;
|
|
1104
1104
|
/**
|
|
1105
1105
|
* Display name of the service type
|
|
1106
1106
|
*/
|
|
@@ -3271,6 +3271,12 @@ interface FileUploadProps<T extends FieldValues = FieldValues> {
|
|
|
3271
3271
|
disabled?: boolean;
|
|
3272
3272
|
language?: Language;
|
|
3273
3273
|
labels?: Partial<FileUploadLabels>;
|
|
3274
|
+
/**
|
|
3275
|
+
* URL or path for the PDF icon image.
|
|
3276
|
+
* This should be provided by the consumer app.
|
|
3277
|
+
* Example: '/assets/images/icons/pdficon.svg'
|
|
3278
|
+
*/
|
|
3279
|
+
pdfIcon?: string;
|
|
3274
3280
|
}
|
|
3275
3281
|
|
|
3276
3282
|
declare const FileUpload: React$1.ForwardRefExoticComponent<FileUploadProps<react_hook_form.FieldValues> & React$1.RefAttributes<HTMLDivElement>>;
|