alxpsr

Results 14 comments of alxpsr

@mhelvens does it work for you? Or it's just a concept for improvements?

I got similar problem in runtime. In compiled external sprite `` exist, but in browser not exist. Whats wrong? 🤔 ``` //== Webpack rules test: /\.svg$/, use: [{ loader: 'svg-sprite-loader',...

`.open > .dropdown-menu { display: block; }`

Generally this is a bad solution (i just added lost code from bootstrap). This is a simple dirty workaround - unpredictable and difficult to maintain. I removed this library (ng2-select)...

apply this patch ``` const fs = require('fs'); const path = require('path'); const PATH_TO_FILE = path.join(__dirname, '../../node_modules/@ngx-material-keyboard/core/components/keyboard-container/keyboard-container.component.d.ts'); fs.readFile(PATH_TO_FILE, 'utf8', (err, data) => { if (err) { console.error(err); return; } const...

@alexdima Hi. Could you tell a bit more about how to exclude Suggestion functionality via ESM way?

Seems that i could disable default javascript suggestions ``` const myDiv: HTMLDivElement = this.editorContent.nativeElement; const editorJS: ICodeEditor = editor.create(myDiv, { language: 'javascript', formatOnPaste: true, model: model, readOnly: false, lineNumbers: 'on',...