You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The spacing of various elements in the result list, including the gap between results, the gap between parts of a result, and the font sizes of different parts in a result.
22
+
*/
23
+
density?: ItemDisplayDensity;
24
+
/**
25
+
* The desired layout to use when displaying results. Layouts affect how many results to display per row and how visually distinct they are from each other.
26
+
*/
27
+
display?: ItemDisplayLayout;
28
+
/**
29
+
* The expected size of the image displayed for results.
30
+
*/
31
+
imageSize?: ItemDisplayImageSize;
32
+
/**
33
+
* The desired number of placeholders to display while the result list is loading.
* The `atomic-result-list` component is responsible for displaying query results by applying one or more result templates.
1785
-
*/
1786
-
interfaceAtomicResultList{
1787
-
/**
1788
-
* The spacing of various elements in the result list, including the gap between results, the gap between parts of a result, and the font sizes of different parts in a result.
1789
-
*/
1790
-
"density": ItemDisplayDensity;
1791
-
/**
1792
-
* The desired layout to use when displaying results. Layouts affect how many results to display per row and how visually distinct they are from each other.
1793
-
*/
1794
-
"display": ItemDisplayLayout;
1795
-
/**
1796
-
* The expected size of the image displayed in the results.
1797
-
*/
1798
-
"imageSize": ItemDisplayImageSize;
1799
-
/**
1800
-
* Sets a rendering function to bypass the standard HTML template mechanism for rendering results. You can use this function while working with web frameworks that don't use plain HTML syntax, e.g., React, Angular or Vue. Do not use this method if you integrate Atomic in a plain HTML deployment.
* The tabs on which this result list must not be displayed. This property should not be used at the same time as `tabs-included`. Set this property as a stringified JSON array, e.g., ```html <atomic-result-list tabs-excluded='["tabIDA", "tabIDB"]'></atomic-result-list> ``` If you don't set this property, the result list can be displayed on any tab. Otherwise, the result list won't be displayed on any of the specified tabs.
1806
-
*/
1807
-
"tabsExcluded": string[]|string;
1808
-
/**
1809
-
* The tabs on which the result list can be displayed. This property should not be used at the same time as `tabs-excluded`. Set this property as a stringified JSON array, e.g., ```html <atomic-result-list tabs-included='["tabIDA", "tabIDB"]'></atomic-result-list snippet> ``` If you don't set this property, the result list can be displayed on any tab. Otherwise, the result list can only be displayed on the specified tabs.
1810
-
*/
1811
-
"tabsIncluded": string[]|string;
1812
-
}
1813
1783
/**
1814
1784
* The `atomic-result-localized-text` component renders a target i18n localized string using the values of a target field.
1815
1785
* Given this i18n configuration:
@@ -3270,15 +3240,6 @@ declare global {
3270
3240
prototype: HTMLAtomicResultLinkElement;
3271
3241
new(): HTMLAtomicResultLinkElement;
3272
3242
};
3273
-
/**
3274
-
* The `atomic-result-list` component is responsible for displaying query results by applying one or more result templates.
* The `atomic-result-list` component is responsible for displaying query results by applying one or more result templates.
5479
-
*/
5480
-
interfaceAtomicResultList{
5481
-
/**
5482
-
* The spacing of various elements in the result list, including the gap between results, the gap between parts of a result, and the font sizes of different parts in a result.
5483
-
*/
5484
-
"density"?: ItemDisplayDensity;
5485
-
/**
5486
-
* The desired layout to use when displaying results. Layouts affect how many results to display per row and how visually distinct they are from each other.
5487
-
*/
5488
-
"display"?: ItemDisplayLayout;
5489
-
/**
5490
-
* The expected size of the image displayed in the results.
5491
-
*/
5492
-
"imageSize"?: ItemDisplayImageSize;
5493
-
/**
5494
-
* The tabs on which this result list must not be displayed. This property should not be used at the same time as `tabs-included`. Set this property as a stringified JSON array, e.g., ```html <atomic-result-list tabs-excluded='["tabIDA", "tabIDB"]'></atomic-result-list> ``` If you don't set this property, the result list can be displayed on any tab. Otherwise, the result list won't be displayed on any of the specified tabs.
5495
-
*/
5496
-
"tabsExcluded"?: string[]|string;
5497
-
/**
5498
-
* The tabs on which the result list can be displayed. This property should not be used at the same time as `tabs-excluded`. Set this property as a stringified JSON array, e.g., ```html <atomic-result-list tabs-included='["tabIDA", "tabIDB"]'></atomic-result-list snippet> ``` If you don't set this property, the result list can be displayed on any tab. Otherwise, the result list can only be displayed on the specified tabs.
5499
-
*/
5500
-
"tabsIncluded"?: string[]|string;
5501
-
}
5502
5437
/**
5503
5438
* The `atomic-result-localized-text` component renders a target i18n localized string using the values of a target field.
0 commit comments