Files
SBPanel-Backend/frontend/admin/node_modules/element-plus/es/hooks/use-aria/index.mjs
CN-JS-HuiBai db7f1ba82f
Some checks failed
build / build (api, amd64, linux) (push) Failing after -51s
build / build (api, arm64, linux) (push) Failing after -52s
build / build (api.exe, amd64, windows) (push) Failing after -51s
使用VUE重构项目
2026-04-20 00:19:11 +08:00

26 lines
553 B
JavaScript

import { buildProps } from "../../utils/vue/props/runtime.mjs";
import { pick } from "lodash-unified";
//#region ../../packages/hooks/use-aria/index.ts
/**
* @deprecated Removed after 3.0.0, Use `AriaProps` instead.
*/
const ariaProps = buildProps({
ariaLabel: String,
ariaOrientation: {
type: String,
values: [
"horizontal",
"vertical",
"undefined"
]
},
ariaControls: String
});
const useAriaProps = (arias) => {
return pick(ariaProps, arias);
};
//#endregion
export { ariaProps, useAriaProps };
//# sourceMappingURL=index.mjs.map