chayns-api 1.0.71 → 1.0.73
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.
|
@@ -61,7 +61,7 @@ export interface BaseDialog {
|
|
|
61
61
|
config?: any;
|
|
62
62
|
};
|
|
63
63
|
}
|
|
64
|
-
export type Dialog<T extends any = object> = BaseDialog & (DialogAlert | DialogConfirm | DialogInput | DialogModule<T> | DialogIFrame<T> | DialogSelect | DialogDate | DialogToast);
|
|
64
|
+
export type Dialog<T extends any = object> = BaseDialog & (DialogAlert | DialogConfirm | DialogInput | DialogModule<T> | DialogIFrame<T> | DialogSelect | DialogDate | DialogToast | DialogSignature | DialogFileSelect);
|
|
65
65
|
export interface DialogSignature {
|
|
66
66
|
type: DialogType.SIGNATURE;
|
|
67
67
|
}
|
|
@@ -106,7 +106,11 @@ export type DialogSelectListItemType = {
|
|
|
106
106
|
disabled?: boolean;
|
|
107
107
|
isSelected?: boolean;
|
|
108
108
|
url?: string;
|
|
109
|
+
/**
|
|
110
|
+
* @deprecated Use {@link icon} instead
|
|
111
|
+
*/
|
|
109
112
|
className?: string;
|
|
113
|
+
icon?: string;
|
|
110
114
|
};
|
|
111
115
|
export interface DialogSelect {
|
|
112
116
|
type: DialogType.SELECT;
|