@phila/layerboard 3.0.0-beta.23 → 3.0.0-beta.25

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.
@@ -56,6 +56,7 @@ export interface EsriRenderer {
56
56
  }
57
57
  export interface EsriSymbol {
58
58
  type: "esriSFS" | "esriSLS" | "esriSMS" | "esriPMS" | "esriPFS";
59
+ style?: string;
59
60
  color?: number[];
60
61
  size?: number;
61
62
  width?: number;
@@ -80,11 +81,18 @@ export interface EsriPopupInfo {
80
81
  }>;
81
82
  [key: string]: unknown;
82
83
  }
84
+ interface SplitLayer {
85
+ suffix: string;
86
+ where: string;
87
+ paint: Record<string, unknown>;
88
+ legend: LegendItem[];
89
+ }
83
90
  interface RendererResult {
84
91
  paint: Record<string, unknown>;
85
92
  legend: LegendItem[];
86
93
  geomType: "fill" | "line" | "circle";
87
94
  outlinePaint: Record<string, unknown> | null;
95
+ splitLayers?: SplitLayer[];
88
96
  }
89
97
  /**
90
98
  * Convert Esri RGBA array to CSS color string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phila/layerboard",
3
- "version": "3.0.0-beta.23",
3
+ "version": "3.0.0-beta.25",
4
4
  "type": "module",
5
5
  "description": "Vue 3 + MapLibre mapping framework for City of Philadelphia applications",
6
6
  "main": "./dist/index.js",