@canvas-components/react-pivot-table 0.2.3 → 0.2.5
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 +666 -182
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +668 -184
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -14,6 +14,8 @@ interface ReactPivotTableCustomizationOptions<RecordType = Record<string, unknow
|
|
|
14
14
|
layout?: PivotFieldLayout;
|
|
15
15
|
/** 非受控字段区域初始布局。 */
|
|
16
16
|
defaultLayout?: PivotFieldLayout;
|
|
17
|
+
/** 非受控字段布局的 IndexedDB 持久化键。 */
|
|
18
|
+
storageKey?: string;
|
|
17
19
|
/** 面板宽度。 */
|
|
18
20
|
panelWidth?: number;
|
|
19
21
|
onOpenChange?: (open: boolean) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ interface ReactPivotTableCustomizationOptions<RecordType = Record<string, unknow
|
|
|
14
14
|
layout?: PivotFieldLayout;
|
|
15
15
|
/** 非受控字段区域初始布局。 */
|
|
16
16
|
defaultLayout?: PivotFieldLayout;
|
|
17
|
+
/** 非受控字段布局的 IndexedDB 持久化键。 */
|
|
18
|
+
storageKey?: string;
|
|
17
19
|
/** 面板宽度。 */
|
|
18
20
|
panelWidth?: number;
|
|
19
21
|
onOpenChange?: (open: boolean) => void;
|