kepler.gl 3.1.9 → 3.1.10
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 +21 -21
- package/dist/src/components/src/common/link-renderer.d.ts +6 -2
- package/dist/src/components/src/index.d.ts +1 -0
- package/dist/src/components/src/map-container.d.ts +1 -0
- package/dist/src/components/src/plot-container.d.ts +1 -0
- package/dist/src/components/src/side-panel/layer-manager.d.ts +1 -0
- package/dist/src/duckdb/src/index.d.ts +1 -0
- package/dist/src/duckdb/src/processors/data-processor.d.ts +8 -0
- package/dist/src/utils/src/data-utils.d.ts +1 -0
- package/package.json +2 -2
- package/src/actions/package.json +8 -8
- package/src/ai-assistant/package.json +7 -7
- package/src/cloud-providers/package.json +2 -2
- package/src/common-utils/package.json +3 -3
- package/src/components/dist/common/link-renderer.d.ts +6 -2
- package/src/components/dist/common/link-renderer.js +1 -1
- package/src/components/dist/index.d.ts +1 -0
- package/src/components/dist/index.js +44 -1
- package/src/components/dist/map-container.d.ts +1 -0
- package/src/components/dist/map-container.js +2 -1
- package/src/components/dist/plot-container.d.ts +1 -0
- package/src/components/dist/plot-container.js +7 -4
- package/src/components/dist/side-panel/layer-manager.d.ts +1 -0
- package/src/components/dist/side-panel/layer-manager.js +5 -3
- package/src/components/dist/side-panel/layer-panel/color-scale-selector.js +16 -9
- package/src/components/package.json +16 -16
- package/src/components/src/common/link-renderer.tsx +7 -2
- package/src/components/src/index.ts +8 -0
- package/src/components/src/map-container.tsx +4 -0
- package/src/components/src/plot-container.tsx +9 -3
- package/src/components/src/side-panel/layer-manager.tsx +4 -2
- package/src/components/src/side-panel/layer-panel/color-scale-selector.tsx +22 -9
- package/src/constants/dist/default-settings.js +2 -2
- package/src/constants/node_modules/.cache/terser-webpack-plugin/content-v2/sha512/e4/a7/04d0f645deb094cab21e70c2457f3b87750bee1dfea9b3ad1d4f746ae10ff013d960af8a46b1f87a10409989d6a352c21e29a8784a161a84f83a310955e2 +1 -0
- package/src/constants/node_modules/.cache/terser-webpack-plugin/index-v5/b2/5f/6daa692cacd1234803d6a5abefef0c49aae2d1403e4d8e53140088950a04 +2 -0
- package/src/constants/package.json +2 -2
- package/src/constants/umd/keplergl.min.js +1 -1
- package/src/deckgl-arrow-layers/package.json +2 -2
- package/src/deckgl-layers/package.json +4 -4
- package/src/duckdb/dist/index.d.ts +1 -0
- package/src/duckdb/dist/index.js +24 -2
- package/src/duckdb/dist/processors/data-processor.d.ts +8 -0
- package/src/duckdb/dist/processors/data-processor.js +23 -1
- package/src/duckdb/package.json +6 -6
- package/src/duckdb/src/index.ts +5 -0
- package/src/duckdb/src/processors/data-processor.ts +25 -1
- package/src/effects/package.json +5 -5
- package/src/layers/package.json +9 -9
- package/src/localization/package.json +1 -1
- package/src/processors/package.json +7 -7
- package/src/reducers/package.json +16 -16
- package/src/schemas/package.json +7 -7
- package/src/styles/node_modules/.cache/terser-webpack-plugin/content-v2/sha512/41/e3/d873c0efff87c4438d34d09be942ff6877947926c2309949e1eea8a58722c9ebf1e9451b44f62996d3590f398318e2fd17f19613445810226c8354b7d746 +1 -0
- package/src/styles/node_modules/.cache/terser-webpack-plugin/index-v5/9d/95/efc8c9f0bdd09b105646cf5e34b067e621726ceeb296771ff7da9e2e03b4 +2 -0
- package/src/styles/package.json +2 -2
- package/src/styles/umd/keplergl.min.js +1 -1
- package/src/table/package.json +5 -5
- package/src/tasks/package.json +2 -2
- package/src/types/package.json +1 -1
- package/src/utils/dist/data-scale-utils.js +35 -16
- package/src/utils/dist/data-utils.d.ts +1 -0
- package/src/utils/dist/data-utils.js +2 -1
- package/src/utils/package.json +4 -4
- package/src/utils/src/data-scale-utils.ts +34 -21
- package/src/utils/src/data-utils.ts +1 -0
- package/umd/keplergl.min.js +1027 -1027
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
|
|
30
30
|
[<img width="120" alt="Kepler.gl" src="https://d1a3f4spazzrp4.cloudfront.net/kepler.gl/website/icons/kepler.gl-logo.png">](http://kepler.gl)
|
|
31
31
|
|
|
32
|
-
[<img width="600" alt="Kepler.gl Demo" src="
|
|
32
|
+
[<img width="600" alt="Kepler.gl Demo" src="./screenshots/screenshot.png">](https://kepler.gl/demo)
|
|
33
33
|
|
|
34
34
|
[Kepler.gl][web] is a data-agnostic, high-performance web-based application for visual exploration of large-scale geolocation data sets. Built on top of [MapLibre GL](https://maplibre.org/) and [deck.gl](https://deck.gl/), kepler.gl can render millions of points representing thousands of trips and perform spatial aggregations on the fly.
|
|
35
35
|
|
|
@@ -151,26 +151,26 @@ const Map = props => (
|
|
|
151
151
|
|
|
152
152
|
### Props
|
|
153
153
|
|
|
154
|
-
| Prop Name | Type
|
|
155
|
-
|
|
156
|
-
| `id`
|
|
157
|
-
| `mapboxApiAccessToken`
|
|
158
|
-
| `getState`
|
|
159
|
-
| `width`
|
|
160
|
-
| `height`
|
|
161
|
-
| `appName`
|
|
162
|
-
| `version`
|
|
163
|
-
| `onSaveMap`
|
|
164
|
-
| `onViewStateChange`
|
|
165
|
-
| `getMapboxRef(mapbox, index)`
|
|
166
|
-
| `actions`
|
|
167
|
-
| `mint`
|
|
168
|
-
| `theme`
|
|
169
|
-
| `mapboxApiUrl`
|
|
170
|
-
| `mapStylesReplaceDefault`
|
|
171
|
-
| `mapStyles`
|
|
172
|
-
| `initialUiState`
|
|
173
|
-
| `localeMessages`
|
|
154
|
+
| Prop Name | Type | Default Value | Description |
|
|
155
|
+
| ----------------------------- | ------------- | ------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
156
|
+
| `id` | String | `map` | The unique identifier for the KeplerGl instance. Required when multiple KeplerGl instances exist. It maps to the state in the reducer (e.g. component with id `foo` can be found in`state.keplerGl.foo`). |
|
|
157
|
+
| `mapboxApiAccessToken` | String | `undefined` | API token for Mapbox, used for rendering base maps. Create a free token at [Mapbox](https://www.mapbox.com). |
|
|
158
|
+
| `getState` | Function | `state => state.keplerGl` | Function that specifies the path to the root KeplerGl state in the reducer. |
|
|
159
|
+
| `width` | Number | `800` | The width of the KeplerGl UI in pixels. |
|
|
160
|
+
| `height` | Number | `800` | The height of the KeplerGl UI in pixels. |
|
|
161
|
+
| `appName` | String | `Kepler.Gl` | The app name displayed in the side panel header. |
|
|
162
|
+
| `version` | String | `v1.0` | The version displayed in the side panel header. |
|
|
163
|
+
| `onSaveMap` | Function | `undefined` | A function called when the "Save Map URL" in side panel header is clicked. |
|
|
164
|
+
| `onViewStateChange` | Function | `undefined` | Triggered when the map viewport is updated. Receives `viewState` parameter with updated values like longitude, latitude, zoom, etc. |
|
|
165
|
+
| `getMapboxRef(mapbox, index)` | Function | `undefined` | Called when `KeplerGl` adds or removes a MapContainer with an inner Mapbox map. `mapbox` is a `MapRef` when added, or `null` when removed. `index` is `0` for the first map and `1` for the second map in a split view. |
|
|
166
|
+
| `actions` | Object | `{}` | Custom action creators to override the default KeplerGl action creators. Only use custom action when you want to modify action payload. |
|
|
167
|
+
| `mint` | Boolean | `true` | Determines whether to load a fresh empty state when mounted. When `false`, the state persists across remounts. Useful for modal use cases. |
|
|
168
|
+
| `theme` | Object/String | `null` | Set to `"dark"`, `"light"`, or `"base"`, or pass a theme object to customize KeplerGl’s style. |
|
|
169
|
+
| `mapboxApiUrl` | String | `https://api.mapbox.com` | The Mapbox API URL if you are using a custom Mapbox tile server. |
|
|
170
|
+
| `mapStylesReplaceDefault` | Boolean | `false` | Set to `true` to replace default map styles with custom ones. (see `mapStyles` prop) |
|
|
171
|
+
| `mapStyles` | Array | `[]` | An array of [custom map styles](#example-custom-map-style) for the map style selection panel. Styles replace the default ones if `mapStylesReplaceDefault` is `true`. |
|
|
172
|
+
| `initialUiState` | Object | `undefined` | The initial UI state applied to the `uiState` reducer. |
|
|
173
|
+
| `localeMessages` | Object | `undefined` | Used to modify or add new translations. Read more about [Localization][localization]. |
|
|
174
174
|
|
|
175
175
|
#### Example Custom Map Style
|
|
176
176
|
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
1
|
+
import React, { FC } from 'react';
|
|
2
|
+
interface LinkRendererProps {
|
|
3
|
+
href: string;
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
}
|
|
6
|
+
declare const LinkRenderer: FC<LinkRendererProps>;
|
|
3
7
|
export default LinkRenderer;
|
|
@@ -230,6 +230,7 @@ export type { PanelTabProps } from './side-panel/panel-tab';
|
|
|
230
230
|
export type { CollapseButtonProps, SideBarProps } from './side-panel/side-bar';
|
|
231
231
|
export { BottomWidgetInner, Button, ButtonGroup, CenterFlexbox, CenterVerticalFlexbox, CheckMark, DatasetSquare, Edit, IconRoundSmall, Icons, InlineInput, Input, InputLight, MapControlButton, PanelContent, PanelHeaderContent, PanelHeaderTitle, PanelLabel, PanelLabelBold, PanelLabelWrapper, SBFlexboxItem, SBFlexboxNoMargin, SelectText, SelectTextBold, SelectionButton, SidePanelDivider, SidePanelSection, SpaceBetweenFlexbox, StyledAttribution, StyledExportSection, StyledFilterContent, StyledFilteredOption, StyledMapContainer, StyledModalContent, StyledModalInputFootnote, StyledModalSection, StyledModalVerticalPanel, StyledPanelDropdown, StyledPanelHeader, StyledType, shouldForwardProp, TextArea, TextAreaLight, Tooltip, TruncatedTitleText, WidgetContainer } from './common';
|
|
232
232
|
export { ArcLayerColorSelectorFactory, ChannelByValueSelectorFactory, ColorSelectorFactory, ColumnModeConfigFactory, DataTableFactory, FieldListItemFactoryFactory, InfoHelperFactory, LayerColorRangeSelectorFactory, LayerColorSelectorFactory, LayerColumnConfigFactory, LayerColumnModeConfigFactory, LayerConfigGroupFactory, LayerTypeListItemFactory, RangeSliderFactory, TimeRangeSliderFactory, VisConfigSliderFactory, VisConfigSwitchFactory, appInjector };
|
|
233
|
+
export { DROPPABLE_MAP_CONTAINER_TYPE, SORTABLE_LAYER_TYPE, SORTABLE_EFFECT_TYPE, SORTABLE_SIDE_PANEL_TYPE, DND_MODIFIERS, DND_EMPTY_MODIFIERS } from './common/dnd-layer-items';
|
|
233
234
|
export declare const TimeRangeSlider: any;
|
|
234
235
|
export declare const RangeSlider: any;
|
|
235
236
|
export declare const VisConfigSlider: any;
|
|
@@ -70,6 +70,7 @@ export interface MapContainerProps {
|
|
|
70
70
|
onDeckRender?: (deckProps: Record<string, unknown>) => Record<string, unknown> | null;
|
|
71
71
|
onDeckAfterRender?: (deckProps: Record<string, unknown>) => any;
|
|
72
72
|
};
|
|
73
|
+
logoComponent?: React.FC | React.ReactNode;
|
|
73
74
|
}
|
|
74
75
|
declare function MapContainerFactory(MapPopover: ReturnType<typeof MapPopoverFactory>, MapControl: ReturnType<typeof MapControlFactory>, Editor: ReturnType<typeof EditorFactory>): React.ComponentType<MapContainerProps>;
|
|
75
76
|
declare namespace MapContainerFactory {
|
|
@@ -18,6 +18,7 @@ interface PlotContainerProps {
|
|
|
18
18
|
setExportImageError: typeof setExportImageError;
|
|
19
19
|
addNotification: ActionHandler<typeof addNotification>;
|
|
20
20
|
enableErrorNotification?: boolean;
|
|
21
|
+
logoComponent?: React.ReactNode;
|
|
21
22
|
}
|
|
22
23
|
declare function PlotContainerFactory(MapContainer: ReturnType<typeof MapContainerFactory>, MapsLayout: ReturnType<typeof MapsLayoutFactory>): React.ComponentType<PlotContainerProps>;
|
|
23
24
|
declare namespace PlotContainerFactory {
|
|
@@ -33,6 +33,7 @@ declare type LayerManagerProps = {
|
|
|
33
33
|
updateTableColor: ActionHandler<typeof VisStateActions.updateTableColor>;
|
|
34
34
|
panelListView: PanelListView;
|
|
35
35
|
panelMetadata: SidePanelItem;
|
|
36
|
+
showDeleteDataset?: boolean;
|
|
36
37
|
} & WrappedComponentProps;
|
|
37
38
|
export declare const LayerBlendingSelector: React.MemoExoticComponent<({ layerBlending, updateLayerBlending, intl, className }: LayerBlendingSelectorProps) => React.JSX.Element>;
|
|
38
39
|
declare function LayerManagerFactory(LayerList: ReturnType<typeof LayerListFactory>, DatasetLayerGroup: ReturnType<typeof DatasetLayerGroupFactory>, PanelViewListToggle: ReturnType<typeof PanelViewListToggleFactory>, PanelTitle: ReturnType<typeof PanelTitleFactory>, DatasetSection: ReturnType<typeof DatasetSectionFactory>, AddLayerButton: ReturnType<typeof AddLayerButtonFactory>, InfoHelper: ReturnType<typeof InfoHelperFactory>): React.FC<import("react-intl").WithIntlProps<LayerManagerProps>> & {
|
|
@@ -4,3 +4,4 @@ import { keplerGlDuckDBPlugin } from './plugin';
|
|
|
4
4
|
export { restoreGeoarrowMetadata, KeplerGlDuckDbTable } from './table/duckdb-table';
|
|
5
5
|
export * from './table/duckdb-table-utils';
|
|
6
6
|
export default keplerGlDuckDBPlugin;
|
|
7
|
+
export { consolidateFieldTypes, extendFieldsWithDuckDBColumnType, fieldTypeToColumnType } from './processors/data-processor';
|
|
@@ -15,5 +15,13 @@ export declare function columnTypeToFieldType(columnType: string): string | null
|
|
|
15
15
|
export declare function fieldTypeToColumnType(fieldType: string): string | null;
|
|
16
16
|
export declare function processKeplerglJSONforDuckDb(keplerJson: any): Promise<ReturnType<typeof processKeplerglJSON>>;
|
|
17
17
|
export declare function processCsvRowObject(rawData: Record<string, string | null>[]): Promise<ProcessorResult>;
|
|
18
|
+
export declare function consolidateFieldTypes(fields: any, schema: any): any;
|
|
18
19
|
export declare function processGeojson(rawData: unknown): ProcessorResult;
|
|
20
|
+
/**
|
|
21
|
+
* A utility function to extend existing fields with native DuckDB column type.
|
|
22
|
+
* @param fields Array of fields to extend.
|
|
23
|
+
* @param typeOverrides An optional mapping of DuckDB column types to override.
|
|
24
|
+
* @returns An array of fields with the DuckDB column type extended.
|
|
25
|
+
*/
|
|
26
|
+
export declare function extendFieldsWithDuckDBColumnType(fields: ProtoDatasetField[], typeOverrides: Record<string, string>): Promise<ProtoDatasetField[]>;
|
|
19
27
|
export {};
|
|
@@ -33,6 +33,7 @@ export declare function validateLongitude(longitude: number | undefined): number
|
|
|
33
33
|
export declare function validateCoordinate(value: number, minValue: number, maxValue: number): number;
|
|
34
34
|
/**
|
|
35
35
|
* simple getting unique values of an array
|
|
36
|
+
* Note: filters out null and undefined values
|
|
36
37
|
*
|
|
37
38
|
* @param values
|
|
38
39
|
* @returns unique values
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kepler.gl",
|
|
3
3
|
"author": "Shan He <shan@uber.com>",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.10",
|
|
5
5
|
"description": "kepler.gl is a webgl based application to visualize large scale location data in the browser",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"@deck.gl/mapbox": "^8.9.27",
|
|
104
104
|
"@hubble.gl/core": "1.4.0",
|
|
105
105
|
"@hubble.gl/react": "1.4.0",
|
|
106
|
-
"@kepler.gl/components": "3.1.
|
|
106
|
+
"@kepler.gl/components": "3.1.10",
|
|
107
107
|
"@loaders.gl/polyfills": "^4.3.2",
|
|
108
108
|
"@types/mapbox__geo-viewport": "^0.4.1",
|
|
109
109
|
"html-webpack-plugin": "^4.3.0",
|
package/src/actions/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kepler.gl/actions",
|
|
3
3
|
"author": "Shan He <shan@uber.com>",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.10",
|
|
5
5
|
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@deck.gl/core": "^8.9.27",
|
|
34
|
-
"@kepler.gl/cloud-providers": "3.1.
|
|
35
|
-
"@kepler.gl/constants": "3.1.
|
|
36
|
-
"@kepler.gl/layers": "3.1.
|
|
37
|
-
"@kepler.gl/processors": "3.1.
|
|
38
|
-
"@kepler.gl/table": "3.1.
|
|
39
|
-
"@kepler.gl/types": "3.1.
|
|
40
|
-
"@kepler.gl/utils": "3.1.
|
|
34
|
+
"@kepler.gl/cloud-providers": "3.1.10",
|
|
35
|
+
"@kepler.gl/constants": "3.1.10",
|
|
36
|
+
"@kepler.gl/layers": "3.1.10",
|
|
37
|
+
"@kepler.gl/processors": "3.1.10",
|
|
38
|
+
"@kepler.gl/table": "3.1.10",
|
|
39
|
+
"@kepler.gl/types": "3.1.10",
|
|
40
|
+
"@kepler.gl/utils": "3.1.10",
|
|
41
41
|
"@reduxjs/toolkit": "^1.7.2",
|
|
42
42
|
"@types/lodash": "4.17.5",
|
|
43
43
|
"@types/react-redux": "^7.1.23",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kepler.gl/ai-assistant",
|
|
3
3
|
"author": "Xun Li<lixun910@gmail.com>",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.10",
|
|
5
5
|
"description": "kepler.gl AI assistant",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"@ai-sdk/deepseek": "^0.2.14",
|
|
35
35
|
"@ai-sdk/google": "^1.2.18",
|
|
36
36
|
"@ai-sdk/xai": "^1.2.16",
|
|
37
|
-
"@kepler.gl/components": "3.1.
|
|
38
|
-
"@kepler.gl/constants": "3.1.
|
|
39
|
-
"@kepler.gl/layers": "3.1.
|
|
40
|
-
"@kepler.gl/table": "3.1.
|
|
41
|
-
"@kepler.gl/types": "3.1.
|
|
42
|
-
"@kepler.gl/utils": "3.1.
|
|
37
|
+
"@kepler.gl/components": "3.1.10",
|
|
38
|
+
"@kepler.gl/constants": "3.1.10",
|
|
39
|
+
"@kepler.gl/layers": "3.1.10",
|
|
40
|
+
"@kepler.gl/table": "3.1.10",
|
|
41
|
+
"@kepler.gl/types": "3.1.10",
|
|
42
|
+
"@kepler.gl/utils": "3.1.10",
|
|
43
43
|
"@openassistant/core": "^0.5.13",
|
|
44
44
|
"@openassistant/duckdb": "^0.5.13",
|
|
45
45
|
"@openassistant/echarts": "^0.5.13",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kepler.gl/cloud-providers",
|
|
3
3
|
"author": "Shan He <shan@uber.com>",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.10",
|
|
5
5
|
"description": "kepler.gl constants used by kepler.gl components, actions and reducers",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"umd"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@kepler.gl/types": "3.1.
|
|
33
|
+
"@kepler.gl/types": "3.1.10",
|
|
34
34
|
"react": "^18.2.0"
|
|
35
35
|
},
|
|
36
36
|
"nyc": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kepler.gl/common-utils",
|
|
3
3
|
"author": "Shan He <heshan0131@gmail.com>",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.10",
|
|
5
5
|
"description": "kepler.gl common utils",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"umd"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@kepler.gl/constants": "3.1.
|
|
34
|
-
"@kepler.gl/types": "3.1.
|
|
33
|
+
"@kepler.gl/constants": "3.1.10",
|
|
34
|
+
"@kepler.gl/types": "3.1.10",
|
|
35
35
|
"d3-array": "^2.8.0",
|
|
36
36
|
"global": "^4.3.0",
|
|
37
37
|
"h3-js": "^3.1.0",
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
|
|
1
|
+
import React, { FC } from 'react';
|
|
2
|
+
interface LinkRendererProps {
|
|
3
|
+
href: string;
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
}
|
|
6
|
+
declare const LinkRenderer: FC<LinkRendererProps>;
|
|
3
7
|
export default LinkRenderer;
|
|
@@ -17,4 +17,4 @@ var LinkRenderer = function LinkRenderer(props) {
|
|
|
17
17
|
}, props.children);
|
|
18
18
|
};
|
|
19
19
|
var _default = exports["default"] = LinkRenderer;
|
|
20
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
20
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfcmVhY3QiLCJfaW50ZXJvcFJlcXVpcmVEZWZhdWx0IiwicmVxdWlyZSIsIkxpbmtSZW5kZXJlciIsInByb3BzIiwiY3JlYXRlRWxlbWVudCIsImhyZWYiLCJ0YXJnZXQiLCJyZWwiLCJjaGlsZHJlbiIsIl9kZWZhdWx0IiwiZXhwb3J0cyJdLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21tb24vbGluay1yZW5kZXJlci50c3giXSwic291cmNlc0NvbnRlbnQiOlsiLy8gU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IE1JVFxuLy8gQ29weXJpZ2h0IGNvbnRyaWJ1dG9ycyB0byB0aGUga2VwbGVyLmdsIHByb2plY3RcblxuaW1wb3J0IFJlYWN0LCB7RkN9IGZyb20gJ3JlYWN0JztcblxuaW50ZXJmYWNlIExpbmtSZW5kZXJlclByb3BzIHtcbiAgaHJlZjogc3RyaW5nO1xuICBjaGlsZHJlbjogUmVhY3QuUmVhY3ROb2RlO1xufVxuXG5jb25zdCBMaW5rUmVuZGVyZXI6IEZDPExpbmtSZW5kZXJlclByb3BzPiA9IHByb3BzID0+IHtcbiAgcmV0dXJuIChcbiAgICA8YSBocmVmPXtwcm9wcy5ocmVmfSB0YXJnZXQ9XCJfYmxhbmtcIiByZWw9XCJub29wZW5lciBub3JlZmVycmVyXCI+XG4gICAgICB7cHJvcHMuY2hpbGRyZW59XG4gICAgPC9hPlxuICApO1xufTtcblxuZXhwb3J0IGRlZmF1bHQgTGlua1JlbmRlcmVyO1xuIl0sIm1hcHBpbmdzIjoiOzs7Ozs7O0FBR0EsSUFBQUEsTUFBQSxHQUFBQyxzQkFBQSxDQUFBQyxPQUFBO0FBSEE7QUFDQTs7QUFTQSxJQUFNQyxZQUFtQyxHQUFHLFNBQXRDQSxZQUFtQ0EsQ0FBR0MsS0FBSyxFQUFJO0VBQ25ELG9CQUNFSixNQUFBLFlBQUFLLGFBQUE7SUFBR0MsSUFBSSxFQUFFRixLQUFLLENBQUNFLElBQUs7SUFBQ0MsTUFBTSxFQUFDLFFBQVE7SUFBQ0MsR0FBRyxFQUFDO0VBQXFCLEdBQzNESixLQUFLLENBQUNLLFFBQ04sQ0FBQztBQUVSLENBQUM7QUFBQyxJQUFBQyxRQUFBLEdBQUFDLE9BQUEsY0FFYVIsWUFBWSIsImlnbm9yZUxpc3QiOltdfQ==
|
|
@@ -230,6 +230,7 @@ export type { PanelTabProps } from './side-panel/panel-tab';
|
|
|
230
230
|
export type { CollapseButtonProps, SideBarProps } from './side-panel/side-bar';
|
|
231
231
|
export { BottomWidgetInner, Button, ButtonGroup, CenterFlexbox, CenterVerticalFlexbox, CheckMark, DatasetSquare, Edit, IconRoundSmall, Icons, InlineInput, Input, InputLight, MapControlButton, PanelContent, PanelHeaderContent, PanelHeaderTitle, PanelLabel, PanelLabelBold, PanelLabelWrapper, SBFlexboxItem, SBFlexboxNoMargin, SelectText, SelectTextBold, SelectionButton, SidePanelDivider, SidePanelSection, SpaceBetweenFlexbox, StyledAttribution, StyledExportSection, StyledFilterContent, StyledFilteredOption, StyledMapContainer, StyledModalContent, StyledModalInputFootnote, StyledModalSection, StyledModalVerticalPanel, StyledPanelDropdown, StyledPanelHeader, StyledType, shouldForwardProp, TextArea, TextAreaLight, Tooltip, TruncatedTitleText, WidgetContainer } from './common';
|
|
232
232
|
export { ArcLayerColorSelectorFactory, ChannelByValueSelectorFactory, ColorSelectorFactory, ColumnModeConfigFactory, DataTableFactory, FieldListItemFactoryFactory, InfoHelperFactory, LayerColorRangeSelectorFactory, LayerColorSelectorFactory, LayerColumnConfigFactory, LayerColumnModeConfigFactory, LayerConfigGroupFactory, LayerTypeListItemFactory, RangeSliderFactory, TimeRangeSliderFactory, VisConfigSliderFactory, VisConfigSwitchFactory, appInjector };
|
|
233
|
+
export { DROPPABLE_MAP_CONTAINER_TYPE, SORTABLE_LAYER_TYPE, SORTABLE_EFFECT_TYPE, SORTABLE_SIDE_PANEL_TYPE, DND_MODIFIERS, DND_EMPTY_MODIFIERS } from './common/dnd-layer-items';
|
|
233
234
|
export declare const TimeRangeSlider: any;
|
|
234
235
|
export declare const RangeSlider: any;
|
|
235
236
|
export declare const VisConfigSlider: any;
|