@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/dist/index.es.js +108 -95
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +163 -129
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +18 -5
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/CountrySelector/type.d.ts +5 -1
- package/types/components/DateRangePicker/type.d.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export interface SelectorProps {
|
|
2
2
|
/**
|
|
3
|
-
* Array of countries containing objects of country name
|
|
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
|
}
|