Skip to content

Commit

Permalink
UI: add option to show only matching lines in JsonEditor
Browse files Browse the repository at this point in the history
  • Loading branch information
sofa-tata authored and mvoloshin0458 committed Jul 14, 2023
1 parent 02e74ca commit 0dd0543
Show file tree
Hide file tree
Showing 10 changed files with 1,722 additions and 1,516 deletions.
6 changes: 3 additions & 3 deletions dist/cjs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/types/components/JsonEditor/JsonEditor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import './jsonEditor.scss';
interface JsonEditorProps {
onChange?: () => void;
readOnly?: boolean;
value?: string;
value: string;
onValidate?: () => void;
extraClass?: string;
allowSearch?: boolean;
Expand Down
14 changes: 7 additions & 7 deletions dist/esm/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/types/components/JsonEditor/JsonEditor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import './jsonEditor.scss';
interface JsonEditorProps {
onChange?: () => void;
readOnly?: boolean;
value?: string;
value: string;
onValidate?: () => void;
extraClass?: string;
allowSearch?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ declare function UploadField(props: UploadFieldProps): JSX.Element;
interface JsonEditorProps {
onChange?: () => void;
readOnly?: boolean;
value?: string;
value: string;
onValidate?: () => void;
extraClass?: string;
allowSearch?: boolean;
Expand Down
Loading

0 comments on commit 0dd0543

Please sign in to comment.