diff --git a/packages/x-components/src/components/items-list.vue b/packages/x-components/src/components/items-list.vue index 206beb7fa2..39e68b4998 100644 --- a/packages/x-components/src/components/items-list.vue +++ b/packages/x-components/src/components/items-list.vue @@ -26,7 +26,7 @@ import { computed, defineComponent, PropType } from 'vue'; import { ListItem } from '../utils/types'; import { toKebabCase } from '../utils/string'; - import { animationProp } from '../utils/options-api'; + import { AnimationProp } from '../types'; /** * It renders a list of {@link ListItem} providing a slot for each `slotName` which depends on @@ -39,7 +39,7 @@ props: { /** Animation component that will be used to animate the list. */ animation: { - type: animationProp, + type: AnimationProp, default: 'ul' }, /** List of items. */ diff --git a/packages/x-components/src/components/result/base-result-image.vue b/packages/x-components/src/components/result/base-result-image.vue index 22b0e55bef..4c5903ce6e 100644 --- a/packages/x-components/src/components/result/base-result-image.vue +++ b/packages/x-components/src/components/result/base-result-image.vue @@ -41,9 +41,9 @@