klun-ui 0.1.6 → 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,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.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
+
8
16
  ## [0.1.6] — 2026-06-21
9
17
 
10
18
  ### Fixed
@@ -82,6 +90,7 @@ small breaking changes).
82
90
  `ConfigProvider`, i18n locales, and the full component set (layout, forms,
83
91
  navigation, data display, feedback, overlays, charts).
84
92
 
93
+ [0.1.7]: https://www.npmjs.com/package/klun-ui/v/0.1.7
85
94
  [0.1.6]: https://www.npmjs.com/package/klun-ui/v/0.1.6
86
95
  [0.1.5]: https://www.npmjs.com/package/klun-ui/v/0.1.5
87
96
  [0.1.4]: https://www.npmjs.com/package/klun-ui/v/0.1.4
package/dist/styles.css CHANGED
@@ -9114,6 +9114,7 @@ body {
9114
9114
  z-index: 80;
9115
9115
  width: 268px;
9116
9116
  padding: 14px;
9117
+ text-align: left;
9117
9118
  background: var(--klun-bg-white-0);
9118
9119
  border-radius: var(--klun-radius-2xl);
9119
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.6",
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",