@webqit/oohtml 1.10.2 → 1.10.4
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/.gitignore +3 -3
- package/LICENSE +21 -0
- package/README.md +400 -396
- package/dist/html-imports.js.map +1 -1
- package/dist/html-modules.js.map +1 -1
- package/dist/main.js.map +1 -1
- package/dist/namespaced-html.js.map +1 -1
- package/dist/state-api.js.map +1 -1
- package/dist/subscript.js.map +1 -1
- package/package.json +76 -76
- package/src/browser-entry.js +9 -9
- package/src/html-imports/browser-entry.js +9 -9
- package/src/html-imports/index.js +557 -557
- package/src/html-modules/browser-entry.js +9 -9
- package/src/html-modules/index.js +384 -384
- package/src/index.js +38 -38
- package/src/namespaced-html/browser-entry.js +9 -9
- package/src/namespaced-html/index.js +143 -143
- package/src/state-api/browser-entry.js +9 -9
- package/src/state-api/index.js +141 -141
- package/src/subscript/Element.js +102 -102
- package/src/subscript/browser-entry.js +9 -9
- package/src/subscript/index.js +69 -69
- package/src/util.js +180 -180
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@webqit/oohtml",
|
|
3
|
-
"title": "CHTML",
|
|
4
|
-
"description": "A suite of new DOM features that brings language support for modern UI development paradigms: a component-based architecture, data binding, and reactivity.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"namespaced-HTML",
|
|
7
|
-
"html-modules",
|
|
8
|
-
"ui-state",
|
|
9
|
-
"html-imports",
|
|
10
|
-
"reflex",
|
|
11
|
-
"subscript",
|
|
12
|
-
"scoped-js",
|
|
13
|
-
"UI",
|
|
14
|
-
"wicg-proposal"
|
|
15
|
-
],
|
|
16
|
-
"homepage": "https://webqit.io/tooling/oohtml",
|
|
17
|
-
"version": "1.10.
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"repository": {
|
|
20
|
-
"type": "git",
|
|
21
|
-
"url": "git+https://github.com/webqit/oohtml.git"
|
|
22
|
-
},
|
|
23
|
-
"bugs": {
|
|
24
|
-
"url": "https://github.com/webqit/oohtml/issues"
|
|
25
|
-
},
|
|
26
|
-
"type": "module",
|
|
27
|
-
"sideEffects": false,
|
|
28
|
-
"browser": {
|
|
29
|
-
"fs": false
|
|
30
|
-
},
|
|
31
|
-
"main": "./src/index.js",
|
|
32
|
-
"scripts": {
|
|
33
|
-
"test": "mocha --extension .test.js --exit",
|
|
34
|
-
"test:coverage": "c8 --reporter=text-lcov npm run test | coveralls",
|
|
35
|
-
"build": "esbuild main=src/browser-entry.js html-modules=src/html-modules/browser-entry.js html-imports=src/html-imports/browser-entry.js state-api=src/state-api/browser-entry.js namespaced-html=src/namespaced-html/browser-entry.js subscript=src/subscript/browser-entry.js --bundle --minify --sourcemap --outdir=dist",
|
|
36
|
-
"preversion": "npm run test && npm run build && git add -A dist",
|
|
37
|
-
"postversion": "npm publish",
|
|
38
|
-
"postpublish": "git push && git push --tags"
|
|
39
|
-
},
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"@webqit/browser-pie": "^0.0.17",
|
|
42
|
-
"@webqit/observer": "^1.7.5",
|
|
43
|
-
"@webqit/subscript": "^2.1.27",
|
|
44
|
-
"@webqit/util": "^0.8.7",
|
|
45
|
-
"acorn": "^8.7.0"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"chai": "^4.3.4",
|
|
49
|
-
"coveralls": "^3.1.1",
|
|
50
|
-
"esbuild": "^0.14.43",
|
|
51
|
-
"mocha": "^9.0.2",
|
|
52
|
-
"mocha-lcov-reporter": "^1.3.0"
|
|
53
|
-
},
|
|
54
|
-
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
|
|
55
|
-
"maintainers": [
|
|
56
|
-
"Oxford Harrison <oxharris.dev@gmail.com>"
|
|
57
|
-
],
|
|
58
|
-
"contributors": [],
|
|
59
|
-
"funding": {
|
|
60
|
-
"type": "patreon",
|
|
61
|
-
"url": "https://patreon.com/ox_harris"
|
|
62
|
-
},
|
|
63
|
-
"badges": {
|
|
64
|
-
"list": [
|
|
65
|
-
"npmversion",
|
|
66
|
-
"npmdownloads"
|
|
67
|
-
],
|
|
68
|
-
"config": {
|
|
69
|
-
"patreonUsername": "ox_harris",
|
|
70
|
-
"githubUsername": "webqit",
|
|
71
|
-
"githubRepository": "oohtml",
|
|
72
|
-
"githubSlug": "webqit/oohtml",
|
|
73
|
-
"npmPackageName": "@webqit/oohtml"
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@webqit/oohtml",
|
|
3
|
+
"title": "CHTML",
|
|
4
|
+
"description": "A suite of new DOM features that brings language support for modern UI development paradigms: a component-based architecture, data binding, and reactivity.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"namespaced-HTML",
|
|
7
|
+
"html-modules",
|
|
8
|
+
"ui-state",
|
|
9
|
+
"html-imports",
|
|
10
|
+
"reflex",
|
|
11
|
+
"subscript",
|
|
12
|
+
"scoped-js",
|
|
13
|
+
"UI",
|
|
14
|
+
"wicg-proposal"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://webqit.io/tooling/oohtml",
|
|
17
|
+
"version": "1.10.4",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/webqit/oohtml.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/webqit/oohtml/issues"
|
|
25
|
+
},
|
|
26
|
+
"type": "module",
|
|
27
|
+
"sideEffects": false,
|
|
28
|
+
"browser": {
|
|
29
|
+
"fs": false
|
|
30
|
+
},
|
|
31
|
+
"main": "./src/index.js",
|
|
32
|
+
"scripts": {
|
|
33
|
+
"test": "mocha --extension .test.js --exit",
|
|
34
|
+
"test:coverage": "c8 --reporter=text-lcov npm run test | coveralls",
|
|
35
|
+
"build": "esbuild main=src/browser-entry.js html-modules=src/html-modules/browser-entry.js html-imports=src/html-imports/browser-entry.js state-api=src/state-api/browser-entry.js namespaced-html=src/namespaced-html/browser-entry.js subscript=src/subscript/browser-entry.js --bundle --minify --sourcemap --outdir=dist",
|
|
36
|
+
"preversion": "npm run test && npm run build && git add -A dist",
|
|
37
|
+
"postversion": "npm publish",
|
|
38
|
+
"postpublish": "git push && git push --tags"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@webqit/browser-pie": "^0.0.17",
|
|
42
|
+
"@webqit/observer": "^1.7.5",
|
|
43
|
+
"@webqit/subscript": "^2.1.27",
|
|
44
|
+
"@webqit/util": "^0.8.7",
|
|
45
|
+
"acorn": "^8.7.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"chai": "^4.3.4",
|
|
49
|
+
"coveralls": "^3.1.1",
|
|
50
|
+
"esbuild": "^0.14.43",
|
|
51
|
+
"mocha": "^9.0.2",
|
|
52
|
+
"mocha-lcov-reporter": "^1.3.0"
|
|
53
|
+
},
|
|
54
|
+
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
|
|
55
|
+
"maintainers": [
|
|
56
|
+
"Oxford Harrison <oxharris.dev@gmail.com>"
|
|
57
|
+
],
|
|
58
|
+
"contributors": [],
|
|
59
|
+
"funding": {
|
|
60
|
+
"type": "patreon",
|
|
61
|
+
"url": "https://patreon.com/ox_harris"
|
|
62
|
+
},
|
|
63
|
+
"badges": {
|
|
64
|
+
"list": [
|
|
65
|
+
"npmversion",
|
|
66
|
+
"npmdownloads"
|
|
67
|
+
],
|
|
68
|
+
"config": {
|
|
69
|
+
"patreonUsername": "ox_harris",
|
|
70
|
+
"githubUsername": "webqit",
|
|
71
|
+
"githubRepository": "oohtml",
|
|
72
|
+
"githubSlug": "webqit/oohtml",
|
|
73
|
+
"npmPackageName": "@webqit/oohtml"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
package/src/browser-entry.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* @imports
|
|
4
|
-
*/
|
|
5
|
-
import init from './index.js';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* @init
|
|
9
|
-
*/
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* @imports
|
|
4
|
+
*/
|
|
5
|
+
import init from './index.js';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @init
|
|
9
|
+
*/
|
|
10
10
|
init.call(window);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* @imports
|
|
4
|
-
*/
|
|
5
|
-
import init from './index.js';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* @init
|
|
9
|
-
*/
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* @imports
|
|
4
|
+
*/
|
|
5
|
+
import init from './index.js';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @init
|
|
9
|
+
*/
|
|
10
10
|
init.call( window );
|