@stonecrop/atable 0.4.31 → 0.4.32
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.js.map +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/package.json +7 -3
- package/src/index.ts +1 -15
package/dist/src/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import ATableLoading from './components/ATableLoading.vue';
|
|
|
9
9
|
import ATableLoadingBar from './components/ATableLoadingBar.vue';
|
|
10
10
|
import ATableModal from './components/ATableModal.vue';
|
|
11
11
|
export { createTableStore } from './stores/table';
|
|
12
|
-
export type
|
|
12
|
+
export type * from './types';
|
|
13
13
|
/**
|
|
14
14
|
* Install all ATable components
|
|
15
15
|
* @param app - Vue app instance
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,OAAO,KAAK,MAAM,wBAAwB,CAAA;AAC1C,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,IAAI,MAAM,uBAAuB,CAAA;AACxC,OAAO,MAAM,MAAM,yBAAyB,CAAA;AAC5C,OAAO,YAAY,MAAM,+BAA+B,CAAA;AACxD,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,gBAAgB,MAAM,mCAAmC,CAAA;AAChE,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACjD,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,OAAO,KAAK,MAAM,wBAAwB,CAAA;AAC1C,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,IAAI,MAAM,uBAAuB,CAAA;AACxC,OAAO,MAAM,MAAM,yBAAyB,CAAA;AAC5C,OAAO,YAAY,MAAM,+BAA+B,CAAA;AACxD,OAAO,aAAa,MAAM,gCAAgC,CAAA;AAC1D,OAAO,gBAAgB,MAAM,mCAAmC,CAAA;AAChE,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACjD,mBAAmB,SAAS,CAAA;AAE5B;;;;GAIG;AACH,iBAAS,OAAO,CAAC,GAAG,EAAE,GAAG,QAUxB;AAED,OAAO,EACN,KAAK,EACL,aAAa,EACb,UAAU,EACV,IAAI,EACJ,MAAM,EACN,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,WAAW,EACX,OAAO,GACP,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/atable",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.32",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
},
|
|
24
24
|
"require": "./dist/atable.umd.cjs"
|
|
25
25
|
},
|
|
26
|
+
"./types": {
|
|
27
|
+
"import": "./dist/src/types/index.d.ts",
|
|
28
|
+
"require": "./dist/src/types/index.d.ts"
|
|
29
|
+
},
|
|
26
30
|
"./styles": "./dist/assets/index.css"
|
|
27
31
|
},
|
|
28
32
|
"typings": "./dist/src/index.d.ts",
|
|
@@ -38,8 +42,8 @@
|
|
|
38
42
|
"@vueuse/core": "^13.6.0",
|
|
39
43
|
"pinia": "^3.0.3",
|
|
40
44
|
"vue": "^3.5.18",
|
|
41
|
-
"@stonecrop/
|
|
42
|
-
"@stonecrop/
|
|
45
|
+
"@stonecrop/themes": "0.4.32",
|
|
46
|
+
"@stonecrop/utilities": "0.4.32"
|
|
43
47
|
},
|
|
44
48
|
"devDependencies": {
|
|
45
49
|
"@microsoft/api-documenter": "^7.26.31",
|
package/src/index.ts
CHANGED
|
@@ -10,21 +10,7 @@ import ATableLoading from './components/ATableLoading.vue'
|
|
|
10
10
|
import ATableLoadingBar from './components/ATableLoadingBar.vue'
|
|
11
11
|
import ATableModal from './components/ATableModal.vue'
|
|
12
12
|
export { createTableStore } from './stores/table'
|
|
13
|
-
export type
|
|
14
|
-
CellContext,
|
|
15
|
-
ConnectionEvent,
|
|
16
|
-
ConnectionHandle,
|
|
17
|
-
ConnectionPath,
|
|
18
|
-
GanttBarInfo,
|
|
19
|
-
GanttDragEvent,
|
|
20
|
-
GanttOptions,
|
|
21
|
-
TableColumn,
|
|
22
|
-
TableConfig,
|
|
23
|
-
TableDisplay,
|
|
24
|
-
TableModal,
|
|
25
|
-
TableModalProps,
|
|
26
|
-
TableRow,
|
|
27
|
-
} from './types'
|
|
13
|
+
export type * from './types'
|
|
28
14
|
|
|
29
15
|
/**
|
|
30
16
|
* Install all ATable components
|