@redus/georedus-ui 0.22.2 → 0.23.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.
@@ -92,9 +92,9 @@ export function gtfs_lines({ style, ...viewSpec }: {
92
92
  context?: any;
93
93
  } | null;
94
94
  id: any;
95
- metodology: any;
96
95
  label: any;
97
96
  path: any;
97
+ metodology: any;
98
98
  sourceLabel: any;
99
99
  shortDescription: any;
100
100
  };
@@ -139,9 +139,9 @@ export function gtfs_stops({ style, ...viewSpec }: {
139
139
  context?: any;
140
140
  } | null;
141
141
  id: any;
142
- metodology: any;
143
142
  label: any;
144
143
  path: any;
144
+ metodology: any;
145
145
  sourceLabel: any;
146
146
  shortDescription: any;
147
147
  };
@@ -105,9 +105,9 @@ export function gtfs_travel_time_hex({ style, ...viewSpec }: {
105
105
  };
106
106
  };
107
107
  id: any;
108
- metodology: any;
109
108
  label: any;
110
109
  path: any;
110
+ metodology: any;
111
111
  sourceLabel: any;
112
112
  shortDescription: any;
113
113
  };
@@ -26,9 +26,9 @@ export function raster_categorical({ style, ...viewSpec }: {
26
26
  };
27
27
  };
28
28
  id: any;
29
- metodology: any;
30
29
  label: any;
31
30
  path: any;
31
+ metodology: any;
32
32
  sourceLabel: any;
33
33
  shortDescription: any;
34
34
  };
@@ -64,9 +64,9 @@ export function vector_heatmap({ style, ...viewSpec }: {
64
64
  context?: any;
65
65
  } | null;
66
66
  id: any;
67
- metodology: any;
68
67
  label: any;
69
68
  path: any;
69
+ metodology: any;
70
70
  sourceLabel: any;
71
71
  shortDescription: any;
72
72
  };
@@ -80,9 +80,9 @@ export function vector_line_categorical({ style, ...viewSpec }: {
80
80
  context?: any;
81
81
  } | null;
82
82
  id: any;
83
- metodology: any;
84
83
  label: any;
85
84
  path: any;
85
+ metodology: any;
86
86
  sourceLabel: any;
87
87
  shortDescription: any;
88
88
  };
@@ -68,9 +68,9 @@ export function vector_line_single({ style, ...viewSpec }: {
68
68
  context?: any;
69
69
  };
70
70
  id: any;
71
- metodology: any;
72
71
  label: any;
73
72
  path: any;
73
+ metodology: any;
74
74
  sourceLabel: any;
75
75
  shortDescription: any;
76
76
  };
@@ -92,9 +92,9 @@ export function vector_point_categorical({ style, ...viewSpec }: {
92
92
  context?: any;
93
93
  };
94
94
  id: any;
95
- metodology: any;
96
95
  label: any;
97
96
  path: any;
97
+ metodology: any;
98
98
  sourceLabel: any;
99
99
  shortDescription: any;
100
100
  };
@@ -89,9 +89,9 @@ export function vector_point_continuous({ style, ...viewSpec }: {
89
89
  context?: any;
90
90
  };
91
91
  id: any;
92
- metodology: any;
93
92
  label: any;
94
93
  path: any;
94
+ metodology: any;
95
95
  sourceLabel: any;
96
96
  shortDescription: any;
97
97
  };
@@ -88,9 +88,9 @@ export function vector_point_single({ style, ...viewSpec }: {
88
88
  context?: any;
89
89
  };
90
90
  id: any;
91
- metodology: any;
92
91
  label: any;
93
92
  path: any;
93
+ metodology: any;
94
94
  sourceLabel: any;
95
95
  shortDescription: any;
96
96
  };
@@ -125,9 +125,9 @@ export function vector_polygon_categorical({ style, ...viewSpec }: {
125
125
  context?: any;
126
126
  };
127
127
  id: any;
128
- metodology: any;
129
128
  label: any;
130
129
  path: any;
130
+ metodology: any;
131
131
  sourceLabel: any;
132
132
  shortDescription: any;
133
133
  };
@@ -124,9 +124,9 @@ export function vector_polygon_continuous({ style, ...viewSpec }: {
124
124
  context?: any;
125
125
  };
126
126
  id: any;
127
- metodology: any;
128
127
  label: any;
129
128
  path: any;
129
+ metodology: any;
130
130
  sourceLabel: any;
131
131
  shortDescription: any;
132
132
  };
@@ -113,9 +113,9 @@ export function vector_polygon_single({ style, ...viewSpec }: {
113
113
  context?: any;
114
114
  };
115
115
  id: any;
116
- metodology: any;
117
116
  label: any;
118
117
  path: any;
118
+ metodology: any;
119
119
  sourceLabel: any;
120
120
  shortDescription: any;
121
121
  };
@@ -5,8 +5,8 @@ export declare function resolveConfSchema(viewSpec: ViewSpec, partialView: Parti
5
5
  export declare const resolveMetadata: (viewSpec: ViewSpec, partialViewAtStage: Pick<ResolvedView, "conf">, viewResolutionContextBase: ViewResolutionContextBase) => Promise<import("../types").ViewMetadata>;
6
6
  export declare const resolveSources: (viewSpec: ViewSpec, partialViewAtStage: Pick<ResolvedView, "metadata" | "conf">, viewResolutionContextBase: ViewResolutionContextBase) => Promise<Record<string, any>>;
7
7
  export declare const resolveLayers: (viewSpec: ViewSpec, partialViewAtStage: Pick<ResolvedView, "metadata" | "sources" | "conf">, viewResolutionContextBase: ViewResolutionContextBase) => Promise<Record<string, import("@orioro/react-maplibre-util").MapViewLayer>>;
8
- export declare const resolveControls: (viewSpec: ViewSpec, partialViewAtStage: Pick<ResolvedView, "layers" | "metadata" | "sources" | "conf">, viewResolutionContextBase: ViewResolutionContextBase) => Promise<import("../types").ViewControls>;
9
- export declare const resolveDownload: (viewSpec: ViewSpec, partialViewAtStage: Pick<ResolvedView, "layers" | "metadata" | "sources" | "conf">, viewResolutionContextBase: ViewResolutionContextBase) => Promise<import("../types").ViewDownload>;
8
+ export declare const resolveControls: (viewSpec: ViewSpec, partialViewAtStage: Pick<ResolvedView, "metadata" | "layers" | "sources" | "conf">, viewResolutionContextBase: ViewResolutionContextBase) => Promise<import("../types").ViewControls>;
9
+ export declare const resolveDownload: (viewSpec: ViewSpec, partialViewAtStage: Pick<ResolvedView, "metadata" | "layers" | "sources" | "conf">, viewResolutionContextBase: ViewResolutionContextBase) => Promise<import("../types").ViewDownload>;
10
10
  export declare function resolveView(viewSpec: ViewSpec, viewConf: ResolvedViewConf, viewResolutionContextBase: ViewResolutionContextBase): Promise<{
11
11
  id: string;
12
12
  keywords: string | string[] | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redus/georedus-ui",
3
- "version": "0.22.2",
3
+ "version": "0.23.0",
4
4
  "packageManager": "yarn@4.0.2",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",