@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.
Files changed (38) hide show
  1. package/README.md +30 -0
  2. package/dist/Checkbox/Checkbox.svelte +3 -1
  3. package/dist/Checkbox/properties.d.ts +5 -0
  4. package/dist/Draggable/Draggable.svelte +175 -0
  5. package/dist/Draggable/Draggable.svelte.d.ts +4 -0
  6. package/dist/Draggable/properties.d.ts +26 -0
  7. package/dist/Draggable/properties.js +1 -0
  8. package/dist/Gallery/Gallery.svelte +593 -0
  9. package/dist/Gallery/Gallery.svelte.d.ts +4 -0
  10. package/dist/Gallery/properties.d.ts +39 -0
  11. package/dist/Gallery/properties.js +1 -0
  12. package/dist/Input/Input.svelte +17 -4
  13. package/dist/Input/properties.d.ts +6 -0
  14. package/dist/MediaPlayer/MediaPlayer.svelte +277 -0
  15. package/dist/MediaPlayer/MediaPlayer.svelte.d.ts +4 -0
  16. package/dist/MediaPlayer/properties.d.ts +34 -0
  17. package/dist/MediaPlayer/properties.js +1 -0
  18. package/dist/MediaUpload/MediaUpload.svelte +528 -0
  19. package/dist/MediaUpload/MediaUpload.svelte.d.ts +4 -0
  20. package/dist/MediaUpload/properties.d.ts +46 -0
  21. package/dist/MediaUpload/properties.js +1 -0
  22. package/dist/Menu/Menu.svelte +2 -0
  23. package/dist/Menu/properties.d.ts +5 -0
  24. package/dist/Modal/Modal.svelte +17 -3
  25. package/dist/Modal/properties.d.ts +4 -0
  26. package/dist/assets/add.svg +4 -0
  27. package/dist/assets/delete.svg +7 -0
  28. package/dist/assets/edit.svg +4 -0
  29. package/dist/assets/file.svg +4 -0
  30. package/dist/assets/mute.svg +5 -0
  31. package/dist/assets/pause.svg +4 -0
  32. package/dist/assets/play.svg +3 -0
  33. package/dist/assets/volume.svg +5 -0
  34. package/dist/index.d.ts +8 -0
  35. package/dist/index.js +4 -0
  36. package/dist-wc/index.d.ts +1 -0
  37. package/dist-wc/index.js +33018 -0
  38. 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,4 @@
1
+ <svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="6" y="5" width="4" height="14" rx="1" />
3
+ <rect x="14" y="5" width="4" height="14" rx="1" />
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 5v14l11-7z" />
3
+ </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 {};