@luceosports/play-rendering 2.3.0 → 2.3.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.
|
@@ -2,6 +2,7 @@ export declare const SPORT_TYPE_BASKETBALL = "BASKETBALL";
|
|
|
2
2
|
export declare const SPORT_TYPE_VOLLEYBALL = "VOLLEYBALL";
|
|
3
3
|
export declare const SPORT_TYPE_FOOTBALL = "FOOTBALL";
|
|
4
4
|
export declare const SPORT_TYPE_LACROSSE = "LACROSSE";
|
|
5
|
+
export declare const SPORT_TYPE_LACROSSE_BOX = "LACROSSE_BOX";
|
|
5
6
|
export declare const SPORT_TYPE_SOCCER = "SOCCER";
|
|
6
7
|
export declare const SPORT_TYPE_HOCKEY = "HOCKEY";
|
|
7
8
|
export declare const SPORT_TYPE_BASEBALL = "BASEBALL";
|
|
@@ -18,6 +19,7 @@ export declare const COURT_TYPE_FOOTBALL_HIGH_SCHOOL_LEGACY = "FOOTBALL";
|
|
|
18
19
|
export declare const COURT_TYPE_VOLLEYBALL_INDOOR = "VOLLEYBALL_INDOOR";
|
|
19
20
|
export declare const COURT_TYPE_LACROSSE_US_M = "LACROSSE_US_M";
|
|
20
21
|
export declare const COURT_TYPE_LACROSSE_US_W = "LACROSSE_US_W";
|
|
22
|
+
export declare const COURT_TYPE_LACROSSE_BOX_US = 'LACROSSE_BOX_US';
|
|
21
23
|
export declare const COURT_TYPE_SOCCER_FIFA = "SOCCER_FIFA";
|
|
22
24
|
export declare const COURT_TYPE_SOCCER_NCAA = "SOCCER_NCAA";
|
|
23
25
|
export declare const COURT_TYPE_SOCCER_NFHS = "SOCCER_NFHS";
|
|
@@ -5,16 +5,17 @@ export type Position = PlayerPosition | DefenderPosition | CoachPosition;
|
|
|
5
5
|
export type LineType = 'PASS' | 'CUT' | 'SCREEN' | 'DRIBBLE' | 'HANDOFF' | 'SHOT';
|
|
6
6
|
export type LineShapeType = 'LINE.CUT' | 'LINE.SCREEN' | 'LINE.DRIBBLE' | 'LINE.PASS' | 'LINE.HANDOFF';
|
|
7
7
|
export type ShapeType = 'CIRCLE' | 'SQUARE' | 'TRIANGLE' | 'FOV' | 'XMARK' | 'STRAIGHT' | 'CONE' | LineShapeType;
|
|
8
|
-
export type SportType = 'FOOTBALL' | 'BASKETBALL' | 'VOLLEYBALL' | 'LACROSSE' | 'SOCCER' | 'HOCKEY' | 'BASEBALL';
|
|
8
|
+
export type SportType = 'FOOTBALL' | 'BASKETBALL' | 'VOLLEYBALL' | 'LACROSSE' | 'LACROSSE_BOX' | 'SOCCER' | 'HOCKEY' | 'BASEBALL';
|
|
9
9
|
export type CourtTypeSportBasketball = 'BIG3' | 'NBA' | 'WNBA' | 'FIBA' | 'NCAAM' | 'NCAAW' | 'US_HIGH_SCHOOL' | 'US_JUNIOR_HIGH';
|
|
10
10
|
export type CourtTypeSportVolleyball = 'VOLLEYBALL_INDOOR';
|
|
11
11
|
export type CourtTypeSportSoccer = 'SOCCER_FIFA' | 'SOCCER_NCAA' | 'SOCCER_NFHS' | 'SOCCER_U10' | 'SOCCER_U12' | 'SOCCER_U19';
|
|
12
12
|
export type CourtTypeSportHockey = 'HOCKEY_NHL' | 'HOCKEY_INTERNATIONAL';
|
|
13
13
|
export type CourtTypeSportBaseball = 'BASEBALL_HIGH_SCHOOL';
|
|
14
14
|
export type CourtTypeSportLacrosse = 'LACROSSE_US_M' | 'LACROSSE_US_W';
|
|
15
|
+
export type CourtTypeSportLacrosseBox = 'LACROSSE_BOX_US';
|
|
15
16
|
export type CourtTypeSportFootball = 'FOOTBALL_HIGH_SCHOOL';
|
|
16
17
|
export type CourtTypeSportFootballLegacy = 'FOOTBALL';
|
|
17
|
-
export type CourtType = CourtTypeSportBasketball | CourtTypeSportVolleyball | CourtTypeSportLacrosse | CourtTypeSportSoccer | CourtTypeSportHockey | CourtTypeSportBaseball | CourtTypeSportFootball | CourtTypeSportFootballLegacy;
|
|
18
|
+
export type CourtType = CourtTypeSportBasketball | CourtTypeSportVolleyball | CourtTypeSportLacrosse | CourtTypeSportLacrosseBox | CourtTypeSportSoccer | CourtTypeSportHockey | CourtTypeSportBaseball | CourtTypeSportFootball | CourtTypeSportFootballLegacy;
|
|
18
19
|
export type ShapeControlPoints = [CourtPoint, CourtPoint] | [CourtPoint, CourtPoint, CourtPoint] | [CourtPoint, CourtPoint, CourtPoint, CourtPoint];
|
|
19
20
|
export type NoteDisplayModes = ['onCourt'] | ['playNote'] | ['onCourt', 'playNote'];
|
|
20
21
|
export interface SportConstants {
|