chore: exclude local resource artifacts from main sync

This commit is contained in:
2026-05-15 10:16:45 +09:00
parent 442879313f
commit d38d022872
504 changed files with 17074 additions and 3642 deletions

View File

@@ -0,0 +1,44 @@
import { Flex, Typography } from 'antd';
import type { SampleMeta } from '../../../widgets/core';
import { ChatLinkCardPreview } from '../../../app/main/mainChatPanel/ChatLinkCardPreview';
const { Paragraph } = Typography;
export const sampleMeta: SampleMeta = {
id: 'chat-link-card-preview',
componentId: 'chat-link-card-preview',
title: 'Chat Link Card Preview',
description: '채팅 응답에서 `[[link-card:...]]` 문법으로 렌더되는 외부 링크 카드 프리뷰 샘플입니다.',
category: 'Chat',
kind: 'feature',
variantLabel: 'Showcase',
order: 94,
features: ['docs'],
};
export function Sample() {
return (
<Flex vertical gap={16}>
<Paragraph>
. , , URL이
.
</Paragraph>
<ChatLinkCardPreview
target={{
type: 'link_card',
title: '업무용 모바일 시안 미리보기',
url: 'https://preview.sm-home.cloud/chat/live?sample=card-preview',
actionLabel: '미리보기 열기',
}}
/>
<ChatLinkCardPreview
target={{
type: 'link_card',
title: '배포 체크리스트 문서',
url: 'https://test.sm-home.cloud/docs/release-checklist',
actionLabel: '문서 열기',
}}
/>
</Flex>
);
}

0
src/components/common/InlineImage.tsx Executable file → Normal file
View File

View File

0
src/components/dashboard/multiProgress/index.ts Executable file → Normal file
View File

View File

View File

View File

0
src/components/dashboard/multiProgress/types/index.ts Executable file → Normal file
View File

View File

0
src/components/dashboard/progress/ProgressUI.tsx Executable file → Normal file
View File

0
src/components/dashboard/progress/index.ts Executable file → Normal file
View File

0
src/components/dashboard/progress/plugins/index.ts Executable file → Normal file
View File

View File

View File

0
src/components/dashboard/progress/samples/Sample.tsx Executable file → Normal file
View File

0
src/components/dashboard/progress/types/index.ts Executable file → Normal file
View File

0
src/components/dashboard/progress/types/progress.ts Executable file → Normal file
View File

0
src/components/dataListTable/DataListTable.css Executable file → Normal file
View File

0
src/components/dataListTable/DataListTable.tsx Executable file → Normal file
View File

0
src/components/dataListTable/index.ts Executable file → Normal file
View File

0
src/components/dataListTable/samples/BaseSample.tsx Executable file → Normal file
View File

0
src/components/dataStatePanel/DataStatePanel.css Executable file → Normal file
View File

0
src/components/dataStatePanel/DataStatePanel.tsx Executable file → Normal file
View File

0
src/components/dataStatePanel/index.ts Executable file → Normal file
View File

0
src/components/dataStatePanel/samples/BaseSample.css Executable file → Normal file
View File

0
src/components/dataStatePanel/samples/BaseSample.tsx Executable file → Normal file
View File

0
src/components/embeddedMap/EmbeddedMapUI.css Executable file → Normal file
View File

0
src/components/embeddedMap/EmbeddedMapUI.tsx Executable file → Normal file
View File

0
src/components/embeddedMap/index.ts Executable file → Normal file
View File

0
src/components/embeddedMap/samples/BaseSample.tsx Executable file → Normal file
View File

0
src/components/embeddedMap/samples/Sample.tsx Executable file → Normal file
View File

View File

View File

0
src/components/emptyIllustrationCard/index.ts Executable file → Normal file
View File

View File

View File

View File

@@ -121,7 +121,7 @@ function resolveAttachmentDownloadFileName(attachment: EvidenceAttachmentItem) {
try {
const resolvedUrl = new URL(
attachment.linkUrl,
typeof window !== 'undefined' ? window.location.origin : 'https://test.sm-home.cloud/',
typeof window !== 'undefined' ? window.location.origin : 'https://preview.sm-home.cloud/',
);
const fileName = resolvedUrl.pathname.split('/').pop()?.trim();

0
src/components/evidenceAttachmentStrip/index.ts Executable file → Normal file
View File

View File

View File

0
src/components/evidenceAttachmentStrip/types/index.ts Executable file → Normal file
View File

0
src/components/formField/FormField.css Executable file → Normal file
View File

0
src/components/formField/FormField.tsx Executable file → Normal file
View File

0
src/components/formField/index.ts Executable file → Normal file
View File

0
src/components/formField/samples/BaseSample.tsx Executable file → Normal file
View File

0
src/components/inputs/checkCombo/CheckComboUI.tsx Executable file → Normal file
View File

0
src/components/inputs/checkCombo/index.ts Executable file → Normal file
View File

View File

0
src/components/inputs/checkCombo/plugins/index.ts Executable file → Normal file
View File

View File

0
src/components/inputs/checkCombo/samples/Sample.tsx Executable file → Normal file
View File

0
src/components/inputs/checkCombo/types/check-combo.ts Executable file → Normal file
View File

0
src/components/inputs/checkCombo/types/index.ts Executable file → Normal file
View File

View File

0
src/components/inputs/composite/multiInput/index.ts Executable file → Normal file
View File

View File

View File

View File

View File

View File

0
src/components/inputs/popup/PopupUI.tsx Executable file → Normal file
View File

0
src/components/inputs/popup/index.ts Executable file → Normal file
View File

0
src/components/inputs/popup/plugins/index.ts Executable file → Normal file
View File

0
src/components/inputs/popup/plugins/popup.plugin.ts Executable file → Normal file
View File

0
src/components/inputs/popup/samples/BaseSample.tsx Executable file → Normal file
View File

0
src/components/inputs/popup/samples/Sample.tsx Executable file → Normal file
View File

0
src/components/inputs/popup/types/index.ts Executable file → Normal file
View File

0
src/components/inputs/popup/types/popup.ts Executable file → Normal file
View File

0
src/components/inputs/primitives/input/InputUI.tsx Executable file → Normal file
View File

0
src/components/inputs/primitives/input/index.ts Executable file → Normal file
View File

View File

View File

View File

View File

View File

0
src/components/inputs/primitives/input/types/index.ts Executable file → Normal file
View File

0
src/components/inputs/primitives/input/types/input.ts Executable file → Normal file
View File

0
src/components/inputs/select/SelectUI.tsx Executable file → Normal file
View File

0
src/components/inputs/select/index.ts Executable file → Normal file
View File

0
src/components/inputs/select/plugins/index.ts Executable file → Normal file
View File

0
src/components/inputs/select/plugins/select.plugin.ts Executable file → Normal file
View File

0
src/components/inputs/select/samples/BaseSample.tsx Executable file → Normal file
View File

0
src/components/inputs/select/samples/Sample.tsx Executable file → Normal file
View File

0
src/components/inputs/select/types/index.ts Executable file → Normal file
View File

0
src/components/inputs/select/types/select.ts Executable file → Normal file
View File

View File

View File

0
src/components/inputs/specialized/emailInput/index.ts Executable file → Normal file
View File

View File

View File

View File

View File

Some files were not shown because too many files have changed in this diff Show More