acsi-core 0.2.1 → 0.2.3

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.
@@ -0,0 +1,2 @@
1
+ export declare const loadConfig: () => Promise<Record<string, string>>;
2
+ export declare const getConfigValue: (key: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acsi-core",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Contains core components && functions for acsi-core project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -28,6 +28,7 @@
28
28
  "gapi-script": "^1.2.0",
29
29
  "i18next": "^23.7.16",
30
30
  "js-cookie": "^3.0.5",
31
+ "katex": "^0.16.22",
31
32
  "link": "^2.1.0",
32
33
  "lodash": "^4.17.21",
33
34
  "moment": "^2.29.4",
@@ -36,9 +37,15 @@
36
37
  "react-google-recaptcha-v3": "^1.10.1",
37
38
  "react-i18next": "^14.0.0",
38
39
  "react-icons": "^4.12.0",
40
+ "react-markdown": "^10.1.0",
39
41
  "react-select": "^5.9.0",
40
42
  "react-toastify": "^9.1.3",
41
43
  "reactstrap": "^9.2.1",
44
+ "rehype-katex": "^7.0.1",
45
+ "rehype-raw": "^7.0.0",
46
+ "remark-gfm": "^4.0.1",
47
+ "remark-math": "^6.0.0",
48
+ "remark-rehype": "^11.1.2",
42
49
  "tinymce": "^7.7.0",
43
50
  "yup": "^1.3.3"
44
51
  },
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const PDFViewer: () => import("react").JSX.Element;
3
- export default PDFViewer;