@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.d.cts
CHANGED
|
@@ -668,8 +668,8 @@ declare class Vizu {
|
|
|
668
668
|
* Status filter shared by the sidebar tabs and the on-page markers.
|
|
669
669
|
* Picking a tab updates this (via the sidebar's onFilterChange) and
|
|
670
670
|
* re-renders markers so the page shows the same subset as the panel.
|
|
671
|
-
* Defaults to '
|
|
672
|
-
*
|
|
671
|
+
* Defaults to 'all' (matching the sidebar's default tab) — every
|
|
672
|
+
* marker shows until the user narrows to a specific status.
|
|
673
673
|
*/
|
|
674
674
|
private statusFilter;
|
|
675
675
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -668,8 +668,8 @@ declare class Vizu {
|
|
|
668
668
|
* Status filter shared by the sidebar tabs and the on-page markers.
|
|
669
669
|
* Picking a tab updates this (via the sidebar's onFilterChange) and
|
|
670
670
|
* re-renders markers so the page shows the same subset as the panel.
|
|
671
|
-
* Defaults to '
|
|
672
|
-
*
|
|
671
|
+
* Defaults to 'all' (matching the sidebar's default tab) — every
|
|
672
|
+
* marker shows until the user narrows to a specific status.
|
|
673
673
|
*/
|
|
674
674
|
private statusFilter;
|
|
675
675
|
/**
|
package/dist/index.js
CHANGED
|
@@ -2218,7 +2218,7 @@ var Pill = class {
|
|
|
2218
2218
|
var Sidebar = class {
|
|
2219
2219
|
constructor(root, callbacks) {
|
|
2220
2220
|
this.open = false;
|
|
2221
|
-
this.filter = "
|
|
2221
|
+
this.filter = "all";
|
|
2222
2222
|
this.lastComments = [];
|
|
2223
2223
|
this.lastConfidence = /* @__PURE__ */ new Map();
|
|
2224
2224
|
this.handleClick = (e) => {
|
|
@@ -3645,10 +3645,10 @@ var Vizu = class {
|
|
|
3645
3645
|
* Status filter shared by the sidebar tabs and the on-page markers.
|
|
3646
3646
|
* Picking a tab updates this (via the sidebar's onFilterChange) and
|
|
3647
3647
|
* re-renders markers so the page shows the same subset as the panel.
|
|
3648
|
-
* Defaults to '
|
|
3649
|
-
*
|
|
3648
|
+
* Defaults to 'all' (matching the sidebar's default tab) — every
|
|
3649
|
+
* marker shows until the user narrows to a specific status.
|
|
3650
3650
|
*/
|
|
3651
|
-
this.statusFilter = "
|
|
3651
|
+
this.statusFilter = "all";
|
|
3652
3652
|
/**
|
|
3653
3653
|
* Flipped true once the initial loadComments() at construction has
|
|
3654
3654
|
* settled (success or failure). The cloud onAuthChanged callback uses
|