@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.
- package/README.md +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/es/index.js +1 -0
- package/lib/index.css +1 -0
- package/lib/locale/en-US.json +89 -0
- package/lib/locale/ru-RU.json +89 -0
- package/lib/locale/vi-VN.json +89 -0
- package/lib/locale/zh-CN.json +89 -0
- package/lib/locale/zh-TW.json +89 -0
- package/lib/types/commands/commands/add-pivot-field.command.d.ts +4 -0
- package/lib/types/commands/commands/add-pivot-table.command.d.ts +4 -0
- package/lib/types/commands/commands/move-pivot-field.command.d.ts +4 -0
- package/lib/types/commands/commands/remove-pivot-field.command.d.ts +4 -0
- package/lib/types/commands/commands/set-pivot-collapse.command.d.ts +4 -0
- package/lib/types/commands/commands/set-pivot-filter.command.d.ts +4 -0
- package/lib/types/commands/commands/set-pivot-sort.command.d.ts +4 -0
- package/lib/types/commands/commands/update-pivot-setting.command.d.ts +4 -0
- package/lib/types/commands/commands/update-pivot-source.command.d.ts +4 -0
- package/lib/types/commands/commands/update-value-position.command.d.ts +4 -0
- package/lib/types/commands/operations/open-pivot-filter-panel.operation.d.ts +4 -0
- package/lib/types/commands/operations/open-pivot-range-panel.operation.d.ts +3 -0
- package/lib/types/commands/operations/open-pivot-setting-dialog.operation.d.ts +4 -0
- package/lib/types/commands/operations/open-pivot-table-panel.operation.d.ts +4 -0
- package/lib/types/const.d.ts +13 -0
- package/lib/types/controllers/sheets-pivot-clear.controller.d.ts +13 -0
- package/lib/types/controllers/sheets-pivot-confirm.controller.d.ts +20 -0
- package/lib/types/controllers/sheets-pivot-edit.controller.d.ts +16 -0
- package/lib/types/controllers/sheets-pivot-menu.controller.d.ts +11 -0
- package/lib/types/controllers/sheets-pivot-panel.controller.d.ts +18 -0
- package/lib/types/controllers/sheets-pivot-ref-range.controller.d.ts +23 -0
- package/lib/types/controllers/sheets-pivot-remove-sheet.controller.d.ts +10 -0
- package/lib/types/controllers/sheets-pivot-render.controller.d.ts +21 -0
- package/lib/types/controllers/sheets-pivot-table-menu.controller.d.ts +13 -0
- package/lib/types/index.d.ts +15 -0
- package/lib/types/locale/en-US.d.ts +4 -0
- package/lib/types/locale/ru-RU.d.ts +4 -0
- package/lib/types/locale/vi-VN.d.ts +4 -0
- package/lib/types/locale/zh-CN.d.ts +90 -0
- package/lib/types/locale/zh-TW.d.ts +4 -0
- package/lib/types/plugin.d.ts +20 -0
- package/lib/types/services/sheets-pivot-ui.service.d.ts +44 -0
- package/lib/types/type.d.ts +97 -0
- package/lib/types/util.d.ts +12 -0
- package/lib/types/views/components/PivotFilterPanel.d.ts +10 -0
- package/lib/types/views/components/PivotNumfmtDialog.d.ts +14 -0
- package/lib/types/views/components/PivotPanel.d.ts +13 -0
- package/lib/types/views/components/PivotPanelArea.d.ts +14 -0
- package/lib/types/views/components/PivotPanelSourceRange.d.ts +11 -0
- package/lib/types/views/components/PivotSourceList.d.ts +16 -0
- package/lib/types/views/components/PivotTableRangeSelector.d.ts +25 -0
- package/lib/types/views/components/SettingDialog.d.ts +15 -0
- package/lib/types/views/components/const.d.ts +24 -0
- package/lib/types/views/components/util.d.ts +78 -0
- package/lib/types/views/menu.d.ts +4 -0
- package/lib/types/views/widgets/drawing.d.ts +9 -0
- package/lib/types/views/widgets/icons.d.ts +5 -0
- package/lib/types/views/widgets/pivot-button.shape.d.ts +35 -0
- package/lib/umd/index.js +1 -0
- package/package.json +111 -0
package/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# @univerjs/sheet-pivot-ui
|