klun-ui 0.1.5 → 0.1.6
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 +9 -0
- package/dist/styles.css +4 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to **klun-ui** are documented here. The format follows
|
|
|
5
5
|
[Semantic Versioning](https://semver.org/) (pre-1.0: minor/patch bumps may carry
|
|
6
6
|
small breaking changes).
|
|
7
7
|
|
|
8
|
+
## [0.1.6] — 2026-06-21
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **`Modal` / `Drawer` mask is now clearly visible in both themes.** The
|
|
12
|
+
backdrop uses a theme-independent scrim (`rgba(0,0,0,0.45)` + `blur(3px)`,
|
|
13
|
+
antd-style) instead of a dark-gray token that disappeared against dark
|
|
14
|
+
surfaces.
|
|
15
|
+
|
|
8
16
|
## [0.1.5] — 2026-06-21
|
|
9
17
|
|
|
10
18
|
### Added
|
|
@@ -74,6 +82,7 @@ small breaking changes).
|
|
|
74
82
|
`ConfigProvider`, i18n locales, and the full component set (layout, forms,
|
|
75
83
|
navigation, data display, feedback, overlays, charts).
|
|
76
84
|
|
|
85
|
+
[0.1.6]: https://www.npmjs.com/package/klun-ui/v/0.1.6
|
|
77
86
|
[0.1.5]: https://www.npmjs.com/package/klun-ui/v/0.1.5
|
|
78
87
|
[0.1.4]: https://www.npmjs.com/package/klun-ui/v/0.1.4
|
|
79
88
|
[0.1.3]: https://www.npmjs.com/package/klun-ui/v/0.1.3
|
package/dist/styles.css
CHANGED
|
@@ -8823,7 +8823,8 @@ body {
|
|
|
8823
8823
|
position: fixed;
|
|
8824
8824
|
inset: 0;
|
|
8825
8825
|
z-index: 100;
|
|
8826
|
-
background:
|
|
8826
|
+
background: rgba(0, 0, 0, 0.45);
|
|
8827
|
+
backdrop-filter: blur(3px);
|
|
8827
8828
|
display: flex;
|
|
8828
8829
|
}
|
|
8829
8830
|
.klun-drawer--right {
|
|
@@ -9016,8 +9017,8 @@ body {
|
|
|
9016
9017
|
justify-content: center;
|
|
9017
9018
|
padding: 24px;
|
|
9018
9019
|
overflow-y: auto;
|
|
9019
|
-
background:
|
|
9020
|
-
backdrop-filter: blur(
|
|
9020
|
+
background: rgba(0, 0, 0, 0.45);
|
|
9021
|
+
backdrop-filter: blur(3px);
|
|
9021
9022
|
}
|
|
9022
9023
|
.klun-modal--centered {
|
|
9023
9024
|
align-items: center;
|
package/package.json
CHANGED