ados-rcm 1.0.26 → 1.0.28
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/ADialog/ADialog.d.ts +24 -0
- package/dist/AModule/AUtils/fileF.d.ts +5 -0
- package/dist/index.cjs.js +12 -12
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +1885 -1844
- package/package.json +1 -1
|
@@ -112,6 +112,30 @@ export interface IADialogProps {
|
|
|
112
112
|
* Description : language resources of the dialog
|
|
113
113
|
*/
|
|
114
114
|
resources?: Partial<typeof Resources.ADialog>;
|
|
115
|
+
/**
|
|
116
|
+
* isOkDisabled? : any
|
|
117
|
+
*
|
|
118
|
+
* Description : if truthy, ok button is disabled
|
|
119
|
+
*/
|
|
120
|
+
isOkDisabled?: any;
|
|
121
|
+
/**
|
|
122
|
+
* isOkLoading? : any
|
|
123
|
+
*
|
|
124
|
+
* Description : if truthy, ok button is loading
|
|
125
|
+
*/
|
|
126
|
+
isOkLoading?: any;
|
|
127
|
+
/**
|
|
128
|
+
* isCancelDisabled? : any
|
|
129
|
+
*
|
|
130
|
+
* Description : if truthy, cancel button is disabled
|
|
131
|
+
*/
|
|
132
|
+
isCancelDisabled?: any;
|
|
133
|
+
/**
|
|
134
|
+
* isCancelLoading? : any
|
|
135
|
+
*
|
|
136
|
+
* Description : if truthy, cancel button is loading
|
|
137
|
+
*/
|
|
138
|
+
isCancelLoading?: any;
|
|
115
139
|
}
|
|
116
140
|
/**
|
|
117
141
|
* AComponent : ADialog
|