@stonecrop/atable 0.2.23 → 0.2.25
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/src/tsdoc-metadata.json +11 -0
- package/dist/atable.d.ts +46 -0
- package/dist/atable.js +463 -416
- package/dist/atable.js.map +1 -1
- package/dist/atable.tsbuildinfo +1 -0
- package/dist/atable.umd.cjs +1 -1
- package/dist/atable.umd.cjs.map +1 -1
- package/dist/components/index.js +97 -0
- package/dist/index.js +21 -0
- package/dist/src/components/index.d.ts +23 -0
- package/dist/src/components/index.d.ts.map +1 -0
- package/dist/src/index.d.ts +17 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/types/index.d.ts +46 -0
- package/dist/src/types/index.d.ts.map +1 -0
- package/dist/style.css +1 -1
- package/dist/types/index.js +0 -0
- package/package.json +26 -31
- package/src/components/ACell.vue +1 -1
- package/src/components/AExpansionRow.vue +5 -6
- package/src/components/ARow.vue +15 -28
- package/src/components/ATable.vue +8 -8
- package/src/components/ATableHeader.vue +2 -3
- package/src/components/ATableModal.vue +8 -9
- package/src/components/index.ts +1 -1
- package/src/index.ts +6 -0
- package/src/themes/default.css +0 -2
- package/src/types/index.ts +53 -0
- package/src/histoire.setup.ts +0 -24
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.47.0"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/dist/atable.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import ACell from '@/components/ACell.vue';
|
|
2
|
+
import AExpansionRow from '@/components/AExpansionRow.vue';
|
|
3
|
+
import { App } from 'vue';
|
|
4
|
+
import ARow from '@/components/ARow.vue';
|
|
5
|
+
import ATable from '@/components/ATable.vue';
|
|
6
|
+
import ATableHeader from '@/components/ATableHeader.vue';
|
|
7
|
+
import ATableModal from '@/components/ATableModal.vue';
|
|
8
|
+
import { TableColumn } from '@/types';
|
|
9
|
+
import { TableConfig } from '@/types';
|
|
10
|
+
import TableDataStore from './components';
|
|
11
|
+
import { TableDisplay } from '@/types';
|
|
12
|
+
import { TableModal } from '@/types';
|
|
13
|
+
import { TableRow } from '@/types';
|
|
14
|
+
|
|
15
|
+
export { ACell }
|
|
16
|
+
|
|
17
|
+
export { AExpansionRow }
|
|
18
|
+
|
|
19
|
+
export { ARow }
|
|
20
|
+
|
|
21
|
+
export { ATable }
|
|
22
|
+
|
|
23
|
+
export { ATableHeader }
|
|
24
|
+
|
|
25
|
+
export { ATableModal }
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Install all ATable components
|
|
29
|
+
* @param app - Vue app instance
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare function install(app: App): void;
|
|
33
|
+
|
|
34
|
+
export { TableColumn }
|
|
35
|
+
|
|
36
|
+
export { TableConfig }
|
|
37
|
+
|
|
38
|
+
export { TableDataStore }
|
|
39
|
+
|
|
40
|
+
export { TableDisplay }
|
|
41
|
+
|
|
42
|
+
export { TableModal }
|
|
43
|
+
|
|
44
|
+
export { TableRow }
|
|
45
|
+
|
|
46
|
+
export { }
|