ados-rcm 1.0.46 → 1.0.47
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 +9 -3
- package/dist/index.cjs.js +8 -8
- package/dist/index.es.js +796 -795
- package/package.json +1 -1
|
@@ -116,11 +116,11 @@ export interface IADialogProps {
|
|
|
116
116
|
*/
|
|
117
117
|
noDim?: boolean;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* isLoading? : any
|
|
120
120
|
*
|
|
121
|
-
* Description :
|
|
121
|
+
* Description : if truthy, dialog is loading
|
|
122
122
|
*/
|
|
123
|
-
|
|
123
|
+
isLoading?: any;
|
|
124
124
|
/**
|
|
125
125
|
* isOkDisabled? : any
|
|
126
126
|
*
|
|
@@ -145,6 +145,12 @@ export interface IADialogProps {
|
|
|
145
145
|
* Description : if truthy, cancel button is loading
|
|
146
146
|
*/
|
|
147
147
|
isCancelLoading?: any;
|
|
148
|
+
/**
|
|
149
|
+
* resources? : Partial<typeof Resources.ADialog>
|
|
150
|
+
*
|
|
151
|
+
* Description : language resources of the dialog
|
|
152
|
+
*/
|
|
153
|
+
resources?: Partial<typeof Resources.ADialog>;
|
|
148
154
|
}
|
|
149
155
|
/**
|
|
150
156
|
* AComponent : ADialog
|