@phila/layerboard 3.0.0 → 3.1.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.
@@ -61,6 +61,8 @@ export interface LayerConfig {
61
61
  displayOptions?: LayerDisplayOptions;
62
62
  /** For split layers: the base layer ID that controls visibility */
63
63
  parentId?: string;
64
+ /** Controls stacking order on the map within same geometry type (higher = on top) */
65
+ zOrder?: number;
64
66
  }
65
67
  /**
66
68
  * Override configuration for popup behavior
@@ -83,6 +85,8 @@ export interface LayerStyleOverride {
83
85
  legend?: LegendItem[];
84
86
  /** Override the layer type (fill, line, circle) */
85
87
  type?: "fill" | "line" | "circle";
88
+ /** Controls stacking order on the map within same geometry type (higher = on top) */
89
+ zOrder?: number;
86
90
  }
87
91
  export interface CirclePaint {
88
92
  "circle-radius": number | unknown[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phila/layerboard",
3
- "version": "3.0.0",
3
+ "version": "3.1.0",
4
4
  "type": "module",
5
5
  "description": "Vue 3 + MapLibre mapping framework for City of Philadelphia applications",
6
6
  "main": "./dist/index.js",
@@ -34,10 +34,11 @@
34
34
  "vue": "^3.5.0"
35
35
  },
36
36
  "dependencies": {
37
- "@phila/phila-ui-core": "2.3.2",
37
+ "@phila/phila-ui-core": "2.4.0-beta.2",
38
38
  "@phila/phila-ui-link": "1.0.3",
39
- "@phila/phila-ui-map-core": "1.0.0",
40
- "@phila/phila-ui-text-field": "1.1.2"
39
+ "@phila/phila-ui-map-core": "1.1.0-beta.13",
40
+ "@phila/phila-ui-search": "1.2.0-beta.4",
41
+ "@phila/phila-ui-text-field": "1.1.3-beta.4"
41
42
  },
42
43
  "devDependencies": {
43
44
  "@eslint/js": "^9.39.2",