@cntwg/html-ctrls-lists 0.0.28 → 0.0.29

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 CHANGED
@@ -1,3 +1,12 @@
1
+ #### *v0.0.29*
2
+
3
+ Pre-release version.
4
+
5
+ > - update dependency on `@ygracs/bsfoc-lib-js` module to v0.3.3;
6
+ > - update dependency on `@ygracs/lists-lib-js` module to v0.1.1;
7
+ > - update dependency on `@cntwg/html-helper` module to v0.1.1;
8
+ > - update dependency on `@cntwg/html-ctrls-buttons` module to v0.0.29.
9
+
1
10
  #### *v0.0.28*
2
11
 
3
12
  Pre-release version.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022-2025 Yuri Grachev
3
+ Copyright (c) 2022-2026 Yuri Grachev
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
6
 
package/lib/list.js CHANGED
@@ -1,4 +1,4 @@
1
- // [v0.1.074-20251004]
1
+ // [v0.1.075-20260110]
2
2
 
3
3
  // === module init block ===
4
4
 
@@ -618,7 +618,7 @@ class THtmlItemsListController extends THtmlItemsListContainer {
618
618
  }
619
619
 
620
620
  /**
621
- * @param {object} e - event
621
+ * @param {Event} e - event
622
622
  * @returns {void}
623
623
  * @private
624
624
  */
@@ -1121,7 +1121,7 @@ class THtmlItemsListController extends THtmlItemsListContainer {
1121
1121
  /**
1122
1122
  * Sets a callback function to handle event.
1123
1123
  * @param {string} name - event name
1124
- * @param {func} evnt
1124
+ * @param {Function} evnt
1125
1125
  * @returns {void}
1126
1126
  */
1127
1127
  on(name, evnt) {
package/lib/lists-btn.js CHANGED
@@ -1,4 +1,4 @@
1
- // [v0.1.059-20251027]
1
+ // [v0.1.060-20260110]
2
2
 
3
3
  // === module init block ===
4
4
 
@@ -115,7 +115,7 @@ class THtmlListButtonsController {
115
115
  }
116
116
 
117
117
  /**
118
- * @param {object} e - event
118
+ * @param {Event} e - event
119
119
  * @param {string} key - button ID
120
120
  * @returns {void}
121
121
  * @private
@@ -199,7 +199,7 @@ class THtmlListButtonsController {
199
199
  /**
200
200
  * Sets a callback function to handle event.
201
201
  * @param {string} name - event name
202
- * @param {func} evnt - callback function
202
+ * @param {Function} evnt - callback function
203
203
  * @returns {void}
204
204
  */
205
205
  on(name, evnt) {
@@ -1,4 +1,4 @@
1
- // [v0.1.051-20251002]
1
+ // [v0.1.052-20260110]
2
2
 
3
3
  // === module init block ===
4
4
 
@@ -65,7 +65,7 @@ class THtmlStubItemsSet {
65
65
  /**
66
66
  * Creates an instance of a stub-items set
67
67
  * @param {HTMLElement} host - host element
68
- * @param {(array|OPT_stubconsett|OBJ_stubEList)} [opt] - options
68
+ * @param {(any[]|OPT_stubconsett|OBJ_stubEList)} [opt] - options
69
69
  * @todo [since v0.0.26] use of an `array`-type as a value of an `opt` is deprecated
70
70
  */
71
71
  constructor(host, opt) {
package/lib/mod-hfunc.js CHANGED
@@ -1,4 +1,4 @@
1
- // [v0.1.064-20250831]
1
+ // [v0.1.065-20260110]
2
2
 
3
3
  // === module init block ===
4
4
 
@@ -25,7 +25,7 @@ const {
25
25
 
26
26
  /**
27
27
  * @function readOnClickEventInfo
28
- * @param {object}
28
+ * @param {Event} e
29
29
  * @returns {object}
30
30
  * @inner
31
31
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cntwg/html-ctrls-lists",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "An HTML-form component: lists",
5
5
  "author": "ygracs <cs70th-om@rambler.ru>",
6
6
  "license": "MIT",
@@ -25,8 +25,6 @@
25
25
  ],
26
26
  "scripts": {
27
27
  "test": "jest",
28
- "test-lc2:bs": "jest THtmlItemsListController/base",
29
- "test-lc2:ec": "jest THtmlItemsListController/events",
30
28
  "build-doc-md": "jsdoc2md",
31
29
  "build-doc-html": "jsdoc"
32
30
  },
@@ -35,15 +33,15 @@
35
33
  "#test-dir/*": "./__test__/*"
36
34
  },
37
35
  "dependencies": {
38
- "@cntwg/html-ctrls-buttons": "^0.0.28",
39
- "@cntwg/html-helper": "^0.1.0",
40
- "@ygracs/bsfoc-lib-js": "^0.3.0",
41
- "@ygracs/lists-lib-js": "^0.1.0"
36
+ "@cntwg/html-ctrls-buttons": "^0.0.29",
37
+ "@cntwg/html-helper": "^0.1.1",
38
+ "@ygracs/bsfoc-lib-js": "^0.3.3",
39
+ "@ygracs/lists-lib-js": "^0.1.1"
42
40
  },
43
41
  "devDependencies": {
44
42
  "jest": "^30.2.0",
45
43
  "jest-environment-jsdom": "^30.2.0",
46
- "jsdoc-to-markdown": "^9.1.2",
44
+ "jsdoc-to-markdown": "^9.1.3",
47
45
  "minimist": "^1.2.8"
48
46
  }
49
47
  }