* fix raw app header overflow * update ui-builder hash * Make monaco default size match brand guidelines * nit * Move run button to test panel * wip improve history * add current checkout point * fix logic to switch wetween history state * improve history visualisation * improve animations * nit * remove test page * fix timing issue when selecty history entries * update ui_builder hash * remove dev file * nit * revert setting editor font to 13.5 px * update ui builder --------- Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
688 lines
17 KiB
Svelte
688 lines
17 KiB
Svelte
<script module>
|
|
let cssClassesLoaded = $state(false)
|
|
let tailwindClassesLoaded = $state(false)
|
|
|
|
import '@codingame/monaco-vscode-standalone-languages'
|
|
import '@codingame/monaco-vscode-standalone-json-language-features'
|
|
import '@codingame/monaco-vscode-standalone-css-language-features'
|
|
import '@codingame/monaco-vscode-standalone-typescript-language-features'
|
|
import '@codingame/monaco-vscode-standalone-html-language-features'
|
|
import { javascriptDefaults } from '@codingame/monaco-vscode-standalone-typescript-language-features'
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { BROWSER } from 'esm-env'
|
|
|
|
import { editorConfig, updateOptions } from '$lib/editorUtils'
|
|
import { createHash } from '$lib/editorLangUtils'
|
|
|
|
// import {
|
|
// editor as meditor,
|
|
// KeyCode,
|
|
// KeyMod,
|
|
// Uri as mUri,
|
|
// languages,
|
|
// type IRange,
|
|
// type IDisposable
|
|
// } from 'monaco-editor'
|
|
|
|
import { allClasses } from './apps/editor/componentsPanel/cssUtils'
|
|
|
|
import { createEventDispatcher, onDestroy, onMount, untrack } from 'svelte'
|
|
|
|
import libStdContent from '$lib/es6.d.ts.txt?raw'
|
|
import domContent from '$lib/dom.d.ts.txt?raw'
|
|
import {
|
|
initializeVscode,
|
|
keepModelAroundToAvoidDisposalOfWorkers,
|
|
MONACO_Y_PADDING
|
|
} from './vscode'
|
|
import EditorTheme from './EditorTheme.svelte'
|
|
import { vimMode, relativeLineNumbers } from '$lib/stores'
|
|
import { initVim } from './monaco_keybindings'
|
|
import FakeMonacoPlaceHolder from './FakeMonacoPlaceHolder.svelte'
|
|
import { editorPositionMap } from '$lib/utils'
|
|
import { langToExt } from '$lib/editorLangUtils'
|
|
import {
|
|
editor as meditor,
|
|
KeyCode,
|
|
KeyMod,
|
|
Uri as mUri,
|
|
languages,
|
|
type IRange,
|
|
type IDisposable,
|
|
type IPosition
|
|
} from 'monaco-editor'
|
|
import { setMonacoJavascriptOptions, setMonacoJsonOptions } from './monacoLanguagesOptions'
|
|
import { twMerge } from 'tailwind-merge'
|
|
// import { createConfiguredEditor } from 'vscode/monaco'
|
|
// import type { IStandaloneCodeEditor } from 'vscode/vscode/vs/editor/standalone/browser/standaloneCodeEditor'
|
|
|
|
let divEl: HTMLDivElement | null = null
|
|
let editor = $state<meditor.IStandaloneCodeEditor | null>(null)
|
|
let model: meditor.ITextModel
|
|
|
|
let statusDiv = $state<Element | null>(null)
|
|
let width = $state(0)
|
|
let initialized = $state(false)
|
|
let placeholderVisible = $state(false)
|
|
let mounted = $state(false)
|
|
|
|
let valueAfterDispose: string | undefined = undefined
|
|
let {
|
|
lang,
|
|
code = $bindable(),
|
|
hash = createHash(),
|
|
cmdEnterAction,
|
|
formatAction,
|
|
automaticLayout = true,
|
|
extraLib = '',
|
|
placeholder = '',
|
|
disableSuggestions = false,
|
|
disableLinting = false,
|
|
hideLineNumbers = false,
|
|
shouldBindKey = true,
|
|
autoHeight = false,
|
|
fixedOverflowWidgets = true,
|
|
small = false,
|
|
domLib = false,
|
|
autofocus = false,
|
|
allowVim = false,
|
|
tailwindClasses = [],
|
|
class: className = '',
|
|
loadAsync = false,
|
|
key,
|
|
disabled = false,
|
|
minHeight = 1000,
|
|
renderLineHighlight = 'none',
|
|
suggestion
|
|
}: {
|
|
lang: string
|
|
code?: string
|
|
hash?: string
|
|
cmdEnterAction?: () => void
|
|
formatAction?: () => void
|
|
automaticLayout?: boolean
|
|
extraLib?: string
|
|
placeholder?: string
|
|
disableSuggestions?: boolean
|
|
disableLinting?: boolean
|
|
hideLineNumbers?: boolean
|
|
shouldBindKey?: boolean
|
|
autoHeight?: boolean
|
|
fixedOverflowWidgets?: boolean
|
|
small?: boolean
|
|
domLib?: boolean
|
|
autofocus?: boolean
|
|
allowVim?: boolean
|
|
tailwindClasses?: string[]
|
|
class?: string
|
|
loadAsync?: boolean
|
|
initialCursorPos?: IPosition
|
|
key?: string
|
|
disabled?: boolean
|
|
minHeight?: number
|
|
renderLineHighlight?: 'all' | 'line' | 'gutter' | 'none'
|
|
suggestion?: string
|
|
} = $props()
|
|
|
|
let yPadding = MONACO_Y_PADDING
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
const uri = `file:///${hash}.${langToExt(lang)}`
|
|
|
|
export function getCode(): string {
|
|
if (valueAfterDispose != undefined) {
|
|
return valueAfterDispose
|
|
}
|
|
return editor?.getValue() ?? ''
|
|
}
|
|
|
|
export function insertAtCursor(code: string): void {
|
|
if (editor) {
|
|
editor.trigger('keyboard', 'type', { text: code })
|
|
}
|
|
}
|
|
|
|
export function setCode(ncode: string, formatCode?: boolean): void {
|
|
if (ncode != code) {
|
|
code = ncode
|
|
}
|
|
editor?.setValue(ncode)
|
|
if (formatCode) {
|
|
format()
|
|
}
|
|
}
|
|
|
|
export function formatCode(): void {
|
|
format()
|
|
}
|
|
|
|
function updateCode() {
|
|
const ncode = getCode()
|
|
if (code == ncode) {
|
|
return
|
|
}
|
|
code = ncode
|
|
dispatch('change', { code: ncode })
|
|
}
|
|
|
|
function updatePlaceholderVisibility(value: string) {
|
|
if (!value) {
|
|
placeholderVisible = true
|
|
return
|
|
}
|
|
placeholderVisible = value.trim() === ''
|
|
}
|
|
|
|
export function format() {
|
|
if (editor) {
|
|
updateCode()
|
|
editor.getAction('editor.action.formatDocument')?.run()
|
|
if (formatAction) {
|
|
formatAction()
|
|
updateCode()
|
|
}
|
|
}
|
|
}
|
|
|
|
export function focus() {
|
|
editor?.focus()
|
|
}
|
|
|
|
export function getSelectedLines(): string | undefined {
|
|
if (editor) {
|
|
const selection = editor.getSelection()
|
|
if (selection) {
|
|
const range: IRange = {
|
|
startLineNumber: selection.startLineNumber,
|
|
startColumn: 1,
|
|
endLineNumber: selection.endLineNumber + 1,
|
|
endColumn: 1
|
|
}
|
|
return editor.getModel()?.getValueInRange(range)
|
|
}
|
|
}
|
|
}
|
|
|
|
export function onDidChangeCursorSelection(f: (e: meditor.ICursorSelectionChangedEvent) => void) {
|
|
if (editor) {
|
|
return editor.onDidChangeCursorSelection(f)
|
|
}
|
|
}
|
|
|
|
export function show(): void {
|
|
divEl?.classList.remove('hidden')
|
|
}
|
|
|
|
export function hide(): void {
|
|
divEl?.classList.add('hidden')
|
|
}
|
|
let vimDisposable: IDisposable | undefined = undefined
|
|
|
|
$effect(() => {
|
|
if (allowVim && editor !== null && $vimMode && statusDiv) {
|
|
untrack(() => onVimMode())
|
|
}
|
|
})
|
|
|
|
$effect(() => {
|
|
if (!$vimMode && vimDisposable) {
|
|
untrack(() => onVimDisable())
|
|
}
|
|
})
|
|
$effect(() => {
|
|
editor?.updateOptions({
|
|
lineNumbers: $relativeLineNumbers ? 'relative' : 'on'
|
|
})
|
|
})
|
|
|
|
function onVimDisable() {
|
|
vimDisposable?.dispose()
|
|
}
|
|
|
|
function onVimMode() {
|
|
if (editor && statusDiv) {
|
|
vimDisposable = initVim(editor, statusDiv, () => {
|
|
console.log('vim save not possible for simple editor')
|
|
})
|
|
}
|
|
}
|
|
|
|
function updateModelAndOptions() {
|
|
const model = editor?.getModel()
|
|
if (model) {
|
|
// Switch language if it changed
|
|
if (model.getLanguageId() !== lang) {
|
|
const currentCode = model.getValue()
|
|
const uri = `file:///${hash}.${langToExt(lang)}`
|
|
const oldModel = model
|
|
const newModel = meditor.createModel(currentCode, lang, mUri.parse(uri))
|
|
editor?.setModel(newModel)
|
|
oldModel.dispose()
|
|
}
|
|
|
|
// Update editor options for suggestions, validation decorations, and line numbers
|
|
editor?.updateOptions({
|
|
quickSuggestions: disableSuggestions
|
|
? { other: false, comments: false, strings: false }
|
|
: { other: true, comments: true, strings: true },
|
|
suggestOnTriggerCharacters: !disableSuggestions,
|
|
wordBasedSuggestions: disableSuggestions ? 'off' : 'matchingDocuments',
|
|
parameterHints: { enabled: !disableSuggestions },
|
|
suggest: {
|
|
showIcons: !disableSuggestions,
|
|
showSnippets: !disableSuggestions,
|
|
showKeywords: !disableSuggestions,
|
|
showWords: !disableSuggestions,
|
|
snippetsPreventQuickSuggestions: disableSuggestions
|
|
},
|
|
lineNumbers: hideLineNumbers ? 'off' : 'on',
|
|
lineDecorationsWidth: hideLineNumbers ? 0 : 6,
|
|
lineNumbersMinChars: hideLineNumbers ? 0 : 2,
|
|
// Hide validation squiggles and decorations
|
|
renderValidationDecorations: disableLinting ? 'off' : 'on',
|
|
// Hide the validation margin indicators
|
|
hideCursorInOverviewRuler: disableLinting,
|
|
overviewRulerBorder: !disableLinting,
|
|
overviewRulerLanes: disableLinting ? 0 : 3
|
|
})
|
|
}
|
|
}
|
|
|
|
$effect(() => {
|
|
if (editor !== null && (lang || disableLinting || disableSuggestions || hideLineNumbers)) {
|
|
untrack(() => updateModelAndOptions())
|
|
}
|
|
})
|
|
|
|
let fontSize = $derived(small ? 12 : 13.5)
|
|
|
|
async function loadMonaco() {
|
|
setMonacoJsonOptions()
|
|
setMonacoJavascriptOptions()
|
|
await initializeVscode()
|
|
initialized = true
|
|
|
|
try {
|
|
model = meditor.createModel(code ?? '', lang, mUri.parse(uri))
|
|
} catch (err) {
|
|
console.log('model already existed', err)
|
|
const nmodel = meditor.getModel(mUri.parse(uri))
|
|
if (!nmodel) {
|
|
throw err
|
|
}
|
|
model = nmodel
|
|
}
|
|
model.updateOptions(updateOptions)
|
|
// let widgets: HTMLElement | undefined =
|
|
// document.getElementById('monaco-widgets-root') ?? undefined
|
|
|
|
if (!divEl) {
|
|
return
|
|
}
|
|
try {
|
|
editor = meditor.create(divEl as HTMLDivElement, {
|
|
...editorConfig(
|
|
code ?? '',
|
|
lang,
|
|
automaticLayout,
|
|
fixedOverflowWidgets,
|
|
$relativeLineNumbers
|
|
),
|
|
model,
|
|
...(yPadding !== undefined ? { padding: { bottom: yPadding, top: yPadding } } : {}),
|
|
renderLineHighlight,
|
|
lineDecorationsWidth: 0,
|
|
lineNumbersMinChars: 2,
|
|
fontSize: fontSize,
|
|
quickSuggestions: disableSuggestions
|
|
? { other: false, comments: false, strings: false }
|
|
: { other: true, comments: true, strings: true },
|
|
suggestOnTriggerCharacters: !disableSuggestions,
|
|
wordBasedSuggestions: disableSuggestions ? 'off' : 'matchingDocuments',
|
|
parameterHints: { enabled: !disableSuggestions },
|
|
suggest: {
|
|
showIcons: !disableSuggestions,
|
|
showSnippets: !disableSuggestions,
|
|
showKeywords: !disableSuggestions,
|
|
showWords: !disableSuggestions,
|
|
snippetsPreventQuickSuggestions: disableSuggestions
|
|
}
|
|
})
|
|
if (key && editorPositionMap?.[key]) {
|
|
editor.setPosition(editorPositionMap[key])
|
|
editor.revealPositionInCenterIfOutsideViewport(editorPositionMap[key])
|
|
}
|
|
} catch (e) {
|
|
console.error('Error loading monaco:', e)
|
|
return
|
|
}
|
|
keepModelAroundToAvoidDisposalOfWorkers()
|
|
|
|
// In VSCode webview (iframe), clipboard operations need special handling
|
|
// because the webview has restricted clipboard API access
|
|
if (window.parent !== window) {
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyCode.KeyC, function () {
|
|
document.execCommand('copy')
|
|
})
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyCode.KeyX, function () {
|
|
document.execCommand('cut')
|
|
})
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyCode.KeyV, async function () {
|
|
inputEl?.focus()
|
|
document.execCommand('paste')
|
|
})
|
|
}
|
|
|
|
let timeoutModel: number | undefined = undefined
|
|
editor.onDidChangeModelContent((event) => {
|
|
timeoutModel && clearTimeout(timeoutModel)
|
|
timeoutModel = setTimeout(() => {
|
|
updateCode()
|
|
}, 200)
|
|
})
|
|
editor.onDidChangeCursorPosition((event) => {
|
|
if (key) editorPositionMap[key] = event.position
|
|
})
|
|
|
|
editor.onDidFocusEditorText(() => {
|
|
if (!editor) return
|
|
dispatch('focus')
|
|
loadExtraLib()
|
|
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyCode.KeyS, function () {
|
|
updateCode()
|
|
shouldBindKey && format && format()
|
|
})
|
|
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.Digit7, function () {
|
|
// CMD + slash (toggle comment) on some EU keyboards
|
|
editor?.trigger('keyboard', 'editor.action.commentLine', {})
|
|
})
|
|
})
|
|
|
|
if (autoHeight) {
|
|
const updateHeight = () => {
|
|
if (!editor) return
|
|
const contentHeight = Math.min(minHeight, editor.getContentHeight())
|
|
if (divEl) {
|
|
divEl.style.height = `${contentHeight}px`
|
|
}
|
|
try {
|
|
editor.layout({ width, height: contentHeight })
|
|
} finally {
|
|
}
|
|
}
|
|
editor.onDidContentSizeChange(updateHeight)
|
|
updateHeight()
|
|
}
|
|
|
|
editor.onDidFocusEditorText(() => {
|
|
if (!editor) return
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyCode.KeyS, function () {
|
|
updateCode()
|
|
shouldBindKey && format && format()
|
|
})
|
|
|
|
editor.addCommand(KeyMod.CtrlCmd | KeyCode.Enter, function () {
|
|
updateCode()
|
|
shouldBindKey && cmdEnterAction && cmdEnterAction()
|
|
})
|
|
dispatch('focus')
|
|
})
|
|
|
|
editor.onDidBlurEditorText(() => {
|
|
dispatch('blur')
|
|
updateCode()
|
|
})
|
|
|
|
if (lang === 'css' && !cssClassesLoaded) {
|
|
cssClassesLoaded = true
|
|
addCSSClassCompletions()
|
|
}
|
|
|
|
if (lang === 'tailwindcss' && !tailwindClassesLoaded) {
|
|
languages.register({ id: 'tailwindcss' })
|
|
tailwindClassesLoaded = true
|
|
addTailwindClassCompletions()
|
|
}
|
|
|
|
if (placeholder) {
|
|
editor.onDidChangeModelContent(() => {
|
|
if (!editor) return
|
|
const value = editor.getValue()
|
|
updatePlaceholderVisibility(value)
|
|
})
|
|
}
|
|
}
|
|
|
|
function addCSSClassCompletions() {
|
|
languages.registerCompletionItemProvider('css', {
|
|
provideCompletionItems: function (model, position, context, token) {
|
|
const word = model.getWordUntilPosition(position)
|
|
const range = {
|
|
startLineNumber: position.lineNumber,
|
|
startColumn: word.startColumn,
|
|
endLineNumber: position.lineNumber,
|
|
endColumn: word.endColumn
|
|
}
|
|
|
|
if (word && word.word) {
|
|
const currentWord = word.word
|
|
|
|
const suggestions = allClasses
|
|
.filter((className) => className.includes(currentWord))
|
|
.map((className) => ({
|
|
label: className,
|
|
kind: languages.CompletionItemKind.Class,
|
|
insertText: className,
|
|
documentation: 'Custom CSS class',
|
|
range: range
|
|
}))
|
|
|
|
return { suggestions }
|
|
}
|
|
|
|
return { suggestions: [] }
|
|
}
|
|
})
|
|
}
|
|
|
|
function addTailwindClassCompletions() {
|
|
// Define a custom word definition for Tailwind classes
|
|
languages.setMonarchTokensProvider('tailwindcss', {
|
|
tokenizer: {
|
|
root: [[/[a-zA-Z0-9-]+/, 'tailwind-class']]
|
|
}
|
|
})
|
|
|
|
languages.registerCompletionItemProvider('tailwindcss', {
|
|
triggerCharacters: ['-'],
|
|
provideCompletionItems: function (model, position, context, token) {
|
|
const wordUntilPosition = model.getWordUntilPosition(position)
|
|
const lineContent = model.getLineContent(position.lineNumber)
|
|
|
|
// Get the text from the start of the line to the cursor
|
|
const textUntilPosition = lineContent.substring(0, position.column - 1)
|
|
// Find the last space before the cursor
|
|
const lastSpaceIndex = textUntilPosition.lastIndexOf(' ')
|
|
const startColumn = lastSpaceIndex === -1 ? 1 : lastSpaceIndex + 2
|
|
|
|
const range = {
|
|
startLineNumber: position.lineNumber,
|
|
startColumn: startColumn,
|
|
endLineNumber: position.lineNumber,
|
|
endColumn: position.column
|
|
}
|
|
|
|
const currentWord = wordUntilPosition.word
|
|
|
|
const suggestions = tailwindClasses
|
|
.filter((className) => className.includes(currentWord))
|
|
.map((className) => ({
|
|
label: className,
|
|
kind: languages.CompletionItemKind.Class,
|
|
insertText: className,
|
|
documentation: 'Tailwind CSS class',
|
|
range: range,
|
|
preselect: true
|
|
}))
|
|
|
|
return { suggestions }
|
|
}
|
|
})
|
|
}
|
|
|
|
let previousExtraLib: string | undefined = undefined
|
|
function loadExtraLib() {
|
|
if (lang == 'javascript') {
|
|
const stdLib = { content: libStdContent, filePath: 'es6.d.ts' }
|
|
const libs = [stdLib]
|
|
if (domLib) {
|
|
const domDTS = { content: domContent, filePath: 'dom.d.ts' }
|
|
libs.push(domDTS)
|
|
}
|
|
if (extraLib != '') {
|
|
libs.push({
|
|
content: extraLib,
|
|
filePath: 'windmill.d.ts'
|
|
})
|
|
if (previousExtraLib == extraLib) {
|
|
return
|
|
}
|
|
previousExtraLib = extraLib
|
|
}
|
|
javascriptDefaults.setExtraLibs(libs)
|
|
}
|
|
}
|
|
|
|
onMount(async () => {
|
|
if (BROWSER) {
|
|
if (loadAsync) {
|
|
setTimeout(async () => {
|
|
await loadMonaco()
|
|
mounted = true
|
|
if (autofocus) setTimeout(() => focus(), 0)
|
|
}, 0)
|
|
} else {
|
|
await loadMonaco()
|
|
mounted = true
|
|
if (autofocus) setTimeout(() => focus(), 0)
|
|
}
|
|
}
|
|
})
|
|
|
|
$effect(() => {
|
|
if (mounted && extraLib && initialized) {
|
|
untrack(() => loadExtraLib())
|
|
}
|
|
})
|
|
|
|
onDestroy(() => {
|
|
try {
|
|
valueAfterDispose = getCode()
|
|
vimDisposable?.dispose()
|
|
model && model.dispose()
|
|
editor && editor.dispose()
|
|
} catch (err) {}
|
|
})
|
|
|
|
export function setCursorToEnd(): void {
|
|
if (editor) {
|
|
const lastLine = editor.getModel()?.getLineCount() ?? 1
|
|
const lastColumn = editor.getModel()?.getLineMaxColumn(lastLine) ?? 1
|
|
editor.setPosition({ lineNumber: lastLine, column: lastColumn })
|
|
editor.focus()
|
|
}
|
|
}
|
|
|
|
updatePlaceholderVisibility(code ?? '')
|
|
|
|
let inputEl = $state<HTMLInputElement | null>(null)
|
|
let pasteValue = $state('')
|
|
$effect(() => {
|
|
if (inputEl && pasteValue) {
|
|
untrack(() => {
|
|
editor?.executeEdits('paste', [
|
|
{
|
|
range: editor?.getSelection() ?? {
|
|
startLineNumber: 1,
|
|
startColumn: 1,
|
|
endLineNumber: 1,
|
|
endColumn: 1
|
|
},
|
|
text: pasteValue,
|
|
forceMoveMarkers: true
|
|
}
|
|
])
|
|
pasteValue = ''
|
|
})
|
|
}
|
|
})
|
|
</script>
|
|
|
|
{#if parent.window !== window}
|
|
<input
|
|
style="height: 0; width: 0; opacity: 0; position: absolute; top: 0; left: 0; z-index: -1;"
|
|
type="text"
|
|
bind:this={inputEl}
|
|
bind:value={pasteValue}
|
|
/>
|
|
{/if}
|
|
<EditorTheme />
|
|
{#if !editor || suggestion}
|
|
<FakeMonacoPlaceHolder
|
|
code={suggestion || code}
|
|
autoheight
|
|
lineNumbersWidth={hideLineNumbers ? 0 : (23 * fontSize) / 14}
|
|
lineNumbersOffset={fontSize == 14 ? -8 : -11}
|
|
{fontSize}
|
|
showNumbers={!hideLineNumbers}
|
|
/>
|
|
{/if}
|
|
<div
|
|
bind:this={divEl}
|
|
class={twMerge(
|
|
'relative editor simple-editor',
|
|
className,
|
|
suggestion ? 'absolute opacity-0 pointer-events-none' : '',
|
|
!editor ? 'hidden' : '',
|
|
disabled ? 'disabled' : '',
|
|
!allowVim ? 'nonmain-editor' : ''
|
|
)}
|
|
bind:clientWidth={width}
|
|
>
|
|
{#if placeholder}
|
|
<div
|
|
id="placeholder"
|
|
class="absolute text-gray-500 text-sm pointer-events-none font-mono z-10 {placeholderVisible
|
|
? ''
|
|
: 'hidden'}"
|
|
>
|
|
{@html placeholder}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
{#if allowVim && vimMode}
|
|
<div class="fixed bottom-0 z-30" bind:this={statusDiv}></div>
|
|
{/if}
|
|
|
|
<style lang="postcss">
|
|
.editor {
|
|
@apply rounded-md p-0;
|
|
}
|
|
|
|
.small-editor {
|
|
/* stylelint-disable-next-line unit-allowed-list */
|
|
height: 26vh;
|
|
}
|
|
|
|
.few-lines-editor {
|
|
/* stylelint-disable-next-line unit-allowed-list */
|
|
height: 100px;
|
|
}
|
|
</style>
|