@juspay/svelte-ui-components 2.133.0 → 2.134.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/README.md +30 -0
- package/dist/Checkbox/Checkbox.svelte +3 -1
- package/dist/Checkbox/properties.d.ts +5 -0
- package/dist/Draggable/Draggable.svelte +175 -0
- package/dist/Draggable/Draggable.svelte.d.ts +4 -0
- package/dist/Draggable/properties.d.ts +26 -0
- package/dist/Draggable/properties.js +1 -0
- package/dist/Gallery/Gallery.svelte +593 -0
- package/dist/Gallery/Gallery.svelte.d.ts +4 -0
- package/dist/Gallery/properties.d.ts +39 -0
- package/dist/Gallery/properties.js +1 -0
- package/dist/Input/Input.svelte +17 -4
- package/dist/Input/properties.d.ts +6 -0
- package/dist/MediaPlayer/MediaPlayer.svelte +277 -0
- package/dist/MediaPlayer/MediaPlayer.svelte.d.ts +4 -0
- package/dist/MediaPlayer/properties.d.ts +34 -0
- package/dist/MediaPlayer/properties.js +1 -0
- package/dist/MediaUpload/MediaUpload.svelte +528 -0
- package/dist/MediaUpload/MediaUpload.svelte.d.ts +4 -0
- package/dist/MediaUpload/properties.d.ts +46 -0
- package/dist/MediaUpload/properties.js +1 -0
- package/dist/Menu/Menu.svelte +2 -0
- package/dist/Menu/properties.d.ts +5 -0
- package/dist/Modal/Modal.svelte +17 -3
- package/dist/Modal/properties.d.ts +4 -0
- package/dist/assets/add.svg +4 -0
- package/dist/assets/delete.svg +7 -0
- package/dist/assets/edit.svg +4 -0
- package/dist/assets/file.svg +4 -0
- package/dist/assets/mute.svg +5 -0
- package/dist/assets/pause.svg +4 -0
- package/dist/assets/play.svg +3 -0
- package/dist/assets/volume.svg +5 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +4 -0
- package/dist-wc/index.d.ts +1 -0
- package/dist-wc/index.js +33018 -0
- package/package.json +16 -9
|
@@ -0,0 +1,5 @@
|
|
|
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="M4 9v6h4l5 5V4L8 9H4z" fill="currentColor" stroke="none" />
|
|
3
|
+
<line x1="16" y1="9" x2="21" y2="14" />
|
|
4
|
+
<line x1="21" y1="9" x2="16" y2="14" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
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="M4 9v6h4l5 5V4L8 9H4z" fill="currentColor" stroke="none" />
|
|
3
|
+
<path d="M16 8.5a4 4 0 0 1 0 7" />
|
|
4
|
+
<path d="M18.5 6a7 7 0 0 1 0 12" />
|
|
5
|
+
</svg>
|
package/dist/index.d.ts
CHANGED
|
@@ -93,6 +93,10 @@ export { default as ChatBubble } from './ChatBubble/ChatBubble.svelte';
|
|
|
93
93
|
export { default as HITL } from './HITL/HITL.svelte';
|
|
94
94
|
export { pauseAllConfirmationTimers } from './HITL/timers';
|
|
95
95
|
export { default as Resizable } from './Resizable/Resizable.svelte';
|
|
96
|
+
export { default as Draggable } from './Draggable/Draggable.svelte';
|
|
97
|
+
export { default as MediaPlayer } from './MediaPlayer/MediaPlayer.svelte';
|
|
98
|
+
export { default as MediaUpload } from './MediaUpload/MediaUpload.svelte';
|
|
99
|
+
export { default as Gallery } from './Gallery/Gallery.svelte';
|
|
96
100
|
export { ChatController } from './Chat/controller.svelte';
|
|
97
101
|
export { partyOf } from './Chat/roles';
|
|
98
102
|
export { SpeechToTextController } from './SpeechToText/controller.svelte';
|
|
@@ -188,6 +192,10 @@ export type * from './ChatToolStatus/properties';
|
|
|
188
192
|
export type * from './ChatBubble/properties';
|
|
189
193
|
export type * from './HITL/properties';
|
|
190
194
|
export type * from './Resizable/properties';
|
|
195
|
+
export type * from './Draggable/properties';
|
|
196
|
+
export type * from './MediaPlayer/properties';
|
|
197
|
+
export type * from './MediaUpload/properties';
|
|
198
|
+
export type * from './Gallery/properties';
|
|
191
199
|
export { createSoundKit } from './soundKit/soundKit';
|
|
192
200
|
export { validateInput } from './utils';
|
|
193
201
|
export { formatNumberIndian } from './_chart/format';
|
package/dist/index.js
CHANGED
|
@@ -93,6 +93,10 @@ export { default as ChatBubble } from './ChatBubble/ChatBubble.svelte';
|
|
|
93
93
|
export { default as HITL } from './HITL/HITL.svelte';
|
|
94
94
|
export { pauseAllConfirmationTimers } from './HITL/timers';
|
|
95
95
|
export { default as Resizable } from './Resizable/Resizable.svelte';
|
|
96
|
+
export { default as Draggable } from './Draggable/Draggable.svelte';
|
|
97
|
+
export { default as MediaPlayer } from './MediaPlayer/MediaPlayer.svelte';
|
|
98
|
+
export { default as MediaUpload } from './MediaUpload/MediaUpload.svelte';
|
|
99
|
+
export { default as Gallery } from './Gallery/Gallery.svelte';
|
|
96
100
|
export { ChatController } from './Chat/controller.svelte';
|
|
97
101
|
export { partyOf } from './Chat/roles';
|
|
98
102
|
export { SpeechToTextController } from './SpeechToText/controller.svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|