@deephaven/grid 0.6.3-beta.9 → 0.7.0
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/Grid.d.ts +13 -3
- package/dist/Grid.d.ts.map +1 -1
- package/dist/GridMetricCalculator.d.ts +165 -448
- package/dist/GridMetricCalculator.d.ts.map +1 -1
- package/dist/GridMetricCalculator.js +120 -519
- package/dist/GridMetricCalculator.js.map +1 -1
- package/dist/GridRange.d.ts +111 -186
- package/dist/GridRange.d.ts.map +1 -1
- package/dist/GridRange.js +87 -185
- package/dist/GridRange.js.map +1 -1
- package/dist/GridRenderer.js +1 -6
- package/dist/GridRenderer.js.map +1 -1
- package/dist/GridTheme.d.ts +37 -49
- package/dist/GridTheme.d.ts.map +1 -1
- package/dist/GridTheme.js +0 -8
- package/dist/GridTheme.js.map +1 -1
- package/dist/GridUtils.d.ts +97 -236
- package/dist/GridUtils.d.ts.map +1 -1
- package/dist/GridUtils.js +75 -240
- package/dist/GridUtils.js.map +1 -1
- package/dist/mouse-handlers/GridRowSeparatorMouseHandler.d.ts +1 -1
- package/dist/mouse-handlers/GridRowSeparatorMouseHandler.d.ts.map +1 -1
- package/dist/mouse-handlers/GridSelectionMouseHandler.js +4 -4
- package/dist/mouse-handlers/GridSelectionMouseHandler.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/GridMetrics.d.ts +0 -97
- package/dist/GridMetrics.d.ts.map +0 -1
- package/dist/GridMetrics.js +0 -2
- package/dist/GridMetrics.js.map +0 -1
package/dist/GridRange.d.ts
CHANGED
|
@@ -1,250 +1,171 @@
|
|
|
1
|
-
export
|
|
2
|
-
declare type LeftIndex = GridRangeIndex;
|
|
3
|
-
declare type RightIndex = GridRangeIndex;
|
|
4
|
-
declare type TopIndex = GridRangeIndex;
|
|
5
|
-
declare type BottomIndex = GridRangeIndex;
|
|
6
|
-
export declare type GridCell = {
|
|
7
|
-
column: number;
|
|
8
|
-
row: number;
|
|
9
|
-
};
|
|
10
|
-
export interface BoundedGridRange extends GridRange {
|
|
11
|
-
startColumn: number;
|
|
12
|
-
startRow: number;
|
|
13
|
-
endColumn: number;
|
|
14
|
-
endRow: number;
|
|
15
|
-
}
|
|
16
|
-
export declare enum SELECTION_DIRECTION {
|
|
17
|
-
DOWN = "DOWN",
|
|
18
|
-
UP = "UP",
|
|
19
|
-
LEFT = "LEFT",
|
|
20
|
-
RIGHT = "RIGHT"
|
|
21
|
-
}
|
|
1
|
+
export default GridRange;
|
|
22
2
|
declare class GridRange {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
static
|
|
37
|
-
/**
|
|
38
|
-
* Makes a GridRange ensuring startColumn <= endColumn, startRow <= endRow
|
|
39
|
-
* @param startColumn Start column index
|
|
40
|
-
* @param startRow Start row index
|
|
41
|
-
* @param endColumn End column index
|
|
42
|
-
* @param endRow End row index
|
|
43
|
-
* @returns Normalized GridRange
|
|
44
|
-
*/
|
|
45
|
-
static makeNormalized(startColumn: GridRangeIndex, startRow: GridRangeIndex, endColumn: GridRangeIndex, endRow: GridRangeIndex): GridRange;
|
|
46
|
-
/**
|
|
47
|
-
* Creates a GridRange representing a single cell
|
|
48
|
-
* @param column Column index
|
|
49
|
-
* @param row Row index
|
|
50
|
-
* @returns GridRange representing the cell
|
|
51
|
-
*/
|
|
52
|
-
static makeCell(column: GridRangeIndex, row: GridRangeIndex): GridRange;
|
|
53
|
-
/**
|
|
54
|
-
* Creates a GridRange representing an infinite length column
|
|
55
|
-
* @param column Column index
|
|
56
|
-
* @returns GridRange representing the column
|
|
57
|
-
*/
|
|
58
|
-
static makeColumn(column: GridRangeIndex): GridRange;
|
|
59
|
-
/**
|
|
60
|
-
* Creates a GridRange representing an infinite length row
|
|
61
|
-
* @param row Row index
|
|
62
|
-
* @returns GridRange representing the row
|
|
63
|
-
*/
|
|
64
|
-
static makeRow(row: GridRangeIndex): GridRange;
|
|
65
|
-
/**
|
|
66
|
-
* Returns the minimum value between 2 range indexes or null if at least 1 is null
|
|
67
|
-
* @param index1 First grid range index
|
|
68
|
-
* @param index2 Second grid range index
|
|
69
|
-
* @returns Minimum index or null if either index is null
|
|
70
|
-
*/
|
|
71
|
-
static minOrNull(index1: GridRangeIndex, index2: GridRangeIndex): number | null;
|
|
72
|
-
/**
|
|
73
|
-
* Returns the maximum value between 2 range indexes or null if at least 1 is null
|
|
74
|
-
* @param index1 First grid range index
|
|
75
|
-
* @param index2 Second grid range index
|
|
76
|
-
* @returns Maximum index or null if either index is null
|
|
77
|
-
*/
|
|
78
|
-
static maxOrNull(index1: GridRangeIndex, index2: GridRangeIndex): number | null;
|
|
3
|
+
static SELECTION_DIRECTION: Readonly<{
|
|
4
|
+
DOWN: string;
|
|
5
|
+
UP: string;
|
|
6
|
+
LEFT: string;
|
|
7
|
+
RIGHT: string;
|
|
8
|
+
}>;
|
|
9
|
+
static normalize(startColumn: any, startRow: any, endColumn: any, endRow: any): any[];
|
|
10
|
+
/** Make a GridRange, but ensure startColumn <= endColumn, startRow <= endRow */
|
|
11
|
+
static makeNormalized(...coordinates: any[]): GridRange;
|
|
12
|
+
static makeCell(column: any, row: any): GridRange;
|
|
13
|
+
static makeColumn(column: any): GridRange;
|
|
14
|
+
static makeRow(row: any): GridRange;
|
|
15
|
+
static minOrNull(value1: any, value2: any): number | null;
|
|
16
|
+
static maxOrNull(value1: any, value2: any): number | null;
|
|
79
17
|
/**
|
|
80
18
|
* Consolidate the passed in ranges to the minimum set, merging overlapping ranges.
|
|
81
|
-
* @param ranges The ranges to consolidate
|
|
82
|
-
* @returns Consolidated ranges
|
|
83
|
-
*/
|
|
84
|
-
static consolidate(ranges: GridRange[]): GridRange[];
|
|
85
|
-
/**
|
|
86
|
-
* Checks if the 1-D ranges between 2 index pairs overlap or are continuous.
|
|
87
|
-
* For example ranges [0, 1] and [2, 3] are continuous and will return true.
|
|
88
|
-
* [0, 1] and [1, 3] overlap and return true.
|
|
89
|
-
* [0, 1] and [3, 4] do not overlap and have a gap so this will return false.
|
|
90
|
-
* @param start1 Start of 1st range
|
|
91
|
-
* @param end1 End of 1st range
|
|
92
|
-
* @param start2 Start of 2nd range
|
|
93
|
-
* @param end2 End of 2nd range
|
|
94
|
-
* @returns True if the ranges overlap or touch, else false
|
|
95
|
-
*/
|
|
96
|
-
static isAxisRangeTouching(start1: GridRangeIndex, end1: GridRangeIndex, start2: GridRangeIndex, end2: GridRangeIndex): boolean;
|
|
97
|
-
/**
|
|
98
|
-
* Checks if 2 arrays of ranges are the same ranges
|
|
99
|
-
* @param ranges1 First array of ranges
|
|
100
|
-
* @param ranges2 Second array of ranges
|
|
101
|
-
* @returns True if the arrays contain the same ranges in the same order
|
|
19
|
+
* @param {[GridRange]} ranges The ranges to consolidate
|
|
102
20
|
*/
|
|
103
|
-
static
|
|
21
|
+
static consolidate(ranges: [GridRange]): GridRange[];
|
|
22
|
+
static isAxisRangeTouching(start: any, end: any, otherStart: any, otherEnd: any): boolean;
|
|
23
|
+
static rangeArraysEqual(ranges1: any, ranges2: any): boolean;
|
|
104
24
|
/**
|
|
105
25
|
* Get the intersection (overlapping area) of two ranges
|
|
106
|
-
* @param range One range to check for the intersection
|
|
107
|
-
* @param otherRange The other range to check for the intersection
|
|
108
|
-
* @returns Intersection of the two ranges. If they do not intersect, returns `null`.
|
|
26
|
+
* @param {GridRange} range One range to check for the intersection
|
|
27
|
+
* @param {GridRange} otherRange The other range to check for the intersection
|
|
28
|
+
* @returns {GridRange|null} Intersection of the two ranges. If they do not intersect, returns `null`.
|
|
109
29
|
*/
|
|
110
30
|
static intersection(range: GridRange, otherRange: GridRange): GridRange | null;
|
|
111
31
|
/**
|
|
112
|
-
*
|
|
113
|
-
* @param
|
|
114
|
-
* @
|
|
115
|
-
* @returns The ranges needed to represent the remaining
|
|
32
|
+
* @param {GridRange} range The range to be subtracted from
|
|
33
|
+
* @param {GridRange} subtractRange The range to subtract from within this range
|
|
34
|
+
* @returns {GridRange[]} The ranges needed to represent the remaining
|
|
116
35
|
*/
|
|
117
36
|
static subtractFromRange(range: GridRange, subtractRange: GridRange): GridRange[];
|
|
118
37
|
/**
|
|
119
38
|
* Subtract a range from multiple ranges
|
|
120
|
-
* @param ranges The ranges to be subtracted from
|
|
121
|
-
* @param subtractRange The range to subtract from within these ranges
|
|
122
|
-
* @returns The ranges needed to represent the remaining
|
|
39
|
+
* @param {GridRange[]} ranges The ranges to be subtracted from
|
|
40
|
+
* @param {GridRange} subtractRange The range to subtract from within these ranges
|
|
41
|
+
* @returns {GridRange[]} The ranges needed to represent the remaining
|
|
123
42
|
*/
|
|
124
43
|
static subtractFromRanges(ranges: GridRange[], subtractRange: GridRange): GridRange[];
|
|
125
44
|
/**
|
|
126
45
|
* Subtract multiple ranges from multiple ranges
|
|
127
|
-
* @param ranges The ranges to be subtracted from
|
|
128
|
-
* @param subtractRanges The ranges to subtract from within these ranges
|
|
129
|
-
* @returns The ranges needed to represent the remaining
|
|
46
|
+
* @param {GridRange[]} ranges The ranges to be subtracted from
|
|
47
|
+
* @param {GridRange[]} subtractRanges The ranges to subtract from within these ranges
|
|
48
|
+
* @returns {GridRange[]} The ranges needed to represent the remaining
|
|
130
49
|
*/
|
|
131
50
|
static subtractRangesFromRanges(ranges: GridRange[], subtractRanges: GridRange[]): GridRange[];
|
|
132
51
|
/**
|
|
133
52
|
* Test if a given range is bounded (all values are non-null)
|
|
134
|
-
* @param range The range to test
|
|
135
|
-
* @returns True if this range is bounded, false otherwise
|
|
53
|
+
* @param {GridRange} range The range to test
|
|
54
|
+
* @returns {boolean} True if this range is bounded, false otherwise
|
|
136
55
|
*/
|
|
137
|
-
static isBounded(range: GridRange):
|
|
56
|
+
static isBounded(range: GridRange): boolean;
|
|
138
57
|
/**
|
|
139
58
|
* Converts any GridRange passed in that is a full row or column selection to be bound
|
|
140
59
|
* to the `columnCount` and `rowCount` passed in
|
|
141
60
|
*
|
|
142
|
-
* @param range The range to get the bounded range of
|
|
143
|
-
* @param columnCount The number of columns
|
|
144
|
-
* @param rowCount The number of rows
|
|
145
|
-
* @returns The passed in GridRange with any null values filled in
|
|
61
|
+
* @param {GridRange} range The range to get the bounded range of
|
|
62
|
+
* @param {number} columnCount The number of columns
|
|
63
|
+
* @param {number} rowCount The number of rows
|
|
64
|
+
* @returns {GridRange} The passed in GridRange with any null values filled in
|
|
146
65
|
*/
|
|
147
66
|
static boundedRange(range: GridRange, columnCount: number, rowCount: number): GridRange;
|
|
148
67
|
/**
|
|
149
68
|
* Converts the GridRanges passed in to be bound to the `columnCount` and `rowCount` passed in
|
|
150
69
|
*
|
|
151
|
-
* @param ranges The ranges to get the bounded ranges of
|
|
152
|
-
* @param columnCount The number of columns
|
|
153
|
-
* @param rowCount The number of rows
|
|
154
|
-
* @returns The passed in GridRange with any null values filled in
|
|
70
|
+
* @param {GridRange[]} ranges The ranges to get the bounded ranges of
|
|
71
|
+
* @param {number} columnCount The number of columns
|
|
72
|
+
* @param {number} rowCount The number of rows
|
|
73
|
+
* @returns {GridRange} The passed in GridRange with any null values filled in
|
|
155
74
|
*/
|
|
156
|
-
static boundedRanges(ranges: GridRange[], columnCount: number, rowCount: number): GridRange
|
|
75
|
+
static boundedRanges(ranges: GridRange[], columnCount: number, rowCount: number): GridRange;
|
|
157
76
|
/**
|
|
158
77
|
* Offsets a GridRange by the specified amount in the x and y directions
|
|
159
78
|
*
|
|
160
|
-
* @param range The range to offset
|
|
161
|
-
* @param columnOffset The number of columns to offset
|
|
162
|
-
* @param rowOffset The number of rows to offset
|
|
163
|
-
* @returns The new grid range offset from the original
|
|
79
|
+
* @param {GridRange} range The range to offset
|
|
80
|
+
* @param {number} columnOffset The number of columns to offset
|
|
81
|
+
* @param {number} rowOffset The number of rows to offset
|
|
82
|
+
* @returns {GridRange} The new grid range offset from the original
|
|
164
83
|
*/
|
|
165
84
|
static offset(range: GridRange, columnOffset: number, rowOffset: number): GridRange;
|
|
166
85
|
/**
|
|
167
86
|
* Get the next cell given the selected ranges and the current cell
|
|
168
|
-
* @param ranges The selected bounded ranges within the grid
|
|
169
|
-
* @param column The cursor column, or null if none focused
|
|
170
|
-
* @param row The cursor row, or null if none focused
|
|
171
|
-
* @param direction The direction in which to select next
|
|
172
|
-
* @returns The next cell to focus, or null if there should be no more focus
|
|
87
|
+
* @param {GridRange[]} ranges The selected bounded ranges within the grid
|
|
88
|
+
* @param {number|null} column The cursor column, or null if none focused
|
|
89
|
+
* @param {number|null} row The cursor row, or null if none focused
|
|
90
|
+
* @param {SELECTION_DIRECTION} direction The direction in which to select next
|
|
91
|
+
* @returns {Cell} The next cell to focus, or null if there should be no more focus
|
|
173
92
|
*/
|
|
174
|
-
static nextCell(ranges: GridRange[], column?:
|
|
93
|
+
static nextCell(ranges: GridRange[], column?: number | null, row?: number | null, direction?: any): any;
|
|
175
94
|
/**
|
|
176
95
|
* Count the number of cells in the provided grid ranges
|
|
177
|
-
* @param ranges The ranges to count the rows of
|
|
178
|
-
* @returns The number of cells in the ranges, or `NaN` if any of the ranges were unbounded
|
|
96
|
+
* @param {GridRange[]} ranges The ranges to count the rows of
|
|
97
|
+
* @returns {number|NaN} The number of cells in the ranges, or `NaN` if any of the ranges were unbounded
|
|
179
98
|
*/
|
|
180
|
-
static cellCount(ranges: GridRange[]): number;
|
|
99
|
+
static cellCount(ranges: GridRange[]): number | number;
|
|
181
100
|
/**
|
|
182
101
|
* Count the number of rows in the provided grid ranges
|
|
183
|
-
* @param ranges The ranges to count the rows of
|
|
184
|
-
* @returns The number of rows in the ranges, or `NaN` if any of the ranges were unbounded
|
|
102
|
+
* @param {GridRange[]} ranges The ranges to count the rows of
|
|
103
|
+
* @returns {number|NaN} The number of rows in the ranges, or `NaN` if any of the ranges were unbounded
|
|
185
104
|
*/
|
|
186
|
-
static rowCount(ranges: GridRange[]): number;
|
|
105
|
+
static rowCount(ranges: GridRange[]): number | number;
|
|
187
106
|
/**
|
|
188
107
|
* Count the number of columns in the provided grid ranges
|
|
189
|
-
* @param ranges The ranges to count the columns of
|
|
190
|
-
* @returns The number of columns in the ranges, or `NaN` if any of the ranges were unbounded
|
|
108
|
+
* @param {GridRange[]} ranges The ranges to count the columns of
|
|
109
|
+
* @returns {number|NaN} The number of columns in the ranges, or `NaN` if any of the ranges were unbounded
|
|
191
110
|
*/
|
|
192
|
-
static columnCount(ranges: GridRange[]): number;
|
|
111
|
+
static columnCount(ranges: GridRange[]): number | number;
|
|
193
112
|
/**
|
|
194
113
|
* Check if the provided ranges contain the provided cell
|
|
195
|
-
* @param ranges The ranges to check
|
|
196
|
-
* @param column The column index
|
|
197
|
-
* @param row The row index
|
|
198
|
-
* @returns True if the cell is within the provided ranges, false otherwise.
|
|
114
|
+
* @param {GridRange[]} ranges The ranges to check
|
|
115
|
+
* @param {number} column The column index
|
|
116
|
+
* @param {number} row The row index
|
|
117
|
+
* @returns {boolean} True if the cell is within the provided ranges, false otherwise.
|
|
199
118
|
*/
|
|
200
119
|
static containsCell(ranges: GridRange[], column: number, row: number): boolean;
|
|
201
120
|
/**
|
|
202
121
|
* Iterate through each cell in the provided ranges
|
|
203
|
-
* @param ranges The ranges to iterate through
|
|
122
|
+
* @param {GridRange[]} ranges The ranges to iterate through
|
|
204
123
|
* @param {(column: number, row: number, index: number) => void} callback The callback to execute. `index` is the index within that range
|
|
205
124
|
* @param {GridRange.SELECTION_DIRECTION} direction The direction to iterate in
|
|
206
125
|
*/
|
|
207
|
-
static forEachCell(ranges: GridRange[], callback: (column: number, row: number, index: number) => void, direction?:
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
contains(other:
|
|
126
|
+
static forEachCell(ranges: GridRange[], callback: (column: number, row: number, index: number) => void, direction?: Readonly<{
|
|
127
|
+
DOWN: string;
|
|
128
|
+
UP: string;
|
|
129
|
+
LEFT: string;
|
|
130
|
+
RIGHT: string;
|
|
131
|
+
}>): void;
|
|
132
|
+
constructor(startColumn: any, startRow: any, endColumn: any, endRow: any);
|
|
133
|
+
startColumn: any;
|
|
134
|
+
startRow: any;
|
|
135
|
+
endColumn: any;
|
|
136
|
+
endRow: any;
|
|
137
|
+
equals(other: any): boolean;
|
|
138
|
+
/** @returns {boolean} true if this GridRange completely contains `other` */
|
|
139
|
+
contains(other: any): boolean;
|
|
221
140
|
/**
|
|
222
141
|
* Check if the provided cell is in this range
|
|
223
|
-
* @param column The column to check
|
|
224
|
-
* @param row The row to check
|
|
225
|
-
* @returns True if this cell is within this range
|
|
142
|
+
* @param {number} column The column to check
|
|
143
|
+
* @param {number} row The row to check
|
|
144
|
+
* @returns {boolean} True if this cell is within this range
|
|
226
145
|
*/
|
|
227
|
-
containsCell(column:
|
|
228
|
-
/**
|
|
229
|
-
|
|
230
|
-
* Effectively checks if the 2 ranges could be represented by 1 continuous range
|
|
231
|
-
* @param other The range to check
|
|
232
|
-
* @returns True if this GridRange touches `other`
|
|
233
|
-
* */
|
|
234
|
-
touches(other: GridRange): boolean;
|
|
146
|
+
containsCell(column: number, row: number): boolean;
|
|
147
|
+
/** @returns {boolean} true if this GridRange touches `other` */
|
|
148
|
+
touches(other: any): boolean;
|
|
235
149
|
/**
|
|
236
|
-
*
|
|
237
|
-
* @
|
|
238
|
-
* @returns The ranges needed to represent the remaining
|
|
150
|
+
* @param {GridRange} other The range to deselect from within this range
|
|
151
|
+
* @returns {[GridRange]} The ranges needed to represent the remaining
|
|
239
152
|
*/
|
|
240
|
-
subtract(other: GridRange): GridRange
|
|
153
|
+
subtract(other: GridRange): [GridRange];
|
|
241
154
|
/**
|
|
242
155
|
* Get the first cell in this range. Throws if this range is unbounded.
|
|
243
156
|
*
|
|
244
|
-
* @param direction The direction to get the starting cell in. Defaults to DOWN
|
|
245
|
-
* @returns The first cell in this range in the direction specified
|
|
246
|
-
*/
|
|
247
|
-
startCell(direction?:
|
|
157
|
+
* @param {GridRange.SELECTION_DIRECTION?} direction The direction to get the starting cell in. Defaults to DOWN
|
|
158
|
+
* @returns {{column: number, row: number}} The first cell in this range in the direction specified
|
|
159
|
+
*/
|
|
160
|
+
startCell(direction?: Readonly<{
|
|
161
|
+
DOWN: string;
|
|
162
|
+
UP: string;
|
|
163
|
+
LEFT: string;
|
|
164
|
+
RIGHT: string;
|
|
165
|
+
}> | null): {
|
|
166
|
+
column: number;
|
|
167
|
+
row: number;
|
|
168
|
+
};
|
|
248
169
|
/**
|
|
249
170
|
* Get the next cell in the direction specified. Throws if this range is unbounded.
|
|
250
171
|
* If already at the bounds of the range in that direction, wrap to the next column or row
|
|
@@ -256,13 +177,17 @@ declare class GridRange {
|
|
|
256
177
|
* @param {SELECTION_DIRECTION} direction The direction to go in
|
|
257
178
|
* @returns {GridCell|null} The next cell in the direction specified, or `null` if at the end of the range
|
|
258
179
|
*/
|
|
259
|
-
nextCell(column:
|
|
180
|
+
nextCell(column: number, row: number, direction: any): any | null;
|
|
260
181
|
/**
|
|
261
182
|
* Iterate through each cell in the range
|
|
262
|
-
* @param callback Callback to execute. `index` is the index within this range
|
|
263
|
-
* @param direction The direction to iterate in
|
|
183
|
+
* @param {(column:number, row:number, index:number) => void} callback Callback to execute. `index` is the index within this range
|
|
184
|
+
* @param {GridRange.SELECTION_DIRECTION} direction The direction to iterate in
|
|
264
185
|
*/
|
|
265
|
-
forEach(callback: (column: number, row: number, index: number) => void, direction?:
|
|
186
|
+
forEach(callback: (column: number, row: number, index: number) => void, direction?: Readonly<{
|
|
187
|
+
DOWN: string;
|
|
188
|
+
UP: string;
|
|
189
|
+
LEFT: string;
|
|
190
|
+
RIGHT: string;
|
|
191
|
+
}>): void;
|
|
266
192
|
}
|
|
267
|
-
export default GridRange;
|
|
268
193
|
//# sourceMappingURL=GridRange.d.ts.map
|
package/dist/GridRange.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GridRange.d.ts","sourceRoot":"","sources":["../src/GridRange.
|
|
1
|
+
{"version":3,"file":"GridRange.d.ts","sourceRoot":"","sources":["../src/GridRange.js"],"names":[],"mappings":";AAAA;IACE;;;;;OAKG;IAEH,sFAiBC;IAED,gFAAgF;IAChF,wDAEC;IAED,kDAEC;IAED,0CAEC;IAED,oCAEC;IAED,0DAMC;IAED,0DAMC;IAED;;;OAGG;IACH,2BAFW,CAAC,SAAS,CAAC,eA4ErB;IAED,0FAsCC;IAED,6DAoBC;IAED;;;;;OAKG;IACH,2BAJW,SAAS,cACT,SAAS,GACP,SAAS,GAAC,IAAI,CAiC1B;IAED;;;;OAIG;IACH,gCAJW,SAAS,iBACT,SAAS,GACP,SAAS,EAAE,CAyEvB;IAED;;;;;OAKG;IACH,kCAJW,SAAS,EAAE,iBACX,SAAS,GACP,SAAS,EAAE,CASvB;IAED;;;;;OAKG;IACH,wCAJW,SAAS,EAAE,kBACX,SAAS,EAAE,GACT,SAAS,EAAE,CAavB;IAED;;;;OAIG;IACH,wBAHW,SAAS,GACP,OAAO,CASnB;IAED;;;;;;;;OAQG;IACH,2BALW,SAAS,eACT,MAAM,YACN,MAAM,GACJ,SAAS,CAarB;IAED;;;;;;;OAOG;IACH,6BALW,SAAS,EAAE,eACX,MAAM,YACN,MAAM,GACJ,SAAS,CAIrB;IAED;;;;;;;OAOG;IACH,qBALW,SAAS,gBACT,MAAM,aACN,MAAM,GACJ,SAAS,CASrB;IAED;;;;;;;OAOG;IACH,wBANW,SAAS,EAAE,WACX,MAAM,GAAC,IAAI,QACX,MAAM,GAAC,IAAI,wBA8CrB;IAED;;;;OAIG;IACH,yBAHW,SAAS,EAAE,GACT,MAAM,SAAI,CAUtB;IAED;;;;OAIG;IACH,wBAHW,SAAS,EAAE,GACT,MAAM,SAAI,CAQtB;IAED;;;;OAIG;IACH,2BAHW,SAAS,EAAE,GACT,MAAM,SAAI,CAQtB;IAED;;;;;;OAMG;IACH,4BALW,SAAS,EAAE,UACX,MAAM,OACN,MAAM,GACJ,OAAO,CAUnB;IAED;;;;;OAKG;IACH,2BAJW,SAAS,EAAE,qBACF,MAAM,OAAO,MAAM,SAAS,MAAM,KAAK,IAAI;;;;;cAW9D;IAED,0EAKC;IAJC,iBAA8B;IAC9B,cAAwB;IACxB,eAA0B;IAC1B,YAAoB;IAGtB,4BAOC;IAED,4EAA4E;IAC5E,sBADc,OAAO,CAYpB;IAED;;;;;OAKG;IACH,qBAJW,MAAM,OACN,MAAM,GACJ,OAAO,CAanB;IAED,gEAAgE;IAChE,qBADc,OAAO,CAgBpB;IAED;;;OAGG;IACH,gBAHW,SAAS,GACP,CAAC,SAAS,CAAC,CAIvB;IAED;;;;;OAKG;IACH;;;;;gBAFa;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAC,CAkBzC;IAED;;;;;;;;;;OAUG;IACH,iBALW,MAAM,OACN,MAAM,mBAEJ,MAAS,IAAI,CAsDzB;IAED;;;;OAIG;IACH,2BAHmB,MAAM,OAAM,MAAM,SAAQ,MAAM,KAAK,IAAI;;;;;cAY3D;CACF"}
|