@zag-js/number-input 1.34.0 → 1.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cursor.d.mts +12 -0
- package/dist/cursor.d.ts +12 -0
- package/dist/cursor.js +111 -0
- package/dist/cursor.mjs +84 -0
- package/dist/index.d.mts +9 -314
- package/dist/index.d.ts +9 -314
- package/dist/index.js +37 -931
- package/dist/index.mjs +9 -926
- package/dist/number-input.anatomy.d.mts +6 -0
- package/dist/number-input.anatomy.d.ts +6 -0
- package/dist/number-input.anatomy.js +43 -0
- package/dist/number-input.anatomy.mjs +17 -0
- package/dist/number-input.connect.d.mts +8 -0
- package/dist/number-input.connect.d.ts +8 -0
- package/dist/number-input.connect.js +308 -0
- package/dist/number-input.connect.mjs +284 -0
- package/dist/number-input.dom.d.mts +34 -0
- package/dist/number-input.dom.d.ts +34 -0
- package/dist/number-input.dom.js +150 -0
- package/dist/number-input.dom.mjs +109 -0
- package/dist/number-input.machine.d.mts +8 -0
- package/dist/number-input.machine.d.ts +8 -0
- package/dist/number-input.machine.js +460 -0
- package/dist/number-input.machine.mjs +441 -0
- package/dist/number-input.props.d.mts +9 -0
- package/dist/number-input.props.d.ts +9 -0
- package/dist/number-input.props.js +65 -0
- package/dist/number-input.props.mjs +39 -0
- package/dist/number-input.types.d.mts +303 -0
- package/dist/number-input.types.d.ts +303 -0
- package/dist/number-input.types.js +18 -0
- package/dist/number-input.types.mjs +0 -0
- package/dist/number-input.utils.d.mts +13 -0
- package/dist/number-input.utils.d.ts +13 -0
- package/dist/number-input.utils.js +63 -0
- package/dist/number-input.utils.mjs +34 -0
- package/package.json +17 -7
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Scope } from '@zag-js/core';
|
|
2
|
+
import { Point } from '@zag-js/types';
|
|
3
|
+
import { HintValue } from './number-input.types.mjs';
|
|
4
|
+
import '@internationalized/number';
|
|
5
|
+
|
|
6
|
+
declare const getRootId: (ctx: Scope) => any;
|
|
7
|
+
declare const getInputId: (ctx: Scope) => any;
|
|
8
|
+
declare const getIncrementTriggerId: (ctx: Scope) => any;
|
|
9
|
+
declare const getDecrementTriggerId: (ctx: Scope) => any;
|
|
10
|
+
declare const getScrubberId: (ctx: Scope) => any;
|
|
11
|
+
declare const getCursorId: (ctx: Scope) => string;
|
|
12
|
+
declare const getLabelId: (ctx: Scope) => any;
|
|
13
|
+
declare const getInputEl: (ctx: Scope) => HTMLInputElement | null;
|
|
14
|
+
declare const getIncrementTriggerEl: (ctx: Scope) => HTMLButtonElement | null;
|
|
15
|
+
declare const getDecrementTriggerEl: (ctx: Scope) => HTMLButtonElement | null;
|
|
16
|
+
declare const getScrubberEl: (ctx: Scope) => HTMLElement | null;
|
|
17
|
+
declare const getCursorEl: (ctx: Scope) => HTMLElement | null;
|
|
18
|
+
declare const getPressedTriggerEl: (ctx: Scope, hint: HintValue | null) => HTMLButtonElement | null;
|
|
19
|
+
declare const setupVirtualCursor: (ctx: Scope, point: Point | null) => (() => void) | undefined;
|
|
20
|
+
declare const preventTextSelection: (ctx: Scope) => () => void;
|
|
21
|
+
declare const getMousemoveValue: (ctx: Scope, opts: {
|
|
22
|
+
point: Point | null;
|
|
23
|
+
isRtl: boolean;
|
|
24
|
+
event: MouseEvent;
|
|
25
|
+
}) => {
|
|
26
|
+
hint: string | null;
|
|
27
|
+
point: {
|
|
28
|
+
x: number;
|
|
29
|
+
y: number;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
declare const createVirtualCursor: (ctx: Scope, point: Point | null) => void;
|
|
33
|
+
|
|
34
|
+
export { createVirtualCursor, getCursorEl, getCursorId, getDecrementTriggerEl, getDecrementTriggerId, getIncrementTriggerEl, getIncrementTriggerId, getInputEl, getInputId, getLabelId, getMousemoveValue, getPressedTriggerEl, getRootId, getScrubberEl, getScrubberId, preventTextSelection, setupVirtualCursor };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Scope } from '@zag-js/core';
|
|
2
|
+
import { Point } from '@zag-js/types';
|
|
3
|
+
import { HintValue } from './number-input.types.js';
|
|
4
|
+
import '@internationalized/number';
|
|
5
|
+
|
|
6
|
+
declare const getRootId: (ctx: Scope) => any;
|
|
7
|
+
declare const getInputId: (ctx: Scope) => any;
|
|
8
|
+
declare const getIncrementTriggerId: (ctx: Scope) => any;
|
|
9
|
+
declare const getDecrementTriggerId: (ctx: Scope) => any;
|
|
10
|
+
declare const getScrubberId: (ctx: Scope) => any;
|
|
11
|
+
declare const getCursorId: (ctx: Scope) => string;
|
|
12
|
+
declare const getLabelId: (ctx: Scope) => any;
|
|
13
|
+
declare const getInputEl: (ctx: Scope) => HTMLInputElement | null;
|
|
14
|
+
declare const getIncrementTriggerEl: (ctx: Scope) => HTMLButtonElement | null;
|
|
15
|
+
declare const getDecrementTriggerEl: (ctx: Scope) => HTMLButtonElement | null;
|
|
16
|
+
declare const getScrubberEl: (ctx: Scope) => HTMLElement | null;
|
|
17
|
+
declare const getCursorEl: (ctx: Scope) => HTMLElement | null;
|
|
18
|
+
declare const getPressedTriggerEl: (ctx: Scope, hint: HintValue | null) => HTMLButtonElement | null;
|
|
19
|
+
declare const setupVirtualCursor: (ctx: Scope, point: Point | null) => (() => void) | undefined;
|
|
20
|
+
declare const preventTextSelection: (ctx: Scope) => () => void;
|
|
21
|
+
declare const getMousemoveValue: (ctx: Scope, opts: {
|
|
22
|
+
point: Point | null;
|
|
23
|
+
isRtl: boolean;
|
|
24
|
+
event: MouseEvent;
|
|
25
|
+
}) => {
|
|
26
|
+
hint: string | null;
|
|
27
|
+
point: {
|
|
28
|
+
x: number;
|
|
29
|
+
y: number;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
declare const createVirtualCursor: (ctx: Scope, point: Point | null) => void;
|
|
33
|
+
|
|
34
|
+
export { createVirtualCursor, getCursorEl, getCursorId, getDecrementTriggerEl, getDecrementTriggerId, getIncrementTriggerEl, getIncrementTriggerId, getInputEl, getInputId, getLabelId, getMousemoveValue, getPressedTriggerEl, getRootId, getScrubberEl, getScrubberId, preventTextSelection, setupVirtualCursor };
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/number-input.dom.ts
|
|
21
|
+
var number_input_dom_exports = {};
|
|
22
|
+
__export(number_input_dom_exports, {
|
|
23
|
+
createVirtualCursor: () => createVirtualCursor,
|
|
24
|
+
getCursorEl: () => getCursorEl,
|
|
25
|
+
getCursorId: () => getCursorId,
|
|
26
|
+
getDecrementTriggerEl: () => getDecrementTriggerEl,
|
|
27
|
+
getDecrementTriggerId: () => getDecrementTriggerId,
|
|
28
|
+
getIncrementTriggerEl: () => getIncrementTriggerEl,
|
|
29
|
+
getIncrementTriggerId: () => getIncrementTriggerId,
|
|
30
|
+
getInputEl: () => getInputEl,
|
|
31
|
+
getInputId: () => getInputId,
|
|
32
|
+
getLabelId: () => getLabelId,
|
|
33
|
+
getMousemoveValue: () => getMousemoveValue,
|
|
34
|
+
getPressedTriggerEl: () => getPressedTriggerEl,
|
|
35
|
+
getRootId: () => getRootId,
|
|
36
|
+
getScrubberEl: () => getScrubberEl,
|
|
37
|
+
getScrubberId: () => getScrubberId,
|
|
38
|
+
preventTextSelection: () => preventTextSelection,
|
|
39
|
+
setupVirtualCursor: () => setupVirtualCursor
|
|
40
|
+
});
|
|
41
|
+
module.exports = __toCommonJS(number_input_dom_exports);
|
|
42
|
+
var import_dom_query = require("@zag-js/dom-query");
|
|
43
|
+
var import_utils = require("@zag-js/utils");
|
|
44
|
+
var getRootId = (ctx) => ctx.ids?.root ?? `number-input:${ctx.id}`;
|
|
45
|
+
var getInputId = (ctx) => ctx.ids?.input ?? `number-input:${ctx.id}:input`;
|
|
46
|
+
var getIncrementTriggerId = (ctx) => ctx.ids?.incrementTrigger ?? `number-input:${ctx.id}:inc`;
|
|
47
|
+
var getDecrementTriggerId = (ctx) => ctx.ids?.decrementTrigger ?? `number-input:${ctx.id}:dec`;
|
|
48
|
+
var getScrubberId = (ctx) => ctx.ids?.scrubber ?? `number-input:${ctx.id}:scrubber`;
|
|
49
|
+
var getCursorId = (ctx) => `number-input:${ctx.id}:cursor`;
|
|
50
|
+
var getLabelId = (ctx) => ctx.ids?.label ?? `number-input:${ctx.id}:label`;
|
|
51
|
+
var getInputEl = (ctx) => ctx.getById(getInputId(ctx));
|
|
52
|
+
var getIncrementTriggerEl = (ctx) => ctx.getById(getIncrementTriggerId(ctx));
|
|
53
|
+
var getDecrementTriggerEl = (ctx) => ctx.getById(getDecrementTriggerId(ctx));
|
|
54
|
+
var getScrubberEl = (ctx) => ctx.getById(getScrubberId(ctx));
|
|
55
|
+
var getCursorEl = (ctx) => ctx.getDoc().getElementById(getCursorId(ctx));
|
|
56
|
+
var getPressedTriggerEl = (ctx, hint) => {
|
|
57
|
+
let btnEl = null;
|
|
58
|
+
if (hint === "increment") {
|
|
59
|
+
btnEl = getIncrementTriggerEl(ctx);
|
|
60
|
+
}
|
|
61
|
+
if (hint === "decrement") {
|
|
62
|
+
btnEl = getDecrementTriggerEl(ctx);
|
|
63
|
+
}
|
|
64
|
+
return btnEl;
|
|
65
|
+
};
|
|
66
|
+
var setupVirtualCursor = (ctx, point) => {
|
|
67
|
+
if ((0, import_dom_query.isSafari)()) return;
|
|
68
|
+
createVirtualCursor(ctx, point);
|
|
69
|
+
return () => {
|
|
70
|
+
getCursorEl(ctx)?.remove();
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
var preventTextSelection = (ctx) => {
|
|
74
|
+
const doc = ctx.getDoc();
|
|
75
|
+
const html = doc.documentElement;
|
|
76
|
+
const body = doc.body;
|
|
77
|
+
body.style.pointerEvents = "none";
|
|
78
|
+
html.style.userSelect = "none";
|
|
79
|
+
html.style.cursor = "ew-resize";
|
|
80
|
+
return () => {
|
|
81
|
+
body.style.pointerEvents = "";
|
|
82
|
+
html.style.userSelect = "";
|
|
83
|
+
html.style.cursor = "";
|
|
84
|
+
if (!html.style.length) {
|
|
85
|
+
html.removeAttribute("style");
|
|
86
|
+
}
|
|
87
|
+
if (!body.style.length) {
|
|
88
|
+
body.removeAttribute("style");
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
var getMousemoveValue = (ctx, opts) => {
|
|
93
|
+
const { point, isRtl, event } = opts;
|
|
94
|
+
const win = ctx.getWin();
|
|
95
|
+
const x = (0, import_utils.roundToDpr)(event.movementX, win.devicePixelRatio);
|
|
96
|
+
const y = (0, import_utils.roundToDpr)(event.movementY, win.devicePixelRatio);
|
|
97
|
+
let hint = x > 0 ? "increment" : x < 0 ? "decrement" : null;
|
|
98
|
+
if (isRtl && hint === "increment") hint = "decrement";
|
|
99
|
+
if (isRtl && hint === "decrement") hint = "increment";
|
|
100
|
+
const newPoint = { x: point.x + x, y: point.y + y };
|
|
101
|
+
const width = win.innerWidth;
|
|
102
|
+
const half = (0, import_utils.roundToDpr)(7.5, win.devicePixelRatio);
|
|
103
|
+
newPoint.x = (0, import_utils.wrap)(newPoint.x + half, width) - half;
|
|
104
|
+
return { hint, point: newPoint };
|
|
105
|
+
};
|
|
106
|
+
var createVirtualCursor = (ctx, point) => {
|
|
107
|
+
const doc = ctx.getDoc();
|
|
108
|
+
const el = doc.createElement("div");
|
|
109
|
+
el.className = "scrubber--cursor";
|
|
110
|
+
el.id = getCursorId(ctx);
|
|
111
|
+
Object.assign(el.style, {
|
|
112
|
+
width: "15px",
|
|
113
|
+
height: "15px",
|
|
114
|
+
position: "fixed",
|
|
115
|
+
pointerEvents: "none",
|
|
116
|
+
left: "0px",
|
|
117
|
+
top: "0px",
|
|
118
|
+
zIndex: import_dom_query.MAX_Z_INDEX,
|
|
119
|
+
transform: point ? `translate3d(${point.x}px, ${point.y}px, 0px)` : void 0,
|
|
120
|
+
willChange: "transform"
|
|
121
|
+
});
|
|
122
|
+
el.innerHTML = `
|
|
123
|
+
<svg width="46" height="15" style="left: -15.5px; position: absolute; top: 0; filter: drop-shadow(rgba(0, 0, 0, 0.4) 0px 1px 1.1px);">
|
|
124
|
+
<g transform="translate(2 3)">
|
|
125
|
+
<path fill-rule="evenodd" d="M 15 4.5L 15 2L 11.5 5.5L 15 9L 15 6.5L 31 6.5L 31 9L 34.5 5.5L 31 2L 31 4.5Z" style="stroke-width: 2px; stroke: white;"></path>
|
|
126
|
+
<path fill-rule="evenodd" d="M 15 4.5L 15 2L 11.5 5.5L 15 9L 15 6.5L 31 6.5L 31 9L 34.5 5.5L 31 2L 31 4.5Z"></path>
|
|
127
|
+
</g>
|
|
128
|
+
</svg>`;
|
|
129
|
+
doc.body.appendChild(el);
|
|
130
|
+
};
|
|
131
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
132
|
+
0 && (module.exports = {
|
|
133
|
+
createVirtualCursor,
|
|
134
|
+
getCursorEl,
|
|
135
|
+
getCursorId,
|
|
136
|
+
getDecrementTriggerEl,
|
|
137
|
+
getDecrementTriggerId,
|
|
138
|
+
getIncrementTriggerEl,
|
|
139
|
+
getIncrementTriggerId,
|
|
140
|
+
getInputEl,
|
|
141
|
+
getInputId,
|
|
142
|
+
getLabelId,
|
|
143
|
+
getMousemoveValue,
|
|
144
|
+
getPressedTriggerEl,
|
|
145
|
+
getRootId,
|
|
146
|
+
getScrubberEl,
|
|
147
|
+
getScrubberId,
|
|
148
|
+
preventTextSelection,
|
|
149
|
+
setupVirtualCursor
|
|
150
|
+
});
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
// src/number-input.dom.ts
|
|
2
|
+
import { isSafari, MAX_Z_INDEX } from "@zag-js/dom-query";
|
|
3
|
+
import { roundToDpr, wrap } from "@zag-js/utils";
|
|
4
|
+
var getRootId = (ctx) => ctx.ids?.root ?? `number-input:${ctx.id}`;
|
|
5
|
+
var getInputId = (ctx) => ctx.ids?.input ?? `number-input:${ctx.id}:input`;
|
|
6
|
+
var getIncrementTriggerId = (ctx) => ctx.ids?.incrementTrigger ?? `number-input:${ctx.id}:inc`;
|
|
7
|
+
var getDecrementTriggerId = (ctx) => ctx.ids?.decrementTrigger ?? `number-input:${ctx.id}:dec`;
|
|
8
|
+
var getScrubberId = (ctx) => ctx.ids?.scrubber ?? `number-input:${ctx.id}:scrubber`;
|
|
9
|
+
var getCursorId = (ctx) => `number-input:${ctx.id}:cursor`;
|
|
10
|
+
var getLabelId = (ctx) => ctx.ids?.label ?? `number-input:${ctx.id}:label`;
|
|
11
|
+
var getInputEl = (ctx) => ctx.getById(getInputId(ctx));
|
|
12
|
+
var getIncrementTriggerEl = (ctx) => ctx.getById(getIncrementTriggerId(ctx));
|
|
13
|
+
var getDecrementTriggerEl = (ctx) => ctx.getById(getDecrementTriggerId(ctx));
|
|
14
|
+
var getScrubberEl = (ctx) => ctx.getById(getScrubberId(ctx));
|
|
15
|
+
var getCursorEl = (ctx) => ctx.getDoc().getElementById(getCursorId(ctx));
|
|
16
|
+
var getPressedTriggerEl = (ctx, hint) => {
|
|
17
|
+
let btnEl = null;
|
|
18
|
+
if (hint === "increment") {
|
|
19
|
+
btnEl = getIncrementTriggerEl(ctx);
|
|
20
|
+
}
|
|
21
|
+
if (hint === "decrement") {
|
|
22
|
+
btnEl = getDecrementTriggerEl(ctx);
|
|
23
|
+
}
|
|
24
|
+
return btnEl;
|
|
25
|
+
};
|
|
26
|
+
var setupVirtualCursor = (ctx, point) => {
|
|
27
|
+
if (isSafari()) return;
|
|
28
|
+
createVirtualCursor(ctx, point);
|
|
29
|
+
return () => {
|
|
30
|
+
getCursorEl(ctx)?.remove();
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
var preventTextSelection = (ctx) => {
|
|
34
|
+
const doc = ctx.getDoc();
|
|
35
|
+
const html = doc.documentElement;
|
|
36
|
+
const body = doc.body;
|
|
37
|
+
body.style.pointerEvents = "none";
|
|
38
|
+
html.style.userSelect = "none";
|
|
39
|
+
html.style.cursor = "ew-resize";
|
|
40
|
+
return () => {
|
|
41
|
+
body.style.pointerEvents = "";
|
|
42
|
+
html.style.userSelect = "";
|
|
43
|
+
html.style.cursor = "";
|
|
44
|
+
if (!html.style.length) {
|
|
45
|
+
html.removeAttribute("style");
|
|
46
|
+
}
|
|
47
|
+
if (!body.style.length) {
|
|
48
|
+
body.removeAttribute("style");
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
var getMousemoveValue = (ctx, opts) => {
|
|
53
|
+
const { point, isRtl, event } = opts;
|
|
54
|
+
const win = ctx.getWin();
|
|
55
|
+
const x = roundToDpr(event.movementX, win.devicePixelRatio);
|
|
56
|
+
const y = roundToDpr(event.movementY, win.devicePixelRatio);
|
|
57
|
+
let hint = x > 0 ? "increment" : x < 0 ? "decrement" : null;
|
|
58
|
+
if (isRtl && hint === "increment") hint = "decrement";
|
|
59
|
+
if (isRtl && hint === "decrement") hint = "increment";
|
|
60
|
+
const newPoint = { x: point.x + x, y: point.y + y };
|
|
61
|
+
const width = win.innerWidth;
|
|
62
|
+
const half = roundToDpr(7.5, win.devicePixelRatio);
|
|
63
|
+
newPoint.x = wrap(newPoint.x + half, width) - half;
|
|
64
|
+
return { hint, point: newPoint };
|
|
65
|
+
};
|
|
66
|
+
var createVirtualCursor = (ctx, point) => {
|
|
67
|
+
const doc = ctx.getDoc();
|
|
68
|
+
const el = doc.createElement("div");
|
|
69
|
+
el.className = "scrubber--cursor";
|
|
70
|
+
el.id = getCursorId(ctx);
|
|
71
|
+
Object.assign(el.style, {
|
|
72
|
+
width: "15px",
|
|
73
|
+
height: "15px",
|
|
74
|
+
position: "fixed",
|
|
75
|
+
pointerEvents: "none",
|
|
76
|
+
left: "0px",
|
|
77
|
+
top: "0px",
|
|
78
|
+
zIndex: MAX_Z_INDEX,
|
|
79
|
+
transform: point ? `translate3d(${point.x}px, ${point.y}px, 0px)` : void 0,
|
|
80
|
+
willChange: "transform"
|
|
81
|
+
});
|
|
82
|
+
el.innerHTML = `
|
|
83
|
+
<svg width="46" height="15" style="left: -15.5px; position: absolute; top: 0; filter: drop-shadow(rgba(0, 0, 0, 0.4) 0px 1px 1.1px);">
|
|
84
|
+
<g transform="translate(2 3)">
|
|
85
|
+
<path fill-rule="evenodd" d="M 15 4.5L 15 2L 11.5 5.5L 15 9L 15 6.5L 31 6.5L 31 9L 34.5 5.5L 31 2L 31 4.5Z" style="stroke-width: 2px; stroke: white;"></path>
|
|
86
|
+
<path fill-rule="evenodd" d="M 15 4.5L 15 2L 11.5 5.5L 15 9L 15 6.5L 31 6.5L 31 9L 34.5 5.5L 31 2L 31 4.5Z"></path>
|
|
87
|
+
</g>
|
|
88
|
+
</svg>`;
|
|
89
|
+
doc.body.appendChild(el);
|
|
90
|
+
};
|
|
91
|
+
export {
|
|
92
|
+
createVirtualCursor,
|
|
93
|
+
getCursorEl,
|
|
94
|
+
getCursorId,
|
|
95
|
+
getDecrementTriggerEl,
|
|
96
|
+
getDecrementTriggerId,
|
|
97
|
+
getIncrementTriggerEl,
|
|
98
|
+
getIncrementTriggerId,
|
|
99
|
+
getInputEl,
|
|
100
|
+
getInputId,
|
|
101
|
+
getLabelId,
|
|
102
|
+
getMousemoveValue,
|
|
103
|
+
getPressedTriggerEl,
|
|
104
|
+
getRootId,
|
|
105
|
+
getScrubberEl,
|
|
106
|
+
getScrubberId,
|
|
107
|
+
preventTextSelection,
|
|
108
|
+
setupVirtualCursor
|
|
109
|
+
};
|