Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to hide object and array labels? #3

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f180f4e
Update package.json
luyuan Sep 21, 2017
668cd54
Add rename, delete, append event that can observe all kinds of operat…
luyuan Sep 22, 2017
3aaca1b
Update README.md
luyuan Sep 22, 2017
0809bed
Update package.json
luyuan Sep 22, 2017
8793655
Update package.json
luyuan Sep 22, 2017
0b0c3b8
Update README.md
luyuan Sep 22, 2017
daf71ca
Update package.json
luyuan Sep 22, 2017
6d91499
Root name can be omitted. Emit events when using refresh.
luyuan Sep 22, 2017
341c943
Update versions.
luyuan Sep 22, 2017
e165116
Add filterText and readonly.
luyuan Oct 19, 2017
d3f4d31
Fix data changed illegal when the value of an object or an array doub…
luyuan Oct 19, 2017
7da969b
Add readonlyWhenFiltering options.
luyuan Oct 21, 2017
87dc23c
Fix some readonly bugs. Add alwaysShowRoot switch. Update example.
luyuan Oct 23, 2017
c9e057f
Update README.md
luyuan Oct 23, 2017
e8026cd
Version 0.4.5
luyuan Oct 23, 2017
693c519
Add some events.
luyuan Oct 26, 2017
b0204aa
Version 0.4.6
luyuan Oct 26, 2017
df0f385
Fix root missing bug.
luyuan Oct 26, 2017
bc8535b
Version 0.4.7
luyuan Oct 26, 2017
b1efcbd
Add parent type paramater in delete event.
luyuan Oct 27, 2017
a6b780d
Version 0.4.7
luyuan Oct 27, 2017
ad88e02
Fix squarebracketify bug.
luyuan Nov 9, 2017
c524a6f
Version 0.4.9
luyuan Nov 9, 2017
55cb3b8
Fix failing setter functions
raucao Jan 6, 2018
4058d6f
Add showCountOfObjectOrArray property.
luyuan Dec 20, 2018
739da0b
Fix bug when removing item in array.
luyuan Dec 20, 2018
a815316
Version 0.4.10
luyuan Dec 20, 2018
c386a76
Inherit parent's options.
luyuan Jul 17, 2019
593b5ce
Ignore toString() value for object and array.
luyuan Jul 17, 2019
a496f1c
Merge pull request #1 from skddc/bugfix/setters
luyuan Jul 17, 2019
0668271
Version 0.4.11.
luyuan Jul 17, 2019
1611ba0
Fix bug when setting a value on a JSONTreeView object. Change keyPath…
luyuan Jul 19, 2019
67e7e34
Update example.
luyuan Jul 19, 2019
17fdde2
Version 0.4.12.
luyuan Jul 19, 2019
25b4acc
Update CHANGELOG
luyuan Jul 19, 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
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
example/node_modules/
npm-debug.log
66 changes: 66 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
ChangeLog
========

0.4.12
-------
- [Bugfix]
- Fix bug when setting a value on a JSONTreeView object.
- [Update]
- Change keyPath paramater of handlers from a string to an array.
- Update example.


0.4.11
-------
- [Bugfix]
- Inherit parent's readonly options.
- Ignore toString() value for object and array when filtering.
- Some setter functions would throw an exception.


0.4.10
-------
- [Add]
- Add showCountOfObjectOrArray property which allows you to remove the counter.
- [Bugfix]
- Fix bug when removing item in array.


0.4.9
-------
- [Bugfix]
- Fix squarebracketify bug.


0.4.7
-------
- [Add]
- Add parent type paramater in delete event.


0.4.6
-------
- [Add]
- Add some events.


0.4.5
-------
- [Add]
- Add alwaysShowRoot switch which allows you to show or hide the root node.
- Add readonlyWhenFiltering options which can be readonly when filtering text.
- Add filterText property
- Add readonly property.
- Add rename, delete, append event that can observe all kinds of operation.
- Add children property for each instance.
- [Bugfix]
- Fix some readonly bugs.
- Fix data changed illegal when the value of an object or an array doubleclicked.
- [Update]
- Root name can be omitted. Emit events when using refresh.
- Update example.





Loading