@sledge-app/react-instant-search 0.0.58 → 0.0.60
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/dist/components/Global/OtherIndexLists.d.ts +3 -1
- package/dist/components/Global/OtherIndexLists.d.ts.map +1 -1
- package/dist/components/Global/SearchViewMoreResult.d.ts +3 -1
- package/dist/components/Global/SearchViewMoreResult.d.ts.map +1 -1
- package/dist/components/Global/SuggestionKeywordLists.d.ts +3 -1
- package/dist/components/Global/SuggestionKeywordLists.d.ts.map +1 -1
- package/dist/components/Global/index.d.ts +9 -3
- package/dist/components/Global/index.d.ts.map +1 -1
- package/dist/components/SearchIconWidget/SearchIconWidgetPopup.d.ts.map +1 -1
- package/dist/sledge-react-instant-search.cjs +1 -1
- package/dist/sledge-react-instant-search.cjs.map +1 -1
- package/dist/sledge-react-instant-search.js +73 -37
- package/dist/sledge-react-instant-search.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
export declare const OtherIndexLists: ({ listsComponent, name, items, isComponentJsVersion }: {
|
|
1
|
+
export declare const OtherIndexLists: ({ listsComponent, name, items, isComponentJsVersion, showPopupComponent, setShowPopupComponent }: {
|
|
2
2
|
listsComponent?: any;
|
|
3
3
|
name?: string | undefined;
|
|
4
4
|
items?: any[] | undefined;
|
|
5
5
|
isComponentJsVersion?: any;
|
|
6
|
+
showPopupComponent?: boolean | undefined;
|
|
7
|
+
setShowPopupComponent?(value: boolean): void;
|
|
6
8
|
}) => any;
|
|
7
9
|
//# sourceMappingURL=OtherIndexLists.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OtherIndexLists.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/OtherIndexLists.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;
|
|
1
|
+
{"version":3,"file":"OtherIndexLists.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/OtherIndexLists.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe;qBAQP,GAAG;;;2BAGG,GAAG;;kCAEI,OAAO,GAAG,IAAI;SAkC/C,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export declare const SearchViewMoreResult: ({ component, keyword, isComponentJsVersion }: {
|
|
1
|
+
export declare const SearchViewMoreResult: ({ component, keyword, isComponentJsVersion, showPopupComponent, setShowPopupComponent }: {
|
|
2
2
|
component?: any;
|
|
3
3
|
keyword?: string | undefined;
|
|
4
4
|
isComponentJsVersion?: any;
|
|
5
|
+
showPopupComponent?: boolean | undefined;
|
|
6
|
+
setShowPopupComponent?(value: boolean): void;
|
|
5
7
|
}) => any;
|
|
6
8
|
//# sourceMappingURL=SearchViewMoreResult.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchViewMoreResult.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/SearchViewMoreResult.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;
|
|
1
|
+
{"version":3,"file":"SearchViewMoreResult.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/SearchViewMoreResult.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;gBAOjB,GAAG;;2BAEQ,GAAG;;kCAEI,OAAO,GAAG,IAAI;SAe/C,CAAC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export declare const SuggestionKeywordLists: ({ listsComponent, keywords, isComponentJsVersion }: {
|
|
1
|
+
export declare const SuggestionKeywordLists: ({ listsComponent, keywords, isComponentJsVersion, showPopupComponent, setShowPopupComponent }: {
|
|
2
2
|
listsComponent?: any;
|
|
3
3
|
keywords?: any[] | undefined;
|
|
4
4
|
isComponentJsVersion?: any;
|
|
5
|
+
showPopupComponent?: boolean | undefined;
|
|
6
|
+
setShowPopupComponent?(value: boolean): void;
|
|
5
7
|
}) => any;
|
|
6
8
|
//# sourceMappingURL=SuggestionKeywordLists.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuggestionKeywordLists.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/SuggestionKeywordLists.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,sBAAsB;
|
|
1
|
+
{"version":3,"file":"SuggestionKeywordLists.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/SuggestionKeywordLists.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,sBAAsB;qBAOd,GAAG;;2BAEG,GAAG;;kCAEI,OAAO,GAAG,IAAI;SA6B/C,CAAC"}
|
|
@@ -1,19 +1,25 @@
|
|
|
1
1
|
export declare const Global: {
|
|
2
|
-
OtherIndexLists: ({ listsComponent, name, items, isComponentJsVersion }: {
|
|
2
|
+
OtherIndexLists: ({ listsComponent, name, items, isComponentJsVersion, showPopupComponent, setShowPopupComponent }: {
|
|
3
3
|
listsComponent?: any;
|
|
4
4
|
name?: string | undefined;
|
|
5
5
|
items?: any[] | undefined;
|
|
6
6
|
isComponentJsVersion?: any;
|
|
7
|
+
showPopupComponent?: boolean | undefined;
|
|
8
|
+
setShowPopupComponent?(value: boolean): void;
|
|
7
9
|
}) => any;
|
|
8
|
-
SuggestionKeywordLists: ({ listsComponent, keywords, isComponentJsVersion }: {
|
|
10
|
+
SuggestionKeywordLists: ({ listsComponent, keywords, isComponentJsVersion, showPopupComponent, setShowPopupComponent }: {
|
|
9
11
|
listsComponent?: any;
|
|
10
12
|
keywords?: any[] | undefined;
|
|
11
13
|
isComponentJsVersion?: any;
|
|
14
|
+
showPopupComponent?: boolean | undefined;
|
|
15
|
+
setShowPopupComponent?(value: boolean): void;
|
|
12
16
|
}) => any;
|
|
13
|
-
SearchViewMoreResult: ({ component, keyword, isComponentJsVersion }: {
|
|
17
|
+
SearchViewMoreResult: ({ component, keyword, isComponentJsVersion, showPopupComponent, setShowPopupComponent }: {
|
|
14
18
|
component?: any;
|
|
15
19
|
keyword?: string | undefined;
|
|
16
20
|
isComponentJsVersion?: any;
|
|
21
|
+
showPopupComponent?: boolean | undefined;
|
|
22
|
+
setShowPopupComponent?(value: boolean): void;
|
|
17
23
|
}) => any;
|
|
18
24
|
};
|
|
19
25
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Global/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;CAIlB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchIconWidgetPopup.d.ts","sourceRoot":"","sources":["../../../../../src/components/SearchIconWidget/SearchIconWidgetPopup.tsx"],"names":[],"mappings":"AAQA,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,kCAAkC,CAAC,KAAK,EAAE;YACtC,gBAAgB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YACrD,kBAAkB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YACvD,qBAAqB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YAC1D,oBAAoB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YACzD,WAAW,CAAC,EAAE,GAAG,CAAC;YAClB,qBAAqB,CAAC,EAAE,GAAG,CAAC;YAC5B,+BAA+B,CAAC,EAAE,GAAG,CAAC;YACtC,wBAAwB,CAAC,EAAE,GAAG,CAAC;YAC/B,6BAA6B,CAAC,EAAE,GAAG,CAAC;SACvC,GAAG,IAAI,CAAC;KACZ;CACJ;AAED,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"SearchIconWidgetPopup.d.ts","sourceRoot":"","sources":["../../../../../src/components/SearchIconWidget/SearchIconWidgetPopup.tsx"],"names":[],"mappings":"AAQA,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QACZ,kCAAkC,CAAC,KAAK,EAAE;YACtC,gBAAgB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YACrD,kBAAkB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YACvD,qBAAqB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YAC1D,oBAAoB,CAAC,CAAC,KAAK,EAAE,SAAS,GAAG,QAAQ,GAAG,IAAI,CAAC;YACzD,WAAW,CAAC,EAAE,GAAG,CAAC;YAClB,qBAAqB,CAAC,EAAE,GAAG,CAAC;YAC5B,+BAA+B,CAAC,EAAE,GAAG,CAAC;YACtC,wBAAwB,CAAC,EAAE,GAAG,CAAC;YAC/B,6BAA6B,CAAC,EAAE,GAAG,CAAC;SACvC,GAAG,IAAI,CAAC;KACZ;CACJ;AAED,eAAO,MAAM,qBAAqB,mBAiXjC,CAAC"}
|