ados-rcm 1.0.135 → 1.0.136
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/AModule/AComponents/ADatePicker/ADatePicker.d.ts +14 -1
- package/dist/index.cjs.js +24 -24
- package/dist/index.es.js +3058 -3034
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { TUseValues } from '../../AHooks/useValues';
|
|
3
|
+
import { IABaseProps } from '../ABase/ABase';
|
|
3
4
|
import { Resources } from '../AResource/AResource';
|
|
4
5
|
import { EDir12, TActionRef } from '../ATypes/ATypes';
|
|
5
6
|
export interface IADatePickerActions {
|
|
@@ -22,7 +23,7 @@ export interface IADatePickerActions {
|
|
|
22
23
|
*/
|
|
23
24
|
toggle: () => void;
|
|
24
25
|
}
|
|
25
|
-
export interface IADatePickerProps {
|
|
26
|
+
export interface IADatePickerProps extends IABaseProps {
|
|
26
27
|
/**
|
|
27
28
|
* type? : 'Primary' | 'Secondary' | 'Raw' = 'Primary'
|
|
28
29
|
*
|
|
@@ -65,6 +66,18 @@ export interface IADatePickerProps {
|
|
|
65
66
|
* Description : maximum date of ADatePicker. default is a year later from now
|
|
66
67
|
*/
|
|
67
68
|
maxDate?: Date;
|
|
69
|
+
/**
|
|
70
|
+
* isDisabled? : boolean
|
|
71
|
+
*
|
|
72
|
+
* Description : if true, ADatePicker is disabled
|
|
73
|
+
*/
|
|
74
|
+
isDisabled?: boolean;
|
|
75
|
+
/**
|
|
76
|
+
* isLoading? : boolean
|
|
77
|
+
*
|
|
78
|
+
* Description : if true, ADatePicker is loading
|
|
79
|
+
*/
|
|
80
|
+
isLoading?: boolean;
|
|
68
81
|
/**
|
|
69
82
|
* LeftAddon? : React.ReactNode
|
|
70
83
|
*
|