@texturehq/edges 3.1.1 → 3.1.2
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/{colors-7toc6xXj.d.cts → colors-BJ7jego1.d.cts} +66 -1
- package/dist/{colors-3zFRtH8q.d.ts → colors-vcCsLoIo.d.ts} +66 -1
- package/dist/index.cjs +10 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +246 -3
- package/dist/index.d.ts +246 -3
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/styles.css +3 -0
- package/package.json +1 -1
|
@@ -1531,6 +1531,60 @@ interface ClusteredVectorLayerSpec extends Omit<BaseLayerSpec, "tooltip"> {
|
|
|
1531
1531
|
* Union of all layer types
|
|
1532
1532
|
*/
|
|
1533
1533
|
type LayerSpec = VectorLayerSpec | GeoJsonLayerSpec | CustomPinsSpec | RasterLayerSpec | ClusteredVectorLayerSpec;
|
|
1534
|
+
/**
|
|
1535
|
+
* One row in the layers panel.
|
|
1536
|
+
*
|
|
1537
|
+
* Depth is whatever the config declares — a node with `children` is a container
|
|
1538
|
+
* the panel drills into, a node with `layerId` is a leaf controlling that layer.
|
|
1539
|
+
* The shape mirrors `StackNavItem`/`SideNavItem`, with `layerId` playing the
|
|
1540
|
+
* role `href` plays there.
|
|
1541
|
+
*
|
|
1542
|
+
* Kept separate from `LayerSpec` because containers have no geometry of their
|
|
1543
|
+
* own: "Grid infrastructure" is a heading over Transformers and Feeders, not a
|
|
1544
|
+
* layer that could be rendered.
|
|
1545
|
+
*/
|
|
1546
|
+
interface LayerTreeNode {
|
|
1547
|
+
/** Stable identifier, unique across the tree. */
|
|
1548
|
+
id: string;
|
|
1549
|
+
label: string;
|
|
1550
|
+
/** Leaf only: the `LayerSpec.id` this row shows and hides. */
|
|
1551
|
+
layerId?: string;
|
|
1552
|
+
/** Container only: nested rows, to any depth. */
|
|
1553
|
+
children?: LayerTreeNode[];
|
|
1554
|
+
/**
|
|
1555
|
+
* How many of this node's children may be on at once. Defaults to `multi`.
|
|
1556
|
+
*
|
|
1557
|
+
* `single` is for a layer whose children are alternatives rather than
|
|
1558
|
+
* additions — weather showing temperature *or* wind, never both. Those render
|
|
1559
|
+
* as radios, and choosing one turns its siblings off.
|
|
1560
|
+
*/
|
|
1561
|
+
selection?: LayerSelection;
|
|
1562
|
+
}
|
|
1563
|
+
/**
|
|
1564
|
+
* Children of a `single` node are mutually exclusive. `allowNone` lets the user
|
|
1565
|
+
* clear the choice from within the child pane; without it the only way back to
|
|
1566
|
+
* nothing-selected is the parent's own checkbox.
|
|
1567
|
+
*/
|
|
1568
|
+
type LayerSelection = {
|
|
1569
|
+
mode: "multi";
|
|
1570
|
+
} | {
|
|
1571
|
+
mode: "single";
|
|
1572
|
+
allowNone?: boolean;
|
|
1573
|
+
};
|
|
1574
|
+
/**
|
|
1575
|
+
* A row's checkbox state. Containers are `indeterminate` when only some of the
|
|
1576
|
+
* leaves beneath them are visible — impossible under `single` selection, where a
|
|
1577
|
+
* node is either off or showing exactly one child.
|
|
1578
|
+
*/
|
|
1579
|
+
type LayerCheckState = "checked" | "unchecked" | "indeterminate";
|
|
1580
|
+
/**
|
|
1581
|
+
* A visibility change as an explicit target state per layer.
|
|
1582
|
+
*
|
|
1583
|
+
* A map rather than `(ids, visible)` because single-select changes two things at
|
|
1584
|
+
* once — one layer on, its siblings off — and splitting that across two calls
|
|
1585
|
+
* would let the map render a moment with everything off.
|
|
1586
|
+
*/
|
|
1587
|
+
type LayerVisibilityPatch = Record<string, boolean>;
|
|
1534
1588
|
|
|
1535
1589
|
/**
|
|
1536
1590
|
* Unified map style configuration for all map components
|
|
@@ -1650,6 +1704,17 @@ interface LayersControl extends BaseControl {
|
|
|
1650
1704
|
* declaring `legend.variants`.
|
|
1651
1705
|
*/
|
|
1652
1706
|
onLayerVariantChange?: (layerId: string, variantId: string) => void;
|
|
1707
|
+
/**
|
|
1708
|
+
* Recursive layer tree. When provided, the control renders the drill-down
|
|
1709
|
+
* layers panel in place of the flat list.
|
|
1710
|
+
*/
|
|
1711
|
+
layerTree?: LayerTreeNode[];
|
|
1712
|
+
/**
|
|
1713
|
+
* Apply a visibility change from the panel, given as the target state per
|
|
1714
|
+
* affected layer. Container toggles and single-select choices both arrive as
|
|
1715
|
+
* one patch. Only used alongside `layerTree`.
|
|
1716
|
+
*/
|
|
1717
|
+
onVisibilityChange?: (patch: LayerVisibilityPatch) => void;
|
|
1653
1718
|
}
|
|
1654
1719
|
/**
|
|
1655
1720
|
* Search control configuration
|
|
@@ -4278,4 +4343,4 @@ declare const getContrastingTextColor: (backgroundColor: string) => string;
|
|
|
4278
4343
|
*/
|
|
4279
4344
|
declare const mapValuesToCategoricalColors: (values: (string | number)[]) => Record<string | number, string>;
|
|
4280
4345
|
|
|
4281
|
-
export { getContrastingTextColor as $, ABSENT_GRID_FIELDS as A, type BadgeProps as B, type ChartMargin as C, type StaticMapProps as D, ENTITY_CONFIG as E, type TooltipData as F, GRID_ELEMENT_TYPE_BY_ENTITY as G, HEADLINE_METRIC_BOUNDS as H, type InteractiveMapProps as I, type TooltipSeries as J, TopNav as K, Loader as L, type MapPoint as M, type TopNavProps as N, type YFormatType as O, archetypeFor as P, clearColorCache as Q, createCategoryColorMap as R, type SegmentOption as S, TextLink as T, createXScale as U, createYScale as V, defaultMargin as W, entityHasDetailPage as X, type YFormatSettings as Y, entityHasStatList as Z, entityShowsNow as _, type ActionItem as a, type
|
|
4346
|
+
export { getContrastingTextColor as $, ABSENT_GRID_FIELDS as A, type BadgeProps as B, type ChartMargin as C, type StaticMapProps as D, ENTITY_CONFIG as E, type TooltipData as F, GRID_ELEMENT_TYPE_BY_ENTITY as G, HEADLINE_METRIC_BOUNDS as H, type InteractiveMapProps as I, type TooltipSeries as J, TopNav as K, Loader as L, type MapPoint as M, type TopNavProps as N, type YFormatType as O, archetypeFor as P, clearColorCache as Q, createCategoryColorMap as R, type SegmentOption as S, TextLink as T, createXScale as U, createYScale as V, defaultMargin as W, entityHasDetailPage as X, type YFormatSettings as Y, entityHasStatList as Z, entityShowsNow as _, type ActionItem as a, type LayerStyle as a$, getDefaultChartColor as a0, getDefaultColors as a1, getEntityConfig as a2, getEntityIcon as a3, getEntityLabel as a4, getEntityStatList as a5, getResolvedColor as a6, getThemeCategoricalColors as a7, getYFormatSettings as a8, isLightColor as a9, type RasterLayerSpec as aA, type VectorLayerSpec as aB, type ClusteredVectorLayerSpec as aC, type ColorSpec as aD, ActionMenu as aE, AppShell as aF, Avatar as aG, Badge as aH, type BaseFormat as aI, ChartContext as aJ, CodeEditor as aK, type ComponentFormatOptions as aL, type CurrentUnit as aM, type CustomFormat as aN, DEFAULT_MAP_TYPE as aO, type DateFormatStyle as aP, type DistanceUnit as aQ, ENTITY_CATEGORY_CONFIG as aR, type EntityCategory as aS, type EntityCategoryConfig as aT, GRID_STATE_COLORS as aU, type GridStateColor as aV, InteractiveMap as aW, type InteractiveMapHandle as aX, type LayerCheckState as aY, type LayerFeature as aZ, type LayerSelection as a_, type FieldValue as aa, type BooleanFormat as ab, type FormattedValue as ac, type FieldFormat as ad, type CurrentFormat as ae, type DateFormat as af, type DistanceFormat as ag, type EnergyUnit as ah, type EnergyFormat as ai, type CurrencyFormat as aj, type NumberFormat as ak, type PhoneFormat as al, type PowerFormat as am, type FormatterFunction as an, type ResistanceFormat as ao, type TemperatureFormat as ap, type TemperatureUnitString as aq, type TemperatureUnit as ar, type TextFormat as as, type VoltageFormat as at, type DeviceState as au, type GridState as av, type ComponentFormatter as aw, type LayerSpec as ax, type CustomPinsSpec as ay, type GeoJsonLayerSpec as az, type ActionMenuProps as b, type LayerTreeNode as b0, type LayerVisibilityPatch as b1, MAP_TYPES as b2, type MapType as b3, Meter as b4, type MetricFormat as b5, type PercentageFormat as b6, type PowerUnit as b7, type RenderType as b8, type ResistanceUnit as b9, useChartContext as bA, useComponentFormatter as bB, SegmentedControl as ba, StackNav as bb, type StackNavGroup as bc, type StackNavItem as bd, type StackNavLinkComponentProps as be, type StackNavProps as bf, type StackNavRenderRow as bg, type StackNavRowRenderProps as bh, type StackNavTheme as bi, StaticMap as bj, type TextTransform as bk, type TextTruncatePosition as bl, UNVERIFIED_VOLTAGE_UNIT_ROWS as bm, type VoltageUnit as bn, type ZoomStops as bo, activeDeviceStates as bp, baselineFromPoint as bq, deviceStateLabels as br, deviceStateMetricFormats as bs, formatComponentValue as bt, getDeviceStateLabel as bu, getEntityCategory as bv, getGridStateLabel as bw, gridStateLabels as bx, isActiveState as by, mapValuesToCategoricalColors as bz, type AppShellProps as c, type AvatarProps as d, type BaseDataPoint as e, type CodeEditorProps as f, type CodeLanguage as g, type CodeTheme as h, type EntityArchetype as i, type EntityConfig as j, type EntityStateRule as k, type EntityType as l, GRID_STAT_LIST as m, type GridElementSourceType as n, type GridStatField as o, type GridStatFieldFormat as p, Heading as q, type HeadlineMetric as r, Logo as s, type MeterProps as t, type MetricSource as u, type SegmentedControlProps as v, type SerializableFieldFormat as w, SideNav as x, type SideNavItem as y, type SideNavProps as z };
|
|
@@ -1531,6 +1531,60 @@ interface ClusteredVectorLayerSpec extends Omit<BaseLayerSpec, "tooltip"> {
|
|
|
1531
1531
|
* Union of all layer types
|
|
1532
1532
|
*/
|
|
1533
1533
|
type LayerSpec = VectorLayerSpec | GeoJsonLayerSpec | CustomPinsSpec | RasterLayerSpec | ClusteredVectorLayerSpec;
|
|
1534
|
+
/**
|
|
1535
|
+
* One row in the layers panel.
|
|
1536
|
+
*
|
|
1537
|
+
* Depth is whatever the config declares — a node with `children` is a container
|
|
1538
|
+
* the panel drills into, a node with `layerId` is a leaf controlling that layer.
|
|
1539
|
+
* The shape mirrors `StackNavItem`/`SideNavItem`, with `layerId` playing the
|
|
1540
|
+
* role `href` plays there.
|
|
1541
|
+
*
|
|
1542
|
+
* Kept separate from `LayerSpec` because containers have no geometry of their
|
|
1543
|
+
* own: "Grid infrastructure" is a heading over Transformers and Feeders, not a
|
|
1544
|
+
* layer that could be rendered.
|
|
1545
|
+
*/
|
|
1546
|
+
interface LayerTreeNode {
|
|
1547
|
+
/** Stable identifier, unique across the tree. */
|
|
1548
|
+
id: string;
|
|
1549
|
+
label: string;
|
|
1550
|
+
/** Leaf only: the `LayerSpec.id` this row shows and hides. */
|
|
1551
|
+
layerId?: string;
|
|
1552
|
+
/** Container only: nested rows, to any depth. */
|
|
1553
|
+
children?: LayerTreeNode[];
|
|
1554
|
+
/**
|
|
1555
|
+
* How many of this node's children may be on at once. Defaults to `multi`.
|
|
1556
|
+
*
|
|
1557
|
+
* `single` is for a layer whose children are alternatives rather than
|
|
1558
|
+
* additions — weather showing temperature *or* wind, never both. Those render
|
|
1559
|
+
* as radios, and choosing one turns its siblings off.
|
|
1560
|
+
*/
|
|
1561
|
+
selection?: LayerSelection;
|
|
1562
|
+
}
|
|
1563
|
+
/**
|
|
1564
|
+
* Children of a `single` node are mutually exclusive. `allowNone` lets the user
|
|
1565
|
+
* clear the choice from within the child pane; without it the only way back to
|
|
1566
|
+
* nothing-selected is the parent's own checkbox.
|
|
1567
|
+
*/
|
|
1568
|
+
type LayerSelection = {
|
|
1569
|
+
mode: "multi";
|
|
1570
|
+
} | {
|
|
1571
|
+
mode: "single";
|
|
1572
|
+
allowNone?: boolean;
|
|
1573
|
+
};
|
|
1574
|
+
/**
|
|
1575
|
+
* A row's checkbox state. Containers are `indeterminate` when only some of the
|
|
1576
|
+
* leaves beneath them are visible — impossible under `single` selection, where a
|
|
1577
|
+
* node is either off or showing exactly one child.
|
|
1578
|
+
*/
|
|
1579
|
+
type LayerCheckState = "checked" | "unchecked" | "indeterminate";
|
|
1580
|
+
/**
|
|
1581
|
+
* A visibility change as an explicit target state per layer.
|
|
1582
|
+
*
|
|
1583
|
+
* A map rather than `(ids, visible)` because single-select changes two things at
|
|
1584
|
+
* once — one layer on, its siblings off — and splitting that across two calls
|
|
1585
|
+
* would let the map render a moment with everything off.
|
|
1586
|
+
*/
|
|
1587
|
+
type LayerVisibilityPatch = Record<string, boolean>;
|
|
1534
1588
|
|
|
1535
1589
|
/**
|
|
1536
1590
|
* Unified map style configuration for all map components
|
|
@@ -1650,6 +1704,17 @@ interface LayersControl extends BaseControl {
|
|
|
1650
1704
|
* declaring `legend.variants`.
|
|
1651
1705
|
*/
|
|
1652
1706
|
onLayerVariantChange?: (layerId: string, variantId: string) => void;
|
|
1707
|
+
/**
|
|
1708
|
+
* Recursive layer tree. When provided, the control renders the drill-down
|
|
1709
|
+
* layers panel in place of the flat list.
|
|
1710
|
+
*/
|
|
1711
|
+
layerTree?: LayerTreeNode[];
|
|
1712
|
+
/**
|
|
1713
|
+
* Apply a visibility change from the panel, given as the target state per
|
|
1714
|
+
* affected layer. Container toggles and single-select choices both arrive as
|
|
1715
|
+
* one patch. Only used alongside `layerTree`.
|
|
1716
|
+
*/
|
|
1717
|
+
onVisibilityChange?: (patch: LayerVisibilityPatch) => void;
|
|
1653
1718
|
}
|
|
1654
1719
|
/**
|
|
1655
1720
|
* Search control configuration
|
|
@@ -4278,4 +4343,4 @@ declare const getContrastingTextColor: (backgroundColor: string) => string;
|
|
|
4278
4343
|
*/
|
|
4279
4344
|
declare const mapValuesToCategoricalColors: (values: (string | number)[]) => Record<string | number, string>;
|
|
4280
4345
|
|
|
4281
|
-
export { getContrastingTextColor as $, ABSENT_GRID_FIELDS as A, type BadgeProps as B, type ChartMargin as C, type StaticMapProps as D, ENTITY_CONFIG as E, type TooltipData as F, GRID_ELEMENT_TYPE_BY_ENTITY as G, HEADLINE_METRIC_BOUNDS as H, type InteractiveMapProps as I, type TooltipSeries as J, TopNav as K, Loader as L, type MapPoint as M, type TopNavProps as N, type YFormatType as O, archetypeFor as P, clearColorCache as Q, createCategoryColorMap as R, type SegmentOption as S, TextLink as T, createXScale as U, createYScale as V, defaultMargin as W, entityHasDetailPage as X, type YFormatSettings as Y, entityHasStatList as Z, entityShowsNow as _, type ActionItem as a, type
|
|
4346
|
+
export { getContrastingTextColor as $, ABSENT_GRID_FIELDS as A, type BadgeProps as B, type ChartMargin as C, type StaticMapProps as D, ENTITY_CONFIG as E, type TooltipData as F, GRID_ELEMENT_TYPE_BY_ENTITY as G, HEADLINE_METRIC_BOUNDS as H, type InteractiveMapProps as I, type TooltipSeries as J, TopNav as K, Loader as L, type MapPoint as M, type TopNavProps as N, type YFormatType as O, archetypeFor as P, clearColorCache as Q, createCategoryColorMap as R, type SegmentOption as S, TextLink as T, createXScale as U, createYScale as V, defaultMargin as W, entityHasDetailPage as X, type YFormatSettings as Y, entityHasStatList as Z, entityShowsNow as _, type ActionItem as a, type LayerStyle as a$, getDefaultChartColor as a0, getDefaultColors as a1, getEntityConfig as a2, getEntityIcon as a3, getEntityLabel as a4, getEntityStatList as a5, getResolvedColor as a6, getThemeCategoricalColors as a7, getYFormatSettings as a8, isLightColor as a9, type RasterLayerSpec as aA, type VectorLayerSpec as aB, type ClusteredVectorLayerSpec as aC, type ColorSpec as aD, ActionMenu as aE, AppShell as aF, Avatar as aG, Badge as aH, type BaseFormat as aI, ChartContext as aJ, CodeEditor as aK, type ComponentFormatOptions as aL, type CurrentUnit as aM, type CustomFormat as aN, DEFAULT_MAP_TYPE as aO, type DateFormatStyle as aP, type DistanceUnit as aQ, ENTITY_CATEGORY_CONFIG as aR, type EntityCategory as aS, type EntityCategoryConfig as aT, GRID_STATE_COLORS as aU, type GridStateColor as aV, InteractiveMap as aW, type InteractiveMapHandle as aX, type LayerCheckState as aY, type LayerFeature as aZ, type LayerSelection as a_, type FieldValue as aa, type BooleanFormat as ab, type FormattedValue as ac, type FieldFormat as ad, type CurrentFormat as ae, type DateFormat as af, type DistanceFormat as ag, type EnergyUnit as ah, type EnergyFormat as ai, type CurrencyFormat as aj, type NumberFormat as ak, type PhoneFormat as al, type PowerFormat as am, type FormatterFunction as an, type ResistanceFormat as ao, type TemperatureFormat as ap, type TemperatureUnitString as aq, type TemperatureUnit as ar, type TextFormat as as, type VoltageFormat as at, type DeviceState as au, type GridState as av, type ComponentFormatter as aw, type LayerSpec as ax, type CustomPinsSpec as ay, type GeoJsonLayerSpec as az, type ActionMenuProps as b, type LayerTreeNode as b0, type LayerVisibilityPatch as b1, MAP_TYPES as b2, type MapType as b3, Meter as b4, type MetricFormat as b5, type PercentageFormat as b6, type PowerUnit as b7, type RenderType as b8, type ResistanceUnit as b9, useChartContext as bA, useComponentFormatter as bB, SegmentedControl as ba, StackNav as bb, type StackNavGroup as bc, type StackNavItem as bd, type StackNavLinkComponentProps as be, type StackNavProps as bf, type StackNavRenderRow as bg, type StackNavRowRenderProps as bh, type StackNavTheme as bi, StaticMap as bj, type TextTransform as bk, type TextTruncatePosition as bl, UNVERIFIED_VOLTAGE_UNIT_ROWS as bm, type VoltageUnit as bn, type ZoomStops as bo, activeDeviceStates as bp, baselineFromPoint as bq, deviceStateLabels as br, deviceStateMetricFormats as bs, formatComponentValue as bt, getDeviceStateLabel as bu, getEntityCategory as bv, getGridStateLabel as bw, gridStateLabels as bx, isActiveState as by, mapValuesToCategoricalColors as bz, type AppShellProps as c, type AvatarProps as d, type BaseDataPoint as e, type CodeEditorProps as f, type CodeLanguage as g, type CodeTheme as h, type EntityArchetype as i, type EntityConfig as j, type EntityStateRule as k, type EntityType as l, GRID_STAT_LIST as m, type GridElementSourceType as n, type GridStatField as o, type GridStatFieldFormat as p, Heading as q, type HeadlineMetric as r, Logo as s, type MeterProps as t, type MetricSource as u, type SegmentedControlProps as v, type SerializableFieldFormat as w, SideNav as x, type SideNavItem as y, type SideNavProps as z };
|