1.1.16 • Published 2 months ago
@prozilla-os/text-editor v1.1.16
About
@prozilla-os/text-editor
is a text editor application for ProzillaOS.
Installation
@prozilla-os/core
is required to run this application.
npm install @prozilla-os/core @prozilla-os/text-editor
yarn add @prozilla-os/core @prozilla-os/text-editor
pnpm add @prozilla-os/core @prozilla-os/text-editor
Usage
Basic setup
import { Desktop, ModalsView, ProzillaOS, Taskbar, WindowsView, AppsConfig } from "@prozilla-os/core";
import { textEditor } from "@prozilla-os/text-editor";
function App() {
return (
<ProzillaOS
systemName="Example"
tagLine="Powered by ProzillaOS"
config={{
apps: new AppsConfig({
apps: [ textEditor ]
})
}}
>
<Taskbar/>
<WindowsView/>
<ModalsView/>
<Desktop/>
</ProzillaOS>
);
}
Window options
/**
* Initial path that the app will open
* @default "~" - Home directory
*/
path: string;
/**
* Virtual file to open the app with
*/
file: VirtualFile;
/**
* Mode in which to run the app
* "view" - Renders markdown files and renders syntax highlighting of other file formats, disables text editing
* "edit" - Raw text editor
*/
mode: "view" | "edit";
Links
1.1.9
2 months ago
1.1.12
2 months ago
1.1.11
2 months ago
1.1.10
2 months ago
1.1.16
2 months ago
1.1.15
2 months ago
1.1.14
2 months ago
1.1.13
2 months ago
1.1.8
2 months ago
1.1.7
3 months ago
1.1.6
3 months ago
1.1.5
3 months ago
1.1.4
4 months ago
1.1.3
5 months ago
1.1.2
5 months ago
1.1.1
5 months ago
1.1.0
5 months ago
1.0.9
5 months ago
1.0.8
5 months ago
1.0.7
5 months ago
1.0.6
6 months ago
1.0.5
6 months ago
1.0.4
6 months ago
1.0.3
6 months ago
1.0.2
6 months ago
1.0.1
6 months ago