gwchq-textjam 0.1.14 → 0.1.16
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/README.md +0 -3
- package/dist/index.js +337391 -337192
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -220,8 +220,6 @@ The consumer's webpack config should include the following setups
|
|
|
220
220
|
- `packageApiUrl`: A string with url to download pyodide packages. If not provided - default value is pyodide CDN.
|
|
221
221
|
|
|
222
222
|
// TODO: review old options below
|
|
223
|
-
- `code`: A preset blob of code to show in the editor pane (overrides content of `main.py`/`index.html`)
|
|
224
|
-
- `embedded`: Enable embedded mode which hides some functionality (defaults to `false`)
|
|
225
223
|
- `loadCache`: Load latest version of project code from local storage (defaults to `true`)
|
|
226
224
|
- `locale`: Locale for UI elements and to determine the language of projects loaded from the API (defaults to `en`)
|
|
227
225
|
- `outputOnly`: Only display the output panel (defaults to `false`)
|
|
@@ -231,7 +229,6 @@ The consumer's webpack config should include the following setups
|
|
|
231
229
|
- `readOnly`: Display the editor in read-only mode (defaults to `false`)
|
|
232
230
|
- `showSavePrompt`: Prompt the user to save their work (defaults to `false`)
|
|
233
231
|
- `sidebarOptions`: Array of strings specifying the panels to be displayed in the sidebar. Options include `"projects"`, `"file"`, `"download"`, `"settings"`.
|
|
234
|
-
- `theme`: Force editor into `"dark"` or `"light"` mode; browser/system preferences are used when omitted
|
|
235
232
|
|
|
236
233
|
When no props are supplied the component falls back to parsing the current page’s query string so the local development experience (`yarn start`) continues to work unchanged. You can override this by explicitly passing `queryString` or the equivalent props.
|
|
237
234
|
|