@openorgus/react 0.0.1 → 0.0.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/LICENSE +21 -0
- package/README.md +76 -0
- package/package.json +41 -8
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 OpenGrid Team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# @openorgus/react
|
|
2
|
+
|
|
3
|
+
OpenGrid Design System - A comprehensive React component library with 81 production-ready components.
|
|
4
|
+
|
|
5
|
+
## 🚀 Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @openorgus/react
|
|
9
|
+
# or
|
|
10
|
+
yarn add @openorgus/react
|
|
11
|
+
# or
|
|
12
|
+
pnpm add @openorgus/react
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## 📦 Components
|
|
16
|
+
|
|
17
|
+
### Basic Components (15)
|
|
18
|
+
Alert, Avatar, Badge, Box, Breadcrumbs, Card, Chip, Container, Divider, Link, List, Paper, Skeleton, Stack, Tooltip
|
|
19
|
+
|
|
20
|
+
### Form Components (14)
|
|
21
|
+
Autocomplete, Checkbox, ColorPicker, DatePicker, NumberField, Radio, Select, Signature, Slider, Switch, TextArea, TextField, Upload, VerificationCode
|
|
22
|
+
|
|
23
|
+
### Navigation Components (7)
|
|
24
|
+
AppBar, BottomNavigation, Menu, Pagination, SpeedDial, Stepper, Tabs
|
|
25
|
+
|
|
26
|
+
### Feedback Components (6)
|
|
27
|
+
Backdrop, Dialog, Modal, Progress, Snackbar, Loader
|
|
28
|
+
|
|
29
|
+
### Data Display Components (7)
|
|
30
|
+
Charts, ImageList, Rating, Table, TransferList, TreeView, OrderSummary
|
|
31
|
+
|
|
32
|
+
### Interactive Components (8)
|
|
33
|
+
Button, ButtonGroup, FloatingActionButton, ToggleButton, Drawer, ActionSheet, Camera, Map
|
|
34
|
+
|
|
35
|
+
### Advanced/AI Components (11)
|
|
36
|
+
AIChatbot, CodeGenerator, ImageGenerator, TextGenerator, VideoGenerator, VoiceChatbot, VoiceUI, DataQuery, Whiteboard, QRCode, CreditCard
|
|
37
|
+
|
|
38
|
+
### Media/Visual Components (9)
|
|
39
|
+
AnimationPreview, EmojisPreview, IconsPreview, IllustrationsPreview, VideoPlayer, TypographyPreview, FontAwesomeWrapper, ShoppingCart, VirtualKeyboard
|
|
40
|
+
|
|
41
|
+
### Effects/Decorative (4)
|
|
42
|
+
InteractiveCursor, MagnetLines, PixelTrail, DecayCard
|
|
43
|
+
|
|
44
|
+
## 💡 Usage
|
|
45
|
+
|
|
46
|
+
```jsx
|
|
47
|
+
import { Button, Card, TextField } from '@openorgus/react';
|
|
48
|
+
|
|
49
|
+
function App() {
|
|
50
|
+
return (
|
|
51
|
+
<Card>
|
|
52
|
+
<TextField label="Name" />
|
|
53
|
+
<Button variant="primary">Submit</Button>
|
|
54
|
+
</Card>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## 🎨 Features
|
|
60
|
+
|
|
61
|
+
- ✅ 81 Production-ready components
|
|
62
|
+
- ✅ TypeScript support
|
|
63
|
+
- ✅ Fully customizable
|
|
64
|
+
- ✅ Responsive design
|
|
65
|
+
- ✅ Dark mode support
|
|
66
|
+
- ✅ Accessibility compliant
|
|
67
|
+
- ✅ Tree-shakeable
|
|
68
|
+
- ✅ Zero dependencies (except peer deps)
|
|
69
|
+
|
|
70
|
+
## 📖 Documentation
|
|
71
|
+
|
|
72
|
+
Visit [https://opengrid.design](https://opengrid.design) for full documentation.
|
|
73
|
+
|
|
74
|
+
## 📄 License
|
|
75
|
+
|
|
76
|
+
MIT © OpenGrid Team
|
package/package.json
CHANGED
|
@@ -1,23 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
"name": "@openorgus/react",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"access": "public"
|
|
5
|
+
},
|
|
6
|
+
"version": "0.0.3",
|
|
7
|
+
"description": "A comprehensive React component library with 81 production-ready components by OpenOrgus.",
|
|
8
|
+
"author": "OpenOrgus",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"react",
|
|
12
|
+
"design-system",
|
|
13
|
+
"ui-kit",
|
|
14
|
+
"components",
|
|
15
|
+
"tailwind"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/openorgus/react.git"
|
|
20
|
+
},
|
|
4
21
|
"type": "module",
|
|
5
|
-
"
|
|
6
|
-
"module": "dist/opengrid-react.es.js",
|
|
22
|
+
"module": "dist/openorgus-react.es.js",
|
|
7
23
|
"types": "dist/index.d.ts",
|
|
8
24
|
"files": [
|
|
9
25
|
"dist"
|
|
10
26
|
],
|
|
11
27
|
"exports": {
|
|
12
28
|
".": {
|
|
13
|
-
"import": "./dist/
|
|
14
|
-
"require": "./dist/opengrid-react.umd.js",
|
|
29
|
+
"import": "./dist/openorgus-react.es.js",
|
|
15
30
|
"types": "./dist/index.d.ts"
|
|
16
31
|
}
|
|
17
32
|
},
|
|
18
33
|
"scripts": {
|
|
19
34
|
"dev": "vite",
|
|
20
|
-
"build": "
|
|
35
|
+
"build": "vite build",
|
|
21
36
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
22
37
|
"preview": "vite preview"
|
|
23
38
|
},
|
|
@@ -29,12 +44,30 @@
|
|
|
29
44
|
"@types/node": "^20.0.0",
|
|
30
45
|
"@types/react": "^19.0.0",
|
|
31
46
|
"@types/react-dom": "^19.0.0",
|
|
47
|
+
"@types/file-saver": "^2.0.7",
|
|
48
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
32
49
|
"@vitejs/plugin-react": "^4.0.0",
|
|
33
50
|
"typescript": "^5.0.0",
|
|
34
51
|
"vite": "^5.0.0",
|
|
35
52
|
"vite-plugin-dts": "^3.0.0"
|
|
36
53
|
},
|
|
37
54
|
"dependencies": {
|
|
38
|
-
"
|
|
55
|
+
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
|
56
|
+
"@fortawesome/free-brands-svg-icons": "^7.1.0",
|
|
57
|
+
"@fortawesome/free-regular-svg-icons": "^7.1.0",
|
|
58
|
+
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
|
59
|
+
"@fortawesome/react-fontawesome": "^3.1.1",
|
|
60
|
+
"@monaco-editor/react": "^4.7.0",
|
|
61
|
+
"cursor-effects": "^1.0.18",
|
|
62
|
+
"date-fns": "^4.1.0",
|
|
63
|
+
"file-saver": "^2.0.5",
|
|
64
|
+
"idb": "^8.0.3",
|
|
65
|
+
"jszip": "^3.10.1",
|
|
66
|
+
"lucide-react": "^0.555.0",
|
|
67
|
+
"react-dropzone": "^14.3.8",
|
|
68
|
+
"react-markdown": "^10.1.0",
|
|
69
|
+
"react-syntax-highlighter": "^16.1.0",
|
|
70
|
+
"recharts": "^3.5.1",
|
|
71
|
+
"zustand": "^5.0.9"
|
|
39
72
|
}
|
|
40
73
|
}
|