smsmslib 1.0.64 → 1.0.65
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/javascr/av_controller/AvControllerState_t.js +1 -1
- package/javascr/av_controller/HtmlControl_t.js +1 -1
- package/javascr/av_controller/HtmlMedia_t.js +1 -1
- package/javascr/av_controller/HtmlPlay_t.js +1 -1
- package/javascr/av_controller/HtmlSkipForward_t.js +1 -1
- package/javascr/av_controller/HtmlSkipRewind_t.js +1 -1
- package/javascr/av_controller/HtmlTimerDigit_t.js +1 -1
- package/javascr/av_controller/HtmlTimerFrame_t.js +1 -1
- package/javascr/av_controller/av_controller.js +1 -1
- package/javascr/av_controller/index.js +1 -1
- package/javascr/index.js +1 -1
- package/javascr/system/App_t.js +1 -1
- package/javascr/system/HtmlElement_t.js +1 -1
- package/javascr/system/Observer_t.js +1 -1
- package/javascr/system/SubjectSet_t.js +1 -1
- package/javascr/system/Subject_t.js +1 -1
- package/javascr/system/array.js +1 -1
- package/javascr/system/arrayconcat.js +1 -1
- package/javascr/system/arraynew.js +1 -1
- package/javascr/system/arraypush.js +1 -1
- package/javascr/system/arraysplice.js +1 -1
- package/javascr/system/document.js +1 -1
- package/javascr/system/html.js +1 -1
- package/javascr/system/index.js +1 -1
- package/javascr/system/matnew.js +3 -2
- package/javascr/system/set.js +1 -1
- package/javascr/system/type.js +1 -1
- package/package.json +2 -2
- package/react/index.js +1 -1
- package/react/system/index.js +1 -1
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* observer for HTMLMediaElements (e.g., <video> or <audio>). It facilitates
|
|
8
8
|
* bidirectional synchronization:
|
|
9
9
|
*
|
|
10
|
-
* @module
|
|
10
|
+
* @module javascr/av_controller/HtmlMedia_t
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/** ---------------------------------------------------------------------------
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* the button's visual state with the application's playback state and handles
|
|
9
9
|
* user toggle interactions.
|
|
10
10
|
*
|
|
11
|
-
* @module
|
|
11
|
+
* @module javascr/av_controller/HtmlPlay_t
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
/** ---------------------------------------------------------------------------
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* observer for a skip-forward control. It handles user interactions to
|
|
8
8
|
* instantly move the media playback position to the end of the seekable range.
|
|
9
9
|
*
|
|
10
|
-
* @module
|
|
10
|
+
* @module javascr/av_controller/HtmlSkipForward_t
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/** ---------------------------------------------------------------------------
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* observer for a skip-rewind control. It handles user interactions to
|
|
8
8
|
* instantly move the media playback position to the start of the seekable range.
|
|
9
9
|
*
|
|
10
|
-
* @module
|
|
10
|
+
* @module javascr/av_controller/HtmlSkipRewind_t
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/** ---------------------------------------------------------------------------
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* The logic includes both initial state synchronization and real-time updates
|
|
12
12
|
* triggered by media playback events.
|
|
13
13
|
*
|
|
14
|
-
* @module
|
|
14
|
+
* @module javascr/av_controller/HtmlTimerDigit_t
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
17
|
/** ---------------------------------------------------------------------------
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* actual rendered width of the progress bar's frame and synchronize that
|
|
9
9
|
* measurement with the shared application state.
|
|
10
10
|
*
|
|
11
|
-
* @module
|
|
11
|
+
* @module javascr/av_controller/HtmlTimerFrame_t
|
|
12
12
|
* --------------------------------------------------------------------------- */
|
|
13
13
|
|
|
14
14
|
/** ---------------------------------------------------------------------------
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* This module provides high-level controller functions to manage the creation,
|
|
6
6
|
* initialization, and disposal of `Subject_t`.
|
|
7
7
|
*
|
|
8
|
-
* @module
|
|
8
|
+
* @module javascr/av_controller/av_controller
|
|
9
9
|
* --------------------------------------------------------------------------- */
|
|
10
10
|
|
|
11
11
|
/** ---------------------------------------------------------------------------
|
package/javascr/index.js
CHANGED
package/javascr/system/App_t.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @file App_t.js
|
|
3
3
|
* @brief Application root class providing a central access point for state management.
|
|
4
4
|
*
|
|
5
|
-
* @module
|
|
5
|
+
* @module javascr/system/App_t
|
|
6
6
|
* --------------------------------------------------------------------------- */
|
|
7
7
|
|
|
8
8
|
/** ---------------------------------------------------------------------------
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* JavaScript objects and their corresponding HTML elements, providing a
|
|
9
9
|
* structured way to manage DOM nodes as observer instances.
|
|
10
10
|
*
|
|
11
|
-
* @module
|
|
11
|
+
* @module javascr/system/HtmlElement_t
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
/** ---------------------------------------------------------------------------
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* should override these methods to implement specific behaviors, such as
|
|
8
8
|
* updating DOM elements or handling application-level events.
|
|
9
9
|
*
|
|
10
|
-
* @module
|
|
10
|
+
* @module javascr/system/Observer_t
|
|
11
11
|
* --------------------------------------------------------------------------- */
|
|
12
12
|
|
|
13
13
|
/**
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* to organize various data domains (e.g., user profiles, settings, state)
|
|
8
8
|
* under unique keys and provides mechanisms for collective operations.
|
|
9
9
|
*
|
|
10
|
-
* @module
|
|
10
|
+
* @module javascr/system/SubjectSet_t
|
|
11
11
|
* --------------------------------------------------------------------------- */
|
|
12
12
|
|
|
13
13
|
/** ---------------------------------------------------------------------------
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
* via `data_get()`, editing it, and then explicitly calling `observer_update()`
|
|
19
19
|
* to trigger observer synchronization.
|
|
20
20
|
*
|
|
21
|
-
* @module
|
|
21
|
+
* @module javascr/system/Subject_t
|
|
22
22
|
* --------------------------------------------------------------------------- */
|
|
23
23
|
|
|
24
24
|
/** ---------------------------------------------------------------------------
|
package/javascr/system/array.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Provides utility functions for **safely modifying array contents** through
|
|
4
4
|
* splicing, removal, and replacement.
|
|
5
5
|
*
|
|
6
|
-
* @module
|
|
6
|
+
* @module javascr/system/arraysplice
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/** ---------------------------------------------------------------------------
|
package/javascr/system/html.js
CHANGED
package/javascr/system/index.js
CHANGED
package/javascr/system/matnew.js
CHANGED
package/javascr/system/set.js
CHANGED
package/javascr/system/type.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smsmslib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.65",
|
|
4
4
|
"description": "Reusable functions for me.",
|
|
5
5
|
"files": [
|
|
6
6
|
"javascr/**/*.js",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"author": "",
|
|
20
20
|
"license": "ISC",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"smsmslib": "^1.0.
|
|
22
|
+
"smsmslib": "^1.0.65"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/react/index.js
CHANGED