Add new space settings (#2293)
authorAjay Bura <32841439+ajbura@users.noreply.github.com>
Thu, 27 Mar 2025 08:54:13 +0000 (19:54 +1100)
committerGitHub <noreply@github.com>
Thu, 27 Mar 2025 08:54:13 +0000 (19:54 +1100)
commit5c39a36c12a9f873848ab7f14e22591fd9766c59
tree01b7413e39e45ef2fc451d48c21274f6b6f014cf
parent4aed4d747282c67829ebfbf28fd1570413335a8a
Add new space settings (#2293)
63 files changed:
src/app/components/JoinRulesSwitcher.tsx
src/app/features/common-settings/developer-tools/DevelopTools.tsx [new file with mode: 0644]
src/app/features/common-settings/developer-tools/SendRoomEvent.tsx [new file with mode: 0644]
src/app/features/common-settings/developer-tools/StateEventEditor.tsx [new file with mode: 0644]
src/app/features/common-settings/developer-tools/index.ts [new file with mode: 0644]
src/app/features/common-settings/emojis-stickers/EmojisStickers.tsx [new file with mode: 0644]
src/app/features/common-settings/emojis-stickers/RoomPacks.tsx [new file with mode: 0644]
src/app/features/common-settings/emojis-stickers/index.ts [new file with mode: 0644]
src/app/features/common-settings/general/RoomAddress.tsx [new file with mode: 0644]
src/app/features/common-settings/general/RoomEncryption.tsx [new file with mode: 0644]
src/app/features/common-settings/general/RoomHistoryVisibility.tsx [new file with mode: 0644]
src/app/features/common-settings/general/RoomJoinRules.tsx [new file with mode: 0644]
src/app/features/common-settings/general/RoomProfile.tsx [new file with mode: 0644]
src/app/features/common-settings/general/RoomPublish.tsx [new file with mode: 0644]
src/app/features/common-settings/general/RoomUpgrade.tsx [new file with mode: 0644]
src/app/features/common-settings/general/index.ts [new file with mode: 0644]
src/app/features/common-settings/members/Members.tsx [new file with mode: 0644]
src/app/features/common-settings/members/index.ts [new file with mode: 0644]
src/app/features/common-settings/permissions/PermissionGroups.tsx [new file with mode: 0644]
src/app/features/common-settings/permissions/Powers.tsx [new file with mode: 0644]
src/app/features/common-settings/permissions/PowersEditor.tsx [new file with mode: 0644]
src/app/features/common-settings/permissions/index.ts [new file with mode: 0644]
src/app/features/common-settings/permissions/types.ts [new file with mode: 0644]
src/app/features/common-settings/styles.css.ts [new file with mode: 0644]
src/app/features/lobby/HierarchyItemMenu.tsx
src/app/features/lobby/LobbyHeader.tsx
src/app/features/room-settings/RoomSettings.tsx
src/app/features/room-settings/developer-tools/DevelopTools.tsx [deleted file]
src/app/features/room-settings/developer-tools/SendRoomEvent.tsx [deleted file]
src/app/features/room-settings/developer-tools/StateEventEditor.tsx [deleted file]
src/app/features/room-settings/developer-tools/index.ts [deleted file]
src/app/features/room-settings/emojis-stickers/EmojisStickers.tsx [deleted file]
src/app/features/room-settings/emojis-stickers/RoomPacks.tsx [deleted file]
src/app/features/room-settings/emojis-stickers/index.ts [deleted file]
src/app/features/room-settings/general/General.tsx
src/app/features/room-settings/general/RoomAddress.tsx [deleted file]
src/app/features/room-settings/general/RoomEncryption.tsx [deleted file]
src/app/features/room-settings/general/RoomHistoryVisibility.tsx [deleted file]
src/app/features/room-settings/general/RoomJoinRules.tsx [deleted file]
src/app/features/room-settings/general/RoomProfile.tsx [deleted file]
src/app/features/room-settings/general/RoomPublish.tsx [deleted file]
src/app/features/room-settings/general/RoomUpgrade.tsx [deleted file]
src/app/features/room-settings/members/Members.tsx [deleted file]
src/app/features/room-settings/members/index.ts [deleted file]
src/app/features/room-settings/permissions/PermissionGroups.tsx [deleted file]
src/app/features/room-settings/permissions/Permissions.tsx
src/app/features/room-settings/permissions/Powers.tsx [deleted file]
src/app/features/room-settings/permissions/PowersEditor.tsx [deleted file]
src/app/features/room-settings/permissions/usePermissionItems.ts
src/app/features/space-settings/SpaceSettings.tsx [new file with mode: 0644]
src/app/features/space-settings/SpaceSettingsRenderer.tsx [new file with mode: 0644]
src/app/features/space-settings/general/General.tsx [new file with mode: 0644]
src/app/features/space-settings/general/index.ts [new file with mode: 0644]
src/app/features/space-settings/index.ts [new file with mode: 0644]
src/app/features/space-settings/permissions/Permissions.tsx [new file with mode: 0644]
src/app/features/space-settings/permissions/index.ts [new file with mode: 0644]
src/app/features/space-settings/permissions/usePermissionItems.ts [new file with mode: 0644]
src/app/features/space-settings/styles.css.ts [new file with mode: 0644]
src/app/pages/Router.tsx
src/app/pages/client/sidebar/SpaceTabs.tsx
src/app/pages/client/space/Space.tsx
src/app/state/hooks/spaceSettings.ts [new file with mode: 0644]
src/app/state/spaceSettings.ts [new file with mode: 0644]