react-dialogger 1.1.104 → 1.1.105
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/package.json +1 -1
- package/types/DialogTypes.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dialogger",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.105",
|
|
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",
|
package/types/DialogTypes.d.ts
CHANGED
|
@@ -257,7 +257,7 @@ export type Dialogify<T> = T extends Function ? never : T extends string | numbe
|
|
|
257
257
|
[K in keyof T]: Dialogify<T[K]>;
|
|
258
258
|
} : never;
|
|
259
259
|
export type DialogHandlerFn = ((...args: any[]) => any) | {
|
|
260
|
-
current:
|
|
260
|
+
current: unknown;
|
|
261
261
|
};
|
|
262
262
|
export type DialogHandlers = Record<string, DialogHandlerFn>;
|
|
263
263
|
export interface BaseDialogDOMRect {
|