forked from vue-a11y/eslint-plugin-vuejs-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
26 lines (26 loc) · 1.89 KB
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export { default as defineTemplateBodyVisitor } from "./utils/defineTemplateBodyVisitor";
export { default as getAttributeName } from "./utils/getAttributeName";
export { default as getAttributeValue } from "./utils/getAttributeValue";
export { default as getElementAttribute } from "./utils/getElementAttribute";
export { default as getElementAttributeValue } from "./utils/getElementAttributeValue";
export { default as getElementType } from "./utils/getElementType";
export { default as getLiteralAttributeValue } from "./utils/getLiteralAttributeValue";
export { default as getInteractiveRoles } from "./utils/getInteractiveRoles";
export { default as hasAccessibleChild } from "./utils/hasAccessibleChild";
export { default as hasAriaLabel } from "./utils/hasAriaLabel";
export { default as hasContent } from "./utils/hasContent";
export { default as hasFocusableElement } from "./utils/hasFocusableElement";
export { default as hasOnDirective } from "./utils/hasOnDirective";
export { default as hasOnDirectives } from "./utils/hasOnDirectives";
export { default as interactiveHandlers } from "./utils/interactiveHandlers.json";
export { default as isAriaHidden } from "./utils/isAriaHidden";
export { default as isCustomComponent } from "./utils/isCustomComponent";
export { default as isAttribute } from "./utils/isAttribute";
export { default as isHiddenFromScreenReader } from "./utils/isHiddenFromScreenReader";
export { default as isInteractiveElement } from "./utils/isInteractiveElement";
export { default as isInteractiveRole } from "./utils/isInteractiveRole";
export { default as isMatchingElement } from "./utils/isMatchingElement";
export { default as isPresentationRole } from "./utils/isPresentationRole";
export { default as makeDocsURL } from "./utils/makeDocsURL";
export { default as makeKebabCase } from "./utils/makeKebabCase";
export { default as matchesElementRole } from "./utils/matchesElementRole";