@libxai/board 0.17.416 → 0.17.418
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 +20 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +20 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -366,6 +366,14 @@ interface GanttConfig {
|
|
|
366
366
|
* @default false
|
|
367
367
|
*/
|
|
368
368
|
persistExpandedState?: boolean | string;
|
|
369
|
+
/**
|
|
370
|
+
* v0.18.0: Persist filter state to localStorage
|
|
371
|
+
* When true, uses default key 'gantt-filter-state'
|
|
372
|
+
* When string, uses the provided string as the localStorage key
|
|
373
|
+
* When false/undefined, filter state only persists during the current session
|
|
374
|
+
* @default false
|
|
375
|
+
*/
|
|
376
|
+
persistFilter?: boolean | string;
|
|
369
377
|
/**
|
|
370
378
|
* v0.17.310: Dependency line style
|
|
371
379
|
* Controls how dependency arrows are rendered between tasks
|
package/dist/index.d.ts
CHANGED
|
@@ -366,6 +366,14 @@ interface GanttConfig {
|
|
|
366
366
|
* @default false
|
|
367
367
|
*/
|
|
368
368
|
persistExpandedState?: boolean | string;
|
|
369
|
+
/**
|
|
370
|
+
* v0.18.0: Persist filter state to localStorage
|
|
371
|
+
* When true, uses default key 'gantt-filter-state'
|
|
372
|
+
* When string, uses the provided string as the localStorage key
|
|
373
|
+
* When false/undefined, filter state only persists during the current session
|
|
374
|
+
* @default false
|
|
375
|
+
*/
|
|
376
|
+
persistFilter?: boolean | string;
|
|
369
377
|
/**
|
|
370
378
|
* v0.17.310: Dependency line style
|
|
371
379
|
* Controls how dependency arrows are rendered between tasks
|