From e7aaa8ceb47b8cafc3a3a323ebe47f45f3841ba4 Mon Sep 17 00:00:00 2001 From: Eunjae Lee Date: Thu, 25 Feb 2021 16:55:30 +0100 Subject: [PATCH] fix(smartSort): export the widget and the connector (#4663) * fix(smartSort): export the widget and the connector * chore: update bundlesize --- package.json | 2 +- src/connectors/index.ts | 1 + src/widgets/index.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 94bb856f2b..74de7b1d8d 100644 --- a/package.json +++ b/package.json @@ -143,7 +143,7 @@ "bundlesize": [ { "path": "./dist/instantsearch.production.min.js", - "maxSize": "66.50 kB" + "maxSize": "67.00 kB" }, { "path": "./dist/instantsearch.development.js", diff --git a/src/connectors/index.ts b/src/connectors/index.ts index 94f9a34967..a79ebf3ac0 100644 --- a/src/connectors/index.ts +++ b/src/connectors/index.ts @@ -24,3 +24,4 @@ export { default as EXPERIMENTAL_connectConfigureRelatedItems } from './configur export { default as connectAutocomplete } from './autocomplete/connectAutocomplete'; export { default as connectQueryRules } from './query-rules/connectQueryRules'; export { default as connectVoiceSearch } from './voice-search/connectVoiceSearch'; +export { default as connectSmartSort } from './smart-sort/connectSmartSort'; diff --git a/src/widgets/index.ts b/src/widgets/index.ts index 26862e1358..f0794b9d14 100644 --- a/src/widgets/index.ts +++ b/src/widgets/index.ts @@ -28,3 +28,4 @@ export { default as queryRuleCustomData } from './query-rule-custom-data/query-r export { default as queryRuleContext } from './query-rule-context/query-rule-context'; export { default as index } from './index/index'; export { default as places } from './places/places'; +export { default as smartSort } from './smart-sort/smart-sort';