1
This commit is contained in:
17
admin/node_modules/element-plus/es/hooks/use-aria/index.mjs
generated
vendored
Normal file
17
admin/node_modules/element-plus/es/hooks/use-aria/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { pick } from 'lodash-unified';
|
||||
import { buildProps } from '../../utils/vue/props/runtime.mjs';
|
||||
|
||||
const ariaProps = buildProps({
|
||||
ariaLabel: String,
|
||||
ariaOrientation: {
|
||||
type: String,
|
||||
values: ["horizontal", "vertical", "undefined"]
|
||||
},
|
||||
ariaControls: String
|
||||
});
|
||||
const useAriaProps = (arias) => {
|
||||
return pick(ariaProps, arias);
|
||||
};
|
||||
|
||||
export { ariaProps, useAriaProps };
|
||||
//# sourceMappingURL=index.mjs.map
|
||||
Reference in New Issue
Block a user