Skip to content

Commit a57fec8

Browse files
committed
folder refactor
1 parent 9fb0e05 commit a57fec8

200 files changed

Lines changed: 443 additions & 121 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { ConversationListItem } from './conversation-list-item'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { ImpersonationBanner } from './impersonation-banner'

apps/sim/app/workspace/[workspaceId]/components/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export type { ErrorBoundaryProps, ErrorStateProps } from './error'
33
export { ErrorShell, ErrorState } from './error'
44
export { InlineRenameInput } from './inline-rename-input'
55
export { MessageActions } from './message-actions'
6-
export { ownerCell } from './resource/components/owner-cell/owner-cell'
6+
export { ownerCell } from './resource/components/owner-cell'
77
export type {
88
BreadcrumbItem,
99
CreateAction,
@@ -17,7 +17,7 @@ export type {
1717
SortConfig,
1818
} from './resource/components/resource-options-bar'
1919
export { ResourceOptionsBar } from './resource/components/resource-options-bar'
20-
export { timeCell } from './resource/components/time-cell/time-cell'
20+
export { timeCell } from './resource/components/time-cell'
2121
export type {
2222
PaginationConfig,
2323
ResourceCell,
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { InlineRenameInput } from './inline-rename-input'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { getDefaultCredentialName, OAuthModal, type OAuthModalProps } from './oauth-modal'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { ownerCell } from './owner-cell'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { TaskStatusDot } from './task-status-dot'
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { CHAT_CONTEXT_KIND_REGISTRY } from './chat-context-kind-registry'

apps/sim/app/workspace/[workspaceId]/home/components/chat-message-attachments/chat-message-attachments.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getDocumentIcon } from '@/components/icons/document-icons'
22
import { cn } from '@/lib/core/utils/cn'
3-
import type { ChatMessageAttachment } from '../types'
3+
import type { ChatMessageAttachment } from '@/app/workspace/[workspaceId]/home/types'
44

55
function FileAttachmentPill(props: { mediaType: string; filename: string }) {
66
const Icon = getDocumentIcon(props.mediaType, props.filename)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { ChatMessageAttachments } from './chat-message-attachments'

0 commit comments

Comments
 (0)