@thegraid/hexlib 1.3.7 → 1.3.8
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/hex-intfs.d.ts +20 -10
- package/dist/hex-intfs.d.ts.map +1 -1
- package/dist/hex-intfs.js +17 -13
- package/dist/hex-intfs.js.map +1 -1
- package/dist/hex.d.ts +33 -90
- package/dist/hex.d.ts.map +1 -1
- package/dist/hex.js +33 -28
- package/dist/hex.js.map +1 -1
- package/dist/table.d.ts +64 -272
- package/dist/table.d.ts.map +1 -1
- package/dist/tile-source.d.ts +6 -5
- package/dist/tile-source.d.ts.map +1 -1
- package/dist/tile-source.js +6 -4
- package/dist/tile-source.js.map +1 -1
- package/package.json +1 -1
package/dist/table.d.ts
CHANGED
|
@@ -177,7 +177,8 @@ export declare class Table extends Dispatcher {
|
|
|
177
177
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
178
178
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
179
179
|
metricDist: (hex: Hex) => number;
|
|
180
|
-
|
|
180
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
181
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
181
182
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
182
183
|
_tile: import("./tile").MapTile | undefined;
|
|
183
184
|
tile: Tile | undefined;
|
|
@@ -188,22 +189,8 @@ export declare class Table extends Dispatcher {
|
|
|
188
189
|
rcspString: (color?: string) => string;
|
|
189
190
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
190
191
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
191
|
-
xywh: (radius?: number,
|
|
192
|
-
|
|
193
|
-
y: number;
|
|
194
|
-
w: number;
|
|
195
|
-
h: number;
|
|
196
|
-
dxdc: number;
|
|
197
|
-
dydr: number;
|
|
198
|
-
};
|
|
199
|
-
readonly xywh0: {
|
|
200
|
-
x: number;
|
|
201
|
-
y: number;
|
|
202
|
-
w: number;
|
|
203
|
-
h: number;
|
|
204
|
-
dxdc: number;
|
|
205
|
-
dydr: number;
|
|
206
|
-
};
|
|
192
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
193
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
207
194
|
Aname: string;
|
|
208
195
|
readonly iHex: IdHex;
|
|
209
196
|
readonly rcs: string;
|
|
@@ -242,7 +229,8 @@ export declare class Table extends Dispatcher {
|
|
|
242
229
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
243
230
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
244
231
|
metricDist: (hex: Hex) => number;
|
|
245
|
-
|
|
232
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
233
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
246
234
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
247
235
|
_tile: import("./tile").MapTile | undefined;
|
|
248
236
|
tile: Tile | undefined;
|
|
@@ -253,22 +241,8 @@ export declare class Table extends Dispatcher {
|
|
|
253
241
|
rcspString: (color?: string) => string;
|
|
254
242
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
255
243
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
256
|
-
xywh: (radius?: number,
|
|
257
|
-
|
|
258
|
-
y: number;
|
|
259
|
-
w: number;
|
|
260
|
-
h: number;
|
|
261
|
-
dxdc: number;
|
|
262
|
-
dydr: number;
|
|
263
|
-
};
|
|
264
|
-
readonly xywh0: {
|
|
265
|
-
x: number;
|
|
266
|
-
y: number;
|
|
267
|
-
w: number;
|
|
268
|
-
h: number;
|
|
269
|
-
dxdc: number;
|
|
270
|
-
dydr: number;
|
|
271
|
-
};
|
|
244
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
245
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
272
246
|
Aname: string;
|
|
273
247
|
readonly iHex: IdHex;
|
|
274
248
|
readonly rcs: string;
|
|
@@ -339,7 +313,8 @@ export declare class Table extends Dispatcher {
|
|
|
339
313
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
340
314
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
341
315
|
metricDist: (hex: Hex) => number;
|
|
342
|
-
|
|
316
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
317
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
343
318
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
344
319
|
_tile: import("./tile").MapTile | undefined;
|
|
345
320
|
tile: Tile | undefined;
|
|
@@ -350,22 +325,8 @@ export declare class Table extends Dispatcher {
|
|
|
350
325
|
rcspString: (color?: string) => string;
|
|
351
326
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
352
327
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
353
|
-
xywh: (radius?: number,
|
|
354
|
-
|
|
355
|
-
y: number;
|
|
356
|
-
w: number;
|
|
357
|
-
h: number;
|
|
358
|
-
dxdc: number;
|
|
359
|
-
dydr: number;
|
|
360
|
-
};
|
|
361
|
-
readonly xywh0: {
|
|
362
|
-
x: number;
|
|
363
|
-
y: number;
|
|
364
|
-
w: number;
|
|
365
|
-
h: number;
|
|
366
|
-
dxdc: number;
|
|
367
|
-
dydr: number;
|
|
368
|
-
};
|
|
328
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
329
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
369
330
|
Aname: string;
|
|
370
331
|
readonly iHex: IdHex;
|
|
371
332
|
readonly rcs: string;
|
|
@@ -404,7 +365,8 @@ export declare class Table extends Dispatcher {
|
|
|
404
365
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
405
366
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
406
367
|
metricDist: (hex: Hex) => number;
|
|
407
|
-
|
|
368
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
369
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
408
370
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
409
371
|
_tile: import("./tile").MapTile | undefined;
|
|
410
372
|
tile: Tile | undefined;
|
|
@@ -415,22 +377,8 @@ export declare class Table extends Dispatcher {
|
|
|
415
377
|
rcspString: (color?: string) => string;
|
|
416
378
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
417
379
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
418
|
-
xywh: (radius?: number,
|
|
419
|
-
|
|
420
|
-
y: number;
|
|
421
|
-
w: number;
|
|
422
|
-
h: number;
|
|
423
|
-
dxdc: number;
|
|
424
|
-
dydr: number;
|
|
425
|
-
};
|
|
426
|
-
readonly xywh0: {
|
|
427
|
-
x: number;
|
|
428
|
-
y: number;
|
|
429
|
-
w: number;
|
|
430
|
-
h: number;
|
|
431
|
-
dxdc: number;
|
|
432
|
-
dydr: number;
|
|
433
|
-
};
|
|
380
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
381
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
434
382
|
Aname: string;
|
|
435
383
|
readonly iHex: IdHex;
|
|
436
384
|
readonly rcs: string;
|
|
@@ -619,7 +567,8 @@ export declare class Table extends Dispatcher {
|
|
|
619
567
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
620
568
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
621
569
|
metricDist: (hex: Hex) => number;
|
|
622
|
-
|
|
570
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
571
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
623
572
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
624
573
|
_tile: import("./tile").MapTile | undefined;
|
|
625
574
|
tile: Tile | undefined;
|
|
@@ -630,22 +579,8 @@ export declare class Table extends Dispatcher {
|
|
|
630
579
|
rcspString: (color?: string) => string;
|
|
631
580
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
632
581
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
633
|
-
xywh: (radius?: number,
|
|
634
|
-
|
|
635
|
-
y: number;
|
|
636
|
-
w: number;
|
|
637
|
-
h: number;
|
|
638
|
-
dxdc: number;
|
|
639
|
-
dydr: number;
|
|
640
|
-
};
|
|
641
|
-
readonly xywh0: {
|
|
642
|
-
x: number;
|
|
643
|
-
y: number;
|
|
644
|
-
w: number;
|
|
645
|
-
h: number;
|
|
646
|
-
dxdc: number;
|
|
647
|
-
dydr: number;
|
|
648
|
-
};
|
|
582
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
583
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
649
584
|
Aname: string;
|
|
650
585
|
readonly iHex: IdHex;
|
|
651
586
|
readonly rcs: string;
|
|
@@ -684,7 +619,8 @@ export declare class Table extends Dispatcher {
|
|
|
684
619
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
685
620
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
686
621
|
metricDist: (hex: Hex) => number;
|
|
687
|
-
|
|
622
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
623
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
688
624
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
689
625
|
_tile: import("./tile").MapTile | undefined;
|
|
690
626
|
tile: Tile | undefined;
|
|
@@ -695,22 +631,8 @@ export declare class Table extends Dispatcher {
|
|
|
695
631
|
rcspString: (color?: string) => string;
|
|
696
632
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
697
633
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
698
|
-
xywh: (radius?: number,
|
|
699
|
-
|
|
700
|
-
y: number;
|
|
701
|
-
w: number;
|
|
702
|
-
h: number;
|
|
703
|
-
dxdc: number;
|
|
704
|
-
dydr: number;
|
|
705
|
-
};
|
|
706
|
-
readonly xywh0: {
|
|
707
|
-
x: number;
|
|
708
|
-
y: number;
|
|
709
|
-
w: number;
|
|
710
|
-
h: number;
|
|
711
|
-
dxdc: number;
|
|
712
|
-
dydr: number;
|
|
713
|
-
};
|
|
634
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
635
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
714
636
|
Aname: string;
|
|
715
637
|
readonly iHex: IdHex;
|
|
716
638
|
readonly rcs: string;
|
|
@@ -790,7 +712,8 @@ export declare class Table extends Dispatcher {
|
|
|
790
712
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
791
713
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
792
714
|
metricDist: (hex: Hex) => number;
|
|
793
|
-
|
|
715
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
716
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
794
717
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
795
718
|
_tile: import("./tile").MapTile | undefined;
|
|
796
719
|
tile: Tile | undefined;
|
|
@@ -801,22 +724,8 @@ export declare class Table extends Dispatcher {
|
|
|
801
724
|
rcspString: (color?: string) => string;
|
|
802
725
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
803
726
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
804
|
-
xywh: (radius?: number,
|
|
805
|
-
|
|
806
|
-
y: number;
|
|
807
|
-
w: number;
|
|
808
|
-
h: number;
|
|
809
|
-
dxdc: number;
|
|
810
|
-
dydr: number;
|
|
811
|
-
};
|
|
812
|
-
readonly xywh0: {
|
|
813
|
-
x: number;
|
|
814
|
-
y: number;
|
|
815
|
-
w: number;
|
|
816
|
-
h: number;
|
|
817
|
-
dxdc: number;
|
|
818
|
-
dydr: number;
|
|
819
|
-
};
|
|
727
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
728
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
820
729
|
Aname: string;
|
|
821
730
|
readonly iHex: IdHex;
|
|
822
731
|
readonly rcs: string;
|
|
@@ -855,7 +764,8 @@ export declare class Table extends Dispatcher {
|
|
|
855
764
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
856
765
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
857
766
|
metricDist: (hex: Hex) => number;
|
|
858
|
-
|
|
767
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
768
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
859
769
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
860
770
|
_tile: import("./tile").MapTile | undefined;
|
|
861
771
|
tile: Tile | undefined;
|
|
@@ -866,22 +776,8 @@ export declare class Table extends Dispatcher {
|
|
|
866
776
|
rcspString: (color?: string) => string;
|
|
867
777
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
868
778
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
869
|
-
xywh: (radius?: number,
|
|
870
|
-
|
|
871
|
-
y: number;
|
|
872
|
-
w: number;
|
|
873
|
-
h: number;
|
|
874
|
-
dxdc: number;
|
|
875
|
-
dydr: number;
|
|
876
|
-
};
|
|
877
|
-
readonly xywh0: {
|
|
878
|
-
x: number;
|
|
879
|
-
y: number;
|
|
880
|
-
w: number;
|
|
881
|
-
h: number;
|
|
882
|
-
dxdc: number;
|
|
883
|
-
dydr: number;
|
|
884
|
-
};
|
|
779
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
780
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
885
781
|
Aname: string;
|
|
886
782
|
readonly iHex: IdHex;
|
|
887
783
|
readonly rcs: string;
|
|
@@ -994,7 +890,8 @@ export declare class Table extends Dispatcher {
|
|
|
994
890
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
995
891
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
996
892
|
metricDist: (hex: Hex) => number;
|
|
997
|
-
|
|
893
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
894
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
998
895
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
999
896
|
_tile: import("./tile").MapTile | undefined;
|
|
1000
897
|
tile: Tile | undefined;
|
|
@@ -1005,22 +902,8 @@ export declare class Table extends Dispatcher {
|
|
|
1005
902
|
rcspString: (color?: string) => string;
|
|
1006
903
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1007
904
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1008
|
-
xywh: (radius?: number,
|
|
1009
|
-
|
|
1010
|
-
y: number;
|
|
1011
|
-
w: number;
|
|
1012
|
-
h: number;
|
|
1013
|
-
dxdc: number;
|
|
1014
|
-
dydr: number;
|
|
1015
|
-
};
|
|
1016
|
-
readonly xywh0: {
|
|
1017
|
-
x: number;
|
|
1018
|
-
y: number;
|
|
1019
|
-
w: number;
|
|
1020
|
-
h: number;
|
|
1021
|
-
dxdc: number;
|
|
1022
|
-
dydr: number;
|
|
1023
|
-
};
|
|
905
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
906
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1024
907
|
Aname: string;
|
|
1025
908
|
readonly iHex: IdHex;
|
|
1026
909
|
readonly rcs: string;
|
|
@@ -1059,7 +942,8 @@ export declare class Table extends Dispatcher {
|
|
|
1059
942
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
1060
943
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
1061
944
|
metricDist: (hex: Hex) => number;
|
|
1062
|
-
|
|
945
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
946
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1063
947
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
1064
948
|
_tile: import("./tile").MapTile | undefined;
|
|
1065
949
|
tile: Tile | undefined;
|
|
@@ -1070,22 +954,8 @@ export declare class Table extends Dispatcher {
|
|
|
1070
954
|
rcspString: (color?: string) => string;
|
|
1071
955
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1072
956
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1073
|
-
xywh: (radius?: number,
|
|
1074
|
-
|
|
1075
|
-
y: number;
|
|
1076
|
-
w: number;
|
|
1077
|
-
h: number;
|
|
1078
|
-
dxdc: number;
|
|
1079
|
-
dydr: number;
|
|
1080
|
-
};
|
|
1081
|
-
readonly xywh0: {
|
|
1082
|
-
x: number;
|
|
1083
|
-
y: number;
|
|
1084
|
-
w: number;
|
|
1085
|
-
h: number;
|
|
1086
|
-
dxdc: number;
|
|
1087
|
-
dydr: number;
|
|
1088
|
-
};
|
|
957
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
958
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1089
959
|
Aname: string;
|
|
1090
960
|
readonly iHex: IdHex;
|
|
1091
961
|
readonly rcs: string;
|
|
@@ -1167,7 +1037,8 @@ export declare class Table extends Dispatcher {
|
|
|
1167
1037
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
1168
1038
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
1169
1039
|
metricDist: (hex: Hex) => number;
|
|
1170
|
-
|
|
1040
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1041
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1171
1042
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
1172
1043
|
_tile: import("./tile").MapTile | undefined;
|
|
1173
1044
|
tile: Tile | undefined;
|
|
@@ -1178,22 +1049,8 @@ export declare class Table extends Dispatcher {
|
|
|
1178
1049
|
rcspString: (color?: string) => string;
|
|
1179
1050
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1180
1051
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1181
|
-
xywh: (radius?: number,
|
|
1182
|
-
|
|
1183
|
-
y: number;
|
|
1184
|
-
w: number;
|
|
1185
|
-
h: number;
|
|
1186
|
-
dxdc: number;
|
|
1187
|
-
dydr: number;
|
|
1188
|
-
};
|
|
1189
|
-
readonly xywh0: {
|
|
1190
|
-
x: number;
|
|
1191
|
-
y: number;
|
|
1192
|
-
w: number;
|
|
1193
|
-
h: number;
|
|
1194
|
-
dxdc: number;
|
|
1195
|
-
dydr: number;
|
|
1196
|
-
};
|
|
1052
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
1053
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1197
1054
|
Aname: string;
|
|
1198
1055
|
readonly iHex: IdHex;
|
|
1199
1056
|
readonly rcs: string;
|
|
@@ -1232,7 +1089,8 @@ export declare class Table extends Dispatcher {
|
|
|
1232
1089
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
1233
1090
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
1234
1091
|
metricDist: (hex: Hex) => number;
|
|
1235
|
-
|
|
1092
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1093
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1236
1094
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
1237
1095
|
_tile: import("./tile").MapTile | undefined;
|
|
1238
1096
|
tile: Tile | undefined;
|
|
@@ -1243,22 +1101,8 @@ export declare class Table extends Dispatcher {
|
|
|
1243
1101
|
rcspString: (color?: string) => string;
|
|
1244
1102
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1245
1103
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1246
|
-
xywh: (radius?: number,
|
|
1247
|
-
|
|
1248
|
-
y: number;
|
|
1249
|
-
w: number;
|
|
1250
|
-
h: number;
|
|
1251
|
-
dxdc: number;
|
|
1252
|
-
dydr: number;
|
|
1253
|
-
};
|
|
1254
|
-
readonly xywh0: {
|
|
1255
|
-
x: number;
|
|
1256
|
-
y: number;
|
|
1257
|
-
w: number;
|
|
1258
|
-
h: number;
|
|
1259
|
-
dxdc: number;
|
|
1260
|
-
dydr: number;
|
|
1261
|
-
};
|
|
1104
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
1105
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1262
1106
|
Aname: string;
|
|
1263
1107
|
readonly iHex: IdHex;
|
|
1264
1108
|
readonly rcs: string;
|
|
@@ -1356,7 +1200,8 @@ export declare class Table extends Dispatcher {
|
|
|
1356
1200
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
1357
1201
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
1358
1202
|
metricDist: (hex: Hex) => number;
|
|
1359
|
-
|
|
1203
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1204
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1360
1205
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
1361
1206
|
_tile: import("./tile").MapTile | undefined;
|
|
1362
1207
|
tile: Tile | undefined;
|
|
@@ -1367,22 +1212,8 @@ export declare class Table extends Dispatcher {
|
|
|
1367
1212
|
rcspString: (color?: string) => string;
|
|
1368
1213
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1369
1214
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1370
|
-
xywh: (radius?: number,
|
|
1371
|
-
|
|
1372
|
-
y: number;
|
|
1373
|
-
w: number;
|
|
1374
|
-
h: number;
|
|
1375
|
-
dxdc: number;
|
|
1376
|
-
dydr: number;
|
|
1377
|
-
};
|
|
1378
|
-
readonly xywh0: {
|
|
1379
|
-
x: number;
|
|
1380
|
-
y: number;
|
|
1381
|
-
w: number;
|
|
1382
|
-
h: number;
|
|
1383
|
-
dxdc: number;
|
|
1384
|
-
dydr: number;
|
|
1385
|
-
};
|
|
1215
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
1216
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1386
1217
|
Aname: string;
|
|
1387
1218
|
readonly iHex: IdHex;
|
|
1388
1219
|
readonly rcs: string;
|
|
@@ -1421,7 +1252,8 @@ export declare class Table extends Dispatcher {
|
|
|
1421
1252
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
1422
1253
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
1423
1254
|
metricDist: (hex: Hex) => number;
|
|
1424
|
-
|
|
1255
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1256
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1425
1257
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
1426
1258
|
_tile: import("./tile").MapTile | undefined;
|
|
1427
1259
|
tile: Tile | undefined;
|
|
@@ -1432,22 +1264,8 @@ export declare class Table extends Dispatcher {
|
|
|
1432
1264
|
rcspString: (color?: string) => string;
|
|
1433
1265
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1434
1266
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1435
|
-
xywh: (radius?: number,
|
|
1436
|
-
|
|
1437
|
-
y: number;
|
|
1438
|
-
w: number;
|
|
1439
|
-
h: number;
|
|
1440
|
-
dxdc: number;
|
|
1441
|
-
dydr: number;
|
|
1442
|
-
};
|
|
1443
|
-
readonly xywh0: {
|
|
1444
|
-
x: number;
|
|
1445
|
-
y: number;
|
|
1446
|
-
w: number;
|
|
1447
|
-
h: number;
|
|
1448
|
-
dxdc: number;
|
|
1449
|
-
dydr: number;
|
|
1450
|
-
};
|
|
1267
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
1268
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1451
1269
|
Aname: string;
|
|
1452
1270
|
readonly iHex: IdHex;
|
|
1453
1271
|
readonly rcs: string;
|
|
@@ -1526,7 +1344,8 @@ export declare class Table extends Dispatcher {
|
|
|
1526
1344
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
1527
1345
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
1528
1346
|
metricDist: (hex: Hex) => number;
|
|
1529
|
-
|
|
1347
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1348
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1530
1349
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
1531
1350
|
_tile: import("./tile").MapTile | undefined;
|
|
1532
1351
|
tile: Tile | undefined;
|
|
@@ -1537,22 +1356,8 @@ export declare class Table extends Dispatcher {
|
|
|
1537
1356
|
rcspString: (color?: string) => string;
|
|
1538
1357
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1539
1358
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1540
|
-
xywh: (radius?: number,
|
|
1541
|
-
|
|
1542
|
-
y: number;
|
|
1543
|
-
w: number;
|
|
1544
|
-
h: number;
|
|
1545
|
-
dxdc: number;
|
|
1546
|
-
dydr: number;
|
|
1547
|
-
};
|
|
1548
|
-
readonly xywh0: {
|
|
1549
|
-
x: number;
|
|
1550
|
-
y: number;
|
|
1551
|
-
w: number;
|
|
1552
|
-
h: number;
|
|
1553
|
-
dxdc: number;
|
|
1554
|
-
dydr: number;
|
|
1555
|
-
};
|
|
1359
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
1360
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1556
1361
|
Aname: string;
|
|
1557
1362
|
readonly iHex: IdHex;
|
|
1558
1363
|
readonly rcs: string;
|
|
@@ -1591,7 +1396,8 @@ export declare class Table extends Dispatcher {
|
|
|
1591
1396
|
makeHexShape: (colorn?: string) => import("@thegraid/easeljs-lib").Paintable;
|
|
1592
1397
|
setHexColor: (color: string, district?: number | undefined) => void;
|
|
1593
1398
|
metricDist: (hex: Hex) => number;
|
|
1594
|
-
|
|
1399
|
+
cornerXY: (dir: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1400
|
+
cornerPoint: (dir0: import("./hex-intfs").HexDir, dir1: import("./hex-intfs").HexDir, rad?: number, point?: import("@thegraid/easeljs-module").Point) => import("@thegraid/easeljs-module").Point;
|
|
1595
1401
|
edgePoint: (dir: import("./hex-intfs").HexDir, rad?: number, point?: XY) => import("@thegraid/easeljs-module").Point;
|
|
1596
1402
|
_tile: import("./tile").MapTile | undefined;
|
|
1597
1403
|
tile: Tile | undefined;
|
|
@@ -1602,22 +1408,8 @@ export declare class Table extends Dispatcher {
|
|
|
1602
1408
|
rcspString: (color?: string) => string;
|
|
1603
1409
|
setUnit: (unit?: Tile | undefined, isMeep?: boolean | undefined) => void;
|
|
1604
1410
|
unitCollision: (this_unit: Tile, unit: Tile, isMeep?: boolean) => void;
|
|
1605
|
-
xywh: (radius?: number,
|
|
1606
|
-
|
|
1607
|
-
y: number;
|
|
1608
|
-
w: number;
|
|
1609
|
-
h: number;
|
|
1610
|
-
dxdc: number;
|
|
1611
|
-
dydr: number;
|
|
1612
|
-
};
|
|
1613
|
-
readonly xywh0: {
|
|
1614
|
-
x: number;
|
|
1615
|
-
y: number;
|
|
1616
|
-
w: number;
|
|
1617
|
-
h: number;
|
|
1618
|
-
dxdc: number;
|
|
1619
|
-
dydr: number;
|
|
1620
|
-
};
|
|
1411
|
+
xywh: (radius?: number, topo?: import("./hex-intfs").TopoMetric | undefined, row?: number, col?: number) => import("./hex-intfs").TopoXYWH;
|
|
1412
|
+
readonly xywh0: import("./hex-intfs").TopoXYWH;
|
|
1621
1413
|
Aname: string;
|
|
1622
1414
|
readonly iHex: IdHex;
|
|
1623
1415
|
readonly rcs: string;
|
package/dist/table.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../src/table.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../src/table.ts"],"names":[],"mappings":"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"}
|
package/dist/tile-source.d.ts
CHANGED
|
@@ -53,17 +53,18 @@ export declare class TileSource<T extends Tile> {
|
|
|
53
53
|
*/
|
|
54
54
|
deleteAll(doAlso?: (unit: T) => void, unparent?: boolean): number;
|
|
55
55
|
/**
|
|
56
|
-
*
|
|
57
|
-
* @param pred
|
|
56
|
+
* Extract elements from allUnits (or available, in reverse order)
|
|
57
|
+
* @param pred [(unit, ndx) => true] filter function
|
|
58
|
+
* @param searchAll [true] if false, search only available
|
|
58
59
|
* @returns Array of allUnits satisfying predicate
|
|
59
60
|
*/
|
|
60
|
-
filterUnits(pred?: (unit: T, ndx?: number) => boolean): T[];
|
|
61
|
-
get sourceHexUnit(): T;
|
|
61
|
+
filterUnits(pred?: (unit: T, ndx?: number) => boolean, searchAll?: boolean): T[];
|
|
62
|
+
get sourceHexUnit(): T | undefined;
|
|
62
63
|
/** programmatic, vs Table.dragStart
|
|
63
64
|
* @param next [true] if true invoke nextUnit();
|
|
64
65
|
* @return sourceHexUnit, replacing it with nextUnit
|
|
65
66
|
*/
|
|
66
|
-
takeUnit(next?: boolean): T;
|
|
67
|
+
takeUnit(next?: boolean): T | undefined;
|
|
67
68
|
/** move [next available] unit to source.hex, make visible */
|
|
68
69
|
nextUnit(unit?: T): T | undefined;
|
|
69
70
|
updateCounter(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tile-source.d.ts","sourceRoot":"","sources":["../src/tile-source.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA+B,MAAM,sBAAsB,CAAC;AAGhF,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAQ,KAAK,IAAI,EAAE,MAAM,OAAO,CAAC;AAExC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B;;;GAGG;AACH,qBAAa,UAAU,CAAC,CAAC,SAAS,IAAI;aAelB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC;aACpB,GAAG,EAAE,IAAI;aACT,MAAM,CAAC;IAhBzB,MAAM,CAAC,MAAM,SAAY;IACzB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAA;IACtB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAuB;IAChD,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAuB;IACjD,QAAQ,CAAC,OAAO,EAAE,UAAU,CAAC;IAE7B;;;;;;OAMG;gBAEe,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,GAAG,EAAE,IAAI,EACT,MAAM,CAAC,oBAAQ,EAC/B,OAAO,CAAC,EAAE,UAAU;IAetB,mBAAmB;IACnB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAInH,+CAA+C;IAC/C,IAAI,YAAY,WAAmE;IAEnF;;;;OAIG;IACH,SAAS,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,UAAQ;IAehC;;;;;OAKG;IACH,SAAS,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,UAAQ;IAI/C,sEAAsE;IACtE,gBAAgB;IAIhB,gGAAgG;IAChG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,UAAO;IAcnC;;;;OAIG;IACH,SAAS,CAAC,MAAM,UAAU,CAAC,SAAQ,EAAE,QAAQ,UAAO;IAapD
|
|
1
|
+
{"version":3,"file":"tile-source.d.ts","sourceRoot":"","sources":["../src/tile-source.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAA+B,MAAM,sBAAsB,CAAC;AAGhF,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACxC,OAAO,EAAQ,KAAK,IAAI,EAAE,MAAM,OAAO,CAAC;AAExC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B;;;GAGG;AACH,qBAAa,UAAU,CAAC,CAAC,SAAS,IAAI;aAelB,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC;aACpB,GAAG,EAAE,IAAI;aACT,MAAM,CAAC;IAhBzB,MAAM,CAAC,MAAM,SAAY;IACzB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAA;IACtB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAuB;IAChD,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAuB;IACjD,QAAQ,CAAC,OAAO,EAAE,UAAU,CAAC;IAE7B;;;;;;OAMG;gBAEe,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,EACpB,GAAG,EAAE,IAAI,EACT,MAAM,CAAC,oBAAQ,EAC/B,OAAO,CAAC,EAAE,UAAU;IAetB,mBAAmB;IACnB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAInH,+CAA+C;IAC/C,IAAI,YAAY,WAAmE;IAEnF;;;;OAIG;IACH,SAAS,CAAC,IAAI,EAAE,CAAC,EAAE,KAAK,UAAQ;IAehC;;;;;OAKG;IACH,SAAS,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,UAAQ;IAI/C,sEAAsE;IACtE,gBAAgB;IAIhB,gGAAgG;IAChG,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,QAAQ,UAAO;IAcnC;;;;OAIG;IACH,SAAS,CAAC,MAAM,UAAU,CAAC,SAAQ,EAAE,QAAQ,UAAO;IAapD;;;;;OAKG;IACH,WAAW,CAAC,IAAI,UAAU,CAAC,QAAQ,MAAM,YAAiC,EAAE,SAAS,UAAO;IAK5F,IAAI,aAAa,kBAEhB;IAED;;;OAGG;IACH,QAAQ,CAAC,IAAI,UAAO;IAOpB,6DAA6D;IAC7D,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;IAejB,aAAa;CASd;AAED,qBAAa,UAAU,CAAC,CAAC,SAAS,MAAM,CAAE,SAAQ,UAAU,CAAC,CAAC,CAAC;CAE9D"}
|