Skip to content

Commit

Permalink
Merge pull request #20 from esnet/normalize-option-format-terranova
Browse files Browse the repository at this point in the history
Normalize option format terranova
  • Loading branch information
jkafader-esnet authored Oct 24, 2023
2 parents 7055888 + b990506 commit e83c696
Show file tree
Hide file tree
Showing 37 changed files with 1,450 additions and 6,949 deletions.
2 changes: 1 addition & 1 deletion dist/MapPanel.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export declare class MapPanel extends Component<Props> {
resolvedLat: number;
resolvedLng: number;
};
resolveMapData(layer: string, replaceVariables: any): Promise<any>;
resolveMapData(layer: number, replaceVariables: any): Promise<any>;
updateMap(): void;
componentDidMount(): void;
componentDidUpdate(): void;
Expand Down
2 changes: 1 addition & 1 deletion dist/MapPanel.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/MapCanvas.component.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions dist/components/NetworkMap.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ export default class NetworkMap {
*/
constructor(mapCanvas: any);
mapCanvas: any;
g1: any;
g2: any;
g3: any;
groups: any[];
leafletMap: any;
svgLayer: any;
sideBar: any;
Expand Down
2 changes: 1 addition & 1 deletion dist/components/NetworkMap.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dist/components/lib/esmap.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export class EsMap {
mapCanvas: any;
leafletMap: any;
svg: any;
data: {};
mapLayers: {};
curves: {};
data: any[];
mapLayers: any[];
curves: any[];
lineGen: any;
editEdges: any;
editNodes: any;
Expand All @@ -23,6 +23,6 @@ export class EsMap {
editNodeMode(setting: any): any;
updateCoordinates(data: any, layerId: any): void;
update(): void;
addNetLayer(name: any, data: any): any;
addNetLayer(idx: any, data: any): any;
}
//# sourceMappingURL=esmap.d.ts.map
2 changes: 1 addition & 1 deletion dist/components/lib/esmap.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/components/lib/topologyTools.d.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export function sanitizeNode(node: any): {
name: any;
meta: any;
latLng: any;
coordinate: any;
};
export function sanitizeEdge(edge: any): {
name: any;
meta: any;
latLngs: any;
coordinates: any;
children: any;
};
export function sanitizeTopology(layerData: any): {
Expand Down
5 changes: 4 additions & 1 deletion dist/components/lib/utils.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
export function getUrlSearchParams(): {};
export function testJsonSchema(data: any): {}[];
export function testJsonSchema(data: any): (string | true)[] | (string | false)[];
export function resolvePath(object: any, path: any, defaultValue?: null): any;
export function setPath(object: any, path: any, newValue: any): void;
export const LAYER_LIMIT: 3;
//# sourceMappingURL=utils.d.ts.map
2 changes: 1 addition & 1 deletion dist/components/lib/utils.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e83c696

Please sign in to comment.