instantsearch.js 4.77.1 → 4.77.3
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.
- package/cjs/lib/version.js +1 -1
- package/dist/instantsearch.development.d.ts +36 -36
- package/dist/instantsearch.development.js +12 -3
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +36 -36
- package/dist/instantsearch.production.min.d.ts +36 -36
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/connectors/frequently-bought-together/connectFrequentlyBoughtTogether.d.ts +4 -4
- package/es/connectors/looking-similar/connectLookingSimilar.d.ts +4 -4
- package/es/connectors/related-products/connectRelatedProducts.d.ts +4 -4
- package/es/connectors/trending-items/connectTrendingItems.d.ts +4 -4
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/es/widgets/frequently-bought-together/frequently-bought-together.d.ts +7 -7
- package/es/widgets/looking-similar/looking-similar.d.ts +7 -7
- package/es/widgets/related-products/related-products.d.ts +7 -7
- package/es/widgets/trending-items/trending-items.d.ts +7 -7
- package/package.json +6 -6
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { SendEventForHits } from '../../lib/utils';
|
|
2
|
-
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, AlgoliaHit } from '../../types';
|
|
2
|
+
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, Hit, AlgoliaHit } from '../../types';
|
|
3
3
|
import type { PlainSearchParameters } from 'algoliasearch-helper';
|
|
4
4
|
export type FrequentlyBoughtTogetherRenderState<THit extends NonNullable<object> = BaseHit> = {
|
|
5
5
|
/**
|
|
6
6
|
* The matched recommendations from Algolia API.
|
|
7
7
|
*/
|
|
8
|
-
items: Array<
|
|
8
|
+
items: Array<Hit<THit>>;
|
|
9
9
|
/**
|
|
10
10
|
* Sends an event to the Insights middleware.
|
|
11
11
|
*/
|
|
@@ -37,7 +37,7 @@ export type FrequentlyBoughtTogetherConnectorParams<THit extends NonNullable<obj
|
|
|
37
37
|
/**
|
|
38
38
|
* Function to transform the items passed to the templates.
|
|
39
39
|
*/
|
|
40
|
-
transformItems?: TransformItems<
|
|
40
|
+
transformItems?: TransformItems<Hit<THit>, {
|
|
41
41
|
results: RecommendResponse<AlgoliaHit<THit>>;
|
|
42
42
|
}>;
|
|
43
43
|
};
|
|
@@ -157,7 +157,7 @@ declare const _default: <TWidgetParams extends UnknownWidgetParams>(renderFn: Re
|
|
|
157
157
|
} & {
|
|
158
158
|
results: RecommendResponse<any>;
|
|
159
159
|
})): {
|
|
160
|
-
items:
|
|
160
|
+
items: Hit<THit>[];
|
|
161
161
|
widgetParams: TWidgetParams & FrequentlyBoughtTogetherConnectorParams<THit>;
|
|
162
162
|
sendEvent: SendEventForHits;
|
|
163
163
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { SendEventForHits } from '../../lib/utils';
|
|
2
|
-
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, AlgoliaHit } from '../../types';
|
|
2
|
+
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, Hit, AlgoliaHit } from '../../types';
|
|
3
3
|
import type { PlainSearchParameters } from 'algoliasearch-helper';
|
|
4
4
|
export type LookingSimilarRenderState<THit extends NonNullable<object> = BaseHit> = {
|
|
5
5
|
/**
|
|
6
6
|
* The matched recommendations from the Algolia API.
|
|
7
7
|
*/
|
|
8
|
-
items: Array<
|
|
8
|
+
items: Array<Hit<THit>>;
|
|
9
9
|
/**
|
|
10
10
|
* Sends an event to the Insights middleware.
|
|
11
11
|
*/
|
|
@@ -41,7 +41,7 @@ export type LookingSimilarConnectorParams<THit extends NonNullable<object> = Bas
|
|
|
41
41
|
/**
|
|
42
42
|
* Function to transform the items passed to the templates.
|
|
43
43
|
*/
|
|
44
|
-
transformItems?: TransformItems<
|
|
44
|
+
transformItems?: TransformItems<Hit<THit>, {
|
|
45
45
|
results: RecommendResponse<AlgoliaHit<THit>>;
|
|
46
46
|
}>;
|
|
47
47
|
};
|
|
@@ -161,7 +161,7 @@ declare const _default: <TWidgetParams extends UnknownWidgetParams>(renderFn: Re
|
|
|
161
161
|
} & {
|
|
162
162
|
results: RecommendResponse<any>;
|
|
163
163
|
})): {
|
|
164
|
-
items:
|
|
164
|
+
items: Hit<THit>[];
|
|
165
165
|
widgetParams: TWidgetParams & LookingSimilarConnectorParams<THit>;
|
|
166
166
|
sendEvent: SendEventForHits;
|
|
167
167
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { SendEventForHits } from '../../lib/utils';
|
|
2
|
-
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, AlgoliaHit } from '../../types';
|
|
2
|
+
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, Hit, AlgoliaHit } from '../../types';
|
|
3
3
|
import type { PlainSearchParameters } from 'algoliasearch-helper';
|
|
4
4
|
export type RelatedProductsRenderState<THit extends NonNullable<object> = BaseHit> = {
|
|
5
5
|
/**
|
|
6
6
|
* The matched recommendations from the Algolia API.
|
|
7
7
|
*/
|
|
8
|
-
items: Array<
|
|
8
|
+
items: Array<Hit<THit>>;
|
|
9
9
|
/**
|
|
10
10
|
* Sends an event to the Insights middleware.
|
|
11
11
|
*/
|
|
@@ -41,7 +41,7 @@ export type RelatedProductsConnectorParams<THit extends NonNullable<object> = Ba
|
|
|
41
41
|
/**
|
|
42
42
|
* Function to transform the items passed to the templates.
|
|
43
43
|
*/
|
|
44
|
-
transformItems?: TransformItems<
|
|
44
|
+
transformItems?: TransformItems<Hit<THit>, {
|
|
45
45
|
results: RecommendResponse<AlgoliaHit<THit>>;
|
|
46
46
|
}>;
|
|
47
47
|
};
|
|
@@ -161,7 +161,7 @@ declare const _default: <TWidgetParams extends UnknownWidgetParams>(renderFn: Re
|
|
|
161
161
|
} & {
|
|
162
162
|
results: RecommendResponse<any>;
|
|
163
163
|
})): {
|
|
164
|
-
items:
|
|
164
|
+
items: Hit<BaseHit>[] | Hit<THit>[];
|
|
165
165
|
widgetParams: TWidgetParams & RelatedProductsConnectorParams<THit>;
|
|
166
166
|
sendEvent: SendEventForHits;
|
|
167
167
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { SendEventForHits } from '../../lib/utils';
|
|
2
|
-
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, AlgoliaHit } from '../../types';
|
|
2
|
+
import type { Connector, TransformItems, BaseHit, Renderer, Unmounter, UnknownWidgetParams, RecommendResponse, Hit, AlgoliaHit } from '../../types';
|
|
3
3
|
import type { PlainSearchParameters } from 'algoliasearch-helper';
|
|
4
4
|
export type TrendingItemsRenderState<THit extends NonNullable<object> = BaseHit> = {
|
|
5
5
|
/**
|
|
6
6
|
* The matched recommendations from the Algolia API.
|
|
7
7
|
*/
|
|
8
|
-
items: Array<
|
|
8
|
+
items: Array<Hit<THit>>;
|
|
9
9
|
/**
|
|
10
10
|
* Sends an event to the Insights middleware.
|
|
11
11
|
*/
|
|
@@ -49,7 +49,7 @@ export type TrendingItemsConnectorParams<THit extends NonNullable<object> = Base
|
|
|
49
49
|
/**
|
|
50
50
|
* Function to transform the items passed to the templates.
|
|
51
51
|
*/
|
|
52
|
-
transformItems?: TransformItems<
|
|
52
|
+
transformItems?: TransformItems<Hit<THit>, {
|
|
53
53
|
results: RecommendResponse<AlgoliaHit<THit>>;
|
|
54
54
|
}>;
|
|
55
55
|
};
|
|
@@ -169,7 +169,7 @@ declare const _default: <TWidgetParams extends UnknownWidgetParams>(renderFn: Re
|
|
|
169
169
|
} & {
|
|
170
170
|
results: RecommendResponse<any>;
|
|
171
171
|
})): {
|
|
172
|
-
items:
|
|
172
|
+
items: Hit<THit>[];
|
|
173
173
|
widgetParams: TWidgetParams & TrendingItemsConnectorParams<THit>;
|
|
174
174
|
sendEvent: SendEventForHits;
|
|
175
175
|
};
|
package/es/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.77.
|
|
1
|
+
declare const _default: "4.77.3";
|
|
2
2
|
export default _default;
|
package/es/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '4.77.
|
|
1
|
+
export default '4.77.3';
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
|
|
2
2
|
import type { FrequentlyBoughtTogetherWidgetDescription, FrequentlyBoughtTogetherConnectorParams } from '../../connectors/frequently-bought-together/connectFrequentlyBoughtTogether';
|
|
3
|
-
import type { Template, WidgetFactory,
|
|
3
|
+
import type { Template, WidgetFactory, BaseHit, RecommendResponse, Hit, TemplateWithBindEvent } from '../../types';
|
|
4
4
|
import type { RecommendClassNames, FrequentlyBoughtTogetherProps as FrequentlyBoughtTogetherUiProps } from 'instantsearch-ui-components';
|
|
5
5
|
export type FrequentlyBoughtTogetherCSSClasses = Partial<RecommendClassNames>;
|
|
6
6
|
export type FrequentlyBoughtTogetherTemplates<THit extends NonNullable<object> = BaseHit> = Partial<{
|
|
7
7
|
/**
|
|
8
8
|
* Template to use when there are no results.
|
|
9
9
|
*/
|
|
10
|
-
empty: Template<RecommendResponse<
|
|
10
|
+
empty: Template<RecommendResponse<Hit<THit>>>;
|
|
11
11
|
/**
|
|
12
12
|
* Template to use for the header of the widget.
|
|
13
13
|
*/
|
|
14
|
-
header: Template<Pick<Parameters<NonNullable<FrequentlyBoughtTogetherUiProps<
|
|
14
|
+
header: Template<Pick<Parameters<NonNullable<FrequentlyBoughtTogetherUiProps<Hit<THit>>['headerComponent']>>[0], 'items'> & {
|
|
15
15
|
cssClasses: RecommendClassNames;
|
|
16
16
|
}>;
|
|
17
17
|
/**
|
|
18
18
|
* Template to use for each result. This template will receive an object containing a single record.
|
|
19
19
|
*/
|
|
20
|
-
item: TemplateWithBindEvent<
|
|
20
|
+
item: TemplateWithBindEvent<Hit<THit>>;
|
|
21
21
|
/**
|
|
22
22
|
* Template to use to wrap all items.
|
|
23
23
|
*/
|
|
24
|
-
layout: Template<Pick<Parameters<NonNullable<FrequentlyBoughtTogetherUiProps<
|
|
24
|
+
layout: Template<Pick<Parameters<NonNullable<FrequentlyBoughtTogetherUiProps<Hit<THit>>['layout']>>[0], 'items'> & {
|
|
25
25
|
templates: {
|
|
26
|
-
item: FrequentlyBoughtTogetherUiProps<
|
|
26
|
+
item: FrequentlyBoughtTogetherUiProps<Hit<THit>>['itemComponent'];
|
|
27
27
|
};
|
|
28
28
|
cssClasses: Pick<FrequentlyBoughtTogetherCSSClasses, 'list' | 'item'>;
|
|
29
29
|
}>;
|
|
@@ -227,7 +227,7 @@ declare const _default: <THit extends NonNullable<object> = BaseHit>(widgetParam
|
|
|
227
227
|
} & {
|
|
228
228
|
results: RecommendResponse<any>;
|
|
229
229
|
})): {
|
|
230
|
-
items:
|
|
230
|
+
items: Hit<THit>[];
|
|
231
231
|
widgetParams: Partial<FrequentlyBoughtTogetherWidgetParams<BaseHit>> & FrequentlyBoughtTogetherConnectorParams<THit>;
|
|
232
232
|
sendEvent: import("../../lib/utils").SendEventForHits;
|
|
233
233
|
};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
|
|
2
2
|
import type { LookingSimilarWidgetDescription, LookingSimilarConnectorParams } from '../../connectors/looking-similar/connectLookingSimilar';
|
|
3
|
-
import type { Template, WidgetFactory,
|
|
3
|
+
import type { Template, WidgetFactory, BaseHit, RecommendResponse, Hit, TemplateWithBindEvent } from '../../types';
|
|
4
4
|
import type { RecommendClassNames, LookingSimilarProps as LookingSimilarUiProps } from 'instantsearch-ui-components';
|
|
5
5
|
export type LookingSimilarCSSClasses = Partial<RecommendClassNames>;
|
|
6
6
|
export type LookingSimilarTemplates<THit extends NonNullable<object> = BaseHit> = Partial<{
|
|
7
7
|
/**
|
|
8
8
|
* Template to use when there are no results.
|
|
9
9
|
*/
|
|
10
|
-
empty: Template<RecommendResponse<
|
|
10
|
+
empty: Template<RecommendResponse<Hit<THit>>>;
|
|
11
11
|
/**
|
|
12
12
|
* Template to use for the header of the widget.
|
|
13
13
|
*/
|
|
14
|
-
header: Template<Pick<Parameters<NonNullable<LookingSimilarUiProps<
|
|
14
|
+
header: Template<Pick<Parameters<NonNullable<LookingSimilarUiProps<Hit<THit>>['headerComponent']>>[0], 'items'> & {
|
|
15
15
|
cssClasses: RecommendClassNames;
|
|
16
16
|
}>;
|
|
17
17
|
/**
|
|
18
18
|
* Template to use for each result. This template will receive an object containing a single record.
|
|
19
19
|
*/
|
|
20
|
-
item: TemplateWithBindEvent<
|
|
20
|
+
item: TemplateWithBindEvent<Hit<THit>>;
|
|
21
21
|
/**
|
|
22
22
|
* Template to use to wrap all items.
|
|
23
23
|
*/
|
|
24
|
-
layout: Template<Pick<Parameters<NonNullable<LookingSimilarUiProps<
|
|
24
|
+
layout: Template<Pick<Parameters<NonNullable<LookingSimilarUiProps<Hit<THit>>['layout']>>[0], 'items'> & {
|
|
25
25
|
templates: {
|
|
26
|
-
item: LookingSimilarUiProps<
|
|
26
|
+
item: LookingSimilarUiProps<Hit<THit>>['itemComponent'];
|
|
27
27
|
};
|
|
28
28
|
cssClasses: Pick<LookingSimilarCSSClasses, 'list' | 'item'>;
|
|
29
29
|
}>;
|
|
@@ -227,7 +227,7 @@ declare const _default: <THit extends NonNullable<object> = BaseHit>(widgetParam
|
|
|
227
227
|
} & {
|
|
228
228
|
results: RecommendResponse<any>;
|
|
229
229
|
})): {
|
|
230
|
-
items:
|
|
230
|
+
items: Hit<THit>[];
|
|
231
231
|
widgetParams: Partial<LookingSimilarWidgetParams<BaseHit>> & LookingSimilarConnectorParams<THit>;
|
|
232
232
|
sendEvent: import("../../lib/utils").SendEventForHits;
|
|
233
233
|
};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
|
|
2
2
|
import type { RelatedProductsWidgetDescription, RelatedProductsConnectorParams } from '../../connectors/related-products/connectRelatedProducts';
|
|
3
|
-
import type { Template, WidgetFactory,
|
|
3
|
+
import type { Template, WidgetFactory, Hit, BaseHit, RecommendResponse, TemplateWithBindEvent } from '../../types';
|
|
4
4
|
import type { RecommendClassNames, RelatedProductsProps as RelatedProductsUiProps } from 'instantsearch-ui-components';
|
|
5
5
|
export type RelatedProductsCSSClasses = Partial<RecommendClassNames>;
|
|
6
6
|
export type RelatedProductsTemplates<THit extends NonNullable<object> = BaseHit> = Partial<{
|
|
7
7
|
/**
|
|
8
8
|
* Template to use when there are no results.
|
|
9
9
|
*/
|
|
10
|
-
empty: Template<RecommendResponse<
|
|
10
|
+
empty: Template<RecommendResponse<Hit<THit>>>;
|
|
11
11
|
/**
|
|
12
12
|
* Template to use for the header of the widget.
|
|
13
13
|
*/
|
|
14
|
-
header: Template<Pick<Parameters<NonNullable<RelatedProductsUiProps<
|
|
14
|
+
header: Template<Pick<Parameters<NonNullable<RelatedProductsUiProps<Hit<THit>>['headerComponent']>>[0], 'items'> & {
|
|
15
15
|
cssClasses: RecommendClassNames;
|
|
16
16
|
}>;
|
|
17
17
|
/**
|
|
18
18
|
* Template to use for each result. This template will receive an object containing a single record.
|
|
19
19
|
*/
|
|
20
|
-
item: TemplateWithBindEvent<
|
|
20
|
+
item: TemplateWithBindEvent<Hit<THit>>;
|
|
21
21
|
/**
|
|
22
22
|
* Template to use to wrap all items.
|
|
23
23
|
*/
|
|
24
|
-
layout: Template<Pick<Parameters<NonNullable<RelatedProductsUiProps<
|
|
24
|
+
layout: Template<Pick<Parameters<NonNullable<RelatedProductsUiProps<Hit<THit>>['layout']>>[0], 'items'> & {
|
|
25
25
|
templates: {
|
|
26
|
-
item: RelatedProductsUiProps<
|
|
26
|
+
item: RelatedProductsUiProps<Hit<THit>>['itemComponent'];
|
|
27
27
|
};
|
|
28
28
|
cssClasses: Pick<RelatedProductsCSSClasses, 'list' | 'item'>;
|
|
29
29
|
}>;
|
|
@@ -227,7 +227,7 @@ declare const _default: <THit extends NonNullable<object> = BaseHit>(widgetParam
|
|
|
227
227
|
} & {
|
|
228
228
|
results: RecommendResponse<any>;
|
|
229
229
|
})): {
|
|
230
|
-
items:
|
|
230
|
+
items: Hit<BaseHit>[] | Hit<THit>[];
|
|
231
231
|
widgetParams: Partial<RelatedProductsWidgetParams<BaseHit>> & RelatedProductsConnectorParams<THit>;
|
|
232
232
|
sendEvent: import("../../lib/utils").SendEventForHits;
|
|
233
233
|
};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
|
|
2
2
|
import type { TrendingItemsWidgetDescription, TrendingItemsConnectorParams } from '../../connectors/trending-items/connectTrendingItems';
|
|
3
|
-
import type { Template, WidgetFactory,
|
|
3
|
+
import type { Template, WidgetFactory, BaseHit, RecommendResponse, Hit, TemplateWithBindEvent } from '../../types';
|
|
4
4
|
import type { RecommendClassNames, TrendingItemsProps as TrendingItemsUiProps } from 'instantsearch-ui-components';
|
|
5
5
|
export type TrendingItemsCSSClasses = Partial<RecommendClassNames>;
|
|
6
6
|
export type TrendingItemsTemplates<THit extends NonNullable<object> = BaseHit> = Partial<{
|
|
7
7
|
/**
|
|
8
8
|
* Template to use when there are no results.
|
|
9
9
|
*/
|
|
10
|
-
empty: Template<RecommendResponse<
|
|
10
|
+
empty: Template<RecommendResponse<Hit<THit>>>;
|
|
11
11
|
/**
|
|
12
12
|
* Template to use for the header of the widget.
|
|
13
13
|
*/
|
|
14
|
-
header: Template<Pick<Parameters<NonNullable<TrendingItemsUiProps<
|
|
14
|
+
header: Template<Pick<Parameters<NonNullable<TrendingItemsUiProps<Hit<THit>>['headerComponent']>>[0], 'items'> & {
|
|
15
15
|
cssClasses: RecommendClassNames;
|
|
16
16
|
}>;
|
|
17
17
|
/**
|
|
18
18
|
* Template to use for each result. This template will receive an object containing a single record.
|
|
19
19
|
*/
|
|
20
|
-
item: TemplateWithBindEvent<
|
|
20
|
+
item: TemplateWithBindEvent<Hit<THit>>;
|
|
21
21
|
/**
|
|
22
22
|
* Template to use to wrap all items.
|
|
23
23
|
*/
|
|
24
|
-
layout: Template<Pick<Parameters<NonNullable<TrendingItemsUiProps<
|
|
24
|
+
layout: Template<Pick<Parameters<NonNullable<TrendingItemsUiProps<Hit<THit>>['layout']>>[0], 'items'> & {
|
|
25
25
|
templates: {
|
|
26
|
-
item: TrendingItemsUiProps<
|
|
26
|
+
item: TrendingItemsUiProps<Hit<THit>>['itemComponent'];
|
|
27
27
|
};
|
|
28
28
|
cssClasses: Pick<TrendingItemsCSSClasses, 'list' | 'item'>;
|
|
29
29
|
}>;
|
|
@@ -227,7 +227,7 @@ declare const _default: <THit extends NonNullable<object> = BaseHit>(widgetParam
|
|
|
227
227
|
} & {
|
|
228
228
|
results: RecommendResponse<any>;
|
|
229
229
|
})): {
|
|
230
|
-
items:
|
|
230
|
+
items: Hit<THit>[];
|
|
231
231
|
widgetParams: Partial<TrendingItemsWidgetParams<BaseHit>> & TrendingItemsConnectorParams<THit>;
|
|
232
232
|
sendEvent: import("../../lib/utils").SendEventForHits;
|
|
233
233
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "instantsearch.js",
|
|
3
|
-
"version": "4.77.
|
|
3
|
+
"version": "4.77.3",
|
|
4
4
|
"description": "InstantSearch.js is a JavaScript library for building performant and instant search experiences with Algolia.",
|
|
5
5
|
"homepage": "https://www.algolia.com/doc/guides/building-search-ui/what-is-instantsearch/js/",
|
|
6
6
|
"types": "es/index.d.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@types/google.maps": "^3.55.12",
|
|
32
32
|
"@types/hogan.js": "^3.0.0",
|
|
33
33
|
"@types/qs": "^6.5.3",
|
|
34
|
-
"algoliasearch-helper": "3.
|
|
34
|
+
"algoliasearch-helper": "3.24.1",
|
|
35
35
|
"hogan.js": "^3.0.2",
|
|
36
36
|
"htm": "^3.0.0",
|
|
37
37
|
"instantsearch-ui-components": "0.11.1",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"watch:es": "yarn --silent build:es:base --watch"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@instantsearch/mocks": "1.
|
|
60
|
-
"@instantsearch/tests": "1.
|
|
61
|
-
"@instantsearch/testutils": "1.
|
|
59
|
+
"@instantsearch/mocks": "1.70.0",
|
|
60
|
+
"@instantsearch/tests": "1.70.0",
|
|
61
|
+
"@instantsearch/testutils": "1.59.0",
|
|
62
62
|
"@storybook/html": "5.3.9",
|
|
63
63
|
"@types/scriptjs": "0.0.2",
|
|
64
64
|
"algoliasearch": "5.1.1",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"scriptjs": "2.5.9",
|
|
67
67
|
"webpack": "4.47.0"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "7bba206a039bd2f86ce2936cd48e8b2cac2f2928"
|
|
70
70
|
}
|