@smartv/pivot-core 0.1.0 → 0.1.1
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 +17 -17
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# @smartv/pivot-core
|
|
2
|
-
|
|
3
|
-
Framework-agnostic pivot engine. No Vue, no Univer, no ECharts.
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
pnpm add @smartv/pivot-core
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
```ts
|
|
10
|
-
import { PivotEngine, createDefaultPivotConfig } from '@smartv/pivot-core'
|
|
11
|
-
|
|
12
|
-
const result = new PivotEngine(records, config, fields).execute()
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## License
|
|
16
|
-
|
|
17
|
-
Apache-2.0.
|
|
1
|
+
# @smartv/pivot-core
|
|
2
|
+
|
|
3
|
+
Framework-agnostic pivot engine. No Vue, no Univer, no ECharts.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pnpm add @smartv/pivot-core
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { PivotEngine, createDefaultPivotConfig } from '@smartv/pivot-core'
|
|
11
|
+
|
|
12
|
+
const result = new PivotEngine(records, config, fields).execute()
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
Apache-2.0.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartv/pivot-core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"description": "Framework-agnostic pivot engine: aggregate, filter, group, and layout.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"homepage": "https://github.com/Crayon-hua/smart-pivot-table",
|
|
@@ -44,7 +44,6 @@
|
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "tsc -p tsconfig.build.json",
|
|
46
46
|
"test": "vitest run --config vitest.config.ts",
|
|
47
|
-
"type-check": "tsc --noEmit -p tsconfig.json"
|
|
48
|
-
"publish:only": "pnpm publish --access public --no-git-checks --no-provenance --registry=https://registry.npmjs.org"
|
|
47
|
+
"type-check": "tsc --noEmit -p tsconfig.json"
|
|
49
48
|
}
|
|
50
49
|
}
|