klun-ui 0.1.5 → 0.1.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 CHANGED
@@ -5,6 +5,22 @@ 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.7] — 2026-06-21
9
+
10
+ ### Fixed
11
+ - **`Popconfirm` content is always left-aligned.** The bubble rendered inline,
12
+ so a Popconfirm placed inside a right-aligned container (e.g. a table action
13
+ column with `align: "right"`) inherited `text-align: right` and ragged its
14
+ title/description. The bubble now pins its own `text-align: left`.
15
+
16
+ ## [0.1.6] — 2026-06-21
17
+
18
+ ### Fixed
19
+ - **`Modal` / `Drawer` mask is now clearly visible in both themes.** The
20
+ backdrop uses a theme-independent scrim (`rgba(0,0,0,0.45)` + `blur(3px)`,
21
+ antd-style) instead of a dark-gray token that disappeared against dark
22
+ surfaces.
23
+
8
24
  ## [0.1.5] — 2026-06-21
9
25
 
10
26
  ### Added
@@ -74,6 +90,8 @@ small breaking changes).
74
90
  `ConfigProvider`, i18n locales, and the full component set (layout, forms,
75
91
  navigation, data display, feedback, overlays, charts).
76
92
 
93
+ [0.1.7]: https://www.npmjs.com/package/klun-ui/v/0.1.7
94
+ [0.1.6]: https://www.npmjs.com/package/klun-ui/v/0.1.6
77
95
  [0.1.5]: https://www.npmjs.com/package/klun-ui/v/0.1.5
78
96
  [0.1.4]: https://www.npmjs.com/package/klun-ui/v/0.1.4
79
97
  [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: var(--klun-overlay-overlay-gray);
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: var(--klun-overlay-overlay-gray);
9020
- backdrop-filter: blur(2px);
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;
@@ -9113,6 +9114,7 @@ body {
9113
9114
  z-index: 80;
9114
9115
  width: 268px;
9115
9116
  padding: 14px;
9117
+ text-align: left;
9116
9118
  background: var(--klun-bg-white-0);
9117
9119
  border-radius: var(--klun-radius-2xl);
9118
9120
  box-shadow: var(--klun-shadow-lg, 0 24px 48px -16px rgba(14, 18, 27, 0.16)), inset 0 0 0 1px var(--klun-stroke-soft-200);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klun-ui",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Klun UI — a themeable React + TypeScript component library and design system (light/dark, 6 accent themes, global radius axis).",
5
5
  "license": "MIT",
6
6
  "type": "module",