acsi-core 1.2.35 → 1.2.37

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.
@@ -49,4 +49,3 @@ export declare const COLORS: {
49
49
  export declare const ORGANIZATION_TENANT = "ORGANIZATION_TENANT";
50
50
  export declare const ORGANIZATION_TEAM = "ORGANIZATION_TEAM";
51
51
  export declare const TIMEZONE_ID = "TIMEZONE_ID";
52
- export declare const UID_TENANT = "uid";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acsi-core",
3
- "version": "1.2.35",
3
+ "version": "1.2.37",
4
4
  "description": "Contains core components && functions for acsi-core project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -24,7 +24,6 @@
24
24
  "@tinymce/tinymce-react": "^4.3.0",
25
25
  "@types/js-cookie": "^3.0.6",
26
26
  "axios": "^1.6.2",
27
- "dompurify": "^3.2.7",
28
27
  "formik": "^2.4.5",
29
28
  "gapi-script": "^1.2.0",
30
29
  "i18next": "^23.7.16",
@@ -55,7 +54,7 @@
55
54
  "react": "^18.2.0",
56
55
  "react-dom": "^18.2.0",
57
56
  "react-redux": "^9.0.4",
58
- "react-router-dom": "^6.16.0"
57
+ "react-router-dom": "^5.3.4"
59
58
  },
60
59
  "scripts": {
61
60
  "build": "microbundle-crl --no-compress --format modern,cjs",
@@ -1,2 +0,0 @@
1
- declare const sanitizeHTMLText: (text: string) => string;
2
- export default sanitizeHTMLText;
@@ -1,7 +0,0 @@
1
- /**
2
- * Sanitizes and validates URLs to prevent XSS and other security vulnerabilities
3
- * @param url - The URL string to sanitize
4
- * @returns The sanitized URL string, or null if the URL is invalid/dangerous
5
- */
6
- declare const sanitizeSrc: (url: string) => string;
7
- export default sanitizeSrc;