@abdellatifui/react 2.0.0
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/dist/nextgen.d.ts +295 -0
- package/dist/nextgen.js +42522 -0
- package/dist/style.css +1 -0
- package/package.json +133 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@abdellatifui/react",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/nextgen-umd.cjs",
|
|
10
|
+
"module": "dist/nextgen.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/nextgen.js",
|
|
14
|
+
"require": "./dist/nextgen-umd.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "vite",
|
|
19
|
+
"build": "tsc && vite build",
|
|
20
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
21
|
+
"preview": "vite preview",
|
|
22
|
+
"storybook": "storybook dev -p 6006",
|
|
23
|
+
"build-storybook": "storybook build"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@emotion/react": "^11.13.5",
|
|
27
|
+
"@emotion/styled": "^11.13.5",
|
|
28
|
+
"@fluentui/react-components": "^9.54.2",
|
|
29
|
+
"@heroui/react": "^2.3.6",
|
|
30
|
+
"@hookform/resolvers": "^3.3.4",
|
|
31
|
+
"@mui/base": "^5.0.0-beta.62",
|
|
32
|
+
"@mui/icons-material": "^5.16.7",
|
|
33
|
+
"@mui/joy": "^5.0.0-beta.36",
|
|
34
|
+
"@mui/material": "^5.16.7",
|
|
35
|
+
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
|
|
36
|
+
"@mui/x-date-pickers": "^7.22.2",
|
|
37
|
+
"@popperjs/core": "^2.11.8",
|
|
38
|
+
"@radix-ui/react-accordion": "^1.1.2",
|
|
39
|
+
"@radix-ui/react-alert-dialog": "^1.0.5",
|
|
40
|
+
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
|
41
|
+
"@radix-ui/react-avatar": "^1.0.4",
|
|
42
|
+
"@radix-ui/react-checkbox": "^1.0.4",
|
|
43
|
+
"@radix-ui/react-collapsible": "^1.0.3",
|
|
44
|
+
"@radix-ui/react-context-menu": "^2.1.5",
|
|
45
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
46
|
+
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
47
|
+
"@radix-ui/react-hover-card": "^1.1.1",
|
|
48
|
+
"@radix-ui/react-icons": "^1.3.0",
|
|
49
|
+
"@radix-ui/react-label": "^2.0.2",
|
|
50
|
+
"@radix-ui/react-menubar": "^1.0.4",
|
|
51
|
+
"@radix-ui/react-navigation-menu": "^1.1.4",
|
|
52
|
+
"@radix-ui/react-popover": "^1.0.7",
|
|
53
|
+
"@radix-ui/react-progress": "^1.0.3",
|
|
54
|
+
"@radix-ui/react-radio-group": "^1.1.3",
|
|
55
|
+
"@radix-ui/react-scroll-area": "^1.0.5",
|
|
56
|
+
"@radix-ui/react-select": "^2.1.0",
|
|
57
|
+
"@radix-ui/react-separator": "^1.0.3",
|
|
58
|
+
"@radix-ui/react-slider": "^1.1.2",
|
|
59
|
+
"@radix-ui/react-slot": "^1.0.2",
|
|
60
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
61
|
+
"@radix-ui/react-tabs": "^1.1.0",
|
|
62
|
+
"@radix-ui/react-toast": "^1.1.5",
|
|
63
|
+
"@radix-ui/react-toggle": "^1.1.2",
|
|
64
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
65
|
+
"@storybook/addon-docs": "^8.0.10",
|
|
66
|
+
"@storybook/client-api": "^7.6.17",
|
|
67
|
+
"@storybook/store": "^7.6.17",
|
|
68
|
+
"@szhsin/react-menu": "^4.1.0",
|
|
69
|
+
"ag-grid-enterprise": "^31.0.2",
|
|
70
|
+
"ag-grid-react": "^31.0.2",
|
|
71
|
+
"axios": "^1.7.2",
|
|
72
|
+
"class-variance-authority": "^0.7.0",
|
|
73
|
+
"clsx": "^2.1.1",
|
|
74
|
+
"cmdk": "^1.0.0",
|
|
75
|
+
"copy-to-clipboard": "^3.3.3",
|
|
76
|
+
"core-js": "^3.37.0",
|
|
77
|
+
"date-fns": "^3.6.0",
|
|
78
|
+
"embla-carousel-autoplay": "^8.1.2",
|
|
79
|
+
"embla-carousel-react": "^8.1.2",
|
|
80
|
+
"file-saver": "^2.0.5",
|
|
81
|
+
"framer-motion": "^11.1.9",
|
|
82
|
+
"hotkeys-js": "^3.13.7",
|
|
83
|
+
"jquery": "^3.7.1",
|
|
84
|
+
"lucide-react": "^0.378.0",
|
|
85
|
+
"material-react-table": "^2.13.3",
|
|
86
|
+
"motion": "^12.5.0",
|
|
87
|
+
"primereact": "^10.6.5",
|
|
88
|
+
"react-day-picker": "^8.10.1",
|
|
89
|
+
"react-draggable": "^4.4.6",
|
|
90
|
+
"react-hook-form": "^7.51.4",
|
|
91
|
+
"react-hot-toast": "^2.4.1",
|
|
92
|
+
"react-icons": "^5.3.0",
|
|
93
|
+
"react-resizable-panels": "^2.0.20",
|
|
94
|
+
"react-tabs": "^6.0.2",
|
|
95
|
+
"react-toastify": "^10.0.5",
|
|
96
|
+
"react-window": "^1.8.10",
|
|
97
|
+
"socket.io-client": "^4.7.5",
|
|
98
|
+
"tailwind-merge": "^2.3.0",
|
|
99
|
+
"tailwindcss-animate": "^1.0.7",
|
|
100
|
+
"vite-plugin-dts": "^4.2.4",
|
|
101
|
+
"vite-plugin-require": "^1.1.14",
|
|
102
|
+
"xlsx": "^0.18.5",
|
|
103
|
+
"zod": "^3.23.8"
|
|
104
|
+
},
|
|
105
|
+
"devDependencies": {
|
|
106
|
+
"@chromatic-com/storybook": "^1.3.3",
|
|
107
|
+
"@storybook/addon-essentials": "^8.4.4",
|
|
108
|
+
"@storybook/addon-interactions": "^8.4.4",
|
|
109
|
+
"@storybook/addon-links": "^8.4.4",
|
|
110
|
+
"@storybook/addon-onboarding": "^8.4.4",
|
|
111
|
+
"@storybook/blocks": "^8.4.4",
|
|
112
|
+
"@storybook/react": "^8.4.4",
|
|
113
|
+
"@storybook/react-vite": "^8.4.4",
|
|
114
|
+
"@storybook/test": "^8.4.4",
|
|
115
|
+
"@types/node": "^20.12.11",
|
|
116
|
+
"@types/react": "^18.2.66",
|
|
117
|
+
"@types/react-dom": "^18.2.22",
|
|
118
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
119
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
120
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
121
|
+
"autoprefixer": "^10.4.19",
|
|
122
|
+
"eslint": "^8.57.0",
|
|
123
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
124
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
125
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
126
|
+
"postcss": "^8.4.38",
|
|
127
|
+
"storybook": "^8.0.9",
|
|
128
|
+
"tailwindcss": "^3.4.3",
|
|
129
|
+
"typescript": "^5.2.2",
|
|
130
|
+
"vite": "^5.2.0",
|
|
131
|
+
"vite-plugin-node-polyfills": "^0.21.0"
|
|
132
|
+
}
|
|
133
|
+
}
|