@unhingged/vizu-core 0.1.20 → 0.1.21
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/auto.cjs +4 -4
- package/dist/auto.cjs.map +1 -1
- package/dist/auto.js +4 -4
- package/dist/auto.js.map +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/internal.cjs +1 -1
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.js +1 -1
- package/dist/internal.js.map +1 -1
- package/dist/vizu.min.js +2 -2
- package/dist/vizu.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2254,7 +2254,7 @@ var Pill = class {
|
|
|
2254
2254
|
var Sidebar = class {
|
|
2255
2255
|
constructor(root, callbacks) {
|
|
2256
2256
|
this.open = false;
|
|
2257
|
-
this.filter = "
|
|
2257
|
+
this.filter = "all";
|
|
2258
2258
|
this.lastComments = [];
|
|
2259
2259
|
this.lastConfidence = /* @__PURE__ */ new Map();
|
|
2260
2260
|
this.handleClick = (e) => {
|
|
@@ -3681,10 +3681,10 @@ var Vizu = class {
|
|
|
3681
3681
|
* Status filter shared by the sidebar tabs and the on-page markers.
|
|
3682
3682
|
* Picking a tab updates this (via the sidebar's onFilterChange) and
|
|
3683
3683
|
* re-renders markers so the page shows the same subset as the panel.
|
|
3684
|
-
* Defaults to '
|
|
3685
|
-
*
|
|
3684
|
+
* Defaults to 'all' (matching the sidebar's default tab) — every
|
|
3685
|
+
* marker shows until the user narrows to a specific status.
|
|
3686
3686
|
*/
|
|
3687
|
-
this.statusFilter = "
|
|
3687
|
+
this.statusFilter = "all";
|
|
3688
3688
|
/**
|
|
3689
3689
|
* Flipped true once the initial loadComments() at construction has
|
|
3690
3690
|
* settled (success or failure). The cloud onAuthChanged callback uses
|