GasWell-front/node_modules/element-plus/lib/hooks/use-aria/index.js

24 lines
589 B
JavaScript
Raw Normal View History

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var lodashUnified = require('lodash-unified');
require('../../utils/index.js');
var runtime = require('../../utils/vue/props/runtime.js');
const ariaProps = runtime.buildProps({
ariaLabel: String,
ariaOrientation: {
type: String,
values: ["horizontal", "vertical", "undefined"]
},
ariaControls: String
});
const useAriaProps = (arias) => {
return lodashUnified.pick(ariaProps, arias);
};
exports.ariaProps = ariaProps;
exports.useAriaProps = useAriaProps;
//# sourceMappingURL=index.js.map