mention-dropdown.mjs 665 B

12345678910111213141516171819202122
  1. import { isString } from "../../../utils/types.mjs";
  2. import { buildProps, definePropType } from "../../../utils/vue/props/runtime.mjs";
  3. //#region ../../packages/components/mention/src/mention-dropdown.ts
  4. /**
  5. * @deprecated Removed after 3.0.0, Use `MentionDropdownProps` instead.
  6. */
  7. const mentionDropdownProps = buildProps({
  8. options: {
  9. type: definePropType(Array),
  10. default: () => []
  11. },
  12. loading: Boolean,
  13. disabled: Boolean,
  14. contentId: String,
  15. ariaLabel: String
  16. });
  17. const mentionDropdownEmits = { select: (option) => isString(option.value) };
  18. //#endregion
  19. export { mentionDropdownEmits, mentionDropdownProps };
  20. //# sourceMappingURL=mention-dropdown.mjs.map