excel-collab 0.1.3 → 0.1.4
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/CHANGELOG.md +18 -0
- package/README.md +43 -0
- package/lib/{Chart-C8JMNxjK.mjs → Chart-Dxhd8MQ-.mjs} +2 -2
- package/lib/{Chart-C8JMNxjK.mjs.map → Chart-Dxhd8MQ-.mjs.map} +1 -1
- package/lib/containers/store/context.d.ts +2 -2
- package/lib/{index-BjaMvRnZ.mjs → index-B4VGTwZf.mjs} +11100 -11087
- package/lib/index-B4VGTwZf.mjs.map +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.es.js +143 -143
- package/lib/index.umd.js +123 -123
- package/lib/index.umd.js.map +1 -1
- package/package.json +15 -4
- package/lib/assets/worker-D4R8R97w.js +0 -8
- package/lib/index-BjaMvRnZ.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 0.1.4 (2025-07-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* deploy ([9721511](https://github.com/nusr/excel/commit/9721511d02ae31deedaa2ddd41943ab44cae9b0f))
|
|
12
|
+
* ts reference ([670d6ff](https://github.com/nusr/excel/commit/670d6ffdbf6ffe90223506c3eb4f00d9df501f9c))
|
|
13
|
+
* update CI ([792f099](https://github.com/nusr/excel/commit/792f09906bd9f723f819a24f191062198e61ee3b))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* mono repo ([#108](https://github.com/nusr/excel/issues/108)) ([6471621](https://github.com/nusr/excel/commit/647162181aa2ca07be718a416acb5905f225e6a2))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## 0.1.2 (2025-07-21)
|
|
7
25
|
|
|
8
26
|
|
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
## Installation
|
|
2
|
+
|
|
3
|
+
```bash
|
|
4
|
+
npm i --save excel-collab
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
1. Create a React app
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm create vite@latest my-app -- --template react-ts
|
|
13
|
+
cd my-app
|
|
14
|
+
npm i
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
2. Install the Required Libraries
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm i --save excel-collab
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
3. Modify the Main File
|
|
24
|
+
|
|
25
|
+
```ts src/main.tsx
|
|
26
|
+
// src/main.tsx
|
|
27
|
+
import { createRoot } from 'react-dom/client';
|
|
28
|
+
import { StrictMode } from 'react';
|
|
29
|
+
import { Excel } from 'excel-collab';
|
|
30
|
+
import 'excel-collab/style.css';
|
|
31
|
+
|
|
32
|
+
createRoot(document.getElementById('root')!).render(
|
|
33
|
+
<StrictMode>
|
|
34
|
+
<Excel style={{ height: '100vh' }} />
|
|
35
|
+
</StrictMode>,
|
|
36
|
+
);
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
4. Start the app
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npm run dev
|
|
43
|
+
```
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { g as Li, p as Jn, C as Ri, j as gt, d as Ei } from "./index-
|
|
1
|
+
import { g as Li, p as Jn, C as Ri, j as gt, d as Ei } from "./index-B4VGTwZf.mjs";
|
|
2
2
|
import { memo as sn, useRef as Ii, useEffect as Fi } from "react";
|
|
3
3
|
/*!
|
|
4
4
|
* @kurkle/color v0.3.4
|
|
@@ -8896,4 +8896,4 @@ ph.displayName = "Chart";
|
|
|
8896
8896
|
export {
|
|
8897
8897
|
ph as default
|
|
8898
8898
|
};
|
|
8899
|
-
//# sourceMappingURL=Chart-
|
|
8899
|
+
//# sourceMappingURL=Chart-Dxhd8MQ-.mjs.map
|