@hexure/ui 1.8.11 → 1.8.12
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/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/ActionDialog/ActionDialog.d.ts +1 -0
- package/dist/cjs/types/components/Modal/Modal.d.ts +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/ActionDialog/ActionDialog.d.ts +1 -0
- package/dist/esm/types/components/Modal/Modal.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ interface ButtonProps$4 {
|
|
|
32
32
|
icon?: string;
|
|
33
33
|
onClick: (e?: any) => void;
|
|
34
34
|
tabIndex?: number;
|
|
35
|
+
loading?: boolean;
|
|
35
36
|
}
|
|
36
37
|
interface ActionDialogProps extends AccessibleProps {
|
|
37
38
|
/** It is used to give title. */
|
|
@@ -346,6 +347,7 @@ interface ButtonProps {
|
|
|
346
347
|
icon?: string;
|
|
347
348
|
onClick: (e?: any) => void;
|
|
348
349
|
tabIndex?: number;
|
|
350
|
+
loading?: boolean;
|
|
349
351
|
}
|
|
350
352
|
interface StepProps {
|
|
351
353
|
label: string;
|