@secondstaxorg/sscomp 1.8.83 → 1.8.85

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.8.83",
3
+ "version": "1.8.85",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -1,6 +1,6 @@
1
1
  export interface SelectorProps {
2
2
  /**
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
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
5
  options: optionType[];
6
6
  /**
@@ -39,6 +39,10 @@ export interface SelectorProps {
39
39
  * Specify whether the component is a readonly field
40
40
  */
41
41
  readonly?: boolean;
42
+ /**
43
+ * Array containing list of items to be bubbled up to the top above all others
44
+ */
45
+ priorityOptions?: string[];
42
46
  }
43
47
  export declare type optionType = {
44
48
  optionName: string;
@@ -27,4 +27,12 @@ export interface DateRangePickerProps {
27
27
  * Specify whether the component is a readonly field
28
28
  */
29
29
  readonly?: boolean;
30
+ /**
31
+ * Specify to disable future dates
32
+ */
33
+ disableFutureDays?: boolean;
34
+ /**
35
+ * Specify to disable past dates
36
+ */
37
+ disablePastDays?: boolean;
30
38
  }