@netless/fastboard-ui 0.3.7 → 0.3.8
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 +13 -13
- package/dist/index.js +349 -161
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +321 -148
- package/dist/index.mjs.map +1 -1
- package/dist/index.svelte.mjs +3355 -2266
- package/dist/index.svelte.mjs.map +1 -1
- package/package.json +4 -4
- /package/src/components/Fastboard/{Fastboard.svelte.ts → Fastboard.svelte.d.ts} +0 -0
- /package/src/components/Fastboard/{ReplayFastboard.svelte.ts → ReplayFastboard.svelte.d.ts} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -82,24 +82,24 @@ declare interface PlayerControlProps {
|
|
|
82
82
|
declare class PlayerControl extends SvelteComponentTyped<PlayerControlProps> {}
|
|
83
83
|
|
|
84
84
|
declare interface ReplayFastboardProps {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
90
|
-
declare class ReplayFastboard extends SvelteComponentTyped<ReplayFastboardProps> {
|
|
85
|
+
player?: FastboardPlayer | null;
|
|
86
|
+
theme?: Theme;
|
|
87
|
+
language?: Language;
|
|
88
|
+
containerRef?: (container: HTMLDivElement | null) => void;
|
|
91
89
|
}
|
|
92
90
|
|
|
91
|
+
declare class ReplayFastboard extends SvelteComponentTyped<ReplayFastboardProps> {}
|
|
92
|
+
|
|
93
93
|
declare interface FastboardProps {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}
|
|
100
|
-
declare class Fastboard extends SvelteComponentTyped<FastboardProps> {
|
|
94
|
+
app?: FastboardApp | null;
|
|
95
|
+
theme?: Theme;
|
|
96
|
+
language?: Language;
|
|
97
|
+
containerRef?: (container: HTMLDivElement | null) => void;
|
|
98
|
+
config?: FastboardUIConfig;
|
|
101
99
|
}
|
|
102
100
|
|
|
101
|
+
declare class Fastboard extends SvelteComponentTyped<FastboardProps> {}
|
|
102
|
+
|
|
103
103
|
interface UI {
|
|
104
104
|
/** render UI to div */
|
|
105
105
|
mount(div: Element, props?: FastboardProps): UI;
|