@gridsheet/preact-core 2.0.4 → 2.0.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/README.md +6 -1
- package/dist/index.js +42 -42
- package/dist/index.js.map +1 -1
- package/dist/lib/table.d.ts +5 -6
- package/dist/types.d.ts +0 -2
- package/package.json +1 -1
package/dist/lib/table.d.ts
CHANGED
|
@@ -155,6 +155,8 @@ export declare class Table implements UserTable {
|
|
|
155
155
|
status: 0 | 1 | 2;
|
|
156
156
|
wire: Wire;
|
|
157
157
|
idsToBeIdentified: Id[];
|
|
158
|
+
totalWidth: number;
|
|
159
|
+
totalHeight: number;
|
|
158
160
|
private version;
|
|
159
161
|
private idMatrix;
|
|
160
162
|
private area;
|
|
@@ -189,12 +191,9 @@ export declare class Table implements UserTable {
|
|
|
189
191
|
width: number;
|
|
190
192
|
height: number;
|
|
191
193
|
};
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
};
|
|
196
|
-
refresh(keepAddressCache?: boolean): Table;
|
|
197
|
-
clone(keepAddressCache?: boolean): Table;
|
|
194
|
+
setTotalSize(): void;
|
|
195
|
+
refresh(relocate?: boolean, resize?: boolean): Table;
|
|
196
|
+
clone(relocate?: boolean): Table;
|
|
198
197
|
getPointById(id: Id, slideY?: number, slideX?: number): PointType & {
|
|
199
198
|
absCol: boolean;
|
|
200
199
|
absRow: boolean;
|
package/dist/types.d.ts
CHANGED