@namiml/web-sdk 1.7.4 → 1.7.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Nami Web SDK Changelog
2
2
 
3
+ ## 1.7.5
4
+ **Release Date:** November 19, 2025
5
+
6
+ ### Enhancements
7
+ - Support using launch context custom attributes in flow analytics
8
+ - Initial support for a progress indicator component
9
+
10
+ ### Bug Fixes
11
+ - Resolve an issue where a user's signed in state wasn't reflected on the paywall properly
12
+ - Resolve an issue with content padding on certain components
13
+ - Resolve an ssue where CMS settings for video player audio playback was not honored
14
+
3
15
  ## 1.7.4
4
16
  **Release Date:** October 30, 2025
5
17
 
@@ -0,0 +1,19 @@
1
+ import { CSSResult, TemplateResult } from 'lit';
2
+ import { NamiElement } from '../NamiElement';
3
+ import { TProgressIndicatorComponent } from '../../types/components/elements';
4
+ import { TSemverObj } from '../../utils/parsers';
5
+ export declare class NamiProgressIndicator extends NamiElement {
6
+ component: TProgressIndicatorComponent;
7
+ scaleFactor: number;
8
+ inFocusedState: boolean;
9
+ minSDKVersion: TSemverObj;
10
+ currentWidth: number;
11
+ private hasInitialized;
12
+ connectedCallback(): void;
13
+ firstUpdated(changedProperties: any): void;
14
+ updated(changedProperties: any): void;
15
+ protected styles(): CSSResult;
16
+ private getProgressPercentage;
17
+ private animateProgress;
18
+ render(): TemplateResult;
19
+ }
@@ -21,6 +21,7 @@ import { NamiPaywallScreen } from "./PaywallScreen";
21
21
  import { NamiQRCode } from "./elements/QRCode";
22
22
  import { NamiToggleSwitch } from "./elements/ToggleSwitch";
23
23
  import { NamiRadioButton } from "./elements/RadioButton";
24
+ import { NamiProgressIndicator } from "./elements/ProgressIndicator";
24
25
  declare global {
25
26
  interface HTMLElementTagNameMap {
26
27
  "nami-spacer": NamiSpacer;
@@ -47,6 +48,7 @@ declare global {
47
48
  "nami-qr-code": NamiQRCode;
48
49
  "nami-toggle-switch": NamiToggleSwitch;
49
50
  "nami-radio-button": NamiRadioButton;
51
+ "nami-progress-indicator": NamiProgressIndicator;
50
52
  }
51
53
  }
52
- export { NamiSpacer, NamiButton, NamiHeader, NamiFooter, NamiText, NamiSegmentPicker, NamiSegmentPickerItem, NamiContainer, NamiProductContainer, NamiImage, NamiBackgroundContainer, NamiContentContainer, NamiSymbol, NamiVideo, NamiCollapseContainer, NamiResponsiveGrid, NamiCarouselContainer, NamiPlayPauseButton, NamiVolumeButton, NamiStack, NamiPaywallScreen, NamiQRCode, NamiToggleSwitch, NamiRadioButton, };
54
+ export { NamiSpacer, NamiButton, NamiHeader, NamiFooter, NamiText, NamiSegmentPicker, NamiSegmentPickerItem, NamiContainer, NamiProductContainer, NamiImage, NamiBackgroundContainer, NamiContentContainer, NamiSymbol, NamiVideo, NamiCollapseContainer, NamiResponsiveGrid, NamiCarouselContainer, NamiPlayPauseButton, NamiVolumeButton, NamiStack, NamiPaywallScreen, NamiQRCode, NamiToggleSwitch, NamiRadioButton, NamiProgressIndicator, };