@bigbinary/neetoui 5.1.4 → 5.1.6
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/formik.cjs.js +18 -4
- package/formik.cjs.js.map +1 -1
- package/formik.js +18 -4
- package/formik.js.map +1 -1
- package/index.cjs.js +2941 -356
- package/index.cjs.js.map +1 -1
- package/index.d.ts +3 -1
- package/index.js +2941 -357
- package/index.js.map +1 -1
- package/layouts.cjs.js.map +1 -1
- package/layouts.js.map +1 -1
- package/package.json +2 -1
package/index.d.ts
CHANGED
|
@@ -119,6 +119,7 @@ export interface AlertProps {
|
|
|
119
119
|
message?: React.ReactNode;
|
|
120
120
|
submitButtonLabel?: string;
|
|
121
121
|
cancelButtonLabel?: string;
|
|
122
|
+
initialFocusElement?: "cancel" | "submit";
|
|
122
123
|
}
|
|
123
124
|
|
|
124
125
|
export type AvatarProps = {
|
|
@@ -324,7 +325,7 @@ export type SelectProps = {
|
|
|
324
325
|
id?: string;
|
|
325
326
|
loadOptions?: boolean;
|
|
326
327
|
labelProps?: LabelProps;
|
|
327
|
-
optionRemapping?: { label?: string
|
|
328
|
+
optionRemapping?: { label?: string; value?: string };
|
|
328
329
|
[key: string]: any;
|
|
329
330
|
};
|
|
330
331
|
|
|
@@ -378,6 +379,7 @@ export interface TableProps {
|
|
|
378
379
|
enableColumnReorder?: boolean;
|
|
379
380
|
onColumnUpdate?: (columns: any[]) => void;
|
|
380
381
|
[key: string]: any;
|
|
382
|
+
preserveTableStateInQuery?: boolean;
|
|
381
383
|
}
|
|
382
384
|
|
|
383
385
|
export interface TagProps {
|