index.mjs 421 B

1234567891011121314151617
  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