@dodlhuat/basix 1.4.0 → 1.4.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/README.md +10 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Basix 1.4.
|
|
1
|
+
# Basix 1.4.1
|
|
2
2
|
|
|
3
3
|
Basix is intended as a starter for the rapid development of a design. Each design element can be added individually to
|
|
4
4
|
include only the data required. It is using plain javascript / typescript and therefore is not dependent on any plugin.
|
|
@@ -9,6 +9,15 @@ A demo can be found here: <a href="http://www.andibauer.at/basix/" target="_blan
|
|
|
9
9
|
|
|
10
10
|
## Migration Guide
|
|
11
11
|
|
|
12
|
+
### 1.4.0 → 1.4.1
|
|
13
|
+
|
|
14
|
+
No breaking changes. Internal code quality pass across all TypeScript source files:
|
|
15
|
+
|
|
16
|
+
- **All components** — event listeners migrated to `AbortController` pattern; arrow class fields replaced with regular methods. `destroy()` now consistently calls `abortController.abort()` instead of individual `removeEventListener` calls.
|
|
17
|
+
- **Various** — optional chaining (`?.`) for callbacks, template literals over string concatenation, `querySelector<T>` generics over `as` casts, redundant type annotations removed.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
12
21
|
### 1.3.5 → 1.4.0
|
|
13
22
|
|
|
14
23
|
#### Breaking changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dodlhuat/basix",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Basix is intended as a starter for the rapid development of a design. Each design element can be added individually to include only the data required. It is using plain javascript / typescript and therefore is not dependent on any plugin.",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./css/*": "./css/*",
|
|
@@ -33,6 +33,10 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/dodlhuat/basix#readme",
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"
|
|
36
|
+
"eslint": "^10.5.0",
|
|
37
|
+
"eslint-config-prettier": "^10.1.8",
|
|
38
|
+
"prettier": "^3.8.4",
|
|
39
|
+
"typescript": "^6.0.0",
|
|
40
|
+
"typescript-eslint": "^8.61.0"
|
|
37
41
|
}
|
|
38
42
|
}
|