react-native-ui-lib 8.4.0-snapshot.7862 → 8.4.0-snapshot.7872
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/package.json +2 -2
- package/src/components/WheelPicker/usePresenter.d.ts +0 -1
- package/src/components/colorPicker/ColorPickerPresenter.d.ts +1 -1
- package/src/helpers/AvatarHelper.d.ts +1 -1
- package/src/testkit/Component.driver.d.ts +0 -1
- package/src/testkit/drivers/TestingLibraryDriver.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-ui-lib",
|
|
3
|
-
"version": "8.4.0-snapshot.
|
|
3
|
+
"version": "8.4.0-snapshot.7872",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"types": "src/index.d.ts",
|
|
6
6
|
"author": "Ethan Sharabi <ethan.shar@gmail.com>",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"light-date": "^1.2.0",
|
|
83
83
|
"moment": "^2.24.0",
|
|
84
84
|
"object-hash": "^3.0.0",
|
|
85
|
-
"postcss": "^8.
|
|
85
|
+
"postcss": "^8.5.8",
|
|
86
86
|
"postcss-js": "^4.0.0",
|
|
87
87
|
"prettier": "^3.2.5",
|
|
88
88
|
"react": "18.3.1",
|
|
@@ -12,5 +12,5 @@ export declare function getValidColorString(text?: string): {
|
|
|
12
12
|
valid: boolean;
|
|
13
13
|
hex?: undefined;
|
|
14
14
|
};
|
|
15
|
-
export declare function getHexString(color: HSLColor): string
|
|
15
|
+
export declare function getHexString(color: HSLColor): Uppercase<string>;
|
|
16
16
|
export declare function getTextColor(color: string): string;
|
|
@@ -2,7 +2,7 @@ export declare function getInitialsTypography(size: number): import("react-nativ
|
|
|
2
2
|
export declare function hashStringToNumber(str?: string): number;
|
|
3
3
|
export declare function getAvatarColors(): string[];
|
|
4
4
|
export declare function getColorById(id: string, avatarColors?: string[]): string;
|
|
5
|
-
export declare function getInitials(name?: string, limit?: number): string
|
|
5
|
+
export declare function getInitials(name?: string, limit?: number): Uppercase<string>;
|
|
6
6
|
export declare function getBackgroundColor(name?: string, avatarColors?: string[], hashFunction?: (name?: string) => number, defaultColor?: string): string | undefined;
|
|
7
7
|
export declare function isGravatarUrl(url: string): boolean;
|
|
8
8
|
export declare function isBlankGravatarUrl(url: string): boolean;
|