@jupyterlab/mermaid 4.1.0-alpha.1

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/style/base.css ADDED
@@ -0,0 +1,47 @@
1
+ /*
2
+ * Copyright (c) Jupyter Development Team.
3
+ * Distributed under the terms of the Modified BSD License.
4
+ */
5
+ .jp-RenderedMermaid {
6
+ overflow: auto;
7
+ display: flex;
8
+ }
9
+
10
+ .jp-RenderedMermaid.jp-mod-warning {
11
+ width: auto;
12
+ padding: 0.5em;
13
+ margin-top: 0.5em;
14
+ border: var(--jp-border-width) solid var(--jp-warn-color2);
15
+ border-radius: var(--jp-border-radius);
16
+ color: var(--jp-ui-font-color1);
17
+ font-size: var(--jp-ui-font-size1);
18
+ white-space: pre-wrap;
19
+ word-wrap: break-word;
20
+ }
21
+
22
+ .jp-RenderedMermaid figure {
23
+ margin: 0;
24
+ overflow: auto;
25
+ max-width: 100%;
26
+ }
27
+
28
+ .jp-RenderedMermaid img {
29
+ max-width: 100%;
30
+ }
31
+
32
+ .jp-RenderedMermaid-Details > pre {
33
+ margin-top: 1em;
34
+ }
35
+
36
+ .jp-RenderedMermaid-Summary {
37
+ color: var(--jp-warn-color2);
38
+ }
39
+
40
+ .jp-RenderedMermaid:not(.jp-mod-warning) pre {
41
+ display: none;
42
+ }
43
+
44
+ .jp-RenderedMermaid-Summary > pre {
45
+ display: inline-block;
46
+ white-space: normal;
47
+ }
@@ -0,0 +1,9 @@
1
+ /*-----------------------------------------------------------------------------
2
+ | Copyright (c) Jupyter Development Team.
3
+ | Distributed under the terms of the Modified BSD License.
4
+ |----------------------------------------------------------------------------*/
5
+
6
+ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */
7
+ @import url('~@lumino/widgets/style/index.css');
8
+ @import url('~@jupyterlab/apputils/style/index.css');
9
+ @import url('./base.css');
package/style/index.js ADDED
@@ -0,0 +1,10 @@
1
+ /*-----------------------------------------------------------------------------
2
+ | Copyright (c) Jupyter Development Team.
3
+ | Distributed under the terms of the Modified BSD License.
4
+ |----------------------------------------------------------------------------*/
5
+
6
+ /* This file was auto-generated by ensurePackage() in @jupyterlab/buildutils */
7
+ import '@lumino/widgets/style/index.js';
8
+ import '@jupyterlab/apputils/style/index.js';
9
+
10
+ import './base.css';