@limetech/lime-elements 38.33.0 → 38.33.1
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/CHANGELOG.md +8 -0
- package/dist/cjs/limel-code-editor.cjs.entry.js +1 -1
- package/dist/cjs/limel-code-editor.cjs.entry.js.map +1 -1
- package/dist/collection/components/code-editor/code-editor.js +1 -1
- package/dist/collection/components/code-editor/code-editor.js.map +1 -1
- package/dist/esm/limel-code-editor.entry.js +1 -1
- package/dist/esm/limel-code-editor.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-5a483374.entry.js → p-2bf4fc20.entry.js} +2 -2
- package/dist/lime-elements/{p-5a483374.entry.js.map → p-2bf4fc20.entry.js.map} +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [38.33.1](https://github.com/Lundalogik/lime-elements/compare/v38.33.0...v38.33.1) (2025-12-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **code-editor:** correctly render tab ([d0b4153](https://github.com/Lundalogik/lime-elements/commit/d0b415319fafead9d07ea61467a42175c31a7895))
|
|
8
|
+
|
|
1
9
|
## [38.33.0](https://github.com/Lundalogik/lime-elements/compare/v38.32.0...v38.33.0) (2025-12-04)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -14544,7 +14544,7 @@ const CodeEditor = class {
|
|
|
14544
14544
|
// the space count
|
|
14545
14545
|
editor.setOption('extraKeys', {
|
|
14546
14546
|
Tab: (codeMirror) => {
|
|
14547
|
-
const spaces =
|
|
14547
|
+
const spaces = ' '.repeat(codeMirror.getOption('indentUnit'));
|
|
14548
14548
|
codeMirror.replaceSelection(spaces);
|
|
14549
14549
|
},
|
|
14550
14550
|
});
|