@stonecrop/stonecrop 0.4.10 → 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/stonecrop.d.ts +6 -1
- package/package.json +3 -3
package/dist/stonecrop.d.ts
CHANGED
|
@@ -482,6 +482,11 @@ export declare type TableColumn = {
|
|
|
482
482
|
type?: string;
|
|
483
483
|
width?: string;
|
|
484
484
|
pinned?: boolean;
|
|
485
|
+
color?: string;
|
|
486
|
+
colspan?: number;
|
|
487
|
+
ganttComponent?: string;
|
|
488
|
+
isGantt?: boolean;
|
|
489
|
+
originalIndex?: number;
|
|
485
490
|
cellComponent?: string;
|
|
486
491
|
cellComponentProps?: Record<string, any>;
|
|
487
492
|
/**
|
|
@@ -516,7 +521,7 @@ export declare type TableConfig = {
|
|
|
516
521
|
* - `list-expansion` - carets are displayed in the number column that expand/collapse the row inline
|
|
517
522
|
* - `tree` - carets are displayed in the number column that expand/collapse grouped rows
|
|
518
523
|
*/
|
|
519
|
-
view?: 'uncounted' | 'list' | 'list-expansion' | 'tree';
|
|
524
|
+
view?: 'uncounted' | 'list' | 'list-expansion' | 'tree' | 'gantt';
|
|
520
525
|
fullWidth?: boolean;
|
|
521
526
|
};
|
|
522
527
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/stonecrop",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.11",
|
|
4
4
|
"description": "schema helper",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"eslint-plugin-vue": "^9.11.1",
|
|
53
53
|
"typescript": "~5.6.3",
|
|
54
54
|
"vite": "^6.1.1",
|
|
55
|
+
"@stonecrop/atable": "0.4.11",
|
|
55
56
|
"stonecrop-rig": "0.2.22",
|
|
56
|
-
"@stonecrop/
|
|
57
|
-
"@stonecrop/aform": "0.4.10"
|
|
57
|
+
"@stonecrop/aform": "0.4.11"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|