@secondstaxorg/sscomp 1.7.74 → 1.7.75

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.7.74",
3
+ "version": "1.7.75",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -2,12 +2,7 @@ export interface SelectorProps {
2
2
  /**
3
3
  * Array of countries containing objects of country name, country short name, country flag and subname to be used in the case of selecting currencies
4
4
  */
5
- options: {
6
- optionName: string;
7
- optionShortName: string;
8
- optionFlag?: string;
9
- subName?: string;
10
- }[];
5
+ options: optionType[];
11
6
  /**
12
7
  * Function to receive the object of the selected item from the dropdown
13
8
  */
@@ -45,3 +40,9 @@ export interface SelectorProps {
45
40
  */
46
41
  readonly?: boolean;
47
42
  }
43
+ export declare type optionType = {
44
+ optionName: string;
45
+ optionShortName: string;
46
+ optionFlag?: string;
47
+ subName?: string;
48
+ };