ikualo-ui-kit-mobile 2.0.5 → 2.0.6
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/app.json
CHANGED
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ import { IDialogDown } from '../../models';
|
|
|
8
8
|
// Sistema de cola de diálogos global
|
|
9
9
|
interface DialogQueueItem extends IDialogDown {
|
|
10
10
|
id: string;
|
|
11
|
-
priority:
|
|
11
|
+
priority: 0 |1 | 2 | 3 | 4 | 5;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
class DialogManager {
|
|
@@ -91,7 +91,7 @@ class DialogManager {
|
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
export const DialogDown = (props: IDialogDown
|
|
94
|
+
export const DialogDown = (props: IDialogDown) => {
|
|
95
95
|
const theme = useStore().theme;
|
|
96
96
|
const stylesDialog = getStylesDialog(theme);
|
|
97
97
|
const { isVisible, title, children, onDismiss, image, showCloseButton = true, priority } = props;
|