Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
af3d39c
feat: add mask editor (STU-313)
lag-of-death Jul 1, 2019
dd551a3
chore: rm yarn.lock and reinstall dependencies
lag-of-death Jul 3, 2019
cffc83b
style: address linting issue
lag-of-death Jul 3, 2019
790c4bf
feat: add "with mask controls" example to the stories
lag-of-death Jul 4, 2019
4eaaa90
fix: adjust padding
lag-of-death Jul 4, 2019
abc75db
feat: handle array and allOf [wip]
lag-of-death Jul 4, 2019
c5ab956
fix: toggle node
lag-of-death Jul 5, 2019
b4d1bca
feat: do not merge allOfs when in MaskEditor
lag-of-death Jul 5, 2019
aca6bdc
feat: add combiner name to its path
lag-of-death Jul 5, 2019
d3ce908
refactor: use a class instead of applying styles with style attr
lag-of-death Jul 5, 2019
3b560c6
chore: revert yarn.lock changes
lag-of-death Jul 5, 2019
9c5e9be
refactor: define SelectedPaths type
lag-of-death Jul 5, 2019
9cb785e
refactor: use React.ReactElement
lag-of-death Jul 5, 2019
8d822b7
refactor: use React.FunctionComponent for typing
lag-of-death Jul 5, 2019
7b49f17
refactor: rm TODO
lag-of-death Jul 5, 2019
485ca99
refactor: use tailwind class names
lag-of-death Jul 5, 2019
5ec1bd8
refactor: use MaskingProps type
lag-of-death Jul 5, 2019
7ac4db6
refactor: give "Apply/Update Mask" btn a better name (as a prop)
lag-of-death Jul 5, 2019
d7f5f6e
test: update test snapshots
lag-of-death Jul 5, 2019
74281d2
fix(render-schema): generate proper paths for arrays
P0lip Jul 10, 2019
e7e1624
refactor: move renderers to jse
Jul 10, 2019
2da8036
fix: general divider position issue
Jul 11, 2019
206202e
fix: divider spacing issue
Jul 11, 2019
1d2f58c
Merge branch 'master' of github.com:stoplightio/json-schema-viewer in…
Jul 11, 2019
da52f05
fix: remove unnecessary padding
Jul 11, 2019
bc1ae5d
fix: show "expand" caret (#38)
lag-of-death Jul 11, 2019
f56c95c
chore: update dependency
Jul 11, 2019
0175be6
chore: revert code artifact
Jul 11, 2019
bf334fe
chore: add a todo on useCallback and rowRenderer
lag-of-death Jul 11, 2019
d57e846
chore: remove schema controls renderer
Jul 12, 2019
9c28e29
Merge branch 'master' of github.com:stoplightio/json-schema-viewer in…
Jul 12, 2019
0e1c1a3
fix: merge fail
Jul 12, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/components/SchemaTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export const SchemaTree = observer<ISchemaTree>(props => {
}}
canDrag={canDrag}
/>
{props.schemaControlsRenderer && props.schemaControlsRenderer()}
</div>
);
});
Expand Down
1 change: 0 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { JSONSchema4, JSONSchema4TypeName } from 'json-schema';

export interface IExtendableRenderers {
rowRendererRight?: (node: SchemaTreeListNode) => React.ReactElement;
schemaControlsRenderer?: () => React.ReactElement;
}

export const enum SchemaKind {
Expand Down