@stonecrop/aform 0.4.29 → 0.4.31
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 +7 -0
- package/dist/aform.js +481 -496
- package/dist/aform.js.map +1 -1
- package/dist/aform.umd.cjs +1 -1
- package/dist/aform.umd.cjs.map +1 -1
- package/dist/src/tsdoc-metadata.json +1 -1
- package/package.json +13 -13
package/dist/aform.d.ts
CHANGED
|
@@ -353,6 +353,13 @@ export declare interface TableConfig {
|
|
|
353
353
|
* @defaultValue false
|
|
354
354
|
*/
|
|
355
355
|
fullWidth?: boolean;
|
|
356
|
+
/**
|
|
357
|
+
* Control whether dependency graph connections should be enabled for Gantt views.
|
|
358
|
+
* When false, connection handles and dependency lines will be hidden.
|
|
359
|
+
*
|
|
360
|
+
* @defaultValue true
|
|
361
|
+
*/
|
|
362
|
+
dependencyGraph?: boolean;
|
|
356
363
|
}
|
|
357
364
|
|
|
358
365
|
/**
|