@empathyco/x-components
Version:
Empathy X Components
46 lines (44 loc) • 1.18 kB
JavaScript
/**
* It's used to identify the provided and injected `disable-animations`.
*
* @internal
*/
const DISABLE_ANIMATIONS_KEY = 'disable-animations';
/**
* It's used to identify the provided and injected `items`.
*
* @internal
*/
const LIST_ITEMS_KEY = 'listItems';
/**
* It's used to identify the provided and injected `query`.
*
* @internal
*/
const QUERY_KEY = 'query';
/**
* It's used to identify the provided and injected `hasMoreItems`.
*
* @internal
*/
const HAS_MORE_ITEMS_KEY = 'hasMoreItems';
/**
* It's used to identify the provided and injected `result`.
*
* @internal
*/
const RESULT_WITH_VARIANTS_KEY = 'resultWithVariants';
/**
* It's used to identify the provided and injected `selectedVariants` of a result.
*
* @internal
*/
const SELECTED_VARIANTS_KEY = 'selectedVariants';
/**
* It's used to identify the provided and injected `selectResultVariant` callback.
*
* @internal
*/
const SELECT_RESULT_VARIANT_KEY = 'selectResultVariant';
export { DISABLE_ANIMATIONS_KEY, HAS_MORE_ITEMS_KEY, LIST_ITEMS_KEY, QUERY_KEY, RESULT_WITH_VARIANTS_KEY, SELECTED_VARIANTS_KEY, SELECT_RESULT_VARIANT_KEY };
//# sourceMappingURL=injection.consts.js.map