Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2c2cbf5
style: enhance prompts UI with new components and improved structure;…
berry-13 Jan 20, 2026
9eb3c16
refactor(Prompts): move button components to buttons/ subdirectory
berry-13 Jan 28, 2026
34b8fae
refactor(Prompts): move dialog components to dialogs/ subdirectory
berry-13 Jan 28, 2026
dbc449c
refactor(Prompts): move display components to display/ subdirectory
berry-13 Jan 28, 2026
f6ecd0c
refactor(Prompts): move editor components to editor/ subdirectory
berry-13 Jan 28, 2026
1bbf33b
refactor(Prompts): move field components to fields/ subdirectory
berry-13 Jan 28, 2026
6d42d63
refactor(Prompts): move form components to forms/ subdirectory
berry-13 Jan 28, 2026
ba56851
refactor(Prompts): move layout components to layouts/ subdirectory
berry-13 Jan 28, 2026
8299314
refactor(Prompts): move list components to lists/ subdirectory
berry-13 Jan 28, 2026
573a0d0
refactor(Prompts): move sidebar components to sidebar/ subdirectory
berry-13 Jan 28, 2026
afbf9d2
refactor(Prompts): move utility components to utils/ subdirectory
berry-13 Jan 28, 2026
6c4a1e8
refactor(Prompts): update main exports and external imports
berry-13 Jan 28, 2026
2174c2b
refactor(Prompts): fix class name typo in AutoSendPrompt
berry-13 Jan 28, 2026
3a49960
refactor(Prompts): reorganize exports and imports order across compon…
berry-13 Feb 2, 2026
1c7a863
refactor(Prompts): reorder exports for better organization and clarity
berry-13 Feb 2, 2026
d804db7
refactor(Buttons): enhance prompts accessibility with aria-labels and…
berry-13 Feb 3, 2026
bd84775
refactor(AdminSettings): reorganize imports and improve form structur…
berry-13 Feb 3, 2026
b03de36
refactor(Dialogs): reorganize imports for consistency and clarity acr…
berry-13 Feb 3, 2026
41df857
refactor(Dialogs): enhance prompts accessibility with aria-labels
berry-13 Feb 3, 2026
7e877ad
refactor(Display): enhance prompt components and accessibility features
berry-13 Feb 3, 2026
92f4c36
refactor(.gitignore): add Playwright MCP directory
berry-13 Feb 3, 2026
727fdb5
refactor(Preview): enhance prompt components, improve layout, and add…
berry-13 Feb 3, 2026
0fb970d
refactor(Prompts): enhance variable handling, improve accessibility, …
berry-13 Feb 3, 2026
c4422f2
refactor(Prompts): enhance loading state handling and improve accessi…
berry-13 Feb 3, 2026
4009aa6
refactor(Prompts): streamline special variable handling, improve icon…
berry-13 Feb 4, 2026
17e517a
refactor(Prompts): update AdvancedSwitch component to use Radio for m…
berry-13 Feb 4, 2026
0c08aca
refactor(Prompts): enhance VersionCard and VersionBadge components fo…
berry-13 Feb 4, 2026
dcee819
refactor(Prompts): improve layout and styling of VersionCard componen…
berry-13 Feb 4, 2026
b50cef8
refactor(DeleteVersion): update text color for confirmation prompt in…
berry-13 Feb 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -167,5 +167,6 @@ coordination/orchestration/*
*.sqlite-journal
*.sqlite-wal
claude-flow
.playwright-mcp/*
# Removed Windows wrapper files per user request
hive-mind-prompt-*.txt
2 changes: 1 addition & 1 deletion client/src/Providers/PromptGroupsContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React, { createContext, useContext, ReactNode, useMemo } from 'react';
import { PermissionTypes, Permissions } from 'librechat-data-provider';
import type { TPromptGroup } from 'librechat-data-provider';
import type { PromptOption } from '~/common';
import CategoryIcon from '~/components/Prompts/Groups/CategoryIcon';
import { usePromptGroupsNav, useHasAccess } from '~/hooks';
import { useGetAllPromptGroups } from '~/data-provider';
import { CategoryIcon } from '~/components/Prompts';
import { mapPromptGroups } from '~/utils';

type AllPromptGroupsData =
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Chat/Input/PromptsCommand.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useSetRecoilState, useRecoilValue } from 'recoil';
import type { TPromptGroup } from 'librechat-data-provider';
import type { PromptOption } from '~/common';
import { removeCharIfLast, detectVariables } from '~/utils';
import VariableDialog from '~/components/Prompts/Groups/VariableDialog';
import { VariableDialog } from '~/components/Prompts';
import { usePromptGroupsContext } from '~/Providers';
import MentionItem from './MentionItem';
import { useLocalize } from '~/hooks';
Expand Down
63 changes: 0 additions & 63 deletions client/src/components/Prompts/AdvancedSwitch.tsx

This file was deleted.

155 changes: 0 additions & 155 deletions client/src/components/Prompts/Groups/ChatGroupItem.tsx

This file was deleted.

Loading