File size: 655 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { styleToString } from './style.js';
export function disabledAttr(disabled) {
    return disabled ? true : undefined;
}
export const hiddenInputAttrs = {
    type: 'hidden',
    'aria-hidden': true,
    hidden: true,
    tabIndex: -1,
    style: styleToString({
        position: 'absolute',
        opacity: 0,
        'pointer-events': 'none',
        margin: 0,
        transform: 'translateX(-100%)',
    }),
};
/**
 * @param portal The value of the `portal` option store.
 * @returns the value of the `data-portal` attribute.
 */
export function portalAttr(portal) {
    if (portal !== null) {
        return '';
    }
    return undefined;
}