react-dialogger 1.1.3 → 1.1.5
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/README.md +4 -0
- package/package.json +15 -4
- package/types/DialogTypes.d.ts +1 -1
package/README.md
CHANGED
@@ -313,3 +313,7 @@ This basic usage setup enables you to quickly configure and display a custom dia
|
|
313
313
|
> This package is a continuation of the `react-araci` package.
|
314
314
|
> Due to an error, `react-araci` was removed, and it has been decided to continue under the new package name **`react-dialogger`**.
|
315
315
|
|
316
|
+
## 📩 Contact
|
317
|
+
For support or inquiries, please reach out via email:
|
318
|
+
✉️ [developer@appinsource.eu](mailto:developer@appinsource.eu)
|
319
|
+
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dialogger",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.5",
|
4
4
|
"description": "This package is a continuation of the react-araci package. Due to an error, react-araci was removed, and it has been decided to continue under the new package name react-dialogger",
|
5
5
|
"main": "index.js",
|
6
6
|
"author": "Sueleyman Topaloglu",
|
@@ -14,7 +14,18 @@
|
|
14
14
|
"react-draggable": "^4.4.6",
|
15
15
|
"react-icons": "^5.5.0"
|
16
16
|
},
|
17
|
-
"
|
18
|
-
|
19
|
-
|
17
|
+
"maintainers": [
|
18
|
+
{
|
19
|
+
"name": "Süleyman Topaloğlu",
|
20
|
+
"email": "developer@appinsource.eu"
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"keywords": [
|
24
|
+
"react",
|
25
|
+
"dialog",
|
26
|
+
"dynamic",
|
27
|
+
"component",
|
28
|
+
"ui",
|
29
|
+
"react-component"
|
30
|
+
]
|
20
31
|
}
|
package/types/DialogTypes.d.ts
CHANGED
@@ -115,7 +115,7 @@ export interface IListenerDialogDef extends Omit<IDialogDef, "state" | "values"
|
|
115
115
|
}
|
116
116
|
export type TDialogStateListenerCallbackType = (state: IStateDef, values: DialogValues, dialog: IListenerDialogDef) => void;
|
117
117
|
type TDialogCallbackFn<T> = (dialog: IDialogDef) => T;
|
118
|
-
export type TDialogCallbackNodeFn = TDialogCallbackFn<string | React.ReactElement<any
|
118
|
+
export type TDialogCallbackNodeFn = TDialogCallbackFn<string | React.ReactElement<any>> | React.ReactNode | React.JSX.Element;
|
119
119
|
export type TDialogCallbackVoidFn = TDialogCallbackFn<void>;
|
120
120
|
export interface IDialogDef extends Omit<Partial<Pick<DialogBase, 'isInProcess' | 'setInProcess' | 'values' | 'setValue' | 'setValues' | 'close' | 'dialogOptions' | 'switchFullScreen' | 'actions' | 'snackbar' | 'formikValidate' | 'formikProps' | 'focus' | 'setOrder' | 'setBody'>>, 'switchFullScreen'> {
|
121
121
|
/** @deprecated Deprecated, use setValues instead. */
|