@namiml/web-sdk 3.4.6-dev.202607161856 → 3.4.6-dev.202607162203
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/dist/components/utils/styles.d.ts +9 -0
- package/dist/nami-web.cjs +31 -31
- package/dist/nami-web.mjs +33 -33
- package/dist/nami-web.umd.js +32 -32
- package/package.json +2 -2
|
@@ -8,6 +8,15 @@ export declare function backgroundColor(value: string, fallback?: string): strin
|
|
|
8
8
|
export declare function filteredBorderColor(value: string, fallback?: string): string;
|
|
9
9
|
export declare function filteredTextColor(value: string, fallback?: string): string;
|
|
10
10
|
export declare function pickAndApplyBackgroundColor(component: TBaseComponent, inFocusedState?: boolean): string;
|
|
11
|
+
/**
|
|
12
|
+
* Background CSS for a component that may have a fill color, a fill image, or
|
|
13
|
+
* both. The color is painted behind the image (CSS paints background-color
|
|
14
|
+
* behind background-image), so a transparent fill image shows the color
|
|
15
|
+
* through — matching Apple/Android. (NAM-2199)
|
|
16
|
+
*/
|
|
17
|
+
export declare function pickAndApplyBackground(component: TBaseComponent & {
|
|
18
|
+
fillImage?: string | null;
|
|
19
|
+
}, inFocusedState?: boolean): string;
|
|
11
20
|
export declare function flexDirection({ direction }: TBaseComponent): string;
|
|
12
21
|
export declare function alignAndJustifyItems(component: TBaseComponent): string;
|
|
13
22
|
/**
|