@orbat-mapper/control-measures 0.16.0 → 0.17.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/{index-1i5OZMcS.d.mts → index-DPu0u2KK.d.mts} +81 -18
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/preview/index.d.mts +1 -1
- package/dist/preview/index.mjs +1 -1
- package/dist/{renderControlMeasure-B61Tgq3f.mjs → renderControlMeasure-Bh62ZdEY.mjs} +706 -222
- package/package.json +1 -1
|
@@ -225,7 +225,7 @@ declare function normalizeTextAmplifiers(input: TextAmplifiers | undefined): Can
|
|
|
225
225
|
//#region src/metadata.d.ts
|
|
226
226
|
type ControlMeasureGeometryType = Geometry["type"];
|
|
227
227
|
type ControlMeasureGeometry = "point" | "line" | "area";
|
|
228
|
-
declare const DRAW_RULE_IDS: readonly ["Area1", "Area5", "Area6", "Area7", "Area8", "Area11", "Area12", "Area15", "Area17", "Area21", "Area27", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line11", "Line23", "Line24", "Line26", "Line27", "Line29", "Line31", "Line32", "Point1", "Point2", "Point12", "Point18", "Polyline1", "Rectangle", "Sector"];
|
|
228
|
+
declare const DRAW_RULE_IDS: readonly ["Area1", "Area5", "Area6", "Area7", "Area8", "Area11", "Area12", "Area15", "Area16", "Area17", "Area21", "Area27", "Axis1", "Line1", "Line3", "Line9", "Line10", "Line11", "Line23", "Line24", "Line26", "Line27", "Line29", "Line31", "Line32", "Line33", "Point1", "Point2", "Point12", "Point18", "Polyline1", "Rectangle", "Sector"];
|
|
229
229
|
type DrawRuleId = (typeof DRAW_RULE_IDS)[number];
|
|
230
230
|
declare const PARAMETER_PRESENTATION_TIERS: readonly ["primary", "standard", "advanced"];
|
|
231
231
|
type ParameterPresentationTier = (typeof PARAMETER_PRESENTATION_TIERS)[number];
|
|
@@ -1342,7 +1342,7 @@ declare function createArea(positions: Position[], options?: AreaOptions, textAm
|
|
|
1342
1342
|
//#region src/generators/cm15-maneuver-areas/area-defense.d.ts
|
|
1343
1343
|
interface AreaDefenseOptions extends LabelSizeOptions {
|
|
1344
1344
|
/** Angular opening between the two arrow tips, in degrees. */
|
|
1345
|
-
|
|
1345
|
+
openingAngle?: number;
|
|
1346
1346
|
/** Angular opening occupied by the AD label, in degrees. */
|
|
1347
1347
|
labelOpeningAngle?: number;
|
|
1348
1348
|
/** Number of filled outward barbs distributed over both arcs. */
|
|
@@ -1982,7 +1982,7 @@ interface AttackHelicopterOptions extends VariableWidthAttackOptions {
|
|
|
1982
1982
|
symbolHeightRatio?: number;
|
|
1983
1983
|
triangleSizeRatio?: number;
|
|
1984
1984
|
bottomBarWidthRatio?: number;
|
|
1985
|
-
|
|
1985
|
+
bowTieWidthRatio?: number;
|
|
1986
1986
|
}
|
|
1987
1987
|
declare const DEFAULT_ATTACK_HELICOPTER_OPTIONS: Required<AttackHelicopterOptions>;
|
|
1988
1988
|
/**
|
|
@@ -2568,6 +2568,10 @@ interface EnvelopmentOptions extends LabelSizeOptions, ArcResolutionOptions {
|
|
|
2568
2568
|
/** Generates the Envelopment mission task symbol (343500). */
|
|
2569
2569
|
declare function createEnvelopment(coordinates: Position[], options?: EnvelopmentOptions): FeatureCollection<MultiLineString | Point>;
|
|
2570
2570
|
//#endregion
|
|
2571
|
+
//#region src/generators/cm34-mission-tasks/forward-passage-of-lines.d.ts
|
|
2572
|
+
type ForwardPassageOfLinesOptions = DelayOptions;
|
|
2573
|
+
declare function createForwardPassageOfLinesSymbol(coordinates: Position[], options?: ForwardPassageOfLinesOptions): FeatureCollection<MultiLineString | Point>;
|
|
2574
|
+
//#endregion
|
|
2571
2575
|
//#region src/generators/cm34-mission-tasks/infiltration.d.ts
|
|
2572
2576
|
interface InfiltrationOptions extends LabelSizeOptions, ArcResolutionOptions {
|
|
2573
2577
|
/** Arrowhead depth as a ratio of the Point 1–Point 3 span. */
|
|
@@ -2632,6 +2636,21 @@ declare const DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS: Required<Omit<MovementToConta
|
|
|
2632
2636
|
/** Generates the Movement to Contact mission task (342900). */
|
|
2633
2637
|
declare function createMovementToContact(coordinates: Position[], options?: MovementToContactOptions, textAmplifiers?: CanonicalTextAmplifiers): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
2634
2638
|
//#endregion
|
|
2639
|
+
//#region src/generators/cm34-mission-tasks/occupy.d.ts
|
|
2640
|
+
interface OccupyOptions extends LabelSizeOptions, ArcResolutionOptions {
|
|
2641
|
+
/** Angular opening on the friendly side, in degrees. */
|
|
2642
|
+
openingAngle?: number;
|
|
2643
|
+
/** Overall X size as a ratio of the symbol radius. */
|
|
2644
|
+
xSizeRatio?: number;
|
|
2645
|
+
/** X width-to-height ratio in its local radial/tangential frame. */
|
|
2646
|
+
xAspectRatio?: number;
|
|
2647
|
+
/** Extra clearance around O, on each side, as a ratio of its height. */
|
|
2648
|
+
labelPadding?: number;
|
|
2649
|
+
}
|
|
2650
|
+
declare const DEFAULT_OCCUPY_OPTIONS: Required<Omit<OccupyOptions, keyof LabelSizeOptions>>;
|
|
2651
|
+
/** Generates the Occupy mission task symbol (341700). */
|
|
2652
|
+
declare function createOccupySymbol(coordinates: Position[], options?: OccupyOptions): FeatureCollection<MultiLineString | Point>;
|
|
2653
|
+
//#endregion
|
|
2635
2654
|
//#region src/generators/cm34-mission-tasks/penetrate.d.ts
|
|
2636
2655
|
interface PenetrateOptions {
|
|
2637
2656
|
/** Arrowhead depth as a ratio of the barrier length (default: 0.15). */
|
|
@@ -2649,6 +2668,22 @@ declare const DEFAULT_PENETRATE_OPTIONS: Required<Omit<PenetrateOptions, "labelS
|
|
|
2649
2668
|
/** Generates the PENETRATE mission task symbol (341800). */
|
|
2650
2669
|
declare function createPenetrateSymbol(coordinates: Position[], options?: PenetrateOptions): FeatureCollection<MultiLineString | Point>;
|
|
2651
2670
|
//#endregion
|
|
2671
|
+
//#region src/generators/cm34-mission-tasks/pursuit.d.ts
|
|
2672
|
+
interface PursuitOptions extends LabelSizeOptions, ArcResolutionOptions {
|
|
2673
|
+
/** Arrowhead depth as a ratio of the arc diameter. */
|
|
2674
|
+
arrowheadLengthRatio?: number;
|
|
2675
|
+
/** Arrowhead base width as a ratio of the arc diameter. */
|
|
2676
|
+
arrowheadWidthRatio?: number;
|
|
2677
|
+
/** Terminal bar length as a multiple of the resolved arrowhead width. */
|
|
2678
|
+
terminalBarLengthRatio?: number;
|
|
2679
|
+
/** Position of the P label along the straight portion, from PT. 1 to PT. 2. */
|
|
2680
|
+
labelPosition?: number;
|
|
2681
|
+
/** Gap around the P label as a ratio of the straight portion. */
|
|
2682
|
+
labelGapRatio?: number;
|
|
2683
|
+
}
|
|
2684
|
+
/** Generates the Pursuit mission task symbol (344000). */
|
|
2685
|
+
declare function createPursuit(coordinates: Position[], options?: PursuitOptions): FeatureCollection<MultiLineString | Point>;
|
|
2686
|
+
//#endregion
|
|
2652
2687
|
//#region src/generators/cm34-mission-tasks/rearward-passage-of-lines.d.ts
|
|
2653
2688
|
type RearwardPassageOfLinesOptions = DelayOptions;
|
|
2654
2689
|
declare const DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS: Required<Omit<DelayOptions, "labelSize" | "labelSizePixels">>;
|
|
@@ -2682,6 +2717,12 @@ declare const DEFAULT_SEIZE_OPTIONS: Required<Omit<SeizeOptions, keyof LabelSize
|
|
|
2682
2717
|
/** Generates the Seize mission task symbol (342300). */
|
|
2683
2718
|
declare function createSeizeSymbol(coordinates: Position[], options?: SeizeOptions): FeatureCollection<MultiLineString | Point>;
|
|
2684
2719
|
//#endregion
|
|
2720
|
+
//#region src/generators/cm34-mission-tasks/evacuate.d.ts
|
|
2721
|
+
type EvacuateOptions = SeizeOptions;
|
|
2722
|
+
declare const DEFAULT_EVACUATE_OPTIONS: Required<Omit<SeizeOptions, keyof LabelSizeOptions>>;
|
|
2723
|
+
/** Generates the Evacuate mission task symbol (344500). */
|
|
2724
|
+
declare function createEvacuateSymbol(coordinates: Position[], options?: EvacuateOptions): FeatureCollection<MultiLineString | Point>;
|
|
2725
|
+
//#endregion
|
|
2685
2726
|
//#region src/generators/cm34-mission-tasks/withdraw.d.ts
|
|
2686
2727
|
type WithdrawOptions = DelayOptions;
|
|
2687
2728
|
declare const DEFAULT_WITHDRAW_OPTIONS: Required<Omit<DelayOptions, "labelSize" | "labelSizePixels">>;
|
|
@@ -2692,6 +2733,28 @@ type WithdrawUnderPressureOptions = DelayOptions;
|
|
|
2692
2733
|
declare const DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS: Required<Omit<DelayOptions, "labelSize" | "labelSizePixels">>;
|
|
2693
2734
|
declare function createWithdrawUnderPressureSymbol(coordinates: Position[], options?: WithdrawUnderPressureOptions): FeatureCollection<MultiLineString | Point>;
|
|
2694
2735
|
//#endregion
|
|
2736
|
+
//#region src/generators/cm27-protection-areas/turn.d.ts
|
|
2737
|
+
interface TurnOptions {
|
|
2738
|
+
arrowheadLengthRatio?: number;
|
|
2739
|
+
arrowheadWidthRatio?: number;
|
|
2740
|
+
arcSegments?: number;
|
|
2741
|
+
}
|
|
2742
|
+
declare const DEFAULT_TURN_OPTIONS: Required<TurnOptions>;
|
|
2743
|
+
/**
|
|
2744
|
+
* Generates a quarter-circle shaft from PT2 (rear) to the arrowhead base.
|
|
2745
|
+
* The arrowhead continues tangent to the arc and places its tip at PT1.
|
|
2746
|
+
* PT3 selects which side of the PT2 -> PT1 chord contains the arc.
|
|
2747
|
+
*/
|
|
2748
|
+
declare function createTurn(coordinates: Position[], options?: TurnOptions): FeatureCollection<MultiLineString | MultiPolygon>;
|
|
2749
|
+
//#endregion
|
|
2750
|
+
//#region src/generators/cm34-mission-tasks/turn.d.ts
|
|
2751
|
+
interface TurnMissionTaskOptions extends TurnOptions, LabelSizeOptions {
|
|
2752
|
+
/** Gap for the doctrinal 'T' label as a ratio of the arc length. */
|
|
2753
|
+
labelGapRatio?: number;
|
|
2754
|
+
}
|
|
2755
|
+
/** Generates the TURN mission task symbol (344700). */
|
|
2756
|
+
declare function createTurnMissionTaskSymbol(coordinates: Position[], options?: TurnMissionTaskOptions): FeatureCollection<MultiLineString | MultiPolygon | Point>;
|
|
2757
|
+
//#endregion
|
|
2695
2758
|
//#region src/generators/cm29-protection-lines/antitankDitch.d.ts
|
|
2696
2759
|
interface AntitankDitchOptions extends SmoothLineOptions, LineLabelOptions {
|
|
2697
2760
|
/**
|
|
@@ -2929,20 +2992,6 @@ declare const DEFAULT_FIX_MISSION_TASK_OPTIONS: Required<Omit<FixMissionTaskOpti
|
|
|
2929
2992
|
/** Generates the Fix mission task symbol (341100). */
|
|
2930
2993
|
declare function createFixMissionTaskSymbol(coordinates: Position[], options?: FixMissionTaskOptions): FeatureCollection<MultiLineString | Point>;
|
|
2931
2994
|
//#endregion
|
|
2932
|
-
//#region src/generators/cm27-protection-areas/turn.d.ts
|
|
2933
|
-
interface TurnOptions {
|
|
2934
|
-
arrowheadLengthRatio?: number;
|
|
2935
|
-
arrowheadWidthRatio?: number;
|
|
2936
|
-
arcSegments?: number;
|
|
2937
|
-
}
|
|
2938
|
-
declare const DEFAULT_TURN_OPTIONS: Required<TurnOptions>;
|
|
2939
|
-
/**
|
|
2940
|
-
* Generates a quarter-circle shaft from PT2 (rear) to the arrowhead base.
|
|
2941
|
-
* The arrowhead continues tangent to the arc and places its tip at PT1.
|
|
2942
|
-
* PT3 selects which side of the PT2 -> PT1 chord contains the arc.
|
|
2943
|
-
*/
|
|
2944
|
-
declare function createTurn(coordinates: Position[], options?: TurnOptions): FeatureCollection<MultiLineString | MultiPolygon>;
|
|
2945
|
-
//#endregion
|
|
2946
2995
|
//#region src/generators/cm27-protection-areas/minefield.d.ts
|
|
2947
2996
|
interface MinefieldOptions {
|
|
2948
2997
|
/** Modifier 1 mine type. @default "unspecified" */
|
|
@@ -3124,17 +3173,22 @@ declare const DEFINITIONS: {
|
|
|
3124
3173
|
disengage: ControlMeasureDefinition<"disengage", typeof createDisengageSymbol>;
|
|
3125
3174
|
"disrupt-mission-task": ControlMeasureDefinition<"disrupt-mission-task", typeof createDisruptMissionTaskSymbol>;
|
|
3126
3175
|
envelopment: ControlMeasureDefinition<"envelopment", typeof createEnvelopment>;
|
|
3176
|
+
"forward-passage-of-lines": ControlMeasureDefinition<"forward-passage-of-lines", typeof createForwardPassageOfLinesSymbol>;
|
|
3127
3177
|
infiltration: ControlMeasureDefinition<"infiltration", typeof createInfiltration>;
|
|
3128
3178
|
guard: ControlMeasureDefinition<"guard", typeof createGuardSymbol>;
|
|
3129
3179
|
isolate: ControlMeasureDefinition<"isolate", typeof createIsolateSymbol>;
|
|
3130
3180
|
"movement-to-contact": ControlMeasureDefinition<"movement-to-contact", typeof createMovementToContact>;
|
|
3181
|
+
occupy: ControlMeasureDefinition<"occupy", typeof createOccupySymbol>;
|
|
3131
3182
|
penetrate: ControlMeasureDefinition<"penetrate", typeof createPenetrateSymbol>;
|
|
3183
|
+
pursuit: ControlMeasureDefinition<"pursuit", typeof createPursuit>;
|
|
3132
3184
|
"rearward-passage-of-lines": ControlMeasureDefinition<"rearward-passage-of-lines", typeof createRearwardPassageOfLinesSymbol>;
|
|
3133
3185
|
retire: ControlMeasureDefinition<"retire", typeof createRetireSymbol>;
|
|
3134
3186
|
screen: ControlMeasureDefinition<"screen", typeof createScreenSymbol>;
|
|
3135
3187
|
seize: ControlMeasureDefinition<"seize", typeof createSeizeSymbol>;
|
|
3188
|
+
evacuate: ControlMeasureDefinition<"evacuate", typeof createEvacuateSymbol>;
|
|
3136
3189
|
withdraw: ControlMeasureDefinition<"withdraw", typeof createWithdrawSymbol>;
|
|
3137
3190
|
"withdraw-under-pressure": ControlMeasureDefinition<"withdraw-under-pressure", typeof createWithdrawUnderPressureSymbol>;
|
|
3191
|
+
"turn-mission-task": ControlMeasureDefinition<"turn-mission-task", typeof createTurnMissionTaskSymbol>;
|
|
3138
3192
|
"antitank-ditch-under-construction": ControlMeasureDefinition<"antitank-ditch-under-construction", typeof createAntitankDitchUnderConstruction>;
|
|
3139
3193
|
"antitank-ditch-completed": ControlMeasureDefinition<"antitank-ditch-completed", typeof createAntitankDitchCompleted>;
|
|
3140
3194
|
"antitank-wall": ControlMeasureDefinition<"antitank-wall", typeof createAntitankWall>;
|
|
@@ -3442,6 +3496,15 @@ declare const disruptDrawRule: ControlMeasureDrawRule;
|
|
|
3442
3496
|
//#region src/draw-rules/area15.d.ts
|
|
3443
3497
|
declare const centerRadiusDrawRule: ControlMeasureDrawRule;
|
|
3444
3498
|
//#endregion
|
|
3499
|
+
//#region src/draw-rules/area16.d.ts
|
|
3500
|
+
/**
|
|
3501
|
+
* Area16 — center + start/radius point, mechanically identical to Area15. It
|
|
3502
|
+
* re-labels the shared behaviour rather than aliasing it because a definition's
|
|
3503
|
+
* `rule.id` must carry its `metadata.drawRule` as a prefix (see the registry
|
|
3504
|
+
* invariant in `__tests__/metadata-registry.spec.ts`, ADR-0013).
|
|
3505
|
+
*/
|
|
3506
|
+
declare const occupyDrawRule: ControlMeasureDrawRule;
|
|
3507
|
+
//#endregion
|
|
3445
3508
|
//#region src/draw-rules/area17.d.ts
|
|
3446
3509
|
/**
|
|
3447
3510
|
* Area17 anchor draw rule for Penetrate.
|
|
@@ -3605,4 +3668,4 @@ interface AmbushOptions {
|
|
|
3605
3668
|
}
|
|
3606
3669
|
declare const DEFAULT_AMBUSH_OPTIONS: Required<AmbushOptions>;
|
|
3607
3670
|
//#endregion
|
|
3608
|
-
export {
|
|
3671
|
+
export { isKind as $, DEFAULT_PORTRAYAL as $i, PhaseLineOptions as $n, AreaDefenseOptions as $r, DEFAULT_PENETRATE_OPTIONS as $t, pointOnMidpointPerpendicularAxis as A, AnchorTransformEvent as Aa, DEFAULT_GENERIC_C2_LINE_OPTIONS as Ai, PROBABLE_LINE_OF_DEPLOYMENT_DASH as An, ClassicArrowOptions as Ar, FortifiedAreaOptions as At, SimpleStyleProps as B, sphericalBearing as Bi, DEFAULT_HANDOVER_LINE_OPTIONS as Bn, DEFAULT_PICKUP_ZONE_OPTIONS as Br, WithdrawUnderPressureOptions as Bt, blockDrawRule as C, TEXT_AMPLIFIER_FIELDS as Ca, RetainOptions as Ci, BypassOptions as Cn, GenericPolygonOptions as Cr, BlockOptions as Ct, computeDefaultMidpointPerpendicularPoint as D, canonicalTextAmplifierKey as Da, DEFAULT_CONTAIN_OPTIONS as Di, BlockMissionTaskOptions as Dn, BlockArrowOptions as Dr, DEFAULT_FRONTAL_ATTACK_OPTIONS as Dt, MidpointPerpendicularDrawRuleOptions as E, TextAmplifiers as Ea, ContainOptions as Ei, DEFAULT_BREACH_OPTIONS as En, BlockArrowHeadStyle as Er, TurningMovementOptions as Et, BaselineFrameOrigin as F, LightLineOptions as Fi, LineOfDepartureOptions as Fn, MainAttackOptions as Fr, AntitankDitchOptions as Ft, getControlMeasureOptionHandles as G, ControlMeasureOptionHandle as Gi, HoldingLineOptions as Gn, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS as Gr, DEFAULT_SEIZE_OPTIONS as Gt, toSimpleStyle as H, BoundaryOptions as Hi, DEFAULT_RELEASE_LINE_OPTIONS as Hn, MineType as Hr, WithdrawOptions as Ht, createBaselineFrame as I, LabelSizeOptions as Ii, DEFAULT_LIMIT_OF_ADVANCE_OPTIONS as In, calculateMetrics as Ir, DEFAULT_ANTITANK_DITCH_OPTIONS as It, freezeOrientationOptions as J, ControlMeasureRenderContext as Ji, BridgeheadLineOptions as Jn, DEFAULT_ASSEMBLY_AREA_OPTIONS as Jr, ScreenOptions as Jt, applyBoxTransformOptions as K, ControlMeasureOptionHandleDragEvent as Ki, DEFAULT_INFILTRATION_LANE_OPTIONS as Kn, JointTacticalActionAreaOptions as Kr, SeizeOptions as Kt, EPSILON as L, Point2D as Li, LimitOfAdvanceOptions as Ln, computeInitialWidthPoint as Lr, DEFAULT_TURN_OPTIONS as Lt, BaselineFrame as M, DEFAULT_ENGINEER_WORK_LINE_OPTIONS as Mi, DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS as Mn, DEFAULT_SUPPORTING_ATTACK_OPTIONS as Mr, FortifiedLineOptions as Mt, BaselineFrameNormal as N, EngineerWorkLineOptions as Ni, LineOfDepartureContactOptions as Nn, SupportingAttackOptions as Nr, AntitankWallOptions as Nt, createMidpointPerpendicularDrawRule as O, normalizeTextAmplifiers as Oa, BattlePositionOptions as Oi, DEFAULT_BLOCK_MISSION_TASK_OPTIONS as On, DEFAULT_BLOCK_ARROW_OPTIONS as Or, FrontalAttackOptions as Ot, BaselineFrameOptions as P, DEFAULT_LIGHT_LINE_OPTIONS as Pi, DEFAULT_LINE_OF_DEPARTURE_OPTIONS as Pn, DEFAULT_MAIN_ATTACK_OPTIONS as Pr, DEFAULT_ANTITANK_WALL_OPTIONS as Pt, cloneControlMeasure as Q, DEFAULT_LINE_JOIN as Qi, DEFAULT_PHASE_LINE_OPTIONS as Qn, EngagementAreaOptions as Qr, RearwardPassageOfLinesOptions as Qt, getMetersPerPixel as R, haversineDistance as Ri, BattleHandoverLineOptions as Rn, AreaOfOperationsOptions as Rr, TurnOptions as Rt, disruptDrawRule as S, LabelPlacementOverride as Sa, DEFAULT_RETAIN_OPTIONS as Si, DEFAULT_CANALIZE_OPTIONS as Sn, DEFAULT_GENERIC_POLYGON_OPTIONS as Sr, DisruptOptions as St, area27DrawRule as T, TextAmplifierKey as Ta, StrongPointOptions as Ti, BreachOptions as Tn, GenericLineOptions as Tr, DEFAULT_TURNING_MOVEMENT_OPTIONS as Tt, resolveStyleHints as U, DEFAULT_BOUNDARY_OPTIONS as Ui, ReleaseLineOptions as Un, DEFAULT_LANDING_ZONE_OPTIONS as Ur, DEFAULT_EVACUATE_OPTIONS as Ut, SimpleStyleRender as V, unproject as Vi, HandoverLineOptions as Vn, PickupZoneOptions as Vr, DEFAULT_WITHDRAW_OPTIONS as Vt, dragControlMeasureOptionHandle as W, BoxTransformDelta as Wi, DEFAULT_HOLDING_LINE_OPTIONS as Wn, LandingZoneOptions as Wr, EvacuateOptions as Wt, renderControlMeasure as X, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS as Xi, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS as Xn, MobileDefenseOptions as Xr, RetireOptions as Xt, RenderOptions as Y, DEFAULT_LABEL_HEIGHT_CSS_PIXELS as Yi, DEFAULT_BRIDGEHEAD_LINE_OPTIONS as Yn, DEFAULT_MOBILE_DEFENSE_OPTIONS as Yr, DEFAULT_RETIRE_OPTIONS as Yt, ControlMeasure as Z, DEFAULT_LINE_CAP as Zi, ForwardEdgeOfBattleAreaOptions as Zn, DEFAULT_ENGAGEMENT_AREA_OPTIONS as Zr, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS as Zt, staticPointDrawRule as _, resolveParameterSemanticRole as _a, DirectionOfSupportingAttackOptions as _i, CounterattackOptions as _n, GenericSectorOptions as _r, DEFAULT_FIX_MISSION_TASK_OPTIONS as _t, axis1DrawRule as a, ControlMeasureFillCapability as aa, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS as ai, DEFAULT_GUARD_OPTIONS as an, SupportByFireOptions as ar, getControlMeasureMetadata as at, occupyDrawRule as b, CanonicalTextAmplifiers as ba, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS as bi, DEFAULT_CLEAR_OPTIONS as bn, DEFAULT_GENERIC_RECTANGLE_OPTIONS as br, FixOptions as bt, line27DrawRule as c, ControlMeasureMetadata as ca, FeaturePartProps as ci, DisruptMissionTaskOptions as cn, AirborneAttackOptions as cr, listControlMeasureMetadata as ct, line23DrawRule as d, ParamDescriptor as da, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS as di, DEFAULT_DELAY_OPTIONS as dn, RADAR_SEARCH_DOCTRINE_FILL_COLOR as dr, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS as dt, DEFAULT_STROKE_DASH_CSS_PIXELS as ea, DEFAULT_AREA_DEFENSE_OPTIONS as ei, PenetrateOptions as en, DEFAULT_FLOT_OPTIONS as er, CONTROL_MEASURE_IDS as et, turnDrawRule as f, ParameterPresentationTier as fa, SECONDARY_DIRECTION_OF_FIRE_DASH as fi, DelayOptions as fn, RADAR_SEARCH_DOCTRINE_STROKE_COLOR as fr, ObstacleBypassDifficultOptions as ft, dynamicPointDrawRule as g, resolveParameterPresentationTier as ga, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS as gi, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS as gn, DEFAULT_GENERIC_SECTOR_OPTIONS as gr, MinefieldOptions as gt, attackByFireDrawRule as h, parameterPresentationTierRank as ha, PrincipalDirectionOfFireOptions as hi, CounterattackByFireOptions as hn, GenericTextOptions as hr, DEFAULT_MINEFIELD_OPTIONS as ht, rectangleDrawRule as i, MeasuredText as ia, TacticalArrowOptions as ii, MovementToContactOptions as in, DEFAULT_SUPPORT_BY_FIRE_OPTIONS as ir, OptionsByKind as it, snapToMidpointPerpendicular as j, ControlMeasureDrawRule as ja, GenericC2LineOptions as ji, ProbableLineOfDeploymentOptions as jn, DEFAULT_CLASSIC_ARROW_OPTIONS as jr, DEFAULT_FORTIFIED_LINE_OPTIONS as jt, getMidpointPerpendicularSignedDistance as k, resolveAmplifierPlacement as ka, DEFAULT_BATTLE_POSITION_OPTIONS as ki, DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS as kn, ClassicArrowHeadStyle as kr, DEFAULT_FORTIFIED_AREA_OPTIONS as kt, line26DrawRule as l, ControlMeasurePaintCapability as la, StyleHints as li, DEFAULT_DISENGAGE_OPTIONS as ln, DEFAULT_AIRBORNE_ATTACK_OPTIONS as lr, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS as lt, ambushDrawRule as m, TextAmplifierDescriptor as ma, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS as mi, DEFAULT_COVER_OPTIONS as mn, DEFAULT_GENERIC_TEXT_OPTIONS as mr, ObstacleBypassEasyOptions as mt, DEFAULT_AMBUSH_OPTIONS as n, LogicalTextStyle as na, EncirclementOptions as ni, OccupyOptions as nn, AttackByFireOptions as nr, ControlMeasureId as nt, supportByFireDrawRule as o, ControlMeasureGeometry as oa, FinalProtectiveFireOptions as oi, GuardOptions as on, AttackHelicopterOptions as or, getControlMeasureMetadataByValue as ot, line1DrawRule as p, ParameterSemanticRole as pa, SecondaryDirectionOfFireOptions as pi, CoverOptions as pn, RadarSearchDoctrineOptions as pr, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS as pt, foldsBoxTransformOptions as q, ControlMeasureOptionHandles as qi, InfiltrationLaneOptions as qn, AssemblyAreaOptions as qr, DEFAULT_SCREEN_OPTIONS as qt, sectorDrawRule as r, MeasureTextRequest as ra, DEFAULT_TACTICAL_ARROW_OPTIONS as ri, DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS as rn, DEFAULT_ATTACK_BY_FIRE_OPTIONS as rr, ControlMeasureKind as rt, polyline1DrawRule as s, ControlMeasureGeometryType as sa, ControlMeasureRender as si, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS as sn, DEFAULT_ATTACK_HELICOPTER_OPTIONS as sr, getDefaultOptions as st, AmbushOptions as t, DEFAULT_STROKE_WIDTH_CSS_PIXELS as ta, DEFAULT_ENCIRCLEMENT_OPTIONS as ti, DEFAULT_OCCUPY_OPTIONS as tn, FLOTOptions as tr, CONTROL_MEASURE_METADATA as tt, line24DrawRule as u, PARAMETER_PRESENTATION_TIERS as ua, controlMeasureIdFromFeature as ui, DisengageOptions as un, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS as ur, ObstacleBypassImpossibleOptions as ut, point12DrawRule as v, AmplifierPlacement as va, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS as vi, DEFAULT_COUNTERATTACK_OPTIONS as vn, DEFAULT_GENERIC_CIRCLE_OPTIONS as vr, FixMissionTaskOptions as vt, containDrawRule as w, TextAmplifierField as wa, DEFAULT_STRONG_POINT_OPTIONS as wi, DEFAULT_BYPASS_OPTIONS as wn, DEFAULT_GENERIC_LINE_OPTIONS as wr, DEFAULT_BLOCK_OPTIONS as wt, centerRadiusDrawRule as x, GeneratedLabelKey as xa, DirectionOfAttackAviationOptions as xi, CanalizeOptions as xn, GenericRectangleOptions as xr, DEFAULT_DISRUPT_OPTIONS as xt, penetrateDrawRule as y, AmplifierPlacements as ya, DirectionOfMainAttackOptions as yi, ClearOptions as yn, GenericCircleOptions as yr, DEFAULT_FIX_OPTIONS as yt, roundToFixed as z, project as zi, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS as zn, DEFAULT_AREA_OF_OPERATIONS_OPTIONS as zr, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS as zt };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as
|
|
1
|
+
import { $ as isKind, $i as DEFAULT_PORTRAYAL, $n as PhaseLineOptions, $r as AreaDefenseOptions, $t as DEFAULT_PENETRATE_OPTIONS, A as pointOnMidpointPerpendicularAxis, Aa as AnchorTransformEvent, Ai as DEFAULT_GENERIC_C2_LINE_OPTIONS, An as PROBABLE_LINE_OF_DEPLOYMENT_DASH, Ar as ClassicArrowOptions, At as FortifiedAreaOptions, B as SimpleStyleProps, Bi as sphericalBearing, Bn as DEFAULT_HANDOVER_LINE_OPTIONS, Br as DEFAULT_PICKUP_ZONE_OPTIONS, Bt as WithdrawUnderPressureOptions, C as blockDrawRule, Ca as TEXT_AMPLIFIER_FIELDS, Ci as RetainOptions, Cn as BypassOptions, Cr as GenericPolygonOptions, Ct as BlockOptions, D as computeDefaultMidpointPerpendicularPoint, Da as canonicalTextAmplifierKey, Di as DEFAULT_CONTAIN_OPTIONS, Dn as BlockMissionTaskOptions, Dr as BlockArrowOptions, Dt as DEFAULT_FRONTAL_ATTACK_OPTIONS, E as MidpointPerpendicularDrawRuleOptions, Ea as TextAmplifiers, Ei as ContainOptions, En as DEFAULT_BREACH_OPTIONS, Er as BlockArrowHeadStyle, Et as TurningMovementOptions, F as BaselineFrameOrigin, Fi as LightLineOptions, Fn as LineOfDepartureOptions, Fr as MainAttackOptions, Ft as AntitankDitchOptions, G as getControlMeasureOptionHandles, Gi as ControlMeasureOptionHandle, Gn as HoldingLineOptions, Gr as DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, Gt as DEFAULT_SEIZE_OPTIONS, H as toSimpleStyle, Hi as BoundaryOptions, Hn as DEFAULT_RELEASE_LINE_OPTIONS, Hr as MineType, Ht as WithdrawOptions, I as createBaselineFrame, Ii as LabelSizeOptions, In as DEFAULT_LIMIT_OF_ADVANCE_OPTIONS, Ir as calculateMetrics, It as DEFAULT_ANTITANK_DITCH_OPTIONS, J as freezeOrientationOptions, Ji as ControlMeasureRenderContext, Jn as BridgeheadLineOptions, Jr as DEFAULT_ASSEMBLY_AREA_OPTIONS, Jt as ScreenOptions, K as applyBoxTransformOptions, Ki as ControlMeasureOptionHandleDragEvent, Kn as DEFAULT_INFILTRATION_LANE_OPTIONS, Kr as JointTacticalActionAreaOptions, Kt as SeizeOptions, L as EPSILON, Li as Point2D, Ln as LimitOfAdvanceOptions, Lr as computeInitialWidthPoint, Lt as DEFAULT_TURN_OPTIONS, M as BaselineFrame, Mi as DEFAULT_ENGINEER_WORK_LINE_OPTIONS, Mn as DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS, Mr as DEFAULT_SUPPORTING_ATTACK_OPTIONS, Mt as FortifiedLineOptions, N as BaselineFrameNormal, Ni as EngineerWorkLineOptions, Nn as LineOfDepartureContactOptions, Nr as SupportingAttackOptions, Nt as AntitankWallOptions, O as createMidpointPerpendicularDrawRule, Oa as normalizeTextAmplifiers, Oi as BattlePositionOptions, On as DEFAULT_BLOCK_MISSION_TASK_OPTIONS, Or as DEFAULT_BLOCK_ARROW_OPTIONS, Ot as FrontalAttackOptions, P as BaselineFrameOptions, Pi as DEFAULT_LIGHT_LINE_OPTIONS, Pn as DEFAULT_LINE_OF_DEPARTURE_OPTIONS, Pr as DEFAULT_MAIN_ATTACK_OPTIONS, Pt as DEFAULT_ANTITANK_WALL_OPTIONS, Q as cloneControlMeasure, Qi as DEFAULT_LINE_JOIN, Qn as DEFAULT_PHASE_LINE_OPTIONS, Qr as EngagementAreaOptions, Qt as RearwardPassageOfLinesOptions, R as getMetersPerPixel, Ri as haversineDistance, Rn as BattleHandoverLineOptions, Rr as AreaOfOperationsOptions, Rt as TurnOptions, S as disruptDrawRule, Sa as LabelPlacementOverride, Si as DEFAULT_RETAIN_OPTIONS, Sn as DEFAULT_CANALIZE_OPTIONS, Sr as DEFAULT_GENERIC_POLYGON_OPTIONS, St as DisruptOptions, T as area27DrawRule, Ta as TextAmplifierKey, Ti as StrongPointOptions, Tn as BreachOptions, Tr as GenericLineOptions, Tt as DEFAULT_TURNING_MOVEMENT_OPTIONS, U as resolveStyleHints, Ui as DEFAULT_BOUNDARY_OPTIONS, Un as ReleaseLineOptions, Ur as DEFAULT_LANDING_ZONE_OPTIONS, Ut as DEFAULT_EVACUATE_OPTIONS, V as SimpleStyleRender, Vi as unproject, Vn as HandoverLineOptions, Vr as PickupZoneOptions, Vt as DEFAULT_WITHDRAW_OPTIONS, W as dragControlMeasureOptionHandle, Wi as BoxTransformDelta, Wn as DEFAULT_HOLDING_LINE_OPTIONS, Wr as LandingZoneOptions, Wt as EvacuateOptions, X as renderControlMeasure, Xi as DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, Xn as DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, Xr as MobileDefenseOptions, Xt as RetireOptions, Y as RenderOptions, Yi as DEFAULT_LABEL_HEIGHT_CSS_PIXELS, Yn as DEFAULT_BRIDGEHEAD_LINE_OPTIONS, Yr as DEFAULT_MOBILE_DEFENSE_OPTIONS, Yt as DEFAULT_RETIRE_OPTIONS, Z as ControlMeasure, Zi as DEFAULT_LINE_CAP, Zn as ForwardEdgeOfBattleAreaOptions, Zr as DEFAULT_ENGAGEMENT_AREA_OPTIONS, Zt as DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, _ as staticPointDrawRule, _a as resolveParameterSemanticRole, _i as DirectionOfSupportingAttackOptions, _n as CounterattackOptions, _r as GenericSectorOptions, _t as DEFAULT_FIX_MISSION_TASK_OPTIONS, a as axis1DrawRule, aa as ControlMeasureFillCapability, ai as DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, an as DEFAULT_GUARD_OPTIONS, ar as SupportByFireOptions, at as getControlMeasureMetadata, b as occupyDrawRule, ba as CanonicalTextAmplifiers, bi as DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, bn as DEFAULT_CLEAR_OPTIONS, br as DEFAULT_GENERIC_RECTANGLE_OPTIONS, bt as FixOptions, c as line27DrawRule, ca as ControlMeasureMetadata, ci as FeaturePartProps, cn as DisruptMissionTaskOptions, cr as AirborneAttackOptions, ct as listControlMeasureMetadata, d as line23DrawRule, da as ParamDescriptor, di as DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, dn as DEFAULT_DELAY_OPTIONS, dr as RADAR_SEARCH_DOCTRINE_FILL_COLOR, dt as DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, ea as DEFAULT_STROKE_DASH_CSS_PIXELS, ei as DEFAULT_AREA_DEFENSE_OPTIONS, en as PenetrateOptions, er as DEFAULT_FLOT_OPTIONS, et as CONTROL_MEASURE_IDS, f as turnDrawRule, fa as ParameterPresentationTier, fi as SECONDARY_DIRECTION_OF_FIRE_DASH, fn as DelayOptions, fr as RADAR_SEARCH_DOCTRINE_STROKE_COLOR, ft as ObstacleBypassDifficultOptions, g as dynamicPointDrawRule, ga as resolveParameterPresentationTier, gi as DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, gn as DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, gr as DEFAULT_GENERIC_SECTOR_OPTIONS, gt as MinefieldOptions, h as attackByFireDrawRule, ha as parameterPresentationTierRank, hi as PrincipalDirectionOfFireOptions, hn as CounterattackByFireOptions, hr as GenericTextOptions, ht as DEFAULT_MINEFIELD_OPTIONS, i as rectangleDrawRule, ia as MeasuredText, ii as TacticalArrowOptions, in as MovementToContactOptions, ir as DEFAULT_SUPPORT_BY_FIRE_OPTIONS, it as OptionsByKind, j as snapToMidpointPerpendicular, ja as ControlMeasureDrawRule, ji as GenericC2LineOptions, jn as ProbableLineOfDeploymentOptions, jr as DEFAULT_CLASSIC_ARROW_OPTIONS, jt as DEFAULT_FORTIFIED_LINE_OPTIONS, k as getMidpointPerpendicularSignedDistance, ka as resolveAmplifierPlacement, ki as DEFAULT_BATTLE_POSITION_OPTIONS, kn as DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS, kr as ClassicArrowHeadStyle, kt as DEFAULT_FORTIFIED_AREA_OPTIONS, l as line26DrawRule, la as ControlMeasurePaintCapability, li as StyleHints, ln as DEFAULT_DISENGAGE_OPTIONS, lr as DEFAULT_AIRBORNE_ATTACK_OPTIONS, lt as DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, m as ambushDrawRule, ma as TextAmplifierDescriptor, mi as DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, mn as DEFAULT_COVER_OPTIONS, mr as DEFAULT_GENERIC_TEXT_OPTIONS, mt as ObstacleBypassEasyOptions, n as DEFAULT_AMBUSH_OPTIONS, na as LogicalTextStyle, ni as EncirclementOptions, nn as OccupyOptions, nr as AttackByFireOptions, nt as ControlMeasureId, o as supportByFireDrawRule, oa as ControlMeasureGeometry, oi as FinalProtectiveFireOptions, on as GuardOptions, or as AttackHelicopterOptions, ot as getControlMeasureMetadataByValue, p as line1DrawRule, pa as ParameterSemanticRole, pi as SecondaryDirectionOfFireOptions, pn as CoverOptions, pr as RadarSearchDoctrineOptions, pt as DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, q as foldsBoxTransformOptions, qi as ControlMeasureOptionHandles, qn as InfiltrationLaneOptions, qr as AssemblyAreaOptions, qt as DEFAULT_SCREEN_OPTIONS, r as sectorDrawRule, ra as MeasureTextRequest, ri as DEFAULT_TACTICAL_ARROW_OPTIONS, rn as DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS, rr as DEFAULT_ATTACK_BY_FIRE_OPTIONS, rt as ControlMeasureKind, s as polyline1DrawRule, sa as ControlMeasureGeometryType, si as ControlMeasureRender, sn as DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, sr as DEFAULT_ATTACK_HELICOPTER_OPTIONS, st as getDefaultOptions, t as AmbushOptions, ta as DEFAULT_STROKE_WIDTH_CSS_PIXELS, ti as DEFAULT_ENCIRCLEMENT_OPTIONS, tn as DEFAULT_OCCUPY_OPTIONS, tr as FLOTOptions, tt as CONTROL_MEASURE_METADATA, u as line24DrawRule, ua as PARAMETER_PRESENTATION_TIERS, ui as controlMeasureIdFromFeature, un as DisengageOptions, ur as DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, ut as ObstacleBypassImpossibleOptions, v as point12DrawRule, va as AmplifierPlacement, vi as DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, vn as DEFAULT_COUNTERATTACK_OPTIONS, vr as DEFAULT_GENERIC_CIRCLE_OPTIONS, vt as FixMissionTaskOptions, w as containDrawRule, wa as TextAmplifierField, wi as DEFAULT_STRONG_POINT_OPTIONS, wn as DEFAULT_BYPASS_OPTIONS, wr as DEFAULT_GENERIC_LINE_OPTIONS, wt as DEFAULT_BLOCK_OPTIONS, x as centerRadiusDrawRule, xa as GeneratedLabelKey, xi as DirectionOfAttackAviationOptions, xn as CanalizeOptions, xr as GenericRectangleOptions, xt as DEFAULT_DISRUPT_OPTIONS, y as penetrateDrawRule, ya as AmplifierPlacements, yi as DirectionOfMainAttackOptions, yn as ClearOptions, yr as GenericCircleOptions, yt as DEFAULT_FIX_OPTIONS, z as roundToFixed, zi as project, zn as DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, zr as DEFAULT_AREA_OF_OPERATIONS_OPTIONS, zt as DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS } from "./index-DPu0u2KK.mjs";
|
|
2
2
|
import { a as PatternId, c as PatternPoint, d as ControlMeasureStyle, f as FillPattern, i as NON_SOLID_FILL_PATTERNS, l as PatternStroke, n as FillPatternCommand, o as PatternPaint, r as FillPatternDefinition, s as PatternPathOperation, t as FILL_PATTERN_DEFINITIONS, u as getFillPatternDefinition } from "./patterns-CcQmmOuJ.mjs";
|
|
3
|
-
export { type AirborneAttackOptions, type AmbushOptions, type AmplifierPlacement, type AmplifierPlacements, type AnchorTransformEvent, type AntitankDitchOptions, type AntitankWallOptions, type AreaDefenseOptions, type AreaOfOperationsOptions, type AssemblyAreaOptions, type AttackByFireOptions, type AttackHelicopterOptions, type BaselineFrame, type BaselineFrameNormal, type BaselineFrameOptions, type BaselineFrameOrigin, type BattleHandoverLineOptions, type BattlePositionOptions, type BlockArrowHeadStyle, type BlockArrowOptions, type BlockMissionTaskOptions, type BlockOptions, type BoundaryOptions, type BoxTransformDelta, type BreachOptions, type BridgeheadLineOptions, type BypassOptions, CONTROL_MEASURE_IDS, CONTROL_MEASURE_METADATA, type CanalizeOptions, type CanonicalTextAmplifiers, type ClassicArrowHeadStyle, type ClassicArrowOptions, type ClearOptions, type ContainOptions, type ControlMeasure, type ControlMeasureDrawRule, type ControlMeasureFillCapability, type ControlMeasureGeometry, type ControlMeasureGeometryType, type ControlMeasureId, type ControlMeasureKind, type ControlMeasureMetadata, type ControlMeasureOptionHandle, type ControlMeasureOptionHandleDragEvent, type ControlMeasureOptionHandles, type ControlMeasurePaintCapability, type ControlMeasureRender, type ControlMeasureRenderContext, type ControlMeasureStyle, type CounterattackByFireOptions, type CounterattackOptions, type CoverOptions, DEFAULT_AIRBORNE_ATTACK_OPTIONS, DEFAULT_AMBUSH_OPTIONS, DEFAULT_ANTITANK_DITCH_OPTIONS, DEFAULT_ANTITANK_WALL_OPTIONS, DEFAULT_AREA_DEFENSE_OPTIONS, DEFAULT_AREA_OF_OPERATIONS_OPTIONS, DEFAULT_ASSEMBLY_AREA_OPTIONS, DEFAULT_ATTACK_BY_FIRE_OPTIONS, DEFAULT_ATTACK_HELICOPTER_OPTIONS, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, DEFAULT_BATTLE_POSITION_OPTIONS, DEFAULT_BLOCK_ARROW_OPTIONS, DEFAULT_BLOCK_MISSION_TASK_OPTIONS, DEFAULT_BLOCK_OPTIONS, DEFAULT_BOUNDARY_OPTIONS, DEFAULT_BREACH_OPTIONS, DEFAULT_BRIDGEHEAD_LINE_OPTIONS, DEFAULT_BYPASS_OPTIONS, DEFAULT_CANALIZE_OPTIONS, DEFAULT_CLASSIC_ARROW_OPTIONS, DEFAULT_CLEAR_OPTIONS, DEFAULT_CONTAIN_OPTIONS, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, DEFAULT_COUNTERATTACK_OPTIONS, DEFAULT_COVER_OPTIONS, DEFAULT_DELAY_OPTIONS, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, DEFAULT_DISENGAGE_OPTIONS, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, DEFAULT_DISRUPT_OPTIONS, DEFAULT_ENCIRCLEMENT_OPTIONS, DEFAULT_ENGAGEMENT_AREA_OPTIONS, DEFAULT_ENGINEER_WORK_LINE_OPTIONS, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, DEFAULT_FIX_MISSION_TASK_OPTIONS, DEFAULT_FIX_OPTIONS, DEFAULT_FLOT_OPTIONS, DEFAULT_FORTIFIED_AREA_OPTIONS, DEFAULT_FORTIFIED_LINE_OPTIONS, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, DEFAULT_FRONTAL_ATTACK_OPTIONS, DEFAULT_GENERIC_C2_LINE_OPTIONS, DEFAULT_GENERIC_CIRCLE_OPTIONS, DEFAULT_GENERIC_LINE_OPTIONS, DEFAULT_GENERIC_POLYGON_OPTIONS, DEFAULT_GENERIC_RECTANGLE_OPTIONS, DEFAULT_GENERIC_SECTOR_OPTIONS, DEFAULT_GENERIC_TEXT_OPTIONS, DEFAULT_GUARD_OPTIONS, DEFAULT_HANDOVER_LINE_OPTIONS, DEFAULT_HOLDING_LINE_OPTIONS, DEFAULT_INFILTRATION_LANE_OPTIONS, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, DEFAULT_LABEL_HEIGHT_CSS_PIXELS, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, DEFAULT_LANDING_ZONE_OPTIONS, DEFAULT_LIGHT_LINE_OPTIONS, DEFAULT_LIMIT_OF_ADVANCE_OPTIONS, DEFAULT_LINE_CAP, DEFAULT_LINE_JOIN, DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS, DEFAULT_LINE_OF_DEPARTURE_OPTIONS, DEFAULT_MAIN_ATTACK_OPTIONS, DEFAULT_MINEFIELD_OPTIONS, DEFAULT_MOBILE_DEFENSE_OPTIONS, DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, DEFAULT_PENETRATE_OPTIONS, DEFAULT_PHASE_LINE_OPTIONS, DEFAULT_PICKUP_ZONE_OPTIONS, DEFAULT_PORTRAYAL, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, DEFAULT_RELEASE_LINE_OPTIONS, DEFAULT_RETAIN_OPTIONS, DEFAULT_RETIRE_OPTIONS, DEFAULT_SCREEN_OPTIONS, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_SEIZE_OPTIONS, DEFAULT_STROKE_DASH_CSS_PIXELS, DEFAULT_STROKE_WIDTH_CSS_PIXELS, DEFAULT_STRONG_POINT_OPTIONS, DEFAULT_SUPPORTING_ATTACK_OPTIONS, DEFAULT_SUPPORT_BY_FIRE_OPTIONS, DEFAULT_TACTICAL_ARROW_OPTIONS, DEFAULT_TURNING_MOVEMENT_OPTIONS, DEFAULT_TURN_OPTIONS, DEFAULT_WITHDRAW_OPTIONS, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, type DelayOptions, type DirectionOfAttackAviationOptions, type DirectionOfMainAttackOptions, type DirectionOfSupportingAttackOptions, type DisengageOptions, type DisruptMissionTaskOptions, type DisruptOptions, EPSILON, type EncirclementOptions, type EngagementAreaOptions, type EngineerWorkLineOptions, FILL_PATTERN_DEFINITIONS, type FLOTOptions, type FeaturePartProps, type FillPattern, type FillPatternCommand, type FillPatternDefinition, type FinalProtectiveFireOptions, type FixMissionTaskOptions, type FixOptions, type FortifiedAreaOptions, type FortifiedLineOptions, type ForwardEdgeOfBattleAreaOptions, type FrontalAttackOptions, type GeneratedLabelKey, type GenericC2LineOptions, type GenericCircleOptions, type GenericLineOptions, type GenericPolygonOptions, type GenericRectangleOptions, type GenericSectorOptions, type GenericTextOptions, type GuardOptions, type HandoverLineOptions, type HoldingLineOptions, type InfiltrationLaneOptions, type JointTacticalActionAreaOptions, type LabelPlacementOverride, type LabelSizeOptions, type LandingZoneOptions, type LightLineOptions, type LimitOfAdvanceOptions, type LineOfDepartureContactOptions, type LineOfDepartureOptions, type LogicalTextStyle, type MainAttackOptions, type MeasureTextRequest, type MeasuredText, type MidpointPerpendicularDrawRuleOptions, type MineType, type MinefieldOptions, type MobileDefenseOptions, type MovementToContactOptions, NON_SOLID_FILL_PATTERNS, type ObstacleBypassDifficultOptions, type ObstacleBypassEasyOptions, type ObstacleBypassImpossibleOptions, type OptionsByKind, PARAMETER_PRESENTATION_TIERS, PROBABLE_LINE_OF_DEPLOYMENT_DASH, type ParamDescriptor, type ParameterPresentationTier, type ParameterSemanticRole, type PatternId, type PatternPaint, type PatternPathOperation, type PatternPoint, type PatternStroke, type PenetrateOptions, type PhaseLineOptions, type PickupZoneOptions, type Point2D, type PrincipalDirectionOfFireOptions, type ProbableLineOfDeploymentOptions, RADAR_SEARCH_DOCTRINE_FILL_COLOR, RADAR_SEARCH_DOCTRINE_STROKE_COLOR, type RadarSearchDoctrineOptions, type RearwardPassageOfLinesOptions, type ReleaseLineOptions, type RenderOptions, type RetainOptions, type RetireOptions, SECONDARY_DIRECTION_OF_FIRE_DASH, type ScreenOptions, type SecondaryDirectionOfFireOptions, type SeizeOptions, type SimpleStyleProps, type SimpleStyleRender, type StrongPointOptions, type StyleHints, type SupportByFireOptions, type SupportingAttackOptions, TEXT_AMPLIFIER_FIELDS, type TacticalArrowOptions, type TextAmplifierDescriptor, type TextAmplifierField, type TextAmplifierKey, type TextAmplifiers, type TurnOptions, type TurningMovementOptions, type WithdrawOptions, type WithdrawUnderPressureOptions, ambushDrawRule, applyBoxTransformOptions, area27DrawRule, attackByFireDrawRule, axis1DrawRule, blockDrawRule, calculateMetrics, canonicalTextAmplifierKey, centerRadiusDrawRule, cloneControlMeasure, computeDefaultMidpointPerpendicularPoint, computeInitialWidthPoint, containDrawRule, controlMeasureIdFromFeature, createBaselineFrame, createMidpointPerpendicularDrawRule, disruptDrawRule, dragControlMeasureOptionHandle, dynamicPointDrawRule, foldsBoxTransformOptions, freezeOrientationOptions, getControlMeasureMetadata, getControlMeasureMetadataByValue, getControlMeasureOptionHandles, getDefaultOptions, getFillPatternDefinition, getMetersPerPixel, getMidpointPerpendicularSignedDistance, haversineDistance, isKind, line1DrawRule, line23DrawRule, line24DrawRule, line26DrawRule, line27DrawRule, listControlMeasureMetadata, normalizeTextAmplifiers, parameterPresentationTierRank, penetrateDrawRule, point12DrawRule, pointOnMidpointPerpendicularAxis, polyline1DrawRule, project, rectangleDrawRule, renderControlMeasure, resolveAmplifierPlacement, resolveParameterPresentationTier, resolveParameterSemanticRole, resolveStyleHints, roundToFixed, sectorDrawRule, snapToMidpointPerpendicular, sphericalBearing, staticPointDrawRule, supportByFireDrawRule, toSimpleStyle, turnDrawRule, unproject };
|
|
3
|
+
export { type AirborneAttackOptions, type AmbushOptions, type AmplifierPlacement, type AmplifierPlacements, type AnchorTransformEvent, type AntitankDitchOptions, type AntitankWallOptions, type AreaDefenseOptions, type AreaOfOperationsOptions, type AssemblyAreaOptions, type AttackByFireOptions, type AttackHelicopterOptions, type BaselineFrame, type BaselineFrameNormal, type BaselineFrameOptions, type BaselineFrameOrigin, type BattleHandoverLineOptions, type BattlePositionOptions, type BlockArrowHeadStyle, type BlockArrowOptions, type BlockMissionTaskOptions, type BlockOptions, type BoundaryOptions, type BoxTransformDelta, type BreachOptions, type BridgeheadLineOptions, type BypassOptions, CONTROL_MEASURE_IDS, CONTROL_MEASURE_METADATA, type CanalizeOptions, type CanonicalTextAmplifiers, type ClassicArrowHeadStyle, type ClassicArrowOptions, type ClearOptions, type ContainOptions, type ControlMeasure, type ControlMeasureDrawRule, type ControlMeasureFillCapability, type ControlMeasureGeometry, type ControlMeasureGeometryType, type ControlMeasureId, type ControlMeasureKind, type ControlMeasureMetadata, type ControlMeasureOptionHandle, type ControlMeasureOptionHandleDragEvent, type ControlMeasureOptionHandles, type ControlMeasurePaintCapability, type ControlMeasureRender, type ControlMeasureRenderContext, type ControlMeasureStyle, type CounterattackByFireOptions, type CounterattackOptions, type CoverOptions, DEFAULT_AIRBORNE_ATTACK_OPTIONS, DEFAULT_AMBUSH_OPTIONS, DEFAULT_ANTITANK_DITCH_OPTIONS, DEFAULT_ANTITANK_WALL_OPTIONS, DEFAULT_AREA_DEFENSE_OPTIONS, DEFAULT_AREA_OF_OPERATIONS_OPTIONS, DEFAULT_ASSEMBLY_AREA_OPTIONS, DEFAULT_ATTACK_BY_FIRE_OPTIONS, DEFAULT_ATTACK_HELICOPTER_OPTIONS, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, DEFAULT_BATTLE_POSITION_OPTIONS, DEFAULT_BLOCK_ARROW_OPTIONS, DEFAULT_BLOCK_MISSION_TASK_OPTIONS, DEFAULT_BLOCK_OPTIONS, DEFAULT_BOUNDARY_OPTIONS, DEFAULT_BREACH_OPTIONS, DEFAULT_BRIDGEHEAD_LINE_OPTIONS, DEFAULT_BYPASS_OPTIONS, DEFAULT_CANALIZE_OPTIONS, DEFAULT_CLASSIC_ARROW_OPTIONS, DEFAULT_CLEAR_OPTIONS, DEFAULT_CONTAIN_OPTIONS, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, DEFAULT_COUNTERATTACK_OPTIONS, DEFAULT_COVER_OPTIONS, DEFAULT_DELAY_OPTIONS, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, DEFAULT_DISENGAGE_OPTIONS, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, DEFAULT_DISRUPT_OPTIONS, DEFAULT_ENCIRCLEMENT_OPTIONS, DEFAULT_ENGAGEMENT_AREA_OPTIONS, DEFAULT_ENGINEER_WORK_LINE_OPTIONS, DEFAULT_EVACUATE_OPTIONS, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, DEFAULT_FIX_MISSION_TASK_OPTIONS, DEFAULT_FIX_OPTIONS, DEFAULT_FLOT_OPTIONS, DEFAULT_FORTIFIED_AREA_OPTIONS, DEFAULT_FORTIFIED_LINE_OPTIONS, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, DEFAULT_FRONTAL_ATTACK_OPTIONS, DEFAULT_GENERIC_C2_LINE_OPTIONS, DEFAULT_GENERIC_CIRCLE_OPTIONS, DEFAULT_GENERIC_LINE_OPTIONS, DEFAULT_GENERIC_POLYGON_OPTIONS, DEFAULT_GENERIC_RECTANGLE_OPTIONS, DEFAULT_GENERIC_SECTOR_OPTIONS, DEFAULT_GENERIC_TEXT_OPTIONS, DEFAULT_GUARD_OPTIONS, DEFAULT_HANDOVER_LINE_OPTIONS, DEFAULT_HOLDING_LINE_OPTIONS, DEFAULT_INFILTRATION_LANE_OPTIONS, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, DEFAULT_LABEL_HEIGHT_CSS_PIXELS, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, DEFAULT_LANDING_ZONE_OPTIONS, DEFAULT_LIGHT_LINE_OPTIONS, DEFAULT_LIMIT_OF_ADVANCE_OPTIONS, DEFAULT_LINE_CAP, DEFAULT_LINE_JOIN, DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS, DEFAULT_LINE_OF_DEPARTURE_OPTIONS, DEFAULT_MAIN_ATTACK_OPTIONS, DEFAULT_MINEFIELD_OPTIONS, DEFAULT_MOBILE_DEFENSE_OPTIONS, DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, DEFAULT_OCCUPY_OPTIONS, DEFAULT_PENETRATE_OPTIONS, DEFAULT_PHASE_LINE_OPTIONS, DEFAULT_PICKUP_ZONE_OPTIONS, DEFAULT_PORTRAYAL, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, DEFAULT_RELEASE_LINE_OPTIONS, DEFAULT_RETAIN_OPTIONS, DEFAULT_RETIRE_OPTIONS, DEFAULT_SCREEN_OPTIONS, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_SEIZE_OPTIONS, DEFAULT_STROKE_DASH_CSS_PIXELS, DEFAULT_STROKE_WIDTH_CSS_PIXELS, DEFAULT_STRONG_POINT_OPTIONS, DEFAULT_SUPPORTING_ATTACK_OPTIONS, DEFAULT_SUPPORT_BY_FIRE_OPTIONS, DEFAULT_TACTICAL_ARROW_OPTIONS, DEFAULT_TURNING_MOVEMENT_OPTIONS, DEFAULT_TURN_OPTIONS, DEFAULT_WITHDRAW_OPTIONS, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, type DelayOptions, type DirectionOfAttackAviationOptions, type DirectionOfMainAttackOptions, type DirectionOfSupportingAttackOptions, type DisengageOptions, type DisruptMissionTaskOptions, type DisruptOptions, EPSILON, type EncirclementOptions, type EngagementAreaOptions, type EngineerWorkLineOptions, type EvacuateOptions, FILL_PATTERN_DEFINITIONS, type FLOTOptions, type FeaturePartProps, type FillPattern, type FillPatternCommand, type FillPatternDefinition, type FinalProtectiveFireOptions, type FixMissionTaskOptions, type FixOptions, type FortifiedAreaOptions, type FortifiedLineOptions, type ForwardEdgeOfBattleAreaOptions, type FrontalAttackOptions, type GeneratedLabelKey, type GenericC2LineOptions, type GenericCircleOptions, type GenericLineOptions, type GenericPolygonOptions, type GenericRectangleOptions, type GenericSectorOptions, type GenericTextOptions, type GuardOptions, type HandoverLineOptions, type HoldingLineOptions, type InfiltrationLaneOptions, type JointTacticalActionAreaOptions, type LabelPlacementOverride, type LabelSizeOptions, type LandingZoneOptions, type LightLineOptions, type LimitOfAdvanceOptions, type LineOfDepartureContactOptions, type LineOfDepartureOptions, type LogicalTextStyle, type MainAttackOptions, type MeasureTextRequest, type MeasuredText, type MidpointPerpendicularDrawRuleOptions, type MineType, type MinefieldOptions, type MobileDefenseOptions, type MovementToContactOptions, NON_SOLID_FILL_PATTERNS, type ObstacleBypassDifficultOptions, type ObstacleBypassEasyOptions, type ObstacleBypassImpossibleOptions, type OccupyOptions, type OptionsByKind, PARAMETER_PRESENTATION_TIERS, PROBABLE_LINE_OF_DEPLOYMENT_DASH, type ParamDescriptor, type ParameterPresentationTier, type ParameterSemanticRole, type PatternId, type PatternPaint, type PatternPathOperation, type PatternPoint, type PatternStroke, type PenetrateOptions, type PhaseLineOptions, type PickupZoneOptions, type Point2D, type PrincipalDirectionOfFireOptions, type ProbableLineOfDeploymentOptions, RADAR_SEARCH_DOCTRINE_FILL_COLOR, RADAR_SEARCH_DOCTRINE_STROKE_COLOR, type RadarSearchDoctrineOptions, type RearwardPassageOfLinesOptions, type ReleaseLineOptions, type RenderOptions, type RetainOptions, type RetireOptions, SECONDARY_DIRECTION_OF_FIRE_DASH, type ScreenOptions, type SecondaryDirectionOfFireOptions, type SeizeOptions, type SimpleStyleProps, type SimpleStyleRender, type StrongPointOptions, type StyleHints, type SupportByFireOptions, type SupportingAttackOptions, TEXT_AMPLIFIER_FIELDS, type TacticalArrowOptions, type TextAmplifierDescriptor, type TextAmplifierField, type TextAmplifierKey, type TextAmplifiers, type TurnOptions, type TurningMovementOptions, type WithdrawOptions, type WithdrawUnderPressureOptions, ambushDrawRule, applyBoxTransformOptions, area27DrawRule, attackByFireDrawRule, axis1DrawRule, blockDrawRule, calculateMetrics, canonicalTextAmplifierKey, centerRadiusDrawRule, cloneControlMeasure, computeDefaultMidpointPerpendicularPoint, computeInitialWidthPoint, containDrawRule, controlMeasureIdFromFeature, createBaselineFrame, createMidpointPerpendicularDrawRule, disruptDrawRule, dragControlMeasureOptionHandle, dynamicPointDrawRule, foldsBoxTransformOptions, freezeOrientationOptions, getControlMeasureMetadata, getControlMeasureMetadataByValue, getControlMeasureOptionHandles, getDefaultOptions, getFillPatternDefinition, getMetersPerPixel, getMidpointPerpendicularSignedDistance, haversineDistance, isKind, line1DrawRule, line23DrawRule, line24DrawRule, line26DrawRule, line27DrawRule, listControlMeasureMetadata, normalizeTextAmplifiers, occupyDrawRule, parameterPresentationTierRank, penetrateDrawRule, point12DrawRule, pointOnMidpointPerpendicularAxis, polyline1DrawRule, project, rectangleDrawRule, renderControlMeasure, resolveAmplifierPlacement, resolveParameterPresentationTier, resolveParameterSemanticRole, resolveStyleHints, roundToFixed, sectorDrawRule, snapToMidpointPerpendicular, sphericalBearing, staticPointDrawRule, supportByFireDrawRule, toSimpleStyle, turnDrawRule, unproject };
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as
|
|
1
|
+
import { $ as DEFAULT_FIX_MISSION_TASK_OPTIONS, $t as DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, A as DEFAULT_SCREEN_OPTIONS, An as area27DrawRule, At as DEFAULT_LIGHT_LINE_OPTIONS, B as PROBABLE_LINE_OF_DEPLOYMENT_DASH, Bn as project, Bt as DEFAULT_ASSEMBLY_AREA_OPTIONS, C as DEFAULT_LANDING_ZONE_OPTIONS, Cn as point12DrawRule, Ct as DEFAULT_CLASSIC_ARROW_OPTIONS, D as DEFAULT_WITHDRAW_OPTIONS, Dn as blockDrawRule, Dt as DEFAULT_BLOCK_MISSION_TASK_OPTIONS, E as DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, En as disruptDrawRule, Et as DEFAULT_BREACH_OPTIONS, F as DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS, Fn as snapToMidpointPerpendicular, Ft as DEFAULT_BATTLE_POSITION_OPTIONS, G as DEFAULT_HANDOVER_LINE_OPTIONS, Gn as roundToFixed, Gt as DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, H as DEFAULT_LINE_OF_DEPARTURE_OPTIONS, Hn as unproject, Ht as DEFAULT_MOBILE_DEFENSE_OPTIONS, I as DEFAULT_FRONTAL_ATTACK_OPTIONS, In as createBaselineFrame, It as DEFAULT_ATTACK_HELICOPTER_OPTIONS, J as DEFAULT_HOLDING_LINE_OPTIONS, Jt as TEXT_AMPLIFIER_FIELDS, K as DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, Kt as DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, L as DEFAULT_FORTIFIED_AREA_OPTIONS, Ln as calculateMetrics, Lt as DEFAULT_ATTACK_BY_FIRE_OPTIONS, M as DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, Mn as createMidpointPerpendicularDrawRule, Mt as DEFAULT_BLOCK_ARROW_OPTIONS, N as DEFAULT_PENETRATE_OPTIONS, Nn as getMidpointPerpendicularSignedDistance, Nt as DEFAULT_BLOCK_OPTIONS, O as DEFAULT_EVACUATE_OPTIONS, On as centerRadiusDrawRule, Ot as DEFAULT_GENERIC_C2_LINE_OPTIONS, P as DEFAULT_OCCUPY_OPTIONS, Pn as pointOnMidpointPerpendicularAxis, Pt as DEFAULT_CONTAIN_OPTIONS, Q as DEFAULT_FLOT_OPTIONS, Qt as DEFAULT_LABEL_HEIGHT_CSS_PIXELS, R as DEFAULT_FORTIFIED_LINE_OPTIONS, Rn as computeInitialWidthPoint, Rt as DEFAULT_ANTITANK_WALL_OPTIONS, S as DEFAULT_MAIN_ATTACK_OPTIONS, Sn as staticPointDrawRule, St as DEFAULT_GENERIC_CIRCLE_OPTIONS, T as DEFAULT_TURN_OPTIONS, Tn as occupyDrawRule, Tt as DEFAULT_BYPASS_OPTIONS, U as DEFAULT_LIMIT_OF_ADVANCE_OPTIONS, Un as EPSILON, Ut as DEFAULT_ENGAGEMENT_AREA_OPTIONS, V as DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS, Vn as sphericalBearing, Vt as DEFAULT_AREA_OF_OPERATIONS_OPTIONS, W as DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, Wn as getMetersPerPixel, Wt as DEFAULT_AREA_DEFENSE_OPTIONS, X as DEFAULT_BRIDGEHEAD_LINE_OPTIONS, Xt as normalizeTextAmplifiers, Y as DEFAULT_INFILTRATION_LANE_OPTIONS, Yt as canonicalTextAmplifierKey, Z as DEFAULT_PHASE_LINE_OPTIONS, Zt as resolveAmplifierPlacement, _ as DEFAULT_PICKUP_ZONE_OPTIONS, _n as line1DrawRule, _t as DEFAULT_GENERIC_TEXT_OPTIONS, a as DEFINITIONS, at as DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, b as DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, bn as dynamicPointDrawRule, bt as DEFAULT_GENERIC_POLYGON_OPTIONS, c as getDefaultOptions, cn as rectangleDrawRule, ct as DEFAULT_COVER_OPTIONS, d as DEFAULT_SUPPORT_BY_FIRE_OPTIONS, dn as polyline1DrawRule, dt as DEFAULT_COUNTERATTACK_OPTIONS, en as DEFAULT_LINE_CAP, et as DEFAULT_FIX_OPTIONS, f as DEFAULT_RETAIN_OPTIONS, fn as line27DrawRule, ft as DEFAULT_SUPPORTING_ATTACK_OPTIONS, g as DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, gn as turnDrawRule, gt as RADAR_SEARCH_DOCTRINE_STROKE_COLOR, h as SECONDARY_DIRECTION_OF_FIRE_DASH, hn as line23DrawRule, ht as RADAR_SEARCH_DOCTRINE_FILL_COLOR, i as CONTROL_MEASURE_METADATA, in as DEFAULT_STROKE_WIDTH_CSS_PIXELS, it as DEFAULT_GUARD_OPTIONS, j as DEFAULT_RETIRE_OPTIONS, jn as computeDefaultMidpointPerpendicularPoint, jt as DEFAULT_BOUNDARY_OPTIONS, k as DEFAULT_SEIZE_OPTIONS, kn as containDrawRule, kt as DEFAULT_ENGINEER_WORK_LINE_OPTIONS, l as listControlMeasureMetadata, ln as axis1DrawRule, lt as DEFAULT_TACTICAL_ARROW_OPTIONS, m as DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, mn as line24DrawRule, mt as DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, n as resolveStyleHints, nn as DEFAULT_PORTRAYAL, nt as DEFAULT_ENCIRCLEMENT_OPTIONS, o as getControlMeasureMetadata, on as DEFAULT_AMBUSH_OPTIONS, ot as DEFAULT_DISENGAGE_OPTIONS, p as DEFAULT_STRONG_POINT_OPTIONS, pn as line26DrawRule, pt as DEFAULT_CLEAR_OPTIONS, q as DEFAULT_RELEASE_LINE_OPTIONS, qt as DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, r as CONTROL_MEASURE_IDS, rn as DEFAULT_STROKE_DASH_CSS_PIXELS, rt as DEFAULT_DISRUPT_OPTIONS, s as getControlMeasureMetadataByValue, sn as DEFAULT_AIRBORNE_ATTACK_OPTIONS, st as DEFAULT_DELAY_OPTIONS, t as renderControlMeasure, tn as DEFAULT_LINE_JOIN, tt as DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, u as DEFAULT_TURNING_MOVEMENT_OPTIONS, un as supportByFireDrawRule, ut as DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, v as DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, vn as ambushDrawRule, vt as DEFAULT_GENERIC_SECTOR_OPTIONS, w as DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, wn as penetrateDrawRule, wt as DEFAULT_CANALIZE_OPTIONS, x as DEFAULT_MINEFIELD_OPTIONS, xn as sectorDrawRule, xt as DEFAULT_GENERIC_LINE_OPTIONS, y as DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, yn as attackByFireDrawRule, yt as DEFAULT_GENERIC_RECTANGLE_OPTIONS, z as DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS, zn as haversineDistance, zt as DEFAULT_ANTITANK_DITCH_OPTIONS } from "./renderControlMeasure-Bh62ZdEY.mjs";
|
|
2
2
|
import { FILL_PATTERN_DEFINITIONS, NON_SOLID_FILL_PATTERNS, getFillPatternDefinition } from "./patterns.mjs";
|
|
3
3
|
//#region src/metadata.ts
|
|
4
4
|
const PARAMETER_PRESENTATION_TIERS = [
|
|
@@ -179,4 +179,4 @@ function toHexChannel(value) {
|
|
|
179
179
|
return Math.max(0, Math.min(255, Math.round(value))).toString(16).padStart(2, "0");
|
|
180
180
|
}
|
|
181
181
|
//#endregion
|
|
182
|
-
export { CONTROL_MEASURE_IDS, CONTROL_MEASURE_METADATA, DEFAULT_AIRBORNE_ATTACK_OPTIONS, DEFAULT_AMBUSH_OPTIONS, DEFAULT_ANTITANK_DITCH_OPTIONS, DEFAULT_ANTITANK_WALL_OPTIONS, DEFAULT_AREA_DEFENSE_OPTIONS, DEFAULT_AREA_OF_OPERATIONS_OPTIONS, DEFAULT_ASSEMBLY_AREA_OPTIONS, DEFAULT_ATTACK_BY_FIRE_OPTIONS, DEFAULT_ATTACK_HELICOPTER_OPTIONS, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, DEFAULT_BATTLE_POSITION_OPTIONS, DEFAULT_BLOCK_ARROW_OPTIONS, DEFAULT_BLOCK_MISSION_TASK_OPTIONS, DEFAULT_BLOCK_OPTIONS, DEFAULT_BOUNDARY_OPTIONS, DEFAULT_BREACH_OPTIONS, DEFAULT_BRIDGEHEAD_LINE_OPTIONS, DEFAULT_BYPASS_OPTIONS, DEFAULT_CANALIZE_OPTIONS, DEFAULT_CLASSIC_ARROW_OPTIONS, DEFAULT_CLEAR_OPTIONS, DEFAULT_CONTAIN_OPTIONS, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, DEFAULT_COUNTERATTACK_OPTIONS, DEFAULT_COVER_OPTIONS, DEFAULT_DELAY_OPTIONS, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, DEFAULT_DISENGAGE_OPTIONS, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, DEFAULT_DISRUPT_OPTIONS, DEFAULT_ENCIRCLEMENT_OPTIONS, DEFAULT_ENGAGEMENT_AREA_OPTIONS, DEFAULT_ENGINEER_WORK_LINE_OPTIONS, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, DEFAULT_FIX_MISSION_TASK_OPTIONS, DEFAULT_FIX_OPTIONS, DEFAULT_FLOT_OPTIONS, DEFAULT_FORTIFIED_AREA_OPTIONS, DEFAULT_FORTIFIED_LINE_OPTIONS, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, DEFAULT_FRONTAL_ATTACK_OPTIONS, DEFAULT_GENERIC_C2_LINE_OPTIONS, DEFAULT_GENERIC_CIRCLE_OPTIONS, DEFAULT_GENERIC_LINE_OPTIONS, DEFAULT_GENERIC_POLYGON_OPTIONS, DEFAULT_GENERIC_RECTANGLE_OPTIONS, DEFAULT_GENERIC_SECTOR_OPTIONS, DEFAULT_GENERIC_TEXT_OPTIONS, DEFAULT_GUARD_OPTIONS, DEFAULT_HANDOVER_LINE_OPTIONS, DEFAULT_HOLDING_LINE_OPTIONS, DEFAULT_INFILTRATION_LANE_OPTIONS, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, DEFAULT_LABEL_HEIGHT_CSS_PIXELS, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, DEFAULT_LANDING_ZONE_OPTIONS, DEFAULT_LIGHT_LINE_OPTIONS, DEFAULT_LIMIT_OF_ADVANCE_OPTIONS, DEFAULT_LINE_CAP, DEFAULT_LINE_JOIN, DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS, DEFAULT_LINE_OF_DEPARTURE_OPTIONS, DEFAULT_MAIN_ATTACK_OPTIONS, DEFAULT_MINEFIELD_OPTIONS, DEFAULT_MOBILE_DEFENSE_OPTIONS, DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, DEFAULT_PENETRATE_OPTIONS, DEFAULT_PHASE_LINE_OPTIONS, DEFAULT_PICKUP_ZONE_OPTIONS, DEFAULT_PORTRAYAL, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, DEFAULT_RELEASE_LINE_OPTIONS, DEFAULT_RETAIN_OPTIONS, DEFAULT_RETIRE_OPTIONS, DEFAULT_SCREEN_OPTIONS, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_SEIZE_OPTIONS, DEFAULT_STROKE_DASH_CSS_PIXELS, DEFAULT_STROKE_WIDTH_CSS_PIXELS, DEFAULT_STRONG_POINT_OPTIONS, DEFAULT_SUPPORTING_ATTACK_OPTIONS, DEFAULT_SUPPORT_BY_FIRE_OPTIONS, DEFAULT_TACTICAL_ARROW_OPTIONS, DEFAULT_TURNING_MOVEMENT_OPTIONS, DEFAULT_TURN_OPTIONS, DEFAULT_WITHDRAW_OPTIONS, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, EPSILON, FILL_PATTERN_DEFINITIONS, NON_SOLID_FILL_PATTERNS, PARAMETER_PRESENTATION_TIERS, PROBABLE_LINE_OF_DEPLOYMENT_DASH, RADAR_SEARCH_DOCTRINE_FILL_COLOR, RADAR_SEARCH_DOCTRINE_STROKE_COLOR, SECONDARY_DIRECTION_OF_FIRE_DASH, TEXT_AMPLIFIER_FIELDS, ambushDrawRule, applyBoxTransformOptions, area27DrawRule, attackByFireDrawRule, axis1DrawRule, blockDrawRule, calculateMetrics, canonicalTextAmplifierKey, centerRadiusDrawRule, cloneControlMeasure, computeDefaultMidpointPerpendicularPoint, computeInitialWidthPoint, containDrawRule, controlMeasureIdFromFeature, createBaselineFrame, createMidpointPerpendicularDrawRule, disruptDrawRule, dragControlMeasureOptionHandle, dynamicPointDrawRule, foldsBoxTransformOptions, freezeOrientationOptions, getControlMeasureMetadata, getControlMeasureMetadataByValue, getControlMeasureOptionHandles, getDefaultOptions, getFillPatternDefinition, getMetersPerPixel, getMidpointPerpendicularSignedDistance, haversineDistance, isKind, line1DrawRule, line23DrawRule, line24DrawRule, line26DrawRule, line27DrawRule, listControlMeasureMetadata, normalizeTextAmplifiers, parameterPresentationTierRank, penetrateDrawRule, point12DrawRule, pointOnMidpointPerpendicularAxis, polyline1DrawRule, project, rectangleDrawRule, renderControlMeasure, resolveAmplifierPlacement, resolveParameterPresentationTier, resolveParameterSemanticRole, resolveStyleHints, roundToFixed, sectorDrawRule, snapToMidpointPerpendicular, sphericalBearing, staticPointDrawRule, supportByFireDrawRule, toSimpleStyle, turnDrawRule, unproject };
|
|
182
|
+
export { CONTROL_MEASURE_IDS, CONTROL_MEASURE_METADATA, DEFAULT_AIRBORNE_ATTACK_OPTIONS, DEFAULT_AMBUSH_OPTIONS, DEFAULT_ANTITANK_DITCH_OPTIONS, DEFAULT_ANTITANK_WALL_OPTIONS, DEFAULT_AREA_DEFENSE_OPTIONS, DEFAULT_AREA_OF_OPERATIONS_OPTIONS, DEFAULT_ASSEMBLY_AREA_OPTIONS, DEFAULT_ATTACK_BY_FIRE_OPTIONS, DEFAULT_ATTACK_HELICOPTER_OPTIONS, DEFAULT_BATTLE_HANDOVER_LINE_OPTIONS, DEFAULT_BATTLE_POSITION_OPTIONS, DEFAULT_BLOCK_ARROW_OPTIONS, DEFAULT_BLOCK_MISSION_TASK_OPTIONS, DEFAULT_BLOCK_OPTIONS, DEFAULT_BOUNDARY_OPTIONS, DEFAULT_BREACH_OPTIONS, DEFAULT_BRIDGEHEAD_LINE_OPTIONS, DEFAULT_BYPASS_OPTIONS, DEFAULT_CANALIZE_OPTIONS, DEFAULT_CLASSIC_ARROW_OPTIONS, DEFAULT_CLEAR_OPTIONS, DEFAULT_CONTAIN_OPTIONS, DEFAULT_COUNTERATTACK_BY_FIRE_OPTIONS, DEFAULT_COUNTERATTACK_OPTIONS, DEFAULT_COVER_OPTIONS, DEFAULT_DELAY_OPTIONS, DEFAULT_DIRECTION_OF_ATTACK_AVIATION_OPTIONS, DEFAULT_DIRECTION_OF_MAIN_ATTACK_OPTIONS, DEFAULT_DIRECTION_OF_SUPPORTING_ATTACK_OPTIONS, DEFAULT_DISENGAGE_OPTIONS, DEFAULT_DISRUPT_MISSION_TASK_OPTIONS, DEFAULT_DISRUPT_OPTIONS, DEFAULT_ENCIRCLEMENT_OPTIONS, DEFAULT_ENGAGEMENT_AREA_OPTIONS, DEFAULT_ENGINEER_WORK_LINE_OPTIONS, DEFAULT_EVACUATE_OPTIONS, DEFAULT_FINAL_PROTECTIVE_FIRE_OPTIONS, DEFAULT_FIX_MISSION_TASK_OPTIONS, DEFAULT_FIX_OPTIONS, DEFAULT_FLOT_OPTIONS, DEFAULT_FORTIFIED_AREA_OPTIONS, DEFAULT_FORTIFIED_LINE_OPTIONS, DEFAULT_FORWARD_EDGE_OF_BATTLE_AREA_OPTIONS, DEFAULT_FRONTAL_ATTACK_OPTIONS, DEFAULT_GENERIC_C2_LINE_OPTIONS, DEFAULT_GENERIC_CIRCLE_OPTIONS, DEFAULT_GENERIC_LINE_OPTIONS, DEFAULT_GENERIC_POLYGON_OPTIONS, DEFAULT_GENERIC_RECTANGLE_OPTIONS, DEFAULT_GENERIC_SECTOR_OPTIONS, DEFAULT_GENERIC_TEXT_OPTIONS, DEFAULT_GUARD_OPTIONS, DEFAULT_HANDOVER_LINE_OPTIONS, DEFAULT_HOLDING_LINE_OPTIONS, DEFAULT_INFILTRATION_LANE_OPTIONS, DEFAULT_JOINT_TACTICAL_ACTION_AREA_OPTIONS, DEFAULT_LABEL_HEIGHT_CSS_PIXELS, DEFAULT_LABEL_SIZE_CLAMP_CSS_PIXELS, DEFAULT_LANDING_ZONE_OPTIONS, DEFAULT_LIGHT_LINE_OPTIONS, DEFAULT_LIMIT_OF_ADVANCE_OPTIONS, DEFAULT_LINE_CAP, DEFAULT_LINE_JOIN, DEFAULT_LINE_OF_DEPARTURE_CONTACT_OPTIONS, DEFAULT_LINE_OF_DEPARTURE_OPTIONS, DEFAULT_MAIN_ATTACK_OPTIONS, DEFAULT_MINEFIELD_OPTIONS, DEFAULT_MOBILE_DEFENSE_OPTIONS, DEFAULT_MOVEMENT_TO_CONTACT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_DIFFICULT_OPTIONS, DEFAULT_OBSTACLE_BYPASS_EASY_OPTIONS, DEFAULT_OBSTACLE_BYPASS_IMPOSSIBLE_OPTIONS, DEFAULT_OCCUPY_OPTIONS, DEFAULT_PENETRATE_OPTIONS, DEFAULT_PHASE_LINE_OPTIONS, DEFAULT_PICKUP_ZONE_OPTIONS, DEFAULT_PORTRAYAL, DEFAULT_PRINCIPAL_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_PROBABLE_LINE_OF_DEPLOYMENT_OPTIONS, DEFAULT_RADAR_SEARCH_DOCTRINE_OPTIONS, DEFAULT_REARWARD_PASSAGE_OF_LINES_OPTIONS, DEFAULT_RELEASE_LINE_OPTIONS, DEFAULT_RETAIN_OPTIONS, DEFAULT_RETIRE_OPTIONS, DEFAULT_SCREEN_OPTIONS, DEFAULT_SECONDARY_DIRECTION_OF_FIRE_OPTIONS, DEFAULT_SEIZE_OPTIONS, DEFAULT_STROKE_DASH_CSS_PIXELS, DEFAULT_STROKE_WIDTH_CSS_PIXELS, DEFAULT_STRONG_POINT_OPTIONS, DEFAULT_SUPPORTING_ATTACK_OPTIONS, DEFAULT_SUPPORT_BY_FIRE_OPTIONS, DEFAULT_TACTICAL_ARROW_OPTIONS, DEFAULT_TURNING_MOVEMENT_OPTIONS, DEFAULT_TURN_OPTIONS, DEFAULT_WITHDRAW_OPTIONS, DEFAULT_WITHDRAW_UNDER_PRESSURE_OPTIONS, EPSILON, FILL_PATTERN_DEFINITIONS, NON_SOLID_FILL_PATTERNS, PARAMETER_PRESENTATION_TIERS, PROBABLE_LINE_OF_DEPLOYMENT_DASH, RADAR_SEARCH_DOCTRINE_FILL_COLOR, RADAR_SEARCH_DOCTRINE_STROKE_COLOR, SECONDARY_DIRECTION_OF_FIRE_DASH, TEXT_AMPLIFIER_FIELDS, ambushDrawRule, applyBoxTransformOptions, area27DrawRule, attackByFireDrawRule, axis1DrawRule, blockDrawRule, calculateMetrics, canonicalTextAmplifierKey, centerRadiusDrawRule, cloneControlMeasure, computeDefaultMidpointPerpendicularPoint, computeInitialWidthPoint, containDrawRule, controlMeasureIdFromFeature, createBaselineFrame, createMidpointPerpendicularDrawRule, disruptDrawRule, dragControlMeasureOptionHandle, dynamicPointDrawRule, foldsBoxTransformOptions, freezeOrientationOptions, getControlMeasureMetadata, getControlMeasureMetadataByValue, getControlMeasureOptionHandles, getDefaultOptions, getFillPatternDefinition, getMetersPerPixel, getMidpointPerpendicularSignedDistance, haversineDistance, isKind, line1DrawRule, line23DrawRule, line24DrawRule, line26DrawRule, line27DrawRule, listControlMeasureMetadata, normalizeTextAmplifiers, occupyDrawRule, parameterPresentationTierRank, penetrateDrawRule, point12DrawRule, pointOnMidpointPerpendicularAxis, polyline1DrawRule, project, rectangleDrawRule, renderControlMeasure, resolveAmplifierPlacement, resolveParameterPresentationTier, resolveParameterSemanticRole, resolveStyleHints, roundToFixed, sectorDrawRule, snapToMidpointPerpendicular, sphericalBearing, staticPointDrawRule, supportByFireDrawRule, toSimpleStyle, turnDrawRule, unproject };
|
package/dist/preview/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Ea as TextAmplifiers, nt as ControlMeasureId } from "../index-DPu0u2KK.mjs";
|
|
2
2
|
import { f as FillPattern } from "../patterns-CcQmmOuJ.mjs";
|
|
3
3
|
import { FeatureCollection, Geometry, Position } from "geojson";
|
|
4
4
|
|
package/dist/preview/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as DEFINITIONS, t as renderControlMeasure } from "../renderControlMeasure-
|
|
1
|
+
import { a as DEFINITIONS, t as renderControlMeasure } from "../renderControlMeasure-Bh62ZdEY.mjs";
|
|
2
2
|
import { FILL_PATTERN_DEFINITIONS, NON_SOLID_FILL_PATTERNS } from "../patterns.mjs";
|
|
3
3
|
//#region src/preview/index.ts
|
|
4
4
|
/** Side length (SVG units) of the repeating non-mine tile in {@link PREVIEW_FILL_PATTERNS}. */
|