@namiml/web-sdk 1.5.7 → 1.5.8

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.5.8 (Apr 1, 2025)
4
+
5
+ ## Bugfixes
6
+ - Resolve an issue where toggle component event was firing twice
7
+ - Resolve an issue where toogle switch state was re-rendering due to parent page
8
+ - Resolve an issue where additional spacing was being applied
9
+
3
10
  ## 1.5.7 (Feb 20, 2025)
4
11
 
5
12
  ## Bugfixes
@@ -1,13 +1,15 @@
1
- import { CSSResult } from 'lit';
1
+ import { CSSResult, PropertyValues } from 'lit';
2
2
  import { TSegmentPickerItem } from '../../types/components/elements';
3
3
  import { NamiElement } from '../NamiElement';
4
4
  export declare class NamiSegmentPickerItem extends NamiElement {
5
5
  component: TSegmentPickerItem;
6
6
  inFocusedState: boolean;
7
7
  scaleFactor: number;
8
+ private _isActive;
8
9
  constructor();
9
10
  private _handleClick;
10
11
  private _handleHover;
12
+ updated(changedProperties: PropertyValues): void;
11
13
  protected styles(): CSSResult;
12
14
  render(): import("lit-html").TemplateResult<1>;
13
15
  }