@zhenliang/sheet 0.0.5 → 0.0.6
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.
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @zhenliang/sheet
|
|
2
|
+
|
|
3
|
+
[](https://npmjs.org/package/@zhenliang/sheet)
|
|
4
|
+
[](https://npmjs.org/package/@zhenliang/sheet)
|
|
5
|
+
|
|
6
|
+
A react library developed with dumi
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
|
|
10
|
+
TODO
|
|
11
|
+
|
|
12
|
+
## Options
|
|
13
|
+
|
|
14
|
+
TODO
|
|
15
|
+
|
|
16
|
+
## Development
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# install dependencies
|
|
20
|
+
$ pnpm install
|
|
21
|
+
|
|
22
|
+
# develop library by docs demo
|
|
23
|
+
$ pnpm start
|
|
24
|
+
|
|
25
|
+
# build library source code
|
|
26
|
+
$ pnpm run build
|
|
27
|
+
|
|
28
|
+
# build library source code in watch mode
|
|
29
|
+
$ pnpm run build:watch
|
|
30
|
+
|
|
31
|
+
# build docs
|
|
32
|
+
$ pnpm run docs:build
|
|
33
|
+
|
|
34
|
+
# check your project for potential problems
|
|
35
|
+
$ pnpm run doctor
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## LICENSE
|
|
39
|
+
|
|
40
|
+
MIT
|
|
@@ -240,7 +240,9 @@ export var sideEffectReducer = {
|
|
|
240
240
|
end = _getState9.end,
|
|
241
241
|
data = _getState9.data,
|
|
242
242
|
history = _getState9.history,
|
|
243
|
-
groupConfig = _getState9.groupConfig
|
|
243
|
+
groupConfig = _getState9.groupConfig,
|
|
244
|
+
editing = _getState9.editing;
|
|
245
|
+
if (editing) return;
|
|
244
246
|
var groupMap = groupConfigToGroupMap(groupConfig);
|
|
245
247
|
var cellIndex = flatRowColIndex(start, end);
|
|
246
248
|
var changes = cellIndex.filter(function (item) {
|
|
@@ -4,7 +4,7 @@ export declare type refAssertion = {
|
|
|
4
4
|
contains?: (target: EventTarget | null) => boolean;
|
|
5
5
|
focus?: () => boolean;
|
|
6
6
|
} & HTMLTableSectionElement;
|
|
7
|
-
export declare type CellFixed =
|
|
7
|
+
export declare type CellFixed = SheetType.CellAlign;
|
|
8
8
|
export declare type ColumnProps = {
|
|
9
9
|
align?: SheetType.CellAlign;
|
|
10
10
|
fixed?: Omit<CellFixed, 'center'>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zhenliang/sheet",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "A react library developed with dumi",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -67,8 +67,6 @@
|
|
|
67
67
|
"prettier": "^2.7.1",
|
|
68
68
|
"prettier-plugin-organize-imports": "^3.0.0",
|
|
69
69
|
"prettier-plugin-packagejson": "^2.2.18",
|
|
70
|
-
"react": "^18.0.0",
|
|
71
|
-
"react-dom": "^18.0.0",
|
|
72
70
|
"stylelint": "^14.9.1"
|
|
73
71
|
},
|
|
74
72
|
"peerDependencies": {
|