@nextrap/ntl-2col 2.0.0 → 2.0.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 +20 -0
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## 2.0.1 (2026-09-10)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **ntl-2col:** allow theme-controlled slot selectors ([f585712](https://github.com/nextrap/nextrap-monorepo/commit/f585712))
|
|
6
|
+
- **ntl-2col:** add main positioning modifiers ([b6f35f9](https://github.com/nextrap/nextrap-monorepo/commit/b6f35f9))
|
|
7
|
+
- add component theme and usage skills ([617cfde](https://github.com/nextrap/nextrap-monorepo/commit/617cfde))
|
|
8
|
+
|
|
9
|
+
### 🩹 Fixes
|
|
10
|
+
|
|
11
|
+
- declare external libraries as peers and retain test dependencies ([67c6ffa](https://github.com/nextrap/nextrap-monorepo/commit/67c6ffa))
|
|
12
|
+
- **ntl:** migrate ntl-2col to nt-core ([568f8b2](https://github.com/nextrap/nextrap-monorepo/commit/568f8b2))
|
|
13
|
+
- **layout:** keep layout packages separate ([c82b05a](https://github.com/nextrap/nextrap-monorepo/commit/c82b05a))
|
|
14
|
+
- use aliasesExclude to avoid internal relative paths ([6b8123e](https://github.com/nextrap/nextrap-monorepo/commit/6b8123e))
|
|
15
|
+
|
|
16
|
+
### ❤️ Thank You
|
|
17
|
+
|
|
18
|
+
- Enzo Volkmann @evolkmann
|
|
19
|
+
- Matthias Leuffen
|
|
20
|
+
|
|
1
21
|
## 0.1.4 (2025-07-25)
|
|
2
22
|
|
|
3
23
|
This was a version bump only for ntl-2col to align it with other projects, there were no code changes.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextrap/ntl-2col",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"files": [
|
|
5
5
|
"*.*",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
6
|
+
".agents",
|
|
7
|
+
"src"
|
|
8
8
|
],
|
|
9
9
|
"main": "./index.js",
|
|
10
10
|
"repository": {
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@nextrap/nt-core": "^2.0.0"
|
|
17
17
|
},
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"lit": "^3.3.2"
|
|
20
|
+
},
|
|
18
21
|
"type": "module",
|
|
19
22
|
"types": "./index.d.ts",
|
|
20
23
|
"web-types": "./web-types.json"
|