You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
634 B

6 months ago
  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