feat: initial commit - Phase 1 & 2 core features

This commit is contained in:
hiderfong
2026-04-22 17:07:33 +08:00
commit 1773bda06b
25005 changed files with 6252106 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
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