@instructure/platform-institutional-tagging 3.0.1 → 3.0.2

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1520,8 +1520,8 @@ class Os extends Error {
1520
1520
  function GC(t) {
1521
1521
  if (typeof document > "u")
1522
1522
  return;
1523
- const e = t.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), n = document.cookie.match(`(^|[^;]+)\\s*${e}\\s*=\\s*([^;]+)`);
1524
- return n ? decodeURIComponent(n[2]) : void 0;
1523
+ const e = document.cookie.split("; ").find((n) => n.startsWith(`${t}=`));
1524
+ return e ? decodeURIComponent(e.slice(t.length + 1)) : void 0;
1525
1525
  }
1526
1526
  function JC(t) {
1527
1527
  const e = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/platform-institutional-tagging",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -75,7 +75,7 @@
75
75
  "luxon": "^3.7.2",
76
76
  "styled-components": "^6.3.11",
77
77
  "zod": "^3.23.8",
78
- "@instructure/platform-canvas-fetch": "0.1.2"
78
+ "@instructure/platform-canvas-fetch": "0.1.3"
79
79
  },
80
80
  "scripts": {
81
81
  "build": "vite build",