@bsol-oss/react-datatable5 8.0.1 → 8.0.2
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.js +242 -261
- package/dist/index.mjs +243 -262
- package/dist/types/components/Form/Form.d.ts +2 -0
- package/dist/types/components/Form/SchemaFormContext.d.ts +4 -2
- package/dist/types/components/Form/components/IdViewer.d.ts +3 -1
- package/dist/types/components/Form/components/StringInputField.d.ts +8 -5
- package/dist/types/components/Form/useSchemaContext.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { IconType } from 'react-icons';
|
|
|
8
8
|
import { RankingInfo } from '@tanstack/match-sorter-utils';
|
|
9
9
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
10
10
|
import { JSONSchema7 } from 'json-schema';
|
|
11
|
+
import { ForeignKeyProps } from '@/components/Form/components/StringInputField';
|
|
11
12
|
import { FieldValues, SubmitHandler } from 'react-hook-form';
|
|
12
13
|
import { RenderProps, Props } from '@bsol-oss/dayzed-react19';
|
|
13
14
|
|
|
@@ -481,6 +482,7 @@ interface CustomJSONSchema7Definition extends JSONSchema7 {
|
|
|
481
482
|
display_column: string;
|
|
482
483
|
gridColumn: string;
|
|
483
484
|
gridRow: string;
|
|
485
|
+
foreign_key: ForeignKeyProps;
|
|
484
486
|
}
|
|
485
487
|
declare const Form: <TData extends FieldValues>({ schema, serverUrl, order, ignore, onSubmit, preLoadedValues, rowNumber, displayText, }: FormProps<TData>) => react_jsx_runtime.JSX.Element;
|
|
486
488
|
|