@korsolutions/guidon 1.0.28 → 1.0.30
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 +2 -2
- package/dist/commonjs/store.js +326 -237
- package/dist/commonjs/store.js.map +1 -1
- package/dist/module/store.js +323 -236
- package/dist/module/store.js.map +1 -1
- package/dist/typescript/commonjs/store.d.ts +13 -13
- package/dist/typescript/commonjs/store.d.ts.map +1 -1
- package/dist/typescript/module/store.d.ts +13 -13
- package/dist/typescript/module/store.d.ts.map +1 -1
- package/package.json +3 -5
- package/src/store.ts +302 -201
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ npm install @korsolutions/guidon
|
|
|
15
15
|
Make sure you have these dependencies installed:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
yarn add react react-native react-native-reanimated react-native-safe-area-context react-native-svg
|
|
18
|
+
yarn add react react-native react-native-reanimated react-native-safe-area-context react-native-svg
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Quick Start
|
|
@@ -305,7 +305,7 @@ interface GuidonStep {
|
|
|
305
305
|
```tsx
|
|
306
306
|
interface GuidonTheme {
|
|
307
307
|
backdropColor?: string; // Overlay color (default: '#000000')
|
|
308
|
-
backdropOpacity?: number; // Overlay opacity (default: 0.
|
|
308
|
+
backdropOpacity?: number; // Overlay opacity (default: 0.5)
|
|
309
309
|
tooltipBackgroundColor?: string;
|
|
310
310
|
tooltipBorderColor?: string;
|
|
311
311
|
tooltipBorderRadius?: number;
|