web-documentation 1.0.33 → 1.0.35
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 +3 -3
- package/source/dummyReadme.md +2 -4
- package/source/index.css +0 -6
- package/source/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-documentation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
4
4
|
"description": "Declarative multilanguage documentation website generator",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"documentation",
|
|
@@ -68,7 +68,7 @@
|
|
|
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.1422",
|
|
72
72
|
"css-loader": "^7.1.4",
|
|
73
73
|
"cssnano": "^8.0.1",
|
|
74
74
|
"default-gateway": "^7.2.2",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"ua-parser-js": "^2.0.10",
|
|
106
106
|
"unzipper": "^0.12.3",
|
|
107
107
|
"web-component-wrapper": "^0.0.596",
|
|
108
|
-
"web-internationalization": "^2.0.
|
|
108
|
+
"web-internationalization": "^2.0.41",
|
|
109
109
|
"weboptimizer": "^3.0.24",
|
|
110
110
|
"webpack-dev-server": "^5.2.4",
|
|
111
111
|
"website-utilities": "^1.0.442"
|
package/source/dummyReadme.md
CHANGED
|
@@ -28,7 +28,6 @@ Project status
|
|
|
28
28
|
|
|
29
29
|
[](https://githubbox.com/thaibault/clientnode)
|
|
30
30
|
|
|
31
|
-
<!--|deDE:Einsatz-->
|
|
32
31
|
Use case
|
|
33
32
|
--------
|
|
34
33
|
|
|
@@ -60,9 +59,8 @@ You need utilities for:<!--deDE:Sie benötigen Hilfsfunktionen für:-->
|
|
|
60
59
|
- URLs
|
|
61
60
|
|
|
62
61
|
<!--Place for automatic generated table of contents.-->
|
|
63
|
-
<div class="wd-table-of-contents"
|
|
64
|
-
|
|
65
|
-
<h2 id="content">Content</h2>
|
|
62
|
+
<div class="wd-table-of-contents">
|
|
63
|
+
<h2 id="content">Content<!--deDE:Inhalt--></h2>
|
|
66
64
|
<!--wd-table-of-contents-->
|
|
67
65
|
</div>
|
|
68
66
|
|
package/source/index.css
CHANGED
|
@@ -32,24 +32,18 @@ body {
|
|
|
32
32
|
/* region constants */
|
|
33
33
|
/** region color */
|
|
34
34
|
--background-color: white; /* pure white */
|
|
35
|
-
|
|
36
35
|
--header-background-color: #333; /* gray */
|
|
37
36
|
--header-background-gradient: linear-gradient(
|
|
38
37
|
to bottom, var(--header-background-color), var(--headline-color)
|
|
39
38
|
);
|
|
40
39
|
--header-font-color: var(--background-color);
|
|
41
|
-
|
|
42
40
|
--surface-color: #fcffff; /* blueish white */
|
|
43
41
|
--surface-border-color: #ddd; /* light gray */
|
|
44
|
-
|
|
45
42
|
--shadow-color: black;
|
|
46
|
-
|
|
47
43
|
--font-color: var(--header-background-color);
|
|
48
44
|
--headline-color: #212121; /* light black */
|
|
49
|
-
|
|
50
45
|
--link-color: #0078d4; /* blue */
|
|
51
46
|
--link-hover-color: #003a67; /* dark blue */
|
|
52
|
-
|
|
53
47
|
--footer-background-color: var(--surface-color);
|
|
54
48
|
--footer-background-gradient: linear-gradient(
|
|
55
49
|
to bottom, var(--background-color), var(--surface-color)
|
package/source/index.ts
CHANGED