@evergis/react 4.0.53 → 4.0.54
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/LICENSE +21 -21
- package/README.md +7 -7
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AddButton.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentItem.d.ts +10 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentLinkDialog.d.ts +7 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsGrid.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsHeader.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsList.d.ts +9 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/FileImagePreview.d.ts +8 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/components/ShowMoreButton.d.ts +6 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/constants.d.ts +21 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/index.d.ts +3 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/styled.d.ts +39 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/types.d.ts +27 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/useAttachmentContainer.d.ts +19 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/getFileType.d.ts +2 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/getFileTypeIcon.d.ts +2 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/getMimeTypeFromUrl.d.ts +2 -0
- package/dist/components/Dashboard/containers/AttachmentContainer/utils/parseAttachments.d.ts +11 -0
- package/dist/components/Dashboard/containers/EditContainer/components/EditAttachmentContainer.d.ts +3 -0
- package/dist/components/Dashboard/containers/index.d.ts +1 -0
- package/dist/components/Dashboard/containers/registry.d.ts +2 -0
- package/dist/components/Dashboard/hooks/useRenderContainer.d.ts +13 -0
- package/dist/components/Dashboard/hooks/useWidgetContext.d.ts +1 -0
- package/dist/components/Dashboard/types.d.ts +3 -0
- package/dist/components/Dashboard/utils/getDisplayTemplateNameFromAttribute.d.ts +2 -0
- package/dist/components/Dashboard/utils/index.d.ts +1 -0
- package/dist/contexts/DashboardContext/types.d.ts +2 -1
- package/dist/index.js +3257 -2408
- package/dist/index.js.map +1 -1
- package/dist/react.esm.js +3258 -2411
- package/dist/react.esm.js.map +1 -1
- package/package.json +5 -4
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Everpoint
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Everpoint
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# @evergis/react
|
|
2
|
-
|
|
3
|
-
В данном репозитории находятся специфичные (в отличии от `@evergis/uilib-gl`) для `Evergis Online`,
|
|
4
|
-
но в целом переиспользуемые на других проектах, построенных на Evergis API, React-компоненты.
|
|
5
|
-
|
|
6
|
-
***ВАЖНО!!!***: Разрабатываемые компоненты не должны иметь зависимостей
|
|
7
|
-
от системы поддержки мультиязычности `Evergis Online`!
|
|
1
|
+
# @evergis/react
|
|
2
|
+
|
|
3
|
+
В данном репозитории находятся специфичные (в отличии от `@evergis/uilib-gl`) для `Evergis Online`,
|
|
4
|
+
но в целом переиспользуемые на других проектах, построенных на Evergis API, React-компоненты.
|
|
5
|
+
|
|
6
|
+
***ВАЖНО!!!***: Разрабатываемые компоненты не должны иметь зависимостей
|
|
7
|
+
от системы поддержки мультиязычности `Evergis Online`!
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
export interface AddButtonProps {
|
|
3
|
+
multiple?: boolean;
|
|
4
|
+
accept?: string;
|
|
5
|
+
onSelectFiles: (files: File[]) => void;
|
|
6
|
+
onSelectFromCatalog?: VoidFunction;
|
|
7
|
+
onSelectFromLink?: VoidFunction;
|
|
8
|
+
}
|
|
9
|
+
export declare const AddButton: FC<AddButtonProps>;
|
package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentItem.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { Attachment, AttachmentViewMode } from '../types';
|
|
3
|
+
export interface AttachmentItemProps {
|
|
4
|
+
item: Attachment;
|
|
5
|
+
viewMode: AttachmentViewMode;
|
|
6
|
+
isEdit: boolean;
|
|
7
|
+
onPreview: (link: string) => void;
|
|
8
|
+
onDelete?: (link: string) => void;
|
|
9
|
+
}
|
|
10
|
+
export declare const AttachmentItem: FC<AttachmentItemProps>;
|
package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsGrid.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { Attachment } from '../types';
|
|
3
|
+
export interface AttachmentsGridProps {
|
|
4
|
+
items: Attachment[];
|
|
5
|
+
isEdit: boolean;
|
|
6
|
+
onPreview: (link: string) => void;
|
|
7
|
+
onDelete?: (link: string) => void;
|
|
8
|
+
}
|
|
9
|
+
export declare const AttachmentsGrid: FC<AttachmentsGridProps>;
|
package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsHeader.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
import { AttachmentViewMode } from '../types';
|
|
3
|
+
export interface AttachmentsHeaderProps {
|
|
4
|
+
alias?: ReactNode;
|
|
5
|
+
count: number;
|
|
6
|
+
viewMode: AttachmentViewMode;
|
|
7
|
+
onChangeViewMode: (viewMode: AttachmentViewMode) => void;
|
|
8
|
+
}
|
|
9
|
+
export declare const AttachmentsHeader: FC<AttachmentsHeaderProps>;
|
package/dist/components/Dashboard/containers/AttachmentContainer/components/AttachmentsList.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { Attachment } from '../types';
|
|
3
|
+
export interface AttachmentsListProps {
|
|
4
|
+
items: Attachment[];
|
|
5
|
+
isEdit: boolean;
|
|
6
|
+
onPreview: (link: string) => void;
|
|
7
|
+
onDelete?: (link: string) => void;
|
|
8
|
+
}
|
|
9
|
+
export declare const AttachmentsList: FC<AttachmentsListProps>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const GRID_TILE_SIZE = "4.5rem";
|
|
2
|
+
export declare const LIST_ICON_SIZE = "1.5rem";
|
|
3
|
+
export declare const JPG_MIME_TYPE = "image/jpeg";
|
|
4
|
+
export declare const PNG_MIME_TYPE = "image/png";
|
|
5
|
+
export declare const IMAGE_MIME_TYPES: string[];
|
|
6
|
+
export declare const XLSX_MIME_TYPES: string[];
|
|
7
|
+
export declare const PDF_MIME_TYPE = "application/pdf";
|
|
8
|
+
export declare const DOCX_MIME_TYPES: string[];
|
|
9
|
+
export declare const CSV_MIME_TYPE = "text/csv";
|
|
10
|
+
export declare const JSON_MIME_TYPE = "application/json";
|
|
11
|
+
export declare const TXT_MIME_TYPE = "text/plain";
|
|
12
|
+
export declare const PPTX_MIME_TYPES: string[];
|
|
13
|
+
export declare const SHP_MIME_TYPE = "application/octet-stream";
|
|
14
|
+
export declare const KML_MIME_TYPE = "application/octet-stream";
|
|
15
|
+
export declare const ZIP_MIME_TYPE = "application/zip";
|
|
16
|
+
export declare const PYTHON_MIME_TYPES: string[];
|
|
17
|
+
export declare enum AddAttachmentSource {
|
|
18
|
+
Pc = "pc",
|
|
19
|
+
Catalog = "catalog",
|
|
20
|
+
Link = "link"
|
|
21
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { FileType } from './types';
|
|
2
|
+
export declare const AttachmentsContainer: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const AttachmentsHeaderRow: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
4
|
+
export declare const AttachmentsLabel: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
5
|
+
export declare const AttachmentsViewControls: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
6
|
+
export declare const AttachmentsCountChip: import('styled-components').StyledComponent<import('react').FC<import('@evergis/uilib-gl').IChipProps>, any, {}, never>;
|
|
7
|
+
export declare const AttachmentsContent: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
8
|
+
export declare const GridListWrapper: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
9
|
+
export declare const GridActions: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
10
|
+
export declare const GridItemOverlay: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
11
|
+
export declare const GridItemContainer: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
12
|
+
export declare const GridIcon: import('styled-components').StyledComponent<"div", any, {
|
|
13
|
+
fileType?: FileType;
|
|
14
|
+
}, never>;
|
|
15
|
+
export declare const ListIcon: import('styled-components').StyledComponent<"div", any, {
|
|
16
|
+
fileType?: FileType;
|
|
17
|
+
}, never>;
|
|
18
|
+
export declare const GridImagePreview: import('styled-components').StyledComponent<"img", any, {
|
|
19
|
+
size?: string;
|
|
20
|
+
isLoading?: boolean;
|
|
21
|
+
borderRadius?: string;
|
|
22
|
+
}, never>;
|
|
23
|
+
export declare const ImagePreviewContainer: import('styled-components').StyledComponent<"div", any, {
|
|
24
|
+
size?: string;
|
|
25
|
+
}, never>;
|
|
26
|
+
export declare const ImagePreviewLoaderContainer: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
27
|
+
export declare const TooltipDate: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
28
|
+
export declare const ListContainer: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
29
|
+
export declare const ListItemMeta: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
30
|
+
export declare const ListItemDescription: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
31
|
+
export declare const ListItemName: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
32
|
+
export declare const ListItemDate: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
33
|
+
export declare const ListActions: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
34
|
+
export declare const ListItemContainer: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
35
|
+
export declare const ShowMoreButton: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
36
|
+
export declare const AddButtonContainer: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
37
|
+
export declare const AddButtonRow: import('styled-components').StyledComponent<import('react').FC<import('@evergis/uilib-gl').IIconButtonProps>, any, {}, never>;
|
|
38
|
+
export declare const HiddenFileInput: import('styled-components').StyledComponent<"input", any, {}, never>;
|
|
39
|
+
export declare const LinkDialogContent: import('styled-components').StyledComponent<"div", any, {}, never>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare enum FileType {
|
|
2
|
+
UNKNOWN = 0,
|
|
3
|
+
XLSX = 1,
|
|
4
|
+
PDF = 2,
|
|
5
|
+
CSV = 3,
|
|
6
|
+
DOCX = 4,
|
|
7
|
+
IMAGE = 5,
|
|
8
|
+
TXT = 6,
|
|
9
|
+
JSON = 7,
|
|
10
|
+
KML = 8,
|
|
11
|
+
PPTX = 9,
|
|
12
|
+
SHP = 10,
|
|
13
|
+
ZIP = 11,
|
|
14
|
+
JPEG = 12,
|
|
15
|
+
JPG = 13,
|
|
16
|
+
PNG = 14,
|
|
17
|
+
PYTHON = 15
|
|
18
|
+
}
|
|
19
|
+
export declare const IMAGE_FILE_TYPES: FileType[];
|
|
20
|
+
export type AttachmentViewMode = "grid" | "list";
|
|
21
|
+
export interface Attachment {
|
|
22
|
+
link: string;
|
|
23
|
+
name: string;
|
|
24
|
+
mimeType: string;
|
|
25
|
+
date?: string;
|
|
26
|
+
isExternal: boolean;
|
|
27
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ConfigContainerChild, WidgetType } from '../../types';
|
|
2
|
+
import { Attachment, AttachmentViewMode } from './types';
|
|
3
|
+
export interface UseAttachmentContainerProps {
|
|
4
|
+
type?: WidgetType;
|
|
5
|
+
elementConfig?: ConfigContainerChild;
|
|
6
|
+
valueOverride?: unknown;
|
|
7
|
+
}
|
|
8
|
+
export interface UseAttachmentContainerResult {
|
|
9
|
+
items: Attachment[];
|
|
10
|
+
visibleItems: Attachment[];
|
|
11
|
+
hiddenCount: number;
|
|
12
|
+
hasMore: boolean;
|
|
13
|
+
showMore: boolean;
|
|
14
|
+
setShowMore: (value: boolean) => void;
|
|
15
|
+
viewMode: AttachmentViewMode;
|
|
16
|
+
setViewMode: (mode: AttachmentViewMode) => void;
|
|
17
|
+
attributeName?: string;
|
|
18
|
+
}
|
|
19
|
+
export declare const useAttachmentContainer: ({ type, elementConfig, valueOverride, }: UseAttachmentContainerProps) => UseAttachmentContainerResult;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FeatureDc } from '@evergis/api';
|
|
2
|
+
import { Attachment } from '../types';
|
|
3
|
+
export declare const parseAttachments: (raw: unknown) => Attachment[];
|
|
4
|
+
interface DataSourceMapping {
|
|
5
|
+
attributeLink?: string;
|
|
6
|
+
attributeName?: string;
|
|
7
|
+
attributeMime?: string;
|
|
8
|
+
attributeDate?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const attachmentsFromFeatures: (features: FeatureDc[] | undefined, mapping?: DataSourceMapping) => Attachment[];
|
|
11
|
+
export {};
|
|
@@ -37,6 +37,8 @@ export declare const containerComponents: {
|
|
|
37
37
|
readonly EditChips: import('react').FC<import('../types').ContainerProps>;
|
|
38
38
|
readonly EditCheckbox: import('react').FC<import('../types').ContainerProps>;
|
|
39
39
|
readonly EditDate: import('react').FC<import('../types').ContainerProps>;
|
|
40
|
+
readonly EditAttachment: import('react').FC<import('../types').ContainerProps>;
|
|
41
|
+
readonly Attachment: import('react').FC<import('../types').ContainerProps>;
|
|
40
42
|
readonly EditGroup: import('react').FC<import('../types').ContainerProps>;
|
|
41
43
|
readonly default: import('react').FC<import('../types').ContainerProps>;
|
|
42
44
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { useRenderContainerItem } from './useRenderContainerItem';
|
|
3
|
+
import { ContainerProps } from '../types';
|
|
4
|
+
type RenderContainerItem = ReturnType<ReturnType<typeof useRenderContainerItem>>;
|
|
5
|
+
type RenderBody = (item: RenderContainerItem, attribute?: string) => ReactNode;
|
|
6
|
+
type UseRenderContainerProps = Pick<ContainerProps, "elementConfig" | "type" | "renderElement"> & {
|
|
7
|
+
renderBody: RenderBody;
|
|
8
|
+
};
|
|
9
|
+
export declare const useRenderContainer: ({ elementConfig, type, renderElement, renderBody, }: UseRenderContainerProps) => {
|
|
10
|
+
renderContainer: (attribute?: string) => string | number | boolean | Iterable<ReactNode> | import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
attributesToRender: string[];
|
|
12
|
+
};
|
|
13
|
+
export {};
|
|
@@ -22,6 +22,7 @@ export declare const useWidgetContext: (type?: WidgetType) => {
|
|
|
22
22
|
ProjectPanelMenu?: import('react').FC;
|
|
23
23
|
ProjectPagesMenu?: import('react').FC;
|
|
24
24
|
};
|
|
25
|
+
selectAttachmentsFromCatalog: (onApply: (resources: import('@evergis/api').CatalogResourceDc[]) => void) => void;
|
|
25
26
|
config: import('../types').ConfigContainer;
|
|
26
27
|
isEditing: boolean;
|
|
27
28
|
isLoading: boolean;
|
|
@@ -174,6 +174,7 @@ export interface ConfigOptions {
|
|
|
174
174
|
url?: string;
|
|
175
175
|
maxZoomTo?: number;
|
|
176
176
|
customFeatureSelect?: CustomFeatureSelect;
|
|
177
|
+
viewMode?: "grid" | "list";
|
|
177
178
|
}
|
|
178
179
|
export interface ConfigDataSource {
|
|
179
180
|
name: string;
|
|
@@ -337,6 +338,8 @@ export declare enum ContainerTemplate {
|
|
|
337
338
|
EditChips = "EditChips",
|
|
338
339
|
EditCheckbox = "EditCheckbox",
|
|
339
340
|
EditDate = "EditDate",
|
|
341
|
+
EditAttachment = "EditAttachment",
|
|
342
|
+
Attachment = "Attachment",
|
|
340
343
|
Divider = "Divider"
|
|
341
344
|
}
|
|
342
345
|
export declare enum HeaderTemplate {
|
|
@@ -43,6 +43,7 @@ export * from './getSelectedFilterValue';
|
|
|
43
43
|
export * from './getSlideshowImages';
|
|
44
44
|
export * from './getSvgUrl';
|
|
45
45
|
export * from './getTemplateNameFromAttribute';
|
|
46
|
+
export * from './getDisplayTemplateNameFromAttribute';
|
|
46
47
|
export * from './getTotalFromAttributes';
|
|
47
48
|
export * from './getTotalFromRelatedFeatures';
|
|
48
49
|
export * from './getRootElementId';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FC, PropsWithChildren } from 'react';
|
|
2
|
-
import { ExtendedProjectInfoDc, QueryLayerServiceInfoDc } from '@evergis/api';
|
|
2
|
+
import { CatalogResourceDc, ExtendedProjectInfoDc, QueryLayerServiceInfoDc } from '@evergis/api';
|
|
3
3
|
import { ConfigContainer, DashboardLayerPayload, DashboardState, LayerItemProps, SelectedFilters, WidgetDataSource } from '../../components';
|
|
4
4
|
export type DashboardContextProps = PropsWithChildren<{
|
|
5
5
|
config?: ConfigContainer;
|
|
@@ -21,6 +21,7 @@ export type DashboardContextProps = PropsWithChildren<{
|
|
|
21
21
|
ProjectPanelMenu?: FC;
|
|
22
22
|
ProjectPagesMenu?: FC;
|
|
23
23
|
};
|
|
24
|
+
selectAttachmentsFromCatalog?: (onApply: (resources: CatalogResourceDc[]) => void) => void;
|
|
24
25
|
toggleLayersVisibility: VoidFunction;
|
|
25
26
|
visibleLayers: boolean;
|
|
26
27
|
changeFilters?: (filters: SelectedFilters, resetFilters?: string[]) => void;
|