@stonecrop/atable 0.2.26 → 0.2.27
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/dist/atable.d.ts +3 -0
- package/dist/atable.js +254 -254
- package/dist/atable.js.map +1 -1
- package/dist/atable.umd.cjs +1 -1
- package/dist/atable.umd.cjs.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/types/index.d.ts +7 -1
- package/dist/src/types/index.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/src/components/ACell.vue +10 -5
- package/src/index.ts +1 -1
- package/src/types/index.ts +9 -1
package/dist/atable.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import ARow from '@/components/ARow.vue';
|
|
|
5
5
|
import ATable from '@/components/ATable.vue';
|
|
6
6
|
import ATableHeader from '@/components/ATableHeader.vue';
|
|
7
7
|
import ATableModal from '@/components/ATableModal.vue';
|
|
8
|
+
import { CellFormatContext } from '@/types';
|
|
8
9
|
import { TableColumn } from '@/types';
|
|
9
10
|
import { TableConfig } from '@/types';
|
|
10
11
|
import TableDataStore from './components';
|
|
@@ -24,6 +25,8 @@ export { ATableHeader }
|
|
|
24
25
|
|
|
25
26
|
export { ATableModal }
|
|
26
27
|
|
|
28
|
+
export { CellFormatContext }
|
|
29
|
+
|
|
27
30
|
/**
|
|
28
31
|
* Install all ATable components
|
|
29
32
|
* @param app - Vue app instance
|