@zendir/ui 0.1.13 → 0.1.14
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.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/react/astro/UnifiedTimeline.d.ts +4 -0
- package/dist/react/astro/UnifiedTimeline.js +319 -272
- package/dist/react/astro/UnifiedTimeline.js.map +1 -1
- package/dist/react/charts/GroundTrackMap.js +1123 -0
- package/dist/react/charts/GroundTrackMap.js.map +1 -0
- package/dist/react/charts/GroundTrackMapLeaflet.js +571 -0
- package/dist/react/charts/GroundTrackMapLeaflet.js.map +1 -0
- package/dist/react/charts/groundTrackMapLeafletTiles.js +11 -0
- package/dist/react/charts/groundTrackMapLeafletTiles.js.map +1 -0
- package/dist/react/charts/groundTrackMapLeafletUtils.js +109 -0
- package/dist/react/charts/groundTrackMapLeafletUtils.js.map +1 -0
- package/dist/react/charts/unified/AstroChart.js +1412 -0
- package/dist/react/charts/unified/AstroChart.js.map +1 -0
- package/dist/react/charts/unified/theme.d.ts +6 -6
- package/dist/react/charts/unified/theme.js +338 -0
- package/dist/react/charts/unified/theme.js.map +1 -0
- package/dist/react/charts/unified/types.d.ts +1 -1
- package/dist/react/context/DisplaySettingsContext.js +12 -0
- package/dist/react/context/DisplaySettingsContext.js.map +1 -1
- package/dist/react/index.d.ts +4 -0
- package/dist/react.js +4 -0
- package/dist/react.js.map +1 -1
- package/dist/style.css +143 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ import { useCompactMode } from "./react/hooks/useCompactMode.js";
|
|
|
5
5
|
import { PLANETS, auToKm, estimateOrbitalPeriod, estimateOrbitalVelocity, getPlanet, normalizePlanetName } from "./react/types.js";
|
|
6
6
|
import { ActivityPlanner } from "./react/core/ActivityPlanner.js";
|
|
7
7
|
import { AppBar } from "./react/core/AppBar.js";
|
|
8
|
+
import { AstroChart } from "./react/charts/unified/AstroChart.js";
|
|
8
9
|
import { BREAKPOINTS, useBreakpoint } from "./react/core/layout/useBreakpoint.js";
|
|
9
10
|
import { Badge } from "./react/core/Badge.js";
|
|
10
11
|
import { Body1, Body2, Body3, Compact, DataText, Display1, Display2, FONT_FAMILY_MONO, FONT_FAMILY_PRIMARY, FONT_WEIGHTS, H1, H2, H3, H4, H5, H6, Label, Micro, Mono, Typography } from "./react/core/Typography.js";
|
|
@@ -33,6 +34,7 @@ import { Flex } from "./react/core/layout/Flex.js";
|
|
|
33
34
|
import { GLASS_COLOR_OVERLAYS, GlassCard } from "./react/core/GlassCard.js";
|
|
34
35
|
import { GlobalStatusBar } from "./react/astro/GlobalStatusBar.js";
|
|
35
36
|
import { Grid } from "./react/core/layout/Grid.js";
|
|
37
|
+
import { GroundTrackMap } from "./react/charts/GroundTrackMap.js";
|
|
36
38
|
import { HStack, Stack, VStack } from "./react/core/layout/Stack.js";
|
|
37
39
|
import { HeaderIconWithStatus } from "./react/core/HeaderIconWithStatus.js";
|
|
38
40
|
import { HexViewer, REGION_BORDER_COLORS, REGION_COLORS } from "./react/core/HexViewer.js";
|
|
@@ -68,6 +70,7 @@ import { resolveResponsive, resolveSpacing } from "./react/core/layout/responsiv
|
|
|
68
70
|
export {
|
|
69
71
|
ActivityPlanner,
|
|
70
72
|
AppBar,
|
|
73
|
+
AstroChart,
|
|
71
74
|
BREAKPOINTS,
|
|
72
75
|
Badge,
|
|
73
76
|
Body1,
|
|
@@ -118,6 +121,7 @@ export {
|
|
|
118
121
|
GlassCard,
|
|
119
122
|
GlobalStatusBar,
|
|
120
123
|
Grid,
|
|
124
|
+
GroundTrackMap,
|
|
121
125
|
H1,
|
|
122
126
|
H2,
|
|
123
127
|
H3,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -30,6 +30,10 @@ export interface TimelineEvent {
|
|
|
30
30
|
arguments?: Record<string, string | number | boolean>;
|
|
31
31
|
/** Custom metadata */
|
|
32
32
|
metadata?: Record<string, unknown>;
|
|
33
|
+
/** Secondary accent color for team/category identification (CSS color string).
|
|
34
|
+
* Rendered as a top stripe (list & Gantt views) or outer ring (scatter view)
|
|
35
|
+
* alongside the primary status color — does NOT override status indicators. */
|
|
36
|
+
color?: string;
|
|
33
37
|
}
|
|
34
38
|
export interface TimelineTrackDef {
|
|
35
39
|
/** Track identifier */
|