@optilogic/core 1.0.0-beta.1 → 1.0.0-beta.10
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 +10 -7
- package/dist/index.cjs +1244 -284
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +412 -6
- package/dist/index.d.ts +412 -6
- package/dist/index.js +1179 -234
- package/dist/index.js.map +1 -1
- package/dist/styles.css +61 -0
- package/package.json +20 -56
- package/src/components/board.tsx +251 -0
- package/src/components/card.tsx +656 -12
- package/src/components/context-menu.tsx +1 -1
- package/src/components/data-grid/hooks/useKeyboardNavigation.ts +1 -1
- package/src/components/data-table.tsx +735 -0
- package/src/index.ts +40 -0
- package/src/styles.css +61 -0
package/README.md
CHANGED
|
@@ -13,17 +13,20 @@ npm install @optilogic/core
|
|
|
13
13
|
Install the required peer dependencies:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
# Required
|
|
17
16
|
npm install react react-dom tailwindcss
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Optional peer dependencies for specific components:
|
|
18
20
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
```bash
|
|
22
|
+
# DataGrid virtualization
|
|
23
|
+
npm install @tanstack/react-virtual
|
|
21
24
|
|
|
22
|
-
#
|
|
23
|
-
npm install
|
|
25
|
+
# DatePicker
|
|
26
|
+
npm install date-fns react-day-picker
|
|
24
27
|
|
|
25
|
-
#
|
|
26
|
-
npm install
|
|
28
|
+
# Toaster notifications
|
|
29
|
+
npm install sonner
|
|
27
30
|
```
|
|
28
31
|
|
|
29
32
|
## Setup
|