@tapizlabs/ui 0.2.5 → 0.2.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 +5 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,11 @@ The format is based on Keep a Changelog and the package follows Semantic Version
|
|
|
15
15
|
- shared `ConfirmDialog` supports both `description` and compatibility `message` props
|
|
16
16
|
- consumer apps are now migrated to shared theme, fonts, and shared UI primitives
|
|
17
17
|
|
|
18
|
+
## [0.2.6] - 2026-06-12
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- `PasswordInput` inner input no longer renders its own focus signal bar; the wrapper's `focus-within` signal stays at the field's left edge even when the wrapper has extra padding (e.g. `pl-10` for an inline icon)
|
|
22
|
+
|
|
18
23
|
## [0.2.5] - 2026-06-12
|
|
19
24
|
|
|
20
25
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -3064,7 +3064,7 @@ function PasswordInput({
|
|
|
3064
3064
|
{
|
|
3065
3065
|
...props,
|
|
3066
3066
|
type: visible ? "text" : "password",
|
|
3067
|
-
className: "min-w-0 flex-1 border-0 bg-transparent px-3 py-2 text-sm text-[var(--tapiz-text-primary)] outline-none"
|
|
3067
|
+
className: "min-w-0 flex-1 border-0 bg-transparent px-3 py-2 text-sm text-[var(--tapiz-text-primary)] outline-none focus:shadow-none!"
|
|
3068
3068
|
}
|
|
3069
3069
|
),
|
|
3070
3070
|
/* @__PURE__ */ jsx97(
|