@aladinbs/react-guided-tour 1.0.1
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/LICENSE +21 -0
- package/README.md +581 -0
- package/dist/components/TourOverlay.d.ts +5 -0
- package/dist/components/TourOverlay.d.ts.map +1 -0
- package/dist/components/TourPopover.d.ts +5 -0
- package/dist/components/TourPopover.d.ts.map +1 -0
- package/dist/components/TourProvider.d.ts +15 -0
- package/dist/components/TourProvider.d.ts.map +1 -0
- package/dist/components/TourRunner.d.ts +5 -0
- package/dist/components/TourRunner.d.ts.map +1 -0
- package/dist/core/TourActions.d.ts +15 -0
- package/dist/core/TourActions.d.ts.map +1 -0
- package/dist/core/TourEngine.d.ts +35 -0
- package/dist/core/TourEngine.d.ts.map +1 -0
- package/dist/core/TourStorage.d.ts +14 -0
- package/dist/core/TourStorage.d.ts.map +1 -0
- package/dist/hooks/useTourEngine.d.ts +21 -0
- package/dist/hooks/useTourEngine.d.ts.map +1 -0
- package/dist/hooks/useTourHighlight.d.ts +8 -0
- package/dist/hooks/useTourHighlight.d.ts.map +1 -0
- package/dist/index.d.ts +326 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +2097 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +2116 -0
- package/dist/index.js.map +1 -0
- package/dist/integrations/NavigationIntegration.d.ts +24 -0
- package/dist/integrations/NavigationIntegration.d.ts.map +1 -0
- package/dist/integrations/TabIntegration.d.ts +19 -0
- package/dist/integrations/TabIntegration.d.ts.map +1 -0
- package/dist/integrations/WizardIntegration.d.ts +23 -0
- package/dist/integrations/WizardIntegration.d.ts.map +1 -0
- package/dist/types/index.d.ts +137 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/utils/positioning.d.ts +10 -0
- package/dist/utils/positioning.d.ts.map +1 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aladinbs/react-guided-tour",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "A modern, flexible React TypeScript tour guide library with advanced highlighting and interaction capabilities",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "rollup -c",
|
|
14
|
+
"dev": "rollup -c -w",
|
|
15
|
+
"test": "jest",
|
|
16
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
17
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
18
|
+
"type-check": "tsc --noEmit",
|
|
19
|
+
"example": "cd example && npm start",
|
|
20
|
+
"prepare": "npm run build",
|
|
21
|
+
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"react",
|
|
25
|
+
"tour",
|
|
26
|
+
"guide",
|
|
27
|
+
"onboarding",
|
|
28
|
+
"tutorial",
|
|
29
|
+
"typescript",
|
|
30
|
+
"ui",
|
|
31
|
+
"highlight"
|
|
32
|
+
],
|
|
33
|
+
"author": "Aladin Bensassi <aladin.bensassi@gmail.com>",
|
|
34
|
+
"homepage": "https://github.com/Aladinbensassi/react-guided-tour#readme",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/Aladinbensassi/react-guided-tour.git"
|
|
38
|
+
},
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/Aladinbensassi/react-guided-tour/issues"
|
|
41
|
+
},
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"react": "^19.0.0",
|
|
45
|
+
"react-dom": "^19.0.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
49
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
50
|
+
"@rollup/plugin-typescript": "^11.1.5",
|
|
51
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
52
|
+
"@types/jest": "^29.5.8",
|
|
53
|
+
"@types/react": "^18.3.27",
|
|
54
|
+
"@types/react-dom": "^18.2.17",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
56
|
+
"@typescript-eslint/parser": "^6.12.0",
|
|
57
|
+
"autoprefixer": "^10.4.23",
|
|
58
|
+
"eslint": "^8.54.0",
|
|
59
|
+
"eslint-plugin-react": "^7.33.2",
|
|
60
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
61
|
+
"jest": "^29.7.0",
|
|
62
|
+
"postcss": "^8.5.6",
|
|
63
|
+
"react": "^19.0.0",
|
|
64
|
+
"react-dom": "^19.0.0",
|
|
65
|
+
"rollup": "^4.5.0",
|
|
66
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
67
|
+
"tailwindcss": "^4.1.18",
|
|
68
|
+
"ts-jest": "^29.1.1",
|
|
69
|
+
"tslib": "^2.6.2",
|
|
70
|
+
"typescript": "^5.2.2"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"clsx": "^2.0.0"
|
|
74
|
+
}
|
|
75
|
+
}
|