@stonecrop/aform 0.4.9 → 0.4.11
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/aform.d.ts +6 -1
- package/package.json +6 -6
package/dist/aform.d.ts
CHANGED
|
@@ -172,6 +172,11 @@ export declare type TableColumn = {
|
|
|
172
172
|
type?: string;
|
|
173
173
|
width?: string;
|
|
174
174
|
pinned?: boolean;
|
|
175
|
+
color?: string;
|
|
176
|
+
colspan?: number;
|
|
177
|
+
ganttComponent?: string;
|
|
178
|
+
isGantt?: boolean;
|
|
179
|
+
originalIndex?: number;
|
|
175
180
|
cellComponent?: string;
|
|
176
181
|
cellComponentProps?: Record<string, any>;
|
|
177
182
|
/**
|
|
@@ -206,7 +211,7 @@ export declare type TableConfig = {
|
|
|
206
211
|
* - `list-expansion` - carets are displayed in the number column that expand/collapse the row inline
|
|
207
212
|
* - `tree` - carets are displayed in the number column that expand/collapse grouped rows
|
|
208
213
|
*/
|
|
209
|
-
view?: 'uncounted' | 'list' | 'list-expansion' | 'tree';
|
|
214
|
+
view?: 'uncounted' | 'list' | 'list-expansion' | 'tree' | 'gantt';
|
|
210
215
|
fullWidth?: boolean;
|
|
211
216
|
};
|
|
212
217
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/aform",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@vueuse/core": "^12.7.0",
|
|
35
35
|
"@vueuse/components": "^12.7.0",
|
|
36
36
|
"vue": "^3.5.13",
|
|
37
|
-
"@stonecrop/
|
|
38
|
-
"@stonecrop/
|
|
37
|
+
"@stonecrop/utilities": "0.4.11",
|
|
38
|
+
"@stonecrop/themes": "0.4.11"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@microsoft/api-documenter": "^7.26.10",
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"vite": "^6.1.1",
|
|
57
57
|
"vitest": "^3.0.6",
|
|
58
58
|
"vue-router": "^4.5.0",
|
|
59
|
-
"
|
|
60
|
-
"stonecrop
|
|
59
|
+
"stonecrop-rig": "0.2.22",
|
|
60
|
+
"@stonecrop/atable": "0.4.11"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@stonecrop/atable": "0.4.
|
|
63
|
+
"@stonecrop/atable": "0.4.11"
|
|
64
64
|
},
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|