@stonecrop/stonecrop 0.4.11 → 0.4.12
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 +4 -1
- package/package.json +4 -4
package/dist/stonecrop.d.ts
CHANGED
|
@@ -482,7 +482,6 @@ export declare type TableColumn = {
|
|
|
482
482
|
type?: string;
|
|
483
483
|
width?: string;
|
|
484
484
|
pinned?: boolean;
|
|
485
|
-
color?: string;
|
|
486
485
|
colspan?: number;
|
|
487
486
|
ganttComponent?: string;
|
|
488
487
|
isGantt?: boolean;
|
|
@@ -533,6 +532,10 @@ export declare type TableRow = {
|
|
|
533
532
|
[key: string]: any;
|
|
534
533
|
indent?: number;
|
|
535
534
|
parent?: number;
|
|
535
|
+
/**
|
|
536
|
+
* When a table is being viewed as a Gantt chart, this colour would be applied to the row's gantt bar, if one exists.
|
|
537
|
+
*/
|
|
538
|
+
gantt_color?: string;
|
|
536
539
|
};
|
|
537
540
|
|
|
538
541
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/stonecrop",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.12",
|
|
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/
|
|
56
|
-
"stonecrop
|
|
57
|
-
"
|
|
55
|
+
"@stonecrop/aform": "0.4.12",
|
|
56
|
+
"@stonecrop/atable": "0.4.12",
|
|
57
|
+
"stonecrop-rig": "0.2.22"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|