@libxai/board 1.4.8 → 1.4.10
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/index.cjs +21 -21
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +21 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -374,6 +374,12 @@ interface GanttConfig {
|
|
|
374
374
|
* @default false
|
|
375
375
|
*/
|
|
376
376
|
persistFilter?: boolean | string;
|
|
377
|
+
/**
|
|
378
|
+
* v1.4.10: Clear filters key - when this value changes, internal filters are reset
|
|
379
|
+
* Useful for navigation scenarios where filters should be cleared (e.g., from notifications)
|
|
380
|
+
* Pass a timestamp or counter that changes when you want to reset filters
|
|
381
|
+
*/
|
|
382
|
+
clearFiltersKey?: string | number;
|
|
377
383
|
/**
|
|
378
384
|
* v0.17.310: Dependency line style
|
|
379
385
|
* Controls how dependency arrows are rendered between tasks
|
package/dist/index.d.ts
CHANGED
|
@@ -374,6 +374,12 @@ interface GanttConfig {
|
|
|
374
374
|
* @default false
|
|
375
375
|
*/
|
|
376
376
|
persistFilter?: boolean | string;
|
|
377
|
+
/**
|
|
378
|
+
* v1.4.10: Clear filters key - when this value changes, internal filters are reset
|
|
379
|
+
* Useful for navigation scenarios where filters should be cleared (e.g., from notifications)
|
|
380
|
+
* Pass a timestamp or counter that changes when you want to reset filters
|
|
381
|
+
*/
|
|
382
|
+
clearFiltersKey?: string | number;
|
|
377
383
|
/**
|
|
378
384
|
* v0.17.310: Dependency line style
|
|
379
385
|
* Controls how dependency arrows are rendered between tasks
|