This repository was archived by the owner on Dec 16, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -5737,7 +5737,7 @@ import {
57375737 Hits,
57385738 SearchBox,
57395739 Configure,
5740- ExperimentalDynamicWidgets ,
5740+ DynamicWidgets ,
57415741 RefinementList,
57425742 Pagination,
57435743 Highlight,
@@ -5767,10 +5767,10 @@ function App() {
57675767 <div className=\\"search-panel\\">
57685768 <div className=\\"search-panel__filters\\">
57695769 <Configure facets={[' *']} maxValuesPerFacet = { 20 } />
5770- <ExperimentalDynamicWidgets fallbackWidget = { RefinementList } >
5770+ <DynamicWidgets fallbackWidget = { RefinementList } >
57715771 <RefinementList attribute =\\"facet1\\" />
57725772 <RefinementList attribute =\\"facet2\\" />
5773- </ExperimentalDynamicWidgets >
5773+ </DynamicWidgets >
57745774 </div>
57755775
57765776 <div className =\\"search-panel__results\\">
@@ -7456,10 +7456,10 @@ exports[`Templates Vue InstantSearch File content: src/App.vue 1`] = `
74567456 <div class =\\"search-panel\\">
74577457 <div class =\\"search-panel__filters\\">
74587458 <ais-configure :facets=\\"['*']\\" :max-values-per-facet.camel=\\"20\\" />
7459- <ais-experimental- dynamic-widgets >
7459+ <ais-dynamic-widgets >
74607460 <ais-refinement-list attribute =\\"facet1\\" />
74617461 <ais-refinement-list attribute =\\"facet2\\" />
7462- </ais-experimental- dynamic-widgets >
7462+ </ais-dynamic-widgets >
74637463 </div>
74647464
74657465 <div class =\\"search-panel__results\\">
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module.exports = {
66 libraryName : 'react-instantsearch-dom' ,
77 supportedVersion : '>= 5.0.0 < 7.0.0' ,
88 flags : {
9- dynamicWidgets : '>=6.12 ' ,
9+ dynamicWidgets : '>=6.16 ' ,
1010 } ,
1111 templateName : 'react-instantsearch' ,
1212 appName : 'react-instantsearch-app' ,
Original file line number Diff line number Diff line change 66 SearchBox,
77 {{ #if flags.dynamicWidgets }}
88 Configure,
9- ExperimentalDynamicWidgets ,
9+ DynamicWidgets ,
1010 {{ /if }}
1111 {{ #if attributesForFaceting }}
1212 RefinementList,
@@ -42,11 +42,11 @@ function App() {
4242 <div className =" search-panel__filters" >
4343 {{ #if flags.dynamicWidgets }}
4444 <Configure facets = {[' *' ]} maxValuesPerFacet = {20} />
45- <ExperimentalDynamicWidgets fallbackWidget = {RefinementList}>
45+ <DynamicWidgets fallbackWidget = {RefinementList}>
4646 {{ #each attributesForFaceting }}
4747 <RefinementList attribute =" {{ this }} " />
4848 {{ /each }}
49- </ExperimentalDynamicWidgets >
49+ </DynamicWidgets >
5050 {{ else }}
5151 {{ #each attributesForFaceting }}
5252 <RefinementList attribute =" {{ this }} " />
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module.exports = {
66 libraryName : 'vue-instantsearch' ,
77 supportedVersion : '>= 3.0.0 < 5.0.0' ,
88 flags : {
9- dynamicWidgets : '>=3.8 .0' ,
9+ dynamicWidgets : '>=4.2 .0' ,
1010 } ,
1111 templateName : 'vue-instantsearch' ,
1212 appName : 'vue-instantsearch-app' ,
Original file line number Diff line number Diff line change 2020 <div class =" search-panel__filters" >
2121 {{#if flags.dynamicWidgets}}
2222 <ais-configure :facets =" ['*']" :max-values-per-facet.camel =" 20" />
23- <ais-experimental- dynamic-widgets >
23+ <ais-dynamic-widgets >
2424 {{#each attributesForFaceting}}
2525 <ais-refinement-list attribute =" {{this}}" />
2626 {{/each}}
27- </ais-experimental- dynamic-widgets >
27+ </ais-dynamic-widgets >
2828 {{else}}
2929 {{#each attributesForFaceting}}
3030 <ais-refinement-list attribute =" {{this}}" />
You can’t perform that action at this time.
0 commit comments