jqx-es 1.0.7 → 1.0.8
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 +16 -7
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -7,19 +7,28 @@
|
|
|
7
7
|
|
|
8
8
|
# JQx
|
|
9
9
|
|
|
10
|
-
This module was inspired by the idea that some parts of [JQuery](https://jquery.com) are too good [to ditch](https://youmightnotneedjquery.com/).
|
|
11
|
-
|
|
12
|
-
JQx is **not** a replacement for JQuery.
|
|
13
|
-
|
|
10
|
+
This module was inspired by the idea that some parts of [JQuery](https://jquery.com) are too good [to ditch](https://youmightnotneedjquery.com/).
|
|
11
|
+
JQx is **not** a replacement for JQuery.
|
|
14
12
|
Consider it a set of JQuery alike ES/JS-methods to programmatically ***create***, ***retrieve***, ***modify***, ***style*** and/or ***manipulate***
|
|
15
13
|
(collections of) HTML elements in a HTML document.
|
|
16
14
|
|
|
17
15
|
The code is written in a modular fashion and uses plain ES20xx, so not really (or really not, take your pick) suitable for older browsers.
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
Documentation can be found @[
|
|
17
|
+
### Documentation/demo
|
|
18
|
+
- Documentation can be found @[Codeberg](https://kooiinc.codeberg.page/JQx/Resource/Docs/)
|
|
19
|
+
or @[Github](https://kooiinc.github.io/JQx/Resource/Docs).
|
|
20
|
+
- A test and demo of this module can be found @[Codeberg](https://kooiinc.codeberg.page/JQx/Resource/Demo)
|
|
21
|
+
or @[Github](https://kooiinc.github.io/JQx/Resource/Demo).
|
|
22
|
+
|
|
23
|
+
### * Note *
|
|
24
|
+
This repository was formerly known as **JQL**, residing on [Github](https://github.com/KooiInc/JQx).
|
|
25
|
+
The *authorative* code base for this module is now: @[https://codeberg.org/KooiInc/JQx](https://codeberg.org/KooiInc/JQx).
|
|
26
|
+
|
|
27
|
+
The NPM package is copied to a new package (see top link). The old NPM package will not be updated and
|
|
28
|
+
discontinued in due time.
|
|
29
|
+
The latest JQL Github branch before this operation is preserved in **./Resource/JQL-last**.
|
|
21
30
|
|
|
22
|
-
|
|
31
|
+
The Github JQL repository is renamed to _**JQx**_ and will, until further notice, be synchronised with this CodeBerg repository.
|
|
23
32
|
|
|
24
33
|
## Install/Import/Initialize
|
|
25
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jqx-es",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "The good parts of JQuery",
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "https://codeberg.org/KooiInc/JQx/issues"
|
|
21
21
|
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"esbuild": "latest"
|
|
24
|
+
},
|
|
22
25
|
"sideEffects": false,
|
|
23
26
|
"scripts": {
|
|
24
27
|
"build": "node build"
|