diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.module.scss b/applications/uk.ewsgit.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.module.scss
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.tsx b/applications/uk.ewsgit.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.tsx
similarity index 76%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.tsx
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.tsx
index b4b941d..8d6a3b2 100644
--- a/applications/uk.tcsw.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/authentication/components/MethodPassword/components/ResetPasswordDialogue/ResetPasswordDialogue.tsx
@@ -1,10 +1,10 @@
import CHECK_ICON from "@material-symbols/svg-700/outlined/check.svg";
-import UKButton, { AffirmativeButtonState } from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKButtonGroup from "@tcsw/uikit-solid/src/components/buttonGroup/UKButtonGroup.tsx";
-import { DividerDirection } from "@tcsw/uikit-solid/src/components/divider/lib/direction.js";
-import UKDivider from "@tcsw/uikit-solid/src/components/divider/UKDivider.jsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.jsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.jsx";
+import UKButton, { AffirmativeButtonState } from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKButtonGroup from "@onlineworkspace/uikit-solid/src/components/buttonGroup/UKButtonGroup.tsx";
+import { DividerDirection } from "@onlineworkspace/uikit-solid/src/components/divider/lib/direction.js";
+import UKDivider from "@onlineworkspace/uikit-solid/src/components/divider/UKDivider.jsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.jsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.jsx";
import { type Component, createSignal } from "solid-js";
import trpc from "../../../../../../lib/trpc";
import styles from "./ResetPasswordDialogue.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.module.scss b/applications/uk.ewsgit.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.module.scss
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.tsx b/applications/uk.ewsgit.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.tsx
similarity index 77%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.tsx
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.tsx
index 0f42856..160a637 100644
--- a/applications/uk.tcsw.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/authentication/components/MethodTwoFactor/MethodTwoFactor.tsx
@@ -1,19 +1,17 @@
import CHECK_ICON from "@material-symbols/svg-700/outlined/check.svg";
import SHIELD_LOCK_ICON from "@material-symbols/svg-700/outlined/shield_lock.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKDialog from "@tcsw/uikit-solid/src/components/dialog/UKDialog.jsx";
-import UKIcon from "@tcsw/uikit-solid/src/components/icon/UKIcon.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKDialog from "@onlineworkspace/uikit-solid/src/components/dialog/UKDialog.jsx";
+import UKIcon from "@onlineworkspace/uikit-solid/src/components/icon/UKIcon.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.jsx";
import { type Component, createResource, createSignal, Suspense } from "solid-js";
import trpc from "../../../../lib/trpc";
import TwoFactorCreateCodeDialog from "./components/TwoFactorCreateCodeDialog/TwoFactorCreateCodeDialog";
import styles from "./MethodTwoFactor.module.scss";
const MethodTwoFactor: Component = () => {
- const [hasTwoFactor, { refetch: refetchHasTwoFactor }] = createResource(() =>
- trpc.authentication.hasTwoFactor.query(),
- );
+ const [hasTwoFactor, { refetch: refetchHasTwoFactor }] = createResource(() => trpc.authentication.hasTwoFactor.query());
const [showDialog, setShowDialog] = createSignal<"createCode" | "confirmCode" | null>(null);
return (
@@ -25,11 +23,7 @@ const MethodTwoFactor: Component = () => {
alt: "two factor authentication",
}}
labelText="Two Factor Authentication"
- supportingText={
- hasTwoFactor()
- ? "You have OTP two-factor authentication enabled"
- : "Setup OTP two-factor authentication"
- }
+ supportingText={hasTwoFactor() ? "You have OTP two-factor authentication enabled" : "Setup OTP two-factor authentication"}
inlineComponent={hasTwoFactor() &&
{CHECK_ICON}}
expandedComponent={
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/MethodTwoFactor/components/TwoFactorCreateCodeDialog/TwoFactorCreateCodeDialog.tsx b/applications/uk.ewsgit.settings/web/pages/authentication/components/MethodTwoFactor/components/TwoFactorCreateCodeDialog/TwoFactorCreateCodeDialog.tsx
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/MethodTwoFactor/components/TwoFactorCreateCodeDialog/TwoFactorCreateCodeDialog.tsx
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/MethodTwoFactor/components/TwoFactorCreateCodeDialog/TwoFactorCreateCodeDialog.tsx
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/Sessions.module.scss b/applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/Sessions.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/Sessions.module.scss
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/Sessions.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/Sessions.tsx b/applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/Sessions.tsx
similarity index 76%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/Sessions.tsx
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/Sessions.tsx
index 3b87c29..e3d1dcf 100644
--- a/applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/Sessions.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/Sessions.tsx
@@ -1,11 +1,11 @@
-import { createResource, For, Suspense, type Component } from "solid-js";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKButtonGroup from "@onlineworkspace/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
+import UKIndeterminateSpinner from "@onlineworkspace/uikit-solid/src/components/indeterminateSpinner/UKIndeterminateSpinner.jsx";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.jsx";
+import { type Component, createResource, For, Suspense } from "solid-js";
import trpc from "../../../../lib/trpc";
import Session from "./components/Session/Session";
-import UKButtonGroup from "@tcsw/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
import styles from "./Sessions.module.scss";
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.jsx";
-import UKIndeterminateSpinner from "@tcsw/uikit-solid/src/components/indeterminateSpinner/UKIndeterminateSpinner.jsx";
const Sessions: Component = () => {
const [sessions, { refetch: refetchSessions }] = createResource(() => trpc.authentication.getSessions.query());
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/components/Session/Session.module.scss b/applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/components/Session/Session.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/components/Session/Session.module.scss
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/components/Session/Session.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/components/Session/Session.tsx b/applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/components/Session/Session.tsx
similarity index 85%
rename from applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/components/Session/Session.tsx
rename to applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/components/Session/Session.tsx
index c10ab51..fa91583 100644
--- a/applications/uk.tcsw.settings/web/pages/authentication/components/Sessions/components/Session/Session.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/authentication/components/Sessions/components/Session/Session.tsx
@@ -1,13 +1,13 @@
-import type { Component } from "solid-js";
-import styles from "./Session.module.scss";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import { AuthorizedDeviceType } from "@tcsw/workspaces-instance/src/systems/authorization";
-import UKIconButton from "@tcsw/uikit-solid/src/components/iconButton/UKIconButton.jsx";
-import trpc from "../../../../../../lib/trpc";
import DELETE_ICON from "@material-symbols/svg-700/outlined/delete.svg";
import DESKTOP_WINDOWS_ICON from "@material-symbols/svg-700/outlined/desktop_windows.svg";
import MOBILE_ICON from "@material-symbols/svg-700/outlined/mobile.svg";
import WEB_ICON from "@material-symbols/svg-700/outlined/web.svg";
+import UKIconButton from "@onlineworkspace/uikit-solid/src/components/iconButton/UKIconButton.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import { AuthorizedDeviceType } from "@onlineworkspace/workspace-instance/src/systems/authorization";
+import type { Component } from "solid-js";
+import trpc from "../../../../../../lib/trpc";
+import styles from "./Session.module.scss";
const ICON_FOR_DEVICE_TYPE: { [key in AuthorizedDeviceType]: string } = {
[AuthorizedDeviceType.Desktop]: DESKTOP_WINDOWS_ICON,
diff --git a/applications/uk.tcsw.settings/web/pages/customization/Index.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/Index.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/Index.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/Index.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/customization/Index.tsx b/applications/uk.ewsgit.settings/web/pages/customization/Index.tsx
similarity index 66%
rename from applications/uk.tcsw.settings/web/pages/customization/Index.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/Index.tsx
index 181a2e2..b61b791 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/Index.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/Index.tsx
@@ -1,10 +1,10 @@
import CHEVRON_LEFT_ICON from "@material-symbols/svg-700/outlined/chevron_left.svg";
+import { DividerDirection } from "@onlineworkspace/uikit-solid/src/components/divider/lib/direction.js";
+import UKDivider from "@onlineworkspace/uikit-solid/src/components/divider/UKDivider.jsx";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.tsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.tsx";
+import UKTopAppBar from "@onlineworkspace/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { useNavigate } from "@solidjs/router";
-import { DividerDirection } from "@tcsw/uikit-solid/src/components/divider/lib/direction.js";
-import UKDivider from "@tcsw/uikit-solid/src/components/divider/UKDivider.jsx";
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.tsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.tsx";
-import UKTopAppBar from "@tcsw/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import type { Component } from "solid-js";
import ThemePreview from "./components/ThemePreview/ThemePreview.tsx";
import styles from "./Index.module.scss";
@@ -20,7 +20,7 @@ const CustomizationPage: Component = () => {
leadingButton={{
icon: CHEVRON_LEFT_ICON,
onClick() {
- navigate("/app/uk.tcsw.settings");
+ navigate("/app/uk.ewsgit.settings");
},
accessibleLabel: "Go back",
}}
@@ -35,21 +35,21 @@ const CustomizationPage: Component = () => {
labelText={"Color Theme"}
supportingText={"To be implemented..."}
onClick={() => {
- navigate("/app/uk.tcsw.settings/customization/color-theme");
+ navigate("/app/uk.ewsgit.settings/customization/color-theme");
}}
/>
{
- navigate("/app/uk.tcsw.settings/customization/wallpaper");
+ navigate("/app/uk.ewsgit.settings/customization/wallpaper");
}}
/>
{
- navigate("/app/uk.tcsw.settings/customization/quick-shortcuts");
+ navigate("/app/uk.ewsgit.settings/customization/quick-shortcuts");
}}
/>
diff --git a/applications/uk.tcsw.settings/web/pages/customization/colorTheme/Index.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/colorTheme/Index.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/colorTheme/Index.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/colorTheme/Index.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/customization/colorTheme/Index.tsx b/applications/uk.ewsgit.settings/web/pages/customization/colorTheme/Index.tsx
similarity index 85%
rename from applications/uk.tcsw.settings/web/pages/customization/colorTheme/Index.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/colorTheme/Index.tsx
index 5ec4a75..08b404e 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/colorTheme/Index.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/colorTheme/Index.tsx
@@ -1,16 +1,14 @@
import { themeFromImage } from "@material/material-color-utilities";
import CHEVRON_LEFT_ICON from "@material-symbols/svg-700/outlined/chevron_left.svg";
+import UKTopAppBar from "@onlineworkspace/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { useNavigate } from "@solidjs/router";
-import UKTopAppBar from "@tcsw/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { type Component, createEffect, createResource } from "solid-js";
import trpc from "../../../lib/trpc.ts";
import TriColorPreview from "./components/TriColorPreview/TriColorPreview.tsx";
const ColorThemePage: Component = () => {
const navigate = useNavigate();
- const [wallpaperSrc] = createResource(() =>
- trpc.customization.wallpaper.currentWallpaper.query(),
- );
+ const [wallpaperSrc] = createResource(() => trpc.customization.wallpaper.currentWallpaper.query());
createEffect(async () => {
if (wallpaperSrc() === undefined) return;
@@ -31,7 +29,7 @@ const ColorThemePage: Component = () => {
accessibleLabel: "Back",
icon: CHEVRON_LEFT_ICON,
onClick() {
- navigate("/app/uk.tcsw.settings/customization");
+ navigate("/app/uk.ewsgit.settings/customization");
},
}}
/>
diff --git a/applications/uk.tcsw.settings/web/pages/customization/colorTheme/components/TriColorPreview/TriColorPreview.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/colorTheme/components/TriColorPreview/TriColorPreview.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/colorTheme/components/TriColorPreview/TriColorPreview.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/colorTheme/components/TriColorPreview/TriColorPreview.module.scss
diff --git a/applications/uk.ewsgit.settings/web/pages/customization/colorTheme/components/TriColorPreview/TriColorPreview.tsx b/applications/uk.ewsgit.settings/web/pages/customization/colorTheme/components/TriColorPreview/TriColorPreview.tsx
new file mode 100644
index 0000000..df98842
--- /dev/null
+++ b/applications/uk.ewsgit.settings/web/pages/customization/colorTheme/components/TriColorPreview/TriColorPreview.tsx
@@ -0,0 +1,15 @@
+import UKCard from "@onlineworkspace/uikit-solid/src/components/card/UKCard.jsx";
+import type { Component } from "solid-js";
+import styles from "./TriColorPreview.module.scss";
+
+const QuadColorPreview: Component<{ colors: string[] }> = (props) => {
+ return (
+
+
+
+
+
+ );
+};
+
+export default QuadColorPreview;
diff --git a/applications/uk.tcsw.settings/web/pages/customization/components/ThemePreview/ThemePreview.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/components/ThemePreview/ThemePreview.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/components/ThemePreview/ThemePreview.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/components/ThemePreview/ThemePreview.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/customization/components/ThemePreview/ThemePreview.tsx b/applications/uk.ewsgit.settings/web/pages/customization/components/ThemePreview/ThemePreview.tsx
similarity index 95%
rename from applications/uk.tcsw.settings/web/pages/customization/components/ThemePreview/ThemePreview.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/components/ThemePreview/ThemePreview.tsx
index d619af7..57750e1 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/components/ThemePreview/ThemePreview.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/components/ThemePreview/ThemePreview.tsx
@@ -1,6 +1,6 @@
import ARROW_CIRCLE_RIGHT_ICON from "@material-symbols/svg-700/outlined/arrow_circle_right.svg";
import MENU_ICON from "@material-symbols/svg-700/outlined/menu.svg";
-import UKIcon from "@tcsw/uikit-solid/src/components/icon/UKIcon.tsx";
+import UKIcon from "@onlineworkspace/uikit-solid/src/components/icon/UKIcon.tsx";
import clsx from "clsx";
import { type Component, createResource, For, Suspense } from "solid-js";
import PLACEHOLDER_WALLPAPER from "./../../../../assets/placeholder_wallpaper.png";
diff --git a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/Index.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/Index.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/Index.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/Index.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/Index.tsx b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/Index.tsx
similarity index 87%
rename from applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/Index.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/Index.tsx
index a709239..e373300 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/Index.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/Index.tsx
@@ -1,14 +1,14 @@
import CHEVRON_LEFT_ICON from "@material-symbols/svg-700/outlined/chevron_left.svg";
import REFRESH_ICON from "@material-symbols/svg-700/outlined/refresh.svg";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKButtonGroup from "@onlineworkspace/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
+import UKCard from "@onlineworkspace/uikit-solid/src/components/card/UKCard.jsx";
+import UKDivider from "@onlineworkspace/uikit-solid/src/components/divider/UKDivider.tsx";
+import UKIcon from "@onlineworkspace/uikit-solid/src/components/icon/UKIcon.tsx";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.tsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.tsx";
+import UKTopAppBar from "@onlineworkspace/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { useNavigate } from "@solidjs/router";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKButtonGroup from "@tcsw/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
-import UKCard from "@tcsw/uikit-solid/src/components/card/UKCard.jsx";
-import UKDivider from "@tcsw/uikit-solid/src/components/divider/UKDivider.tsx";
-import UKIcon from "@tcsw/uikit-solid/src/components/icon/UKIcon.tsx";
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.tsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.tsx";
-import UKTopAppBar from "@tcsw/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { type Component, createResource, createSignal } from "solid-js";
import trpc from "../../../lib/trpc";
import AddShortcutButton from "./components/addShortcutButton/AddShortcutButton.tsx";
@@ -30,7 +30,7 @@ const QuickShortcutsPage: Component = () => {
accessibleLabel: "Back",
icon: CHEVRON_LEFT_ICON,
onClick() {
- navigate("/app/uk.tcsw.settings/customization");
+ navigate("/app/uk.ewsgit.settings/customization");
},
}}
/>
diff --git a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.tsx b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.tsx
similarity index 80%
rename from applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.tsx
index cdd6efd..57b9e32 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/addShortcutButton/AddShortcutButton.tsx
@@ -1,11 +1,11 @@
import ADD_ICON from "@material-symbols/svg-700/outlined/add.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.tsx";
-import UKCard from "@tcsw/uikit-solid/src/components/card/UKCard.tsx";
-import UKDialog from "@tcsw/uikit-solid/src/components/dialog/UKDialog.tsx";
-import UKDivider from "@tcsw/uikit-solid/src/components/divider/UKDivider.jsx";
-import UKIcon from "@tcsw/uikit-solid/src/components/icon/UKIcon.tsx";
-import UKIndeterminateSpinner from "@tcsw/uikit-solid/src/components/indeterminateSpinner/UKIndeterminateSpinner.jsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.tsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.tsx";
+import UKCard from "@onlineworkspace/uikit-solid/src/components/card/UKCard.tsx";
+import UKDialog from "@onlineworkspace/uikit-solid/src/components/dialog/UKDialog.tsx";
+import UKDivider from "@onlineworkspace/uikit-solid/src/components/divider/UKDivider.jsx";
+import UKIcon from "@onlineworkspace/uikit-solid/src/components/icon/UKIcon.tsx";
+import UKIndeterminateSpinner from "@onlineworkspace/uikit-solid/src/components/indeterminateSpinner/UKIndeterminateSpinner.jsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.tsx";
import { type Component, createSignal, For, Suspense } from "solid-js";
import styles from "./AddShortcutButton.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.tsx b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.tsx
similarity index 93%
rename from applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.tsx
index 4f901b1..afab889 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/quickShortcuts/QuickShortcuts.tsx
@@ -1,10 +1,10 @@
+import DRAG_INDICATOR_ICON from "@material-symbols/svg-700/outlined/drag_indicator.svg";
import REMOVE_ICON from "@material-symbols/svg-700/outlined/remove.svg";
-import UKIconButton from "@tcsw/uikit-solid/src/components/iconButton/UKIconButton.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKIconButton from "@onlineworkspace/uikit-solid/src/components/iconButton/UKIconButton.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
import { closestCenter, createSortable, DragDropProvider, DragDropSensors, SortableProvider } from "@thisbeyond/solid-dnd";
import { type Component, createEffect, createSignal, For } from "solid-js";
import styles from "./QuickShortcuts.module.scss";
-import DRAG_INDICATOR_ICON from "@material-symbols/svg-700/outlined/drag_indicator.svg";
const QuickShortcuts: Component<{
defaultValue: string[];
diff --git a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/resetToDefaultsButton/ResetToDefaultsButton.tsx b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/resetToDefaultsButton/ResetToDefaultsButton.tsx
similarity index 79%
rename from applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/resetToDefaultsButton/ResetToDefaultsButton.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/resetToDefaultsButton/ResetToDefaultsButton.tsx
index d67be35..1888c56 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/quickShortcuts/components/resetToDefaultsButton/ResetToDefaultsButton.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/quickShortcuts/components/resetToDefaultsButton/ResetToDefaultsButton.tsx
@@ -1,6 +1,6 @@
import REFRESH_ICON from "@material-symbols/svg-700/outlined/refresh.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.tsx";
-import UKNoPointOfReturnDialog from "@tcsw/uikit-solid/src/components/dialog/prefabs/noPointOfReturn/UKNoPointOfReturnDialog.tsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.tsx";
+import UKNoPointOfReturnDialog from "@onlineworkspace/uikit-solid/src/components/dialog/prefabs/noPointOfReturn/UKNoPointOfReturnDialog.tsx";
import { type Component, createSignal } from "solid-js";
const ResetToDefaultsButton: Component<{ onReset: () => Promise }> = (props) => {
diff --git a/applications/uk.tcsw.settings/web/pages/customization/wallpaper/Index.module.scss b/applications/uk.ewsgit.settings/web/pages/customization/wallpaper/Index.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/customization/wallpaper/Index.module.scss
rename to applications/uk.ewsgit.settings/web/pages/customization/wallpaper/Index.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/customization/wallpaper/Index.tsx b/applications/uk.ewsgit.settings/web/pages/customization/wallpaper/Index.tsx
similarity index 91%
rename from applications/uk.tcsw.settings/web/pages/customization/wallpaper/Index.tsx
rename to applications/uk.ewsgit.settings/web/pages/customization/wallpaper/Index.tsx
index 9a0162b..877e532 100644
--- a/applications/uk.tcsw.settings/web/pages/customization/wallpaper/Index.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/customization/wallpaper/Index.tsx
@@ -3,19 +3,19 @@ import CHEVRON_LEFT_ICON from "@material-symbols/svg-700/outlined/chevron_left.s
import DELETE_ICON from "@material-symbols/svg-700/outlined/delete.svg";
import FOLDER_ICON from "@material-symbols/svg-700/outlined/folder.svg";
import UPLOAD_ICON from "@material-symbols/svg-700/outlined/upload.svg";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.tsx";
+import UKButtonGroup from "@onlineworkspace/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
+import { DividerDirection } from "@onlineworkspace/uikit-solid/src/components/divider/lib/direction.js";
+import UKDivider from "@onlineworkspace/uikit-solid/src/components/divider/UKDivider.jsx";
+import UKIconButton from "@onlineworkspace/uikit-solid/src/components/iconButton/UKIconButton.tsx";
+import UKIndeterminateSpinner from "@onlineworkspace/uikit-solid/src/components/indeterminateSpinner/UKIndeterminateSpinner.tsx";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKStackLabel from "@onlineworkspace/uikit-solid/src/components/stack/UKStackLabel.jsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.tsx";
+import UKTopAppBar from "@onlineworkspace/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { createFileUploader } from "@solid-primitives/upload";
import { useNavigate } from "@solidjs/router";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.tsx";
-import UKButtonGroup from "@tcsw/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
-import { DividerDirection } from "@tcsw/uikit-solid/src/components/divider/lib/direction.js";
-import UKDivider from "@tcsw/uikit-solid/src/components/divider/UKDivider.jsx";
-import UKIconButton from "@tcsw/uikit-solid/src/components/iconButton/UKIconButton.tsx";
-import UKIndeterminateSpinner from "@tcsw/uikit-solid/src/components/indeterminateSpinner/UKIndeterminateSpinner.tsx";
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKStackLabel from "@tcsw/uikit-solid/src/components/stack/UKStackLabel.jsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.tsx";
-import UKTopAppBar from "@tcsw/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import type { Component } from "solid-js";
import { createEffect, createResource, createSignal, For, onMount, Suspense } from "solid-js";
import trpc from "../../../lib/trpc.ts";
@@ -95,7 +95,7 @@ const WallpaperPage: Component = () => {
accessibleLabel: "Back",
icon: CHEVRON_LEFT_ICON,
onClick() {
- navigate("/app/uk.tcsw.settings/customization");
+ navigate("/app/uk.ewsgit.settings/customization");
},
}}
/>
diff --git a/applications/uk.tcsw.settings/web/pages/instance/Index.module.scss b/applications/uk.ewsgit.settings/web/pages/instance/Index.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/instance/Index.module.scss
rename to applications/uk.ewsgit.settings/web/pages/instance/Index.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/instance/Index.tsx b/applications/uk.ewsgit.settings/web/pages/instance/Index.tsx
similarity index 89%
rename from applications/uk.tcsw.settings/web/pages/instance/Index.tsx
rename to applications/uk.ewsgit.settings/web/pages/instance/Index.tsx
index 29034ea..4d1e46b 100644
--- a/applications/uk.tcsw.settings/web/pages/instance/Index.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/instance/Index.tsx
@@ -1,6 +1,6 @@
import CHEVRON_LEFT_ICON from "@material-symbols/svg-700/outlined/chevron_left.svg";
+import UKTopAppBar from "@onlineworkspace/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { useNavigate } from "@solidjs/router";
-import UKTopAppBar from "@tcsw/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
import { type Component, Suspense } from "solid-js";
import Branding from "./components/Branding/Branding";
import FeatureFlags from "./components/FeatureFlags/FeatureFlags";
@@ -21,7 +21,7 @@ const InstancePage: Component = () => {
leadingButton={{
icon: CHEVRON_LEFT_ICON,
onClick() {
- navigate("/app/uk.tcsw.settings");
+ navigate("/app/uk.ewsgit.settings");
},
accessibleLabel: "Go back",
}}
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Branding/Branding.module.scss b/applications/uk.ewsgit.settings/web/pages/instance/components/Branding/Branding.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Branding/Branding.module.scss
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Branding/Branding.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Branding/Branding.tsx b/applications/uk.ewsgit.settings/web/pages/instance/components/Branding/Branding.tsx
similarity index 87%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Branding/Branding.tsx
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Branding/Branding.tsx
index 02eec09..06312be 100644
--- a/applications/uk.tcsw.settings/web/pages/instance/components/Branding/Branding.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/instance/components/Branding/Branding.tsx
@@ -1,11 +1,11 @@
import REFRESH_ICON from "@material-symbols/svg-700/outlined/refresh.svg";
import UPLOAD_ICON from "@material-symbols/svg-700/outlined/upload.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKIconButton from "@tcsw/uikit-solid/src/components/iconButton/UKIconButton.jsx";
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKStackLabel from "@tcsw/uikit-solid/src/components/stack/UKStackLabel.jsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKIconButton from "@onlineworkspace/uikit-solid/src/components/iconButton/UKIconButton.jsx";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKStackLabel from "@onlineworkspace/uikit-solid/src/components/stack/UKStackLabel.jsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.jsx";
import type { Component } from "solid-js";
import styles from "./Branding.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.module.scss b/applications/uk.ewsgit.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.module.scss
rename to applications/uk.ewsgit.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.tsx b/applications/uk.ewsgit.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.tsx
similarity index 83%
rename from applications/uk.tcsw.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.tsx
rename to applications/uk.ewsgit.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.tsx
index 45daa7b..c7212db 100644
--- a/applications/uk.tcsw.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/instance/components/FeatureFlags/FeatureFlags.tsx
@@ -1,7 +1,7 @@
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKStackLabel from "@tcsw/uikit-solid/src/components/stack/UKStackLabel.tsx";
-import UKSwitch from "@tcsw/uikit-solid/src/components/switch/UKSwitch.jsx";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKStackLabel from "@onlineworkspace/uikit-solid/src/components/stack/UKStackLabel.tsx";
+import UKSwitch from "@onlineworkspace/uikit-solid/src/components/switch/UKSwitch.jsx";
import { type Component, createResource, For, Suspense } from "solid-js";
import trpc from "../../../../lib/trpc";
import styles from "./FeatureFlags.module.scss";
diff --git a/applications/uk.ewsgit.settings/web/pages/instance/components/InstalledApplications/InstalledApplications.tsx b/applications/uk.ewsgit.settings/web/pages/instance/components/InstalledApplications/InstalledApplications.tsx
new file mode 100644
index 0000000..03e33a1
--- /dev/null
+++ b/applications/uk.ewsgit.settings/web/pages/instance/components/InstalledApplications/InstalledApplications.tsx
@@ -0,0 +1,19 @@
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKStackLabel from "@onlineworkspace/uikit-solid/src/components/stack/UKStackLabel.tsx";
+import { useNavigate } from "@solidjs/router";
+import type { Component } from "solid-js";
+
+const InstalledApplications: Component = () => {
+ const navigate = useNavigate();
+
+ return (
+ <>
+ Installed Applications
+ navigate("/app/uk.ewsgit.store/manage-installed")}>
+ View installed applications in the Store
+
+ >
+ );
+};
+
+export default InstalledApplications;
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Mailserver/Mailserver.module.scss b/applications/uk.ewsgit.settings/web/pages/instance/components/Mailserver/Mailserver.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Mailserver/Mailserver.module.scss
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Mailserver/Mailserver.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Mailserver/Mailserver.tsx b/applications/uk.ewsgit.settings/web/pages/instance/components/Mailserver/Mailserver.tsx
similarity index 79%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Mailserver/Mailserver.tsx
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Mailserver/Mailserver.tsx
index f37f59a..2ffdad1 100644
--- a/applications/uk.tcsw.settings/web/pages/instance/components/Mailserver/Mailserver.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/instance/components/Mailserver/Mailserver.tsx
@@ -1,7 +1,7 @@
-import UKButton, { AffirmativeButtonState } from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKCard from "@tcsw/uikit-solid/src/components/card/UKCard.jsx";
-import UKStackLabel from "@tcsw/uikit-solid/src/components/stack/UKStackLabel.tsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.tsx";
+import UKButton, { AffirmativeButtonState } from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKCard from "@onlineworkspace/uikit-solid/src/components/card/UKCard.jsx";
+import UKStackLabel from "@onlineworkspace/uikit-solid/src/components/stack/UKStackLabel.tsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.tsx";
import type { Component } from "solid-js";
import { createSignal } from "solid-js";
import styles from "./Mailserver.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Users/Users.tsx b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/Users.tsx
similarity index 68%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Users/Users.tsx
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Users/Users.tsx
index 44ef33a..9125d17 100644
--- a/applications/uk.tcsw.settings/web/pages/instance/components/Users/Users.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/Users.tsx
@@ -1,14 +1,12 @@
-import { createResource, For, type Component } from "solid-js";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.jsx";
+import UKStackLabel from "@onlineworkspace/uikit-solid/src/components/stack/UKStackLabel.tsx";
+import { type Component, createResource, For } from "solid-js";
import trpc from "../../../../lib/trpc";
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.jsx";
-import User from "./components/User/User";
import CreateUser from "./components/CreateUser/CreateUser";
-import UKStackLabel from "@tcsw/uikit-solid/src/components/stack/UKStackLabel.tsx";
+import User from "./components/User/User";
const Users: Component = () => {
- const [users, { refetch: refetchUsers }] = createResource(() =>
- trpc.instance.getUsers.query(),
- );
+ const [users, { refetch: refetchUsers }] = createResource(() => trpc.instance.getUsers.query());
return (
<>
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.module.scss b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.module.scss
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.tsx b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.tsx
similarity index 80%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.tsx
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.tsx
index 5843aba..37e6879 100644
--- a/applications/uk.tcsw.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/CreateUser/CreateUser.tsx
@@ -1,9 +1,9 @@
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKButtonGroup from "@tcsw/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
-import UKDialog from "@tcsw/uikit-solid/src/components/dialog/UKDialog.jsx";
-import UKDivider from "@tcsw/uikit-solid/src/components/divider/UKDivider.jsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.jsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKButtonGroup from "@onlineworkspace/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
+import UKDialog from "@onlineworkspace/uikit-solid/src/components/dialog/UKDialog.jsx";
+import UKDivider from "@onlineworkspace/uikit-solid/src/components/divider/UKDivider.jsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.jsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.jsx";
import { type Component, createSignal } from "solid-js";
import trpc from "../../../../../../lib/trpc";
import styles from "./CreateUser.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Users/components/User/User.module.scss b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/User/User.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Users/components/User/User.module.scss
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/User/User.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/instance/components/Users/components/User/User.tsx b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/User/User.tsx
similarity index 91%
rename from applications/uk.tcsw.settings/web/pages/instance/components/Users/components/User/User.tsx
rename to applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/User/User.tsx
index 9346c82..fd12411 100644
--- a/applications/uk.tcsw.settings/web/pages/instance/components/Users/components/User/User.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/instance/components/Users/components/User/User.tsx
@@ -1,13 +1,13 @@
import PERSON_ICON from "@material-symbols/svg-700/outlined/person.svg";
import SHIELD_PERSON_ICON from "@material-symbols/svg-700/outlined/shield_person.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKButtonGroup from "@tcsw/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
-import UKDialog from "@tcsw/uikit-solid/src/components/dialog/UKDialog.jsx";
-import UKDivider from "@tcsw/uikit-solid/src/components/divider/UKDivider.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKSwitch from "@tcsw/uikit-solid/src/components/switch/UKSwitch.jsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.jsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKButtonGroup from "@onlineworkspace/uikit-solid/src/components/buttonGroup/UKButtonGroup.jsx";
+import UKDialog from "@onlineworkspace/uikit-solid/src/components/dialog/UKDialog.jsx";
+import UKDivider from "@onlineworkspace/uikit-solid/src/components/divider/UKDivider.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKSwitch from "@onlineworkspace/uikit-solid/src/components/switch/UKSwitch.jsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.jsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.jsx";
import { type Component, createResource, createSignal, Show, useContext } from "solid-js";
import { AppContext } from "../../../../../../appContext.ts";
import trpc from "../../../../../../lib/trpc";
diff --git a/applications/uk.tcsw.settings/web/pages/profile/Index.module.scss b/applications/uk.ewsgit.settings/web/pages/profile/Index.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/profile/Index.module.scss
rename to applications/uk.ewsgit.settings/web/pages/profile/Index.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/profile/Index.tsx b/applications/uk.ewsgit.settings/web/pages/profile/Index.tsx
similarity index 82%
rename from applications/uk.tcsw.settings/web/pages/profile/Index.tsx
rename to applications/uk.ewsgit.settings/web/pages/profile/Index.tsx
index 893bd2e..5c49f7c 100644
--- a/applications/uk.tcsw.settings/web/pages/profile/Index.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/profile/Index.tsx
@@ -1,13 +1,13 @@
import CHEVRON_LEFT_ICON from "@material-symbols/svg-700/outlined/chevron_left.svg";
import LOGOUT_ICON from "@material-symbols/svg-700/outlined/logout.svg";
+import UKAvatar from "@onlineworkspace/uikit-solid/src/components/avatar/UKAvatar.tsx";
+import UKStack from "@onlineworkspace/uikit-solid/src/components/stack/UKStack.tsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.tsx";
+import UKText from "@onlineworkspace/uikit-solid/src/components/text/UKText.tsx";
+import UKTopAppBar from "@onlineworkspace/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
+import useIsMobile from "@onlineworkspace/uikit-solid/src/core/useIsMobile.js";
+import webInstanceTRPC from "@onlineworkspace/workspace-instance-web/src/lib/trpc.ts";
import { useNavigate } from "@solidjs/router";
-import UKAvatar from "@tcsw/uikit-solid/src/components/avatar/UKAvatar.tsx";
-import UKStack from "@tcsw/uikit-solid/src/components/stack/UKStack.tsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.tsx";
-import UKText from "@tcsw/uikit-solid/src/components/text/UKText.tsx";
-import UKTopAppBar from "@tcsw/uikit-solid/src/components/topAppBar/UKTopAppBar.jsx";
-import useIsMobile from "@tcsw/uikit-solid/src/core/useIsMobile.js";
-import webInstanceTRPC from "@tcsw/workspaces-instance-web/src/lib/trpc.ts";
import clsx from "clsx";
import { type Component, createResource, Suspense } from "solid-js";
import trpc from "../../lib/trpc";
@@ -34,7 +34,7 @@ const ProfilePage: Component = () => {
leadingButton={{
icon: CHEVRON_LEFT_ICON,
onClick() {
- navigate("/app/uk.tcsw.settings");
+ navigate("/app/uk.ewsgit.settings");
},
accessibleLabel: "Go back",
}}
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Bio/Bio.module.scss b/applications/uk.ewsgit.settings/web/pages/profile/components/Bio/Bio.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Bio/Bio.module.scss
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Bio/Bio.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Bio/Bio.tsx b/applications/uk.ewsgit.settings/web/pages/profile/components/Bio/Bio.tsx
similarity index 80%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Bio/Bio.tsx
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Bio/Bio.tsx
index dbfb787..44f3f99 100644
--- a/applications/uk.tcsw.settings/web/pages/profile/components/Bio/Bio.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/profile/components/Bio/Bio.tsx
@@ -1,7 +1,7 @@
import DESCRIPTION_ICON from "@material-symbols/svg-700/outlined/description.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.jsx";
import { type Component, createResource } from "solid-js";
import trpc from "../../../../lib/trpc";
import styles from "./Bio.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Email/Email.module.scss b/applications/uk.ewsgit.settings/web/pages/profile/components/Email/Email.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Email/Email.module.scss
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Email/Email.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Email/Email.tsx b/applications/uk.ewsgit.settings/web/pages/profile/components/Email/Email.tsx
similarity index 79%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Email/Email.tsx
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Email/Email.tsx
index 464fcf8..e59c7e3 100644
--- a/applications/uk.tcsw.settings/web/pages/profile/components/Email/Email.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/profile/components/Email/Email.tsx
@@ -1,7 +1,7 @@
import MAIL_ICON from "@material-symbols/svg-700/outlined/mail.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.jsx";
import { type Component, createResource } from "solid-js";
import trpc from "../../../../lib/trpc";
import styles from "./Email.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Gender/Gender.module.scss b/applications/uk.ewsgit.settings/web/pages/profile/components/Gender/Gender.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Gender/Gender.module.scss
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Gender/Gender.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Gender/Gender.tsx b/applications/uk.ewsgit.settings/web/pages/profile/components/Gender/Gender.tsx
similarity index 83%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Gender/Gender.tsx
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Gender/Gender.tsx
index aa2d129..631da4d 100644
--- a/applications/uk.tcsw.settings/web/pages/profile/components/Gender/Gender.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/profile/components/Gender/Gender.tsx
@@ -1,7 +1,7 @@
import PERSON_ICON from "@material-symbols/svg-700/outlined/person.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKSearchableDropdownMenu from "@tcsw/uikit-solid/src/components/searchableDropdownMenu/UKSearchableDropdownMenu.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKSearchableDropdownMenu from "@onlineworkspace/uikit-solid/src/components/searchableDropdownMenu/UKSearchableDropdownMenu.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
import { type Component, createResource } from "solid-js";
import trpc from "../../../../lib/trpc";
import styles from "./Gender.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Name/Name.module.scss b/applications/uk.ewsgit.settings/web/pages/profile/components/Name/Name.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Name/Name.module.scss
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Name/Name.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/Name/Name.tsx b/applications/uk.ewsgit.settings/web/pages/profile/components/Name/Name.tsx
similarity index 80%
rename from applications/uk.tcsw.settings/web/pages/profile/components/Name/Name.tsx
rename to applications/uk.ewsgit.settings/web/pages/profile/components/Name/Name.tsx
index cb667f7..dee9b73 100644
--- a/applications/uk.tcsw.settings/web/pages/profile/components/Name/Name.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/profile/components/Name/Name.tsx
@@ -1,7 +1,7 @@
import ASSIGNMENT_IND_ICON from "@material-symbols/svg-700/outlined/assignment_ind.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.jsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
-import UKTextField from "@tcsw/uikit-solid/src/components/textField/UKTextField.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.jsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKTextField from "@onlineworkspace/uikit-solid/src/components/textField/UKTextField.jsx";
import { type Component, createResource } from "solid-js";
import trpc from "../../../../lib/trpc";
import styles from "./Name.module.scss";
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.module.scss b/applications/uk.ewsgit.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.module.scss
similarity index 100%
rename from applications/uk.tcsw.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.module.scss
rename to applications/uk.ewsgit.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.module.scss
diff --git a/applications/uk.tcsw.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.tsx b/applications/uk.ewsgit.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.tsx
similarity index 71%
rename from applications/uk.tcsw.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.tsx
rename to applications/uk.ewsgit.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.tsx
index d34399a..6fc0399 100644
--- a/applications/uk.tcsw.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.tsx
+++ b/applications/uk.ewsgit.settings/web/pages/profile/components/ProfilePicture/ProfilePicture.tsx
@@ -1,6 +1,6 @@
import PHOTO_CAMERA_ICON from "@material-symbols/svg-700/outlined/photo_camera.svg";
-import UKButton from "@tcsw/uikit-solid/src/components/button/UKButton.tsx";
-import UKStackItem from "@tcsw/uikit-solid/src/components/stack/UKStackItem.jsx";
+import UKButton from "@onlineworkspace/uikit-solid/src/components/button/UKButton.tsx";
+import UKStackItem from "@onlineworkspace/uikit-solid/src/components/stack/UKStackItem.jsx";
import { type Component, createSignal } from "solid-js";
import CropDialog from "./components/CropDialog/CropDialog.tsx";
import ImageSelectDialog from "./components/ImageSelectDialog/ImageSelectDialog.tsx";
@@ -35,16 +35,8 @@ const ProfilePicture: Component<{ refetchAvatar(): void }> = (props) => {
//
// }
/>
-