{"version":3,"file":"deja-js-component-monaco-editor.mjs","sources":["../../../../projects/deja-js/component/monaco-editor/options/editor-options.model.ts","../../../../projects/deja-js/component/monaco-editor/monaco-editor.service.ts","../../../../projects/deja-js/component/monaco-editor/monaco-editor.component.ts","../../../../projects/deja-js/component/monaco-editor/options/editor-scrollbar-options.model.ts","../../../../projects/deja-js/component/monaco-editor/index.ts","../../../../projects/deja-js/component/monaco-editor/deja-js-component-monaco-editor.ts"],"sourcesContent":["/*\n *  @license\n *  Copyright Hôpitaux Universitaires de Genève. All Rights Reserved.\n *\n *  Use of this source code is governed by an Apache-2.0 license that can be\n *  found in the LICENSE file at https://github.com/DSI-HUG/dejajs-components/blob/master/LICENSE\n */\n\nimport { NumberInput } from '@angular/cdk/coercion';\n\nimport { EditorScrollbarOptions } from './editor-scrollbar-options.model';\n\n/**\n * Configuration options for the editor.\n */\nexport class EditorOptions {\n    [key: string]: unknown;\n    /**\n     * Enable experimental screen reader support.\n     * Defaults to `true`.\n     */\n    public experimentalScreenReader?: boolean;\n    /**\n     * The aria label for the editor's textarea (when it is focused).\n     */\n    public ariaLabel?: string;\n    /**\n     * Render vertical lines at the specified columns.\n     * Defaults to empty array.\n     */\n    public rulers?: number[];\n    /**\n     * A string containing the word separators used when doing word navigation.\n     * Defaults to `~!@#$%^&*()-=+[{]}\\\\|;:\\'\",.<>/?\n     */\n    public wordSeparators?: string;\n    /**\n     * Enable Linux primary clipboard.\n     * Defaults to true.\n     */\n    public selectionClipboard?: boolean;\n    /**\n     * Control the rendering of line numbers.\n     * If it is a function, it will be invoked when rendering a line number and the return value will be rendered.\n     * Otherwise, if it is a truey, line numbers will be rendered normally (equivalent of using an identity function).\n     * Otherwise, line numbers will not be rendered.\n     * Defaults to true.\n     */\n    public lineNumbers?: 'on' | 'off' | 'relative' | ((lineNumber: number) => string);\n    /**\n     * Should the corresponding line be selected when clicking on the line number?\n     * Defaults to true.\n     */\n    public selectOnLineNumbers?: boolean;\n    /**\n     * Control the width of line numbers, by reserving horizontal space for rendering at least an amount of digits.\n     * Defaults to 5.\n     */\n    public lineNumbersMinChars?: number;\n    /**\n     * Enable the rendering of the glyph margin.\n     * Defaults to true in vscode and to false in monaco-editor.\n     */\n    public glyphMargin?: boolean;\n    /**\n     * The width reserved for line decorations (in px).\n     * Line decorations are placed between line numbers and the editor content.\n     * You can pass in a string in the format floating point followed by \"ch\". e.g. 1.3ch.\n     * Defaults to 10.\n     */\n    public lineDecorationsWidth?: NumberInput;\n    /**\n     * When revealing the cursor, a virtual padding (px) is added to the cursor, turning it into a rectangle.\n     * This virtual padding ensures that the cursor gets revealed before hitting the edge of the viewport.\n     * Defaults to 30 (px).\n     */\n    public revealHorizontalRightPadding?: number;\n    /**\n     * Render the editor selection with rounded borders.\n     * Defaults to true.\n     */\n    public roundedSelection?: boolean;\n    /**\n     * Theme to be used for rendering.\n     * The current out-of-the-box available themes are: 'vs' (default), 'vs-dark', 'hc-black'.\n     * You can create custom themes via `monaco.editor.defineTheme`.\n     */\n    public theme?: string;\n    /**\n     * Should the editor be read only.\n     * Defaults to false.\n     */\n    public readOnly?: boolean;\n    /**\n     * Control the behavior and rendering of the scrollbars.\n     */\n    public scrollbar?: EditorScrollbarOptions;\n    /**\n     * Display overflow widgets as `fixed`.\n     * Defaults to `false`.\n     */\n    public fixedOverflowWidgets?: boolean;\n    /**\n     * The number of vertical lanes the overview ruler should render.\n     * Defaults to 2.\n     */\n    public overviewRulerLanes?: number;\n    /**\n     * Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid'.\n     * Defaults to 'blink'.\n     */\n    public cursorBlinking?: string;\n    /**\n     * Zoom the font in the editor when using the mouse wheel in combination with holding Ctrl.\n     * Defaults to false.\n     */\n    public mouseWheelZoom?: boolean;\n    /**\n     * Control the cursor style, either 'block' or 'line'.\n     * Defaults to 'line'.\n     */\n    public cursorStyle?: string;\n    /**\n     * Enable font ligatures.\n     * Defaults to false.\n     */\n    public fontLigatures?: boolean;\n    /**\n     * Disable the use of `translate3d`.\n     * Defaults to false.\n     */\n    public disableTranslate3d?: boolean;\n    /**\n     * Disable the optimizations for monospace fonts.\n     * Defaults to false.\n     */\n    public disableMonospaceOptimizations?: boolean;\n    /**\n     * Should the cursor be hidden in the overview ruler.\n     * Defaults to false.\n     */\n    public hideCursorInOverviewRuler?: boolean;\n    /**\n     * Enable that scrolling can go one screen size after the last line.\n     * Defaults to true.\n     */\n    public scrollBeyondLastLine?: boolean;\n    /**\n     * Enable that the editor will install an interval to check if its container dom node size has changed.\n     * Enabling this might have a severe performance impact.\n     * Defaults to false.\n     */\n    public automaticLayout?: boolean;\n    /**\n     * Control the wrapping strategy of the editor.\n     * Using -1 means no wrapping whatsoever.\n     * Using 0 means viewport width wrapping (ajusts with the resizing of the editor).\n     * Using a positive number means wrapping after a fixed number of characters.\n     * Defaults to 300.\n     */\n    public wrappingColumn?: number;\n    /**\n     * Control the alternate style of viewport wrapping.\n     * When set to true viewport wrapping is used only when the window width is less than the number of columns specified in the wrappingColumn property. Has no effect if wrappingColumn is not a positive number.\n     * Defaults to false.\n     */\n    public wordWrap?: boolean;\n    /**\n     * Control indentation of wrapped lines. Can be: 'none', 'same' or 'indent'.\n     * Defaults to 'same' in vscode and to 'none' in monaco-editor.\n     */\n    public wrappingIndent?: string;\n    /**\n     * Configure word wrapping characters. A break will be introduced before these characters.\n     * Defaults to '{([+'.\n     */\n    public wordWrapBreakBeforeCharacters?: string;\n    /**\n     * Configure word wrapping characters. A break will be introduced after these characters.\n     * Defaults to ' \\t})]?|&,;'.\n     */\n    public wordWrapBreakAfterCharacters?: string;\n    /**\n     * Configure word wrapping characters. A break will be introduced after these characters only if no `wordWrapBreakBeforeCharacters` or `wordWrapBreakAfterCharacters` were found.\n     * Defaults to '.'.\n     */\n    public wordWrapBreakObtrusiveCharacters?: string;\n    /**\n     * Performance guard: Stop rendering a line after x characters.\n     * Defaults to 10000 if wrappingColumn is -1. Defaults to -1 if wrappingColumn is >= 0.\n     * Use -1 to never stop rendering\n     */\n    public stopRenderingLineAfter?: number;\n    /**\n     * Enable hover.\n     * Defaults to true.\n     */\n    public hover?: boolean;\n    /**\n     * Enable custom contextmenu.\n     * Defaults to true.\n     */\n    public contextmenu?: boolean;\n    /**\n     * A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events.\n     * Defaults to 1.\n     */\n    public mouseWheelScrollSensitivity?: number;\n    /**\n     * Enable quick suggestions (shadow suggestions)\n     * Defaults to true.\n     */\n    public quickSuggestions?: boolean;\n    /**\n     * Quick suggestions show delay (in ms)\n     * Defaults to 500 (ms)\n     */\n    public quickSuggestionsDelay?: number;\n    /**\n     * Enables parameter hints\n     */\n    public parameterHints?: boolean;\n    /**\n     * Render icons in suggestions box.\n     * Defaults to true.\n     */\n    public iconsInSuggestions?: boolean;\n    /**\n     * Enable auto closing brackets.\n     * Defaults to true.\n     */\n    public autoClosingBrackets?: boolean;\n    /**\n     * Enable format on type.\n     * Defaults to false.\n     */\n    public formatOnType?: boolean;\n    /**\n     * Enable format on paste.\n     * Defaults to false.\n     */\n    public formatOnPaste?: boolean;\n    /**\n     * Enable the suggestion box to pop-up on trigger characters.\n     * Defaults to true.\n     */\n    public suggestOnTriggerCharacters?: boolean;\n    /**\n     * Accept suggestions on ENTER.\n     * Defaults to true.\n     */\n    public acceptSuggestionOnEnter?: boolean;\n    /**\n     * Accept suggestions on provider defined characters.\n     * Defaults to true.\n     */\n    public acceptSuggestionOnCommitCharacter?: boolean;\n    /**\n     * Enable snippet suggestions. Default to 'true'.\n     */\n    public snippetSuggestions?: 'top' | 'bottom' | 'inline' | 'none';\n    /**\n     * Copying without a selection copies the current line.\n     */\n    public emptySelectionClipboard?: boolean;\n    /**\n     * Enable tab completion. Defaults to 'false'\n     */\n    public tabCompletion?: boolean;\n    /**\n     * Enable word based suggestions. Defaults to 'true'\n     */\n    public wordBasedSuggestions?: boolean;\n    /**\n     * The font size for the suggest widget.\n     * Defaults to the editor font size.\n     */\n    public suggestFontSize?: number;\n    /**\n     * The line height for the suggest widget.\n     * Defaults to the editor line height.\n     */\n    public suggestLineHeight?: number;\n    /**\n     * Enable selection highlight.\n     * Defaults to true.\n     */\n    public selectionHighlight?: boolean;\n    /**\n     * Show code lens\n     * Defaults to true.\n     */\n    public codeLens?: boolean;\n    /**\n     * Enable code folding\n     * Defaults to true in vscode and to false in monaco-editor.\n     */\n    public folding?: boolean;\n    /**\n     * Enable rendering of whitespace.\n     * Defaults to none.\n     */\n    public renderWhitespace?: 'none' | 'boundary' | 'all';\n    /**\n     * Enable rendering of control characters.\n     * Defaults to false.\n     */\n    public renderControlCharacters?: boolean;\n    /**\n     * Enable rendering of indent guides.\n     * Defaults to false.\n     */\n    public renderIndentGuides?: boolean;\n    /**\n     * Enable rendering of current line highlight.\n     * Defaults to all.\n     */\n    public renderLineHighlight?: 'none' | 'gutter' | 'line' | 'all';\n    /**\n     * Inserting and deleting whitespace follows tab stops.\n     */\n    public useTabStops?: boolean;\n    /**\n     * The font family\n     */\n    public fontFamily?: string;\n    /**\n     * The font weight\n     */\n    public fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | 'initial' | 'inherit' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';\n    /**\n     * The font size\n     */\n    public fontSize?: number;\n    /**\n     * The line height\n     */\n    public lineHeight?: number;\n    /**\n     * Content to show\n     */\n    public value: string;\n    /**\n     * Language of content to show\n     */\n    public language: 'bat' | 'c' | 'cpp' | 'csharp' | 'css' | 'dockerfile' | 'fsharp' | 'go' | 'graphql' | 'handlebars' | 'html' | 'ini' | 'jade' | 'javascript' | 'json' | 'less' | 'lua' | 'markdown' | 'objective-c' | 'php' | 'csharp' | 'plaintext' | 'postiats' | 'powershell' | 'python' | 'r' | 'razor' | 'ruby' | 'scss' | 'sql' | 'swift' | 'typescript' | 'vb' | 'xml' | 'yaml';\n}\n","/*\n *  @license\n *  Copyright Hôpitaux Universitaires de Genève. All Rights Reserved.\n *\n *  Use of this source code is governed by an Apache-2.0 license that can be\n *  found in the LICENSE file at https://github.com/DSI-HUG/dejajs-components/blob/master/LICENSE\n */\n\n/* eslint-disable @typescript-eslint/no-unsafe-call */\n/* eslint-disable @typescript-eslint/no-unsafe-member-access */\n/* eslint-disable @typescript-eslint/no-unsafe-assignment */\n\nimport { Injectable } from '@angular/core';\n\n/**\n * Monaco Editor Service\n *\n * Service used by Monaco Editor Component to load only once instance of the Monaco Editor Library\n */\n@Injectable()\nexport class MonacoEditorService {\n\n    private _loading: boolean;\n    private _loader: Promise<void>;\n\n    /**\n     * Load the Monaco Editor Library\n     *\n     * @return Resolved promise when the library is loaded\n     */\n    public initMonacoLib(): Promise<void> {\n        if (!this._loading) {\n            this.init();\n        }\n\n        return this._loader;\n    }\n\n    private init(): void {\n        this._loader = new Promise<void>(resolve => {\n            this._loading = true;\n            const baseElement = document.getElementsByTagName('base')[0] || {} as HTMLBaseElement;\n            const baseHref = baseElement.href;\n            // eslint-disable-next-line @typescript-eslint/no-explicit-any\n            const wnd = <any>window;\n            const basePath = wnd.MONACOEDITOR_BASEPATH || `${baseHref}assets/monaco/vs`;\n\n            const onGotAmdLoader = (): void => {\n                // Load monaco\n                // eslint-disable-next-line @typescript-eslint/no-unsafe-call\n                wnd.require.config({ paths: { vs: basePath } });\n                wnd.require(['vs/editor/editor.main'], () => {\n                    resolve();\n                });\n            };\n\n            // Load AMD loader if necessary\n            if (!wnd.require && !wnd.monaco) {\n                const loaderScript = document.createElement('script');\n                loaderScript.type = 'text/javascript';\n                loaderScript.src = `${basePath as string}/loader.js`;\n                loaderScript.addEventListener('load', onGotAmdLoader);\n                document.body.appendChild(loaderScript);\n            } else {\n                onGotAmdLoader();\n            }\n        });\n    }\n}\n","/*\n *  @license\n *  Copyright Hôpitaux Universitaires de Genève. All Rights Reserved.\n *\n *  Use of this source code is governed by an Apache-2.0 license that can be\n *  found in the LICENSE file at https://github.com/DSI-HUG/dejajs-components/blob/master/LICENSE\n */\n\n/* eslint-disable @typescript-eslint/no-unsafe-assignment */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n/* eslint-disable @typescript-eslint/no-unsafe-call */\n/* eslint-disable @typescript-eslint/no-unsafe-member-access */\n/* eslint-disable @typescript-eslint/no-unsafe-return */\n\nimport { AfterViewInit, Component, ElementRef, EventEmitter, HostListener, Input, OnChanges, OnDestroy, Optional, Output, Self, ViewChild, ViewEncapsulation } from '@angular/core';\nimport { ControlValueAccessor, NgControl } from '@angular/forms';\n\nimport { MonacoEditorService } from './monaco-editor.service';\nimport { EditorOptions } from './options/editor-options.model';\nimport { EditorScrollbarOptions } from './options/editor-scrollbar-options.model';\n\ndeclare const monaco: any;\n\nexport type Languages = 'bat' | 'c' | 'cpp' | 'csharp' | 'css' | 'dockerfile' | 'fsharp' | 'go' | 'handlebars' | 'html' | 'ini' | 'jade' | 'javascript' | 'json' | 'less' | 'lua' | 'markdown' | 'objective-c' | 'php' | 'plaintext' | 'postiats' | 'powershell' | 'python' | 'r' | 'razor' | 'ruby' | 'scss' | 'sql' | 'swift' | 'typescript' | 'vb' | 'xml' | 'yaml';\n\n/**\n * Monaco Editor Component for Angular\n *\n * The Monaco Editor is the code editor that powers [VS Code](https://github.com/Microsoft/vscode), a good page describing the code editor's features is [here](https://code.visualstudio.com/docs/editor/editingevolved).\n */\n@Component({\n    encapsulation: ViewEncapsulation.None,\n    selector: 'deja-monaco-editor',\n    styleUrls: [\n        './monaco-editor.component.scss'\n    ],\n    template: '<div #editor resize-listener (sizeChanged)=\"onResize()\" class=\"monaco-editor\"></div>'\n})\nexport class DejaMonacoEditorComponent implements OnDestroy, AfterViewInit, OnChanges, ControlValueAccessor {\n    /**\n     * Enable experimental screen reader support.\n     * Defaults to `true`.\n     */\n    @Input() public experimentalScreenReader?: boolean;\n    /**\n     * The aria label for the editor's textarea (when it is focused).\n     */\n    @Input() public ariaLabel?: string;\n    /**\n     * Render vertical lines at the specified columns.\n     * Defaults to empty array.\n     */\n    @Input() public rulers?: number[];\n    /**\n     * A string containing the word separators used when doing word navigation.\n     * Defaults to `~!@#$%^&*()-=+[{]}\\\\|;:\\'\",.<>/?\n     */\n    @Input() public wordSeparators?: string;\n    /**\n     * Enable Linux primary clipboard.\n     * Defaults to `true`.\n     */\n    @Input() public selectionClipboard?: boolean;\n    /**\n     * Control the rendering of line numbers.\n     * If it is a function, it will be invoked when rendering a line number and the return value will be rendered.\n     * Otherwise, if it is a truey, line numbers will be rendered normally (equivalent of using an identity function).\n     * Otherwise, line numbers will not be rendered.\n     * Defaults to `true`.\n     */\n    @Input() public lineNumbers?: 'on' | 'off' | 'relative' | ((lineNumber: number) => string);\n    /**\n     * Should the corresponding line be selected when clicking on the line number?\n     * Defaults to `true`.\n     */\n    @Input() public selectOnLineNumbers?: boolean;\n    /**\n     * Control the width of line numbers, by reserving horizontal space for rendering at least an amount of digits.\n     * Defaults to 5.\n     */\n    @Input() public lineNumbersMinChars?: number;\n    /**\n     * Enable the rendering of the glyph margin.\n     * Defaults to true in vscode and to false in monaco-editor.\n     */\n    @Input() public glyphMargin?: boolean;\n    /**\n     * The width reserved for line decorations (in px).\n     * Line decorations are placed between line numbers and the editor content.\n     * You can pass in a string in the format floating point followed by \"ch\". e.g. 1.3ch.\n     * Defaults to 10.\n     */\n    @Input() public lineDecorationsWidth?: number;\n    /**\n     * When revealing the cursor, a virtual padding (px) is added to the cursor, turning it into a rectangle.\n     * This virtual padding ensures that the cursor gets revealed before hitting the edge of the viewport.\n     * Defaults to 30 (px).\n     */\n    @Input() public revealHorizontalRightPadding?: number;\n    /**\n     * Render the editor selection with rounded borders.\n     * Defaults to true.\n     */\n    @Input() public roundedSelection?: boolean;\n    /**\n     * Theme to be used for rendering.\n     * The current out-of-the-box available themes are: 'vs' (default), 'vs-dark', 'hc-black'.\n     * You can create custom themes via `monaco.editor.defineTheme`.\n     */\n    @Input() public theme?: string;\n    /**\n     * Should the editor be read only.\n     * Defaults to false.\n     */\n    @Input() public readOnly?: boolean;\n    /**\n     * Control the behavior and rendering of the scrollbars.\n     */\n    @Input() public scrollbar?: EditorScrollbarOptions;\n    /**\n     * Display overflow widgets as `fixed`.\n     * Defaults to `false`.\n     */\n    @Input() public fixedOverflowWidgets?: boolean;\n    /**\n     * The number of vertical lanes the overview ruler should render.\n     * Defaults to 2.\n     */\n    @Input() public overviewRulerLanes?: number;\n    /**\n     * Control the cursor animation style, possible values are 'blink', 'smooth', 'phase', 'expand' and 'solid'.\n     * Defaults to 'blink'.\n     */\n    @Input() public cursorBlinking?: string;\n    /**\n     * Zoom the font in the editor when using the mouse wheel in combination with holding Ctrl.\n     * Defaults to false.\n     */\n    @Input() public mouseWheelZoom?: boolean;\n    /**\n     * Control the cursor style, either 'block' or 'line'.\n     * Defaults to 'line'.\n     */\n    @Input() public cursorStyle?: string;\n    /**\n     * Enable font ligatures.\n     * Defaults to false.\n     */\n    @Input() public fontLigatures?: boolean;\n    /**\n     * Disable the use of `translate3d`.\n     * Defaults to false.\n     */\n    @Input() public disableTranslate3d?: boolean;\n    /**\n     * Disable the optimizations for monospace fonts.\n     * Defaults to false.\n     */\n    @Input() public disableMonospaceOptimizations?: boolean;\n    /**\n     * Should the cursor be hidden in the overview ruler.\n     * Defaults to false.\n     */\n    @Input() public hideCursorInOverviewRuler?: boolean;\n    /**\n     * Enable that scrolling can go one screen size after the last line.\n     * Defaults to true.\n     */\n    @Input() public scrollBeyondLastLine?: boolean;\n    /**\n     * Enable that the editor will install an interval to check if its container dom node size has changed.\n     * Enabling this might have a severe performance impact.\n     * Defaults to false.\n     */\n    @Input() public automaticLayout?: boolean;\n    /**\n     * Control the wrapping strategy of the editor.\n     * Using -1 means no wrapping whatsoever.\n     * Using 0 means viewport width wrapping (ajusts with the resizing of the editor).\n     * Using a positive number means wrapping after a fixed number of characters.\n     * Defaults to 300.\n     */\n    @Input() public wrappingColumn?: number;\n    /**\n     * Control the alternate style of viewport wrapping.\n     * When set to true viewport wrapping is used only when the window width is less than the number of columns specified in the wrappingColumn property. Has no effect if wrappingColumn is not a positive number.\n     * Defaults to false.\n     */\n    @Input() public wordWrap?: boolean;\n    /**\n     * Control indentation of wrapped lines. Can be: 'none', 'same' or 'indent'.\n     * Defaults to 'same' in vscode and to 'none' in monaco-editor.\n     */\n    @Input() public wrappingIndent?: string;\n    /**\n     * Configure word wrapping characters. A break will be introduced before these characters.\n     * Defaults to '{([+'.\n     */\n    @Input() public wordWrapBreakBeforeCharacters?: string;\n    /**\n     * Configure word wrapping characters. A break will be introduced after these characters.\n     * Defaults to ' \\t})]?|&,;'.\n     */\n    @Input() public wordWrapBreakAfterCharacters?: string;\n    /**\n     * Configure word wrapping characters. A break will be introduced after these characters only if no `wordWrapBreakBeforeCharacters` or `wordWrapBreakAfterCharacters` were found.\n     * Defaults to '.'.\n     */\n    @Input() public wordWrapBreakObtrusiveCharacters?: string;\n    /**\n     * Performance guard: Stop rendering a line after x characters.\n     * Defaults to 10000 if wrappingColumn is -1. Defaults to -1 if wrappingColumn is >= 0.\n     * Use -1 to never stop rendering\n     */\n    @Input() public stopRenderingLineAfter?: number;\n    /**\n     * Enable hover.\n     * Defaults to true.\n     */\n    @Input() public hover?: boolean;\n    /**\n     * Enable custom contextmenu.\n     * Defaults to true.\n     */\n    @Input() public contextmenu?: boolean;\n    /**\n     * A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events.\n     * Defaults to 1.\n     */\n    @Input() public mouseWheelScrollSensitivity?: number;\n    /**\n     * Enable quick suggestions (shadow suggestions)\n     * Defaults to true.\n     */\n    @Input() public quickSuggestions?: boolean;\n    /**\n     * Quick suggestions show delay (in ms)\n     * Defaults to 500 (ms)\n     */\n    @Input() public quickSuggestionsDelay?: number;\n    /**\n     * Enables parameter hints\n     */\n    @Input() public parameterHints?: boolean;\n    /**\n     * Render icons in suggestions box.\n     * Defaults to true.\n     */\n    @Input() public iconsInSuggestions?: boolean;\n    /**\n     * Enable auto closing brackets.\n     * Defaults to true.\n     */\n    @Input() public autoClosingBrackets?: boolean;\n    /**\n     * Enable format on type.\n     * Defaults to false.\n     */\n    @Input() public formatOnType?: boolean;\n    /**\n     * Enable format on paste.\n     * Defaults to false.\n     */\n    @Input() public formatOnPaste?: boolean;\n    /**\n     * Enable the suggestion box to pop-up on trigger characters.\n     * Defaults to true.\n     */\n    @Input() public suggestOnTriggerCharacters?: boolean;\n    /**\n     * Accept suggestions on ENTER.\n     * Defaults to true.\n     */\n    @Input() public acceptSuggestionOnEnter?: boolean;\n    /**\n     * Accept suggestions on provider defined characters.\n     * Defaults to true.\n     */\n    @Input() public acceptSuggestionOnCommitCharacter?: boolean;\n    /**\n     * Enable snippet suggestions. Default to 'true'.\n     */\n    @Input() public snippetSuggestions?: 'top' | 'bottom' | 'inline' | 'none';\n    /**\n     * Copying without a selection copies the current line.\n     */\n    @Input() public emptySelectionClipboard?: boolean;\n    /**\n     * Enable tab completion. Defaults to 'false'\n     */\n    @Input() public tabCompletion?: boolean;\n    /**\n     * Enable word based suggestions. Defaults to 'true'\n     */\n    @Input() public wordBasedSuggestions?: boolean;\n    /**\n     * The font size for the suggest widget.\n     * Defaults to the editor font size.\n     */\n    @Input() public suggestFontSize?: number;\n    /**\n     * The line height for the suggest widget.\n     * Defaults to the editor line height.\n     */\n    @Input() public suggestLineHeight?: number;\n    /**\n     * Enable selection highlight.\n     * Defaults to true.\n     */\n    @Input() public selectionHighlight?: boolean;\n    /**\n     * Show code lens\n     * Defaults to true.\n     */\n    @Input() public codeLens?: boolean;\n    /**\n     * Enable code folding\n     * Defaults to true in vscode and to false in monaco-editor.\n     */\n    @Input() public folding?: boolean;\n    /**\n     * Enable rendering of whitespace.\n     * Defaults to none.\n     */\n    @Input() public renderWhitespace?: 'none' | 'boundary' | 'all';\n    /**\n     * Enable rendering of control characters.\n     * Defaults to false.\n     */\n    @Input() public renderControlCharacters?: boolean;\n    /**\n     * Enable rendering of indent guides.\n     * Defaults to false.\n     */\n    @Input() public renderIndentGuides?: boolean;\n    /**\n     * Enable rendering of current line highlight.\n     * Defaults to all.\n     */\n    @Input() public renderLineHighlight?: 'none' | 'gutter' | 'line' | 'all';\n    /**\n     * Inserting and deleting whitespace follows tab stops.\n     */\n    @Input() public useTabStops?: boolean;\n    /**\n     * The font family\n     */\n    @Input() public fontFamily?: string;\n    /**\n     * The font weight\n     */\n    @Input() public fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | 'initial' | 'inherit' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';\n    /**\n     * The font size\n     */\n    @Input() public fontSize?: number;\n    /**\n     * The line height\n     */\n    @Input() public lineHeight?: number;\n    /**\n     * Enable the diff editor mode\n     */\n    @Input() public isDiffEditor: boolean;\n    /**\n     * Content language\n     */\n    @Input()\n    public set language(val: 'bat' | 'c' | 'cpp' | 'csharp' | 'css' | 'dockerfile' | 'fsharp' | 'go' | 'handlebars' | 'html' | 'ini' | 'jade' | 'javascript' | 'json' | 'less' | 'lua' | 'markdown' | 'objective-c' | 'php' | 'plaintext' | 'postiats' | 'powershell' | 'python' | 'r' | 'razor' | 'ruby' | 'scss' | 'sql' | 'swift' | 'typescript' | 'vb' | 'xml' | 'yaml') {\n        if (val) {\n            this._language = val;\n            if (this._editor) {\n                this.ngAfterViewInit();\n            }\n        }\n    }\n    // @Input() public language: 'bat' | 'c' | 'cpp' | 'csharp' | 'css' | 'dockerfile' | 'fsharp' | 'go' | 'handlebars' | 'html' | 'ini' | 'jade' | 'javascript' | 'json' | 'less' | 'lua' | 'markdown' | 'objective-c' | 'php' | 'csharp' | 'plaintext' | 'postiats' | 'powershell' | 'python' | 'r' | 'razor' | 'ruby' | 'scss' | 'sql' | 'swift' | 'typescript' | 'vb' | 'xml' | 'yaml';\n\n    /**\n     * Value to compare with the Value input\n     * Used only when `isDiffEditor` is set to `true`\n     */\n    @Input()\n    public set valueToCompare(v: string) {\n        if (v !== this._valueToCompare) {\n            this._valueToCompare = v;\n\n            if (this._valueToCompare === undefined || !this._valueToCompare || !this._editor) {\n                return;\n            }\n\n            if (this._editor.getEditorType() !== 'vs.editor.ICodeEditor') {\n                this.getModifiedModel().setValue(this._valueToCompare);\n            }\n        }\n    }\n\n    /**\n     * Value to show in the editor\n     */\n    @Input()\n    public set value(v: string) {\n        if (v !== this._value) {\n            this._value = v;\n\n            if (!this._editor) {\n                return;\n            }\n\n            if (this._value === undefined || !this._value) {\n                this._value = '';\n            }\n\n            this.getOriginalModel().setValue(this._value);\n            this.onChangeCallback(this._value);\n        }\n    }\n\n    /**\n     * Event triggered when value change\n     */\n    @Output()\n    public readonly valueChange = new EventEmitter();\n\n    /**\n     * Event triggered when valueToCompare change\n     */\n    @Output()\n    public readonly valueToCompareChange = new EventEmitter();\n\n    /**\n     * Event triggered when editor is initialized\n     */\n    @Output()\n    // eslint-disable-next-line @angular-eslint/no-output-on-prefix\n    public readonly onInit = new EventEmitter();\n\n    @ViewChild('editor', { static: true })\n    private editorContent: ElementRef<HTMLDivElement>;\n\n    private _editor: any;\n    private _value = '';\n    private _valueToCompare = '';\n    private _language: Languages;\n\n    /**\n     * Constructor\n     */\n    public constructor(\n        private monacoEditorService: MonacoEditorService,\n        @Self() @Optional() public control: NgControl\n    ) {\n        console.warn('@deja-js/component/deja-monaco-editor is deprecated, and will be removed in a further version. Please use @deja-js/component/v2/monaco-editor instead.');\n\n        if (this.control) {\n            this.control.valueAccessor = this;\n        }\n    }\n\n    /**\n* Triggered when windows is resized\n* Resize the component\n*/\n    @HostListener('window:resize', [])\n    public onResize(): void {\n        // Manually set monaco size because MonacoEditor doesn't work with Flexbox css\n        const myDiv: HTMLDivElement = this.editorContent.nativeElement;\n        myDiv.setAttribute('style', 'height: 100%; width: 100%;');\n        if (this._editor) {\n            this._editor.layout();\n        }\n    }\n\n    /**\n     * Load Monaco Editor library\n     */\n    public ngAfterViewInit(): void {\n        void this.monacoEditorService.initMonacoLib().then(() => {\n            this.initEditor();\n        });\n    }\n\n    /**\n     * Lifecycle hook that is called when a directive, pipe or service is destroyed.\n     */\n    public ngOnDestroy(): void {\n        this.dispose();\n    }\n\n    /**\n     * Lifecycle hook that is called when any data-bound property of a directive changes.\n     */\n    public ngOnChanges(): void {\n        if (this._editor) {\n            this._editor.updateOptions(this.getOptions());\n        }\n    }\n\n    /** From ControlValueAccessor interface */\n    public writeValue(value: string): void {\n        this.value = value;\n    }\n\n    /** From ControlValueAccessor interface */\n    public registerOnChange(fn: (_a: unknown) => void): void {\n        this.onChangeCallback = fn;\n    }\n\n    /** From ControlValueAccessor interface */\n    public registerOnTouched(fn: () => void): void {\n        this.onTouchedCallback = fn;\n    }\n\n    /**\n     * Destroy the monaco component\n     */\n    public dispose(): void {\n        const myDiv: HTMLDivElement = this.editorContent.nativeElement;\n        if (this._editor) {\n            // this._editor.dispose();\n            // eslint-disable-next-line no-loops/no-loops\n            while (myDiv.hasChildNodes()) {\n                myDiv.removeChild(myDiv.firstChild);\n            }\n            this._editor = null;\n        }\n    }\n\n    public onTouchedCallback = (): void => undefined;\n    public onChangeCallback = (_: string): void => undefined;\n\n    /**\n     * Init the component\n     */\n    private initEditor(): void {\n        const myDiv: HTMLDivElement = this.editorContent.nativeElement;\n        const options = this.getOptions();\n        this.dispose();\n\n        if (!this.isDiffEditor) {\n            this._editor = this.initSimpleEditor(myDiv, options);\n        } else {\n            this._editor = this.initDiffEditor(myDiv, options);\n        }\n\n        this.onResize();\n\n        // Trigger on change event for simple editor\n        this.getOriginalModel().onDidChangeContent(() => {\n            const newVal: string = this.getOriginalModel().getValue();\n            if (this._value !== newVal) {\n                this.updateValue(newVal);\n            }\n        });\n\n        // Trigger on change event for diff editor\n        if (this.getModifiedModel()) {\n            this.getModifiedModel().onDidChangeContent(() => {\n                const newVal: string = this.getModifiedModel().getValue();\n                if (this._valueToCompare !== newVal) {\n                    this.updateValueToCompare(newVal);\n                }\n            });\n        }\n\n        this.onInit.next(this._editor);\n    }\n\n    /**\n     * Create a simple editor text\n     * @param div\n     * @param options\n     * @return instance of monaco\n     */\n    private initSimpleEditor(div: HTMLDivElement, options: EditorOptions): any {\n        return monaco.editor.create(div, options);\n    }\n\n    /**\n     * Create a diff editor to compare two string (_value and _valueToCompare)\n     * @param div\n     * @return instance of monaco\n     */\n    private initDiffEditor(div: HTMLDivElement, options: EditorOptions): any {\n        const originalModel = monaco.editor.createModel(this._value, this.language);\n        const modifiedModel = monaco.editor.createModel(this._valueToCompare, this.language);\n\n        const diffEditor = monaco.editor.createDiffEditor(div, options);\n        diffEditor.setModel({\n            modified: modifiedModel,\n            original: originalModel\n        });\n\n        return diffEditor;\n    }\n\n    private getOptions(): EditorOptions {\n        const options: EditorOptions = new EditorOptions();\n        options.experimentalScreenReader = this.experimentalScreenReader;\n        options.ariaLabel = this.ariaLabel;\n        options.rulers = this.rulers;\n        options.wordSeparators = this.wordSeparators;\n        options.selectionClipboard = this.selectionClipboard;\n        options.lineNumbers = this.lineNumbers;\n        options.selectOnLineNumbers = this.selectOnLineNumbers;\n        options.lineNumbersMinChars = this.lineNumbersMinChars;\n        options.glyphMargin = this.glyphMargin;\n        options.lineDecorationsWidth = this.lineDecorationsWidth;\n        options.revealHorizontalRightPadding = this.revealHorizontalRightPadding;\n        options.roundedSelection = this.roundedSelection;\n        options.theme = this.theme;\n        options.readOnly = this.readOnly;\n        options.scrollbar = this.scrollbar;\n        options.overviewRulerLanes = this.overviewRulerLanes;\n        options.cursorBlinking = this.cursorBlinking;\n        options.mouseWheelZoom = this.mouseWheelZoom;\n        options.cursorStyle = this.cursorStyle;\n        options.mouseWheelZoom = this.mouseWheelZoom;\n        options.fontLigatures = this.fontLigatures;\n        options.disableTranslate3d = this.disableTranslate3d;\n        options.hideCursorInOverviewRuler = this.hideCursorInOverviewRuler;\n        options.scrollBeyondLastLine = this.scrollBeyondLastLine;\n        options.automaticLayout = this.automaticLayout;\n        options.wrappingColumn = this.wrappingColumn;\n        options.wordWrap = this.wordWrap;\n        options.wrappingIndent = this.wrappingIndent;\n        options.wordWrapBreakBeforeCharacters = this.wordWrapBreakBeforeCharacters;\n        options.wordWrapBreakAfterCharacters = this.wordWrapBreakAfterCharacters;\n        options.wordWrapBreakObtrusiveCharacters = this.wordWrapBreakObtrusiveCharacters;\n        options.stopRenderingLineAfter = this.stopRenderingLineAfter;\n        options.hover = this.hover;\n        options.contextmenu = this.contextmenu;\n        options.mouseWheelScrollSensitivity = this.mouseWheelScrollSensitivity;\n        options.quickSuggestions = this.quickSuggestions;\n        options.quickSuggestionsDelay = this.quickSuggestionsDelay;\n        options.parameterHints = this.parameterHints;\n        options.iconsInSuggestions = this.iconsInSuggestions;\n        options.autoClosingBrackets = this.autoClosingBrackets;\n        options.formatOnType = this.formatOnType;\n        options.suggestOnTriggerCharacters = this.suggestOnTriggerCharacters;\n        options.acceptSuggestionOnEnter = this.acceptSuggestionOnEnter;\n        options.snippetSuggestions = this.snippetSuggestions;\n        options.tabCompletion = this.tabCompletion;\n        options.wordBasedSuggestions = this.wordBasedSuggestions;\n        options.selectionHighlight = this.selectionHighlight;\n        options.codeLens = this.codeLens;\n        options.folding = this.folding;\n        options.renderWhitespace = this.renderWhitespace;\n        options.renderControlCharacters = this.renderControlCharacters;\n        options.renderIndentGuides = this.renderIndentGuides;\n        options.renderLineHighlight = this.renderLineHighlight;\n        options.useTabStops = this.useTabStops;\n        options.fontFamily = this.fontFamily;\n        options.fontWeight = this.fontWeight;\n        options.fontSize = this.fontSize;\n        options.lineHeight = this.lineHeight;\n        options.formatOnPaste = this.formatOnPaste;\n        options.value = this._value;\n        options.language = this._language;\n\n        Object.keys(options).forEach(key => options[key] === undefined && delete options[key]); // Remove all undefined properties\n        return options;\n    }\n\n    /**\n     * UpdateValue\n     *\n     * @param value\n     */\n    private updateValue(value: string): void {\n        // this.value = value;\n        this._value = value;\n        this.valueChange.emit(value);\n        this.onChangeCallback(value);\n    }\n\n    /**\n     * UpdateValue\n     *\n     * @param value\n     */\n    private updateValueToCompare(value: string): void {\n        // this.valueToCompare = value;\n        this._valueToCompare = value;\n        this.valueToCompareChange.emit(value);\n    }\n\n    private getOriginalModel(): any {\n        if (this._editor) {\n            const model = this._editor.getModel();\n            return model.original || model;\n        }\n        return undefined;\n    }\n\n    private getModifiedModel(): any {\n        if (this._editor) {\n            const model = this._editor.getModel();\n            return model.modified || null;\n        }\n        return undefined;\n    }\n}\n","/*\n *  @license\n *  Copyright Hôpitaux Universitaires de Genève. All Rights Reserved.\n *\n *  Use of this source code is governed by an Apache-2.0 license that can be\n *  found in the LICENSE file at https://github.com/DSI-HUG/dejajs-components/blob/master/LICENSE\n */\n\n/**\n * Configuration options for editor scrollbars\n */\nexport class EditorScrollbarOptions {\n    /**\n     * The size of arrows (if displayed).\n     * Defaults to 11.\n     */\n    public arrowSize?: number;\n    /**\n     * Render vertical scrollbar.\n     * Accepted values: 'auto', 'visible', 'hidden'.\n     * Defaults to 'auto'.\n     */\n    public vertical?: string;\n    /**\n     * Render horizontal scrollbar.\n     * Accepted values: 'auto', 'visible', 'hidden'.\n     * Defaults to 'auto'.\n     */\n    public horizontal?: string;\n    /**\n     * Cast horizontal and vertical shadows when the content is scrolled.\n     * Defaults to true.\n     */\n    public useShadows?: boolean;\n    /**\n     * Render arrows at the top and bottom of the vertical scrollbar.\n     * Defaults to false.\n     */\n    public verticalHasArrows?: boolean;\n    /**\n     * Render arrows at the left and right of the horizontal scrollbar.\n     * Defaults to false.\n     */\n    public horizontalHasArrows?: boolean;\n    /**\n     * Listen to mouse wheel events and react to them by scrolling.\n     * Defaults to true.\n     */\n    public handleMouseWheel?: boolean;\n    /**\n     * Height in pixels for the horizontal scrollbar.\n     * Defaults to 10 (px).\n     */\n    public horizontalScrollbarSize?: number;\n    /**\n     * Width in pixels for the vertical scrollbar.\n     * Defaults to 10 (px).\n     */\n    public verticalScrollbarSize?: number;\n    /**\n     * Width in pixels for the vertical slider.\n     * Defaults to `verticalScrollbarSize`.\n     */\n    public verticalSliderSize?: number;\n    /**\n     * Height in pixels for the horizontal slider.\n     * Defaults to `horizontalScrollbarSize`.\n     */\n    public horizontalSliderSize?: number;\n}\n","/*\n *  @license\n *  Copyright Hôpitaux Universitaires de Genève. All Rights Reserved.\n *\n *  Use of this source code is governed by an Apache-2.0 license that can be\n *  found in the LICENSE file at https://github.com/DSI-HUG/dejajs-components/blob/master/LICENSE\n */\n\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { ResizeListenerModule } from '@deja-js/component/core';\n\nimport { DejaMonacoEditorComponent } from './monaco-editor.component';\nimport { MonacoEditorService } from './monaco-editor.service';\n\n@NgModule({\n    declarations: [DejaMonacoEditorComponent],\n    exports: [DejaMonacoEditorComponent],\n    imports: [\n        CommonModule,\n        FormsModule,\n        ResizeListenerModule\n    ],\n    providers: [MonacoEditorService]\n})\nexport class DejaMonacoEditorModule {}\n\nexport * from './options/editor-options.model';\nexport * from './options/editor-scrollbar-options.model';\nexport * from './monaco-editor.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1.MonacoEditorService"],"mappings":"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"}