generic-ui-core 1.5.1-rc4 → 1.5.1-rc6

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +6 -0
  2. package/dist/main.js +1240 -10166
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -108,6 +108,12 @@ declare module 'generic-ui-core' {
108
108
  export function absOlsTermLabel(val: string): string;
109
109
  export function showProperties(dataObj: any, layers: any): any[];
110
110
  export function orgLayerObject(layers?: any[]): Record<string, any>;
111
+ export function isLayerVisible(
112
+ layer: {
113
+ cond_fields?: Array<any>;
114
+ },
115
+ layers: Record<string, any>
116
+ ): boolean;
111
117
 
112
118
  // Unit functions
113
119
  export function getUnitSystem(externalUnits?: Record<string, any>): any[];