@namiml/web-sdk 1.5.6 → 1.5.7
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 +6 -1
- package/dist/components/utils/styles.d.ts +1 -1
- package/dist/nami-web.cjs +1 -1
- package/dist/nami-web.js +1 -1
- package/dist/nami-web.mjs +1 -1
- package/dist/nami-web.umd.js +1 -1
- package/dist/types/components/containers.d.ts +3 -2
- package/dist/types/components/index.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.7 (Feb 20, 2025)
|
|
4
|
+
|
|
5
|
+
## Bugfixes
|
|
6
|
+
- Resolve additional type issue encountered with certain initial config files
|
|
7
|
+
|
|
3
8
|
## 1.5.6 (Feb 19, 2025)
|
|
4
9
|
|
|
5
10
|
## Bugfixes
|
|
6
|
-
- Resolve type issue encountered with certain initial
|
|
11
|
+
- Resolve type issue encountered with certain initial config files
|
|
7
12
|
|
|
8
13
|
## 1.5.5 (January 16, 2025)
|
|
9
14
|
|
|
@@ -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;
|