@bitrix24/b24ui-nuxt 2.1.2 → 2.1.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 (144) hide show
  1. package/cli/templates.mjs +2 -2
  2. package/dist/meta.d.mts +1321 -192
  3. package/dist/meta.mjs +1321 -192
  4. package/dist/module.json +1 -1
  5. package/dist/module.mjs +1 -1
  6. package/dist/runtime/components/Accordion.vue +9 -4
  7. package/dist/runtime/components/Advice.vue +9 -5
  8. package/dist/runtime/components/Alert.vue +9 -7
  9. package/dist/runtime/components/Avatar.vue +4 -2
  10. package/dist/runtime/components/AvatarGroup.vue +3 -3
  11. package/dist/runtime/components/Badge.vue +6 -1
  12. package/dist/runtime/components/Banner.vue +9 -8
  13. package/dist/runtime/components/Breadcrumb.vue +9 -4
  14. package/dist/runtime/components/Button.vue +12 -9
  15. package/dist/runtime/components/Calendar.vue +11 -5
  16. package/dist/runtime/components/Card.vue +4 -4
  17. package/dist/runtime/components/ChatMessage.vue +7 -5
  18. package/dist/runtime/components/ChatMessages.vue +4 -2
  19. package/dist/runtime/components/ChatPalette.vue +3 -3
  20. package/dist/runtime/components/ChatPrompt.vue +4 -3
  21. package/dist/runtime/components/ChatPromptSubmit.vue +1 -0
  22. package/dist/runtime/components/Checkbox.vue +9 -7
  23. package/dist/runtime/components/CheckboxGroup.vue +4 -2
  24. package/dist/runtime/components/Chip.vue +3 -0
  25. package/dist/runtime/components/Collapsible.vue +2 -2
  26. package/dist/runtime/components/ColorPicker.vue +7 -3
  27. package/dist/runtime/components/CommandPalette.vue +68 -23
  28. package/dist/runtime/components/ContextMenu.vue +1 -0
  29. package/dist/runtime/components/ContextMenuContent.vue +19 -6
  30. package/dist/runtime/components/Countdown.vue +8 -1
  31. package/dist/runtime/components/DashboardSearch.vue +1 -0
  32. package/dist/runtime/components/DashboardSearchButton.vue +2 -1
  33. package/dist/runtime/components/DescriptionList.vue +12 -4
  34. package/dist/runtime/components/DropdownMenu.vue +2 -1
  35. package/dist/runtime/components/DropdownMenuContent.vue +21 -7
  36. package/dist/runtime/components/Empty.vue +9 -8
  37. package/dist/runtime/components/Error.vue +5 -5
  38. package/dist/runtime/components/FileUpload.vue +15 -8
  39. package/dist/runtime/components/FormField.vue +11 -11
  40. package/dist/runtime/components/Input.vue +8 -3
  41. package/dist/runtime/components/InputDate.vue +9 -2
  42. package/dist/runtime/components/InputMenu.vue +50 -32
  43. package/dist/runtime/components/InputNumber.vue +5 -2
  44. package/dist/runtime/components/InputTags.vue +12 -3
  45. package/dist/runtime/components/InputTime.vue +8 -2
  46. package/dist/runtime/components/Kbd.vue +1 -1
  47. package/dist/runtime/components/Modal.vue +11 -8
  48. package/dist/runtime/components/Navbar.vue +1 -1
  49. package/dist/runtime/components/NavbarDivider.vue +1 -1
  50. package/dist/runtime/components/NavbarSection.vue +2 -1
  51. package/dist/runtime/components/NavbarSpacer.vue +1 -1
  52. package/dist/runtime/components/NavigationMenu.vue +43 -12
  53. package/dist/runtime/components/PageCard.vue +10 -9
  54. package/dist/runtime/components/PageLinks.vue +9 -7
  55. package/dist/runtime/components/Pagination.vue +8 -8
  56. package/dist/runtime/components/PinInput.vue +2 -0
  57. package/dist/runtime/components/Popover.vue +2 -2
  58. package/dist/runtime/components/Progress.vue +6 -6
  59. package/dist/runtime/components/RadioGroup.d.vue.ts +2 -2
  60. package/dist/runtime/components/RadioGroup.vue +10 -4
  61. package/dist/runtime/components/RadioGroup.vue.d.ts +2 -2
  62. package/dist/runtime/components/Range.vue +5 -4
  63. package/dist/runtime/components/Select.vue +25 -11
  64. package/dist/runtime/components/SelectMenu.vue +47 -25
  65. package/dist/runtime/components/Separator.vue +7 -7
  66. package/dist/runtime/components/Sidebar.vue +1 -1
  67. package/dist/runtime/components/SidebarBody.vue +1 -1
  68. package/dist/runtime/components/SidebarFooter.vue +1 -1
  69. package/dist/runtime/components/SidebarHeader.vue +1 -1
  70. package/dist/runtime/components/SidebarHeading.vue +1 -1
  71. package/dist/runtime/components/SidebarLayout.vue +18 -13
  72. package/dist/runtime/components/SidebarSection.vue +2 -1
  73. package/dist/runtime/components/SidebarSpacer.vue +1 -1
  74. package/dist/runtime/components/Skeleton.vue +1 -0
  75. package/dist/runtime/components/Slideover.vue +10 -7
  76. package/dist/runtime/components/Stepper.vue +12 -9
  77. package/dist/runtime/components/Switch.vue +10 -6
  78. package/dist/runtime/components/Table.d.vue.ts +2 -2
  79. package/dist/runtime/components/Table.vue +33 -15
  80. package/dist/runtime/components/Table.vue.d.ts +2 -2
  81. package/dist/runtime/components/TableWrapper.vue +1 -0
  82. package/dist/runtime/components/Tabs.d.vue.ts +3 -3
  83. package/dist/runtime/components/Tabs.vue +24 -15
  84. package/dist/runtime/components/Tabs.vue.d.ts +3 -3
  85. package/dist/runtime/components/Textarea.vue +8 -3
  86. package/dist/runtime/components/Timeline.vue +9 -6
  87. package/dist/runtime/components/Toast.vue +10 -6
  88. package/dist/runtime/components/Toaster.vue +2 -0
  89. package/dist/runtime/components/Tooltip.vue +4 -4
  90. package/dist/runtime/components/User.vue +13 -6
  91. package/dist/runtime/components/color-mode/ColorModeButton.d.vue.ts +2 -9
  92. package/dist/runtime/components/color-mode/ColorModeButton.vue +8 -13
  93. package/dist/runtime/components/color-mode/ColorModeButton.vue.d.ts +2 -9
  94. package/dist/runtime/components/content/ContentSearch.vue +59 -68
  95. package/dist/runtime/components/content/ContentSearchButton.vue +2 -1
  96. package/dist/runtime/components/content/ContentSurround.vue +6 -4
  97. package/dist/runtime/components/content/ContentToc.vue +13 -10
  98. package/dist/runtime/components/prose/A.vue +1 -1
  99. package/dist/runtime/components/prose/Blockquote.vue +1 -1
  100. package/dist/runtime/components/prose/Callout.vue +4 -1
  101. package/dist/runtime/components/prose/Card.vue +5 -3
  102. package/dist/runtime/components/prose/Code.vue +1 -0
  103. package/dist/runtime/components/prose/CodeCollapse.vue +3 -2
  104. package/dist/runtime/components/prose/CodeGroup.vue +6 -6
  105. package/dist/runtime/components/prose/CodePreview.vue +3 -3
  106. package/dist/runtime/components/prose/Collapsible.vue +3 -2
  107. package/dist/runtime/components/prose/Em.vue +1 -1
  108. package/dist/runtime/components/prose/Field.vue +7 -7
  109. package/dist/runtime/components/prose/H1.vue +1 -0
  110. package/dist/runtime/components/prose/H2.vue +4 -2
  111. package/dist/runtime/components/prose/H3.vue +4 -2
  112. package/dist/runtime/components/prose/H4.vue +4 -2
  113. package/dist/runtime/components/prose/H5.vue +1 -0
  114. package/dist/runtime/components/prose/H6.vue +1 -0
  115. package/dist/runtime/components/prose/Hr.vue +1 -1
  116. package/dist/runtime/components/prose/Img.vue +4 -0
  117. package/dist/runtime/components/prose/Li.vue +1 -1
  118. package/dist/runtime/components/prose/Ol.vue +1 -1
  119. package/dist/runtime/components/prose/P.vue +1 -1
  120. package/dist/runtime/components/prose/Pre.vue +6 -5
  121. package/dist/runtime/components/prose/Strong.vue +1 -1
  122. package/dist/runtime/components/prose/Table.d.vue.ts +0 -3
  123. package/dist/runtime/components/prose/Table.vue +2 -1
  124. package/dist/runtime/components/prose/Table.vue.d.ts +0 -3
  125. package/dist/runtime/components/prose/Tbody.vue +1 -1
  126. package/dist/runtime/components/prose/Td.vue +1 -1
  127. package/dist/runtime/components/prose/Th.vue +1 -1
  128. package/dist/runtime/components/prose/Thead.vue +1 -1
  129. package/dist/runtime/components/prose/Tr.vue +1 -1
  130. package/dist/runtime/components/prose/Ul.vue +1 -1
  131. package/dist/runtime/composables/useContentSearch.d.ts +5 -0
  132. package/dist/runtime/composables/useContentSearch.js +30 -1
  133. package/dist/runtime/inertia/stubs.js +1 -1
  134. package/dist/runtime/types/index.d.ts +3 -0
  135. package/dist/runtime/types/index.js +3 -0
  136. package/dist/runtime/utils/virtualizer.d.ts +6 -0
  137. package/dist/runtime/utils/virtualizer.js +32 -0
  138. package/dist/shared/{b24ui-nuxt.B9uYyQGR.mjs → b24ui-nuxt.Bs0V9FLV.mjs} +25 -19
  139. package/dist/unplugin.mjs +1 -1
  140. package/dist/vite.mjs +1 -1
  141. package/package.json +11 -11
  142. package/dist/runtime/vue/components/color-mode/ColorModeButton.d.vue.ts +0 -12
  143. package/dist/runtime/vue/components/color-mode/ColorModeButton.vue +0 -83
  144. package/dist/runtime/vue/components/color-mode/ColorModeButton.vue.d.ts +0 -12
package/dist/meta.mjs CHANGED
@@ -75,7 +75,7 @@ const B24UIMeta = {
75
75
  ],
76
76
  "events": [],
77
77
  "exposed": [],
78
- "hash": "KMgEF4F0_7KBPDJGY-u0ktVttPL4lFhUmDyNGs7Ws1I"
78
+ "hash": "4XUHX5cvxUyCWDij0Tb39E8SIo0VSVnGm_6qBceYp8I"
79
79
  }
80
80
  },
81
81
  "ProseAccordion": {
@@ -361,7 +361,7 @@ const B24UIMeta = {
361
361
  ],
362
362
  "events": [],
363
363
  "exposed": [],
364
- "hash": "zz-neS1zTRVZzhp214B-f5drBna_8f5tRc1FK_m-KZE"
364
+ "hash": "iMd4Kl0THguu3gkUZH2LOMXl8C48xVAiDuSdiDUNdtc"
365
365
  }
366
366
  },
367
367
  "ProseCallout": {
@@ -699,7 +699,7 @@ const B24UIMeta = {
699
699
  ],
700
700
  "events": [],
701
701
  "exposed": [],
702
- "hash": "AduWQ3nb1hxoZJohRUybusVQLdPsmYxhyS91n-Mvro0"
702
+ "hash": "l9WiVYgu-nt08Tn-XVuDDwdjqnh9x3m3xHZhsdNdwak"
703
703
  }
704
704
  },
705
705
  "ProseCard": {
@@ -1058,7 +1058,7 @@ const B24UIMeta = {
1058
1058
  ],
1059
1059
  "events": [],
1060
1060
  "exposed": [],
1061
- "hash": "6Y6LSWWdofbPdGc4OLo7RB0a3vvt8ijpdn0d2sgPjuk"
1061
+ "hash": "6CYBxAkRk09VsXLlDhxAglVk5oxT7CzznY3AJiwg-qI"
1062
1062
  }
1063
1063
  },
1064
1064
  "ProseCardGroup": {
@@ -1162,7 +1162,7 @@ const B24UIMeta = {
1162
1162
  ],
1163
1163
  "events": [],
1164
1164
  "exposed": [],
1165
- "hash": "4Xl3IYOq9wlykny6sanCCN_GCGkXbIR9pxaDmDAO4Vw"
1165
+ "hash": "nfushHvYBOvI-GygmxrZTDYUvQw3u79itb4OyphDcCU"
1166
1166
  }
1167
1167
  },
1168
1168
  "ProseCodeCollapse": {
@@ -1309,9 +1309,17 @@ const B24UIMeta = {
1309
1309
  "description": ""
1310
1310
  }
1311
1311
  ],
1312
- "events": [],
1312
+ "events": [
1313
+ {
1314
+ "name": "update:open",
1315
+ "description": "",
1316
+ "tags": [],
1317
+ "type": "[value: boolean]",
1318
+ "signature": '(event: "update:open", value: boolean): void'
1319
+ }
1320
+ ],
1313
1321
  "exposed": [],
1314
- "hash": "a-0JaRgUMjbLBKmi1XvWQEY9QmCanhz83jq4n5U9g7g"
1322
+ "hash": "-QGI9N32-6IOclfxBKlKjvi0Oc7HIYDd6BGIVksQhrU"
1315
1323
  }
1316
1324
  },
1317
1325
  "ProseCodeGroup": {
@@ -1406,9 +1414,17 @@ const B24UIMeta = {
1406
1414
  "description": ""
1407
1415
  }
1408
1416
  ],
1409
- "events": [],
1417
+ "events": [
1418
+ {
1419
+ "name": "update:modelValue",
1420
+ "description": "",
1421
+ "tags": [],
1422
+ "type": "[value: string | undefined]",
1423
+ "signature": '(event: "update:modelValue", value: string | undefined): void'
1424
+ }
1425
+ ],
1410
1426
  "exposed": [],
1411
- "hash": "q22T7jpoCK-3uRUO4iYQ-z458zFGYfz83Y00Tsvw_KE"
1427
+ "hash": "hM2-KyeFLrV-ef0AkIfca1N8gomf4jhTENsF5fZlF8o"
1412
1428
  }
1413
1429
  },
1414
1430
  "ProseCodeIcon": {
@@ -1529,7 +1545,7 @@ const B24UIMeta = {
1529
1545
  ],
1530
1546
  "events": [],
1531
1547
  "exposed": [],
1532
- "hash": "6P4U51K9MgjOp3tbQU6OcoKz6unsJPvR1S7brm7tNmA"
1548
+ "hash": "cERN-QPK_FlOgrjb9o4cfA6uRJFhbOeGq8Poq3cUY20"
1533
1549
  }
1534
1550
  },
1535
1551
  "ProseCollapsible": {
@@ -1728,7 +1744,7 @@ const B24UIMeta = {
1728
1744
  ],
1729
1745
  "events": [],
1730
1746
  "exposed": [],
1731
- "hash": "-vBsyhttay0UTV7QxXpYjRYO25CL72VT4DKzG1tkjTI"
1747
+ "hash": "2NSQwxmsUgBZ3reiFPJBFF9LWsk0O0k_zKdH8_uG8GI"
1732
1748
  }
1733
1749
  },
1734
1750
  "ProseEm": {
@@ -1771,7 +1787,7 @@ const B24UIMeta = {
1771
1787
  ],
1772
1788
  "events": [],
1773
1789
  "exposed": [],
1774
- "hash": "qmSrvIS42fU9sCUzm3RzcPcqbhrxq7d__QOs23-u_GU"
1790
+ "hash": "VFI8gmxFPXn7xXS1oRlpaJacCnykUZr13i4jyjgEjWc"
1775
1791
  }
1776
1792
  },
1777
1793
  "ProseField": {
@@ -1893,7 +1909,7 @@ const B24UIMeta = {
1893
1909
  ],
1894
1910
  "events": [],
1895
1911
  "exposed": [],
1896
- "hash": "4Ps4LpCnrAbjA6yhysg-e073J4SsvBWDHKpl1705wfQ"
1912
+ "hash": "-Ti244Zram0CLOIulDbmpsp9HE7uqWlT-EJV5uWNU6E"
1897
1913
  }
1898
1914
  },
1899
1915
  "ProseFieldGroup": {
@@ -2019,7 +2035,7 @@ const B24UIMeta = {
2019
2035
  ],
2020
2036
  "events": [],
2021
2037
  "exposed": [],
2022
- "hash": "EwovLCIa61dnd9X1RoSQx_xHxEHARSU03qQ6uO0p6d0"
2038
+ "hash": "GgcrMVnWIni1G6WQGTzU3tHesLpfyGDcl_0ZgPCbBYA"
2023
2039
  }
2024
2040
  },
2025
2041
  "ProseH2": {
@@ -2104,7 +2120,7 @@ const B24UIMeta = {
2104
2120
  ],
2105
2121
  "events": [],
2106
2122
  "exposed": [],
2107
- "hash": "OJTmVXAt4-ZRG45ZFPJK5-dimR4VeXGIP1ztDjBz46Y"
2123
+ "hash": "qWLWM8BQHdYjby3n9uAELVeHP7j44sU7B7LYCVRQki4"
2108
2124
  }
2109
2125
  },
2110
2126
  "ProseH3": {
@@ -2189,7 +2205,7 @@ const B24UIMeta = {
2189
2205
  ],
2190
2206
  "events": [],
2191
2207
  "exposed": [],
2192
- "hash": "AWYTStZPbdOFPt_kgYnWzNVZvTN_UrN1AawErm6OLuc"
2208
+ "hash": "q3y99bSxkcQ8HljVOl_O_RbPkrD4Rm9C6qedqSutl24"
2193
2209
  }
2194
2210
  },
2195
2211
  "ProseH4": {
@@ -2274,7 +2290,7 @@ const B24UIMeta = {
2274
2290
  ],
2275
2291
  "events": [],
2276
2292
  "exposed": [],
2277
- "hash": "Khi_yQ8-1Lhm4sNh-122FG4UUnFd4F6GhJlQWv8hI90"
2293
+ "hash": "J8XcESVQGHaVcy3jhEcDO4xgEQ_5yvemY8T2jT_Oef0"
2278
2294
  }
2279
2295
  },
2280
2296
  "ProseH5": {
@@ -2359,7 +2375,7 @@ const B24UIMeta = {
2359
2375
  ],
2360
2376
  "events": [],
2361
2377
  "exposed": [],
2362
- "hash": "BDwfDNog14vmV219-ahI-vdsW6ZX4qHcp8u7slVMI7c"
2378
+ "hash": "0WBHkmwEObZR4cfGeLj4MymzNw69bldM8wE-C8Ijk08"
2363
2379
  }
2364
2380
  },
2365
2381
  "ProseH6": {
@@ -2444,7 +2460,7 @@ const B24UIMeta = {
2444
2460
  ],
2445
2461
  "events": [],
2446
2462
  "exposed": [],
2447
- "hash": "km9k3EYn17UGl4NUb_oQH_Ytx6tYH92-dN_O9v-BCJ4"
2463
+ "hash": "y2ar2aYl1yNyhPQGIGpqjy9yprWsTaPhmPjKeoC2yiM"
2448
2464
  }
2449
2465
  },
2450
2466
  "ProseHr": {
@@ -2481,7 +2497,7 @@ const B24UIMeta = {
2481
2497
  "slots": [],
2482
2498
  "events": [],
2483
2499
  "exposed": [],
2484
- "hash": "ogLKQZ3sQ_ppuNxkw_BcjQErY8eRk8PAuVakbxZVf_w"
2500
+ "hash": "pMb4HfcJk6qdw27bAMYOEMR_Lmuo6UsqvZUSNazqyac"
2485
2501
  }
2486
2502
  },
2487
2503
  "ProseImg": {
@@ -2593,7 +2609,7 @@ const B24UIMeta = {
2593
2609
  "slots": [],
2594
2610
  "events": [],
2595
2611
  "exposed": [],
2596
- "hash": "h0XjusQ5vZ5qMkDnZRTaGp2uBBaqWE9o-0FcEakTHaw"
2612
+ "hash": "6h7sObOsZsJQDjCZKVnIPGWHZfOc_5OHUSJTMBBIV_o"
2597
2613
  }
2598
2614
  },
2599
2615
  "ProseKbd": {
@@ -2666,7 +2682,7 @@ const B24UIMeta = {
2666
2682
  ],
2667
2683
  "events": [],
2668
2684
  "exposed": [],
2669
- "hash": "ABGSs02RK19_G040XgcmbrHZAOuH120jjTYTG80CZNg"
2685
+ "hash": "XKhdX4Si_FYk3vZDdcpBghBiw3iopMcNYLJX_85QbMw"
2670
2686
  }
2671
2687
  },
2672
2688
  "ProseOl": {
@@ -2709,7 +2725,7 @@ const B24UIMeta = {
2709
2725
  ],
2710
2726
  "events": [],
2711
2727
  "exposed": [],
2712
- "hash": "YRjMpv48iOlL4m_lERKZMkbuGrqIeXTNMammNUpSkLY"
2728
+ "hash": "eyuZrnwHpqZDjKw6WhtFOOLM0OULt1HOLSbEBe54xyA"
2713
2729
  }
2714
2730
  },
2715
2731
  "ProseP": {
@@ -2801,7 +2817,7 @@ const B24UIMeta = {
2801
2817
  ],
2802
2818
  "events": [],
2803
2819
  "exposed": [],
2804
- "hash": "wboYFbTwCXBEjmEogl9KeTaanWotrK2-iOZn8rsNDHI"
2820
+ "hash": "avisM86sPxmumsSK3t6fTUDdWnfCyZs2H5q5SO_FQxw"
2805
2821
  }
2806
2822
  },
2807
2823
  "ProsePre": {
@@ -2967,7 +2983,7 @@ const B24UIMeta = {
2967
2983
  ],
2968
2984
  "events": [],
2969
2985
  "exposed": [],
2970
- "hash": "qDY7JJpO8-rz9jJSZFC-QVWkcKfoCg23gltdIk7LzMs"
2986
+ "hash": "RqzFKJKbeO8uXKOBWOc_GXDU80qklCdkFk7cWV4Mt2M"
2971
2987
  }
2972
2988
  },
2973
2989
  "ProseScript": {
@@ -3090,7 +3106,7 @@ const B24UIMeta = {
3090
3106
  ],
3091
3107
  "events": [],
3092
3108
  "exposed": [],
3093
- "hash": "Y7gNE7nirliPRY3lRToj2dWpaOfkSxvhhU04GCkP_50"
3109
+ "hash": "wbS03zeb1JOLAU3oFoFsB4Oh7y5en4Q2m8MAGUTlOYg"
3094
3110
  }
3095
3111
  },
3096
3112
  "ProseTable": {
@@ -3240,7 +3256,7 @@ const B24UIMeta = {
3240
3256
  ],
3241
3257
  "events": [],
3242
3258
  "exposed": [],
3243
- "hash": "ALqgqP1WgLtj626FmifxyhbYmTm9sUAllsBM25L3Qxo"
3259
+ "hash": "f-DOggLidNTiOTv6cvxmuJAUVQMlRIE1tVap8YMPFA4"
3244
3260
  }
3245
3261
  },
3246
3262
  "ProseTabs": {
@@ -3473,7 +3489,15 @@ const B24UIMeta = {
3473
3489
  "description": ""
3474
3490
  }
3475
3491
  ],
3476
- "events": [],
3492
+ "events": [
3493
+ {
3494
+ "name": "update:modelValue",
3495
+ "description": "",
3496
+ "tags": [],
3497
+ "type": "[value: string | undefined]",
3498
+ "signature": '(event: "update:modelValue", value: string | undefined): void'
3499
+ }
3500
+ ],
3477
3501
  "exposed": [],
3478
3502
  "hash": "KgIgx6BTDa2jRW-FPN4_kAd4GwE4uHSfwrVdSWSC8Rs"
3479
3503
  }
@@ -3570,7 +3594,7 @@ const B24UIMeta = {
3570
3594
  ],
3571
3595
  "events": [],
3572
3596
  "exposed": [],
3573
- "hash": "bUxoRjIJeMl3JrXysvX6lhOG1abAVoWFaUz8ByO-jyo"
3597
+ "hash": "kN0AV9L7xyWa0z-wfkQnnWr2eFk_qDkKd5NpUIb6oZ8"
3574
3598
  }
3575
3599
  },
3576
3600
  "ProseTd": {
@@ -3613,7 +3637,7 @@ const B24UIMeta = {
3613
3637
  ],
3614
3638
  "events": [],
3615
3639
  "exposed": [],
3616
- "hash": "BpuJsA3eJyhnukRsotBDnFPSexcGvnRX-3siAey8cHs"
3640
+ "hash": "DB30RmvbMlBfbUWa9ScYYRzcb_VtfPknlwDVXQwo35U"
3617
3641
  }
3618
3642
  },
3619
3643
  "ProseTh": {
@@ -3656,7 +3680,7 @@ const B24UIMeta = {
3656
3680
  ],
3657
3681
  "events": [],
3658
3682
  "exposed": [],
3659
- "hash": "uDRhNZaJ6H4KpdOkAIht5FiWVj-HaYZpkjE4dddm5OQ"
3683
+ "hash": "7qe1oHRPf8vDvnpwnlcFuO98DlNN0BmaEFE0rpU5KyQ"
3660
3684
  }
3661
3685
  },
3662
3686
  "ProseThead": {
@@ -3699,7 +3723,7 @@ const B24UIMeta = {
3699
3723
  ],
3700
3724
  "events": [],
3701
3725
  "exposed": [],
3702
- "hash": "faChM4rvPs_pjHUqN_7fAvlWa2c1bbeN6KRcgac73rg"
3726
+ "hash": "cGl-U_HpoCXMUZZ5rMGsy4LtkOsMksJw8J24FHT5ciQ"
3703
3727
  }
3704
3728
  },
3705
3729
  "ProseTr": {
@@ -3742,7 +3766,7 @@ const B24UIMeta = {
3742
3766
  ],
3743
3767
  "events": [],
3744
3768
  "exposed": [],
3745
- "hash": "ug4Hn4Qsa9yQwu_u5GrRt2jh1r-xPZCmunAt_7wbZwk"
3769
+ "hash": "OV-qTuxhiwPrAXdViQUUivAwrq-GrH-CEDZG27N0VgY"
3746
3770
  }
3747
3771
  },
3748
3772
  "ProseUl": {
@@ -3785,7 +3809,7 @@ const B24UIMeta = {
3785
3809
  ],
3786
3810
  "events": [],
3787
3811
  "exposed": [],
3788
- "hash": "MZBtz_Ic0JMAFfssmSF2n41QztvO_QXI4QGyKg6ZSBs"
3812
+ "hash": "tsE2kqSTW8C1LBzAZwpWistaBr9Rpm3yTjfHDbbGRRA"
3789
3813
  }
3790
3814
  },
3791
3815
  "ProseCaution": {
@@ -5761,9 +5785,17 @@ const B24UIMeta = {
5761
5785
  "description": ""
5762
5786
  }
5763
5787
  ],
5764
- "events": [],
5788
+ "events": [
5789
+ {
5790
+ "name": "update:searchTerm",
5791
+ "description": "",
5792
+ "tags": [],
5793
+ "type": "[value: string]",
5794
+ "signature": '(evt: "update:searchTerm", value: string): void'
5795
+ }
5796
+ ],
5765
5797
  "exposed": [],
5766
- "hash": "R8Xr_qtnVLy6tESXBWbc25EjGMEzuK2qNRjezUkLJyw"
5798
+ "hash": "ze_Sb7IiPobWeAupuBZtQ0JZ7mgI93qPOR8iDnNqyo0"
5767
5799
  }
5768
5800
  },
5769
5801
  "B24ContentSearchButton": {
@@ -8827,7 +8859,7 @@ const B24UIMeta = {
8827
8859
  ],
8828
8860
  "events": [],
8829
8861
  "exposed": [],
8830
- "hash": "Gz_4Eh9xQUTZSxAd2fgMb3g9e2r8PufivFnyZP2MiRw"
8862
+ "hash": "hpAByieTWtO26zrwTpQODSr3eaPM6hpdeWp2JH_Olzs"
8831
8863
  }
8832
8864
  },
8833
8865
  "B24ContentSurround": {
@@ -9161,7 +9193,7 @@ const B24UIMeta = {
9161
9193
  ],
9162
9194
  "events": [],
9163
9195
  "exposed": [],
9164
- "hash": "8Qh1DFLDSCRk49rq1WJj2hikm4ULWm0r2aar7HAa_cY"
9196
+ "hash": "S_n_eBshbB2j-443yDes_Al208ZDtIqVF4PtEDGeNKs"
9165
9197
  }
9166
9198
  },
9167
9199
  "B24ContentToc": {
@@ -9471,9 +9503,24 @@ const B24UIMeta = {
9471
9503
  "description": ""
9472
9504
  }
9473
9505
  ],
9474
- "events": [],
9506
+ "events": [
9507
+ {
9508
+ "name": "update:open",
9509
+ "description": "",
9510
+ "tags": [],
9511
+ "type": "[value: boolean]",
9512
+ "signature": '(evt: "update:open", value: boolean): void'
9513
+ },
9514
+ {
9515
+ "name": "move",
9516
+ "description": "",
9517
+ "tags": [],
9518
+ "type": "[id: string]",
9519
+ "signature": '(evt: "move", id: string): void'
9520
+ }
9521
+ ],
9475
9522
  "exposed": [],
9476
- "hash": "ByCubZy-vQ4VED5a6WIAsQVKVn8Ejx0x8y78Bx1_21I"
9523
+ "hash": "MYqpxGnh2o03ZBwcgd38dA4_pSOYXTAVzLpAr-X7nlE"
9477
9524
  }
9478
9525
  },
9479
9526
  "B24ColorModeAvatar": {
@@ -12039,16 +12086,10 @@ const B24UIMeta = {
12039
12086
  }
12040
12087
  }
12041
12088
  ],
12042
- "slots": [
12043
- {
12044
- "name": "fallback",
12045
- "type": "{} | undefined",
12046
- "description": ""
12047
- }
12048
- ],
12089
+ "slots": [],
12049
12090
  "events": [],
12050
12091
  "exposed": [],
12051
- "hash": "WNaDY6B1xJ7xA0ohtfxzS7iTUGYt8zzKKg3GG9N-lVk"
12092
+ "hash": "gNcve841eye260cg6qWtLrbJEhVCAAZEqbvjcy-hw1U"
12052
12093
  }
12053
12094
  },
12054
12095
  "B24ColorModeImage": {
@@ -15827,9 +15868,17 @@ const B24UIMeta = {
15827
15868
  "description": ""
15828
15869
  }
15829
15870
  ],
15830
- "events": [],
15871
+ "events": [
15872
+ {
15873
+ "name": "update:modelValue",
15874
+ "description": "",
15875
+ "tags": [],
15876
+ "type": "[value: string | string[] | undefined]",
15877
+ "signature": '(evt: "update:modelValue", value: string | string[] | undefined): void'
15878
+ }
15879
+ ],
15831
15880
  "exposed": [],
15832
- "hash": "ZP-VH5DcCJEEvlGZGqtu1xH3KeUbQHGMEn8jrBGwgak"
15881
+ "hash": "2N6eiDCIw5FGk9nF0mdSnP06dVb6JzU79umcffOxnyU"
15833
15882
  }
15834
15883
  },
15835
15884
  "B24Advice": {
@@ -16480,7 +16529,7 @@ const B24UIMeta = {
16480
16529
  ],
16481
16530
  "events": [],
16482
16531
  "exposed": [],
16483
- "hash": "UaC6uVq3WnnPyNs2AjQaxxMTEAFhwvFbe7WUPz0ASWU"
16532
+ "hash": "xj3hr_3S5mREYi3AElAO4ywysavzRWoqQIf_8Mj3PMk"
16484
16533
  }
16485
16534
  },
16486
16535
  "B24Alert": {
@@ -18782,9 +18831,17 @@ const B24UIMeta = {
18782
18831
  "description": ""
18783
18832
  }
18784
18833
  ],
18785
- "events": [],
18834
+ "events": [
18835
+ {
18836
+ "name": "update:open",
18837
+ "description": "",
18838
+ "tags": [],
18839
+ "type": "[value: boolean]",
18840
+ "signature": '(event: "update:open", value: boolean): void'
18841
+ }
18842
+ ],
18786
18843
  "exposed": [],
18787
- "hash": "Qi6lH-kHj2xZLDMngGNxDF2EjZFn6M6NfuvqANyna1k"
18844
+ "hash": "eU-NDdHfQqH1Ejy-AbO96D3Rm5hPrWUilF1NhRkpqS4"
18788
18845
  }
18789
18846
  },
18790
18847
  "B24App": {
@@ -21043,7 +21100,7 @@ const B24UIMeta = {
21043
21100
  ],
21044
21101
  "events": [],
21045
21102
  "exposed": [],
21046
- "hash": "b2x1CdsRWOWzFiZVuTuQjXKsoO-qoA3v8IVIYzZ4T2w"
21103
+ "hash": "u4UFdM6KfprD7bkwArxppUwvVSKu3rfDQ1eibsg7TVA"
21047
21104
  }
21048
21105
  },
21049
21106
  "B24AvatarGroup": {
@@ -21145,7 +21202,7 @@ const B24UIMeta = {
21145
21202
  ],
21146
21203
  "events": [],
21147
21204
  "exposed": [],
21148
- "hash": "HomNtDDkcqahCCeEdG6NhmQ2QIaFMmtE2SIGCTc-WM4"
21205
+ "hash": "CgBVicSyXN6PXAcMWiBEjOkpYyavNgx3rq-lHflweGQ"
21149
21206
  }
21150
21207
  },
21151
21208
  "B24Badge": {
@@ -22001,7 +22058,7 @@ const B24UIMeta = {
22001
22058
  ],
22002
22059
  "events": [],
22003
22060
  "exposed": [],
22004
- "hash": "18ti1xYYMJ5C7BNWUparokHcYC94zGuz425oYR1EQJU"
22061
+ "hash": "v2ObdHdHY5P2XUwz2xw1Dkrs875PFV8vMammhbi7zUQ"
22005
22062
  }
22006
22063
  },
22007
22064
  "B24Banner": {
@@ -23928,9 +23985,17 @@ const B24UIMeta = {
23928
23985
  "description": ""
23929
23986
  }
23930
23987
  ],
23931
- "events": [],
23988
+ "events": [
23989
+ {
23990
+ "name": "close",
23991
+ "description": "",
23992
+ "tags": [],
23993
+ "type": "[]",
23994
+ "signature": '(event: "close"): void'
23995
+ }
23996
+ ],
23932
23997
  "exposed": [],
23933
- "hash": "Nm4uuiJlrqO0B2uOnR5HR4p7Qeqc-eh-c6EDTnDqaBs"
23998
+ "hash": "5jxiNs5mco-gowH7kDBiSyhntFksC8KhmXxSh59alxE"
23934
23999
  }
23935
24000
  },
23936
24001
  "B24Breadcrumb": {
@@ -25289,7 +25354,7 @@ const B24UIMeta = {
25289
25354
  ],
25290
25355
  "events": [],
25291
25356
  "exposed": [],
25292
- "hash": "7IYinP2dEVgwSjd78WbqRnNTciZ6qyOFnYfYNMnXsKM"
25357
+ "hash": "FPocLfRG6AQ517-0q0ULw5IJXAkwXDGNZ3rCV6fc_UU"
25293
25358
  }
25294
25359
  },
25295
25360
  "B24Button": {
@@ -27312,7 +27377,7 @@ const B24UIMeta = {
27312
27377
  ],
27313
27378
  "events": [],
27314
27379
  "exposed": [],
27315
- "hash": "HU7VfTrTDrze6FPy9ETwqTv1LeSB51s_QCG2p_wQncw"
27380
+ "hash": "7C4N77t_YoNrJYDqn3Qd7rqiOqsuCbJDjcEhPqexIY8"
27316
27381
  }
27317
27382
  },
27318
27383
  "B24Calendar": {
@@ -39328,9 +39393,38 @@ const B24UIMeta = {
39328
39393
  "description": ""
39329
39394
  }
39330
39395
  ],
39331
- "events": [],
39396
+ "events": [
39397
+ {
39398
+ "name": "update:modelValue",
39399
+ "description": "",
39400
+ "tags": [],
39401
+ "type": "[date: DateValue | DateRange | DateValue[] | null | undefined]",
39402
+ "signature": '(evt: "update:modelValue", date: DateValue | DateRange | DateValue[] | null | undefined): void'
39403
+ },
39404
+ {
39405
+ "name": "update:placeholder",
39406
+ "description": "",
39407
+ "tags": [],
39408
+ "type": "[date: DateValue] & [date: DateValue]",
39409
+ "signature": '(evt: "update:placeholder", ...args: [date: DateValue] & [date: DateValue]): void'
39410
+ },
39411
+ {
39412
+ "name": "update:validModelValue",
39413
+ "description": "",
39414
+ "tags": [],
39415
+ "type": "[date: DateRange]",
39416
+ "signature": '(evt: "update:validModelValue", date: DateRange): void'
39417
+ },
39418
+ {
39419
+ "name": "update:startValue",
39420
+ "description": "",
39421
+ "tags": [],
39422
+ "type": "[date: DateValue | undefined]",
39423
+ "signature": '(evt: "update:startValue", date: DateValue | undefined): void'
39424
+ }
39425
+ ],
39332
39426
  "exposed": [],
39333
- "hash": "3AXpCfw-MlhbPCltoq0RG4ZGD4k9Gg7tMDftvmdVrwI"
39427
+ "hash": "EkxOb2ejFnbVVTCaEC-Svms8XqDnWslmInxnFDdxK3E"
39334
39428
  }
39335
39429
  },
39336
39430
  "B24Card": {
@@ -39443,7 +39537,7 @@ const B24UIMeta = {
39443
39537
  ],
39444
39538
  "events": [],
39445
39539
  "exposed": [],
39446
- "hash": "45ajYLu2KSkH3GDp7MsG023M7tf00TkTRXwZ1Y7uNzM"
39540
+ "hash": "KEz3qLQ9rNvd_5ik0C_6tqjvyr6LnhfW4-cWVt5Wa_Y"
39447
39541
  }
39448
39542
  },
39449
39543
  "B24ChatMessage": {
@@ -42689,7 +42783,7 @@ const B24UIMeta = {
42689
42783
  ],
42690
42784
  "events": [],
42691
42785
  "exposed": [],
42692
- "hash": "l3SaXeaDPMJqwlH0XC_BbFDHhZYAojIMY5jMMpBujRQ"
42786
+ "hash": "QdqAv2TZL3D-SKhmx4apE3gy8ExEMu29DPNgcEYERqQ"
42693
42787
  }
42694
42788
  },
42695
42789
  "B24ChatMessages": {
@@ -42971,7 +43065,7 @@ const B24UIMeta = {
42971
43065
  ],
42972
43066
  "events": [],
42973
43067
  "exposed": [],
42974
- "hash": "xNydMbnaOdPuxXrSNdhdHJ748ZsNHCDZNF79kr48bso"
43068
+ "hash": "NaMrRtiW1rpm-yl25bQZzJxf83OJrQxjCz8RBfn8lQw"
42975
43069
  }
42976
43070
  },
42977
43071
  "B24ChatPalette": {
@@ -43032,7 +43126,7 @@ const B24UIMeta = {
43032
43126
  ],
43033
43127
  "events": [],
43034
43128
  "exposed": [],
43035
- "hash": "wXd3kU9_6VPZZW7p3-_hDlT9Diu7ue_leaoFqmNxlD0"
43129
+ "hash": "VWIASCmqE02mjmfgusMts463OkGbBypN6LGJ8iAYwlI"
43036
43130
  }
43037
43131
  },
43038
43132
  "B24ChatPrompt": {
@@ -44005,9 +44099,31 @@ const B24UIMeta = {
44005
44099
  "description": ""
44006
44100
  }
44007
44101
  ],
44008
- "events": [],
44102
+ "events": [
44103
+ {
44104
+ "name": "close",
44105
+ "description": "",
44106
+ "tags": [],
44107
+ "type": "[event: Event]",
44108
+ "signature": '(event: "close", event: Event): void'
44109
+ },
44110
+ {
44111
+ "name": "submit",
44112
+ "description": "",
44113
+ "tags": [],
44114
+ "type": "[event: Event]",
44115
+ "signature": '(event: "submit", event: Event): void'
44116
+ },
44117
+ {
44118
+ "name": "update:modelValue",
44119
+ "description": "",
44120
+ "tags": [],
44121
+ "type": "[value: string]",
44122
+ "signature": '(event: "update:modelValue", value: string): void'
44123
+ }
44124
+ ],
44009
44125
  "exposed": [],
44010
- "hash": "z83l5ROiPIXm2FO5c_Eg5xgVbRbdRM_y3RegixK70ao"
44126
+ "hash": "dkLhzxCDVrbMfbS_W2c7b5zeDS4hp77PuYrDqO-pmp0"
44011
44127
  }
44012
44128
  },
44013
44129
  "B24ChatPromptSubmit": {
@@ -46410,9 +46526,24 @@ const B24UIMeta = {
46410
46526
  "description": ""
46411
46527
  }
46412
46528
  ],
46413
- "events": [],
46529
+ "events": [
46530
+ {
46531
+ "name": "stop",
46532
+ "description": "",
46533
+ "tags": [],
46534
+ "type": "[]",
46535
+ "signature": '(event: "stop"): void'
46536
+ },
46537
+ {
46538
+ "name": "reload",
46539
+ "description": "",
46540
+ "tags": [],
46541
+ "type": "[]",
46542
+ "signature": '(event: "reload"): void'
46543
+ }
46544
+ ],
46414
46545
  "exposed": [],
46415
- "hash": "D9Mxgqls82CcFxHgCdKXvaTfUjPHECDWGcd48TmJD6g"
46546
+ "hash": "CgRgy-XrTJ4xGv7mQ1Hg-yaa1lrkUDcDZDbxEfPc7Nw"
46416
46547
  }
46417
46548
  },
46418
46549
  "B24Checkbox": {
@@ -46851,9 +46982,24 @@ const B24UIMeta = {
46851
46982
  "description": ""
46852
46983
  }
46853
46984
  ],
46854
- "events": [],
46985
+ "events": [
46986
+ {
46987
+ "name": "change",
46988
+ "description": "",
46989
+ "tags": [],
46990
+ "type": "[event: Event]",
46991
+ "signature": '(event: "change", event: Event): void'
46992
+ },
46993
+ {
46994
+ "name": "update:modelValue",
46995
+ "description": "",
46996
+ "tags": [],
46997
+ "type": '[value: boolean | "indeterminate"]',
46998
+ "signature": '(event: "update:modelValue", value: boolean | "indeterminate"): void'
46999
+ }
47000
+ ],
46855
47001
  "exposed": [],
46856
- "hash": "n7yEr-e-380e8o3PCwhBxPzsASQoguw9mZlytGpbEJY"
47002
+ "hash": "aqpdp2leBmz9tIosw8X5eN-jbCKXBQl512TvkH8UsLs"
46857
47003
  }
46858
47004
  },
46859
47005
  "B24CheckboxGroup": {
@@ -47577,9 +47723,24 @@ const B24UIMeta = {
47577
47723
  "description": ""
47578
47724
  }
47579
47725
  ],
47580
- "events": [],
47726
+ "events": [
47727
+ {
47728
+ "name": "update:modelValue",
47729
+ "description": "",
47730
+ "tags": [],
47731
+ "type": "[value: CheckboxGroupItem[]]",
47732
+ "signature": '(evt: "update:modelValue", value: CheckboxGroupItem[]): void'
47733
+ },
47734
+ {
47735
+ "name": "change",
47736
+ "description": "",
47737
+ "tags": [],
47738
+ "type": "[event: Event]",
47739
+ "signature": '(evt: "change", event: Event): void'
47740
+ }
47741
+ ],
47581
47742
  "exposed": [],
47582
- "hash": "5EgZY2DRjJU3ZlvaNdjUco6zeC4uSy9q45Q6LJEAeQE"
47743
+ "hash": "EiLM1nat3rqRer6w1Dj7Fk7MKWAaUB3Z5RxFLyM-7Wo"
47583
47744
  }
47584
47745
  },
47585
47746
  "B24Chip": {
@@ -47878,9 +48039,17 @@ const B24UIMeta = {
47878
48039
  "description": ""
47879
48040
  }
47880
48041
  ],
47881
- "events": [],
48042
+ "events": [
48043
+ {
48044
+ "name": "update:show",
48045
+ "description": "",
48046
+ "tags": [],
48047
+ "type": "[value: boolean]",
48048
+ "signature": '(event: "update:show", value: boolean): void'
48049
+ }
48050
+ ],
47882
48051
  "exposed": [],
47883
- "hash": "-cknQ3HEimpEif3r_VmO0iha4A6dY7X0PnLHcjkJUfU"
48052
+ "hash": "wLNpSyo7MnUnihWHt98cWcPqENGVZUOwsWmK4D9GwZU"
47884
48053
  }
47885
48054
  },
47886
48055
  "B24Collapsible": {
@@ -48008,9 +48177,17 @@ const B24UIMeta = {
48008
48177
  "description": ""
48009
48178
  }
48010
48179
  ],
48011
- "events": [],
48180
+ "events": [
48181
+ {
48182
+ "name": "update:open",
48183
+ "description": "",
48184
+ "tags": [],
48185
+ "type": "[value: boolean]",
48186
+ "signature": '(event: "update:open", value: boolean): void'
48187
+ }
48188
+ ],
48012
48189
  "exposed": [],
48013
- "hash": "qsAk2BqhVvmNTMmUDLTGBIHKLHT4cvgu9jwngr8WlLQ"
48190
+ "hash": "sxUk_tDsLwoeB4mLhrmHoKS4l_L6RHwNNFwNP_lu0pQ"
48014
48191
  }
48015
48192
  },
48016
48193
  "B24ColorPicker": {
@@ -48175,9 +48352,17 @@ const B24UIMeta = {
48175
48352
  }
48176
48353
  ],
48177
48354
  "slots": [],
48178
- "events": [],
48355
+ "events": [
48356
+ {
48357
+ "name": "update:modelValue",
48358
+ "description": "",
48359
+ "tags": [],
48360
+ "type": "[value: string | undefined]",
48361
+ "signature": '(event: "update:modelValue", value: string | undefined): void'
48362
+ }
48363
+ ],
48179
48364
  "exposed": [],
48180
- "hash": "nHiP-LNfPo6n33g6ORQXW6BqzYlzY9_YoEV5cGIk5EI"
48365
+ "hash": "BbyVH8HjaYEkrSi-6zOJOWze0rDJCuyUPCkt9eZJlUc"
48181
48366
  }
48182
48367
  },
48183
48368
  "B24CommandPalette": {
@@ -50355,9 +50540,52 @@ const B24UIMeta = {
50355
50540
  "description": ""
50356
50541
  }
50357
50542
  ],
50358
- "events": [],
50543
+ "events": [
50544
+ {
50545
+ "name": "update:modelValue",
50546
+ "description": "",
50547
+ "tags": [],
50548
+ "type": "[value: CommandPaletteItem]",
50549
+ "signature": '(evt: "update:modelValue", value: CommandPaletteItem): void'
50550
+ },
50551
+ {
50552
+ "name": "highlight",
50553
+ "description": "",
50554
+ "tags": [],
50555
+ "type": "[payload: { ref: HTMLElement; value: CommandPaletteItem; } | undefined]",
50556
+ "signature": '(evt: "highlight", payload: { ref: HTMLElement; value: CommandPaletteItem; } | undefined): void'
50557
+ },
50558
+ {
50559
+ "name": "entryFocus",
50560
+ "description": "",
50561
+ "tags": [],
50562
+ "type": "[event: CustomEvent<any>]",
50563
+ "signature": '(evt: "entryFocus", event: CustomEvent<any>): void'
50564
+ },
50565
+ {
50566
+ "name": "leave",
50567
+ "description": "",
50568
+ "tags": [],
50569
+ "type": "[event: Event]",
50570
+ "signature": '(evt: "leave", event: Event): void'
50571
+ },
50572
+ {
50573
+ "name": "update:open",
50574
+ "description": "",
50575
+ "tags": [],
50576
+ "type": "[value: boolean]",
50577
+ "signature": '(evt: "update:open", value: boolean): void'
50578
+ },
50579
+ {
50580
+ "name": "update:searchTerm",
50581
+ "description": "",
50582
+ "tags": [],
50583
+ "type": "[value: string]",
50584
+ "signature": '(evt: "update:searchTerm", value: string): void'
50585
+ }
50586
+ ],
50359
50587
  "exposed": [],
50360
- "hash": "5eOASa9At0ZFrh3d3ntjS-ZYc7W3rH8mFH0AdluXdLw"
50588
+ "hash": "DchR7JEFAoPxlZnMYa9Mz_ibXwN55wlt817VlGA0rq8"
50361
50589
  }
50362
50590
  },
50363
50591
  "B24Container": {
@@ -53033,9 +53261,17 @@ const B24UIMeta = {
53033
53261
  "description": ""
53034
53262
  }
53035
53263
  ],
53036
- "events": [],
53264
+ "events": [
53265
+ {
53266
+ "name": "update:open",
53267
+ "description": "",
53268
+ "tags": [],
53269
+ "type": "[payload: boolean]",
53270
+ "signature": '(evt: "update:open", payload: boolean): void'
53271
+ }
53272
+ ],
53037
53273
  "exposed": [],
53038
- "hash": "60N5CfaPVqOy48lV_XSnJEbdjKn7LlLU23l2PQrgX0M"
53274
+ "hash": "D_Njh7Zwp50NZaKnlm7svGTylbLCU7Dcw8h4WfheDfY"
53039
53275
  }
53040
53276
  },
53041
53277
  "B24ContextMenuContent": {
@@ -55498,9 +55734,45 @@ const B24UIMeta = {
55498
55734
  "description": ""
55499
55735
  }
55500
55736
  ],
55501
- "events": [],
55737
+ "events": [
55738
+ {
55739
+ "name": "escapeKeyDown",
55740
+ "description": "",
55741
+ "tags": [],
55742
+ "type": "[event: KeyboardEvent]",
55743
+ "signature": '(evt: "escapeKeyDown", event: KeyboardEvent): void'
55744
+ },
55745
+ {
55746
+ "name": "pointerDownOutside",
55747
+ "description": "",
55748
+ "tags": [],
55749
+ "type": "[event: PointerDownOutsideEvent]",
55750
+ "signature": '(evt: "pointerDownOutside", event: PointerDownOutsideEvent): void'
55751
+ },
55752
+ {
55753
+ "name": "focusOutside",
55754
+ "description": "",
55755
+ "tags": [],
55756
+ "type": "[event: FocusOutsideEvent]",
55757
+ "signature": '(evt: "focusOutside", event: FocusOutsideEvent): void'
55758
+ },
55759
+ {
55760
+ "name": "interactOutside",
55761
+ "description": "",
55762
+ "tags": [],
55763
+ "type": "[event: PointerDownOutsideEvent | FocusOutsideEvent]",
55764
+ "signature": '(evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent): void'
55765
+ },
55766
+ {
55767
+ "name": "closeAutoFocus",
55768
+ "description": "",
55769
+ "tags": [],
55770
+ "type": "[event: Event]",
55771
+ "signature": '(evt: "closeAutoFocus", event: Event): void'
55772
+ }
55773
+ ],
55502
55774
  "exposed": [],
55503
- "hash": "aLWPGn7euPnJ_sSWdPY3ZfsFcHX9DQEqFpxGXA1yyqA"
55775
+ "hash": "gHmUnOTwF2pAdf5CBpb3_MzaJxeO6GhDBTtZ9f3Vn3w"
55504
55776
  }
55505
55777
  },
55506
55778
  "B24Countdown": {
@@ -56297,9 +56569,38 @@ const B24UIMeta = {
56297
56569
  "description": ""
56298
56570
  }
56299
56571
  ],
56300
- "events": [],
56572
+ "events": [
56573
+ {
56574
+ "name": "abort",
56575
+ "description": "",
56576
+ "tags": [],
56577
+ "type": "[]",
56578
+ "signature": '(event: "abort"): void'
56579
+ },
56580
+ {
56581
+ "name": "progress",
56582
+ "description": "",
56583
+ "tags": [],
56584
+ "type": "[value: CountdownData]",
56585
+ "signature": '(event: "progress", value: CountdownData): void'
56586
+ },
56587
+ {
56588
+ "name": "start",
56589
+ "description": "",
56590
+ "tags": [],
56591
+ "type": "[]",
56592
+ "signature": '(event: "start"): void'
56593
+ },
56594
+ {
56595
+ "name": "end",
56596
+ "description": "",
56597
+ "tags": [],
56598
+ "type": "[]",
56599
+ "signature": '(event: "end"): void'
56600
+ }
56601
+ ],
56301
56602
  "exposed": [],
56302
- "hash": "uYUy9mhEeQFB_ip-a3MgvnwJkXmKGOpn58ShBbzD85s"
56603
+ "hash": "ed60mYPAVJYW72x6FXrHjSVyl73f-fIJI-2BiSyUf9Y"
56303
56604
  }
56304
56605
  },
56305
56606
  "B24DashboardGroup": {
@@ -57383,9 +57684,24 @@ const B24UIMeta = {
57383
57684
  "description": ""
57384
57685
  }
57385
57686
  ],
57386
- "events": [],
57687
+ "events": [
57688
+ {
57689
+ "name": "update:open",
57690
+ "description": "",
57691
+ "tags": [],
57692
+ "type": "[value: boolean]",
57693
+ "signature": '(event: "update:open", value: boolean): void'
57694
+ },
57695
+ {
57696
+ "name": "update:searchTerm",
57697
+ "description": "",
57698
+ "tags": [],
57699
+ "type": "[value: string]",
57700
+ "signature": '(event: "update:searchTerm", value: string): void'
57701
+ }
57702
+ ],
57387
57703
  "exposed": [],
57388
- "hash": "1yQb5WJYrW1PrU_N2Y_u2V7SVdfQE9O8TPYFb-1vd3c"
57704
+ "hash": "OnKJiiqjqgqA5VRaDGIdAalDEgogGj3d2bGLLxiYKrY"
57389
57705
  }
57390
57706
  },
57391
57707
  "B24DashboardSearchButton": {
@@ -60449,7 +60765,7 @@ const B24UIMeta = {
60449
60765
  ],
60450
60766
  "events": [],
60451
60767
  "exposed": [],
60452
- "hash": "zv-X-cAN1FgQG_9sLSOrI5CZDGn0c_CZSIRhfquw1Gs"
60768
+ "hash": "tsyvEezGchnv5QZN-TYz2cSfwWhM1mXll7qBw6HHi4g"
60453
60769
  }
60454
60770
  },
60455
60771
  "B24DescriptionList": {
@@ -62241,7 +62557,7 @@ const B24UIMeta = {
62241
62557
  ],
62242
62558
  "events": [],
62243
62559
  "exposed": [],
62244
- "hash": "meaHJn-gwm3MFs_k72iILekFYAL992vrc4RRMmRBsuM"
62560
+ "hash": "eB5yAWqfcAFHDrfclRBiLq23MWRDJI0XGlgCegZ1NaI"
62245
62561
  }
62246
62562
  },
62247
62563
  "B24DropdownMenu": {
@@ -65097,9 +65413,17 @@ const B24UIMeta = {
65097
65413
  "description": ""
65098
65414
  }
65099
65415
  ],
65100
- "events": [],
65416
+ "events": [
65417
+ {
65418
+ "name": "update:open",
65419
+ "description": "",
65420
+ "tags": [],
65421
+ "type": "[payload: boolean]",
65422
+ "signature": '(evt: "update:open", payload: boolean): void'
65423
+ }
65424
+ ],
65101
65425
  "exposed": [],
65102
- "hash": "ct5RmFQNbHgLZHhhyQ5DrR0mjxNFs6thQa4vxzcxxmA"
65426
+ "hash": "hNNViXm0EwleUK51ogLou4dLgfWzaJeI_kyrr1-QDl8"
65103
65427
  }
65104
65428
  },
65105
65429
  "B24DropdownMenuContent": {
@@ -67777,9 +68101,45 @@ const B24UIMeta = {
67777
68101
  "description": ""
67778
68102
  }
67779
68103
  ],
67780
- "events": [],
68104
+ "events": [
68105
+ {
68106
+ "name": "escapeKeyDown",
68107
+ "description": "",
68108
+ "tags": [],
68109
+ "type": "[event: KeyboardEvent]",
68110
+ "signature": '(evt: "escapeKeyDown", event: KeyboardEvent): void'
68111
+ },
68112
+ {
68113
+ "name": "pointerDownOutside",
68114
+ "description": "",
68115
+ "tags": [],
68116
+ "type": "[event: PointerDownOutsideEvent]",
68117
+ "signature": '(evt: "pointerDownOutside", event: PointerDownOutsideEvent): void'
68118
+ },
68119
+ {
68120
+ "name": "focusOutside",
68121
+ "description": "",
68122
+ "tags": [],
68123
+ "type": "[event: FocusOutsideEvent]",
68124
+ "signature": '(evt: "focusOutside", event: FocusOutsideEvent): void'
68125
+ },
68126
+ {
68127
+ "name": "interactOutside",
68128
+ "description": "",
68129
+ "tags": [],
68130
+ "type": "[event: PointerDownOutsideEvent | FocusOutsideEvent]",
68131
+ "signature": '(evt: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent): void'
68132
+ },
68133
+ {
68134
+ "name": "closeAutoFocus",
68135
+ "description": "",
68136
+ "tags": [],
68137
+ "type": "[event: Event]",
68138
+ "signature": '(evt: "closeAutoFocus", event: Event): void'
68139
+ }
68140
+ ],
67781
68141
  "exposed": [],
67782
- "hash": "3tkaikBxbLnWDNV571KEq0ba1oXpHYH4OvwSwit2Prw"
68142
+ "hash": "CgGlI4N9fUjtJwcZsmg6m_BcCgoUXX8oiO-m9PklP-s"
67783
68143
  }
67784
68144
  },
67785
68145
  "B24Empty": {
@@ -69484,7 +69844,7 @@ const B24UIMeta = {
69484
69844
  ],
69485
69845
  "events": [],
69486
69846
  "exposed": [],
69487
- "hash": "kkdskDuaAxfo-GYLnOceNkHEZ67jtdOp5gqYJyBBSP4"
69847
+ "hash": "sjZGgiangAKfF4C44cxtJsEAWIusUbNs-QdvvcR7_DY"
69488
69848
  }
69489
69849
  },
69490
69850
  "B24Error": {
@@ -69622,7 +69982,7 @@ const B24UIMeta = {
69622
69982
  ],
69623
69983
  "events": [],
69624
69984
  "exposed": [],
69625
- "hash": "gQ1tY7KS6rwjupgHerJN5NZZ8tZifYvOEmDNfXG1Y1Y"
69985
+ "hash": "06R8ZY58IJItv0RyAAg9OTkcUAltVCa_2VTXfU-cq_g"
69626
69986
  }
69627
69987
  },
69628
69988
  "B24FieldGroup": {
@@ -70468,9 +70828,24 @@ const B24UIMeta = {
70468
70828
  "description": ""
70469
70829
  }
70470
70830
  ],
70471
- "events": [],
70831
+ "events": [
70832
+ {
70833
+ "name": "change",
70834
+ "description": "",
70835
+ "tags": [],
70836
+ "type": "[event: Event]",
70837
+ "signature": '(evt: "change", event: Event): void'
70838
+ },
70839
+ {
70840
+ "name": "update:modelValue",
70841
+ "description": "",
70842
+ "tags": [],
70843
+ "type": "[value: File | File[] | null | undefined]",
70844
+ "signature": '(evt: "update:modelValue", value: File | File[] | null | undefined): void'
70845
+ }
70846
+ ],
70472
70847
  "exposed": [],
70473
- "hash": "xl1RZNbo4ABnsUi-OdSezkLwIo3ji56M_zOkyGVjJ5k"
70848
+ "hash": "DSy9-eiW6Nw2vtSzS-Qf9fNVK5Ar6GI9zh8TFOiCeOY"
70474
70849
  }
70475
70850
  },
70476
70851
  "B24Form": {
@@ -70851,7 +71226,22 @@ const B24UIMeta = {
70851
71226
  "description": ""
70852
71227
  }
70853
71228
  ],
70854
- "events": [],
71229
+ "events": [
71230
+ {
71231
+ "name": "submit",
71232
+ "description": "",
71233
+ "tags": [],
71234
+ "type": "[event: FormSubmitEvent<any>]",
71235
+ "signature": '(evt: "submit", event: FormSubmitEvent<any>): void'
71236
+ },
71237
+ {
71238
+ "name": "error",
71239
+ "description": "",
71240
+ "tags": [],
71241
+ "type": "[event: FormErrorEvent]",
71242
+ "signature": '(evt: "error", event: FormErrorEvent): void'
71243
+ }
71244
+ ],
70855
71245
  "exposed": [],
70856
71246
  "hash": "-grkPhZzD_d4SKVZ-6kC8UAHV0FC8Ra7TTiQyC3vd8g"
70857
71247
  }
@@ -71136,7 +71526,7 @@ const B24UIMeta = {
71136
71526
  ],
71137
71527
  "events": [],
71138
71528
  "exposed": [],
71139
- "hash": "QwZh8KWT3EGWlCneP40z2GOCeSjOMULv9Zv13UUvpr0"
71529
+ "hash": "R1V8jJWVoqADcrU17n_ltbNeWU96YKGEEsTR4npMAbU"
71140
71530
  }
71141
71531
  },
71142
71532
  "B24Input": {
@@ -72544,9 +72934,31 @@ const B24UIMeta = {
72544
72934
  "description": ""
72545
72935
  }
72546
72936
  ],
72547
- "events": [],
72937
+ "events": [
72938
+ {
72939
+ "name": "update:modelValue",
72940
+ "description": "",
72941
+ "tags": [],
72942
+ "type": "[value: AcceptableValue]",
72943
+ "signature": '(evt: "update:modelValue", value: AcceptableValue): void'
72944
+ },
72945
+ {
72946
+ "name": "blur",
72947
+ "description": "",
72948
+ "tags": [],
72949
+ "type": "[event: FocusEvent]",
72950
+ "signature": '(evt: "blur", event: FocusEvent): void'
72951
+ },
72952
+ {
72953
+ "name": "change",
72954
+ "description": "",
72955
+ "tags": [],
72956
+ "type": "[event: Event]",
72957
+ "signature": '(evt: "change", event: Event): void'
72958
+ }
72959
+ ],
72548
72960
  "exposed": [],
72549
- "hash": "SxAWdfcNy9p3OKlnt6oImpqYmkgiwrJOb0EJf3envwk"
72961
+ "hash": "1MEAHl5RFPIQBcR2ahuOQvmOjf54K6A8yyg6HGwQ8xU"
72550
72962
  }
72551
72963
  },
72552
72964
  "B24InputDate": {
@@ -79188,9 +79600,45 @@ const B24UIMeta = {
79188
79600
  "description": ""
79189
79601
  }
79190
79602
  ],
79191
- "events": [],
79603
+ "events": [
79604
+ {
79605
+ "name": "update:modelValue",
79606
+ "description": "",
79607
+ "tags": [],
79608
+ "type": "[date: InputDateModelValue<boolean>]",
79609
+ "signature": '(evt: "update:modelValue", date: InputDateModelValue<boolean>): void'
79610
+ },
79611
+ {
79612
+ "name": "update:placeholder",
79613
+ "description": "",
79614
+ "tags": [],
79615
+ "type": "[date: DateValue] & [date: DateValue]",
79616
+ "signature": '(evt: "update:placeholder", ...args: [date: DateValue] & [date: DateValue]): void'
79617
+ },
79618
+ {
79619
+ "name": "change",
79620
+ "description": "",
79621
+ "tags": [],
79622
+ "type": "[event: Event]",
79623
+ "signature": '(evt: "change", event: Event): void'
79624
+ },
79625
+ {
79626
+ "name": "blur",
79627
+ "description": "",
79628
+ "tags": [],
79629
+ "type": "[event: FocusEvent]",
79630
+ "signature": '(evt: "blur", event: FocusEvent): void'
79631
+ },
79632
+ {
79633
+ "name": "focus",
79634
+ "description": "",
79635
+ "tags": [],
79636
+ "type": "[event: FocusEvent]",
79637
+ "signature": '(evt: "focus", event: FocusEvent): void'
79638
+ }
79639
+ ],
79192
79640
  "exposed": [],
79193
- "hash": "9COSq2Z8hrlcOOrGAxqLH-RnFiCYT4lifBRMptxDxfg"
79641
+ "hash": "yvgb3GoEyCHdz-ErT-zUg49s5I1myZEYQHi83DtNHdc"
79194
79642
  }
79195
79643
  },
79196
79644
  "B24InputMenu": {
@@ -82254,9 +82702,73 @@ const B24UIMeta = {
82254
82702
  "description": ""
82255
82703
  }
82256
82704
  ],
82257
- "events": [],
82705
+ "events": [
82706
+ {
82707
+ "name": "update:open",
82708
+ "description": "",
82709
+ "tags": [],
82710
+ "type": "[value: boolean]",
82711
+ "signature": '(evt: "update:open", value: boolean): void'
82712
+ },
82713
+ {
82714
+ "name": "change",
82715
+ "description": "",
82716
+ "tags": [],
82717
+ "type": "[event: Event]",
82718
+ "signature": '(evt: "change", event: Event): void'
82719
+ },
82720
+ {
82721
+ "name": "blur",
82722
+ "description": "",
82723
+ "tags": [],
82724
+ "type": "[event: FocusEvent]",
82725
+ "signature": '(evt: "blur", event: FocusEvent): void'
82726
+ },
82727
+ {
82728
+ "name": "focus",
82729
+ "description": "",
82730
+ "tags": [],
82731
+ "type": "[event: FocusEvent]",
82732
+ "signature": '(evt: "focus", event: FocusEvent): void'
82733
+ },
82734
+ {
82735
+ "name": "create",
82736
+ "description": "",
82737
+ "tags": [],
82738
+ "type": "[item: string]",
82739
+ "signature": '(evt: "create", item: string): void'
82740
+ },
82741
+ {
82742
+ "name": "highlight",
82743
+ "description": "",
82744
+ "tags": [],
82745
+ "type": "[payload: { ref: HTMLElement; value: any; } | undefined]",
82746
+ "signature": '(evt: "highlight", payload: { ref: HTMLElement; value: any; } | undefined): void'
82747
+ },
82748
+ {
82749
+ "name": "remove-tag",
82750
+ "description": "",
82751
+ "tags": [],
82752
+ "type": "[item: any]",
82753
+ "signature": '(evt: "remove-tag", item: any): void'
82754
+ },
82755
+ {
82756
+ "name": "update:modelValue",
82757
+ "description": "",
82758
+ "tags": [],
82759
+ "type": "[value: any]",
82760
+ "signature": '(evt: "update:modelValue", value: any): void'
82761
+ },
82762
+ {
82763
+ "name": "update:searchTerm",
82764
+ "description": "",
82765
+ "tags": [],
82766
+ "type": "[value: string]",
82767
+ "signature": '(evt: "update:searchTerm", value: string): void'
82768
+ }
82769
+ ],
82258
82770
  "exposed": [],
82259
- "hash": "-42845DIskkqIOo5fX3FICHW24grFnRPZUNDbeUZ-jM"
82771
+ "hash": "kTnvAgyFW-xm0udyy9wM1yD3VzzGNyLjueHb9YmY288"
82260
82772
  }
82261
82773
  },
82262
82774
  "B24InputNumber": {
@@ -86052,9 +86564,31 @@ const B24UIMeta = {
86052
86564
  "description": ""
86053
86565
  }
86054
86566
  ],
86055
- "events": [],
86567
+ "events": [
86568
+ {
86569
+ "name": "update:modelValue",
86570
+ "description": "",
86571
+ "tags": [],
86572
+ "type": "[value: InputNumberValue]",
86573
+ "signature": '(evt: "update:modelValue", value: InputNumberValue): void'
86574
+ },
86575
+ {
86576
+ "name": "blur",
86577
+ "description": "",
86578
+ "tags": [],
86579
+ "type": "[event: FocusEvent]",
86580
+ "signature": '(evt: "blur", event: FocusEvent): void'
86581
+ },
86582
+ {
86583
+ "name": "change",
86584
+ "description": "",
86585
+ "tags": [],
86586
+ "type": "[event: Event]",
86587
+ "signature": '(evt: "change", event: Event): void'
86588
+ }
86589
+ ],
86056
86590
  "exposed": [],
86057
- "hash": "eKSCYEuWLPvZARdlStxaboV9aSonu9Y4Q-PqT90dS5k"
86591
+ "hash": "yn-qdRmRbL71ol98VesVh0atBGeRqq8CFpCkw4vk910"
86058
86592
  }
86059
86593
  },
86060
86594
  "B24InputTags": {
@@ -87474,9 +88008,59 @@ const B24UIMeta = {
87474
88008
  "description": ""
87475
88009
  }
87476
88010
  ],
87477
- "events": [],
88011
+ "events": [
88012
+ {
88013
+ "name": "change",
88014
+ "description": "",
88015
+ "tags": [],
88016
+ "type": "[event: Event]",
88017
+ "signature": '(evt: "change", event: Event): void'
88018
+ },
88019
+ {
88020
+ "name": "blur",
88021
+ "description": "",
88022
+ "tags": [],
88023
+ "type": "[event: FocusEvent]",
88024
+ "signature": '(evt: "blur", event: FocusEvent): void'
88025
+ },
88026
+ {
88027
+ "name": "focus",
88028
+ "description": "",
88029
+ "tags": [],
88030
+ "type": "[event: FocusEvent]",
88031
+ "signature": '(evt: "focus", event: FocusEvent): void'
88032
+ },
88033
+ {
88034
+ "name": "update:modelValue",
88035
+ "description": "",
88036
+ "tags": [],
88037
+ "type": "[payload: AcceptableInputValue[]]",
88038
+ "signature": '(evt: "update:modelValue", payload: AcceptableInputValue[]): void'
88039
+ },
88040
+ {
88041
+ "name": "invalid",
88042
+ "description": "",
88043
+ "tags": [],
88044
+ "type": "[payload: AcceptableInputValue]",
88045
+ "signature": '(evt: "invalid", payload: AcceptableInputValue): void'
88046
+ },
88047
+ {
88048
+ "name": "addTag",
88049
+ "description": "",
88050
+ "tags": [],
88051
+ "type": "[payload: AcceptableInputValue]",
88052
+ "signature": '(evt: "addTag", payload: AcceptableInputValue): void'
88053
+ },
88054
+ {
88055
+ "name": "removeTag",
88056
+ "description": "",
88057
+ "tags": [],
88058
+ "type": "[payload: AcceptableInputValue]",
88059
+ "signature": '(evt: "removeTag", payload: AcceptableInputValue): void'
88060
+ }
88061
+ ],
87478
88062
  "exposed": [],
87479
- "hash": "fz654CqXYnK25hRtsIAFRVRPMOPAmqNewwQ1t27vUUI"
88063
+ "hash": "EzLs2Rtv_jf8v2pwjv4lbP8srwU7GGG7BXYDoPVyRe4"
87480
88064
  }
87481
88065
  },
87482
88066
  "B24InputTime": {
@@ -93849,9 +94433,45 @@ const B24UIMeta = {
93849
94433
  "description": ""
93850
94434
  }
93851
94435
  ],
93852
- "events": [],
94436
+ "events": [
94437
+ {
94438
+ "name": "blur",
94439
+ "description": "",
94440
+ "tags": [],
94441
+ "type": "[event: FocusEvent]",
94442
+ "signature": '(event: "blur", event: FocusEvent): void'
94443
+ },
94444
+ {
94445
+ "name": "change",
94446
+ "description": "",
94447
+ "tags": [],
94448
+ "type": "[event: Event]",
94449
+ "signature": '(event: "change", event: Event): void'
94450
+ },
94451
+ {
94452
+ "name": "focus",
94453
+ "description": "",
94454
+ "tags": [],
94455
+ "type": "[event: FocusEvent]",
94456
+ "signature": '(event: "focus", event: FocusEvent): void'
94457
+ },
94458
+ {
94459
+ "name": "update:modelValue",
94460
+ "description": "",
94461
+ "tags": [],
94462
+ "type": "[date: TimeValue | undefined]",
94463
+ "signature": '(event: "update:modelValue", date: TimeValue | undefined): void'
94464
+ },
94465
+ {
94466
+ "name": "update:placeholder",
94467
+ "description": "",
94468
+ "tags": [],
94469
+ "type": "[date: TimeValue]",
94470
+ "signature": '(event: "update:placeholder", date: TimeValue): void'
94471
+ }
94472
+ ],
93853
94473
  "exposed": [],
93854
- "hash": "1cQDz7jdn-qJ-P8qMnzzXJpByTlStjopmX3hwp8IQo8"
94474
+ "hash": "Vq8Q2EaepmbOx3E9gnHvLw9KCGwofaD3yh9OJ3k5RzM"
93855
94475
  }
93856
94476
  },
93857
94477
  "B24Kbd": {
@@ -93955,7 +94575,7 @@ const B24UIMeta = {
93955
94575
  ],
93956
94576
  "events": [],
93957
94577
  "exposed": [],
93958
- "hash": "SEBs2uZXnzOBCbN7-pi1Gkj2Upxd4NUpA2oNToqDolQ"
94578
+ "hash": "2ZrC1qA5sJJm1ozKsPLJu1ZHxsYxdgBs34hkOG_C7hU"
93959
94579
  }
93960
94580
  },
93961
94581
  "B24Link": {
@@ -95877,9 +96497,38 @@ const B24UIMeta = {
95877
96497
  "description": ""
95878
96498
  }
95879
96499
  ],
95880
- "events": [],
96500
+ "events": [
96501
+ {
96502
+ "name": "after:leave",
96503
+ "description": "",
96504
+ "tags": [],
96505
+ "type": "[]",
96506
+ "signature": '(event: "after:leave"): void'
96507
+ },
96508
+ {
96509
+ "name": "after:enter",
96510
+ "description": "",
96511
+ "tags": [],
96512
+ "type": "[]",
96513
+ "signature": '(event: "after:enter"): void'
96514
+ },
96515
+ {
96516
+ "name": "close:prevent",
96517
+ "description": "",
96518
+ "tags": [],
96519
+ "type": "[]",
96520
+ "signature": '(event: "close:prevent"): void'
96521
+ },
96522
+ {
96523
+ "name": "update:open",
96524
+ "description": "",
96525
+ "tags": [],
96526
+ "type": "[value: boolean]",
96527
+ "signature": '(event: "update:open", value: boolean): void'
96528
+ }
96529
+ ],
95881
96530
  "exposed": [],
95882
- "hash": "kTtY2tji3FOkuy1VP_hBDxjH5GxTxlU05syd9NAuyEE"
96531
+ "hash": "qjywvROzGR3HQp07E4Qo6rlaCsEUGX9jeiWnAq1Vsdc"
95883
96532
  }
95884
96533
  },
95885
96534
  "B24ModalDialogClose": {
@@ -95961,7 +96610,7 @@ const B24UIMeta = {
95961
96610
  ],
95962
96611
  "events": [],
95963
96612
  "exposed": [],
95964
- "hash": "vTHiqkOQt0pH3VZuXDbj3YixkClvDIW2OBml5q_H4Aw"
96613
+ "hash": "FncuEN--DWCaYzEFxa44-85siAdmVMRWWxcuPTGariI"
95965
96614
  }
95966
96615
  },
95967
96616
  "B24NavbarDivider": {
@@ -96018,7 +96667,7 @@ const B24UIMeta = {
96018
96667
  ],
96019
96668
  "events": [],
96020
96669
  "exposed": [],
96021
- "hash": "JDIdBSmmUS2l8lXqCvtt5eZbpBrkclLgcPrqS0WnVRw"
96670
+ "hash": "eDQO63CadEIixMzuKj-nMCKxJtUJ550__bq0HQr_BHQ"
96022
96671
  }
96023
96672
  },
96024
96673
  "B24NavbarSection": {
@@ -96075,7 +96724,7 @@ const B24UIMeta = {
96075
96724
  ],
96076
96725
  "events": [],
96077
96726
  "exposed": [],
96078
- "hash": "w86wata1GmTxnoYJo0bK1mYkWE_wo6ehA6bDdcPGtSI"
96727
+ "hash": "VUMORiHw_AkPDsNsqhMUL6yIu0vTdV1SP0KV7xxjDwU"
96079
96728
  }
96080
96729
  },
96081
96730
  "B24NavbarSpacer": {
@@ -96132,7 +96781,7 @@ const B24UIMeta = {
96132
96781
  ],
96133
96782
  "events": [],
96134
96783
  "exposed": [],
96135
- "hash": "TjYsmE_xaQt3YXTopnsQMEaRufv0OnPlbocUC-nMqZM"
96784
+ "hash": "i3w0qoLtJZ-x_BWBkEuKs77o64bTfeuWJ-5thLj-92o"
96136
96785
  }
96137
96786
  },
96138
96787
  "B24NavigationMenu": {
@@ -99813,9 +100462,17 @@ const B24UIMeta = {
99813
100462
  "description": ""
99814
100463
  }
99815
100464
  ],
99816
- "events": [],
100465
+ "events": [
100466
+ {
100467
+ "name": "update:modelValue",
100468
+ "description": "",
100469
+ "tags": [],
100470
+ "type": "[value: string]",
100471
+ "signature": '(evt: "update:modelValue", value: string): void'
100472
+ }
100473
+ ],
99817
100474
  "exposed": [],
99818
- "hash": "f4oykuwhcmXi0Pfk0q7PZBvvx1DQ4zuDNw9F1BdVX64"
100475
+ "hash": "zPI25xnP17VDZlHEhAoV8lw7DtTEooz_EVUrvHe17sc"
99819
100476
  }
99820
100477
  },
99821
100478
  "B24OverlayProvider": {
@@ -100357,7 +101014,7 @@ const B24UIMeta = {
100357
101014
  ],
100358
101015
  "events": [],
100359
101016
  "exposed": [],
100360
- "hash": "ezhCOOSF16yB3QJWQsrfG5cqrC_fnN4TSJ-xwx-QP8Q"
101017
+ "hash": "3sDZvAd1A9rdq9nMQQWip5cKJU2ABJ-wN3yf8HnA4eU"
100361
101018
  }
100362
101019
  },
100363
101020
  "B24PageColumns": {
@@ -101276,7 +101933,7 @@ const B24UIMeta = {
101276
101933
  ],
101277
101934
  "events": [],
101278
101935
  "exposed": [],
101279
- "hash": "WovDLt7JPglPe-nZKiPaECovgJjeVQbFxKQa7SbtfuA"
101936
+ "hash": "ySVi0FISDj05w2txh4Wg8a1iQy9qZByeJbGg9WU5Ha0"
101280
101937
  }
101281
101938
  },
101282
101939
  "B24PageList": {
@@ -101833,9 +102490,17 @@ const B24UIMeta = {
101833
102490
  "description": ""
101834
102491
  }
101835
102492
  ],
101836
- "events": [],
102493
+ "events": [
102494
+ {
102495
+ "name": "update:page",
102496
+ "description": "",
102497
+ "tags": [],
102498
+ "type": "[value: number]",
102499
+ "signature": '(event: "update:page", value: number): void'
102500
+ }
102501
+ ],
101837
102502
  "exposed": [],
101838
- "hash": "H2IBMSUuYgAxvJSSfo2vM9GmiFDgGuOdMvp-VaRPJ9w"
102503
+ "hash": "8du7ONpU39f2hNB46jtOIWosDAjpqqSXV6IkG4iPPSE"
101839
102504
  }
101840
102505
  },
101841
102506
  "B24PinInput": {
@@ -102267,9 +102932,38 @@ const B24UIMeta = {
102267
102932
  }
102268
102933
  ],
102269
102934
  "slots": [],
102270
- "events": [],
102935
+ "events": [
102936
+ {
102937
+ "name": "update:modelValue",
102938
+ "description": "",
102939
+ "tags": [],
102940
+ "type": "[value: string[]]",
102941
+ "signature": '(evt: "update:modelValue", value: string[]): void'
102942
+ },
102943
+ {
102944
+ "name": "complete",
102945
+ "description": "",
102946
+ "tags": [],
102947
+ "type": "[value: string[]]",
102948
+ "signature": '(evt: "complete", value: string[]): void'
102949
+ },
102950
+ {
102951
+ "name": "change",
102952
+ "description": "",
102953
+ "tags": [],
102954
+ "type": "[event: Event]",
102955
+ "signature": '(evt: "change", event: Event): void'
102956
+ },
102957
+ {
102958
+ "name": "blur",
102959
+ "description": "",
102960
+ "tags": [],
102961
+ "type": "[event: Event]",
102962
+ "signature": '(evt: "blur", event: Event): void'
102963
+ }
102964
+ ],
102271
102965
  "exposed": [],
102272
- "hash": "aW5qWEz4ojnUeIeqEl1jbRAYaVtOKuRrH7qYcdL_vW0"
102966
+ "hash": "IuMRUtKGlZAGLc2XdzQm9twzBEx5wSK0E9TU7rjXl9A"
102273
102967
  }
102274
102968
  },
102275
102969
  "B24Popover": {
@@ -103142,9 +103836,24 @@ const B24UIMeta = {
103142
103836
  "description": ""
103143
103837
  }
103144
103838
  ],
103145
- "events": [],
103839
+ "events": [
103840
+ {
103841
+ "name": "close:prevent",
103842
+ "description": "",
103843
+ "tags": [],
103844
+ "type": "[]",
103845
+ "signature": '(evt: "close:prevent"): void'
103846
+ },
103847
+ {
103848
+ "name": "update:open",
103849
+ "description": "",
103850
+ "tags": [],
103851
+ "type": "[value: boolean]",
103852
+ "signature": '(evt: "update:open", value: boolean): void'
103853
+ }
103854
+ ],
103146
103855
  "exposed": [],
103147
- "hash": "3X6nOHjSUubxo4DJUrClU6jcSR4mrWfFE8cv7FKkl6U"
103856
+ "hash": "UsqV-HdYBDpj6cW1yAdn2V3MOA7KpmQ3jAL6E2q0HNk"
103148
103857
  }
103149
103858
  },
103150
103859
  "B24Progress": {
@@ -103425,9 +104134,24 @@ const B24UIMeta = {
103425
104134
  "description": ""
103426
104135
  }
103427
104136
  ],
103428
- "events": [],
104137
+ "events": [
104138
+ {
104139
+ "name": "update:modelValue",
104140
+ "description": "",
104141
+ "tags": [],
104142
+ "type": "[value: string[] | undefined]",
104143
+ "signature": '(event: "update:modelValue", value: string[] | undefined): void'
104144
+ },
104145
+ {
104146
+ "name": "update:max",
104147
+ "description": "",
104148
+ "tags": [],
104149
+ "type": "[value: number]",
104150
+ "signature": '(event: "update:max", value: number): void'
104151
+ }
104152
+ ],
103429
104153
  "exposed": [],
103430
- "hash": "MDcENFH3pLE0NOJdzTG9_Db-txAwTk4OPJ4rJYuU1BI"
104154
+ "hash": "TtH8y960bPOo9zcVGkJ1bDHZ273vUzfY9sd5pLdQ9us"
103431
104155
  }
103432
104156
  },
103433
104157
  "B24RadioGroup": {
@@ -103914,9 +104638,24 @@ const B24UIMeta = {
103914
104638
  "description": ""
103915
104639
  }
103916
104640
  ],
103917
- "events": [],
104641
+ "events": [
104642
+ {
104643
+ "name": "update:modelValue",
104644
+ "description": "",
104645
+ "tags": [],
104646
+ "type": "[value: any]",
104647
+ "signature": '(evt: "update:modelValue", value: any): void'
104648
+ },
104649
+ {
104650
+ "name": "change",
104651
+ "description": "",
104652
+ "tags": [],
104653
+ "type": "[event: Event]",
104654
+ "signature": '(evt: "change", event: Event): void'
104655
+ }
104656
+ ],
103918
104657
  "exposed": [],
103919
- "hash": "zHYxWqbfVC029bDIOKg9IsJEExRpoanm_exX6j5SdbI"
104658
+ "hash": "wioKmy79omCm6xHk6cnHXka4ahgbs6h6-53_n1fBX6w"
103920
104659
  }
103921
104660
  },
103922
104661
  "B24Range": {
@@ -104947,9 +105686,24 @@ const B24UIMeta = {
104947
105686
  }
104948
105687
  ],
104949
105688
  "slots": [],
104950
- "events": [],
105689
+ "events": [
105690
+ {
105691
+ "name": "change",
105692
+ "description": "",
105693
+ "tags": [],
105694
+ "type": "[event: Event]",
105695
+ "signature": '(evt: "change", event: Event): void'
105696
+ },
105697
+ {
105698
+ "name": "update:modelValue",
105699
+ "description": "",
105700
+ "tags": [],
105701
+ "type": "[value: number | number[] | undefined]",
105702
+ "signature": '(evt: "update:modelValue", value: number | number[] | undefined): void'
105703
+ }
105704
+ ],
104951
105705
  "exposed": [],
104952
- "hash": "_uLkHzkTLWmGiCad9gjDITGbVTi1Z3s3wbsm1mlXhgU"
105706
+ "hash": "x2F_S3h2Qs2cserJk8d0LiSiSzHviXYgHx71E_NtiOM"
104953
105707
  }
104954
105708
  },
104955
105709
  "B24Select": {
@@ -107571,9 +108325,45 @@ const B24UIMeta = {
107571
108325
  "description": ""
107572
108326
  }
107573
108327
  ],
107574
- "events": [],
108328
+ "events": [
108329
+ {
108330
+ "name": "update:modelValue",
108331
+ "description": "",
108332
+ "tags": [],
108333
+ "type": "[value: any]",
108334
+ "signature": '(evt: "update:modelValue", value: any): void'
108335
+ },
108336
+ {
108337
+ "name": "update:open",
108338
+ "description": "",
108339
+ "tags": [],
108340
+ "type": "[value: boolean]",
108341
+ "signature": '(evt: "update:open", value: boolean): void'
108342
+ },
108343
+ {
108344
+ "name": "change",
108345
+ "description": "",
108346
+ "tags": [],
108347
+ "type": "[event: Event]",
108348
+ "signature": '(evt: "change", event: Event): void'
108349
+ },
108350
+ {
108351
+ "name": "blur",
108352
+ "description": "",
108353
+ "tags": [],
108354
+ "type": "[event: FocusEvent]",
108355
+ "signature": '(evt: "blur", event: FocusEvent): void'
108356
+ },
108357
+ {
108358
+ "name": "focus",
108359
+ "description": "",
108360
+ "tags": [],
108361
+ "type": "[event: FocusEvent]",
108362
+ "signature": '(evt: "focus", event: FocusEvent): void'
108363
+ }
108364
+ ],
107575
108365
  "exposed": [],
107576
- "hash": "IIHQ1frB4bdz7bQBcospspY2QHjsWV1hmCQ2TpmuIdc"
108366
+ "hash": "CRXVDDiBQAwyv3zoqHJe8rBqRqNV-MnyDinFqoPj_Jc"
107577
108367
  }
107578
108368
  },
107579
108369
  "B24SelectMenu": {
@@ -110481,9 +111271,66 @@ const B24UIMeta = {
110481
111271
  "description": ""
110482
111272
  }
110483
111273
  ],
110484
- "events": [],
111274
+ "events": [
111275
+ {
111276
+ "name": "update:open",
111277
+ "description": "",
111278
+ "tags": [],
111279
+ "type": "[value: boolean]",
111280
+ "signature": '(evt: "update:open", value: boolean): void'
111281
+ },
111282
+ {
111283
+ "name": "change",
111284
+ "description": "",
111285
+ "tags": [],
111286
+ "type": "[event: Event]",
111287
+ "signature": '(evt: "change", event: Event): void'
111288
+ },
111289
+ {
111290
+ "name": "blur",
111291
+ "description": "",
111292
+ "tags": [],
111293
+ "type": "[event: FocusEvent]",
111294
+ "signature": '(evt: "blur", event: FocusEvent): void'
111295
+ },
111296
+ {
111297
+ "name": "focus",
111298
+ "description": "",
111299
+ "tags": [],
111300
+ "type": "[event: FocusEvent]",
111301
+ "signature": '(evt: "focus", event: FocusEvent): void'
111302
+ },
111303
+ {
111304
+ "name": "create",
111305
+ "description": "",
111306
+ "tags": [],
111307
+ "type": "[item: string]",
111308
+ "signature": '(evt: "create", item: string): void'
111309
+ },
111310
+ {
111311
+ "name": "highlight",
111312
+ "description": "",
111313
+ "tags": [],
111314
+ "type": "[payload: { ref: HTMLElement; value: any; } | undefined]",
111315
+ "signature": '(evt: "highlight", payload: { ref: HTMLElement; value: any; } | undefined): void'
111316
+ },
111317
+ {
111318
+ "name": "update:modelValue",
111319
+ "description": "",
111320
+ "tags": [],
111321
+ "type": "[value: any]",
111322
+ "signature": '(evt: "update:modelValue", value: any): void'
111323
+ },
111324
+ {
111325
+ "name": "update:searchTerm",
111326
+ "description": "",
111327
+ "tags": [],
111328
+ "type": "[value: string]",
111329
+ "signature": '(evt: "update:searchTerm", value: string): void'
111330
+ }
111331
+ ],
110485
111332
  "exposed": [],
110486
- "hash": "BPOgkva_KRCfos-UDQcRFsTcpeeD6_12KP4NSLVWz9s"
111333
+ "hash": "L-Cf6BrsA61GRhgcvGKTebruHjs-W_33usKwCmqwJjU"
110487
111334
  }
110488
111335
  },
110489
111336
  "B24Separator": {
@@ -111217,7 +112064,7 @@ const B24UIMeta = {
111217
112064
  ],
111218
112065
  "events": [],
111219
112066
  "exposed": [],
111220
- "hash": "8bzK__rXFztQbdEyvMe_Le22vEq1n3fz6jYfjo5CrOc"
112067
+ "hash": "RaY2GMvytez6bZGI-uV1n0s9ZKw2v-xJ_WoQzbaDdUs"
111221
112068
  }
111222
112069
  },
111223
112070
  "B24Sidebar": {
@@ -111274,7 +112121,7 @@ const B24UIMeta = {
111274
112121
  ],
111275
112122
  "events": [],
111276
112123
  "exposed": [],
111277
- "hash": "ZdZAb3_f5IboDN_2Uy-hF5H8RVqcKCLPwglWsVVGuQE"
112124
+ "hash": "momImAEXGZpSD_up33svyX2tum-tbhj0n3MYY2wC0Pw"
111278
112125
  }
111279
112126
  },
111280
112127
  "B24SidebarBody": {
@@ -111354,7 +112201,7 @@ const B24UIMeta = {
111354
112201
  ],
111355
112202
  "events": [],
111356
112203
  "exposed": [],
111357
- "hash": "_rp4bqgUlzykKBnb45E7MmcCYPF2U12Z9pi0afjLAj4"
112204
+ "hash": "QrTOOTbui_xxZ3pv47bNYMdTiQr06T4oxf8IKgEozoA"
111358
112205
  }
111359
112206
  },
111360
112207
  "B24SidebarFooter": {
@@ -111411,7 +112258,7 @@ const B24UIMeta = {
111411
112258
  ],
111412
112259
  "events": [],
111413
112260
  "exposed": [],
111414
- "hash": "B05AgjUv_AqTf8apspam77J3OujR-ODUvL24yJ7r2Ag"
112261
+ "hash": "RoTYDtpIGYXccqplsQ0iyU-wTJHIzP9as7gwTmc-LRg"
111415
112262
  }
111416
112263
  },
111417
112264
  "B24SidebarHeader": {
@@ -111468,7 +112315,7 @@ const B24UIMeta = {
111468
112315
  ],
111469
112316
  "events": [],
111470
112317
  "exposed": [],
111471
- "hash": "ItGJpIby5wK4ONosAsdUwTooZYGh7nFFzRoUxNuRA2Y"
112318
+ "hash": "DOOG12ASy97PnBPp-I1REWtNEsAt3BmKcQ2dkLuSEsE"
111472
112319
  }
111473
112320
  },
111474
112321
  "B24SidebarHeading": {
@@ -111525,7 +112372,7 @@ const B24UIMeta = {
111525
112372
  ],
111526
112373
  "events": [],
111527
112374
  "exposed": [],
111528
- "hash": "van5Hr8buaTZXeVhTlGDlCZuPVbfd4b68gm6rXiaC7Q"
112375
+ "hash": "gkRYto0f1L-RWDWllHJhXpm1Vbx0GvHTC7pqZqrk8O0"
111529
112376
  }
111530
112377
  },
111531
112378
  "B24SidebarLayout": {
@@ -111707,7 +112554,7 @@ const B24UIMeta = {
111707
112554
  ],
111708
112555
  "events": [],
111709
112556
  "exposed": [],
111710
- "hash": "1QDyHYjS1yR31MV90x8bewbRePeFGk_r9o7BSmMIyis"
112557
+ "hash": "Oq0MHUMMN9u5r5620E_NxOMES6pIoXLeyHsJF2K0m5w"
111711
112558
  }
111712
112559
  },
111713
112560
  "B24SidebarSection": {
@@ -111764,7 +112611,7 @@ const B24UIMeta = {
111764
112611
  ],
111765
112612
  "events": [],
111766
112613
  "exposed": [],
111767
- "hash": "KL07WPPx0Hg5SaDS7XvJB2w30OTD0N4hDTQjl6PKirc"
112614
+ "hash": "f1_aOoqdpD4VW2tP_ALrKqHtzhtHl2Tbq0LUG9qo2gQ"
111768
112615
  }
111769
112616
  },
111770
112617
  "B24SidebarSpacer": {
@@ -111821,7 +112668,7 @@ const B24UIMeta = {
111821
112668
  ],
111822
112669
  "events": [],
111823
112670
  "exposed": [],
111824
- "hash": "J-nooPP2Vf1-8bLtBYmZ93wz1XVkM4jgaMOj2r4C2dI"
112671
+ "hash": "P7mY4ALN0ougFVaqQeEaUDiv-P7LEhHnHd8JWnsaiBY"
111825
112672
  }
111826
112673
  },
111827
112674
  "B24Skeleton": {
@@ -111901,7 +112748,7 @@ const B24UIMeta = {
111901
112748
  ],
111902
112749
  "events": [],
111903
112750
  "exposed": [],
111904
- "hash": "ZTyVhOCmlXVCSgP6fpF-fbk1eccsqjvyxcAXYWAukgE"
112751
+ "hash": "D27ZZygQjnQ0k9oxowN4vBnLpDNDABfTtKfLVFcBKV4"
111905
112752
  }
111906
112753
  },
111907
112754
  "B24Slideover": {
@@ -112482,9 +113329,38 @@ const B24UIMeta = {
112482
113329
  "description": ""
112483
113330
  }
112484
113331
  ],
112485
- "events": [],
113332
+ "events": [
113333
+ {
113334
+ "name": "after:leave",
113335
+ "description": "",
113336
+ "tags": [],
113337
+ "type": "[]",
113338
+ "signature": '(event: "after:leave"): void'
113339
+ },
113340
+ {
113341
+ "name": "after:enter",
113342
+ "description": "",
113343
+ "tags": [],
113344
+ "type": "[]",
113345
+ "signature": '(event: "after:enter"): void'
113346
+ },
113347
+ {
113348
+ "name": "close:prevent",
113349
+ "description": "",
113350
+ "tags": [],
113351
+ "type": "[]",
113352
+ "signature": '(event: "close:prevent"): void'
113353
+ },
113354
+ {
113355
+ "name": "update:open",
113356
+ "description": "",
113357
+ "tags": [],
113358
+ "type": "[value: boolean]",
113359
+ "signature": '(event: "update:open", value: boolean): void'
113360
+ }
113361
+ ],
112486
113362
  "exposed": [],
112487
- "hash": "jk4pVGog7b7MhFpZmS3pVXR1r69NukE1D0FcLgunU0k"
113363
+ "hash": "GepBXYPVY02tSvCtALqGO1G_DXdtCDMPPe36TeWBtwQ"
112488
113364
  }
112489
113365
  },
112490
113366
  "B24Stepper": {
@@ -112841,9 +113717,31 @@ const B24UIMeta = {
112841
113717
  "description": ""
112842
113718
  }
112843
113719
  ],
112844
- "events": [],
113720
+ "events": [
113721
+ {
113722
+ "name": "next",
113723
+ "description": "",
113724
+ "tags": [],
113725
+ "type": "[value: StepperItem]",
113726
+ "signature": '(evt: "next", value: StepperItem): void'
113727
+ },
113728
+ {
113729
+ "name": "prev",
113730
+ "description": "",
113731
+ "tags": [],
113732
+ "type": "[value: StepperItem]",
113733
+ "signature": '(evt: "prev", value: StepperItem): void'
113734
+ },
113735
+ {
113736
+ "name": "update:modelValue",
113737
+ "description": "",
113738
+ "tags": [],
113739
+ "type": "[value: string | number | undefined]",
113740
+ "signature": '(evt: "update:modelValue", value: string | number | undefined): void'
113741
+ }
113742
+ ],
112845
113743
  "exposed": [],
112846
- "hash": "9RzkDNtqdbnU_lQ_VPMqOK8CwLMImmdAnYOLeyQ-Ylc"
113744
+ "hash": "VH7wbYKHxi75Sa52TEwVxE_5vZ4KeOi5MQepi7epwWg"
112847
113745
  }
112848
113746
  },
112849
113747
  "B24Switch": {
@@ -113324,9 +114222,24 @@ const B24UIMeta = {
113324
114222
  "description": ""
113325
114223
  }
113326
114224
  ],
113327
- "events": [],
114225
+ "events": [
114226
+ {
114227
+ "name": "update:modelValue",
114228
+ "description": "",
114229
+ "tags": [],
114230
+ "type": "[value: boolean]",
114231
+ "signature": '(event: "update:modelValue", value: boolean): void'
114232
+ },
114233
+ {
114234
+ "name": "change",
114235
+ "description": "",
114236
+ "tags": [],
114237
+ "type": "[event: Event]",
114238
+ "signature": '(event: "change", event: Event): void'
114239
+ }
114240
+ ],
113328
114241
  "exposed": [],
113329
- "hash": "qp9TW2l6VCtrP6gy_lJBiAHstXUoeMibrFLc_podbY0"
114242
+ "hash": "2Yvg_XuIu9PBIIssyQ-XmwUE-6XJhqL_TleT6XGyLME"
113330
114243
  }
113331
114244
  },
113332
114245
  "B24Table": {
@@ -120076,17 +120989,17 @@ const B24UIMeta = {
120076
120989
  }
120077
120990
  ],
120078
120991
  "required": false,
120079
- "type": 'boolean | (Partial<Omit<VirtualizerOptions<Element, Element>, "getScrollElement" | "count" | "estimateSize" | "overscan">> & { overscan?: number | undefined; estimateSize?: number | undefined; }) | undefined',
120992
+ "type": 'boolean | (Partial<Omit<VirtualizerOptions<Element, Element>, "getScrollElement" | "count" | "estimateSize" | "overscan">> & { overscan?: number | undefined; estimateSize?: number | ((index: number) => number) | undefined; }) | undefined',
120080
120993
  "schema": {
120081
120994
  "kind": "enum",
120082
- "type": 'boolean | (Partial<Omit<VirtualizerOptions<Element, Element>, "getScrollElement" | "count" | "estimateSize" | "overscan">> & { overscan?: number | undefined; estimateSize?: number | undefined; }) | undefined',
120995
+ "type": 'boolean | (Partial<Omit<VirtualizerOptions<Element, Element>, "getScrollElement" | "count" | "estimateSize" | "overscan">> & { overscan?: number | undefined; estimateSize?: number | ((index: number) => number) | undefined; }) | undefined',
120083
120996
  "schema": {
120084
120997
  "0": "undefined",
120085
120998
  "1": "false",
120086
120999
  "2": "true",
120087
121000
  "3": {
120088
121001
  "kind": "object",
120089
- "type": 'Partial<Omit<VirtualizerOptions<Element, Element>, "getScrollElement" | "count" | "estimateSize" | "overscan">> & { overscan?: number | undefined; estimateSize?: number | undefined; }',
121002
+ "type": 'Partial<Omit<VirtualizerOptions<Element, Element>, "getScrollElement" | "count" | "estimateSize" | "overscan">> & { overscan?: number | undefined; estimateSize?: number | ((index: number) => number) | undefined; }',
120090
121003
  "schema": {
120091
121004
  "onChange": {
120092
121005
  "name": "onChange",
@@ -120563,7 +121476,7 @@ const B24UIMeta = {
120563
121476
  "estimateSize": {
120564
121477
  "name": "estimateSize",
120565
121478
  "global": false,
120566
- "description": "Estimated size (in px) of each item",
121479
+ "description": "Estimated size (in px) of each item, or a function that returns the size for a given index",
120567
121480
  "tags": [
120568
121481
  {
120569
121482
  "name": "defaultValue",
@@ -120571,8 +121484,20 @@ const B24UIMeta = {
120571
121484
  }
120572
121485
  ],
120573
121486
  "required": false,
120574
- "type": "number | undefined",
120575
- "schema": "number | undefined"
121487
+ "type": "number | ((index: number) => number) | undefined",
121488
+ "schema": {
121489
+ "kind": "enum",
121490
+ "type": "number | ((index: number) => number) | undefined",
121491
+ "schema": {
121492
+ "0": "undefined",
121493
+ "1": "number",
121494
+ "2": {
121495
+ "kind": "event",
121496
+ "type": "(index: number): number",
121497
+ "schema": []
121498
+ }
121499
+ }
121500
+ }
120576
121501
  }
120577
121502
  }
120578
121503
  }
@@ -122530,9 +123455,101 @@ const B24UIMeta = {
122530
123455
  "description": ""
122531
123456
  }
122532
123457
  ],
122533
- "events": [],
123458
+ "events": [
123459
+ {
123460
+ "name": "update:globalFilter",
123461
+ "description": "",
123462
+ "tags": [],
123463
+ "type": "[value: string]",
123464
+ "signature": '(evt: "update:globalFilter", value: string): void'
123465
+ },
123466
+ {
123467
+ "name": "update:columnFilters",
123468
+ "description": "",
123469
+ "tags": [],
123470
+ "type": "[value: ColumnFiltersState]",
123471
+ "signature": '(evt: "update:columnFilters", value: ColumnFiltersState): void'
123472
+ },
123473
+ {
123474
+ "name": "update:columnOrder",
123475
+ "description": "",
123476
+ "tags": [],
123477
+ "type": "[value: ColumnOrderState]",
123478
+ "signature": '(evt: "update:columnOrder", value: ColumnOrderState): void'
123479
+ },
123480
+ {
123481
+ "name": "update:columnVisibility",
123482
+ "description": "",
123483
+ "tags": [],
123484
+ "type": "[value: VisibilityState]",
123485
+ "signature": '(evt: "update:columnVisibility", value: VisibilityState): void'
123486
+ },
123487
+ {
123488
+ "name": "update:columnPinning",
123489
+ "description": "",
123490
+ "tags": [],
123491
+ "type": "[value: ColumnPinningState]",
123492
+ "signature": '(evt: "update:columnPinning", value: ColumnPinningState): void'
123493
+ },
123494
+ {
123495
+ "name": "update:columnSizing",
123496
+ "description": "",
123497
+ "tags": [],
123498
+ "type": "[value: ColumnSizingState]",
123499
+ "signature": '(evt: "update:columnSizing", value: ColumnSizingState): void'
123500
+ },
123501
+ {
123502
+ "name": "update:columnSizingInfo",
123503
+ "description": "",
123504
+ "tags": [],
123505
+ "type": "[value: ColumnSizingInfoState]",
123506
+ "signature": '(evt: "update:columnSizingInfo", value: ColumnSizingInfoState): void'
123507
+ },
123508
+ {
123509
+ "name": "update:rowSelection",
123510
+ "description": "",
123511
+ "tags": [],
123512
+ "type": "[value: RowSelectionState]",
123513
+ "signature": '(evt: "update:rowSelection", value: RowSelectionState): void'
123514
+ },
123515
+ {
123516
+ "name": "update:rowPinning",
123517
+ "description": "",
123518
+ "tags": [],
123519
+ "type": "[value: RowPinningState]",
123520
+ "signature": '(evt: "update:rowPinning", value: RowPinningState): void'
123521
+ },
123522
+ {
123523
+ "name": "update:sorting",
123524
+ "description": "",
123525
+ "tags": [],
123526
+ "type": "[value: SortingState]",
123527
+ "signature": '(evt: "update:sorting", value: SortingState): void'
123528
+ },
123529
+ {
123530
+ "name": "update:grouping",
123531
+ "description": "",
123532
+ "tags": [],
123533
+ "type": "[value: GroupingState]",
123534
+ "signature": '(evt: "update:grouping", value: GroupingState): void'
123535
+ },
123536
+ {
123537
+ "name": "update:expanded",
123538
+ "description": "",
123539
+ "tags": [],
123540
+ "type": "[value: ExpandedState]",
123541
+ "signature": '(evt: "update:expanded", value: ExpandedState): void'
123542
+ },
123543
+ {
123544
+ "name": "update:pagination",
123545
+ "description": "",
123546
+ "tags": [],
123547
+ "type": "[value: PaginationState]",
123548
+ "signature": '(evt: "update:pagination", value: PaginationState): void'
123549
+ }
123550
+ ],
122534
123551
  "exposed": [],
122535
- "hash": "6caEbgEhusH_33f7kXqWXWPmdZVic_LeWSREt5z_NN8"
123552
+ "hash": "irkn8qnmGXuqh5Of_BGFc3-3FcvgqSuiXVRrnfpA1P8"
122536
123553
  }
122537
123554
  },
122538
123555
  "B24TableWrapper": {
@@ -122768,7 +123785,7 @@ const B24UIMeta = {
122768
123785
  ],
122769
123786
  "events": [],
122770
123787
  "exposed": [],
122771
- "hash": "Z4rZ9QK0SENo1ls2ZeTYGykjtqB_0hAuQ4rrD8HOk_w"
123788
+ "hash": "EVFXVPskMBXr12m8XH26W0B5Adt2-AW9Ze5Jh1C15Qk"
122772
123789
  }
122773
123790
  },
122774
123791
  "B24Tabs": {
@@ -123369,7 +124386,7 @@ const B24UIMeta = {
123369
124386
  "badge": {
123370
124387
  "name": "badge",
123371
124388
  "global": false,
123372
- "description": "Display a badge on the item.\n`{ size: 'sm', color: 'air-primary' }`{lang=\"ts\"}",
124389
+ "description": "Display a badge on the item.\n`{ size: 'sm', color: 'air-primary' }`{lang=\"ts-type\"}",
123373
124390
  "tags": [],
123374
124391
  "required": false,
123375
124392
  "type": "string | number | BadgeProps | undefined",
@@ -123589,15 +124606,6 @@ const B24UIMeta = {
123589
124606
  "type": "boolean | undefined",
123590
124607
  "schema": "boolean | undefined"
123591
124608
  },
123592
- "avatar": {
123593
- "name": "avatar",
123594
- "global": false,
123595
- "description": "Display an avatar on the left side.",
123596
- "tags": [],
123597
- "required": false,
123598
- "type": "AvatarProps | undefined",
123599
- "schema": "AvatarProps | undefined"
123600
- },
123601
124609
  "icon": {
123602
124610
  "name": "icon",
123603
124611
  "global": false,
@@ -123611,6 +124619,15 @@ const B24UIMeta = {
123611
124619
  "type": "IconComponent | undefined",
123612
124620
  "schema": "IconComponent | undefined"
123613
124621
  },
124622
+ "avatar": {
124623
+ "name": "avatar",
124624
+ "global": false,
124625
+ "description": "Display an avatar on the left side.",
124626
+ "tags": [],
124627
+ "required": false,
124628
+ "type": "AvatarProps | undefined",
124629
+ "schema": "AvatarProps | undefined"
124630
+ },
123614
124631
  "trailingIcon": {
123615
124632
  "name": "trailingIcon",
123616
124633
  "global": false,
@@ -123801,13 +124818,14 @@ const B24UIMeta = {
123801
124818
  }
123802
124819
  ],
123803
124820
  "required": false,
123804
- "type": "string | undefined",
124821
+ "type": "GetItemKeys<TabsItem> | undefined",
123805
124822
  "schema": {
123806
124823
  "kind": "enum",
123807
- "type": "string | undefined",
124824
+ "type": "GetItemKeys<TabsItem> | undefined",
123808
124825
  "schema": {
123809
124826
  "0": "undefined",
123810
- "1": "string"
124827
+ "1": "string",
124828
+ "2": "number"
123811
124829
  }
123812
124830
  },
123813
124831
  "default": '"label"'
@@ -123941,9 +124959,17 @@ const B24UIMeta = {
123941
124959
  "description": ""
123942
124960
  }
123943
124961
  ],
123944
- "events": [],
124962
+ "events": [
124963
+ {
124964
+ "name": "update:modelValue",
124965
+ "description": "",
124966
+ "tags": [],
124967
+ "type": "[payload: string | number]",
124968
+ "signature": '(evt: "update:modelValue", payload: string | number): void'
124969
+ }
124970
+ ],
123945
124971
  "exposed": [],
123946
- "hash": "UKDqpRUkVsjgvCkoduL_hvYWpon30ARoAXwgFpN8Fxo"
124972
+ "hash": "VnFSOl5jGgk4CHtzg4qyL1PQtQCfevvunsatcMp-N6I"
123947
124973
  }
123948
124974
  },
123949
124975
  "B24Textarea": {
@@ -125183,9 +126209,31 @@ const B24UIMeta = {
125183
126209
  "description": ""
125184
126210
  }
125185
126211
  ],
125186
- "events": [],
126212
+ "events": [
126213
+ {
126214
+ "name": "update:modelValue",
126215
+ "description": "",
126216
+ "tags": [],
126217
+ "type": "[value: TextareaValue]",
126218
+ "signature": '(evt: "update:modelValue", value: TextareaValue): void'
126219
+ },
126220
+ {
126221
+ "name": "blur",
126222
+ "description": "",
126223
+ "tags": [],
126224
+ "type": "[event: FocusEvent]",
126225
+ "signature": '(evt: "blur", event: FocusEvent): void'
126226
+ },
126227
+ {
126228
+ "name": "change",
126229
+ "description": "",
126230
+ "tags": [],
126231
+ "type": "[event: Event]",
126232
+ "signature": '(evt: "change", event: Event): void'
126233
+ }
126234
+ ],
125187
126235
  "exposed": [],
125188
- "hash": "vaG6iIAO7FDzzdDOgAZU-261D6oeOgw9e4KlU_pNXVk"
126236
+ "hash": "bDu153Ojo6fu2dX0hrMs944rtuRh-ydtLurX4QW25yY"
125189
126237
  }
125190
126238
  },
125191
126239
  "B24Timeline": {
@@ -126006,9 +127054,17 @@ const B24UIMeta = {
126006
127054
  "description": ""
126007
127055
  }
126008
127056
  ],
126009
- "events": [],
127057
+ "events": [
127058
+ {
127059
+ "name": "update:modelValue",
127060
+ "description": "",
127061
+ "tags": [],
127062
+ "type": "[value: string | number | undefined]",
127063
+ "signature": '(evt: "update:modelValue", value: string | number | undefined): void'
127064
+ }
127065
+ ],
126010
127066
  "exposed": [],
126011
- "hash": "NGWfMMyBrmoXepQu5yVT6M6x1IGtPPrvzduSdA9MWjg"
127067
+ "hash": "OKhU2G-N9SfXR-zoGlkoK5rh86UbIBC7YmdJw2kEEqQ"
126012
127068
  }
126013
127069
  },
126014
127070
  "B24Toast": {
@@ -128358,9 +129414,66 @@ const B24UIMeta = {
128358
129414
  "description": ""
128359
129415
  }
128360
129416
  ],
128361
- "events": [],
129417
+ "events": [
129418
+ {
129419
+ "name": "pause",
129420
+ "description": "",
129421
+ "tags": [],
129422
+ "type": "[]",
129423
+ "signature": '(event: "pause"): void'
129424
+ },
129425
+ {
129426
+ "name": "escapeKeyDown",
129427
+ "description": "",
129428
+ "tags": [],
129429
+ "type": "[event: KeyboardEvent]",
129430
+ "signature": '(event: "escapeKeyDown", event: KeyboardEvent): void'
129431
+ },
129432
+ {
129433
+ "name": "resume",
129434
+ "description": "",
129435
+ "tags": [],
129436
+ "type": "[]",
129437
+ "signature": '(event: "resume"): void'
129438
+ },
129439
+ {
129440
+ "name": "swipeStart",
129441
+ "description": "",
129442
+ "tags": [],
129443
+ "type": "[event: SwipeEvent]",
129444
+ "signature": '(event: "swipeStart", event: SwipeEvent): void'
129445
+ },
129446
+ {
129447
+ "name": "swipeMove",
129448
+ "description": "",
129449
+ "tags": [],
129450
+ "type": "[event: SwipeEvent]",
129451
+ "signature": '(event: "swipeMove", event: SwipeEvent): void'
129452
+ },
129453
+ {
129454
+ "name": "swipeCancel",
129455
+ "description": "",
129456
+ "tags": [],
129457
+ "type": "[event: SwipeEvent]",
129458
+ "signature": '(event: "swipeCancel", event: SwipeEvent): void'
129459
+ },
129460
+ {
129461
+ "name": "swipeEnd",
129462
+ "description": "",
129463
+ "tags": [],
129464
+ "type": "[event: SwipeEvent]",
129465
+ "signature": '(event: "swipeEnd", event: SwipeEvent): void'
129466
+ },
129467
+ {
129468
+ "name": "update:open",
129469
+ "description": "",
129470
+ "tags": [],
129471
+ "type": "[value: boolean]",
129472
+ "signature": '(event: "update:open", value: boolean): void'
129473
+ }
129474
+ ],
128362
129475
  "exposed": [],
128363
- "hash": "UdAPNlxuAAcsR0L5jZUFRG2i1Xup1OwywzZQCkRzGiU"
129476
+ "hash": "YPjWUm0jg66daXwiUqcpfKgjioLyU7ta4e6AFAIzLvw"
128364
129477
  }
128365
129478
  },
128366
129479
  "B24Toaster": {
@@ -128612,7 +129725,7 @@ const B24UIMeta = {
128612
129725
  ],
128613
129726
  "events": [],
128614
129727
  "exposed": [],
128615
- "hash": "Z6Nam9ICdaiN3n0mBM_A9UfR_RHE3vcqZf9_M-aEpT8"
129728
+ "hash": "JAfXi5lsWjFoagdnRp_FulED0MTfSUVcb7tCQMtQ5cE"
128616
129729
  }
128617
129730
  },
128618
129731
  "B24Tooltip": {
@@ -129419,9 +130532,17 @@ const B24UIMeta = {
129419
130532
  "description": ""
129420
130533
  }
129421
130534
  ],
129422
- "events": [],
130535
+ "events": [
130536
+ {
130537
+ "name": "update:open",
130538
+ "description": "",
130539
+ "tags": [],
130540
+ "type": "[value: boolean]",
130541
+ "signature": '(event: "update:open", value: boolean): void'
130542
+ }
130543
+ ],
129423
130544
  "exposed": [],
129424
- "hash": "3bn3FA0rzcGjKn-oYiO3auqpkro_TS-0-sYrVHFBp7I"
130545
+ "hash": "H69gFVL9-63CcJm6puDmXqqMLkPAJyAnxrm4rXf3Z20"
129425
130546
  }
129426
130547
  },
129427
130548
  "B24User": {
@@ -130338,7 +131459,7 @@ const B24UIMeta = {
130338
131459
  ],
130339
131460
  "events": [],
130340
131461
  "exposed": [],
130341
- "hash": "jkAAsEq8yfC1rP76EJydgh8oFhhqFQkd9tGZk9fma44"
131462
+ "hash": "Xiyy_cO1gYz_8La9qprtrwBAPyudQT_xuxEB2aQkcFo"
130342
131463
  }
130343
131464
  },
130344
131465
  "B24LocaleSelect": {
@@ -132531,7 +133652,15 @@ const B24UIMeta = {
132531
133652
  }
132532
133653
  ],
132533
133654
  "slots": [],
132534
- "events": [],
133655
+ "events": [
133656
+ {
133657
+ "name": "update:modelValue",
133658
+ "description": "",
133659
+ "tags": [],
133660
+ "type": "[value: string]",
133661
+ "signature": '(event: "update:modelValue", value: string): void'
133662
+ }
133663
+ ],
132535
133664
  "exposed": [],
132536
133665
  "hash": "REvX25eDOBPlZA1Ln5t25IV92A1y3mnSFlq6hOplN5U"
132537
133666
  }