@opengeoweb/layer-select 9.0.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.
Files changed (95) hide show
  1. package/README.md +7 -0
  2. package/index.esm.d.ts +1 -0
  3. package/index.esm.js +44775 -0
  4. package/jest.config.d.ts +0 -0
  5. package/package.json +13 -0
  6. package/src/index.d.ts +1 -0
  7. package/src/lib/components/KeywordFilterButton/KeywordFilterButtonConnect.d.ts +9 -0
  8. package/src/lib/components/KeywordFilterButton/KeywordFilterButtonConnect.spec.d.ts +1 -0
  9. package/src/lib/components/KeywordFilterResults/KeywordFilterResults.d.ts +14 -0
  10. package/src/lib/components/KeywordFilterResults/KeywordFilterResults.spec.d.ts +1 -0
  11. package/src/lib/components/KeywordFilterResults/KeywordFilterResults.stories.d.ts +25 -0
  12. package/src/lib/components/KeywordFilterResults/KeywordFilterResultsConnect.d.ts +8 -0
  13. package/src/lib/components/KeywordFilterResults/KeywordFilterResultsListItem.d.ts +8 -0
  14. package/src/lib/components/KeywordFilterResults/KeywordFilterResultsListItem.spec.d.ts +1 -0
  15. package/src/lib/components/KeywordFilterResults/KeywordFilterResultsListItemConnect.d.ts +6 -0
  16. package/src/lib/components/KeywordFilterResults/KeywordFilterResultsListItemConnect.spec.d.ts +1 -0
  17. package/src/lib/components/KeywordFilterResults/KeywordFilterSelectAllSwitchConnect.d.ts +2 -0
  18. package/src/lib/components/KeywordFilterResults/KeywordFilterSelectAllSwitchConnect.spec.d.ts +1 -0
  19. package/src/lib/components/KeywordFilterResults/index.d.ts +5 -0
  20. package/src/lib/components/KeywordFilterResults/keywordFilterResultsConnect.spec.d.ts +1 -0
  21. package/src/lib/components/LayerInfo/LayerInfoButton.d.ts +8 -0
  22. package/src/lib/components/LayerInfo/LayerInfoButton.spec.d.ts +1 -0
  23. package/src/lib/components/LayerInfo/LayerInfoButtonConnect.d.ts +10 -0
  24. package/src/lib/components/LayerInfo/LayerInfoButtonConnect.spec.d.ts +1 -0
  25. package/src/lib/components/LayerInfo/LayerInfoDialog.d.ts +13 -0
  26. package/src/lib/components/LayerInfo/LayerInfoDialog.spec.d.ts +1 -0
  27. package/src/lib/components/LayerInfo/LayerInfoDialog.stories.d.ts +25 -0
  28. package/src/lib/components/LayerInfo/LayerInfoDialogConnect.d.ts +2 -0
  29. package/src/lib/components/LayerInfo/LayerInfoLegend.d.ts +9 -0
  30. package/src/lib/components/LayerInfo/LayerInfoLegend.spec.d.ts +1 -0
  31. package/src/lib/components/LayerInfo/LayerInfoList.d.ts +11 -0
  32. package/src/lib/components/LayerInfo/LayerInfoText.d.ts +15 -0
  33. package/src/lib/components/LayerInfo/LayerInfoUtils.d.ts +10 -0
  34. package/src/lib/components/LayerInfo/LayerInfoUtils.spec.d.ts +1 -0
  35. package/src/lib/components/LayerInfo/index.d.ts +3 -0
  36. package/src/lib/components/LayerList/LayerAddRemoveButton.d.ts +20 -0
  37. package/src/lib/components/LayerList/LayerAddRemoveButton.spec.d.ts +1 -0
  38. package/src/lib/components/LayerList/LayerList.d.ts +25 -0
  39. package/src/lib/components/LayerList/LayerList.spec.d.ts +3 -0
  40. package/src/lib/components/LayerList/LayerListConnect.d.ts +9 -0
  41. package/src/lib/components/LayerList/LayerListConnect.spec.d.ts +1 -0
  42. package/src/lib/components/LayerList/LayerListDimensions.d.ts +7 -0
  43. package/src/lib/components/LayerList/LayerListRow.d.ts +23 -0
  44. package/src/lib/components/LayerSelect/LayerSelect.d.ts +20 -0
  45. package/src/lib/components/LayerSelect/LayerSelect.spec.d.ts +1 -0
  46. package/src/lib/components/LayerSelect/LayerSelect.stories.d.ts +33 -0
  47. package/src/lib/components/LayerSelect/LayerSelectButtonConnect.d.ts +11 -0
  48. package/src/lib/components/LayerSelect/LayerSelectButtonConnect.spec.d.ts +1 -0
  49. package/src/lib/components/LayerSelect/LayerSelectConnect.d.ts +16 -0
  50. package/src/lib/components/LayerSelect/LayerSelectConnect.spec.d.ts +1 -0
  51. package/src/lib/components/LayerSelect/LayerSelectUtils.d.ts +77 -0
  52. package/src/lib/components/LayerSelect/LayerSelectUtils.spec.d.ts +1 -0
  53. package/src/lib/components/LayerSelect/index.d.ts +2 -0
  54. package/src/lib/components/SearchField/SearchFieldConnect.d.ts +2 -0
  55. package/src/lib/components/SearchField/SearchFieldConnect.spec.d.ts +1 -0
  56. package/src/lib/components/ServiceList/ServiceChip.d.ts +11 -0
  57. package/src/lib/components/ServiceList/ServiceChip.spec.d.ts +1 -0
  58. package/src/lib/components/ServiceList/ServiceChipConnect.d.ts +10 -0
  59. package/src/lib/components/ServiceList/ServiceList.d.ts +8 -0
  60. package/src/lib/components/ServiceList/ServiceListConnect.d.ts +6 -0
  61. package/src/lib/components/ServiceList/ServiceListConnect.spec.d.ts +1 -0
  62. package/src/lib/components/ServiceOptionsButton/ServiceOptionsButton.d.ts +6 -0
  63. package/src/lib/components/ServiceOptionsButton/ServiceOptionsButton.spec.d.ts +1 -0
  64. package/src/lib/components/ServiceOptionsButton/ServiceOptionsButton.stories.d.ts +7 -0
  65. package/src/lib/components/ServiceOptionsDialog/ServiceOptionsDialog.d.ts +19 -0
  66. package/src/lib/components/ServiceOptionsDialog/ServiceOptionsDialog.spec.d.ts +1 -0
  67. package/src/lib/components/ServiceOptionsDialog/ServiceOptionsDialog.stories.d.ts +25 -0
  68. package/src/lib/components/ServiceOptionsDialog/ServiceOptionsDialogConnect.d.ts +8 -0
  69. package/src/lib/components/ServiceOptionsDialog/ServiceOptionsDialogConnect.spec.d.ts +1 -0
  70. package/src/lib/components/ServicePopup/ServicePopup.d.ts +23 -0
  71. package/src/lib/components/ServicePopup/ServicePopup.spec.d.ts +1 -0
  72. package/src/lib/components/ServicePopup/ServicePopup.stories.d.ts +43 -0
  73. package/src/lib/components/ServicePopup/ServicePopupConnect.d.ts +2 -0
  74. package/src/lib/components/ServicePopup/ServicePopupConnect.spec.d.ts +1 -0
  75. package/src/lib/components/ServicePopup/ServicePopupConnect.stories.d.ts +6 -0
  76. package/src/lib/components/ServicePopup/ServicePopupDialogConnect.d.ts +11 -0
  77. package/src/lib/components/ServicePopup/utils.d.ts +11 -0
  78. package/src/lib/components/ServicePopup/utils.spec.d.ts +1 -0
  79. package/src/lib/components/index.d.ts +2 -0
  80. package/src/lib/components/testUtils/TestThemeStoreProvider.d.ts +6 -0
  81. package/src/lib/index.d.ts +2 -0
  82. package/src/lib/store/config.d.ts +4 -0
  83. package/src/lib/store/index.d.ts +7 -0
  84. package/src/lib/store/localStorage.d.ts +3 -0
  85. package/src/lib/store/localStorage.spec.d.ts +1 -0
  86. package/src/lib/store/reducer.d.ts +28 -0
  87. package/src/lib/store/reducer.spec.d.ts +1 -0
  88. package/src/lib/store/sagas.d.ts +8 -0
  89. package/src/lib/store/sagas.spec.d.ts +1 -0
  90. package/src/lib/store/selectors.d.ts +116 -0
  91. package/src/lib/store/selectors.spec.d.ts +1 -0
  92. package/src/lib/store/types.d.ts +89 -0
  93. package/src/lib/store/utils.d.ts +7 -0
  94. package/src/lib/store/utils.spec.d.ts +1 -0
  95. package/src/lib/storyshots/Storyshots.spec.d.ts +1 -0
File without changes
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@opengeoweb/layer-select",
3
+ "version": "9.0.0",
4
+ "description": "GeoWeb layer select library for the opengeoweb project",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git@gitlab.com:opengeoweb/opengeoweb.git"
9
+ },
10
+ "module": "./index.esm.js",
11
+ "type": "module",
12
+ "main": "./index.esm.js"
13
+ }
package/src/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './lib';
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import { uiTypes } from '@opengeoweb/store';
3
+ interface KeywordFilterButtonConnectProps {
4
+ mapId: string;
5
+ source?: uiTypes.Source;
6
+ isMultiMap?: boolean;
7
+ }
8
+ export declare const KeywordFilterButtonConnect: React.FC<KeywordFilterButtonConnectProps>;
9
+ export {};
@@ -0,0 +1,14 @@
1
+ import * as React from 'react';
2
+ import { uiTypes } from '@opengeoweb/store';
3
+ import { layerSelectTypes } from '../../store';
4
+ export declare const DIALOG_TITLE = "Groups & Keywords";
5
+ export interface KeywordFilterResultsProps {
6
+ bounds?: string;
7
+ onClose?: () => void;
8
+ onMouseDown?: () => void;
9
+ isOpen: boolean;
10
+ order?: number;
11
+ source?: uiTypes.Source;
12
+ filters: layerSelectTypes.Filter[];
13
+ }
14
+ export declare const KeywordFilterResults: React.FC<KeywordFilterResultsProps>;
@@ -0,0 +1,25 @@
1
+ import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
6
+ export declare const KeywordFilterResultsLight: {
7
+ (): React.ReactElement;
8
+ storyName: string;
9
+ parameters: {
10
+ zeplinLink: {
11
+ name: string;
12
+ link: string;
13
+ }[];
14
+ };
15
+ };
16
+ export declare const KeywordFilterResultsDark: {
17
+ (): React.ReactElement;
18
+ storyName: string;
19
+ parameters: {
20
+ zeplinLink: {
21
+ name: string;
22
+ link: string;
23
+ }[];
24
+ };
25
+ };
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ interface KeywordFilterResultsConnectProps {
3
+ mapId?: string;
4
+ bounds?: string;
5
+ isMultiMap?: boolean;
6
+ }
7
+ export declare const KeywordFilterResultsConnect: React.FC<KeywordFilterResultsConnectProps>;
8
+ export {};
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { layerSelectTypes } from '../../store';
3
+ export interface FilterListItemProps {
4
+ filter: layerSelectTypes.Filter;
5
+ toggleFilter: (filterIds: string[]) => void;
6
+ enableOnlyOneFilter: (filterId: string) => void;
7
+ }
8
+ export declare const FilterListItem: React.FC<FilterListItemProps>;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { layerSelectTypes } from '../../store';
3
+ export interface KeywordFilterResultsListItemConnectProps {
4
+ filter: layerSelectTypes.Filter;
5
+ }
6
+ export declare const KeywordFilterResultsListItemConnect: React.FC<KeywordFilterResultsListItemConnectProps>;
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare const KeywordFilterSelectAllSwitchConnect: React.FC;
@@ -0,0 +1,5 @@
1
+ export * from './KeywordFilterResults';
2
+ export * from './KeywordFilterResultsConnect';
3
+ export * from './KeywordFilterResultsListItem';
4
+ export * from './KeywordFilterResultsListItemConnect';
5
+ export * from './KeywordFilterSelectAllSwitchConnect';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface LayerInfoButtonProps {
3
+ isOpenInStore?: boolean;
4
+ isActive?: boolean;
5
+ onClick?: () => void;
6
+ }
7
+ export declare const LayerInfoButton: React.FC<LayerInfoButtonProps>;
8
+ export {};
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { uiTypes, serviceTypes } from '@opengeoweb/store';
3
+ interface LayerInfoButtonProps {
4
+ layer: serviceTypes.ServiceLayer;
5
+ mapId: string;
6
+ serviceName: string;
7
+ source?: uiTypes.Source;
8
+ }
9
+ export declare const LayerInfoButtonConnect: React.FC<LayerInfoButtonProps>;
10
+ export {};
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { uiTypes } from '@opengeoweb/store';
3
+ import { layerSelectTypes } from '../../store';
4
+ export interface LayerInfoDialogProps {
5
+ layer: layerSelectTypes.ActiveLayerObject;
6
+ onClose: () => void;
7
+ isOpen: boolean;
8
+ onMouseDown?: () => void;
9
+ order?: number;
10
+ source?: uiTypes.Source;
11
+ dialogHeight?: number;
12
+ }
13
+ export declare const LayerInfoDialog: React.FC<LayerInfoDialogProps>;
@@ -0,0 +1,25 @@
1
+ import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
6
+ export declare const LayerInfoDialogLight: {
7
+ (): React.ReactElement;
8
+ storyName: string;
9
+ parameters: {
10
+ zeplinLink: {
11
+ name: string;
12
+ link: string;
13
+ }[];
14
+ };
15
+ };
16
+ export declare const LayerInfoDialogDark: {
17
+ (): React.ReactElement;
18
+ storyName: string;
19
+ parameters: {
20
+ zeplinLink: {
21
+ name: string;
22
+ link: string;
23
+ }[];
24
+ };
25
+ };
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const LayerInfoDialogConnect: React.FC;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { mapTypes } from '@opengeoweb/store';
3
+ export interface LayerInfoLegendProps {
4
+ title: string;
5
+ name: string;
6
+ dimensions: mapTypes.Dimension[];
7
+ legendURL: string;
8
+ }
9
+ export declare const LayerInfoLegend: React.FC<LayerInfoLegendProps>;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ export type ListItem = {
3
+ label: string;
4
+ value: string;
5
+ icon: React.ReactElement;
6
+ };
7
+ export interface LayerInfoListProps {
8
+ label: string;
9
+ list: ListItem[];
10
+ }
11
+ export declare const LayerInfoList: React.FC<LayerInfoListProps>;
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ export interface LayerInfoTextProps {
3
+ label: string;
4
+ value: string;
5
+ }
6
+ export declare const textStyle: {
7
+ lineHeight: string;
8
+ letterSpacing: string;
9
+ };
10
+ export declare const textStyleWithMargin: {
11
+ marginBottom: number;
12
+ lineHeight: string;
13
+ letterSpacing: string;
14
+ };
15
+ export declare const LayerInfoText: React.FC<LayerInfoTextProps>;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { mapTypes } from '@opengeoweb/store';
3
+ import { ListItem } from './LayerInfoList';
4
+ import { layerSelectTypes } from '../../store';
5
+ export declare const getLayerStyles: (layer: layerSelectTypes.ActiveLayerObject) => string;
6
+ export declare const getDimensionValue: (name: string, dimensions: mapTypes.Dimension[]) => string;
7
+ export declare const getLayerBbox: (layer: layerSelectTypes.ActiveLayerObject) => string;
8
+ export declare const getDimensionIcon: (name: string, dimensions: mapTypes.Dimension[]) => React.ReactElement;
9
+ export declare const getDimensionLabel: (name: string) => string;
10
+ export declare const getDimensionsList: (dimensions: mapTypes.Dimension[]) => ListItem[];
@@ -0,0 +1,3 @@
1
+ export * from './LayerInfoButtonConnect';
2
+ export * from './LayerInfoDialog';
3
+ export * from './LayerInfoButton';
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import { layerTypes } from '@opengeoweb/store';
3
+ interface AddLayerParams {
4
+ serviceUrl: string;
5
+ layerName: string;
6
+ }
7
+ interface DeleteLayerParams {
8
+ layerId: string;
9
+ layerIndex: number;
10
+ }
11
+ interface LayerAddRemoveButtonProps {
12
+ layer: layerTypes.ReduxLayer;
13
+ layerIndex: number;
14
+ serviceUrl: string;
15
+ addLayer: ({ serviceUrl, layerName }: AddLayerParams) => void;
16
+ deleteLayer: ({ layerId, layerIndex }: DeleteLayerParams) => void;
17
+ mapLayers: layerTypes.ReduxLayer[];
18
+ }
19
+ export declare const LayerAddRemoveButton: React.FC<LayerAddRemoveButtonProps>;
20
+ export {};
@@ -0,0 +1,25 @@
1
+ import * as React from 'react';
2
+ import { layerTypes, serviceTypes } from '@opengeoweb/store';
3
+ import { layerSelectTypes } from '../../store';
4
+ interface AddLayerParams {
5
+ serviceUrl: string;
6
+ layerName: string;
7
+ }
8
+ export interface DeleteLayerParams {
9
+ layerId: string;
10
+ layerIndex: number;
11
+ }
12
+ export interface LayerListProps {
13
+ services: serviceTypes.Services;
14
+ filteredLayers: layerSelectTypes.ActiveLayerObject[];
15
+ layerSelectHeight: number;
16
+ serviceListHeight: number;
17
+ layerSelectWidth: number;
18
+ addLayer: ({ serviceUrl, layerName }: AddLayerParams) => void;
19
+ deleteLayer: ({ layerId, layerIndex }: DeleteLayerParams) => void;
20
+ mapLayers: layerTypes.ReduxLayer[];
21
+ mapId: string;
22
+ searchFilter: string;
23
+ }
24
+ export declare const LayerList: React.FC<LayerListProps>;
25
+ export {};
@@ -0,0 +1,3 @@
1
+ import { layerSelectTypes } from '../../store';
2
+ export declare const defaultReduxActiveLayers: layerSelectTypes.ActiveLayerObject[];
3
+ export declare const defaultReduxActiveLayersWithoutOptionalVariables: layerSelectTypes.ActiveLayerObject[];
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ interface LayerListConnectProps {
3
+ mapId: string;
4
+ layerSelectHeight: number;
5
+ serviceListHeight: number;
6
+ layerSelectWidth: number;
7
+ }
8
+ export declare const LayerListConnect: React.FC<LayerListConnectProps>;
9
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { ListItem } from '../LayerInfo/LayerInfoList';
3
+ interface LayerListDimensionsProps {
4
+ dimensions: ListItem[];
5
+ }
6
+ export declare const LayerListDimensions: React.FC<LayerListDimensionsProps>;
7
+ export {};
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ import { layerTypes, serviceTypes } from '@opengeoweb/store';
3
+ interface AddLayerParams {
4
+ serviceUrl: string;
5
+ layerName: string;
6
+ }
7
+ interface DeleteLayerParams {
8
+ layerId: string;
9
+ layerIndex: number;
10
+ }
11
+ interface LayerListRowProps {
12
+ layer: serviceTypes.ServiceLayer;
13
+ layerIndex: number;
14
+ service: serviceTypes.ReduxService;
15
+ addLayer: ({ serviceUrl, layerName }: AddLayerParams) => void;
16
+ deleteLayer: ({ layerId, layerIndex }: DeleteLayerParams) => void;
17
+ mapLayers: layerTypes.ReduxLayer[];
18
+ mapId: string;
19
+ layerSelectWidth: number;
20
+ searchFilter: string;
21
+ }
22
+ export declare const LayerListRow: React.FC<LayerListRowProps>;
23
+ export {};
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import { uiTypes } from '@opengeoweb/store';
3
+ interface Size {
4
+ width: number;
5
+ height: number;
6
+ }
7
+ interface LayerSelectProps {
8
+ mapId: string;
9
+ bounds?: string;
10
+ showTitle?: boolean;
11
+ onClose?: () => void;
12
+ onMouseDown?: (event: MouseEvent) => void;
13
+ isOpen: boolean;
14
+ order?: number;
15
+ source?: uiTypes.Source;
16
+ startSize?: Size;
17
+ isMultiMap?: boolean;
18
+ }
19
+ export declare const LayerSelect: React.FC<LayerSelectProps>;
20
+ export {};
@@ -0,0 +1,33 @@
1
+ import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
6
+ export declare const LayerSelectDemoLightTheme: {
7
+ (): React.ReactElement;
8
+ storyName: string;
9
+ parameters: {
10
+ zeplinLink: {
11
+ name: string;
12
+ link: string;
13
+ }[];
14
+ };
15
+ };
16
+ export declare const LayerSelectDemoDarkTheme: {
17
+ (): React.ReactElement;
18
+ storyName: string;
19
+ parameters: {
20
+ zeplinLink: {
21
+ name: string;
22
+ link: string;
23
+ }[];
24
+ };
25
+ };
26
+ export declare const LayerSelectDemoSmallLightTheme: {
27
+ (): React.ReactElement;
28
+ storyName: string;
29
+ };
30
+ export declare const LayerSelectDemoSmallDarkTheme: {
31
+ (): React.ReactElement;
32
+ storyName: string;
33
+ };
@@ -0,0 +1,11 @@
1
+ import * as React from 'react';
2
+ import { uiTypes } from '@opengeoweb/store';
3
+ interface LayerSelectButtonConnectProps {
4
+ mapId: string;
5
+ source?: uiTypes.Source;
6
+ tooltipTitle?: string;
7
+ icon?: React.ReactNode;
8
+ isMultiMap?: boolean;
9
+ }
10
+ export declare const LayerSelectButtonConnect: React.FC<LayerSelectButtonConnectProps>;
11
+ export {};
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ interface LayerSelectConnectProps {
3
+ mapId?: string;
4
+ bounds?: string;
5
+ showTitle?: boolean;
6
+ isMultiMap?: boolean;
7
+ }
8
+ /**
9
+ * LayerSelectConnect is a component that is opened from LayerManager
10
+ * It's used to add Services and Layers to the application
11
+ * It doesn't expect any props, its subcomponents only read and write to redux store
12
+ *
13
+ * ``` <LayerSelectConnect />```
14
+ */
15
+ export declare const LayerSelectConnect: React.FC<LayerSelectConnectProps>;
16
+ export {};
@@ -0,0 +1,77 @@
1
+ import { CSSProperties } from 'react';
2
+ import { layerSelectTypes } from '../../store';
3
+ export declare const layerSelectColumnsLarge: {
4
+ column1: {
5
+ width: number;
6
+ };
7
+ column2: {
8
+ marginTop: string;
9
+ width: string;
10
+ height: string;
11
+ paddingLeft: string;
12
+ };
13
+ column3: {
14
+ height: string;
15
+ };
16
+ column4: {
17
+ height: string;
18
+ };
19
+ column5: {
20
+ height: string;
21
+ width: number;
22
+ };
23
+ column6: {
24
+ height: string;
25
+ width: string;
26
+ };
27
+ column7: {
28
+ height: string;
29
+ width: number;
30
+ marginRight: number;
31
+ marginLeft: number;
32
+ };
33
+ column8: {
34
+ width: string;
35
+ };
36
+ column9: {
37
+ width: string;
38
+ };
39
+ };
40
+ export declare const layerSelectColumnsSmall: {
41
+ column1: {
42
+ width: string;
43
+ };
44
+ column2: {
45
+ marginTop: string;
46
+ width: string;
47
+ };
48
+ column3: {
49
+ height: string;
50
+ };
51
+ column4: {
52
+ height: string;
53
+ };
54
+ column5: {
55
+ height: string;
56
+ width: string;
57
+ };
58
+ column6: {
59
+ height: string;
60
+ width: string;
61
+ };
62
+ column7: {
63
+ height: string;
64
+ width: number;
65
+ marginRight: number;
66
+ marginLeft: number;
67
+ };
68
+ column8: {
69
+ width: string;
70
+ };
71
+ column9: {
72
+ width: string;
73
+ };
74
+ };
75
+ export declare const widthToColumns: (width: number) => Record<string, CSSProperties>;
76
+ export declare const widthToRowHeight: (width: number) => number;
77
+ export declare const sortByService: (serviceObj: layerSelectTypes.ActiveServiceObjectEntities) => layerSelectTypes.ActiveServiceObjectEntities;
@@ -0,0 +1,2 @@
1
+ export * from './LayerSelectButtonConnect';
2
+ export * from './LayerSelectConnect';
@@ -0,0 +1,2 @@
1
+ import * as React from 'react';
2
+ export declare const SearchFieldConnect: React.FC;
@@ -0,0 +1,11 @@
1
+ import * as React from 'react';
2
+ import { layerSelectTypes } from '../../store';
3
+ interface ServiceChipProps {
4
+ all?: boolean;
5
+ service?: layerSelectTypes.ActiveServiceObject;
6
+ isSelected?: boolean;
7
+ isDisabled?: boolean;
8
+ toggleChip?: (service: string) => void;
9
+ }
10
+ export declare const ServiceChip: React.FC<ServiceChipProps>;
11
+ export {};
@@ -0,0 +1,10 @@
1
+ import * as React from 'react';
2
+ import { layerSelectTypes } from '../../store';
3
+ export interface ServiceChipConnectProps {
4
+ service: layerSelectTypes.ActiveServiceObject;
5
+ isAllSelected: boolean;
6
+ }
7
+ export declare const ServiceChipConnect: React.FC<ServiceChipConnectProps>;
8
+ export declare const AllChipConnect: React.FC<{
9
+ isAllSelected: boolean;
10
+ }>;
@@ -0,0 +1,8 @@
1
+ import * as React from 'react';
2
+ import { layerSelectTypes } from '../../store';
3
+ interface ServiceListProps {
4
+ activeServicesById: layerSelectTypes.ActiveServiceObjectEntities;
5
+ setHeight: (height: number) => void;
6
+ }
7
+ export declare const ServiceList: React.FC<ServiceListProps>;
8
+ export {};
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ interface ServiceListConnectProps {
3
+ setHeight: (height: number) => void;
4
+ }
5
+ export declare const ServiceListConnect: React.FC<ServiceListConnectProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ interface ServiceOptionsButtonProps {
3
+ mapId: string;
4
+ }
5
+ export declare const ServiceOptionsButton: React.FC<ServiceOptionsButtonProps>;
6
+ export {};
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ declare const _default: {
3
+ title: string;
4
+ };
5
+ export default _default;
6
+ export declare const ServiceOptionsButtonLight: () => React.ReactElement;
7
+ export declare const ServiceOptionsButtonDark: () => React.ReactElement;