Skip to content

Commit 359fec3

Browse files
committed
feat: emcn, subscription, tool input
1 parent 98339b4 commit 359fec3

File tree

41 files changed

+1381
-1156
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1381
-1156
lines changed

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/components/create-chunk-modal/create-chunk-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export function CreateChunkModal({
174174
<ModalContent size='sm'>
175175
<ModalHeader>Discard Changes</ModalHeader>
176176
<ModalBody>
177-
<p className='text-[12px] text-[var(--text-tertiary)]'>
177+
<p className='text-[12px] text-[var(--text-secondary)]'>
178178
You have unsaved changes. Are you sure you want to close without saving?
179179
</p>
180180
</ModalBody>

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/components/delete-chunk-modal/delete-chunk-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function DeleteChunkModal({
6969
<ModalContent size='sm'>
7070
<ModalHeader>Delete Chunk</ModalHeader>
7171
<ModalBody>
72-
<p className='text-[12px] text-[var(--text-tertiary)]'>
72+
<p className='text-[12px] text-[var(--text-secondary)]'>
7373
Are you sure you want to delete this chunk?{' '}
7474
<span className='text-[var(--text-error)]'>This action cannot be undone.</span>
7575
</p>

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/components/edit-chunk-modal/edit-chunk-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export function EditChunkModal({
293293
<ModalContent size='sm'>
294294
<ModalHeader>Unsaved Changes</ModalHeader>
295295
<ModalBody>
296-
<p className='text-[12px] text-[var(--text-tertiary)]'>
296+
<p className='text-[12px] text-[var(--text-secondary)]'>
297297
You have unsaved changes to this chunk content.
298298
{pendingNavigation
299299
? ' Do you want to discard your changes and navigate to the next chunk?'

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/[documentId]/document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1219,7 +1219,7 @@ export function Document({
12191219
<ModalContent size='sm'>
12201220
<ModalHeader>Delete Document</ModalHeader>
12211221
<ModalBody>
1222-
<p className='text-[12px] text-[var(--text-tertiary)]'>
1222+
<p className='text-[12px] text-[var(--text-secondary)]'>
12231223
Are you sure you want to delete "{effectiveDocumentName}"? This will permanently
12241224
delete the document and all {documentData?.chunkCount ?? 0} chunk
12251225
{documentData?.chunkCount === 1 ? '' : 's'} within it.{' '}

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/base.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@ export function KnowledgeBase({
13131313
<ModalContent size='sm'>
13141314
<ModalHeader>Delete Knowledge Base</ModalHeader>
13151315
<ModalBody>
1316-
<p className='text-[12px] text-[var(--text-tertiary)]'>
1316+
<p className='text-[12px] text-[var(--text-secondary)]'>
13171317
Are you sure you want to delete "{knowledgeBaseName}"? This will permanently delete
13181318
the knowledge base and all {pagination.total} document
13191319
{pagination.total === 1 ? '' : 's'} within it.{' '}
@@ -1339,7 +1339,7 @@ export function KnowledgeBase({
13391339
<ModalContent size='sm'>
13401340
<ModalHeader>Delete Document</ModalHeader>
13411341
<ModalBody>
1342-
<p className='text-[12px] text-[var(--text-tertiary)]'>
1342+
<p className='text-[12px] text-[var(--text-secondary)]'>
13431343
Are you sure you want to delete "
13441344
{documents.find((doc) => doc.id === documentToDelete)?.filename ?? 'this document'}"?{' '}
13451345
<span className='text-[var(--text-error)]'>This action cannot be undone.</span>
@@ -1366,7 +1366,7 @@ export function KnowledgeBase({
13661366
<ModalContent size='sm'>
13671367
<ModalHeader>Delete Documents</ModalHeader>
13681368
<ModalBody>
1369-
<p className='text-[12px] text-[var(--text-tertiary)]'>
1369+
<p className='text-[12px] text-[var(--text-secondary)]'>
13701370
Are you sure you want to delete {selectedDocuments.size} document
13711371
{selectedDocuments.size === 1 ? '' : 's'}?{' '}
13721372
<span className='text-[var(--text-error)]'>This action cannot be undone.</span>

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/components/base-tags-modal/base-tags-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ export function BaseTagsModal({ open, onOpenChange, knowledgeBaseId }: BaseTagsM
460460
<ModalHeader>Delete Tag</ModalHeader>
461461
<ModalBody className='!pb-[16px]'>
462462
<div className='space-y-[8px]'>
463-
<p className='text-[12px] text-[var(--text-tertiary)]'>
463+
<p className='text-[12px] text-[var(--text-secondary)]'>
464464
Are you sure you want to delete the "{selectedTag?.displayName}" tag? This will
465465
remove this tag from {selectedTagUsage?.documentCount || 0} document
466466
{selectedTagUsage?.documentCount !== 1 ? 's' : ''}.{' '}

apps/sim/app/workspace/[workspaceId]/logs/components/logs-toolbar/components/notifications/notifications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ export function NotificationSettings({
13321332
<ModalContent className='w-[400px]'>
13331333
<ModalHeader>Delete Notification</ModalHeader>
13341334
<ModalBody>
1335-
<p className='text-[12px] text-[var(--text-tertiary)]'>
1335+
<p className='text-[12px] text-[var(--text-secondary)]'>
13361336
This will permanently remove the notification and stop all deliveries.{' '}
13371337
<span className='text-[var(--text-error)]'>This action cannot be undone.</span>
13381338
</p>

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/components/deploy-modal/components/chat/chat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ export function ChatDeploy({
394394
<ModalContent size='sm'>
395395
<ModalHeader>Delete Chat</ModalHeader>
396396
<ModalBody>
397-
<p className='text-[12px] text-[var(--text-tertiary)]'>
397+
<p className='text-[12px] text-[var(--text-secondary)]'>
398398
Are you sure you want to delete this chat?{' '}
399399
<span className='text-[var(--text-error)]'>
400400
This will remove the chat at "{getEmailDomain()}/chat/{existingChat?.identifier}"

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/components/deploy-modal/components/general/general.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ export function GeneralDeploy({
257257
<ModalContent size='sm'>
258258
<ModalHeader>Load Deployment</ModalHeader>
259259
<ModalBody>
260-
<p className='text-[12px] text-[var(--text-tertiary)]'>
260+
<p className='text-[12px] text-[var(--text-secondary)]'>
261261
Are you sure you want to load{' '}
262262
<span className='font-medium text-[var(--text-primary)]'>
263263
{versionToLoadInfo?.name || `v${versionToLoad}`}

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/components/deploy-modal/components/template/template.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ export function TemplateDeploy({
424424
<ModalContent size='sm'>
425425
<ModalHeader>Delete Template</ModalHeader>
426426
<ModalBody>
427-
<p className='text-[12px] text-[var(--text-tertiary)]'>
427+
<p className='text-[12px] text-[var(--text-secondary)]'>
428428
Are you sure you want to delete this template?{' '}
429429
<span className='text-[var(--text-error)]'>This action cannot be undone.</span>
430430
</p>

0 commit comments

Comments
 (0)