react-dialogger 1.1.1 → 1.1.3
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 +8 -1
- package/package.json +5 -2
package/README.md
CHANGED
@@ -1,8 +1,15 @@
|
|
1
1
|
# NPM
|
2
|
-
```
|
2
|
+
```js
|
3
3
|
npm i react-dialogger
|
4
4
|
```
|
5
5
|
|
6
|
+
# GitHub
|
7
|
+
You can find the example code and more information about the project on our [GitHub repository](https://github.com/appinsource2021/react-dialogger-example.git).
|
8
|
+
|
9
|
+
# codesandbox
|
10
|
+
You can find the example code about the project on our [Codesandbox](https://codesandbox.io/p/sandbox/7r3t84).
|
11
|
+
|
12
|
+
|
6
13
|
# react-araci - Custom Dialog Component Documentation
|
7
14
|
|
8
15
|
This documentation explains the configuration of the Custom Dialog Component and how to customize it using initial options with the `useDialogOptions` function. `useDialogOptions` allows you to set the initial options to manage the dialog's appearance and behavior.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dialogger",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.3",
|
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",
|
@@ -13,5 +13,8 @@
|
|
13
13
|
"react-dom": "^18.2.0",
|
14
14
|
"react-draggable": "^4.4.6",
|
15
15
|
"react-icons": "^5.5.0"
|
16
|
+
},
|
17
|
+
"scripts": {
|
18
|
+
"pb": "npm version patch && npm publish"
|
16
19
|
}
|
17
|
-
}
|
20
|
+
}
|