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
27
28
29
30
31
32
33
| import '../../../utils/index.mjs';
| import '../../collection/index.mjs';
| import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
| import { createCollectionWithScope } from '../../collection/src/collection.mjs';
|
| const rovingFocusGroupProps = buildProps({
| style: { type: definePropType([String, Array, Object]) },
| currentTabId: {
| type: definePropType(String)
| },
| defaultCurrentTabId: String,
| loop: Boolean,
| dir: {
| type: String,
| values: ["ltr", "rtl"],
| default: "ltr"
| },
| orientation: {
| type: definePropType(String)
| },
| onBlur: Function,
| onFocus: Function,
| onMousedown: Function
| });
| const {
| ElCollection,
| ElCollectionItem,
| COLLECTION_INJECTION_KEY,
| COLLECTION_ITEM_INJECTION_KEY
| } = createCollectionWithScope("RovingFocusGroup");
|
| export { ElCollection, ElCollectionItem, COLLECTION_INJECTION_KEY as ROVING_FOCUS_COLLECTION_INJECTION_KEY, COLLECTION_ITEM_INJECTION_KEY as ROVING_FOCUS_ITEM_COLLECTION_INJECTION_KEY, rovingFocusGroupProps };
| //# sourceMappingURL=roving-focus-group.mjs.map
|
|