web-documentation 1.0.30 → 1.0.32
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 +10 -10
- package/source/index.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-documentation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.32",
|
|
4
4
|
"description": "Declarative multilanguage documentation website generator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"documentation",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"watch": "weboptimizer build --watch"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@aws-sdk/client-s3": "^3.
|
|
53
|
+
"@aws-sdk/client-s3": "^3.1064.0",
|
|
54
54
|
"@babel/eslint-parser": "^7.29.7",
|
|
55
55
|
"@babel/runtime": "^7.29.7",
|
|
56
56
|
"@eslint/js": "^10.0.1",
|
|
@@ -63,16 +63,16 @@
|
|
|
63
63
|
"@types/node": "^25.9.2",
|
|
64
64
|
"@types/unzipper": "^0.10.11",
|
|
65
65
|
"@types/webpack-env": "^1.18.8",
|
|
66
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
67
|
-
"@typescript-eslint/parser": "^8.
|
|
66
|
+
"@typescript-eslint/eslint-plugin": "^8.61.0",
|
|
67
|
+
"@typescript-eslint/parser": "^8.61.0",
|
|
68
68
|
"@webcomponents/webcomponentsjs": "^2.8.0",
|
|
69
69
|
"archiver": "^8.0.0",
|
|
70
70
|
"bootstrap-icons": "^1.13.1",
|
|
71
|
-
"clientnode": "^4.0.
|
|
71
|
+
"clientnode": "^4.0.1421",
|
|
72
72
|
"css-loader": "^7.1.4",
|
|
73
73
|
"cssnano": "^8.0.1",
|
|
74
74
|
"default-gateway": "^7.2.2",
|
|
75
|
-
"errorreporter": "^1.0.
|
|
75
|
+
"errorreporter": "^1.0.347",
|
|
76
76
|
"eslint": "^10.4.1",
|
|
77
77
|
"eslint-config-google": "^0.14.0",
|
|
78
78
|
"eslint-plugin-jsdoc": "^63.0.2",
|
|
@@ -101,14 +101,14 @@
|
|
|
101
101
|
"style-loader": "^4.0.0",
|
|
102
102
|
"stylelint": "^17.13.0",
|
|
103
103
|
"stylelint-config-standard": "^40.0.0",
|
|
104
|
-
"typescript-eslint": "^8.
|
|
104
|
+
"typescript-eslint": "^8.61.0",
|
|
105
105
|
"ua-parser-js": "^2.0.10",
|
|
106
106
|
"unzipper": "^0.12.3",
|
|
107
|
-
"web-component-wrapper": "^0.0.
|
|
108
|
-
"web-internationalization": "^2.0.
|
|
107
|
+
"web-component-wrapper": "^0.0.595",
|
|
108
|
+
"web-internationalization": "^2.0.38",
|
|
109
109
|
"weboptimizer": "^3.0.24",
|
|
110
110
|
"webpack-dev-server": "^5.2.4",
|
|
111
|
-
"website-utilities": "^1.0.
|
|
111
|
+
"website-utilities": "^1.0.440"
|
|
112
112
|
},
|
|
113
113
|
"engines": {
|
|
114
114
|
"node": ">=24",
|
package/source/index.ts
CHANGED
|
@@ -438,9 +438,10 @@ export class WebDocumentation<
|
|
|
438
438
|
.createElement('style')
|
|
439
439
|
domNode.setAttribute('type', 'text/css')
|
|
440
440
|
domNode.innerText = code
|
|
441
|
-
} else if (match[2].toLowerCase() === 'hidden')
|
|
441
|
+
} else if (match[2].toLowerCase() === 'hidden') {
|
|
442
442
|
domNode = createDomNodes(code)
|
|
443
|
-
|
|
443
|
+
reInjectScripts = true
|
|
444
|
+
} else {
|
|
444
445
|
domNode = createDomNodes(format(
|
|
445
446
|
this.options.showExample.htmlWrapper, code
|
|
446
447
|
))
|