@canvas-components/pivot-table 0.1.8 → 0.2.1
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 +351 -81
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +351 -81
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -153,6 +153,8 @@ interface PivotDimensionFilter {
|
|
|
153
153
|
searchExact?: boolean;
|
|
154
154
|
condition?: PivotFilterCondition;
|
|
155
155
|
secondCondition?: PivotFilterCondition;
|
|
156
|
+
/** 动态条件列表;存在时优先于旧的两条件字段。 */
|
|
157
|
+
conditions?: PivotFilterCondition[];
|
|
156
158
|
conditionRelation?: "and" | "or";
|
|
157
159
|
}
|
|
158
160
|
/** 行轴、列轴和报告筛选字段的独立过滤状态。 */
|
|
@@ -572,6 +574,11 @@ interface PivotLayoutSnapshot {
|
|
|
572
574
|
start: number;
|
|
573
575
|
end: number;
|
|
574
576
|
};
|
|
577
|
+
/** 固定在表体底部的末尾汇总行范围。 */
|
|
578
|
+
frozenBottomRowRange: {
|
|
579
|
+
start: number;
|
|
580
|
+
end: number;
|
|
581
|
+
} | null;
|
|
575
582
|
visibleColumnRange: {
|
|
576
583
|
start: number;
|
|
577
584
|
end: number;
|
|
@@ -788,6 +795,8 @@ declare class PivotTable<RecordType = Record<string, unknown>> {
|
|
|
788
795
|
private wheelScrollTarget;
|
|
789
796
|
private wheelScrollFrameId;
|
|
790
797
|
private wheelScrollLastTime;
|
|
798
|
+
private continuousScrollTimer;
|
|
799
|
+
private continuousScrollPointerId;
|
|
791
800
|
private resizeSession;
|
|
792
801
|
private resizeGuideX;
|
|
793
802
|
private suppressNextClick;
|
|
@@ -915,6 +924,8 @@ declare class PivotTable<RecordType = Record<string, unknown>> {
|
|
|
915
924
|
private beginScrollbarInteraction;
|
|
916
925
|
private updateScrollbarDrag;
|
|
917
926
|
private stepScrollbar;
|
|
927
|
+
private startContinuousScrollbarScroll;
|
|
928
|
+
private stopContinuousScrollbarScroll;
|
|
918
929
|
private applyScrollPosition;
|
|
919
930
|
private applyResize;
|
|
920
931
|
private openFilterPanel;
|
package/dist/index.d.ts
CHANGED
|
@@ -153,6 +153,8 @@ interface PivotDimensionFilter {
|
|
|
153
153
|
searchExact?: boolean;
|
|
154
154
|
condition?: PivotFilterCondition;
|
|
155
155
|
secondCondition?: PivotFilterCondition;
|
|
156
|
+
/** 动态条件列表;存在时优先于旧的两条件字段。 */
|
|
157
|
+
conditions?: PivotFilterCondition[];
|
|
156
158
|
conditionRelation?: "and" | "or";
|
|
157
159
|
}
|
|
158
160
|
/** 行轴、列轴和报告筛选字段的独立过滤状态。 */
|
|
@@ -572,6 +574,11 @@ interface PivotLayoutSnapshot {
|
|
|
572
574
|
start: number;
|
|
573
575
|
end: number;
|
|
574
576
|
};
|
|
577
|
+
/** 固定在表体底部的末尾汇总行范围。 */
|
|
578
|
+
frozenBottomRowRange: {
|
|
579
|
+
start: number;
|
|
580
|
+
end: number;
|
|
581
|
+
} | null;
|
|
575
582
|
visibleColumnRange: {
|
|
576
583
|
start: number;
|
|
577
584
|
end: number;
|
|
@@ -788,6 +795,8 @@ declare class PivotTable<RecordType = Record<string, unknown>> {
|
|
|
788
795
|
private wheelScrollTarget;
|
|
789
796
|
private wheelScrollFrameId;
|
|
790
797
|
private wheelScrollLastTime;
|
|
798
|
+
private continuousScrollTimer;
|
|
799
|
+
private continuousScrollPointerId;
|
|
791
800
|
private resizeSession;
|
|
792
801
|
private resizeGuideX;
|
|
793
802
|
private suppressNextClick;
|
|
@@ -915,6 +924,8 @@ declare class PivotTable<RecordType = Record<string, unknown>> {
|
|
|
915
924
|
private beginScrollbarInteraction;
|
|
916
925
|
private updateScrollbarDrag;
|
|
917
926
|
private stepScrollbar;
|
|
927
|
+
private startContinuousScrollbarScroll;
|
|
928
|
+
private stopContinuousScrollbarScroll;
|
|
918
929
|
private applyScrollPosition;
|
|
919
930
|
private applyResize;
|
|
920
931
|
private openFilterPanel;
|