@gsa-tts/graymatter-ui 1.0.3 → 1.0.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gsa-tts/graymatter-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"typescript": "5.7.3",
|
|
62
62
|
"vite": "^7.3.2",
|
|
63
63
|
"vitest": "^3.2.4",
|
|
64
|
-
"@gsa-tts/graymatter-
|
|
64
|
+
"@gsa-tts/graymatter-vitest-config": "0.0.2",
|
|
65
65
|
"@gsa-tts/graymatter-typescript-config": "0.0.3",
|
|
66
|
-
"@gsa-tts/graymatter-
|
|
66
|
+
"@gsa-tts/graymatter-eslint": "0.0.2"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@fontsource/archivo": "^5.2.8",
|
|
@@ -27,13 +27,19 @@ const {
|
|
|
27
27
|
|
|
28
28
|
// Read at build time for static output; prefer PUBLIC_* for safe exposure
|
|
29
29
|
const chatUrl =
|
|
30
|
-
import.meta.env.PUBLIC_CHAT_URL || process.env.
|
|
30
|
+
import.meta.env.PUBLIC_CHAT_URL || process.env.PUBLIC_CHAT_URL || undefined;
|
|
31
31
|
const consoleUrl =
|
|
32
|
-
import.meta.env.PUBLIC_CONSOLE_URL ||
|
|
32
|
+
import.meta.env.PUBLIC_CONSOLE_URL ||
|
|
33
|
+
process.env.PUBLIC_CONSOLE_URL ||
|
|
34
|
+
undefined;
|
|
33
35
|
const apiDocsUrl =
|
|
34
|
-
import.meta.env.PUBLIC_API_DOCS_URL ||
|
|
36
|
+
import.meta.env.PUBLIC_API_DOCS_URL ||
|
|
37
|
+
process.env.PUBLIC_API_DOCS_URL ||
|
|
38
|
+
undefined;
|
|
35
39
|
const discoverUrl =
|
|
36
|
-
import.meta.env.PUBLIC_DISCOVER_URL ||
|
|
40
|
+
import.meta.env.PUBLIC_DISCOVER_URL ||
|
|
41
|
+
process.env.PUBLIC_DISCOVER_URL ||
|
|
42
|
+
undefined;
|
|
37
43
|
|
|
38
44
|
const chat = chatUrl || '#';
|
|
39
45
|
const consoleApp = consoleUrl || '#';
|