Skip to content

Commit cfe2103

Browse files
committed
chore: ae up
1 parent 44a086f commit cfe2103

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

build/api/react-ui-lib.api.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,14 @@ export const baseEditorPlugins: {
223223
};
224224

225225
// @public (undocumented)
226-
export type BaseFieldProps = Omit<FormContainerProps, 'children'> & UploaderBaseFieldProps;
226+
export type BaseFieldProps = Omit<FormContainerProps, 'children'> & UploaderBaseFieldProps & {
227+
dropzonePlaceholder?: ReactNode;
228+
};
227229

228230
// @public (undocumented)
229-
export type BaseFileRepeaterFieldProps = Omit<FormContainerProps, 'children'> & RepeaterProps & UploaderBaseFieldProps;
231+
export type BaseFileRepeaterFieldProps = Omit<FormContainerProps, 'children'> & RepeaterProps & UploaderBaseFieldProps & {
232+
dropzonePlaceholder?: ReactNode;
233+
};
230234

231235
// @public (undocumented)
232236
export const Binding: ({ children }: {
@@ -633,6 +637,8 @@ export type DataGridColumnProps = {
633637
name?: string;
634638
hidingName?: string;
635639
sortingField?: string;
640+
cellClassName?: string;
641+
headerClassName?: string;
636642
};
637643

638644
// @public (undocumented)
@@ -908,6 +914,8 @@ export const DataGridTiles: React_2.NamedExoticComponent<DataGridTilesProps>;
908914
export interface DataGridTilesProps {
909915
// (undocumented)
910916
children: React_2.ReactNode;
917+
// (undocumented)
918+
className?: string;
911919
}
912920

913921
// @public (undocumented)
@@ -994,7 +1002,8 @@ export const DefaultRepeater: NamedExoticComponent<DefaultRepeaterProps>;
9941002

9951003
// @public (undocumented)
9961004
export type DefaultRepeaterProps = {
997-
title?: string;
1005+
title?: ReactNode;
1006+
addButtonPosition?: 'none' | 'after' | 'before' | 'around';
9981007
} & RepeaterProps;
9991008

10001009
// @public (undocumented)
@@ -1793,8 +1802,9 @@ className?: string | undefined;
17931802
}, "ref"> & RefAttributes<HTMLInputElement>>;
17941803

17951804
// @public (undocumented)
1796-
export const RepeaterAddItemButton: ({ children }: {
1805+
export const RepeaterAddItemButton: ({ children, index }: {
17971806
children?: React.ReactNode;
1807+
index?: RepeaterAddItemIndex;
17981808
}) => JSX_2.Element;
17991809

18001810
// @public (undocumented)
@@ -2473,8 +2483,9 @@ export type UploadedVideoViewProps = FileUrlDataExtractorProps & GenericFileMeta
24732483
};
24742484

24752485
// @public (undocumented)
2476-
export const UploaderDropzone: ({ inactiveOnUpload }: {
2486+
export const UploaderDropzone: ({ inactiveOnUpload, dropzonePlaceholder }: {
24772487
inactiveOnUpload?: boolean;
2488+
dropzonePlaceholder?: ReactNode;
24782489
}) => JSX_2.Element;
24792490

24802491
// @public (undocumented)

0 commit comments

Comments
 (0)