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 `atomic-sort-expression` component defines a sort expression. This component must be inside an `atomic-sort-dropdown` component.
1786
-
*/
1787
-
interfaceAtomicSortExpression{
1788
-
/**
1789
-
* One or more sort criteria that the end user can select or toggle between. The available sort criteria are: * `relevancy` * `date ascending`/`date descending` * `qre` * `<FIELD> ascending`/`<FIELD> descending`, where you replace `<FIELD>` with the name of a sortable field in your index (`criteria="size ascending"`). You can specify multiple sort criteria to be used in the same request by separating them with a comma (`criteria="size ascending, date ascending"`). You can specify a list of comma-separated sort criteria which will be applied sequentially. For example, if there's a tie on the 1st criterion, the API uses the 2nd criterion to break the tie. However, this only works when combining: * a relevancy criterion followed by one or more field or date criteria. * a qre criterion followed by one or more field or date criteria. * two or more field criteria (`<FIELD>` descending, `<FIELD>` descending). * a single date criterion and one or more field criteria in any order (`<FIELD>` descending, date ascending). Examples: * `relevancy`, `<FIELD> descending` * `qre`, `<FIELD> ascending` * `date descending`, `<FIELD> descending`, `<FIELD> ascending`
1790
-
*/
1791
-
"expression": string;
1792
-
/**
1793
-
* The non-localized label to display for this expression.
1794
-
*/
1795
-
"label": string;
1796
-
/**
1797
-
* The tabs on which the sort expression 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, for example: ```html <atomic-sort-expression tabs-excluded='["tabIDA", "tabIDB"]'></atomic-sort-expression> ``` If you don't set this property, the sort expression can be displayed on any tab. Otherwise, the sort expression won't be displayed on any of the specified tabs.
1798
-
*/
1799
-
"tabsExcluded": string[]|string;
1800
-
/**
1801
-
* The tabs on which the sort expression can be displayed. This property should not be used at the same time as `tabs-excluded`. Set this property as a stringified JSON array, for example: ```html <atomic-sort-expression tabs-included='["tabIDA", "tabIDB"]'></atomic-sort-expression snippet> ``` If you don't set this property, the sort expression can be displayed on any tab. Otherwise, the sort expression can only be displayed on the specified tabs.
1802
-
*/
1803
-
"tabsIncluded": string[]|string;
1804
-
}
1805
1784
/**
1806
1785
* @deprecated Use `atomic-facet-date-input` instead. This component is meant to be used with Stencil components only.
1807
1786
* Internal component made to be integrated in a TimeframeFacet.
* The `atomic-sort-expression` component defines a sort expression. This component must be inside an `atomic-sort-dropdown` component.
4863
-
*/
4864
-
interfaceAtomicSortExpression{
4865
-
/**
4866
-
* One or more sort criteria that the end user can select or toggle between. The available sort criteria are: * `relevancy` * `date ascending`/`date descending` * `qre` * `<FIELD> ascending`/`<FIELD> descending`, where you replace `<FIELD>` with the name of a sortable field in your index (`criteria="size ascending"`). You can specify multiple sort criteria to be used in the same request by separating them with a comma (`criteria="size ascending, date ascending"`). You can specify a list of comma-separated sort criteria which will be applied sequentially. For example, if there's a tie on the 1st criterion, the API uses the 2nd criterion to break the tie. However, this only works when combining: * a relevancy criterion followed by one or more field or date criteria. * a qre criterion followed by one or more field or date criteria. * two or more field criteria (`<FIELD>` descending, `<FIELD>` descending). * a single date criterion and one or more field criteria in any order (`<FIELD>` descending, date ascending). Examples: * `relevancy`, `<FIELD> descending` * `qre`, `<FIELD> ascending` * `date descending`, `<FIELD> descending`, `<FIELD> ascending`
4867
-
*/
4868
-
"expression": string;
4869
-
/**
4870
-
* The non-localized label to display for this expression.
4871
-
*/
4872
-
"label": string;
4873
-
/**
4874
-
* The tabs on which the sort expression 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, for example: ```html <atomic-sort-expression tabs-excluded='["tabIDA", "tabIDB"]'></atomic-sort-expression> ``` If you don't set this property, the sort expression can be displayed on any tab. Otherwise, the sort expression won't be displayed on any of the specified tabs.
4875
-
*/
4876
-
"tabsExcluded"?: string[]|string;
4877
-
/**
4878
-
* The tabs on which the sort expression can be displayed. This property should not be used at the same time as `tabs-excluded`. Set this property as a stringified JSON array, for example: ```html <atomic-sort-expression tabs-included='["tabIDA", "tabIDB"]'></atomic-sort-expression snippet> ``` If you don't set this property, the sort expression can be displayed on any tab. Otherwise, the sort expression can only be displayed on the specified tabs.
4879
-
*/
4880
-
"tabsIncluded"?: string[]|string;
4881
-
}
4882
4830
/**
4883
4831
* @deprecated Use `atomic-facet-date-input` instead. This component is meant to be used with Stencil components only.
4884
4832
* Internal component made to be integrated in a TimeframeFacet.
0 commit comments