@cntwg/html-helper 0.1.1 → 0.1.2
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/CHANGELOG.md +6 -0
- package/index.js +6 -2
- package/lib/event-hfunc.js +4 -19
- package/lib/html-helper-lib.js +1 -16
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
package/index.js
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
// [v0.2.
|
|
1
|
+
// [v0.2.034-20260309]
|
|
2
2
|
|
|
3
3
|
// === module init block ===
|
|
4
4
|
|
|
5
5
|
const html_helper = require('./lib/html-helper-lib.js');
|
|
6
6
|
const ev_helper = require('./lib/event-hfunc.js');
|
|
7
7
|
|
|
8
|
+
const {
|
|
9
|
+
valueToIDString,
|
|
10
|
+
} = require('@ygracs/bsfoc-lib-js');
|
|
11
|
+
|
|
8
12
|
|
|
9
13
|
// === module inner block ===
|
|
10
14
|
|
|
@@ -49,4 +53,4 @@ module.exports.isHTMLButton = html_helper.isHTMLButton;
|
|
|
49
53
|
module.exports.eventHelper = eventHelper;
|
|
50
54
|
|
|
51
55
|
// * re-exported *
|
|
52
|
-
module.exports.valueToIDString =
|
|
56
|
+
module.exports.valueToIDString = valueToIDString;
|
package/lib/event-hfunc.js
CHANGED
|
@@ -1,19 +1,11 @@
|
|
|
1
|
-
// [v0.1.
|
|
1
|
+
// [v0.1.064-20260309]
|
|
2
2
|
|
|
3
3
|
// === module init block ===
|
|
4
4
|
|
|
5
|
-
// === module
|
|
5
|
+
// === module inner block ===
|
|
6
6
|
|
|
7
7
|
// === module main block ===
|
|
8
8
|
|
|
9
|
-
/***
|
|
10
|
-
* (* constant definitions *)
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
/***
|
|
14
|
-
* (* function definitions *)
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
9
|
/**
|
|
18
10
|
* @function pushEventHandler
|
|
19
11
|
* @param {Map<string, Function>} pool - pool object
|
|
@@ -34,6 +26,7 @@ function pushEventHandler(pool, name, evnt) {
|
|
|
34
26
|
};
|
|
35
27
|
};
|
|
36
28
|
};
|
|
29
|
+
module.exports.pushEventHandler = pushEventHandler;
|
|
37
30
|
|
|
38
31
|
/**
|
|
39
32
|
* @function removeEventHandler
|
|
@@ -51,6 +44,7 @@ function removeEventHandler(pool, name) {
|
|
|
51
44
|
if (pool.has(key)) pool.delete(key);
|
|
52
45
|
};
|
|
53
46
|
};
|
|
47
|
+
module.exports.removeEventHandler = removeEventHandler;
|
|
54
48
|
|
|
55
49
|
/**
|
|
56
50
|
* @function triggerEventHandler
|
|
@@ -66,13 +60,4 @@ function triggerEventHandler(pool, name, ...args) {
|
|
|
66
60
|
if (pool.has(_name)) pool.get(_name)(...args);
|
|
67
61
|
};
|
|
68
62
|
};
|
|
69
|
-
|
|
70
|
-
/***
|
|
71
|
-
* (* class definitions *)
|
|
72
|
-
*/
|
|
73
|
-
|
|
74
|
-
// === module exports block ===
|
|
75
|
-
|
|
76
|
-
module.exports.pushEventHandler = pushEventHandler;
|
|
77
63
|
module.exports.triggerEventHandler = triggerEventHandler;
|
|
78
|
-
module.exports.removeEventHandler = removeEventHandler;
|
package/lib/html-helper-lib.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// [v0.1.
|
|
1
|
+
// [v0.1.046-20260309]
|
|
2
2
|
|
|
3
3
|
// === module init block ===
|
|
4
4
|
|
|
@@ -15,20 +15,12 @@ const etlHTagInputForBtn = new Set([
|
|
|
15
15
|
|
|
16
16
|
// === module main block ===
|
|
17
17
|
|
|
18
|
-
/***
|
|
19
|
-
* (* constant definitions *)
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
18
|
const CSS_CLASS_CURRENT = 'current';
|
|
23
19
|
const CSS_CLASS_SELECTED = 'selected';
|
|
24
20
|
const CSS_CLASS_ACTIVE = 'active';
|
|
25
21
|
const CSS_CLASS_DISABLED = 'disabled';
|
|
26
22
|
const CSS_CLASS_HIDDEN = 'hidden';
|
|
27
23
|
|
|
28
|
-
/***
|
|
29
|
-
* (* function definitions *)
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
24
|
/**
|
|
33
25
|
* Checks if the given object is an instance of an `HTMLElement`.
|
|
34
26
|
* @function isHTMLElement
|
|
@@ -498,10 +490,6 @@ function createNewHTMLElement(tagName, opt) {
|
|
|
498
490
|
return item;
|
|
499
491
|
};
|
|
500
492
|
|
|
501
|
-
/***
|
|
502
|
-
* (* class definitions *)
|
|
503
|
-
*/
|
|
504
|
-
|
|
505
493
|
// === module exports block ===
|
|
506
494
|
|
|
507
495
|
module.exports.CSS_CLASS_STRING = /*function(){ return*/ {
|
|
@@ -540,6 +528,3 @@ module.exports.readAsAttrValue = readAsAttrValue;
|
|
|
540
528
|
module.exports.readAsTagName = readAsTagName;
|
|
541
529
|
module.exports.readAsAttrName = readAsAttrName;
|
|
542
530
|
module.exports.valueToElementID = valueToElementID;
|
|
543
|
-
|
|
544
|
-
// * re-exported *
|
|
545
|
-
module.exports.valueToIDString = valueToIDString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cntwg/html-helper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A base HTML-helper library for js",
|
|
5
5
|
"author": "ygracs <cs70th-om@rambler.ru>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,9 +33,10 @@
|
|
|
33
33
|
"#test-dir/*": "./__test__/*"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@ygracs/bsfoc-lib-js": "
|
|
36
|
+
"@ygracs/bsfoc-lib-js": "~0.3.4"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
+
"@ygracs/test-helper": "~0.0.2-b",
|
|
39
40
|
"jest": "^30.2.0",
|
|
40
41
|
"jest-environment-jsdom": "^30.2.0",
|
|
41
42
|
"jsdoc-to-markdown": "^9.1.3",
|