@juspay/svelte-ui-components 3.2.1 → 3.2.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.
Files changed (2) hide show
  1. package/dist-wc/index.js +175 -49
  2. package/package.json +1 -1
package/dist-wc/index.js CHANGED
@@ -4824,7 +4824,8 @@ customElements.define("sui-book", create_custom_element(Book_wc, {
4824
4824
  previousIcon: { type: "Object" },
4825
4825
  nextIcon: { type: "Object" },
4826
4826
  classes: { type: "String" },
4827
- onpagechange: { type: "Object" }
4827
+ onpagechange: { type: "Object" },
4828
+ onPageChange: { type: "Object" }
4828
4829
  }, ["previous-icon", "next-icon"], [], { mode: "open" }));
4829
4830
  //#endregion
4830
4831
  //#region src/lib/BrandLoader/BrandLoader.svelte
@@ -5508,7 +5509,10 @@ customElements.define("sui-calendar", create_custom_element(Calendar_wc, {
5508
5509
  onselect: { type: "Object" },
5509
5510
  onrangeselect: { type: "Object" },
5510
5511
  onmonthchange: { type: "Object" },
5511
- initialMonth: { type: "Object" }
5512
+ initialMonth: { type: "Object" },
5513
+ onSelect: { type: "Object" },
5514
+ onRangeSelect: { type: "Object" },
5515
+ onMonthChange: { type: "Object" }
5512
5516
  }, ["previous-month-icon", "next-month-icon"], [], { mode: "open" }));
5513
5517
  //#endregion
5514
5518
  //#region src/lib/Carousel/Carousel.svelte
@@ -5926,7 +5930,8 @@ customElements.define("sui-checkbox", create_custom_element(Checkbox_wc, {
5926
5930
  attribute: "aria-controls",
5927
5931
  type: "String"
5928
5932
  },
5929
- onclick: { type: "Object" }
5933
+ onclick: { type: "Object" },
5934
+ onClick: { type: "Object" }
5930
5935
  }, ["checked-icon", "indeterminate-icon"], [], { mode: "open" }));
5931
5936
  //#endregion
5932
5937
  //#region src/lib/utils.ts
@@ -7172,7 +7177,11 @@ customElements.define("sui-chip-input", create_custom_element(ChipInput_wc, {
7172
7177
  onadd: { type: "Object" },
7173
7178
  ondismiss: { type: "Object" },
7174
7179
  onedit: { type: "Object" },
7175
- onchange: { type: "Object" }
7180
+ onchange: { type: "Object" },
7181
+ onAdd: { type: "Object" },
7182
+ onDismiss: { type: "Object" },
7183
+ onEdit: { type: "Object" },
7184
+ onChange: { type: "Object" }
7176
7185
  }, [], [], { mode: "open" }));
7177
7186
  //#endregion
7178
7187
  //#region src/lib/Slider/Slider.svelte
@@ -7916,7 +7925,9 @@ customElements.define("sui-color-picker", create_custom_element(ColorPicker_wc,
7916
7925
  },
7917
7926
  classes: { type: "String" },
7918
7927
  onchange: { type: "Object" },
7919
- oninput: { type: "Object" }
7928
+ oninput: { type: "Object" },
7929
+ onChange: { type: "Object" },
7930
+ onInput: { type: "Object" }
7920
7931
  }, [], [], { mode: "open" }));
7921
7932
  //#endregion
7922
7933
  //#region src/lib/Combobox/Combobox.svelte
@@ -8738,7 +8749,15 @@ customElements.define("sui-combobox", create_custom_element(Combobox_wc, {
8738
8749
  onchange: { type: "Object" },
8739
8750
  onadd: { type: "Object" },
8740
8751
  onremove: { type: "Object" },
8741
- oncreate: { type: "Object" }
8752
+ oncreate: { type: "Object" },
8753
+ onSelect: { type: "Object" },
8754
+ onInput: { type: "Object" },
8755
+ onOpen: { type: "Object" },
8756
+ onClose: { type: "Object" },
8757
+ onChange: { type: "Object" },
8758
+ onAdd: { type: "Object" },
8759
+ onRemove: { type: "Object" },
8760
+ onCreate: { type: "Object" }
8742
8761
  }, [], [], { mode: "open" }));
8743
8762
  //#endregion
8744
8763
  //#region src/lib/assets/search.svg?raw
@@ -9050,7 +9069,9 @@ customElements.define("sui-command-menu", create_custom_element(CommandMenu_wc,
9050
9069
  classes: { type: "String" },
9051
9070
  onselect: { type: "Object" },
9052
9071
  onclose: { type: "Object" },
9053
- itemIcon: { type: "Object" }
9072
+ itemIcon: { type: "Object" },
9073
+ onSelect: { type: "Object" },
9074
+ onClose: { type: "Object" }
9054
9075
  }, ["search-icon"], [], { mode: "open" }));
9055
9076
  //#endregion
9056
9077
  //#region src/lib/Gauge/Gauge.svelte
@@ -9687,7 +9708,8 @@ customElements.define("sui-img", create_custom_element(Img_wc, {
9687
9708
  attribute: "inline-svg",
9688
9709
  type: "Boolean"
9689
9710
  },
9690
- transformSvg: { type: "Object" }
9711
+ transformSvg: { type: "Object" },
9712
+ onError: { type: "Object" }
9691
9713
  }, [], [], { mode: "open" }));
9692
9714
  //#endregion
9693
9715
  //#region src/wc/components/Input.wc.svelte
@@ -9873,7 +9895,14 @@ customElements.define("sui-input", create_custom_element(Input_wc, {
9873
9895
  showCount: {
9874
9896
  attribute: "show-count",
9875
9897
  type: "Boolean"
9876
- }
9898
+ },
9899
+ onfocus: { type: "Object" },
9900
+ onfocusout: { type: "Object" },
9901
+ onblur: { type: "Object" },
9902
+ oninput: { type: "Object" },
9903
+ onpaste: { type: "Object" },
9904
+ onclick: { type: "Object" },
9905
+ onkeydown: { type: "Object" }
9877
9906
  }, [], [], { mode: "open" }));
9878
9907
  //#endregion
9879
9908
  //#region src/lib/KeyboardInput/KeyboardInput.svelte
@@ -10290,7 +10319,8 @@ customElements.define("sui-pagination", create_custom_element(Pagination_wc, {
10290
10319
  type: "String"
10291
10320
  },
10292
10321
  onchange: { type: "Object" },
10293
- onLoadMore: { type: "Object" }
10322
+ onLoadMore: { type: "Object" },
10323
+ onChange: { type: "Object" }
10294
10324
  }, [], [], { mode: "open" }));
10295
10325
  //#endregion
10296
10326
  //#region src/wc/components/Pill.wc.svelte
@@ -10342,7 +10372,8 @@ customElements.define("sui-pill", create_custom_element(Pill_wc, {
10342
10372
  dismissIcon: { type: "Object" },
10343
10373
  classes: { type: "String" },
10344
10374
  onclick: { type: "Object" },
10345
- ondismiss: { type: "Object" }
10375
+ ondismiss: { type: "Object" },
10376
+ onDismiss: { type: "Object" }
10346
10377
  }, ["leading-icon", "dismiss-icon"], [], { mode: "open" }));
10347
10378
  //#endregion
10348
10379
  //#region src/lib/Progress/Progress.svelte
@@ -10591,7 +10622,8 @@ customElements.define("sui-radio", create_custom_element(Radio_wc, {
10591
10622
  type: "String"
10592
10623
  },
10593
10624
  classes: { type: "String" },
10594
- onchange: { type: "Object" }
10625
+ onchange: { type: "Object" },
10626
+ onChange: { type: "Object" }
10595
10627
  }, [], [], { mode: "open" }));
10596
10628
  //#endregion
10597
10629
  //#region src/lib/Tooltip/PortalContentRenderer.svelte
@@ -11076,7 +11108,9 @@ customElements.define("sui-slider", create_custom_element(Slider_wc, {
11076
11108
  classes: { type: "String" },
11077
11109
  oninput: { type: "Object" },
11078
11110
  onchange: { type: "Object" },
11079
- labelFormatter: { type: "Object" }
11111
+ labelFormatter: { type: "Object" },
11112
+ onChange: { type: "Object" },
11113
+ onInput: { type: "Object" }
11080
11114
  }, [], [], { mode: "open" }));
11081
11115
  //#endregion
11082
11116
  //#region src/wc/components/SplitInput.wc.svelte
@@ -11133,7 +11167,10 @@ customElements.define("sui-split-input", create_custom_element(SplitInput_wc, {
11133
11167
  classes: { type: "String" },
11134
11168
  onchange: { type: "Object" },
11135
11169
  oninput: { type: "Object" },
11136
- oncomplete: { type: "Object" }
11170
+ oncomplete: { type: "Object" },
11171
+ onChange: { type: "Object" },
11172
+ onInput: { type: "Object" },
11173
+ onComplete: { type: "Object" }
11137
11174
  }, [], [], { mode: "open" }));
11138
11175
  //#endregion
11139
11176
  //#region src/lib/Status/Status.svelte
@@ -11345,7 +11382,8 @@ customElements.define("sui-status", create_custom_element(Status_wc, {
11345
11382
  testId: {
11346
11383
  attribute: "test-id",
11347
11384
  type: "String"
11348
- }
11385
+ },
11386
+ onButtonClick: { type: "Object" }
11349
11387
  }, ["default"], [], { mode: "open" }));
11350
11388
  //#endregion
11351
11389
  //#region src/lib/Stepper/Step.svelte
@@ -11648,7 +11686,9 @@ customElements.define("sui-stepper", create_custom_element(Stepper_wc, {
11648
11686
  suppressContainerTestId: {
11649
11687
  attribute: "suppress-container-test-id",
11650
11688
  type: "Boolean"
11651
- }
11689
+ },
11690
+ onStepClick: { type: "Object" },
11691
+ onHandleStepClick: { type: "Object" }
11652
11692
  }, [], [], { mode: "open" }));
11653
11693
  //#endregion
11654
11694
  //#region src/lib/assets/chevron-up.svg?raw
@@ -12042,7 +12082,9 @@ customElements.define("sui-tabs", create_custom_element(Tabs_wc, {
12042
12082
  type: "String"
12043
12083
  },
12044
12084
  tab: { type: "Object" },
12045
- onkeychange: { type: "Object" }
12085
+ onkeychange: { type: "Object" },
12086
+ onChange: { type: "Object" },
12087
+ onKeyChange: { type: "Object" }
12046
12088
  }, [
12047
12089
  "scroll-left-icon",
12048
12090
  "scroll-right-icon",
@@ -12239,7 +12281,8 @@ customElements.define("sui-theme-switcher", create_custom_element(ThemeSwitcher_
12239
12281
  type: "String"
12240
12282
  },
12241
12283
  classes: { type: "String" },
12242
- onchange: { type: "Object" }
12284
+ onchange: { type: "Object" },
12285
+ onChange: { type: "Object" }
12243
12286
  }, [], [], { mode: "open" }));
12244
12287
  //#endregion
12245
12288
  //#region src/lib/Toggle/Toggle.svelte
@@ -12343,7 +12386,8 @@ customElements.define("sui-toggle", create_custom_element(Toggle_wc, {
12343
12386
  testId: {
12344
12387
  attribute: "test-id",
12345
12388
  type: "String"
12346
- }
12389
+ },
12390
+ onClick: { type: "Object" }
12347
12391
  }, [], [], { mode: "open" }));
12348
12392
  //#endregion
12349
12393
  //#region src/lib/Accordion/Accordion.svelte
@@ -12492,7 +12536,8 @@ customElements.define("sui-accordion", create_custom_element(Accordion_wc, {
12492
12536
  attribute: "disabled",
12493
12537
  reflect: !0,
12494
12538
  type: "Boolean"
12495
- }
12539
+ },
12540
+ onToggle: { type: "Object" }
12496
12541
  }, ["default"], [], { mode: "open" }));
12497
12542
  //#endregion
12498
12543
  //#region node_modules/.pnpm/svelte@5.56.3_@typescript-eslint+types@8.60.1/node_modules/svelte/src/transition/index.js
@@ -12806,7 +12851,8 @@ customElements.define("sui-banner", create_custom_element(Banner_wc, {
12806
12851
  ondismiss: { type: "Object" },
12807
12852
  icon: { type: "Object" },
12808
12853
  rightContent: { type: "Object" },
12809
- dismissIcon: { type: "Object" }
12854
+ dismissIcon: { type: "Object" },
12855
+ onDismiss: { type: "Object" }
12810
12856
  }, [
12811
12857
  "icon",
12812
12858
  "title",
@@ -13276,7 +13322,8 @@ customElements.define("sui-check-list-item", create_custom_element(CheckListItem
13276
13322
  type: "String"
13277
13323
  },
13278
13324
  onclick: { type: "Object" },
13279
- checkboxLabel: { type: "Object" }
13325
+ checkboxLabel: { type: "Object" },
13326
+ onClick: { type: "Object" }
13280
13327
  }, ["checkbox-label"], [], { mode: "open" }));
13281
13328
  //#endregion
13282
13329
  //#region src/lib/Choicebox/Choicebox.svelte
@@ -13429,7 +13476,8 @@ customElements.define("sui-choicebox", create_custom_element(Choicebox_wc, {
13429
13476
  type: "String"
13430
13477
  },
13431
13478
  classes: { type: "String" },
13432
- onclick: { type: "Object" }
13479
+ onclick: { type: "Object" },
13480
+ onClick: { type: "Object" }
13433
13481
  }, ["default"], [], { mode: "open" }));
13434
13482
  //#endregion
13435
13483
  //#region src/lib/Card/Card.svelte
@@ -14066,7 +14114,9 @@ delegate(["click"]), customElements.define("sui-file-input", create_custom_eleme
14066
14114
  classes: { type: "String" },
14067
14115
  onfiles: { type: "Object" },
14068
14116
  onerror: { type: "Object" },
14069
- trigger: { type: "Object" }
14117
+ trigger: { type: "Object" },
14118
+ onFiles: { type: "Object" },
14119
+ onError: { type: "Object" }
14070
14120
  }, ["trigger"], [], { mode: "open" }));
14071
14121
  //#endregion
14072
14122
  //#region src/lib/ContextMenu/ContextMenu.svelte
@@ -14323,7 +14373,10 @@ customElements.define("sui-context-menu", create_custom_element(ContextMenu_wc,
14323
14373
  classes: { type: "String" },
14324
14374
  onselect: { type: "Object" },
14325
14375
  onopen: { type: "Object" },
14326
- onclose: { type: "Object" }
14376
+ onclose: { type: "Object" },
14377
+ onSelect: { type: "Object" },
14378
+ onOpen: { type: "Object" },
14379
+ onClose: { type: "Object" }
14327
14380
  }, ["default"], [], { mode: "open" }));
14328
14381
  //#endregion
14329
14382
  //#region src/lib/InputButton/InputButton.svelte
@@ -15150,7 +15203,12 @@ customElements.define("sui-list-item", create_custom_element(ListItem_wc, {
15150
15203
  leftContent: { type: "Object" },
15151
15204
  centerContent: { type: "Object" },
15152
15205
  rightContent: { type: "Object" },
15153
- bottomContent: { type: "Object" }
15206
+ bottomContent: { type: "Object" },
15207
+ onLeftImageClick: { type: "Object" },
15208
+ onRightImageClick: { type: "Object" },
15209
+ onCenterTextClick: { type: "Object" },
15210
+ onItemClick: { type: "Object" },
15211
+ onTopSectionClick: { type: "Object" }
15154
15212
  }, [
15155
15213
  "left-content",
15156
15214
  "center-content",
@@ -15607,7 +15665,10 @@ customElements.define("sui-menu", create_custom_element(Menu_wc, {
15607
15665
  usePortal: {
15608
15666
  attribute: "use-portal",
15609
15667
  type: "Boolean"
15610
- }
15668
+ },
15669
+ onSelect: { type: "Object" },
15670
+ onOpen: { type: "Object" },
15671
+ onClose: { type: "Object" }
15611
15672
  }, ["trigger"], [], { mode: "open" }));
15612
15673
  //#endregion
15613
15674
  //#region src/lib/Animations/ModalAnimation.svelte
@@ -16290,7 +16351,13 @@ customElements.define("sui-modal", create_custom_element(Modal_wc, {
16290
16351
  autoDismissAfter: {
16291
16352
  attribute: "auto-dismiss-after",
16292
16353
  type: "Number"
16293
- }
16354
+ },
16355
+ onClose: { type: "Object" },
16356
+ onHeaderRightImageClick: { type: "Object" },
16357
+ onHeaderLeftImageClick: { type: "Object" },
16358
+ onPrimaryButtonClick: { type: "Object" },
16359
+ onSecondaryButtonClick: { type: "Object" },
16360
+ onOverlayClick: { type: "Object" }
16294
16361
  }, ["default", "footer"], [], { mode: "open" }));
16295
16362
  //#endregion
16296
16363
  //#region src/lib/assets/signal.svg?raw
@@ -16762,7 +16829,8 @@ customElements.define("sui-scroller", create_custom_element(Scroller_wc, {
16762
16829
  classes: { type: "String" },
16763
16830
  onscrollposition: { type: "Object" },
16764
16831
  arrowPrevious: { type: "Object" },
16765
- arrowNext: { type: "Object" }
16832
+ arrowNext: { type: "Object" },
16833
+ onScrollPosition: { type: "Object" }
16766
16834
  }, [
16767
16835
  "default",
16768
16836
  "arrow-previous",
@@ -17485,7 +17553,10 @@ customElements.define("sui-select", create_custom_element(Select_wc, {
17485
17553
  usePortal: {
17486
17554
  attribute: "use-portal",
17487
17555
  type: "Boolean"
17488
- }
17556
+ },
17557
+ onChange: { type: "Object" },
17558
+ onOpen: { type: "Object" },
17559
+ onClose: { type: "Object" }
17489
17560
  }, ["bottom-content"], [], { mode: "open" }));
17490
17561
  //#endregion
17491
17562
  //#region src/lib/Sheet/Sheet.svelte
@@ -17769,7 +17840,10 @@ customElements.define("sui-sheet", create_custom_element(Sheet_wc, {
17769
17840
  type: "Boolean"
17770
17841
  },
17771
17842
  content: { type: "Object" },
17772
- footer: { type: "Object" }
17843
+ footer: { type: "Object" },
17844
+ onClose: { type: "Object" },
17845
+ onAfterOpen: { type: "Object" },
17846
+ onAfterClose: { type: "Object" }
17773
17847
  }, ["default", "footer"], [], { mode: "open" }));
17774
17848
  //#endregion
17775
17849
  //#region src/lib/assets/copy.svg?raw
@@ -17916,7 +17990,8 @@ customElements.define("sui-snippet", create_custom_element(Snippet_wc, {
17916
17990
  },
17917
17991
  classes: { type: "String" },
17918
17992
  oncopy: { type: "Object" },
17919
- copyIcon: { type: "Object" }
17993
+ copyIcon: { type: "Object" },
17994
+ onCopy: { type: "Object" }
17920
17995
  }, ["copy-icon"], [], { mode: "open" }));
17921
17996
  //#endregion
17922
17997
  //#region src/lib/assets/chevron-down-sm.svg?raw
@@ -18075,7 +18150,8 @@ customElements.define("sui-split-button", create_custom_element(SplitButton_wc,
18075
18150
  classes: { type: "String" },
18076
18151
  onclick: { type: "Object" },
18077
18152
  onselect: { type: "Object" },
18078
- dropdownIcon: { type: "Object" }
18153
+ dropdownIcon: { type: "Object" },
18154
+ onSelect: { type: "Object" }
18079
18155
  }, ["dropdown-icon"], [], { mode: "open" }));
18080
18156
  //#endregion
18081
18157
  //#region src/lib/Table/normalizeColumns.ts
@@ -20501,7 +20577,8 @@ customElements.define("sui-toolbar", create_custom_element(Toolbar_wc, {
20501
20577
  leftContent: { type: "Object" },
20502
20578
  centerContent: { type: "Object" },
20503
20579
  rightContent: { type: "Object" },
20504
- additionalContent: { type: "Object" }
20580
+ additionalContent: { type: "Object" },
20581
+ onBackClick: { type: "Object" }
20505
20582
  }, [
20506
20583
  "left-content",
20507
20584
  "center-content",
@@ -21680,7 +21757,13 @@ customElements.define("sui-date-range-picker", create_custom_element(DateRangePi
21680
21757
  compareCalendar: { type: "Object" },
21681
21758
  triggerSnippet: { type: "Object" },
21682
21759
  triggerIcon: { type: "Object" },
21683
- compareTrigger: { type: "Object" }
21760
+ compareTrigger: { type: "Object" },
21761
+ onApply: { type: "Object" },
21762
+ onApplySingle: { type: "Object" },
21763
+ onApplyCompare: { type: "Object" },
21764
+ onCancel: { type: "Object" },
21765
+ onOpenToggle: { type: "Object" },
21766
+ onClear: { type: "Object" }
21684
21767
  }, [], [], { mode: "open" }));
21685
21768
  //#endregion
21686
21769
  //#region node_modules/.pnpm/lottie-web@5.13.0/node_modules/lottie-web/build/player/lottie.js
@@ -28942,7 +29025,9 @@ customElements.define("sui-lottie-player", create_custom_element(LottiePlayer_wc
28942
29025
  type: "String"
28943
29026
  },
28944
29027
  oncomplete: { type: "Object" },
28945
- onerror: { type: "Object" }
29028
+ onerror: { type: "Object" },
29029
+ onComplete: { type: "Object" },
29030
+ onError: { type: "Object" }
28946
29031
  }, [], [], { mode: "open" }));
28947
29032
  //#endregion
28948
29033
  //#region src/lib/DeltaIndicator/DeltaIndicator.svelte
@@ -30011,7 +30096,10 @@ customElements.define("sui-resizable", create_custom_element(Resizable_wc, {
30011
30096
  classes: { type: "String" },
30012
30097
  onresize: { type: "Object" },
30013
30098
  onresizestart: { type: "Object" },
30014
- onresizeend: { type: "Object" }
30099
+ onresizeend: { type: "Object" },
30100
+ onResize: { type: "Object" },
30101
+ onResizeStart: { type: "Object" },
30102
+ onResizeEnd: { type: "Object" }
30015
30103
  }, [], [], { mode: "open" }));
30016
30104
  //#endregion
30017
30105
  //#region src/lib/Draggable/Draggable.svelte
@@ -30584,7 +30672,8 @@ customElements.define("sui-media-player", create_custom_element(MediaPlayer_wc,
30584
30672
  classes: { type: "String" },
30585
30673
  onplay: { type: "Object" },
30586
30674
  onpause: { type: "Object" },
30587
- onvolumechange: { type: "Object" }
30675
+ onvolumechange: { type: "Object" },
30676
+ onVolumeChange: { type: "Object" }
30588
30677
  }, [], [], { mode: "open" }));
30589
30678
  //#endregion
30590
30679
  //#region src/lib/assets/add.svg?raw
@@ -31220,7 +31309,8 @@ customElements.define("sui-file-dropzone-trigger", create_custom_element(FileDro
31220
31309
  type: "String"
31221
31310
  },
31222
31311
  classes: { type: "String" },
31223
- onclick: { type: "Object" }
31312
+ onclick: { type: "Object" },
31313
+ onClick: { type: "Object" }
31224
31314
  }, [], [], { mode: "open" }));
31225
31315
  //#endregion
31226
31316
  //#region src/lib/KeyValue/KeyValue.svelte
@@ -36731,7 +36821,16 @@ customElements.define("sui-chat", create_custom_element(Chat_wc, {
36731
36821
  onretry: { type: "Object" },
36732
36822
  onfeedback: { type: "Object" },
36733
36823
  onscrollstate: { type: "Object" },
36734
- headerContent: { type: "Object" }
36824
+ headerContent: { type: "Object" },
36825
+ onSend: { type: "Object" },
36826
+ onSuggestion: { type: "Object" },
36827
+ onClose: { type: "Object" },
36828
+ onStop: { type: "Object" },
36829
+ onVoice: { type: "Object" },
36830
+ onAttach: { type: "Object" },
36831
+ onRetry: { type: "Object" },
36832
+ onFeedback: { type: "Object" },
36833
+ onScrollState: { type: "Object" }
36735
36834
  }, [], [], { mode: "open" }));
36736
36835
  //#endregion
36737
36836
  //#region src/wc/components/ChatHeader.wc.svelte
@@ -36778,7 +36877,8 @@ customElements.define("sui-chat-header", create_custom_element(ChatHeader_wc, {
36778
36877
  type: "String"
36779
36878
  },
36780
36879
  classes: { type: "String" },
36781
- onclose: { type: "Object" }
36880
+ onclose: { type: "Object" },
36881
+ onClose: { type: "Object" }
36782
36882
  }, [], [], { mode: "open" }));
36783
36883
  //#endregion
36784
36884
  //#region src/wc/components/ChatMessage.wc.svelte
@@ -36840,7 +36940,10 @@ customElements.define("sui-chat-message", create_custom_element(ChatMessage_wc,
36840
36940
  classes: { type: "String" },
36841
36941
  onretry: { type: "Object" },
36842
36942
  onfeedback: { type: "Object" },
36843
- oncopy: { type: "Object" }
36943
+ oncopy: { type: "Object" },
36944
+ onRetry: { type: "Object" },
36945
+ onFeedback: { type: "Object" },
36946
+ onCopy: { type: "Object" }
36844
36947
  }, [], [], { mode: "open" }));
36845
36948
  //#endregion
36846
36949
  //#region src/wc/components/ChatMessageList.wc.svelte
@@ -36891,7 +36994,10 @@ customElements.define("sui-chat-message-list", create_custom_element(ChatMessage
36891
36994
  },
36892
36995
  classes: { type: "String" },
36893
36996
  onretry: { type: "Object" },
36894
- onfeedback: { type: "Object" }
36997
+ onfeedback: { type: "Object" },
36998
+ onScrollState: { type: "Object" },
36999
+ onRetry: { type: "Object" },
37000
+ onFeedback: { type: "Object" }
36895
37001
  }, [], [], { mode: "open" })), init_markdown();
36896
37002
  var root$5 = /* @__PURE__ */ from_html("<div></div>"), $$css$6 = {
36897
37003
  hash: "svelte-1d6q5h0",
@@ -37090,7 +37196,19 @@ customElements.define("sui-chat-composer", create_custom_element(ChatComposer_wc
37090
37196
  actionLabel: {
37091
37197
  attribute: "action-label",
37092
37198
  type: "String"
37093
- }
37199
+ },
37200
+ onRemoveRichImage: { type: "Object" },
37201
+ onRemoveRichFile: { type: "Object" },
37202
+ onRemoveRichVideo: { type: "Object" },
37203
+ onOpenRichImage: { type: "Object" },
37204
+ onOpenRichVideo: { type: "Object" },
37205
+ onOpenRichFile: { type: "Object" },
37206
+ onSubmit: { type: "Object" },
37207
+ onStop: { type: "Object" },
37208
+ onVoice: { type: "Object" },
37209
+ onAttach: { type: "Object" },
37210
+ onAttachClick: { type: "Object" },
37211
+ onAction: { type: "Object" }
37094
37212
  }, [], [], { mode: "open" }));
37095
37213
  //#endregion
37096
37214
  //#region src/wc/components/ChatSuggestions.wc.svelte
@@ -37130,7 +37248,8 @@ customElements.define("sui-chat-suggestions", create_custom_element(ChatSuggesti
37130
37248
  type: "String"
37131
37249
  },
37132
37250
  onselect: { type: "Object" },
37133
- icon: { type: "Object" }
37251
+ icon: { type: "Object" },
37252
+ onSelect: { type: "Object" }
37134
37253
  }, [], [], { mode: "open" }));
37135
37254
  //#endregion
37136
37255
  //#region src/lib/ChatToolStatus/ChatToolStatus.svelte
@@ -37710,7 +37829,10 @@ customElements.define("sui-chat-bubble", create_custom_element(ChatBubble_wc, {
37710
37829
  classes: { type: "String" },
37711
37830
  onopen: { type: "Object" },
37712
37831
  onclose: { type: "Object" },
37713
- ontoggle: { type: "Object" }
37832
+ ontoggle: { type: "Object" },
37833
+ onOpen: { type: "Object" },
37834
+ onClose: { type: "Object" },
37835
+ onToggle: { type: "Object" }
37714
37836
  }, [], [], { mode: "open" }));
37715
37837
  //#endregion
37716
37838
  //#region src/lib/ToolCallLog/ToolCallLog.svelte
@@ -37919,7 +38041,8 @@ customElements.define("sui-tool-call-log", create_custom_element(ToolCallLog_wc,
37919
38041
  attribute: "test-id",
37920
38042
  type: "String"
37921
38043
  },
37922
- classes: { type: "String" }
38044
+ classes: { type: "String" },
38045
+ onChipClick: { type: "Object" }
37923
38046
  }, [], [], { mode: "open" }));
37924
38047
  //#endregion
37925
38048
  //#region src/lib/TaskList/TaskList.svelte
@@ -38046,7 +38169,8 @@ customElements.define("sui-task-list", create_custom_element(TaskList_wc, {
38046
38169
  attribute: "test-id",
38047
38170
  type: "String"
38048
38171
  },
38049
- classes: { type: "String" }
38172
+ classes: { type: "String" },
38173
+ onRetry: { type: "Object" }
38050
38174
  }, [], [], { mode: "open" }));
38051
38175
  //#endregion
38052
38176
  //#region src/wc/components/ThinkingIndicator.wc.svelte
@@ -38119,7 +38243,9 @@ customElements.define("sui-thinking-indicator", create_custom_element(ThinkingIn
38119
38243
  collapseDelayMs: {
38120
38244
  attribute: "collapse-delay-ms",
38121
38245
  type: "Object"
38122
- }
38246
+ },
38247
+ onRowSelect: { type: "Object" },
38248
+ onSettled: { type: "Object" }
38123
38249
  }, [], [], { mode: "open" }));
38124
38250
  //#endregion
38125
38251
  //#region src/wc/components/AttachmentChipRow.wc.svelte
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/svelte-ui-components",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "A themeable Svelte 5 UI component library with CSS custom property driven styling",
5
5
  "keywords": [
6
6
  "svelte",