Skip to content

Commit e7aaa8c

Browse files
author
Eunjae Lee
authoredFeb 25, 2021
fix(smartSort): export the widget and the connector (#4663)
* fix(smartSort): export the widget and the connector * chore: update bundlesize
1 parent f681a75 commit e7aaa8c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
"bundlesize": [
144144
{
145145
"path": "./dist/instantsearch.production.min.js",
146-
"maxSize": "66.50 kB"
146+
"maxSize": "67.00 kB"
147147
},
148148
{
149149
"path": "./dist/instantsearch.development.js",

‎src/connectors/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ export { default as EXPERIMENTAL_connectConfigureRelatedItems } from './configur
2424
export { default as connectAutocomplete } from './autocomplete/connectAutocomplete';
2525
export { default as connectQueryRules } from './query-rules/connectQueryRules';
2626
export { default as connectVoiceSearch } from './voice-search/connectVoiceSearch';
27+
export { default as connectSmartSort } from './smart-sort/connectSmartSort';

‎src/widgets/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ export { default as queryRuleCustomData } from './query-rule-custom-data/query-r
2828
export { default as queryRuleContext } from './query-rule-context/query-rule-context';
2929
export { default as index } from './index/index';
3030
export { default as places } from './places/places';
31+
export { default as smartSort } from './smart-sort/smart-sort';

0 commit comments

Comments
 (0)
Please sign in to comment.