boomack 0.11.1 → 0.12.0

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.
Files changed (54) hide show
  1. package/client/themes/blue-night/prism.css +128 -128
  2. package/client/themes/blue-night/semantic.min.css +403 -403
  3. package/client/themes/blue-night/semantic.min.js +10 -10
  4. package/client/themes/dark/prism.css +173 -173
  5. package/client/themes/dark/semantic.min.css +403 -403
  6. package/client/themes/dark/semantic.min.js +10 -10
  7. package/client/themes/default/prism.css +190 -190
  8. package/client/themes/default/semantic.min.css +403 -403
  9. package/client/themes/default/semantic.min.js +10 -10
  10. package/client/themes/green-night/prism.css +128 -128
  11. package/client/themes/green-night/semantic.min.css +403 -403
  12. package/client/themes/green-night/semantic.min.js +10 -10
  13. package/client/themes/iron/prism.css +131 -131
  14. package/client/themes/iron/semantic.min.css +403 -403
  15. package/client/themes/iron/semantic.min.js +10 -10
  16. package/client/themes/red-night/prism.css +130 -130
  17. package/client/themes/red-night/semantic.min.css +403 -403
  18. package/client/themes/red-night/semantic.min.js +10 -10
  19. package/client/themes/science/prism.css +161 -161
  20. package/client/themes/science/semantic.min.css +403 -403
  21. package/client/themes/science/semantic.min.js +10 -10
  22. package/client/vendor/fonts/brand-icons.svg +3570 -3570
  23. package/client/vendor/fonts/icons.svg +4938 -4938
  24. package/client/vendor/fonts/outline-icons.svg +803 -803
  25. package/client/vendor/js/jquery.min.js +2 -2
  26. package/client/vendor/js/lodash.min.js +139 -139
  27. package/client/vendor/js/semantic.min.js +10 -10
  28. package/package.json +1 -1
  29. package/server-build/index.js +57 -1
  30. package/server-build/model/action.js +9 -21
  31. package/server-build/model/action.test.js +0 -43
  32. package/server-build/model/layout.js +2 -0
  33. package/server-build/model/layout.test.js +4 -44
  34. package/server-build/plugins/csv.js +2 -0
  35. package/server-build/plugins/generic.js +3 -1
  36. package/server-build/plugins/highlight.js +3 -0
  37. package/server-build/plugins/http.js +135 -0
  38. package/server-build/plugins/markdown.js +6 -0
  39. package/server-build/plugins/media.js +7 -0
  40. package/server-build/plugins/shell.js +215 -0
  41. package/server-build/plugins/shell.test.js +297 -0
  42. package/server-build/plugins/text.js +42 -9
  43. package/server-build/plugins/udp.js +96 -0
  44. package/server-build/routes/actions.js +12 -2
  45. package/server-build/routes/web-client.js +1 -0
  46. package/server-build/service/actions.js +43 -119
  47. package/server-build/service/actions.test.js +13 -256
  48. package/server-build/service/html.js +11 -3
  49. package/server-build/service/plugins.js +28 -2
  50. package/server-build/service/plugins.test.js +13 -0
  51. package/server-build/service/render.test.js +26 -5
  52. package/server-build/service/transform.test.js +28 -4
  53. package/server-build/typedefs.js +21 -2
  54. package/server-build/utils.js +6 -3
@@ -1,128 +1,128 @@
1
- /**
2
- * BlueNight for Boomack blue-night theme.
3
- * @author Tobias Kiertscher
4
- */
5
-
6
- code[class*="language-"],
7
- pre[class*="language-"] {
8
- color: #0000C0;
9
- background: none;
10
- font-family: "Roboto Mono", Consolas, Courier, monospace;
11
- font-size: 1em;
12
- text-align: left;
13
- white-space: pre;
14
- word-spacing: normal;
15
- word-break: normal;
16
- word-wrap: normal;
17
- line-height: 1.5;
18
-
19
- -moz-tab-size: 4;
20
- -o-tab-size: 4;
21
- tab-size: 4;
22
-
23
- -webkit-hyphens: none;
24
- -moz-hyphens: none;
25
- -ms-hyphens: none;
26
- hyphens: none;
27
- }
28
- /* Code blocks */
29
- pre[class*="language-"] {
30
- padding: 1em;
31
- margin: .5em 0;
32
- overflow: auto;
33
- }
34
-
35
- :not(pre) > code[class*="language-"],
36
- pre[class*="language-"] {
37
- background: #000000;
38
- }
39
-
40
- /* Inline code */
41
- :not(pre) > code[class*="language-"] {
42
- padding: .1em;
43
- border-radius: .3em;
44
- white-space: normal;
45
- }
46
-
47
- .token.comment,
48
- .token.block-comment,
49
- .token.prolog,
50
- .token.doctype,
51
- .token.cdata {
52
- color: #000060;
53
- }
54
-
55
- .token.comment,
56
- .token.block-comment {
57
- font-style: italic;
58
- }
59
-
60
- .token.punctuation {
61
- color: #0000D0;
62
- }
63
-
64
- .token.tag,
65
- .token.attr-name,
66
- .token.namespace,
67
- .token.deleted {
68
- color: #0000FF;
69
- }
70
-
71
- .token.function,
72
- .token.function-name {
73
- color: #0000FF;
74
- font-style: italic;
75
- }
76
-
77
- .token.boolean,
78
- .token.number {
79
- color: #0000C0;
80
- }
81
-
82
- .token.property,
83
- .token.class-name,
84
- .token.constant,
85
- .token.symbol {
86
- color: #0000FF;
87
- }
88
-
89
- .token.selector,
90
- .token.important,
91
- .token.atrule,
92
- .token.keyword,
93
- .token.builtin {
94
- color: #0000B8;
95
- font-weight: 700;
96
- }
97
-
98
- .token.string,
99
- .token.char,
100
- .token.attr-value,
101
- .token.regex,
102
- .token.variable {
103
- color: #0000E0;
104
- }
105
-
106
- .token.operator,
107
- .token.url {
108
- color: #0000F0;
109
- }
110
-
111
- .token.important,
112
- .token.bold {
113
- font-weight: bold;
114
- }
115
- .token.italic {
116
- font-style: italic;
117
- }
118
-
119
- .token.entity {
120
- background: #000040;
121
- color: #0000E0;
122
- font-style: italic;
123
- cursor: help;
124
- }
125
-
126
- .token.inserted {
127
- color: #5050FF;
128
- }
1
+ /**
2
+ * BlueNight for Boomack blue-night theme.
3
+ * @author Tobias Kiertscher
4
+ */
5
+
6
+ code[class*="language-"],
7
+ pre[class*="language-"] {
8
+ color: #0000C0;
9
+ background: none;
10
+ font-family: "Roboto Mono", Consolas, Courier, monospace;
11
+ font-size: 1em;
12
+ text-align: left;
13
+ white-space: pre;
14
+ word-spacing: normal;
15
+ word-break: normal;
16
+ word-wrap: normal;
17
+ line-height: 1.5;
18
+
19
+ -moz-tab-size: 4;
20
+ -o-tab-size: 4;
21
+ tab-size: 4;
22
+
23
+ -webkit-hyphens: none;
24
+ -moz-hyphens: none;
25
+ -ms-hyphens: none;
26
+ hyphens: none;
27
+ }
28
+ /* Code blocks */
29
+ pre[class*="language-"] {
30
+ padding: 1em;
31
+ margin: .5em 0;
32
+ overflow: auto;
33
+ }
34
+
35
+ :not(pre) > code[class*="language-"],
36
+ pre[class*="language-"] {
37
+ background: #000000;
38
+ }
39
+
40
+ /* Inline code */
41
+ :not(pre) > code[class*="language-"] {
42
+ padding: .1em;
43
+ border-radius: .3em;
44
+ white-space: normal;
45
+ }
46
+
47
+ .token.comment,
48
+ .token.block-comment,
49
+ .token.prolog,
50
+ .token.doctype,
51
+ .token.cdata {
52
+ color: #000060;
53
+ }
54
+
55
+ .token.comment,
56
+ .token.block-comment {
57
+ font-style: italic;
58
+ }
59
+
60
+ .token.punctuation {
61
+ color: #0000D0;
62
+ }
63
+
64
+ .token.tag,
65
+ .token.attr-name,
66
+ .token.namespace,
67
+ .token.deleted {
68
+ color: #0000FF;
69
+ }
70
+
71
+ .token.function,
72
+ .token.function-name {
73
+ color: #0000FF;
74
+ font-style: italic;
75
+ }
76
+
77
+ .token.boolean,
78
+ .token.number {
79
+ color: #0000C0;
80
+ }
81
+
82
+ .token.property,
83
+ .token.class-name,
84
+ .token.constant,
85
+ .token.symbol {
86
+ color: #0000FF;
87
+ }
88
+
89
+ .token.selector,
90
+ .token.important,
91
+ .token.atrule,
92
+ .token.keyword,
93
+ .token.builtin {
94
+ color: #0000B8;
95
+ font-weight: 700;
96
+ }
97
+
98
+ .token.string,
99
+ .token.char,
100
+ .token.attr-value,
101
+ .token.regex,
102
+ .token.variable {
103
+ color: #0000E0;
104
+ }
105
+
106
+ .token.operator,
107
+ .token.url {
108
+ color: #0000F0;
109
+ }
110
+
111
+ .token.important,
112
+ .token.bold {
113
+ font-weight: bold;
114
+ }
115
+ .token.italic {
116
+ font-style: italic;
117
+ }
118
+
119
+ .token.entity {
120
+ background: #000040;
121
+ color: #0000E0;
122
+ font-style: italic;
123
+ cursor: help;
124
+ }
125
+
126
+ .token.inserted {
127
+ color: #5050FF;
128
+ }