@katechat/ui 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.css +491 -0
- package/dist/cjs/index.css.map +7 -0
- package/dist/cjs/index.js +75305 -0
- package/dist/cjs/index.js.map +7 -0
- package/dist/esm/index.css +491 -0
- package/dist/esm/index.css.map +7 -0
- package/dist/esm/index.js +75304 -0
- package/dist/esm/index.js.map +7 -0
- package/dist/index.css +1 -0
- package/dist/index.js +539 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +39 -3
- package/.prettierrc +0 -9
- package/esbuild.js +0 -56
- package/jest.config.js +0 -24
- package/postcss.config.cjs +0 -14
- package/src/__mocks__/fileMock.js +0 -1
- package/src/__mocks__/styleMock.js +0 -1
- package/src/components/chat/ChatMessagesContainer.module.scss +0 -77
- package/src/components/chat/ChatMessagesContainer.tsx +0 -151
- package/src/components/chat/ChatMessagesList.tsx +0 -216
- package/src/components/chat/index.ts +0 -4
- package/src/components/chat/input/ChatInput.module.scss +0 -113
- package/src/components/chat/input/ChatInput.tsx +0 -259
- package/src/components/chat/input/index.ts +0 -1
- package/src/components/chat/message/ChatMessage.Carousel.module.scss +0 -7
- package/src/components/chat/message/ChatMessage.module.scss +0 -378
- package/src/components/chat/message/ChatMessage.tsx +0 -271
- package/src/components/chat/message/ChatMessagePreview.tsx +0 -22
- package/src/components/chat/message/LinkedChatMessage.tsx +0 -64
- package/src/components/chat/message/MessageStatus.tsx +0 -38
- package/src/components/chat/message/controls/CopyMessageButton.tsx +0 -32
- package/src/components/chat/message/index.ts +0 -4
- package/src/components/icons/ProviderIcon.tsx +0 -49
- package/src/components/icons/index.ts +0 -1
- package/src/components/index.ts +0 -3
- package/src/components/modal/ImagePopup.tsx +0 -97
- package/src/components/modal/index.ts +0 -1
- package/src/controls/FileDropzone/FileDropzone.module.scss +0 -15
- package/src/controls/FileDropzone/FileDropzone.tsx +0 -120
- package/src/controls/index.ts +0 -1
- package/src/core/ai.ts +0 -1
- package/src/core/index.ts +0 -4
- package/src/core/message.ts +0 -59
- package/src/core/model.ts +0 -23
- package/src/core/user.ts +0 -8
- package/src/hooks/index.ts +0 -2
- package/src/hooks/useIntersectionObserver.ts +0 -24
- package/src/hooks/useTheme.tsx +0 -66
- package/src/index.ts +0 -5
- package/src/lib/__tests__/markdown.parser.test.ts +0 -289
- package/src/lib/__tests__/markdown.parser.testUtils.ts +0 -31
- package/src/lib/__tests__/markdown.parser_sanitizeUrl.test.ts +0 -130
- package/src/lib/assert.ts +0 -14
- package/src/lib/markdown.parser.ts +0 -189
- package/src/setupTests.ts +0 -1
- package/src/types/scss.d.ts +0 -4
- package/tsconfig.json +0 -26
package/tsconfig.json
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2020",
|
|
4
|
-
"lib": ["dom", "dom.iterable", "esnext"],
|
|
5
|
-
"allowJs": true,
|
|
6
|
-
"skipLibCheck": true,
|
|
7
|
-
"strict": true,
|
|
8
|
-
"forceConsistentCasingInFileNames": true,
|
|
9
|
-
"noEmit": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"allowSyntheticDefaultImports": true,
|
|
12
|
-
"noFallthroughCasesInSwitch": true,
|
|
13
|
-
"module": "esnext",
|
|
14
|
-
"moduleResolution": "bundler",
|
|
15
|
-
"resolveJsonModule": true,
|
|
16
|
-
"isolatedModules": true,
|
|
17
|
-
"jsx": "preserve",
|
|
18
|
-
"incremental": true,
|
|
19
|
-
"noImplicitAny": true,
|
|
20
|
-
"paths": {
|
|
21
|
-
"@/*": ["./src/*"]
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"include": ["**/*.ts", "**/*.tsx", "src/**/*"],
|
|
25
|
-
"exclude": ["../../node_modules/**/*.*", "node_modules/**/*.*", "**/*.test.tsx", "**/*.test.ts"]
|
|
26
|
-
}
|