@d3ara1n/pi-editor-shell 0.1.0 → 0.2.0
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/package.json +1 -1
- package/src/index.ts +3 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -300,6 +300,9 @@ export default function (pi: ExtensionAPI) {
|
|
|
300
300
|
}
|
|
301
301
|
};
|
|
302
302
|
|
|
303
|
+
// CardEditor has its own phase-aware spinner — hide pi's built-in working loader.
|
|
304
|
+
ctx.ui.setWorkingVisible(false);
|
|
305
|
+
|
|
303
306
|
ctx.ui.setEditorComponent((tui, theme, keybindings) => {
|
|
304
307
|
editor = new CardEditor(tui, theme, keybindings, provider);
|
|
305
308
|
return editor;
|