@univerjs-pro/sheets-pivot-ui 0.2.7

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.
Files changed (59) hide show
  1. package/README.md +1 -0
  2. package/lib/cjs/index.js +1 -0
  3. package/lib/es/index.js +1 -0
  4. package/lib/index.css +1 -0
  5. package/lib/locale/en-US.json +89 -0
  6. package/lib/locale/ru-RU.json +89 -0
  7. package/lib/locale/vi-VN.json +89 -0
  8. package/lib/locale/zh-CN.json +89 -0
  9. package/lib/locale/zh-TW.json +89 -0
  10. package/lib/types/commands/commands/add-pivot-field.command.d.ts +4 -0
  11. package/lib/types/commands/commands/add-pivot-table.command.d.ts +4 -0
  12. package/lib/types/commands/commands/move-pivot-field.command.d.ts +4 -0
  13. package/lib/types/commands/commands/remove-pivot-field.command.d.ts +4 -0
  14. package/lib/types/commands/commands/set-pivot-collapse.command.d.ts +4 -0
  15. package/lib/types/commands/commands/set-pivot-filter.command.d.ts +4 -0
  16. package/lib/types/commands/commands/set-pivot-sort.command.d.ts +4 -0
  17. package/lib/types/commands/commands/update-pivot-setting.command.d.ts +4 -0
  18. package/lib/types/commands/commands/update-pivot-source.command.d.ts +4 -0
  19. package/lib/types/commands/commands/update-value-position.command.d.ts +4 -0
  20. package/lib/types/commands/operations/open-pivot-filter-panel.operation.d.ts +4 -0
  21. package/lib/types/commands/operations/open-pivot-range-panel.operation.d.ts +3 -0
  22. package/lib/types/commands/operations/open-pivot-setting-dialog.operation.d.ts +4 -0
  23. package/lib/types/commands/operations/open-pivot-table-panel.operation.d.ts +4 -0
  24. package/lib/types/const.d.ts +13 -0
  25. package/lib/types/controllers/sheets-pivot-clear.controller.d.ts +13 -0
  26. package/lib/types/controllers/sheets-pivot-confirm.controller.d.ts +20 -0
  27. package/lib/types/controllers/sheets-pivot-edit.controller.d.ts +16 -0
  28. package/lib/types/controllers/sheets-pivot-menu.controller.d.ts +11 -0
  29. package/lib/types/controllers/sheets-pivot-panel.controller.d.ts +18 -0
  30. package/lib/types/controllers/sheets-pivot-ref-range.controller.d.ts +23 -0
  31. package/lib/types/controllers/sheets-pivot-remove-sheet.controller.d.ts +10 -0
  32. package/lib/types/controllers/sheets-pivot-render.controller.d.ts +21 -0
  33. package/lib/types/controllers/sheets-pivot-table-menu.controller.d.ts +13 -0
  34. package/lib/types/index.d.ts +15 -0
  35. package/lib/types/locale/en-US.d.ts +4 -0
  36. package/lib/types/locale/ru-RU.d.ts +4 -0
  37. package/lib/types/locale/vi-VN.d.ts +4 -0
  38. package/lib/types/locale/zh-CN.d.ts +90 -0
  39. package/lib/types/locale/zh-TW.d.ts +4 -0
  40. package/lib/types/plugin.d.ts +20 -0
  41. package/lib/types/services/sheets-pivot-ui.service.d.ts +44 -0
  42. package/lib/types/type.d.ts +97 -0
  43. package/lib/types/util.d.ts +12 -0
  44. package/lib/types/views/components/PivotFilterPanel.d.ts +10 -0
  45. package/lib/types/views/components/PivotNumfmtDialog.d.ts +14 -0
  46. package/lib/types/views/components/PivotPanel.d.ts +13 -0
  47. package/lib/types/views/components/PivotPanelArea.d.ts +14 -0
  48. package/lib/types/views/components/PivotPanelSourceRange.d.ts +11 -0
  49. package/lib/types/views/components/PivotSourceList.d.ts +16 -0
  50. package/lib/types/views/components/PivotTableRangeSelector.d.ts +25 -0
  51. package/lib/types/views/components/SettingDialog.d.ts +15 -0
  52. package/lib/types/views/components/const.d.ts +24 -0
  53. package/lib/types/views/components/util.d.ts +78 -0
  54. package/lib/types/views/menu.d.ts +4 -0
  55. package/lib/types/views/widgets/drawing.d.ts +9 -0
  56. package/lib/types/views/widgets/icons.d.ts +5 -0
  57. package/lib/types/views/widgets/pivot-button.shape.d.ts +35 -0
  58. package/lib/umd/index.js +1 -0
  59. package/package.json +111 -0
package/package.json ADDED
@@ -0,0 +1,111 @@
1
+ {
2
+ "name": "@univerjs-pro/sheets-pivot-ui",
3
+ "version": "0.2.7",
4
+ "private": false,
5
+ "description": "Univer Sheets Pivot Table",
6
+ "author": "DreamNum <developer@univer.ai>",
7
+ "funding": {
8
+ "type": "opencollective",
9
+ "url": "https://opencollective.com/univer"
10
+ },
11
+ "homepage": "https://univer.ai",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/dream-num/univer"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/dream-num/univer/issues"
18
+ },
19
+ "keywords": [],
20
+ "sideEffects": [
21
+ "**/*.css"
22
+ ],
23
+ "exports": {
24
+ ".": {
25
+ "import": "./lib/es/index.js",
26
+ "require": "./lib/cjs/index.js",
27
+ "types": "./lib/types/index.d.ts"
28
+ },
29
+ "./*": {
30
+ "import": "./lib/es/*",
31
+ "require": "./lib/cjs/*",
32
+ "types": "./lib/types/index.d.ts"
33
+ },
34
+ "./lib/*": "./lib/*",
35
+ "./locale/*": "./lib/locale/*.json"
36
+ },
37
+ "main": "./lib/cjs/index.js",
38
+ "module": "./lib/es/index.js",
39
+ "types": "./lib/types/index.d.ts",
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "directories": {
44
+ "lib": "lib"
45
+ },
46
+ "files": [
47
+ "lib"
48
+ ],
49
+ "peerDependencies": {
50
+ "clsx": ">=2.0.0",
51
+ "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
52
+ "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0",
53
+ "rxjs": ">=7.0.0",
54
+ "@univerjs-pro/pivot-engine": "0.2.7",
55
+ "@univerjs-pro/sheets-pivot": "0.2.7",
56
+ "@univerjs/design": "0.2.7",
57
+ "@univerjs/core": "0.2.7",
58
+ "@univerjs/docs": "0.2.7",
59
+ "@univerjs/engine-formula": "0.2.7",
60
+ "@univerjs/engine-numfmt": "0.2.7",
61
+ "@univerjs/engine-render": "0.2.7",
62
+ "@univerjs/sheets-ui": "0.2.7",
63
+ "@univerjs/ui": "0.2.7",
64
+ "@univerjs/sheets": "0.2.7"
65
+ },
66
+ "dependencies": {
67
+ "@univerjs/icons": "^0.1.72",
68
+ "react-beautiful-dnd": "^13.1.1"
69
+ },
70
+ "devDependencies": {
71
+ "@types/react-beautiful-dnd": "^13.1.8",
72
+ "clsx": "^2.1.1",
73
+ "less": "^4.2.0",
74
+ "react": "18.3.1",
75
+ "rxjs": "^7.8.1",
76
+ "typescript": "^5.5.4",
77
+ "vite": "^5.4.0",
78
+ "vitest": "^2.0.5",
79
+ "@univerjs-pro/pivot-engine": "0.2.7",
80
+ "@univerjs-pro/sheets-pivot": "0.2.7",
81
+ "@univerjs/design": "0.2.7",
82
+ "@univerjs/core": "0.2.7",
83
+ "@univerjs/docs": "0.2.7",
84
+ "@univerjs/engine-render": "0.2.7",
85
+ "@univerjs/shared": "0.2.7",
86
+ "@univerjs/sheets": "0.2.7",
87
+ "@univerjs/sheets-ui": "0.2.7",
88
+ "@univerjs/ui": "0.2.7"
89
+ },
90
+ "univerSpace": {
91
+ ".": {
92
+ "import": "./lib/es/index.js",
93
+ "require": "./lib/cjs/index.js",
94
+ "types": "./lib/types/index.d.ts"
95
+ },
96
+ "./*": {
97
+ "import": "./lib/es/*",
98
+ "require": "./lib/cjs/*",
99
+ "types": "./lib/types/index.d.ts"
100
+ },
101
+ "./lib/*": "./lib/*",
102
+ "./locale/*": "./lib/locale/*.json"
103
+ },
104
+ "scripts": {
105
+ "test": "vitest run",
106
+ "test:watch": "vitest",
107
+ "coverage": "vitest run --coverage",
108
+ "lint:types": "tsc --noEmit",
109
+ "build": "tsc && vite build"
110
+ }
111
+ }