clientnode 4.0.1423 → 4.0.1424
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/package.json +6 -6
- package/readme.md +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clientnode",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1424",
|
|
4
4
|
"description": "Handy utilities for any JavaScript environments.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"client",
|
|
@@ -81,12 +81,12 @@
|
|
|
81
81
|
"@types/node": "^25.9.3",
|
|
82
82
|
"@types/prop-types": "^15.7.15",
|
|
83
83
|
"@types/webpack-env": "^1.18.8",
|
|
84
|
-
"@typescript-eslint/eslint-plugin": "^8.61.
|
|
85
|
-
"@typescript-eslint/parser": "^8.61.
|
|
84
|
+
"@typescript-eslint/eslint-plugin": "^8.61.1",
|
|
85
|
+
"@typescript-eslint/parser": "^8.61.1",
|
|
86
86
|
"clientnode": "workspace:.",
|
|
87
87
|
"eslint": "^10.5.0",
|
|
88
88
|
"eslint-config-google": "^0.14.0",
|
|
89
|
-
"eslint-plugin-jsdoc": "^63.0.
|
|
89
|
+
"eslint-plugin-jsdoc": "^63.0.5",
|
|
90
90
|
"favicons-webpack-plugin": "^6.0.1",
|
|
91
91
|
"image-minimizer-webpack-plugin": "^5.0.0",
|
|
92
92
|
"jest": "30.4.2",
|
|
@@ -94,8 +94,8 @@
|
|
|
94
94
|
"node-fetch": "^3.3.2",
|
|
95
95
|
"prop-types": "^15.8.1",
|
|
96
96
|
"rimraf": "^6.1.3",
|
|
97
|
-
"typescript-eslint": "^8.61.
|
|
98
|
-
"web-documentation": "^1.0.
|
|
97
|
+
"typescript-eslint": "^8.61.1",
|
|
98
|
+
"web-documentation": "^1.0.40",
|
|
99
99
|
"weboptimizer": "^3.0.24",
|
|
100
100
|
"webpack-dev-server": "^5.2.5"
|
|
101
101
|
},
|
package/readme.md
CHANGED
|
@@ -100,16 +100,16 @@ import {createDomNodes, evaluateExpression} from 'cientnode'
|
|
|
100
100
|
<!--showExample:JavaScript-->
|
|
101
101
|
|
|
102
102
|
```JavaScript
|
|
103
|
-
const domNode = clientnode.createDomNodes('<p>some content to animate</p>')
|
|
103
|
+
const domNode = clientnode.createDomNodes('<p>some content to animate</p>')
|
|
104
104
|
|
|
105
105
|
const endless = () => {
|
|
106
106
|
clientnode.fadeIn(domNode)
|
|
107
107
|
.then(() => clientnode.fadeOut(domNode))
|
|
108
108
|
.then(endless)
|
|
109
|
-
}
|
|
110
|
-
endless()
|
|
109
|
+
}
|
|
110
|
+
endless()
|
|
111
111
|
|
|
112
|
-
document.querySelector('#first-example-playground').appendChild(domNode)
|
|
112
|
+
document.querySelector('#first-example-playground').appendChild(domNode)
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
The compiled bundle supports AMD, commonjs, commonjs2 and variable injection
|
|
@@ -145,5 +145,5 @@ document.querySelector('#second-example-playground').innerText =
|
|
|
145
145
|
operand2: {$select: 'some.data.in.scope'}
|
|
146
146
|
},
|
|
147
147
|
{some: {data: {in: {scope: 3}}}}
|
|
148
|
-
)
|
|
148
|
+
)
|
|
149
149
|
```
|