@liascript/editor 1.1.34--0.17.5 → 1.1.34--0.17.7
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 +38 -0
- package/dist/ace.js +1 -1
- package/dist/ext-diff.js +1 -0
- package/dist/ext-inline_autocomplete.js +1 -1
- package/dist/ext-keybinding_menu.js +1 -1
- package/dist/ext-language_tools.js +1 -1
- package/dist/ext-modelist.js +1 -1
- package/dist/ext-options.js +1 -1
- package/dist/ext-prompt.js +1 -1
- package/dist/ext-searchbox.js +1 -1
- package/dist/ext-settings_menu.js +1 -1
- package/dist/ext-simple_tokenizer.js +1 -1
- package/dist/ext-split.js +1 -1
- package/dist/ext-statusbar.js +1 -1
- package/dist/ext-textarea.js +1 -1
- package/dist/index.04f78d29.js +1 -0
- package/dist/index.0552aff9.js +1 -0
- package/dist/index.291c6225.js +6 -0
- package/dist/index.39be98c1.css +1 -0
- package/dist/index.523280ee.js +6 -0
- package/dist/index.68c6e58b.js +1 -0
- package/dist/index.b6d24050.js +1 -0
- package/dist/index.fd479f90.js +1 -0
- package/dist/index.fffa7b8a.js +1 -0
- package/dist/index.html +1 -1
- package/dist/mode-clue.js +1 -0
- package/dist/mode-nunjucks.js +1 -1
- package/dist/mode-php.js +1 -1
- package/dist/mode-php_laravel_blade.js +1 -1
- package/dist/snippets/clue.js +1 -0
- package/package.json +10 -8
- package/dist/index.008a45e4.js +0 -1
- package/dist/index.2b738c0e.css +0 -1
- package/dist/index.3e798e75.js +0 -1
- package/dist/index.4e767341.js +0 -6
- package/dist/index.54e5fdd3.js +0 -6
- package/dist/index.56b4cfc0.js +0 -1
- package/dist/index.57572317.js +0 -1
- package/dist/index.82b68dde.js +0 -1
- package/dist/index.cc8fe2ba.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,44 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.17.7] - 16/10/2025
|
|
8
|
+
|
|
9
|
+
- feat: The code terminal now supports multiline input, which can be entered with
|
|
10
|
+
<kbd>Shift</kbd>+<kbd>Enter</kbd>. The terminal will automatically detect
|
|
11
|
+
the programming language based on the file extension of the code block.
|
|
12
|
+
|
|
13
|
+
Additionally, a button was introduced to send the code via clicking.
|
|
14
|
+
|
|
15
|
+
- feat(Quiz):
|
|
16
|
+
|
|
17
|
+
``` markdown
|
|
18
|
+
How is this project called?
|
|
19
|
+
|
|
20
|
+
<!--
|
|
21
|
+
data-text-solved="This was a __Very__ hard quiz"
|
|
22
|
+
data-text-failed="Try again!"
|
|
23
|
+
data-text-resolved="Next time it will be better"
|
|
24
|
+
-->
|
|
25
|
+
[[LiaScript]]
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
- improve(CSS): Better styling with better color contrasts.
|
|
29
|
+
- improved(a11y): For tables
|
|
30
|
+
|
|
31
|
+
## [0.17.6] - 19/09/2025
|
|
32
|
+
|
|
33
|
+
- Custom quizzes can now return an array of booleans to indicate which parts are correct. This will allow to show partial solutions for compound quizzes, such as matrix quizzes and gap-texts.
|
|
34
|
+
|
|
35
|
+
```markdown
|
|
36
|
+
<!-- data-show-partial-solution -->
|
|
37
|
+
..[[1]] ... [[2]] ... [[3]]
|
|
38
|
+
<script>
|
|
39
|
+
[true, false, true]
|
|
40
|
+
</script>
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
- Code block macros will be used without indentation, which will allow to embed webcomponents or more complex HTML structures with an indentation, listing, etc.
|
|
44
|
+
|
|
7
45
|
## [0.17.5] - 17/09/202
|
|
8
46
|
|
|
9
47
|
- improve: Copy to Clipboard error message
|