@secondstaxorg/sscomp 1.6.2 → 1.6.21
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function dayDiff(rateDate: string): "
|
|
1
|
+
export declare function dayDiff(rateDate: string): "" | "today, " | "yesterday, " | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function dayDiff(rateDate: string): "
|
|
1
|
+
export declare function dayDiff(rateDate: string): "" | "today, " | "yesterday, " | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function dayDiff(rateDate: string): "
|
|
1
|
+
export declare function dayDiff(rateDate: string): "" | "today, " | "yesterday, " | undefined;
|
|
@@ -22,4 +22,8 @@ export interface NewsFilterProps extends React.HTMLAttributes<any> {
|
|
|
22
22
|
* Callback function to receive the selected source country
|
|
23
23
|
*/
|
|
24
24
|
selectedCountryFxn?: Function;
|
|
25
|
+
/**
|
|
26
|
+
* Theme of the component whether to be in light mode or dark
|
|
27
|
+
*/
|
|
28
|
+
theme: 'light' | 'dark';
|
|
25
29
|
}
|