@namiml/web-sdk 1.5.3 → 1.5.5
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 +12 -2
- package/README.md +2 -4
- package/dist/components/containers/Container.d.ts +0 -5
- package/dist/components/elements/Button.d.ts +3 -0
- package/dist/nami-web.cjs +12 -12
- package/dist/nami-web.js +12 -12
- package/dist/nami-web.mjs +12 -12
- package/dist/nami-web.umd.js +13 -13
- package/dist/services/storage.service.d.ts +2 -0
- package/dist/types/externals/config.d.ts +1 -0
- package/dist/types/externals/paywall.d.ts +1 -0
- package/dist/utils/const.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.5.5 (January 16, 2025)
|
|
4
|
+
|
|
5
|
+
## Enhancements
|
|
6
|
+
- Add optional `purchaseChannel` to `NamiConfiguration` to pass through to `NamiPaywallEvent` analytics
|
|
7
|
+
|
|
8
|
+
## 1.5.4 (November 29, 2024)
|
|
9
|
+
|
|
10
|
+
## Bugfixes
|
|
11
|
+
- Resolve issue with TV focus with containers and product button on first load
|
|
12
|
+
|
|
13
|
+
## 1.5.3 (November 21, 2024)
|
|
4
14
|
|
|
5
15
|
## Bugfixes
|
|
6
16
|
- Resolve an issue where the collapse component caret icon was not updating when expanded
|
|
7
17
|
|
|
8
|
-
##
|
|
18
|
+
## Enhancements
|
|
9
19
|
- Support scaling on TV devices for optimal display on 720p, 1080p, 4K, and 8K devices
|
|
10
20
|
|
|
11
21
|
## 1.5.2 (October 24, 2024)
|
package/README.md
CHANGED
|
@@ -13,9 +13,7 @@ Nami is easy subscriptions & in-app purchases, with powerful built-in paywalls a
|
|
|
13
13
|
- Conduct paywall A/B tests, to improve your conversion rate.
|
|
14
14
|
- Robust subscription analytics, webhooks, and much more.
|
|
15
15
|
|
|
16
|
-
Requires an account with Nami.
|
|
17
|
-
|
|
18
|
-
See https://www.namiml.com for more details and to create a free account.
|
|
16
|
+
Requires an account with Nami ML. See https://www.namiml.com/pricing for more details and to create a free account.
|
|
19
17
|
|
|
20
18
|
## Getting started with Nami's Web SDK
|
|
21
19
|
|
|
@@ -33,4 +31,4 @@ yarn add @namiml/web-sdk
|
|
|
33
31
|
|
|
34
32
|
Example apps showing how to use the SDK are available in our [Nami Web SDK repo](https://github.com/namiml/nami-web-sdk).
|
|
35
33
|
|
|
36
|
-
More information on configuring and using the SDK is available in our docs at [https://
|
|
34
|
+
More information on configuring and using the SDK is available in our docs at [https://learn.namiml.com](https://learn.namiml.com).
|
|
@@ -7,11 +7,6 @@ export declare class NamiContainer extends NamiElement {
|
|
|
7
7
|
inFocusedState: boolean;
|
|
8
8
|
scaleFactor: number;
|
|
9
9
|
constructor();
|
|
10
|
-
connectedCallback(): void;
|
|
11
|
-
disconnectedCallback(): void;
|
|
12
|
-
private _handleFocusChanged;
|
|
13
|
-
private _handleFocus;
|
|
14
|
-
private _handleBlur;
|
|
15
10
|
protected styles(): CSSResult;
|
|
16
11
|
render(): any[];
|
|
17
12
|
}
|
|
@@ -6,9 +6,12 @@ export declare class NamiButton extends NamiElement {
|
|
|
6
6
|
inFocusedState: boolean;
|
|
7
7
|
scaleFactor: number;
|
|
8
8
|
constructor();
|
|
9
|
+
connectedCallback(): void;
|
|
10
|
+
disconnectedCallback(): void;
|
|
9
11
|
updated(): void;
|
|
10
12
|
private _handleFocus;
|
|
11
13
|
private _handleBlur;
|
|
14
|
+
private _dispatchFocusChange;
|
|
12
15
|
private _handleClick;
|
|
13
16
|
protected styles(): CSSResult;
|
|
14
17
|
render(): any[] | import("lit-html").TemplateResult<1>;
|