@namiml/web-sdk 1.5.6 → 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,9 +1,21 @@
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
+
10
+ ## 1.5.7 (Feb 20, 2025)
11
+
12
+ ## Bugfixes
13
+ - Resolve additional type issue encountered with certain initial config files
14
+
3
15
  ## 1.5.6 (Feb 19, 2025)
4
16
 
5
17
  ## Bugfixes
6
- - Resolve type issue encountered with certain initial onfig files
18
+ - Resolve type issue encountered with certain initial config files
7
19
 
8
20
  ## 1.5.5 (January 16, 2025)
9
21
 
@@ -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
  }
@@ -2,7 +2,7 @@ import { TCarouselContainer } from "src/types/components/containers";
2
2
  import { TBaseComponent, TContainerPosition } from "../../types/components";
3
3
  import { TSegmentPickerItem, TTextLikeComponent } from "../../types/components/elements";
4
4
  export declare function parseSize(value: string | number, scaleFactor: number): string;
5
- export declare function backgroundColor(value: string): string;
5
+ export declare function backgroundColor(value: string, fallback?: string): string;
6
6
  export declare function pickAndApplyBackgroundColor(component: TBaseComponent, inFocusedState?: boolean): string;
7
7
  export declare function flexDirection({ direction }: TBaseComponent): string;
8
8
  export declare function flexAlignments(component: TBaseComponent): string;