969d38a5791a74db4840730212aaba1a21f776f55c21f6e9d691bc3b5c0dbd107b29d511b99aac42937101decf7beb6880b91d7eb4fdca1fe82e4a9761b4fc 634 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var runtime = require('../../../utils/vue/props/runtime.js');
  4. var shared = require('@vue/shared');
  5. const mentionDropdownProps = runtime.buildProps({
  6. options: {
  7. type: runtime.definePropType(Array),
  8. default: () => []
  9. },
  10. loading: Boolean,
  11. disabled: Boolean,
  12. contentId: String,
  13. ariaLabel: String
  14. });
  15. const mentionDropdownEmits = {
  16. select: (option) => shared.isString(option.value)
  17. };
  18. exports.mentionDropdownEmits = mentionDropdownEmits;
  19. exports.mentionDropdownProps = mentionDropdownProps;
  20. //# sourceMappingURL=mention-dropdown.js.map