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.

17 lines
421 B

3 months ago
  1. import { pick } from 'lodash-unified';
  2. import { buildProps } from '../../utils/vue/props/runtime.mjs';
  3. const ariaProps = buildProps({
  4. ariaLabel: String,
  5. ariaOrientation: {
  6. type: String,
  7. values: ["horizontal", "vertical", "undefined"]
  8. },
  9. ariaControls: String
  10. });
  11. const useAriaProps = (arias) => {
  12. return pick(ariaProps, arias);
  13. };
  14. export { ariaProps, useAriaProps };
  15. //# sourceMappingURL=index.mjs.map