@katechat/ui 1.0.2 → 1.0.4

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.
Files changed (59) hide show
  1. package/README.md +11 -0
  2. package/dist/cjs/index.css +491 -0
  3. package/dist/cjs/index.css.map +7 -0
  4. package/dist/cjs/index.js +75302 -0
  5. package/dist/cjs/index.js.map +7 -0
  6. package/dist/esm/index.css +491 -0
  7. package/dist/esm/index.css.map +7 -0
  8. package/dist/esm/index.js +75301 -0
  9. package/dist/esm/index.js.map +7 -0
  10. package/dist/index.css +1 -0
  11. package/dist/index.js +539 -0
  12. package/dist/types/tsconfig.tsbuildinfo +1 -0
  13. package/package.json +27 -4
  14. package/.prettierrc +0 -9
  15. package/esbuild.js +0 -56
  16. package/jest.config.js +0 -24
  17. package/postcss.config.cjs +0 -14
  18. package/src/__mocks__/fileMock.js +0 -1
  19. package/src/__mocks__/styleMock.js +0 -1
  20. package/src/components/chat/ChatMessagesContainer.module.scss +0 -77
  21. package/src/components/chat/ChatMessagesContainer.tsx +0 -151
  22. package/src/components/chat/ChatMessagesList.tsx +0 -216
  23. package/src/components/chat/index.ts +0 -4
  24. package/src/components/chat/input/ChatInput.module.scss +0 -113
  25. package/src/components/chat/input/ChatInput.tsx +0 -259
  26. package/src/components/chat/input/index.ts +0 -1
  27. package/src/components/chat/message/ChatMessage.Carousel.module.scss +0 -7
  28. package/src/components/chat/message/ChatMessage.module.scss +0 -378
  29. package/src/components/chat/message/ChatMessage.tsx +0 -271
  30. package/src/components/chat/message/ChatMessagePreview.tsx +0 -22
  31. package/src/components/chat/message/LinkedChatMessage.tsx +0 -64
  32. package/src/components/chat/message/MessageStatus.tsx +0 -38
  33. package/src/components/chat/message/controls/CopyMessageButton.tsx +0 -32
  34. package/src/components/chat/message/index.ts +0 -4
  35. package/src/components/icons/ProviderIcon.tsx +0 -49
  36. package/src/components/icons/index.ts +0 -1
  37. package/src/components/index.ts +0 -3
  38. package/src/components/modal/ImagePopup.tsx +0 -97
  39. package/src/components/modal/index.ts +0 -1
  40. package/src/controls/FileDropzone/FileDropzone.module.scss +0 -15
  41. package/src/controls/FileDropzone/FileDropzone.tsx +0 -120
  42. package/src/controls/index.ts +0 -1
  43. package/src/core/ai.ts +0 -1
  44. package/src/core/index.ts +0 -4
  45. package/src/core/message.ts +0 -59
  46. package/src/core/model.ts +0 -23
  47. package/src/core/user.ts +0 -8
  48. package/src/hooks/index.ts +0 -2
  49. package/src/hooks/useIntersectionObserver.ts +0 -24
  50. package/src/hooks/useTheme.tsx +0 -66
  51. package/src/index.ts +0 -5
  52. package/src/lib/__tests__/markdown.parser.test.ts +0 -289
  53. package/src/lib/__tests__/markdown.parser.testUtils.ts +0 -31
  54. package/src/lib/__tests__/markdown.parser_sanitizeUrl.test.ts +0 -130
  55. package/src/lib/assert.ts +0 -14
  56. package/src/lib/markdown.parser.ts +0 -189
  57. package/src/setupTests.ts +0 -1
  58. package/src/types/scss.d.ts +0 -4
  59. 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
- }