@payloadcms/ui 3.8.0 → 3.9.0
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/elements/Table/DefaultCell/fields/index.d.ts +4 -4
- package/dist/exports/client/index.js +22 -22
- package/dist/exports/client/index.js.map +4 -4
- package/dist/fields/Array/index.d.ts +1 -1
- package/dist/fields/Blocks/index.d.ts +1 -1
- package/dist/fields/Collapsible/index.d.ts +1 -1
- package/dist/fields/Group/index.d.ts +1 -1
- package/dist/fields/Join/index.d.ts.map +1 -1
- package/dist/fields/Join/index.js +57 -3
- package/dist/fields/Join/index.js.map +1 -1
- package/dist/fields/RadioGroup/index.d.ts +1 -10
- package/dist/fields/RadioGroup/index.d.ts.map +1 -1
- package/dist/fields/RadioGroup/index.js.map +1 -1
- package/dist/fields/Row/index.d.ts +1 -1
- package/dist/fields/Tabs/index.d.ts +1 -1
- package/dist/fields/Textarea/index.scss +12 -9
- package/dist/fields/Upload/Input.d.ts.map +1 -1
- package/dist/fields/Upload/Input.js +130 -111
- package/dist/fields/Upload/Input.js.map +1 -1
- package/dist/forms/RenderFields/RenderField.d.ts.map +1 -1
- package/dist/forms/RenderFields/RenderField.js +2 -2
- package/dist/forms/RenderFields/RenderField.js.map +1 -1
- package/dist/forms/fieldSchemasToFormState/fieldSchemasToFormState.spec.d.ts +2 -0
- package/dist/forms/fieldSchemasToFormState/fieldSchemasToFormState.spec.d.ts.map +1 -0
- package/dist/forms/fieldSchemasToFormState/renderField.d.ts.map +1 -1
- package/dist/forms/fieldSchemasToFormState/renderField.js +1 -0
- package/dist/forms/fieldSchemasToFormState/renderField.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -4
- /package/{license.md → LICENSE.md} +0 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export declare const cellComponents: {
|
|
2
2
|
array: import("react").FC<import("./Array/index.js").ArrayCellProps>;
|
|
3
3
|
blocks: import("react").FC<import("./Blocks/index.js").BlocksCellProps>;
|
|
4
|
-
checkbox: import("react").FC<import("
|
|
4
|
+
checkbox: import("react").FC<import("payload").DefaultCellComponentProps<import("payload").CheckboxFieldClient>>;
|
|
5
5
|
code: import("react").FC<import("./Code/index.js").CodeCellProps>;
|
|
6
|
-
date: import("react").FC<import("
|
|
6
|
+
date: import("react").FC<import("payload").DefaultCellComponentProps<import("payload").DateFieldClient>>;
|
|
7
7
|
File: import("react").FC<import("./File/index.js").FileCellProps>;
|
|
8
8
|
join: import("react").FC<import("./Relationship/index.js").RelationshipCellProps>;
|
|
9
|
-
json: import("react").FC<import("
|
|
9
|
+
json: import("react").FC<import("payload").DefaultCellComponentProps<import("payload").JSONFieldClient>>;
|
|
10
10
|
radio: import("react").FC<import("./Select/index.js").SelectCellProps>;
|
|
11
11
|
relationship: import("react").FC<import("./Relationship/index.js").RelationshipCellProps>;
|
|
12
12
|
select: import("react").FC<import("./Select/index.js").SelectCellProps>;
|
|
13
|
-
textarea: import("react").FC<import("
|
|
13
|
+
textarea: import("react").FC<import("payload").DefaultCellComponentProps<import("payload").TextareaFieldClient>>;
|
|
14
14
|
upload: import("react").FC<import("./Relationship/index.js").RelationshipCellProps>;
|
|
15
15
|
};
|
|
16
16
|
//# sourceMappingURL=index.d.ts.map
|