Skip to content

Commit cd3691f

Browse files
committed
v2.2.0
1 parent 7f14ecb commit cd3691f

File tree

9 files changed

+638
-534
lines changed

9 files changed

+638
-534
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,6 @@ Also, optionally displaying a value to help with troubleshooting.
149149
window.svelteobjectexplorer = { value, open, fade, tabposition, ratelimit }
150150
```
151151
152-
## TODO
153-
154-
- create a general settings object for all options above
155-
- stylesheets override
156-
- domParser override
157-
- indent (move from globals)
158-
- fix top level object at level 0 to display all types (workaround: supply an object)
159-
160152
> It's not clever, it's not pretty...
161153
162154
> ...it's strong and it's sudden, and it can be cruel sometimes but it might just save your life. That's the power of... `svelte-object-explorer` _(with apologies to Huey Lewis)_

TODO.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# TODO
2+
3+
- create a general settings object for all options above
4+
- stylesheets override
5+
- domParser override
6+
- indent (move from globals)
7+
- fix top level object at level 0 to display all types (workaround: supply an object)
8+
- pin feature in panel to do the same from the front-end with localStorage
9+
- identify items in browser by hovering explorer items - reference the dom element
10+
- jumping object explorer panel
11+
- 'other side' toggle
12+
- make multi-line strings just a table cell to better allow fluid width
13+
- keyword search filter
14+
- tidy up styling of header elements and table positioning
15+
- move svelteexplorertags out of domParser.js > getTag and into plugin <--

cypress/integration/main_spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,31 +85,31 @@ module.exports = (index) => {
8585
const longstring_row_2nd_position = 15;
8686
it("Open = null, No panels are open", function () {
8787
setViewportAndVisitUrl(url);
88-
cy.wait(1000);
88+
cy.wait(1500);
8989
//item 'longstring' with no panels open above it, should be in original position
9090
nthSelectorEqualsText(longstring_row, "div.row span.key", "longstring");
9191
});
9292

9393
it("Open = 'string1', is not an object or array so no panels are open", function () {
9494
setViewportAndVisitUrl(url + "?open=string1");
9595

96-
cy.wait(1000);
96+
cy.wait(1500);
9797
//item 'longstring' with no panels open above it, should be in original position
9898
nthSelectorEqualsText(longstring_row, "div.row span.key", "longstring");
9999
});
100100

101101
it("Open = 'bananaman', is not a valid reference so no panels are open", function () {
102102
setViewportAndVisitUrl(url + "?open=bananaman");
103103

104-
cy.wait(1000);
104+
cy.wait(1500);
105105
//item 'longstring' with no panels open above it, should be in original position
106106
nthSelectorEqualsText(longstring_row, "div.row span.key", "longstring");
107107
});
108108

109109
it("Open = 'html', is an object, so it is open, so longstring is further down", function () {
110110
setViewportAndVisitUrl(url + "?open=html");
111111

112-
cy.wait(1000);
112+
cy.wait(1500);
113113
//item 'longstring' after expanded 'html' should be further down
114114
nthSelectorEqualsText(longstring_row_2nd_position, "div.row span.key", "longstring");
115115
});

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/index.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)