diff --git a/README.md b/README.md index 4fbd8a24..8fce76b0 100644 --- a/README.md +++ b/README.md @@ -95,10 +95,10 @@ All fields are optional, unless otherwise stated. - `backgroundImg` - String: Path to an optional full-screen app background image. This can be either remote (http) or local (/). Note that this will slow down initial load - `enableFontAwesome` - Boolean: Where `true` is enabled, if left blank font-awesome will be enabled only if required by 1 or more icons - `fontAwesomeKey` - String: If you have a font-awesome key, then you can use it here and make use of premium icons. It is a 10-digit alpha-numeric string from you're FA kit URL (e.g. `13014ae648`) -- `customCss` - String: Raw CSS that will be applied to the page. Please minify it first. - `theme`- String: The default theme for first load (you can change this later from the UI) - `cssThemes` - String[]: An array of custom theme names which can be used in the theme switcher dropdown - _See **theming** below_ - `externalStyleSheet` - String or String[] - Either a URL to an external stylesheet or an array or URLs, which can be applied as themes within the UI +- `customCss` - String: Raw CSS that will be applied to the page. Please minify it first. **`sections`** - Section[]: (required) An array of sections - _See **`section`** below_ @@ -182,8 +182,9 @@ This wouldn't have been quite so possible without the following components, kudo - [`vue-material-tabs`](https://github.com/jairoblatt/vue-material-tabs) - Tab view component by @jairoblatt `MIT` - [`VJsoneditor`](https://github.com/yansenlei/VJsoneditor) - Interactive JSON editor component by @yansenlei `MIT` - Forked from [`JsonEditor`](https://github.com/josdejong/jsoneditor) by @josdejong `Apache-2.0 License` - - Using [`ajv`](https://github.com/ajv-validator/ajv) `MIT` JSON schema Validator and [`ace`](https://github.com/ajaxorg/ace) `BSD` code editor - [`vue-toasted`](https://github.com/shakee93/vue-toasted) - Toast notification component by @shakee93 `MIT` +- [`vue-prism-editor`](https://github.com/koca/vue-prism-editor) - Lightweight code editor by @koca `MIT` + - Forked from [`prism.js`](https://github.com/PrismJS/prism) `MIT` Utils: - [`crypto-js`](https://github.com/brix/crypto-js) - Encryption implementations by @evanvosberg and community `MIT` diff --git a/package.json b/package.json index 6278b908..e0e1a4d3 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "connect": "^3.7.0", "crypto-js": "^4.0.0", "highlight.js": "^11.0.0", + "prismjs": "^1.23.0", "register-service-worker": "^1.6.2", "remedial": "^1.0.8", "serve-static": "^1.14.1", @@ -21,6 +22,7 @@ "vue-cli-plugin-yaml": "^1.0.2", "vue-js-modal": "^2.0.0-rc.6", "vue-material-tabs": "^0.0.7", + "vue-prism-editor": "^1.2.2", "vue-router": "^3.0.3", "vue-select": "^3.11.2", "vue-toasted": "^1.1.28" diff --git a/src/assets/interface-icons/config-custom-css.svg b/src/assets/interface-icons/config-custom-css.svg new file mode 100644 index 00000000..1b400c6f --- /dev/null +++ b/src/assets/interface-icons/config-custom-css.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/Configuration/ConfigContainer.vue b/src/components/Configuration/ConfigContainer.vue index 2b1459a6..8dba7106 100644 --- a/src/components/Configuration/ConfigContainer.vue +++ b/src/components/Configuration/ConfigContainer.vue @@ -17,6 +17,10 @@ Edit Meta Data +