pcm-shared-components 0.0.13 → 0.0.16

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
@@ -1,3 +1,3 @@
1
1
  # Shared Components between client and admin portal
2
2
 
3
-
3
+ The Library is published to NPM on the github build.
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import './styles/tailwind.css';
2
2
  import './styles/prism.css';
3
3
  import TestButton from './components/Buttons/TestButton';
4
- import CodeHighlight from './components/Tools/CodeHighlight';
4
+ import CodeHighlight from './components/Tools/CodeHighlight/CodeHighlight';
5
5
  import CustomFab from './components/Buttons/CustomFab/CustomFab';
6
- export { TestButton, CodeHighlight, CustomFab };
6
+ import HelpButton from './components/Buttons/HelpButton/HelpButton';
7
+ export { TestButton, CodeHighlight, CustomFab, HelpButton };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pcm-shared-components",
3
- "version": "0.0.13",
3
+ "version": "0.0.16",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "babel": {
@@ -57,6 +57,7 @@
57
57
  "@mui/material": "^5.3.1",
58
58
  "@mui/styles": "^5.3.0",
59
59
  "clsx": "^1.1.1",
60
- "moment": "^2.29.1"
60
+ "moment": "^2.29.1",
61
+ "prismjs": "^1.27.0"
61
62
  }
62
63
  }