@namiml/web-sdk 1.5.9 → 1.5.11
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 +21 -0
- package/dist/components/containers/BackgroundContainer.d.ts +2 -0
- package/dist/components/containers/CollapseContainer.d.ts +1 -1
- package/dist/components/elements/Button.d.ts +1 -0
- package/dist/components/elements/PlayPauseButton.d.ts +1 -0
- package/dist/components/elements/SegmentPickerItem.d.ts +1 -0
- package/dist/components/elements/VolumeButton.d.ts +1 -0
- package/dist/nami-web.cjs +34 -10
- package/dist/nami-web.js +34 -10
- package/dist/nami-web.mjs +34 -10
- package/dist/nami-web.umd.js +36 -12
- package/dist/services/storage.service.d.ts +4 -2
- package/dist/types/components/elements.d.ts +1 -0
- package/dist/types/externals/errors.d.ts +9 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.11 (June 18, 2025)
|
|
4
|
+
|
|
5
|
+
## Enhancements
|
|
6
|
+
- Performance improvements for form factor lookups
|
|
7
|
+
|
|
8
|
+
## Bugfixes
|
|
9
|
+
- Fix uninterpolated smart text
|
|
10
|
+
- Fix fallback to in-memory storage on localStorage write failures
|
|
11
|
+
|
|
12
|
+
## 1.5.10 (May 22, 2025)
|
|
13
|
+
|
|
14
|
+
## Enhancements
|
|
15
|
+
- Support focused styling on buttons and toggle
|
|
16
|
+
- Support tab key focus for collapsible component
|
|
17
|
+
- Support alt tags on images
|
|
18
|
+
|
|
19
|
+
## Bugfixes
|
|
20
|
+
- Fix toggle switch not preserving state on re-render
|
|
21
|
+
- Fix additional spacing in text list items
|
|
22
|
+
- Fix issue with screenreader and collapsed content
|
|
23
|
+
|
|
3
24
|
## 1.5.9 (Apr 2, 2025)
|
|
4
25
|
|
|
5
26
|
## Bugfixes
|
|
@@ -6,6 +6,8 @@ export declare class NamiBackgroundContainer extends NamiElement {
|
|
|
6
6
|
fullscreen: boolean;
|
|
7
7
|
inFocusedState: boolean;
|
|
8
8
|
scaleFactor: number;
|
|
9
|
+
connectedCallback(): void;
|
|
10
|
+
disconnectedCallback(): void;
|
|
9
11
|
protected styles(): CSSResult;
|
|
10
12
|
protected updated(): void;
|
|
11
13
|
render(): any[];
|
|
@@ -6,7 +6,7 @@ export declare class NamiCollapseContainer extends NamiElement {
|
|
|
6
6
|
inFocusedState: boolean;
|
|
7
7
|
height: number;
|
|
8
8
|
scaleFactor: number;
|
|
9
|
-
|
|
9
|
+
private isCollapsed;
|
|
10
10
|
private _handleClick;
|
|
11
11
|
protected styles(): CSSResult;
|
|
12
12
|
render(): import("lit-html").TemplateResult<1>;
|
|
@@ -12,6 +12,7 @@ export declare class NamiButton extends NamiElement {
|
|
|
12
12
|
private _handleFocus;
|
|
13
13
|
private _handleBlur;
|
|
14
14
|
private _dispatchFocusChange;
|
|
15
|
+
private _handleKeyDown;
|
|
15
16
|
private _handleClick;
|
|
16
17
|
protected styles(): CSSResult;
|
|
17
18
|
render(): any[] | import("lit-html").TemplateResult<1>;
|