w-mousekey 1.0.0 → 1.0.1
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/README.md +3 -0
- package/dist/action.umd.js +2 -27
- package/dist/action.umd.js.map +1 -1
- package/dist/ck-pic.umd.js +1 -1
- package/dist/compare.umd.js +1 -1
- package/dist/get-settings.umd.js +1 -1
- package/dist/mousekey.umd.js +1 -1
- package/dist/screen.umd.js +1 -1
- package/docs/index.html +1 -1
- package/g.mjs +4 -1
- package/package.json +1 -1
- package/src/action.mjs +3 -3
package/dist/ck-pic.umd.js
CHANGED
package/dist/compare.umd.js
CHANGED
package/dist/get-settings.umd.js
CHANGED
package/dist/mousekey.umd.js
CHANGED
package/dist/screen.umd.js
CHANGED
package/docs/index.html
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
<br class="clear">
|
|
72
72
|
|
|
73
73
|
<footer>
|
|
74
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.4</a> on Sat Jul 26 2025 21:
|
|
74
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.4</a> on Sat Jul 26 2025 21:53:57 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
75
75
|
</footer>
|
|
76
76
|
|
|
77
77
|
<script>prettyPrint();</script>
|
package/g.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import getSettings from './getSettings.mjs'
|
|
2
2
|
import mk from './src/mousekey.mjs'
|
|
3
3
|
import sc from './src/screen.mjs'
|
|
4
4
|
import cp from './src/compare.mjs'
|
|
@@ -8,6 +8,9 @@ import ckPic from './src/ckPic.mjs'
|
|
|
8
8
|
setTimeout(async() => {
|
|
9
9
|
let r
|
|
10
10
|
|
|
11
|
+
// let st = getSettings()
|
|
12
|
+
// console.log('st', st)
|
|
13
|
+
|
|
11
14
|
// //mouseClick
|
|
12
15
|
// await mk.mouseClick(215, 905)
|
|
13
16
|
// await mk.mouseClick(100, 100)
|
package/package.json
CHANGED
package/src/action.mjs
CHANGED