chayns-api 1.0.70 → 1.0.72
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.
|
@@ -73,11 +73,13 @@ export interface DialogModule<T extends any = object> {
|
|
|
73
73
|
scope: string;
|
|
74
74
|
};
|
|
75
75
|
dialogInput?: T;
|
|
76
|
+
backgroundColor?: string;
|
|
76
77
|
}
|
|
77
78
|
export interface DialogIFrame<T extends any = object> {
|
|
78
79
|
type: DialogType.IFRAME;
|
|
79
80
|
url: string;
|
|
80
81
|
dialogInput?: T;
|
|
82
|
+
backgroundColor?: string;
|
|
81
83
|
}
|
|
82
84
|
export declare enum DialogInputType {
|
|
83
85
|
NUMBER = "number",
|
|
@@ -104,7 +106,11 @@ export type DialogSelectListItemType = {
|
|
|
104
106
|
disabled?: boolean;
|
|
105
107
|
isSelected?: boolean;
|
|
106
108
|
url?: string;
|
|
109
|
+
/**
|
|
110
|
+
* @deprecated Use {@link icon} instead
|
|
111
|
+
*/
|
|
107
112
|
className?: string;
|
|
113
|
+
icon?: string;
|
|
108
114
|
};
|
|
109
115
|
export interface DialogSelect {
|
|
110
116
|
type: DialogType.SELECT;
|