@netless/fastboard-ui 1.0.0-canary.5 → 1.0.0-canary.6
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.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/dist/index.svelte.mjs +5 -5
- package/dist/index.svelte.mjs.map +1 -1
- package/package.json +3 -3
- package/src/behaviors/apps.ts +1 -1
- package/src/components/Toolbar/components/Contents.svelte +3 -3
package/dist/index.svelte.mjs
CHANGED
|
@@ -5088,7 +5088,7 @@ var AppsInToolbar = class {
|
|
|
5088
5088
|
this._listeners.forEach((fn) => fn(this._data));
|
|
5089
5089
|
}
|
|
5090
5090
|
};
|
|
5091
|
-
var
|
|
5091
|
+
var stockedApps = new AppsInToolbar([]);
|
|
5092
5092
|
function tooltip(text4, hotkey) {
|
|
5093
5093
|
if (!hotkey || typeof hotkey !== "string")
|
|
5094
5094
|
return text4;
|
|
@@ -9119,9 +9119,9 @@ function instance57($$self, $$props, $$invalidate) {
|
|
|
9119
9119
|
let $top;
|
|
9120
9120
|
let $scroll_height, $$unsubscribe_scroll_height = noop, $$subscribe_scroll_height = () => ($$unsubscribe_scroll_height(), $$unsubscribe_scroll_height = subscribe(scroll_height, ($$value) => $$invalidate(38, $scroll_height = $$value)), scroll_height);
|
|
9121
9121
|
let $memberState, $$unsubscribe_memberState = noop, $$subscribe_memberState = () => ($$unsubscribe_memberState(), $$unsubscribe_memberState = subscribe(memberState, ($$value) => $$invalidate(39, $memberState = $$value)), memberState);
|
|
9122
|
-
let $
|
|
9122
|
+
let $stockedApps;
|
|
9123
9123
|
let $status, $$unsubscribe_status = noop, $$subscribe_status = () => ($$unsubscribe_status(), $$unsubscribe_status = subscribe(status, ($$value) => $$invalidate(23, $status = $$value)), status);
|
|
9124
|
-
component_subscribe($$self,
|
|
9124
|
+
component_subscribe($$self, stockedApps, ($$value) => $$invalidate(22, $stockedApps = $$value));
|
|
9125
9125
|
$$self.$$.on_destroy.push(() => $$unsubscribe_scroll_height());
|
|
9126
9126
|
$$self.$$.on_destroy.push(() => $$unsubscribe_memberState());
|
|
9127
9127
|
$$self.$$.on_destroy.push(() => $$unsubscribe_status());
|
|
@@ -9310,7 +9310,7 @@ function instance57($$self, $$props, $$invalidate) {
|
|
|
9310
9310
|
status,
|
|
9311
9311
|
memberState,
|
|
9312
9312
|
c,
|
|
9313
|
-
$
|
|
9313
|
+
$stockedApps,
|
|
9314
9314
|
$status,
|
|
9315
9315
|
top,
|
|
9316
9316
|
scroll_up,
|
|
@@ -11348,5 +11348,5 @@ function createReplayUI(player, div) {
|
|
|
11348
11348
|
return ui;
|
|
11349
11349
|
}
|
|
11350
11350
|
|
|
11351
|
-
export { Fastboard_default as Fastboard, PageControl_default as PageControl, PlayerControl_default as PlayerControl, RedoUndo_default as RedoUndo, ReplayFastboard_default as ReplayFastboard, Toolbar_default as Toolbar, ZoomControl_default as ZoomControl,
|
|
11351
|
+
export { Fastboard_default as Fastboard, PageControl_default as PageControl, PlayerControl_default as PlayerControl, RedoUndo_default as RedoUndo, ReplayFastboard_default as ReplayFastboard, Toolbar_default as Toolbar, ZoomControl_default as ZoomControl, createReplayUI, createUI, stockedApps };
|
|
11352
11352
|
//# sourceMappingURL=index.svelte.mjs.map
|