Skip to content

Commit

Permalink
[react-widgets][react-redux] Export missing types from v2.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy committed Jan 30, 2024
1 parent 7072b62 commit 74cd6cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
12 changes: 1 addition & 11 deletions packages/react-redux/src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
export * from './slices/cartoSlice';
export * from './slices/oauthSlice';

export {
InitialCartoState,
CartoState,
InitialOauthState,
OauthState,
ViewState,
InitialCarto3State,
Source,
SourceFilters
} from './types';
export * from './types';
2 changes: 1 addition & 1 deletion packages/react-widgets/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export { default as BarWidget } from './widgets/BarWidget';
export { default as useSourceFilters } from './hooks/useSourceFilters';
export { default as FeatureSelectionWidget } from './widgets/FeatureSelectionWidget';
export { default as FeatureSelectionLayer } from './layers/FeatureSelectionLayer';
export { default as useGeocoderWidgetController } from './hooks/useGeocoderWidgetController';
export { default as useGeocoderWidgetController, setGeocoderResult } from './hooks/useGeocoderWidgetController';
export { WidgetState, WidgetStateType } from './types';
export { isRemoteCalculationSupported as _isRemoteCalculationSupported, sourceAndFiltersToSQL as _sourceAndFiltersToSQL } from './models/utils';
5 changes: 4 additions & 1 deletion packages/react-widgets/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ export {
} from './models';
export { default as useSourceFilters } from './hooks/useSourceFilters';
export { default as FeatureSelectionLayer } from './layers/FeatureSelectionLayer';
export { default as useGeocoderWidgetController } from './hooks/useGeocoderWidgetController';
export {
default as useGeocoderWidgetController,
setGeocoderResult
} from './hooks/useGeocoderWidgetController';
export { WidgetStateType } from './hooks/useWidgetFetch';
export {
isRemoteCalculationSupported as _isRemoteCalculationSupported,
Expand Down

0 comments on commit 74cd6cc

Please sign in to comment.