arthub-table 0.0.3 → 0.0.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.
@@ -3,7 +3,11 @@
3
3
  *
4
4
  * @packageDocumentation
5
5
  */
6
- export { default as DataGrid } from './components/index.vue';
6
+ import type { App } from 'vue';
7
+ import DataGrid from './components/index.vue';
8
+ declare const install: (app: App) => void;
9
+ export { install };
10
+ export default DataGrid;
7
11
  export type { CellData, CellStyle, RowData, ColData, DataGridOptions, Position, Size, Rect, Range, CellRange, HistoryItem, ValidatorRule, ColumnType, ColumnConfig, SelectorState, EditorState, AutofillState, RangeState, DrawOptions, TextOptions, ClipboardState, EventHandlers, Direction, ScrollDirection, GroupLevel, SeparateLevel, BaseGroupedRowData, GroupRowData, SeparateRowData, NormalRowData, GroupedTableRowData, GroupRowStyle, SeparatorRowStyle, StatisticOption, FooterCellData, FooterData, FooterCellClickInfo, } from './core/types';
8
12
  export { isGroupRow, isSeparateRow, isNormalRow, GROUP_TABLE_CONSTANTS, DEFAULT_GROUP_STYLES, DEFAULT_SEPARATOR_STYLES, } from './core/types';
9
13
  export type { CellBounds, ViewerRenderContext, ViewerDragState, CellViewer, CellViewerData, ViewerOption, ViewerStyle, TextViewerData, SelectViewerData, ImageViewerData, PersonViewerData, PersonInfo, ProgressViewerData, DatetimeViewerData, BooleanViewerData, StatusViewerData, StatusOption, GroupHeaderViewerData, SeparatorRowViewerData, PunchViewerData, PunchValue, ModuleInfo, ModuleViewerData, TextViewerWithSwitcherData, FileItem, FileViewerData, HyperlinkTextViewerData, IUpstreamModule, IUpstreamReminderProperties, IUpstreamSyncProperty, IUpstreamFieldViewItem, UpstreamViewerData, TaskNodeItem, TaskNodeViewerData, NestedGridViewerData, NestedColumnConfig, ViewerConstructor, ViewerFactory, ViewerTypeMap, ViewerType, TypedCellData, TableActionButtonOption, TableActionButtonViewerData, } from './core/viewers/types';
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "High-performance canvas-based table/grid component for Vue 3 with TypeScript support, featuring virtual scrolling, cell viewers, grouped rows, and nested grids.",
5
5
  "main": "dist/arthub-table.common.js",
6
- "module": "dist/arthub-table.umd.js",
6
+ "module": "dist/arthub-table.umd.min.js",
7
7
  "types": "dist/types/index.d.ts",
8
8
  "files": [
9
9
  "dist",
@@ -65,7 +65,6 @@
65
65
  "predeploy": "npm run build:demo",
66
66
  "deploy": "gh-pages -d dist",
67
67
  "prepare": "husky",
68
- "prepublishOnly": "npm run lint && npm run build",
69
68
  "version": "git add package.json",
70
69
  "release": "bash build/release.sh"
71
70
  },
@@ -75,7 +74,6 @@
75
74
  "dependencies": {
76
75
  "axios": "^1.6.0",
77
76
  "core-js": "^3.35.0",
78
- "element-plus": "^2.4.4",
79
77
  "gifuct-js": "^2.1.2",
80
78
  "loadsh": "^0.0.4"
81
79
  },
@@ -96,6 +94,7 @@
96
94
  "@vue/test-utils": "^2.4.3",
97
95
  "chai": "^4.3.10",
98
96
  "cross-env": "^7.0.3",
97
+ "element-plus": "^2.4.4",
99
98
  "eslint": "^8.56.0",
100
99
  "eslint-plugin-prettier": "^5.0.1",
101
100
  "eslint-plugin-vue": "^9.19.2",