@namiml/web-sdk 1.5.3 → 1.5.4
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 +7 -2
- package/README.md +1 -1
- package/dist/components/elements/Button.d.ts +1 -0
- package/dist/nami-web.cjs +3 -3
- package/dist/nami-web.js +3 -3
- package/dist/nami-web.mjs +3 -3
- package/dist/nami-web.umd.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.4
|
|
3
|
+
## 1.5.4 (November 29, 2024)
|
|
4
|
+
|
|
5
|
+
## Bugfixes
|
|
6
|
+
- Resolve issue with TV focus with containers and product button on first load
|
|
7
|
+
|
|
8
|
+
## 1.5.3 (November 21, 2024)
|
|
4
9
|
|
|
5
10
|
## Bugfixes
|
|
6
11
|
- Resolve an issue where the collapse component caret icon was not updating when expanded
|
|
7
12
|
|
|
8
|
-
##
|
|
13
|
+
## Enhancements
|
|
9
14
|
- Support scaling on TV devices for optimal display on 720p, 1080p, 4K, and 8K devices
|
|
10
15
|
|
|
11
16
|
## 1.5.2 (October 24, 2024)
|
package/README.md
CHANGED
|
@@ -33,4 +33,4 @@ yarn add @namiml/web-sdk
|
|
|
33
33
|
|
|
34
34
|
Example apps showing how to use the SDK are available in our [Nami Web SDK repo](https://github.com/namiml/nami-web-sdk).
|
|
35
35
|
|
|
36
|
-
More information on configuring and using the SDK is available in our docs at [https://
|
|
36
|
+
More information on configuring and using the SDK is available in our docs at [https://learn.namiml.com](https://learn.namiml.com).
|
|
@@ -9,6 +9,7 @@ export declare class NamiButton extends NamiElement {
|
|
|
9
9
|
updated(): void;
|
|
10
10
|
private _handleFocus;
|
|
11
11
|
private _handleBlur;
|
|
12
|
+
private _handleKeyDown;
|
|
12
13
|
private _handleClick;
|
|
13
14
|
protected styles(): CSSResult;
|
|
14
15
|
render(): any[] | import("lit-html").TemplateResult<1>;
|