@juspay/svelte-ui-components 2.124.0 → 2.126.0
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/Chat/Chat.svelte +158 -0
- package/dist/Chat/Chat.svelte.d.ts +4 -0
- package/dist/Chat/controller.svelte.d.ts +24 -0
- package/dist/Chat/controller.svelte.js +190 -0
- package/dist/Chat/properties.d.ts +51 -0
- package/dist/Chat/properties.js +1 -0
- package/dist/Chat/roles.d.ts +2 -0
- package/dist/Chat/roles.js +3 -0
- package/dist/Chat/types.d.ts +45 -0
- package/dist/Chat/types.js +1 -0
- package/dist/ChatBubble/ChatBubble.svelte +419 -0
- package/dist/ChatBubble/ChatBubble.svelte.d.ts +4 -0
- package/dist/ChatBubble/properties.d.ts +43 -0
- package/dist/ChatBubble/properties.js +1 -0
- package/dist/ChatComposer/ChatComposer.svelte +289 -0
- package/dist/ChatComposer/ChatComposer.svelte.d.ts +4 -0
- package/dist/ChatComposer/properties.d.ts +33 -0
- package/dist/ChatComposer/properties.js +1 -0
- package/dist/ChatHeader/ChatHeader.svelte +169 -0
- package/dist/ChatHeader/ChatHeader.svelte.d.ts +4 -0
- package/dist/ChatHeader/properties.d.ts +19 -0
- package/dist/ChatHeader/properties.js +1 -0
- package/dist/ChatMessage/ChatMessage.svelte +330 -0
- package/dist/ChatMessage/ChatMessage.svelte.d.ts +4 -0
- package/dist/ChatMessage/properties.d.ts +29 -0
- package/dist/ChatMessage/properties.js +1 -0
- package/dist/ChatMessageList/ChatMessageList.svelte +181 -0
- package/dist/ChatMessageList/ChatMessageList.svelte.d.ts +4 -0
- package/dist/ChatMessageList/properties.d.ts +22 -0
- package/dist/ChatMessageList/properties.js +1 -0
- package/dist/ChatSuggestions/ChatSuggestions.svelte +46 -0
- package/dist/ChatSuggestions/ChatSuggestions.svelte.d.ts +4 -0
- package/dist/ChatSuggestions/properties.d.ts +16 -0
- package/dist/ChatSuggestions/properties.js +1 -0
- package/dist/ChatToolStatus/ChatToolStatus.svelte +63 -0
- package/dist/ChatToolStatus/ChatToolStatus.svelte.d.ts +4 -0
- package/dist/ChatToolStatus/properties.d.ts +10 -0
- package/dist/ChatToolStatus/properties.js +1 -0
- package/dist/LineChart/LineChart.svelte +36 -15
- package/dist/Resizable/Resizable.svelte +304 -0
- package/dist/Resizable/Resizable.svelte.d.ts +4 -0
- package/dist/Resizable/properties.d.ts +27 -0
- package/dist/Resizable/properties.js +1 -0
- package/dist/Table/Table.svelte +109 -10
- package/dist/Table/properties.d.ts +1 -0
- package/dist/assets/attach.svg +3 -0
- package/dist/assets/chat.svg +3 -0
- package/dist/assets/mic.svg +5 -0
- package/dist/assets/retry.svg +4 -0
- package/dist/assets/send.svg +4 -0
- package/dist/assets/stop.svg +3 -0
- package/dist/assets/thumb-down.svg +4 -0
- package/dist/assets/thumb-up.svg +4 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3z" />
|
|
3
|
+
<path d="M17 2h3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-3" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3z" />
|
|
3
|
+
<path d="M7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" />
|
|
4
|
+
</svg>
|
package/dist/index.d.ts
CHANGED
|
@@ -77,6 +77,17 @@ export { default as FunnelChart } from './FunnelChart/FunnelChart.svelte';
|
|
|
77
77
|
export { default as ProportionBar } from './ProportionBar/ProportionBar.svelte';
|
|
78
78
|
export { default as ChipInput } from './ChipInput/ChipInput.svelte';
|
|
79
79
|
export { default as FileDropzoneTrigger } from './FileDropzoneTrigger/FileDropzoneTrigger.svelte';
|
|
80
|
+
export { default as Chat } from './Chat/Chat.svelte';
|
|
81
|
+
export { default as ChatHeader } from './ChatHeader/ChatHeader.svelte';
|
|
82
|
+
export { default as ChatMessage } from './ChatMessage/ChatMessage.svelte';
|
|
83
|
+
export { default as ChatMessageList } from './ChatMessageList/ChatMessageList.svelte';
|
|
84
|
+
export { default as ChatComposer } from './ChatComposer/ChatComposer.svelte';
|
|
85
|
+
export { default as ChatSuggestions } from './ChatSuggestions/ChatSuggestions.svelte';
|
|
86
|
+
export { default as ChatToolStatus } from './ChatToolStatus/ChatToolStatus.svelte';
|
|
87
|
+
export { default as ChatBubble } from './ChatBubble/ChatBubble.svelte';
|
|
88
|
+
export { default as Resizable } from './Resizable/Resizable.svelte';
|
|
89
|
+
export { ChatController } from './Chat/controller.svelte';
|
|
90
|
+
export { partyOf } from './Chat/roles';
|
|
80
91
|
export type * from './Button/properties';
|
|
81
92
|
export type * from './Modal/properties';
|
|
82
93
|
export type * from './Input/properties';
|
|
@@ -151,5 +162,15 @@ export type * from './ProportionBar/properties';
|
|
|
151
162
|
export type * from './ChipInput/properties';
|
|
152
163
|
export type * from './FileDropzoneTrigger/properties';
|
|
153
164
|
export type * from './_chart/highlight';
|
|
165
|
+
export type * from './Chat/properties';
|
|
166
|
+
export type * from './Chat/types';
|
|
167
|
+
export type * from './ChatHeader/properties';
|
|
168
|
+
export type * from './ChatMessage/properties';
|
|
169
|
+
export type * from './ChatMessageList/properties';
|
|
170
|
+
export type * from './ChatComposer/properties';
|
|
171
|
+
export type * from './ChatSuggestions/properties';
|
|
172
|
+
export type * from './ChatToolStatus/properties';
|
|
173
|
+
export type * from './ChatBubble/properties';
|
|
174
|
+
export type * from './Resizable/properties';
|
|
154
175
|
export { validateInput } from './utils';
|
|
155
176
|
export { formatNumberIndian } from './_chart/format';
|
package/dist/index.js
CHANGED
|
@@ -77,5 +77,16 @@ export { default as FunnelChart } from './FunnelChart/FunnelChart.svelte';
|
|
|
77
77
|
export { default as ProportionBar } from './ProportionBar/ProportionBar.svelte';
|
|
78
78
|
export { default as ChipInput } from './ChipInput/ChipInput.svelte';
|
|
79
79
|
export { default as FileDropzoneTrigger } from './FileDropzoneTrigger/FileDropzoneTrigger.svelte';
|
|
80
|
+
export { default as Chat } from './Chat/Chat.svelte';
|
|
81
|
+
export { default as ChatHeader } from './ChatHeader/ChatHeader.svelte';
|
|
82
|
+
export { default as ChatMessage } from './ChatMessage/ChatMessage.svelte';
|
|
83
|
+
export { default as ChatMessageList } from './ChatMessageList/ChatMessageList.svelte';
|
|
84
|
+
export { default as ChatComposer } from './ChatComposer/ChatComposer.svelte';
|
|
85
|
+
export { default as ChatSuggestions } from './ChatSuggestions/ChatSuggestions.svelte';
|
|
86
|
+
export { default as ChatToolStatus } from './ChatToolStatus/ChatToolStatus.svelte';
|
|
87
|
+
export { default as ChatBubble } from './ChatBubble/ChatBubble.svelte';
|
|
88
|
+
export { default as Resizable } from './Resizable/Resizable.svelte';
|
|
89
|
+
export { ChatController } from './Chat/controller.svelte';
|
|
90
|
+
export { partyOf } from './Chat/roles';
|
|
80
91
|
export { validateInput } from './utils';
|
|
81
92
|
export { formatNumberIndian } from './_chart/format';
|