generic-ui-core 1.5.1-rc4 → 1.5.1-rc5
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.d.ts +6 -0
- package/dist/main.js +152 -152
- 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[];
|