@smart-factor/gem-ui-map-component 0.0.1 → 0.0.2
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/README.md +0 -4
- package/dist/{MapButtons-Bsd6BBt9.js → MapButtons-CN9Sn2t7.js} +26352 -27006
- package/dist/api/queryKeys.d.ts +0 -22
- package/dist/components/Map/config.d.ts +1 -1
- package/dist/components/Map/types.d.ts +0 -6
- package/dist/components/MapButtons/index.js +1 -1
- package/dist/main.js +265 -291
- package/package.json +4 -13
package/dist/api/queryKeys.d.ts
CHANGED
|
@@ -1,28 +1,6 @@
|
|
|
1
1
|
declare const QueryKeys: {
|
|
2
|
-
applications: string;
|
|
3
|
-
attachments: string;
|
|
4
|
-
attachmentsTypes: string;
|
|
5
2
|
cases: string;
|
|
6
|
-
caseObjects: string;
|
|
7
|
-
caseTypes: string;
|
|
8
|
-
charges: string;
|
|
9
|
-
clients: string;
|
|
10
|
-
clientsOrganization: string;
|
|
11
|
-
clientsIndividual: string;
|
|
12
|
-
decisions: string;
|
|
13
|
-
numberingPatterns: string;
|
|
14
|
-
occupationPurposes: string;
|
|
15
|
-
occupationPurposesLayers: string;
|
|
16
|
-
inspectors: string;
|
|
17
|
-
cities: string;
|
|
18
|
-
streets: string;
|
|
19
|
-
streetNumbers: string;
|
|
20
|
-
address: string;
|
|
21
|
-
rates: string;
|
|
22
3
|
prgAddress: string;
|
|
23
|
-
documents: string;
|
|
24
|
-
documentTypes: string;
|
|
25
|
-
documentTemplates: string;
|
|
26
4
|
mapRepresentation: string;
|
|
27
5
|
plots: string;
|
|
28
6
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
interface SidebarConfig {
|
|
2
2
|
sidebarVisible: boolean;
|
|
3
|
-
items: Record<'
|
|
3
|
+
items: Record<'plotSearch' | 'addressSearch' | 'roadNavigation' | 'mapObjectSearch' | 'mapLayers', boolean>;
|
|
4
4
|
}
|
|
5
5
|
interface MapButtonsConfig {
|
|
6
6
|
mapButtonsVisible: boolean;
|
|
@@ -157,12 +157,6 @@ export interface GugikGeometryResponse {
|
|
|
157
157
|
};
|
|
158
158
|
};
|
|
159
159
|
}
|
|
160
|
-
export type RloParams = {
|
|
161
|
-
applicationId?: string;
|
|
162
|
-
caseId?: string;
|
|
163
|
-
caseObjectId?: string;
|
|
164
|
-
decisionId?: string;
|
|
165
|
-
};
|
|
166
160
|
export type MapLayer = {
|
|
167
161
|
name?: string;
|
|
168
162
|
symbol?: string;
|