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.

22 lines
556 B

1 month ago
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var lodashUnified = require('lodash-unified');
  4. var runtime = require('../../utils/vue/props/runtime.js');
  5. const ariaProps = runtime.buildProps({
  6. ariaLabel: String,
  7. ariaOrientation: {
  8. type: String,
  9. values: ["horizontal", "vertical", "undefined"]
  10. },
  11. ariaControls: String
  12. });
  13. const useAriaProps = (arias) => {
  14. return lodashUnified.pick(ariaProps, arias);
  15. };
  16. exports.ariaProps = ariaProps;
  17. exports.useAriaProps = useAriaProps;
  18. //# sourceMappingURL=index.js.map