@domql/element 3.0.6 → 3.0.7
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.
|
@@ -42,7 +42,7 @@ var import_style = __toESM(require("./style.js"), 1);
|
|
|
42
42
|
var import_text = __toESM(require("./text.js"), 1);
|
|
43
43
|
const REGISTRY = {
|
|
44
44
|
attr: import_attr.default,
|
|
45
|
-
|
|
45
|
+
style: import_style.default,
|
|
46
46
|
text: import_text.default,
|
|
47
47
|
html: import_html.default,
|
|
48
48
|
data: import_data.default,
|
|
@@ -4,11 +4,11 @@ import data from "./data.js";
|
|
|
4
4
|
import html from "./html.js";
|
|
5
5
|
import scope from "./scope.js";
|
|
6
6
|
import state from "./state.js";
|
|
7
|
-
import
|
|
7
|
+
import style from "./style.js";
|
|
8
8
|
import text from "./text.js";
|
|
9
9
|
const REGISTRY = {
|
|
10
10
|
attr,
|
|
11
|
-
|
|
11
|
+
style,
|
|
12
12
|
text,
|
|
13
13
|
html,
|
|
14
14
|
data,
|
package/mixins/registry.js
CHANGED
|
@@ -6,12 +6,12 @@ import data from './data.js'
|
|
|
6
6
|
import html from './html.js'
|
|
7
7
|
import scope from './scope.js'
|
|
8
8
|
import state from './state.js'
|
|
9
|
-
import
|
|
9
|
+
import style from './style.js'
|
|
10
10
|
import text from './text.js'
|
|
11
11
|
|
|
12
12
|
export const REGISTRY = {
|
|
13
13
|
attr,
|
|
14
|
-
|
|
14
|
+
style,
|
|
15
15
|
text,
|
|
16
16
|
html,
|
|
17
17
|
data,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@domql/element",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "index.js",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
"prepublish": "rimraf -I dist && npm run build && npm run copy:package:cjs"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@domql/event": "^3.0.
|
|
31
|
-
"@domql/render": "^3.0.
|
|
30
|
+
"@domql/event": "^3.0.7",
|
|
31
|
+
"@domql/render": "^3.0.7",
|
|
32
32
|
"@domql/report": "^3.0.0",
|
|
33
|
-
"@domql/state": "^3.0.
|
|
34
|
-
"@domql/utils": "^3.0.
|
|
33
|
+
"@domql/state": "^3.0.7",
|
|
34
|
+
"@domql/utils": "^3.0.7"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "ad8d42d52cce0024e5df6b2e364f660e0e4dd02d",
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@babel/core": "^7.12.0"
|
|
39
39
|
}
|