kepler.gl 3.1.9 → 3.2.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 (98) hide show
  1. package/README.md +21 -21
  2. package/dist/src/components/src/common/link-renderer.d.ts +6 -2
  3. package/dist/src/components/src/index.d.ts +1 -0
  4. package/dist/src/components/src/map-container.d.ts +1 -0
  5. package/dist/src/components/src/plot-container.d.ts +1 -0
  6. package/dist/src/components/src/side-panel/layer-manager.d.ts +1 -0
  7. package/dist/src/duckdb/src/index.d.ts +1 -0
  8. package/dist/src/duckdb/src/processors/data-processor.d.ts +8 -0
  9. package/dist/src/utils/src/data-utils.d.ts +1 -0
  10. package/package.json +2 -2
  11. package/src/actions/package.json +8 -8
  12. package/src/ai-assistant/package.json +7 -7
  13. package/src/cloud-providers/package.json +2 -2
  14. package/src/common-utils/package.json +3 -3
  15. package/src/components/dist/common/link-renderer.d.ts +6 -2
  16. package/src/components/dist/common/link-renderer.js +1 -1
  17. package/src/components/dist/index.d.ts +1 -0
  18. package/src/components/dist/index.js +44 -1
  19. package/src/components/dist/map-container.d.ts +1 -0
  20. package/src/components/dist/map-container.js +2 -1
  21. package/src/components/dist/modal-container.js +3 -3
  22. package/src/components/dist/modals/tilesets-modals/tileset-raster-form.js +38 -9
  23. package/src/components/dist/plot-container.d.ts +1 -0
  24. package/src/components/dist/plot-container.js +7 -4
  25. package/src/components/dist/side-panel/layer-manager.d.ts +1 -0
  26. package/src/components/dist/side-panel/layer-manager.js +5 -3
  27. package/src/components/dist/side-panel/layer-panel/color-scale-selector.js +16 -9
  28. package/src/components/dist/side-panel/layer-panel/raster-tile-layer-configurator.js +3 -3
  29. package/src/components/package.json +16 -16
  30. package/src/components/src/common/link-renderer.tsx +7 -2
  31. package/src/components/src/index.ts +8 -0
  32. package/src/components/src/map-container.tsx +4 -0
  33. package/src/components/src/modal-container.tsx +6 -2
  34. package/src/components/src/modals/tilesets-modals/tileset-raster-form.tsx +60 -4
  35. package/src/components/src/plot-container.tsx +9 -3
  36. package/src/components/src/side-panel/layer-manager.tsx +4 -2
  37. package/src/components/src/side-panel/layer-panel/color-scale-selector.tsx +22 -9
  38. package/src/components/src/side-panel/layer-panel/raster-tile-layer-configurator.tsx +2 -1
  39. package/src/constants/dist/default-settings.js +1 -1
  40. package/src/constants/node_modules/.cache/terser-webpack-plugin/content-v2/sha512/56/48/71c2c5381c01c063c164e15fa04b4b1f3faae02e6727f2f2daf483e15205feca68334bad721af0c6f31abb20b56d60504623838127764aab6883912e7f71 +1 -0
  41. package/src/constants/node_modules/.cache/terser-webpack-plugin/content-v2/sha512/e4/a7/04d0f645deb094cab21e70c2457f3b87750bee1dfea9b3ad1d4f746ae10ff013d960af8a46b1f87a10409989d6a352c21e29a8784a161a84f83a310955e2 +1 -0
  42. package/src/constants/node_modules/.cache/terser-webpack-plugin/index-v5/b2/5f/6daa692cacd1234803d6a5abefef0c49aae2d1403e4d8e53140088950a04 +2 -0
  43. package/src/constants/node_modules/.cache/terser-webpack-plugin/index-v5/bf/88/ea60c7619185516464a4ae21f51394966047bfdf190a5463de651c61931c +2 -0
  44. package/src/constants/package.json +2 -2
  45. package/src/constants/umd/keplergl.min.js +1 -1
  46. package/src/deckgl-arrow-layers/package.json +2 -2
  47. package/src/deckgl-layers/package.json +4 -4
  48. package/src/duckdb/dist/index.d.ts +1 -0
  49. package/src/duckdb/dist/index.js +24 -2
  50. package/src/duckdb/dist/processors/data-processor.d.ts +8 -0
  51. package/src/duckdb/dist/processors/data-processor.js +23 -1
  52. package/src/duckdb/package.json +6 -6
  53. package/src/duckdb/src/index.ts +5 -0
  54. package/src/duckdb/src/processors/data-processor.ts +25 -1
  55. package/src/effects/package.json +5 -5
  56. package/src/layers/dist/raster-tile/gpu-utils.d.ts +11 -10
  57. package/src/layers/dist/raster-tile/gpu-utils.js +7 -6
  58. package/src/layers/dist/raster-tile/image.d.ts +4 -0
  59. package/src/layers/dist/raster-tile/image.js +30 -16
  60. package/src/layers/dist/raster-tile/raster-tile-layer.d.ts +4 -0
  61. package/src/layers/dist/raster-tile/raster-tile-layer.js +18 -6
  62. package/src/layers/dist/raster-tile/request-throttle.d.ts +1 -1
  63. package/src/layers/dist/raster-tile/request-throttle.js +17 -16
  64. package/src/layers/dist/raster-tile/types.d.ts +16 -0
  65. package/src/layers/dist/raster-tile/types.js +1 -1
  66. package/src/layers/dist/raster-tile/url.d.ts +1 -1
  67. package/src/layers/dist/raster-tile/url.js +5 -4
  68. package/src/layers/package.json +9 -9
  69. package/src/layers/src/raster-tile/gpu-utils.ts +96 -78
  70. package/src/layers/src/raster-tile/image.ts +35 -9
  71. package/src/layers/src/raster-tile/raster-tile-layer.ts +23 -5
  72. package/src/layers/src/raster-tile/request-throttle.ts +10 -5
  73. package/src/layers/src/raster-tile/types.ts +19 -1
  74. package/src/layers/src/raster-tile/url.ts +10 -3
  75. package/src/localization/package.json +1 -1
  76. package/src/processors/package.json +7 -7
  77. package/src/reducers/package.json +16 -16
  78. package/src/schemas/package.json +7 -7
  79. package/src/styles/node_modules/.cache/terser-webpack-plugin/content-v2/sha512/21/4a/50f77069dbf70c6792dd82d4e149375a888e25ddddd3209e2db013be62091f79082291fa06eb518cccb111b09a778e2946c1fb7a27bb6e32f72da0ccf250 +1 -0
  80. package/src/styles/node_modules/.cache/terser-webpack-plugin/content-v2/sha512/41/e3/d873c0efff87c4438d34d09be942ff6877947926c2309949e1eea8a58722c9ebf1e9451b44f62996d3590f398318e2fd17f19613445810226c8354b7d746 +1 -0
  81. package/src/styles/node_modules/.cache/terser-webpack-plugin/index-v5/9d/95/efc8c9f0bdd09b105646cf5e34b067e621726ceeb296771ff7da9e2e03b4 +2 -0
  82. package/src/styles/node_modules/.cache/terser-webpack-plugin/index-v5/c5/b6/9c4bdb089acc30ac8a16a6b9b93898757537f7017b2f725ddb832b4614d6 +2 -0
  83. package/src/styles/package.json +2 -2
  84. package/src/styles/umd/keplergl.min.js +1 -1
  85. package/src/table/dist/tileset/vector-tile-utils.js +9 -5
  86. package/src/table/package.json +5 -5
  87. package/src/table/src/tileset/vector-tile-utils.ts +9 -6
  88. package/src/tasks/package.json +2 -2
  89. package/src/types/package.json +1 -1
  90. package/src/utils/dist/application-config.js +5 -5
  91. package/src/utils/dist/data-scale-utils.js +35 -16
  92. package/src/utils/dist/data-utils.d.ts +1 -0
  93. package/src/utils/dist/data-utils.js +2 -1
  94. package/src/utils/package.json +4 -4
  95. package/src/utils/src/application-config.ts +4 -6
  96. package/src/utils/src/data-scale-utils.ts +34 -21
  97. package/src/utils/src/data-utils.ts +1 -0
  98. package/umd/keplergl.min.js +1240 -1220
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="https://eng.uber.com/wp-content/uploads/2018/05/image4-3-768x493.png">](http://kepler.gl/#/demo)
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 | 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]. |
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
- declare const LinkRenderer: (props: any) => React.JSX.Element;
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.9",
4
+ "version": "3.2.0",
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.9",
106
+ "@kepler.gl/components": "3.2.0",
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",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kepler.gl/actions",
3
3
  "author": "Shan He <shan@uber.com>",
4
- "version": "3.1.9",
4
+ "version": "3.2.0",
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.9",
35
- "@kepler.gl/constants": "3.1.9",
36
- "@kepler.gl/layers": "3.1.9",
37
- "@kepler.gl/processors": "3.1.9",
38
- "@kepler.gl/table": "3.1.9",
39
- "@kepler.gl/types": "3.1.9",
40
- "@kepler.gl/utils": "3.1.9",
34
+ "@kepler.gl/cloud-providers": "3.2.0",
35
+ "@kepler.gl/constants": "3.2.0",
36
+ "@kepler.gl/layers": "3.2.0",
37
+ "@kepler.gl/processors": "3.2.0",
38
+ "@kepler.gl/table": "3.2.0",
39
+ "@kepler.gl/types": "3.2.0",
40
+ "@kepler.gl/utils": "3.2.0",
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.9",
4
+ "version": "3.2.0",
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.9",
38
- "@kepler.gl/constants": "3.1.9",
39
- "@kepler.gl/layers": "3.1.9",
40
- "@kepler.gl/table": "3.1.9",
41
- "@kepler.gl/types": "3.1.9",
42
- "@kepler.gl/utils": "3.1.9",
37
+ "@kepler.gl/components": "3.2.0",
38
+ "@kepler.gl/constants": "3.2.0",
39
+ "@kepler.gl/layers": "3.2.0",
40
+ "@kepler.gl/table": "3.2.0",
41
+ "@kepler.gl/types": "3.2.0",
42
+ "@kepler.gl/utils": "3.2.0",
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.9",
4
+ "version": "3.2.0",
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.9",
33
+ "@kepler.gl/types": "3.2.0",
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.9",
4
+ "version": "3.2.0",
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.9",
34
- "@kepler.gl/types": "3.1.9",
33
+ "@kepler.gl/constants": "3.2.0",
34
+ "@kepler.gl/types": "3.2.0",
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
- declare const LinkRenderer: (props: any) => React.JSX.Element;
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,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfcmVhY3QiLCJfaW50ZXJvcFJlcXVpcmVEZWZhdWx0IiwicmVxdWlyZSIsIkxpbmtSZW5kZXJlciIsInByb3BzIiwiY3JlYXRlRWxlbWVudCIsImhyZWYiLCJ0YXJnZXQiLCJyZWwiLCJjaGlsZHJlbiIsIl9kZWZhdWx0IiwiZXhwb3J0cyJdLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21tb24vbGluay1yZW5kZXJlci50c3giXSwic291cmNlc0NvbnRlbnQiOlsiLy8gU1BEWC1MaWNlbnNlLUlkZW50aWZpZXI6IE1JVFxuLy8gQ29weXJpZ2h0IGNvbnRyaWJ1dG9ycyB0byB0aGUga2VwbGVyLmdsIHByb2plY3RcblxuaW1wb3J0IFJlYWN0IGZyb20gJ3JlYWN0JztcblxuY29uc3QgTGlua1JlbmRlcmVyID0gcHJvcHMgPT4ge1xuICByZXR1cm4gKFxuICAgIDxhIGhyZWY9e3Byb3BzLmhyZWZ9IHRhcmdldD1cIl9ibGFua1wiIHJlbD1cIm5vb3BlbmVyIG5vcmVmZXJyZXJcIj5cbiAgICAgIHtwcm9wcy5jaGlsZHJlbn1cbiAgICA8L2E+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBMaW5rUmVuZGVyZXI7XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7QUFHQSxJQUFBQSxNQUFBLEdBQUFDLHNCQUFBLENBQUFDLE9BQUE7QUFIQTtBQUNBOztBQUlBLElBQU1DLFlBQVksR0FBRyxTQUFmQSxZQUFZQSxDQUFHQyxLQUFLLEVBQUk7RUFDNUIsb0JBQ0VKLE1BQUEsWUFBQUssYUFBQTtJQUFHQyxJQUFJLEVBQUVGLEtBQUssQ0FBQ0UsSUFBSztJQUFDQyxNQUFNLEVBQUMsUUFBUTtJQUFDQyxHQUFHLEVBQUM7RUFBcUIsR0FDM0RKLEtBQUssQ0FBQ0ssUUFDTixDQUFDO0FBRVIsQ0FBQztBQUFDLElBQUFDLFFBQUEsR0FBQUMsT0FBQSxjQUVhUixZQUFZIiwiaWdub3JlTGlzdCI6W119
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;