fubi 1.0.0-beta.32 → 1.0.0-beta.33
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/index.es.js +4 -2
- package/dist/index.iife.js +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -23132,7 +23132,7 @@ function Settings$1($$anchor, $$props) {
|
|
|
23132
23132
|
{
|
|
23133
23133
|
const after = ($$anchor3) => {
|
|
23134
23134
|
var div = root_2$6();
|
|
23135
|
-
div.textContent = `v${"1.0.0-beta.
|
|
23135
|
+
div.textContent = `v${"1.0.0-beta.33"}`;
|
|
23136
23136
|
append($$anchor3, div);
|
|
23137
23137
|
};
|
|
23138
23138
|
Navbar(node, {
|
|
@@ -24276,7 +24276,9 @@ class Comments extends CollectionModule {
|
|
|
24276
24276
|
}));
|
|
24277
24277
|
__privateAdd(this, _threadsTodo, /* @__PURE__ */ user_derived(() => this.filteredThreads.filter((t2) => !t2.done)));
|
|
24278
24278
|
__privateAdd(this, _threadsDone, /* @__PURE__ */ user_derived(() => this.filteredThreads.filter((t2) => t2.done)));
|
|
24279
|
-
__privateAdd(this, _threadsWithStatus, /* @__PURE__ */ user_derived(() =>
|
|
24279
|
+
__privateAdd(this, _threadsWithStatus, /* @__PURE__ */ user_derived(() => {
|
|
24280
|
+
return this.filteredThreads.map((t2) => ({ ...t2, ...this.getThreadStatus(t2) }));
|
|
24281
|
+
}));
|
|
24280
24282
|
__privateAdd(this, _isolatedThreads, /* @__PURE__ */ user_derived(() => this.threadsWithStatus.filter((t2) => this.modules.hover.isIsolated && t2.selector === this.modules.hover.isolationSelector)));
|
|
24281
24283
|
__privateAdd(this, _activeThreadId, /* @__PURE__ */ state(null));
|
|
24282
24284
|
__privateAdd(this, _activeThread, /* @__PURE__ */ user_derived(() => this.filteredThreads.find((t2) => t2.id === this.activeThreadId) ?? null));
|