react-declarative 2.7.110 → 2.8.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/index.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20273,6 +20273,7 @@ declare module "react-declarative/components/RecordView/RecordView" {
|
|
|
20273
20273
|
sx,
|
|
20274
20274
|
EmptyItem,
|
|
20275
20275
|
CustomItem,
|
|
20276
|
+
maxItems,
|
|
20276
20277
|
...otherProps
|
|
20277
20278
|
}: IRecordViewProps<Data, Payload>) => JSX.Element;
|
|
20278
20279
|
export default RecordView;
|
|
@@ -30095,6 +30096,7 @@ declare module "react-declarative/components/RecordView/model/IRecordViewProps"
|
|
|
30095
30096
|
payload: Payload;
|
|
30096
30097
|
path: string;
|
|
30097
30098
|
}>;
|
|
30099
|
+
maxItems?: number;
|
|
30098
30100
|
payload?: Payload;
|
|
30099
30101
|
}
|
|
30100
30102
|
export default IRecordViewProps;
|