@podlite/diagram 0.0.20 → 0.0.22

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/README.md CHANGED
@@ -104,6 +104,7 @@ classDiagram
104
104
  [Open this example in pod6.in](https://pod6.in/#p=%3DMermaid%0AclassDiagram%0A+++Person+<%7C--+Student%0A+++Person+<%7C--+Professor%0A+++Person+%3A+%2BString+name%0A+++Person+%3A+%2BString+phoneNumber%0A+++Person+%3A+%2BString+emailAddress%0A+++Person%3A+%2BpurchaseParkingPass%28%29%0A+++Address+"1"+<--+"0..1"+Person%3Alives+at%0A+++class+Student%7B%0A++++++%2Bint+studentNumber%0A++++++%2Bint+averageMark%0A++++++%2BisEligibleToEnrol%28%29%0A++++++%2BgetSeminarsTaken%28%29%0A++++%7D%0A++++class+Professor%7B%0A++++++%2Bint+salary%0A++++%7D%0A++++class+Address%7B%0A++++++%2BString+street%0A++++++%2BString+city%0A++++++%2BString+state%0A++++++%2Bint+postalCode%0A++++++%2BString+country%0A++++++-validate%28%29%0A++++++%2BoutputAsLabel%28%29%0A++++%7D)
105
105
 
106
106
  #### Gantt diagram
107
+
107
108
  ```
108
109
  =Mermaid
109
110
  gantt
@@ -121,7 +122,6 @@ classDiagram
121
122
 
122
123
  [Open this example in pod6.in](https://pod6.in/#p=+%3DMermaid%0A+gantt%0A+title+Example+Gantt+diagram%0A++++dateFormat++YYYY-MM-DD%0A++++section+Team+1%0A++++Research+%26+requirements+%3Adone%2C+a1%2C+2021-04-08%2C+2021-04-10%0A++++Review+%26+documentation+%3A+after+a1%2C+20d%0A++++section+Team+2%0A++++Implementation++++++%3Acrit%2C+active%2C+2021-04-25++%2C+20d%0A++++Testing++++++%3Acrit%2C+20d)
123
124
 
124
-
125
125
  ## Contributing
126
126
 
127
127
  This is an open source program. Feel free to fork and contribute.
package/esm/index.js CHANGED
@@ -80,7 +80,7 @@ export const plugin = {
80
80
  };
81
81
  export const PluginRegister = {
82
82
  Diagram: plugin,
83
- Mermaid: plugin
83
+ Mermaid: plugin,
84
84
  };
85
85
  export default Diagram;
86
86
  //# sourceMappingURL=index.js.map
package/lib/index.js CHANGED
@@ -86,7 +86,7 @@ exports.plugin = {
86
86
  };
87
87
  exports.PluginRegister = {
88
88
  Diagram: exports.plugin,
89
- Mermaid: exports.plugin
89
+ Mermaid: exports.plugin,
90
90
  };
91
91
  exports.default = Diagram;
92
92
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@podlite/diagram",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "description": "Diagram",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "module": "./esm/index.js"
25
25
  },
26
26
  "dependencies": {
27
- "@podlite/schema": "0.0.16",
27
+ "@podlite/schema": "0.0.18",
28
28
  "mermaid": "8.12.1",
29
29
  "react-is": "^17.0.2"
30
30
  },