@bitrix24/b24ui-nuxt 0.4.1 → 0.4.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 (64) hide show
  1. package/.nuxt/b24ui/button.ts +8 -0
  2. package/.nuxt/b24ui/modal.ts +22 -4
  3. package/.nuxt/b24ui/prose/a.ts +5 -0
  4. package/.nuxt/b24ui/prose/blockquote.ts +5 -0
  5. package/.nuxt/b24ui/prose/code.ts +31 -0
  6. package/.nuxt/b24ui/prose/em.ts +5 -0
  7. package/.nuxt/b24ui/prose/h1.ts +6 -0
  8. package/.nuxt/b24ui/prose/{prose-h2.ts → h2.ts} +1 -1
  9. package/.nuxt/b24ui/prose/{prose-h3.ts → h3.ts} +1 -1
  10. package/.nuxt/b24ui/prose/h4.ts +16 -0
  11. package/.nuxt/b24ui/prose/h5.ts +16 -0
  12. package/.nuxt/b24ui/prose/h6.ts +16 -0
  13. package/.nuxt/b24ui/prose/hr.ts +5 -0
  14. package/.nuxt/b24ui/prose/ol.ts +5 -0
  15. package/.nuxt/b24ui/prose/pre.ts +6 -0
  16. package/.nuxt/b24ui/prose/strong.ts +5 -0
  17. package/.nuxt/b24ui/prose/ul.ts +5 -0
  18. package/.nuxt/b24ui/slideover.ts +25 -7
  19. package/dist/meta.cjs +1543 -220
  20. package/dist/meta.d.cts +1543 -220
  21. package/dist/meta.d.mts +1543 -220
  22. package/dist/meta.d.ts +1543 -220
  23. package/dist/meta.mjs +1543 -220
  24. package/dist/module.cjs +2 -2
  25. package/dist/module.json +1 -1
  26. package/dist/module.mjs +2 -2
  27. package/dist/runtime/components/Avatar.vue +2 -1
  28. package/dist/runtime/components/Button.vue +83 -45
  29. package/dist/runtime/components/Modal.vue +13 -2
  30. package/dist/runtime/components/RadioGroup.vue +3 -1
  31. package/dist/runtime/components/Slideover.vue +10 -2
  32. package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
  33. package/dist/runtime/prose/A.vue +32 -0
  34. package/dist/runtime/prose/Blockquote.vue +34 -0
  35. package/dist/runtime/prose/Code.vue +42 -0
  36. package/dist/runtime/prose/Em.vue +32 -0
  37. package/dist/runtime/prose/{ProseH1.vue → H1.vue} +1 -3
  38. package/dist/runtime/prose/{ProseH2.vue → H2.vue} +1 -3
  39. package/dist/runtime/prose/{ProseH3.vue → H3.vue} +1 -3
  40. package/dist/runtime/prose/H4.vue +34 -0
  41. package/dist/runtime/prose/H5.vue +34 -0
  42. package/dist/runtime/prose/H6.vue +34 -0
  43. package/dist/runtime/prose/Hr.vue +28 -0
  44. package/dist/runtime/prose/{ProseLi.vue → Li.vue} +1 -3
  45. package/dist/runtime/prose/{ProseOl.vue → Ol.vue} +1 -3
  46. package/dist/runtime/prose/{ProseP.vue → P.vue} +1 -3
  47. package/dist/runtime/prose/Pre.vue +44 -0
  48. package/dist/runtime/prose/Strong.vue +34 -0
  49. package/dist/runtime/prose/{ProseUl.vue → Ul.vue} +1 -3
  50. package/dist/runtime/types/index.d.ts +17 -7
  51. package/dist/runtime/types/index.js +17 -7
  52. package/dist/runtime/vue/components/Link.vue +2 -2
  53. package/dist/shared/{b24ui-nuxt.BGGwh89R.mjs → b24ui-nuxt.BRwBcdAH.mjs} +276 -40
  54. package/dist/shared/{b24ui-nuxt.CnMGpwQb.cjs → b24ui-nuxt.C1tIhR9w.cjs} +276 -40
  55. package/dist/unplugin.cjs +3 -3
  56. package/dist/unplugin.mjs +3 -3
  57. package/dist/vite.cjs +1 -1
  58. package/dist/vite.mjs +1 -1
  59. package/package.json +7 -7
  60. package/.nuxt/b24ui/prose/prose-h1.ts +0 -6
  61. package/.nuxt/b24ui/prose/prose-ol.ts +0 -5
  62. package/.nuxt/b24ui/prose/prose-ul.ts +0 -5
  63. /package/.nuxt/b24ui/prose/{prose-li.ts → li.ts} +0 -0
  64. /package/.nuxt/b24ui/prose/{prose-p.ts → p.ts} +0 -0
package/dist/meta.cjs CHANGED
@@ -237,6 +237,15 @@ const B24UIMeta = {
237
237
  "type": "any",
238
238
  "schema": "any"
239
239
  },
240
+ "style": {
241
+ "name": "style",
242
+ "global": false,
243
+ "description": "",
244
+ "tags": [],
245
+ "required": false,
246
+ "type": "any",
247
+ "schema": "any"
248
+ },
240
249
  "b24ui": {
241
250
  "name": "b24ui",
242
251
  "global": false,
@@ -507,6 +516,15 @@ const B24UIMeta = {
507
516
  "type": "any",
508
517
  "schema": "any"
509
518
  },
519
+ "style": {
520
+ "name": "style",
521
+ "global": false,
522
+ "description": "",
523
+ "tags": [],
524
+ "required": false,
525
+ "type": "any",
526
+ "schema": "any"
527
+ },
510
528
  "b24ui": {
511
529
  "name": "b24ui",
512
530
  "global": false,
@@ -666,6 +684,15 @@ const B24UIMeta = {
666
684
  }
667
685
  }
668
686
  },
687
+ "activeColor": {
688
+ "name": "activeColor",
689
+ "global": false,
690
+ "description": "",
691
+ "tags": [],
692
+ "required": false,
693
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
694
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
695
+ },
669
696
  "depth": {
670
697
  "name": "depth",
671
698
  "global": false,
@@ -689,6 +716,15 @@ const B24UIMeta = {
689
716
  }
690
717
  }
691
718
  },
719
+ "activeDepth": {
720
+ "name": "activeDepth",
721
+ "global": false,
722
+ "description": "",
723
+ "tags": [],
724
+ "required": false,
725
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
726
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
727
+ },
692
728
  "size": {
693
729
  "name": "size",
694
730
  "global": false,
@@ -859,6 +895,34 @@ const B24UIMeta = {
859
895
  "type": "any",
860
896
  "schema": "any"
861
897
  },
898
+ "activeClass": {
899
+ "name": "activeClass",
900
+ "global": false,
901
+ "description": "The class to apply when the link is active",
902
+ "tags": [
903
+ {
904
+ "name": "defaultValue",
905
+ "text": "''"
906
+ }
907
+ ],
908
+ "required": false,
909
+ "type": "string | undefined",
910
+ "schema": "string | undefined"
911
+ },
912
+ "inactiveClass": {
913
+ "name": "inactiveClass",
914
+ "global": false,
915
+ "description": "The class to apply when the link is inactive",
916
+ "tags": [
917
+ {
918
+ "name": "defaultValue",
919
+ "text": "''"
920
+ }
921
+ ],
922
+ "required": false,
923
+ "type": "string | undefined",
924
+ "schema": "string | undefined"
925
+ },
862
926
  "b24ui": {
863
927
  "name": "b24ui",
864
928
  "global": false,
@@ -1020,6 +1084,15 @@ const B24UIMeta = {
1020
1084
  "type": "any",
1021
1085
  "schema": "any"
1022
1086
  },
1087
+ "style": {
1088
+ "name": "style",
1089
+ "global": false,
1090
+ "description": "",
1091
+ "tags": [],
1092
+ "required": false,
1093
+ "type": "any",
1094
+ "schema": "any"
1095
+ },
1023
1096
  "b24ui": {
1024
1097
  "name": "b24ui",
1025
1098
  "global": false,
@@ -1265,15 +1338,6 @@ const B24UIMeta = {
1265
1338
  }
1266
1339
  }
1267
1340
  },
1268
- "activeClass": {
1269
- "name": "activeClass",
1270
- "global": false,
1271
- "description": "Class to apply when the link is active",
1272
- "tags": [],
1273
- "required": false,
1274
- "type": "string | undefined",
1275
- "schema": "string | undefined"
1276
- },
1277
1341
  "exactActiveClass": {
1278
1342
  "name": "exactActiveClass",
1279
1343
  "global": false,
@@ -1382,15 +1446,6 @@ const B24UIMeta = {
1382
1446
  "type": "boolean | undefined",
1383
1447
  "schema": "boolean | undefined"
1384
1448
  },
1385
- "inactiveClass": {
1386
- "name": "inactiveClass",
1387
- "global": false,
1388
- "description": "The class to apply when the link is inactive.",
1389
- "tags": [],
1390
- "required": false,
1391
- "type": "string | undefined",
1392
- "schema": "string | undefined"
1393
- },
1394
1449
  "isAction": {
1395
1450
  "name": "isAction",
1396
1451
  "global": false,
@@ -3158,6 +3213,15 @@ const B24UIMeta = {
3158
3213
  "type": "any",
3159
3214
  "schema": "any"
3160
3215
  },
3216
+ "style": {
3217
+ "name": "style",
3218
+ "global": false,
3219
+ "description": "",
3220
+ "tags": [],
3221
+ "required": false,
3222
+ "type": "any",
3223
+ "schema": "any"
3224
+ },
3161
3225
  "b24ui": {
3162
3226
  "name": "b24ui",
3163
3227
  "global": false,
@@ -3294,6 +3358,30 @@ const B24UIMeta = {
3294
3358
  }
3295
3359
  }
3296
3360
  },
3361
+ {
3362
+ "name": "activeColor",
3363
+ "global": false,
3364
+ "description": "",
3365
+ "tags": [],
3366
+ "required": false,
3367
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
3368
+ "schema": {
3369
+ "kind": "enum",
3370
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
3371
+ "schema": {
3372
+ "0": "undefined",
3373
+ "1": "\"default\"",
3374
+ "2": "\"danger\"",
3375
+ "3": "\"success\"",
3376
+ "4": "\"warning\"",
3377
+ "5": "\"primary\"",
3378
+ "6": "\"secondary\"",
3379
+ "7": "\"collab\"",
3380
+ "8": "\"ai\"",
3381
+ "9": "\"link\""
3382
+ }
3383
+ }
3384
+ },
3297
3385
  {
3298
3386
  "name": "depth",
3299
3387
  "global": false,
@@ -3317,6 +3405,24 @@ const B24UIMeta = {
3317
3405
  }
3318
3406
  }
3319
3407
  },
3408
+ {
3409
+ "name": "activeDepth",
3410
+ "global": false,
3411
+ "description": "",
3412
+ "tags": [],
3413
+ "required": false,
3414
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
3415
+ "schema": {
3416
+ "kind": "enum",
3417
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
3418
+ "schema": {
3419
+ "0": "undefined",
3420
+ "1": "\"light\"",
3421
+ "2": "\"normal\"",
3422
+ "3": "\"dark\""
3423
+ }
3424
+ }
3425
+ },
3320
3426
  {
3321
3427
  "name": "size",
3322
3428
  "global": false,
@@ -3495,6 +3601,50 @@ const B24UIMeta = {
3495
3601
  }
3496
3602
  }
3497
3603
  },
3604
+ {
3605
+ "name": "activeClass",
3606
+ "global": false,
3607
+ "description": "The class to apply when the link is active",
3608
+ "tags": [
3609
+ {
3610
+ "name": "defaultValue",
3611
+ "text": "''"
3612
+ }
3613
+ ],
3614
+ "required": false,
3615
+ "type": "string | undefined",
3616
+ "schema": {
3617
+ "kind": "enum",
3618
+ "type": "string | undefined",
3619
+ "schema": {
3620
+ "0": "undefined",
3621
+ "1": "string"
3622
+ }
3623
+ },
3624
+ "default": "\"\""
3625
+ },
3626
+ {
3627
+ "name": "inactiveClass",
3628
+ "global": false,
3629
+ "description": "The class to apply when the link is inactive",
3630
+ "tags": [
3631
+ {
3632
+ "name": "defaultValue",
3633
+ "text": "''"
3634
+ }
3635
+ ],
3636
+ "required": false,
3637
+ "type": "string | undefined",
3638
+ "schema": {
3639
+ "kind": "enum",
3640
+ "type": "string | undefined",
3641
+ "schema": {
3642
+ "0": "undefined",
3643
+ "1": "string"
3644
+ }
3645
+ },
3646
+ "default": "\"\""
3647
+ },
3498
3648
  {
3499
3649
  "name": "b24ui",
3500
3650
  "global": false,
@@ -3682,6 +3832,15 @@ const B24UIMeta = {
3682
3832
  "type": "any",
3683
3833
  "schema": "any"
3684
3834
  },
3835
+ "style": {
3836
+ "name": "style",
3837
+ "global": false,
3838
+ "description": "",
3839
+ "tags": [],
3840
+ "required": false,
3841
+ "type": "any",
3842
+ "schema": "any"
3843
+ },
3685
3844
  "b24ui": {
3686
3845
  "name": "b24ui",
3687
3846
  "global": false,
@@ -3943,22 +4102,6 @@ const B24UIMeta = {
3943
4102
  }
3944
4103
  }
3945
4104
  },
3946
- {
3947
- "name": "activeClass",
3948
- "global": false,
3949
- "description": "Class to apply when the link is active",
3950
- "tags": [],
3951
- "required": false,
3952
- "type": "string | undefined",
3953
- "schema": {
3954
- "kind": "enum",
3955
- "type": "string | undefined",
3956
- "schema": {
3957
- "0": "undefined",
3958
- "1": "string"
3959
- }
3960
- }
3961
- },
3962
4105
  {
3963
4106
  "name": "exactActiveClass",
3964
4107
  "global": false,
@@ -4068,7 +4211,8 @@ const B24UIMeta = {
4068
4211
  "1": "false",
4069
4212
  "2": "true"
4070
4213
  }
4071
- }
4214
+ },
4215
+ "default": "undefined"
4072
4216
  },
4073
4217
  {
4074
4218
  "name": "exact",
@@ -4122,22 +4266,6 @@ const B24UIMeta = {
4122
4266
  }
4123
4267
  }
4124
4268
  },
4125
- {
4126
- "name": "inactiveClass",
4127
- "global": false,
4128
- "description": "The class to apply when the link is inactive.",
4129
- "tags": [],
4130
- "required": false,
4131
- "type": "string | undefined",
4132
- "schema": {
4133
- "kind": "enum",
4134
- "type": "string | undefined",
4135
- "schema": {
4136
- "0": "undefined",
4137
- "1": "string"
4138
- }
4139
- }
4140
- },
4141
4269
  {
4142
4270
  "name": "isAction",
4143
4271
  "global": false,
@@ -5680,6 +5808,15 @@ const B24UIMeta = {
5680
5808
  "type": "any",
5681
5809
  "schema": "any"
5682
5810
  },
5811
+ "style": {
5812
+ "name": "style",
5813
+ "global": false,
5814
+ "description": "",
5815
+ "tags": [],
5816
+ "required": false,
5817
+ "type": "any",
5818
+ "schema": "any"
5819
+ },
5683
5820
  "b24ui": {
5684
5821
  "name": "b24ui",
5685
5822
  "global": false,
@@ -6091,6 +6228,15 @@ const B24UIMeta = {
6091
6228
  "type": "any",
6092
6229
  "schema": "any"
6093
6230
  },
6231
+ "style": {
6232
+ "name": "style",
6233
+ "global": false,
6234
+ "description": "",
6235
+ "tags": [],
6236
+ "required": false,
6237
+ "type": "any",
6238
+ "schema": "any"
6239
+ },
6094
6240
  "b24ui": {
6095
6241
  "name": "b24ui",
6096
6242
  "global": false,
@@ -6210,6 +6356,15 @@ const B24UIMeta = {
6210
6356
  }
6211
6357
  }
6212
6358
  },
6359
+ "activeColor": {
6360
+ "name": "activeColor",
6361
+ "global": false,
6362
+ "description": "",
6363
+ "tags": [],
6364
+ "required": false,
6365
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
6366
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
6367
+ },
6213
6368
  "depth": {
6214
6369
  "name": "depth",
6215
6370
  "global": false,
@@ -6233,6 +6388,15 @@ const B24UIMeta = {
6233
6388
  }
6234
6389
  }
6235
6390
  },
6391
+ "activeDepth": {
6392
+ "name": "activeDepth",
6393
+ "global": false,
6394
+ "description": "",
6395
+ "tags": [],
6396
+ "required": false,
6397
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
6398
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
6399
+ },
6236
6400
  "size": {
6237
6401
  "name": "size",
6238
6402
  "global": false,
@@ -6403,6 +6567,34 @@ const B24UIMeta = {
6403
6567
  "type": "any",
6404
6568
  "schema": "any"
6405
6569
  },
6570
+ "activeClass": {
6571
+ "name": "activeClass",
6572
+ "global": false,
6573
+ "description": "The class to apply when the link is active",
6574
+ "tags": [
6575
+ {
6576
+ "name": "defaultValue",
6577
+ "text": "''"
6578
+ }
6579
+ ],
6580
+ "required": false,
6581
+ "type": "string | undefined",
6582
+ "schema": "string | undefined"
6583
+ },
6584
+ "inactiveClass": {
6585
+ "name": "inactiveClass",
6586
+ "global": false,
6587
+ "description": "The class to apply when the link is inactive",
6588
+ "tags": [
6589
+ {
6590
+ "name": "defaultValue",
6591
+ "text": "''"
6592
+ }
6593
+ ],
6594
+ "required": false,
6595
+ "type": "string | undefined",
6596
+ "schema": "string | undefined"
6597
+ },
6406
6598
  "b24ui": {
6407
6599
  "name": "b24ui",
6408
6600
  "global": false,
@@ -6678,15 +6870,6 @@ const B24UIMeta = {
6678
6870
  }
6679
6871
  }
6680
6872
  },
6681
- "activeClass": {
6682
- "name": "activeClass",
6683
- "global": false,
6684
- "description": "Class to apply when the link is active",
6685
- "tags": [],
6686
- "required": false,
6687
- "type": "string | undefined",
6688
- "schema": "string | undefined"
6689
- },
6690
6873
  "exactActiveClass": {
6691
6874
  "name": "exactActiveClass",
6692
6875
  "global": false,
@@ -6795,15 +6978,6 @@ const B24UIMeta = {
6795
6978
  "type": "boolean | undefined",
6796
6979
  "schema": "boolean | undefined"
6797
6980
  },
6798
- "inactiveClass": {
6799
- "name": "inactiveClass",
6800
- "global": false,
6801
- "description": "The class to apply when the link is inactive.",
6802
- "tags": [],
6803
- "required": false,
6804
- "type": "string | undefined",
6805
- "schema": "string | undefined"
6806
- },
6807
6981
  "isAction": {
6808
6982
  "name": "isAction",
6809
6983
  "global": false,
@@ -7212,6 +7386,15 @@ const B24UIMeta = {
7212
7386
  "type": "any",
7213
7387
  "schema": "any"
7214
7388
  },
7389
+ "style": {
7390
+ "name": "style",
7391
+ "global": false,
7392
+ "description": "",
7393
+ "tags": [],
7394
+ "required": false,
7395
+ "type": "any",
7396
+ "schema": "any"
7397
+ },
7215
7398
  "b24ui": {
7216
7399
  "name": "b24ui",
7217
7400
  "global": false,
@@ -7331,6 +7514,15 @@ const B24UIMeta = {
7331
7514
  }
7332
7515
  }
7333
7516
  },
7517
+ "activeColor": {
7518
+ "name": "activeColor",
7519
+ "global": false,
7520
+ "description": "",
7521
+ "tags": [],
7522
+ "required": false,
7523
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
7524
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
7525
+ },
7334
7526
  "depth": {
7335
7527
  "name": "depth",
7336
7528
  "global": false,
@@ -7354,6 +7546,15 @@ const B24UIMeta = {
7354
7546
  }
7355
7547
  }
7356
7548
  },
7549
+ "activeDepth": {
7550
+ "name": "activeDepth",
7551
+ "global": false,
7552
+ "description": "",
7553
+ "tags": [],
7554
+ "required": false,
7555
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
7556
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
7557
+ },
7357
7558
  "size": {
7358
7559
  "name": "size",
7359
7560
  "global": false,
@@ -7524,6 +7725,34 @@ const B24UIMeta = {
7524
7725
  "type": "any",
7525
7726
  "schema": "any"
7526
7727
  },
7728
+ "activeClass": {
7729
+ "name": "activeClass",
7730
+ "global": false,
7731
+ "description": "The class to apply when the link is active",
7732
+ "tags": [
7733
+ {
7734
+ "name": "defaultValue",
7735
+ "text": "''"
7736
+ }
7737
+ ],
7738
+ "required": false,
7739
+ "type": "string | undefined",
7740
+ "schema": "string | undefined"
7741
+ },
7742
+ "inactiveClass": {
7743
+ "name": "inactiveClass",
7744
+ "global": false,
7745
+ "description": "The class to apply when the link is inactive",
7746
+ "tags": [
7747
+ {
7748
+ "name": "defaultValue",
7749
+ "text": "''"
7750
+ }
7751
+ ],
7752
+ "required": false,
7753
+ "type": "string | undefined",
7754
+ "schema": "string | undefined"
7755
+ },
7527
7756
  "b24ui": {
7528
7757
  "name": "b24ui",
7529
7758
  "global": false,
@@ -7799,15 +8028,6 @@ const B24UIMeta = {
7799
8028
  }
7800
8029
  }
7801
8030
  },
7802
- "activeClass": {
7803
- "name": "activeClass",
7804
- "global": false,
7805
- "description": "Class to apply when the link is active",
7806
- "tags": [],
7807
- "required": false,
7808
- "type": "string | undefined",
7809
- "schema": "string | undefined"
7810
- },
7811
8031
  "exactActiveClass": {
7812
8032
  "name": "exactActiveClass",
7813
8033
  "global": false,
@@ -7916,15 +8136,6 @@ const B24UIMeta = {
7916
8136
  "type": "boolean | undefined",
7917
8137
  "schema": "boolean | undefined"
7918
8138
  },
7919
- "inactiveClass": {
7920
- "name": "inactiveClass",
7921
- "global": false,
7922
- "description": "The class to apply when the link is inactive.",
7923
- "tags": [],
7924
- "required": false,
7925
- "type": "string | undefined",
7926
- "schema": "string | undefined"
7927
- },
7928
8139
  "isAction": {
7929
8140
  "name": "isAction",
7930
8141
  "global": false,
@@ -8267,6 +8478,15 @@ const B24UIMeta = {
8267
8478
  "type": "any",
8268
8479
  "schema": "any"
8269
8480
  },
8481
+ "style": {
8482
+ "name": "style",
8483
+ "global": false,
8484
+ "description": "",
8485
+ "tags": [],
8486
+ "required": false,
8487
+ "type": "any",
8488
+ "schema": "any"
8489
+ },
8270
8490
  "b24ui": {
8271
8491
  "name": "b24ui",
8272
8492
  "global": false,
@@ -8386,6 +8606,15 @@ const B24UIMeta = {
8386
8606
  }
8387
8607
  }
8388
8608
  },
8609
+ "activeColor": {
8610
+ "name": "activeColor",
8611
+ "global": false,
8612
+ "description": "",
8613
+ "tags": [],
8614
+ "required": false,
8615
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
8616
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
8617
+ },
8389
8618
  "depth": {
8390
8619
  "name": "depth",
8391
8620
  "global": false,
@@ -8409,6 +8638,15 @@ const B24UIMeta = {
8409
8638
  }
8410
8639
  }
8411
8640
  },
8641
+ "activeDepth": {
8642
+ "name": "activeDepth",
8643
+ "global": false,
8644
+ "description": "",
8645
+ "tags": [],
8646
+ "required": false,
8647
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
8648
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
8649
+ },
8412
8650
  "size": {
8413
8651
  "name": "size",
8414
8652
  "global": false,
@@ -8579,6 +8817,34 @@ const B24UIMeta = {
8579
8817
  "type": "any",
8580
8818
  "schema": "any"
8581
8819
  },
8820
+ "activeClass": {
8821
+ "name": "activeClass",
8822
+ "global": false,
8823
+ "description": "The class to apply when the link is active",
8824
+ "tags": [
8825
+ {
8826
+ "name": "defaultValue",
8827
+ "text": "''"
8828
+ }
8829
+ ],
8830
+ "required": false,
8831
+ "type": "string | undefined",
8832
+ "schema": "string | undefined"
8833
+ },
8834
+ "inactiveClass": {
8835
+ "name": "inactiveClass",
8836
+ "global": false,
8837
+ "description": "The class to apply when the link is inactive",
8838
+ "tags": [
8839
+ {
8840
+ "name": "defaultValue",
8841
+ "text": "''"
8842
+ }
8843
+ ],
8844
+ "required": false,
8845
+ "type": "string | undefined",
8846
+ "schema": "string | undefined"
8847
+ },
8582
8848
  "b24ui": {
8583
8849
  "name": "b24ui",
8584
8850
  "global": false,
@@ -8854,15 +9120,6 @@ const B24UIMeta = {
8854
9120
  }
8855
9121
  }
8856
9122
  },
8857
- "activeClass": {
8858
- "name": "activeClass",
8859
- "global": false,
8860
- "description": "Class to apply when the link is active",
8861
- "tags": [],
8862
- "required": false,
8863
- "type": "string | undefined",
8864
- "schema": "string | undefined"
8865
- },
8866
9123
  "exactActiveClass": {
8867
9124
  "name": "exactActiveClass",
8868
9125
  "global": false,
@@ -8971,15 +9228,6 @@ const B24UIMeta = {
8971
9228
  "type": "boolean | undefined",
8972
9229
  "schema": "boolean | undefined"
8973
9230
  },
8974
- "inactiveClass": {
8975
- "name": "inactiveClass",
8976
- "global": false,
8977
- "description": "The class to apply when the link is inactive.",
8978
- "tags": [],
8979
- "required": false,
8980
- "type": "string | undefined",
8981
- "schema": "string | undefined"
8982
- },
8983
9231
  "isAction": {
8984
9232
  "name": "isAction",
8985
9233
  "global": false,
@@ -9322,6 +9570,15 @@ const B24UIMeta = {
9322
9570
  "type": "any",
9323
9571
  "schema": "any"
9324
9572
  },
9573
+ "style": {
9574
+ "name": "style",
9575
+ "global": false,
9576
+ "description": "",
9577
+ "tags": [],
9578
+ "required": false,
9579
+ "type": "any",
9580
+ "schema": "any"
9581
+ },
9325
9582
  "b24ui": {
9326
9583
  "name": "b24ui",
9327
9584
  "global": false,
@@ -9441,6 +9698,15 @@ const B24UIMeta = {
9441
9698
  }
9442
9699
  }
9443
9700
  },
9701
+ "activeColor": {
9702
+ "name": "activeColor",
9703
+ "global": false,
9704
+ "description": "",
9705
+ "tags": [],
9706
+ "required": false,
9707
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
9708
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
9709
+ },
9444
9710
  "depth": {
9445
9711
  "name": "depth",
9446
9712
  "global": false,
@@ -9464,6 +9730,15 @@ const B24UIMeta = {
9464
9730
  }
9465
9731
  }
9466
9732
  },
9733
+ "activeDepth": {
9734
+ "name": "activeDepth",
9735
+ "global": false,
9736
+ "description": "",
9737
+ "tags": [],
9738
+ "required": false,
9739
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
9740
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
9741
+ },
9467
9742
  "size": {
9468
9743
  "name": "size",
9469
9744
  "global": false,
@@ -9634,6 +9909,34 @@ const B24UIMeta = {
9634
9909
  "type": "any",
9635
9910
  "schema": "any"
9636
9911
  },
9912
+ "activeClass": {
9913
+ "name": "activeClass",
9914
+ "global": false,
9915
+ "description": "The class to apply when the link is active",
9916
+ "tags": [
9917
+ {
9918
+ "name": "defaultValue",
9919
+ "text": "''"
9920
+ }
9921
+ ],
9922
+ "required": false,
9923
+ "type": "string | undefined",
9924
+ "schema": "string | undefined"
9925
+ },
9926
+ "inactiveClass": {
9927
+ "name": "inactiveClass",
9928
+ "global": false,
9929
+ "description": "The class to apply when the link is inactive",
9930
+ "tags": [
9931
+ {
9932
+ "name": "defaultValue",
9933
+ "text": "''"
9934
+ }
9935
+ ],
9936
+ "required": false,
9937
+ "type": "string | undefined",
9938
+ "schema": "string | undefined"
9939
+ },
9637
9940
  "b24ui": {
9638
9941
  "name": "b24ui",
9639
9942
  "global": false,
@@ -9909,15 +10212,6 @@ const B24UIMeta = {
9909
10212
  }
9910
10213
  }
9911
10214
  },
9912
- "activeClass": {
9913
- "name": "activeClass",
9914
- "global": false,
9915
- "description": "Class to apply when the link is active",
9916
- "tags": [],
9917
- "required": false,
9918
- "type": "string | undefined",
9919
- "schema": "string | undefined"
9920
- },
9921
10215
  "exactActiveClass": {
9922
10216
  "name": "exactActiveClass",
9923
10217
  "global": false,
@@ -10026,15 +10320,6 @@ const B24UIMeta = {
10026
10320
  "type": "boolean | undefined",
10027
10321
  "schema": "boolean | undefined"
10028
10322
  },
10029
- "inactiveClass": {
10030
- "name": "inactiveClass",
10031
- "global": false,
10032
- "description": "The class to apply when the link is inactive.",
10033
- "tags": [],
10034
- "required": false,
10035
- "type": "string | undefined",
10036
- "schema": "string | undefined"
10037
- },
10038
10323
  "isAction": {
10039
10324
  "name": "isAction",
10040
10325
  "global": false,
@@ -10377,6 +10662,15 @@ const B24UIMeta = {
10377
10662
  "type": "any",
10378
10663
  "schema": "any"
10379
10664
  },
10665
+ "style": {
10666
+ "name": "style",
10667
+ "global": false,
10668
+ "description": "",
10669
+ "tags": [],
10670
+ "required": false,
10671
+ "type": "any",
10672
+ "schema": "any"
10673
+ },
10380
10674
  "b24ui": {
10381
10675
  "name": "b24ui",
10382
10676
  "global": false,
@@ -10496,6 +10790,15 @@ const B24UIMeta = {
10496
10790
  }
10497
10791
  }
10498
10792
  },
10793
+ "activeColor": {
10794
+ "name": "activeColor",
10795
+ "global": false,
10796
+ "description": "",
10797
+ "tags": [],
10798
+ "required": false,
10799
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
10800
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
10801
+ },
10499
10802
  "depth": {
10500
10803
  "name": "depth",
10501
10804
  "global": false,
@@ -10519,6 +10822,15 @@ const B24UIMeta = {
10519
10822
  }
10520
10823
  }
10521
10824
  },
10825
+ "activeDepth": {
10826
+ "name": "activeDepth",
10827
+ "global": false,
10828
+ "description": "",
10829
+ "tags": [],
10830
+ "required": false,
10831
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
10832
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
10833
+ },
10522
10834
  "size": {
10523
10835
  "name": "size",
10524
10836
  "global": false,
@@ -10689,6 +11001,34 @@ const B24UIMeta = {
10689
11001
  "type": "any",
10690
11002
  "schema": "any"
10691
11003
  },
11004
+ "activeClass": {
11005
+ "name": "activeClass",
11006
+ "global": false,
11007
+ "description": "The class to apply when the link is active",
11008
+ "tags": [
11009
+ {
11010
+ "name": "defaultValue",
11011
+ "text": "''"
11012
+ }
11013
+ ],
11014
+ "required": false,
11015
+ "type": "string | undefined",
11016
+ "schema": "string | undefined"
11017
+ },
11018
+ "inactiveClass": {
11019
+ "name": "inactiveClass",
11020
+ "global": false,
11021
+ "description": "The class to apply when the link is inactive",
11022
+ "tags": [
11023
+ {
11024
+ "name": "defaultValue",
11025
+ "text": "''"
11026
+ }
11027
+ ],
11028
+ "required": false,
11029
+ "type": "string | undefined",
11030
+ "schema": "string | undefined"
11031
+ },
10692
11032
  "b24ui": {
10693
11033
  "name": "b24ui",
10694
11034
  "global": false,
@@ -10964,15 +11304,6 @@ const B24UIMeta = {
10964
11304
  }
10965
11305
  }
10966
11306
  },
10967
- "activeClass": {
10968
- "name": "activeClass",
10969
- "global": false,
10970
- "description": "Class to apply when the link is active",
10971
- "tags": [],
10972
- "required": false,
10973
- "type": "string | undefined",
10974
- "schema": "string | undefined"
10975
- },
10976
11307
  "exactActiveClass": {
10977
11308
  "name": "exactActiveClass",
10978
11309
  "global": false,
@@ -11081,15 +11412,6 @@ const B24UIMeta = {
11081
11412
  "type": "boolean | undefined",
11082
11413
  "schema": "boolean | undefined"
11083
11414
  },
11084
- "inactiveClass": {
11085
- "name": "inactiveClass",
11086
- "global": false,
11087
- "description": "The class to apply when the link is inactive.",
11088
- "tags": [],
11089
- "required": false,
11090
- "type": "string | undefined",
11091
- "schema": "string | undefined"
11092
- },
11093
11415
  "isAction": {
11094
11416
  "name": "isAction",
11095
11417
  "global": false,
@@ -11524,6 +11846,15 @@ const B24UIMeta = {
11524
11846
  "type": "any",
11525
11847
  "schema": "any"
11526
11848
  },
11849
+ "style": {
11850
+ "name": "style",
11851
+ "global": false,
11852
+ "description": "",
11853
+ "tags": [],
11854
+ "required": false,
11855
+ "type": "any",
11856
+ "schema": "any"
11857
+ },
11527
11858
  "b24ui": {
11528
11859
  "name": "b24ui",
11529
11860
  "global": false,
@@ -12734,6 +13065,15 @@ const B24UIMeta = {
12734
13065
  "type": "any",
12735
13066
  "schema": "any"
12736
13067
  },
13068
+ "style": {
13069
+ "name": "style",
13070
+ "global": false,
13071
+ "description": "",
13072
+ "tags": [],
13073
+ "required": false,
13074
+ "type": "any",
13075
+ "schema": "any"
13076
+ },
12737
13077
  "b24ui": {
12738
13078
  "name": "b24ui",
12739
13079
  "global": false,
@@ -13707,6 +14047,15 @@ const B24UIMeta = {
13707
14047
  "type": "any",
13708
14048
  "schema": "any"
13709
14049
  },
14050
+ "style": {
14051
+ "name": "style",
14052
+ "global": false,
14053
+ "description": "",
14054
+ "tags": [],
14055
+ "required": false,
14056
+ "type": "any",
14057
+ "schema": "any"
14058
+ },
13710
14059
  "b24ui": {
13711
14060
  "name": "b24ui",
13712
14061
  "global": false,
@@ -14680,6 +15029,15 @@ const B24UIMeta = {
14680
15029
  "type": "any",
14681
15030
  "schema": "any"
14682
15031
  },
15032
+ "style": {
15033
+ "name": "style",
15034
+ "global": false,
15035
+ "description": "",
15036
+ "tags": [],
15037
+ "required": false,
15038
+ "type": "any",
15039
+ "schema": "any"
15040
+ },
14683
15041
  "b24ui": {
14684
15042
  "name": "b24ui",
14685
15043
  "global": false,
@@ -15653,6 +16011,15 @@ const B24UIMeta = {
15653
16011
  "type": "any",
15654
16012
  "schema": "any"
15655
16013
  },
16014
+ "style": {
16015
+ "name": "style",
16016
+ "global": false,
16017
+ "description": "",
16018
+ "tags": [],
16019
+ "required": false,
16020
+ "type": "any",
16021
+ "schema": "any"
16022
+ },
15656
16023
  "b24ui": {
15657
16024
  "name": "b24ui",
15658
16025
  "global": false,
@@ -16806,6 +17173,15 @@ const B24UIMeta = {
16806
17173
  "type": "any",
16807
17174
  "schema": "any"
16808
17175
  },
17176
+ "style": {
17177
+ "name": "style",
17178
+ "global": false,
17179
+ "description": "",
17180
+ "tags": [],
17181
+ "required": false,
17182
+ "type": "any",
17183
+ "schema": "any"
17184
+ },
16809
17185
  "b24ui": {
16810
17186
  "name": "b24ui",
16811
17187
  "global": false,
@@ -19337,6 +19713,15 @@ const B24UIMeta = {
19337
19713
  "type": "any",
19338
19714
  "schema": "any"
19339
19715
  },
19716
+ "style": {
19717
+ "name": "style",
19718
+ "global": false,
19719
+ "description": "",
19720
+ "tags": [],
19721
+ "required": false,
19722
+ "type": "any",
19723
+ "schema": "any"
19724
+ },
19340
19725
  "b24ui": {
19341
19726
  "name": "b24ui",
19342
19727
  "global": false,
@@ -20174,6 +20559,15 @@ const B24UIMeta = {
20174
20559
  "type": "any",
20175
20560
  "schema": "any"
20176
20561
  },
20562
+ "style": {
20563
+ "name": "style",
20564
+ "global": false,
20565
+ "description": "",
20566
+ "tags": [],
20567
+ "required": false,
20568
+ "type": "any",
20569
+ "schema": "any"
20570
+ },
20177
20571
  "b24ui": {
20178
20572
  "name": "b24ui",
20179
20573
  "global": false,
@@ -20960,6 +21354,15 @@ const B24UIMeta = {
20960
21354
  "type": "any",
20961
21355
  "schema": "any"
20962
21356
  },
21357
+ "style": {
21358
+ "name": "style",
21359
+ "global": false,
21360
+ "description": "",
21361
+ "tags": [],
21362
+ "required": false,
21363
+ "type": "any",
21364
+ "schema": "any"
21365
+ },
20963
21366
  "b24ui": {
20964
21367
  "name": "b24ui",
20965
21368
  "global": false,
@@ -21195,6 +21598,15 @@ const B24UIMeta = {
21195
21598
  "type": "any",
21196
21599
  "schema": "any"
21197
21600
  },
21601
+ "style": {
21602
+ "name": "style",
21603
+ "global": false,
21604
+ "description": "",
21605
+ "tags": [],
21606
+ "required": false,
21607
+ "type": "any",
21608
+ "schema": "any"
21609
+ },
21198
21610
  "b24ui": {
21199
21611
  "name": "b24ui",
21200
21612
  "global": false,
@@ -21701,6 +22113,15 @@ const B24UIMeta = {
21701
22113
  "type": "any",
21702
22114
  "schema": "any"
21703
22115
  },
22116
+ "style": {
22117
+ "name": "style",
22118
+ "global": false,
22119
+ "description": "",
22120
+ "tags": [],
22121
+ "required": false,
22122
+ "type": "any",
22123
+ "schema": "any"
22124
+ },
21704
22125
  "b24ui": {
21705
22126
  "name": "b24ui",
21706
22127
  "global": false,
@@ -22233,6 +22654,15 @@ const B24UIMeta = {
22233
22654
  "type": "any",
22234
22655
  "schema": "any"
22235
22656
  },
22657
+ "style": {
22658
+ "name": "style",
22659
+ "global": false,
22660
+ "description": "",
22661
+ "tags": [],
22662
+ "required": false,
22663
+ "type": "any",
22664
+ "schema": "any"
22665
+ },
22236
22666
  "b24ui": {
22237
22667
  "name": "b24ui",
22238
22668
  "global": false,
@@ -22703,6 +23133,15 @@ const B24UIMeta = {
22703
23133
  "type": "any",
22704
23134
  "schema": "any"
22705
23135
  },
23136
+ "style": {
23137
+ "name": "style",
23138
+ "global": false,
23139
+ "description": "",
23140
+ "tags": [],
23141
+ "required": false,
23142
+ "type": "any",
23143
+ "schema": "any"
23144
+ },
22706
23145
  "b24ui": {
22707
23146
  "name": "b24ui",
22708
23147
  "global": false,
@@ -23173,6 +23612,15 @@ const B24UIMeta = {
23173
23612
  "type": "any",
23174
23613
  "schema": "any"
23175
23614
  },
23615
+ "style": {
23616
+ "name": "style",
23617
+ "global": false,
23618
+ "description": "",
23619
+ "tags": [],
23620
+ "required": false,
23621
+ "type": "any",
23622
+ "schema": "any"
23623
+ },
23176
23624
  "b24ui": {
23177
23625
  "name": "b24ui",
23178
23626
  "global": false,
@@ -23643,6 +24091,15 @@ const B24UIMeta = {
23643
24091
  "type": "any",
23644
24092
  "schema": "any"
23645
24093
  },
24094
+ "style": {
24095
+ "name": "style",
24096
+ "global": false,
24097
+ "description": "",
24098
+ "tags": [],
24099
+ "required": false,
24100
+ "type": "any",
24101
+ "schema": "any"
24102
+ },
23646
24103
  "b24ui": {
23647
24104
  "name": "b24ui",
23648
24105
  "global": false,
@@ -24113,6 +24570,15 @@ const B24UIMeta = {
24113
24570
  "type": "any",
24114
24571
  "schema": "any"
24115
24572
  },
24573
+ "style": {
24574
+ "name": "style",
24575
+ "global": false,
24576
+ "description": "",
24577
+ "tags": [],
24578
+ "required": false,
24579
+ "type": "any",
24580
+ "schema": "any"
24581
+ },
24116
24582
  "b24ui": {
24117
24583
  "name": "b24ui",
24118
24584
  "global": false,
@@ -24583,6 +25049,15 @@ const B24UIMeta = {
24583
25049
  "type": "any",
24584
25050
  "schema": "any"
24585
25051
  },
25052
+ "style": {
25053
+ "name": "style",
25054
+ "global": false,
25055
+ "description": "",
25056
+ "tags": [],
25057
+ "required": false,
25058
+ "type": "any",
25059
+ "schema": "any"
25060
+ },
24586
25061
  "b24ui": {
24587
25062
  "name": "b24ui",
24588
25063
  "global": false,
@@ -25240,6 +25715,15 @@ const B24UIMeta = {
25240
25715
  }
25241
25716
  }
25242
25717
  },
25718
+ "activeColor": {
25719
+ "name": "activeColor",
25720
+ "global": false,
25721
+ "description": "",
25722
+ "tags": [],
25723
+ "required": false,
25724
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
25725
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
25726
+ },
25243
25727
  "depth": {
25244
25728
  "name": "depth",
25245
25729
  "global": false,
@@ -25263,6 +25747,15 @@ const B24UIMeta = {
25263
25747
  }
25264
25748
  }
25265
25749
  },
25750
+ "activeDepth": {
25751
+ "name": "activeDepth",
25752
+ "global": false,
25753
+ "description": "",
25754
+ "tags": [],
25755
+ "required": false,
25756
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
25757
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
25758
+ },
25266
25759
  "size": {
25267
25760
  "name": "size",
25268
25761
  "global": false,
@@ -25433,6 +25926,34 @@ const B24UIMeta = {
25433
25926
  "type": "any",
25434
25927
  "schema": "any"
25435
25928
  },
25929
+ "activeClass": {
25930
+ "name": "activeClass",
25931
+ "global": false,
25932
+ "description": "The class to apply when the link is active",
25933
+ "tags": [
25934
+ {
25935
+ "name": "defaultValue",
25936
+ "text": "''"
25937
+ }
25938
+ ],
25939
+ "required": false,
25940
+ "type": "string | undefined",
25941
+ "schema": "string | undefined"
25942
+ },
25943
+ "inactiveClass": {
25944
+ "name": "inactiveClass",
25945
+ "global": false,
25946
+ "description": "The class to apply when the link is inactive",
25947
+ "tags": [
25948
+ {
25949
+ "name": "defaultValue",
25950
+ "text": "''"
25951
+ }
25952
+ ],
25953
+ "required": false,
25954
+ "type": "string | undefined",
25955
+ "schema": "string | undefined"
25956
+ },
25436
25957
  "b24ui": {
25437
25958
  "name": "b24ui",
25438
25959
  "global": false,
@@ -25594,6 +26115,15 @@ const B24UIMeta = {
25594
26115
  "type": "any",
25595
26116
  "schema": "any"
25596
26117
  },
26118
+ "style": {
26119
+ "name": "style",
26120
+ "global": false,
26121
+ "description": "",
26122
+ "tags": [],
26123
+ "required": false,
26124
+ "type": "any",
26125
+ "schema": "any"
26126
+ },
25597
26127
  "b24ui": {
25598
26128
  "name": "b24ui",
25599
26129
  "global": false,
@@ -25839,15 +26369,6 @@ const B24UIMeta = {
25839
26369
  }
25840
26370
  }
25841
26371
  },
25842
- "activeClass": {
25843
- "name": "activeClass",
25844
- "global": false,
25845
- "description": "Class to apply when the link is active",
25846
- "tags": [],
25847
- "required": false,
25848
- "type": "string | undefined",
25849
- "schema": "string | undefined"
25850
- },
25851
26372
  "exactActiveClass": {
25852
26373
  "name": "exactActiveClass",
25853
26374
  "global": false,
@@ -25956,15 +26477,6 @@ const B24UIMeta = {
25956
26477
  "type": "boolean | undefined",
25957
26478
  "schema": "boolean | undefined"
25958
26479
  },
25959
- "inactiveClass": {
25960
- "name": "inactiveClass",
25961
- "global": false,
25962
- "description": "The class to apply when the link is inactive.",
25963
- "tags": [],
25964
- "required": false,
25965
- "type": "string | undefined",
25966
- "schema": "string | undefined"
25967
- },
25968
26480
  "isAction": {
25969
26481
  "name": "isAction",
25970
26482
  "global": false,
@@ -26192,6 +26704,15 @@ const B24UIMeta = {
26192
26704
  }
26193
26705
  }
26194
26706
  },
26707
+ "activeColor": {
26708
+ "name": "activeColor",
26709
+ "global": false,
26710
+ "description": "",
26711
+ "tags": [],
26712
+ "required": false,
26713
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
26714
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
26715
+ },
26195
26716
  "depth": {
26196
26717
  "name": "depth",
26197
26718
  "global": false,
@@ -26215,6 +26736,15 @@ const B24UIMeta = {
26215
26736
  }
26216
26737
  }
26217
26738
  },
26739
+ "activeDepth": {
26740
+ "name": "activeDepth",
26741
+ "global": false,
26742
+ "description": "",
26743
+ "tags": [],
26744
+ "required": false,
26745
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
26746
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
26747
+ },
26218
26748
  "size": {
26219
26749
  "name": "size",
26220
26750
  "global": false,
@@ -26385,6 +26915,34 @@ const B24UIMeta = {
26385
26915
  "type": "any",
26386
26916
  "schema": "any"
26387
26917
  },
26918
+ "activeClass": {
26919
+ "name": "activeClass",
26920
+ "global": false,
26921
+ "description": "The class to apply when the link is active",
26922
+ "tags": [
26923
+ {
26924
+ "name": "defaultValue",
26925
+ "text": "''"
26926
+ }
26927
+ ],
26928
+ "required": false,
26929
+ "type": "string | undefined",
26930
+ "schema": "string | undefined"
26931
+ },
26932
+ "inactiveClass": {
26933
+ "name": "inactiveClass",
26934
+ "global": false,
26935
+ "description": "The class to apply when the link is inactive",
26936
+ "tags": [
26937
+ {
26938
+ "name": "defaultValue",
26939
+ "text": "''"
26940
+ }
26941
+ ],
26942
+ "required": false,
26943
+ "type": "string | undefined",
26944
+ "schema": "string | undefined"
26945
+ },
26388
26946
  "b24ui": {
26389
26947
  "name": "b24ui",
26390
26948
  "global": false,
@@ -26546,6 +27104,15 @@ const B24UIMeta = {
26546
27104
  "type": "any",
26547
27105
  "schema": "any"
26548
27106
  },
27107
+ "style": {
27108
+ "name": "style",
27109
+ "global": false,
27110
+ "description": "",
27111
+ "tags": [],
27112
+ "required": false,
27113
+ "type": "any",
27114
+ "schema": "any"
27115
+ },
26549
27116
  "b24ui": {
26550
27117
  "name": "b24ui",
26551
27118
  "global": false,
@@ -26791,15 +27358,6 @@ const B24UIMeta = {
26791
27358
  }
26792
27359
  }
26793
27360
  },
26794
- "activeClass": {
26795
- "name": "activeClass",
26796
- "global": false,
26797
- "description": "Class to apply when the link is active",
26798
- "tags": [],
26799
- "required": false,
26800
- "type": "string | undefined",
26801
- "schema": "string | undefined"
26802
- },
26803
27361
  "exactActiveClass": {
26804
27362
  "name": "exactActiveClass",
26805
27363
  "global": false,
@@ -26908,15 +27466,6 @@ const B24UIMeta = {
26908
27466
  "type": "boolean | undefined",
26909
27467
  "schema": "boolean | undefined"
26910
27468
  },
26911
- "inactiveClass": {
26912
- "name": "inactiveClass",
26913
- "global": false,
26914
- "description": "The class to apply when the link is inactive.",
26915
- "tags": [],
26916
- "required": false,
26917
- "type": "string | undefined",
26918
- "schema": "string | undefined"
26919
- },
26920
27469
  "isAction": {
26921
27470
  "name": "isAction",
26922
27471
  "global": false,
@@ -28619,6 +29168,30 @@ const B24UIMeta = {
28619
29168
  },
28620
29169
  "default": "true"
28621
29170
  },
29171
+ {
29172
+ "name": "overlayBlur",
29173
+ "global": false,
29174
+ "description": "Render an overlay blur behind the modal.\n`auto` use `motion-safe`.",
29175
+ "tags": [
29176
+ {
29177
+ "name": "defaultValue",
29178
+ "text": "'auto'"
29179
+ }
29180
+ ],
29181
+ "required": false,
29182
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
29183
+ "schema": {
29184
+ "kind": "enum",
29185
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
29186
+ "schema": {
29187
+ "0": "undefined",
29188
+ "1": "\"off\"",
29189
+ "2": "\"auto\"",
29190
+ "3": "\"on\""
29191
+ }
29192
+ },
29193
+ "default": "\"auto\""
29194
+ },
28622
29195
  {
28623
29196
  "name": "transition",
28624
29197
  "global": false,
@@ -30816,6 +31389,15 @@ const B24UIMeta = {
30816
31389
  "type": "any",
30817
31390
  "schema": "any"
30818
31391
  },
31392
+ "style": {
31393
+ "name": "style",
31394
+ "global": false,
31395
+ "description": "",
31396
+ "tags": [],
31397
+ "required": false,
31398
+ "type": "any",
31399
+ "schema": "any"
31400
+ },
30819
31401
  "b24ui": {
30820
31402
  "name": "b24ui",
30821
31403
  "global": false,
@@ -31429,6 +32011,15 @@ const B24UIMeta = {
31429
32011
  "type": "any",
31430
32012
  "schema": "any"
31431
32013
  },
32014
+ "style": {
32015
+ "name": "style",
32016
+ "global": false,
32017
+ "description": "",
32018
+ "tags": [],
32019
+ "required": false,
32020
+ "type": "any",
32021
+ "schema": "any"
32022
+ },
31432
32023
  "b24ui": {
31433
32024
  "name": "b24ui",
31434
32025
  "global": false,
@@ -31867,6 +32458,15 @@ const B24UIMeta = {
31867
32458
  "type": "any",
31868
32459
  "schema": "any"
31869
32460
  },
32461
+ "style": {
32462
+ "name": "style",
32463
+ "global": false,
32464
+ "description": "",
32465
+ "tags": [],
32466
+ "required": false,
32467
+ "type": "any",
32468
+ "schema": "any"
32469
+ },
31870
32470
  "b24ui": {
31871
32471
  "name": "b24ui",
31872
32472
  "global": false,
@@ -32326,6 +32926,15 @@ const B24UIMeta = {
32326
32926
  "type": "any",
32327
32927
  "schema": "any"
32328
32928
  },
32929
+ "style": {
32930
+ "name": "style",
32931
+ "global": false,
32932
+ "description": "",
32933
+ "tags": [],
32934
+ "required": false,
32935
+ "type": "any",
32936
+ "schema": "any"
32937
+ },
32329
32938
  "b24ui": {
32330
32939
  "name": "b24ui",
32331
32940
  "global": false,
@@ -32785,6 +33394,15 @@ const B24UIMeta = {
32785
33394
  "type": "any",
32786
33395
  "schema": "any"
32787
33396
  },
33397
+ "style": {
33398
+ "name": "style",
33399
+ "global": false,
33400
+ "description": "",
33401
+ "tags": [],
33402
+ "required": false,
33403
+ "type": "any",
33404
+ "schema": "any"
33405
+ },
32788
33406
  "b24ui": {
32789
33407
  "name": "b24ui",
32790
33408
  "global": false,
@@ -33244,6 +33862,15 @@ const B24UIMeta = {
33244
33862
  "type": "any",
33245
33863
  "schema": "any"
33246
33864
  },
33865
+ "style": {
33866
+ "name": "style",
33867
+ "global": false,
33868
+ "description": "",
33869
+ "tags": [],
33870
+ "required": false,
33871
+ "type": "any",
33872
+ "schema": "any"
33873
+ },
33247
33874
  "b24ui": {
33248
33875
  "name": "b24ui",
33249
33876
  "global": false,
@@ -34100,6 +34727,15 @@ const B24UIMeta = {
34100
34727
  "type": "any",
34101
34728
  "schema": "any"
34102
34729
  },
34730
+ "style": {
34731
+ "name": "style",
34732
+ "global": false,
34733
+ "description": "",
34734
+ "tags": [],
34735
+ "required": false,
34736
+ "type": "any",
34737
+ "schema": "any"
34738
+ },
34103
34739
  "b24ui": {
34104
34740
  "name": "b24ui",
34105
34741
  "global": false,
@@ -34708,6 +35344,15 @@ const B24UIMeta = {
34708
35344
  "type": "any",
34709
35345
  "schema": "any"
34710
35346
  },
35347
+ "style": {
35348
+ "name": "style",
35349
+ "global": false,
35350
+ "description": "",
35351
+ "tags": [],
35352
+ "required": false,
35353
+ "type": "any",
35354
+ "schema": "any"
35355
+ },
34711
35356
  "b24ui": {
34712
35357
  "name": "b24ui",
34713
35358
  "global": false,
@@ -35451,6 +36096,15 @@ const B24UIMeta = {
35451
36096
  "type": "any",
35452
36097
  "schema": "any"
35453
36098
  },
36099
+ "style": {
36100
+ "name": "style",
36101
+ "global": false,
36102
+ "description": "",
36103
+ "tags": [],
36104
+ "required": false,
36105
+ "type": "any",
36106
+ "schema": "any"
36107
+ },
35454
36108
  "b24ui": {
35455
36109
  "name": "b24ui",
35456
36110
  "global": false,
@@ -35686,6 +36340,15 @@ const B24UIMeta = {
35686
36340
  "type": "any",
35687
36341
  "schema": "any"
35688
36342
  },
36343
+ "style": {
36344
+ "name": "style",
36345
+ "global": false,
36346
+ "description": "",
36347
+ "tags": [],
36348
+ "required": false,
36349
+ "type": "any",
36350
+ "schema": "any"
36351
+ },
35689
36352
  "b24ui": {
35690
36353
  "name": "b24ui",
35691
36354
  "global": false,
@@ -36192,6 +36855,15 @@ const B24UIMeta = {
36192
36855
  "type": "any",
36193
36856
  "schema": "any"
36194
36857
  },
36858
+ "style": {
36859
+ "name": "style",
36860
+ "global": false,
36861
+ "description": "",
36862
+ "tags": [],
36863
+ "required": false,
36864
+ "type": "any",
36865
+ "schema": "any"
36866
+ },
36195
36867
  "b24ui": {
36196
36868
  "name": "b24ui",
36197
36869
  "global": false,
@@ -36689,6 +37361,15 @@ const B24UIMeta = {
36689
37361
  "type": "any",
36690
37362
  "schema": "any"
36691
37363
  },
37364
+ "style": {
37365
+ "name": "style",
37366
+ "global": false,
37367
+ "description": "",
37368
+ "tags": [],
37369
+ "required": false,
37370
+ "type": "any",
37371
+ "schema": "any"
37372
+ },
36692
37373
  "b24ui": {
36693
37374
  "name": "b24ui",
36694
37375
  "global": false,
@@ -37221,6 +37902,15 @@ const B24UIMeta = {
37221
37902
  "type": "any",
37222
37903
  "schema": "any"
37223
37904
  },
37905
+ "style": {
37906
+ "name": "style",
37907
+ "global": false,
37908
+ "description": "",
37909
+ "tags": [],
37910
+ "required": false,
37911
+ "type": "any",
37912
+ "schema": "any"
37913
+ },
37224
37914
  "b24ui": {
37225
37915
  "name": "b24ui",
37226
37916
  "global": false,
@@ -37691,6 +38381,15 @@ const B24UIMeta = {
37691
38381
  "type": "any",
37692
38382
  "schema": "any"
37693
38383
  },
38384
+ "style": {
38385
+ "name": "style",
38386
+ "global": false,
38387
+ "description": "",
38388
+ "tags": [],
38389
+ "required": false,
38390
+ "type": "any",
38391
+ "schema": "any"
38392
+ },
37694
38393
  "b24ui": {
37695
38394
  "name": "b24ui",
37696
38395
  "global": false,
@@ -38161,6 +38860,15 @@ const B24UIMeta = {
38161
38860
  "type": "any",
38162
38861
  "schema": "any"
38163
38862
  },
38863
+ "style": {
38864
+ "name": "style",
38865
+ "global": false,
38866
+ "description": "",
38867
+ "tags": [],
38868
+ "required": false,
38869
+ "type": "any",
38870
+ "schema": "any"
38871
+ },
38164
38872
  "b24ui": {
38165
38873
  "name": "b24ui",
38166
38874
  "global": false,
@@ -38631,6 +39339,15 @@ const B24UIMeta = {
38631
39339
  "type": "any",
38632
39340
  "schema": "any"
38633
39341
  },
39342
+ "style": {
39343
+ "name": "style",
39344
+ "global": false,
39345
+ "description": "",
39346
+ "tags": [],
39347
+ "required": false,
39348
+ "type": "any",
39349
+ "schema": "any"
39350
+ },
38634
39351
  "b24ui": {
38635
39352
  "name": "b24ui",
38636
39353
  "global": false,
@@ -39141,6 +39858,15 @@ const B24UIMeta = {
39141
39858
  "type": "any",
39142
39859
  "schema": "any"
39143
39860
  },
39861
+ "style": {
39862
+ "name": "style",
39863
+ "global": false,
39864
+ "description": "",
39865
+ "tags": [],
39866
+ "required": false,
39867
+ "type": "any",
39868
+ "schema": "any"
39869
+ },
39144
39870
  "b24ui": {
39145
39871
  "name": "b24ui",
39146
39872
  "global": false,
@@ -39444,6 +40170,30 @@ const B24UIMeta = {
39444
40170
  },
39445
40171
  "default": "true"
39446
40172
  },
40173
+ {
40174
+ "name": "overlayBlur",
40175
+ "global": false,
40176
+ "description": "Render an overlay blur behind the slideover.\n`auto` use `motion-safe`.",
40177
+ "tags": [
40178
+ {
40179
+ "name": "defaultValue",
40180
+ "text": "'auto'"
40181
+ }
40182
+ ],
40183
+ "required": false,
40184
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
40185
+ "schema": {
40186
+ "kind": "enum",
40187
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
40188
+ "schema": {
40189
+ "0": "undefined",
40190
+ "1": "\"off\"",
40191
+ "2": "\"auto\"",
40192
+ "3": "\"on\""
40193
+ }
40194
+ },
40195
+ "default": "\"auto\""
40196
+ },
39447
40197
  {
39448
40198
  "name": "transition",
39449
40199
  "global": false,
@@ -40432,6 +41182,15 @@ const B24UIMeta = {
40432
41182
  "type": "any",
40433
41183
  "schema": "any"
40434
41184
  },
41185
+ "style": {
41186
+ "name": "style",
41187
+ "global": false,
41188
+ "description": "",
41189
+ "tags": [],
41190
+ "required": false,
41191
+ "type": "any",
41192
+ "schema": "any"
41193
+ },
40435
41194
  "b24ui": {
40436
41195
  "name": "b24ui",
40437
41196
  "global": false,
@@ -40920,6 +41679,15 @@ const B24UIMeta = {
40920
41679
  "type": "any",
40921
41680
  "schema": "any"
40922
41681
  },
41682
+ "style": {
41683
+ "name": "style",
41684
+ "global": false,
41685
+ "description": "",
41686
+ "tags": [],
41687
+ "required": false,
41688
+ "type": "any",
41689
+ "schema": "any"
41690
+ },
40923
41691
  "b24ui": {
40924
41692
  "name": "b24ui",
40925
41693
  "global": false,
@@ -41175,6 +41943,15 @@ const B24UIMeta = {
41175
41943
  "type": "any",
41176
41944
  "schema": "any"
41177
41945
  },
41946
+ "style": {
41947
+ "name": "style",
41948
+ "global": false,
41949
+ "description": "",
41950
+ "tags": [],
41951
+ "required": false,
41952
+ "type": "any",
41953
+ "schema": "any"
41954
+ },
41178
41955
  "b24ui": {
41179
41956
  "name": "b24ui",
41180
41957
  "global": false,
@@ -41430,6 +42207,15 @@ const B24UIMeta = {
41430
42207
  "type": "any",
41431
42208
  "schema": "any"
41432
42209
  },
42210
+ "style": {
42211
+ "name": "style",
42212
+ "global": false,
42213
+ "description": "",
42214
+ "tags": [],
42215
+ "required": false,
42216
+ "type": "any",
42217
+ "schema": "any"
42218
+ },
41433
42219
  "b24ui": {
41434
42220
  "name": "b24ui",
41435
42221
  "global": false,
@@ -41685,6 +42471,15 @@ const B24UIMeta = {
41685
42471
  "type": "any",
41686
42472
  "schema": "any"
41687
42473
  },
42474
+ "style": {
42475
+ "name": "style",
42476
+ "global": false,
42477
+ "description": "",
42478
+ "tags": [],
42479
+ "required": false,
42480
+ "type": "any",
42481
+ "schema": "any"
42482
+ },
41688
42483
  "b24ui": {
41689
42484
  "name": "b24ui",
41690
42485
  "global": false,
@@ -42463,6 +43258,15 @@ const B24UIMeta = {
42463
43258
  "type": "any",
42464
43259
  "schema": "any"
42465
43260
  },
43261
+ "style": {
43262
+ "name": "style",
43263
+ "global": false,
43264
+ "description": "",
43265
+ "tags": [],
43266
+ "required": false,
43267
+ "type": "any",
43268
+ "schema": "any"
43269
+ },
42466
43270
  "b24ui": {
42467
43271
  "name": "b24ui",
42468
43272
  "global": false,
@@ -42600,6 +43404,15 @@ const B24UIMeta = {
42600
43404
  }
42601
43405
  }
42602
43406
  },
43407
+ "activeColor": {
43408
+ "name": "activeColor",
43409
+ "global": false,
43410
+ "description": "",
43411
+ "tags": [],
43412
+ "required": false,
43413
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
43414
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
43415
+ },
42603
43416
  "depth": {
42604
43417
  "name": "depth",
42605
43418
  "global": false,
@@ -42623,6 +43436,15 @@ const B24UIMeta = {
42623
43436
  }
42624
43437
  }
42625
43438
  },
43439
+ "activeDepth": {
43440
+ "name": "activeDepth",
43441
+ "global": false,
43442
+ "description": "",
43443
+ "tags": [],
43444
+ "required": false,
43445
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
43446
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
43447
+ },
42626
43448
  "size": {
42627
43449
  "name": "size",
42628
43450
  "global": false,
@@ -42793,6 +43615,34 @@ const B24UIMeta = {
42793
43615
  "type": "any",
42794
43616
  "schema": "any"
42795
43617
  },
43618
+ "activeClass": {
43619
+ "name": "activeClass",
43620
+ "global": false,
43621
+ "description": "The class to apply when the link is active",
43622
+ "tags": [
43623
+ {
43624
+ "name": "defaultValue",
43625
+ "text": "''"
43626
+ }
43627
+ ],
43628
+ "required": false,
43629
+ "type": "string | undefined",
43630
+ "schema": "string | undefined"
43631
+ },
43632
+ "inactiveClass": {
43633
+ "name": "inactiveClass",
43634
+ "global": false,
43635
+ "description": "The class to apply when the link is inactive",
43636
+ "tags": [
43637
+ {
43638
+ "name": "defaultValue",
43639
+ "text": "''"
43640
+ }
43641
+ ],
43642
+ "required": false,
43643
+ "type": "string | undefined",
43644
+ "schema": "string | undefined"
43645
+ },
42796
43646
  "b24ui": {
42797
43647
  "name": "b24ui",
42798
43648
  "global": false,
@@ -42954,6 +43804,15 @@ const B24UIMeta = {
42954
43804
  "type": "any",
42955
43805
  "schema": "any"
42956
43806
  },
43807
+ "style": {
43808
+ "name": "style",
43809
+ "global": false,
43810
+ "description": "",
43811
+ "tags": [],
43812
+ "required": false,
43813
+ "type": "any",
43814
+ "schema": "any"
43815
+ },
42957
43816
  "b24ui": {
42958
43817
  "name": "b24ui",
42959
43818
  "global": false,
@@ -43199,15 +44058,6 @@ const B24UIMeta = {
43199
44058
  }
43200
44059
  }
43201
44060
  },
43202
- "activeClass": {
43203
- "name": "activeClass",
43204
- "global": false,
43205
- "description": "Class to apply when the link is active",
43206
- "tags": [],
43207
- "required": false,
43208
- "type": "string | undefined",
43209
- "schema": "string | undefined"
43210
- },
43211
44061
  "exactActiveClass": {
43212
44062
  "name": "exactActiveClass",
43213
44063
  "global": false,
@@ -43316,15 +44166,6 @@ const B24UIMeta = {
43316
44166
  "type": "boolean | undefined",
43317
44167
  "schema": "boolean | undefined"
43318
44168
  },
43319
- "inactiveClass": {
43320
- "name": "inactiveClass",
43321
- "global": false,
43322
- "description": "The class to apply when the link is inactive.",
43323
- "tags": [],
43324
- "required": false,
43325
- "type": "string | undefined",
43326
- "schema": "string | undefined"
43327
- },
43328
44169
  "isAction": {
43329
44170
  "name": "isAction",
43330
44171
  "global": false,
@@ -44537,13 +45378,13 @@ const B24UIMeta = {
44537
45378
  "exposed": []
44538
45379
  }
44539
45380
  },
44540
- "ProseH1": {
45381
+ "ProseA": {
44541
45382
  "mode": "all",
44542
45383
  "prefetch": false,
44543
45384
  "preload": false,
44544
- "pascalName": "ProseH1",
44545
- "kebabName": "prose-h1",
44546
- "chunkName": "components/prose-h1",
45385
+ "pascalName": "ProseA",
45386
+ "kebabName": "prose-a",
45387
+ "chunkName": "components/prose-a",
44547
45388
  "priority": 0,
44548
45389
  "_scanned": true,
44549
45390
  "meta": {
@@ -44555,13 +45396,13 @@ const B24UIMeta = {
44555
45396
  "description": "",
44556
45397
  "tags": [],
44557
45398
  "required": false,
44558
- "type": "Partial<{ base: string; link: string; }> | undefined",
45399
+ "type": "Partial<{ base: string; }> | undefined",
44559
45400
  "schema": {
44560
45401
  "kind": "enum",
44561
- "type": "Partial<{ base: string; link: string; }> | undefined",
45402
+ "type": "Partial<{ base: string; }> | undefined",
44562
45403
  "schema": {
44563
45404
  "0": "undefined",
44564
- "1": "Partial<{ base: string; link: string; }>"
45405
+ "1": "Partial<{ base: string; }>"
44565
45406
  }
44566
45407
  }
44567
45408
  }
@@ -44582,13 +45423,13 @@ const B24UIMeta = {
44582
45423
  "exposed": []
44583
45424
  }
44584
45425
  },
44585
- "ProseH2": {
45426
+ "ProseBlockquote": {
44586
45427
  "mode": "all",
44587
45428
  "prefetch": false,
44588
45429
  "preload": false,
44589
- "pascalName": "ProseH2",
44590
- "kebabName": "prose-h2",
44591
- "chunkName": "components/prose-h2",
45430
+ "pascalName": "ProseBlockquote",
45431
+ "kebabName": "prose-blockquote",
45432
+ "chunkName": "components/prose-blockquote",
44592
45433
  "priority": 0,
44593
45434
  "_scanned": true,
44594
45435
  "meta": {
@@ -44600,13 +45441,13 @@ const B24UIMeta = {
44600
45441
  "description": "",
44601
45442
  "tags": [],
44602
45443
  "required": false,
44603
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45444
+ "type": "Partial<{ base: string; }> | undefined",
44604
45445
  "schema": {
44605
45446
  "kind": "enum",
44606
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45447
+ "type": "Partial<{ base: string; }> | undefined",
44607
45448
  "schema": {
44608
45449
  "0": "undefined",
44609
- "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45450
+ "1": "Partial<{ base: string; }>"
44610
45451
  }
44611
45452
  }
44612
45453
  }
@@ -44627,31 +45468,59 @@ const B24UIMeta = {
44627
45468
  "exposed": []
44628
45469
  }
44629
45470
  },
44630
- "ProseH3": {
45471
+ "ProseCode": {
44631
45472
  "mode": "all",
44632
45473
  "prefetch": false,
44633
45474
  "preload": false,
44634
- "pascalName": "ProseH3",
44635
- "kebabName": "prose-h3",
44636
- "chunkName": "components/prose-h3",
45475
+ "pascalName": "ProseCode",
45476
+ "kebabName": "prose-code",
45477
+ "chunkName": "components/prose-code",
44637
45478
  "priority": 0,
44638
45479
  "_scanned": true,
44639
45480
  "meta": {
44640
45481
  "type": 0,
44641
45482
  "props": [
45483
+ {
45484
+ "name": "color",
45485
+ "global": false,
45486
+ "description": "",
45487
+ "tags": [
45488
+ {
45489
+ "name": "defaultValue",
45490
+ "text": "'default'"
45491
+ }
45492
+ ],
45493
+ "required": false,
45494
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | undefined",
45495
+ "schema": {
45496
+ "kind": "enum",
45497
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | undefined",
45498
+ "schema": {
45499
+ "0": "undefined",
45500
+ "1": "\"default\"",
45501
+ "2": "\"danger\"",
45502
+ "3": "\"success\"",
45503
+ "4": "\"warning\"",
45504
+ "5": "\"primary\"",
45505
+ "6": "\"secondary\"",
45506
+ "7": "\"collab\"",
45507
+ "8": "\"ai\""
45508
+ }
45509
+ }
45510
+ },
44642
45511
  {
44643
45512
  "name": "b24ui",
44644
45513
  "global": false,
44645
45514
  "description": "",
44646
45515
  "tags": [],
44647
45516
  "required": false,
44648
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45517
+ "type": "Partial<{ base: string; }> | undefined",
44649
45518
  "schema": {
44650
45519
  "kind": "enum",
44651
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45520
+ "type": "Partial<{ base: string; }> | undefined",
44652
45521
  "schema": {
44653
45522
  "0": "undefined",
44654
- "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45523
+ "1": "Partial<{ base: string; }>"
44655
45524
  }
44656
45525
  }
44657
45526
  }
@@ -44672,13 +45541,362 @@ const B24UIMeta = {
44672
45541
  "exposed": []
44673
45542
  }
44674
45543
  },
44675
- "ProseLi": {
45544
+ "ProseEm": {
44676
45545
  "mode": "all",
44677
45546
  "prefetch": false,
44678
45547
  "preload": false,
44679
- "pascalName": "ProseLi",
44680
- "kebabName": "prose-li",
44681
- "chunkName": "components/prose-li",
45548
+ "pascalName": "ProseEm",
45549
+ "kebabName": "prose-em",
45550
+ "chunkName": "components/prose-em",
45551
+ "priority": 0,
45552
+ "_scanned": true,
45553
+ "meta": {
45554
+ "type": 0,
45555
+ "props": [
45556
+ {
45557
+ "name": "b24ui",
45558
+ "global": false,
45559
+ "description": "",
45560
+ "tags": [],
45561
+ "required": false,
45562
+ "type": "Partial<{ base: string; }> | undefined",
45563
+ "schema": {
45564
+ "kind": "enum",
45565
+ "type": "Partial<{ base: string; }> | undefined",
45566
+ "schema": {
45567
+ "0": "undefined",
45568
+ "1": "Partial<{ base: string; }>"
45569
+ }
45570
+ }
45571
+ }
45572
+ ],
45573
+ "slots": [
45574
+ {
45575
+ "name": "default",
45576
+ "type": "{}",
45577
+ "description": "",
45578
+ "schema": {
45579
+ "kind": "object",
45580
+ "type": "{}",
45581
+ "schema": {}
45582
+ }
45583
+ }
45584
+ ],
45585
+ "events": [],
45586
+ "exposed": []
45587
+ }
45588
+ },
45589
+ "ProseH1": {
45590
+ "mode": "all",
45591
+ "prefetch": false,
45592
+ "preload": false,
45593
+ "pascalName": "ProseH1",
45594
+ "kebabName": "prose-h1",
45595
+ "chunkName": "components/prose-h1",
45596
+ "priority": 0,
45597
+ "_scanned": true,
45598
+ "meta": {
45599
+ "type": 0,
45600
+ "props": [
45601
+ {
45602
+ "name": "b24ui",
45603
+ "global": false,
45604
+ "description": "",
45605
+ "tags": [],
45606
+ "required": false,
45607
+ "type": "Partial<{ base: string; link: string; }> | undefined",
45608
+ "schema": {
45609
+ "kind": "enum",
45610
+ "type": "Partial<{ base: string; link: string; }> | undefined",
45611
+ "schema": {
45612
+ "0": "undefined",
45613
+ "1": "Partial<{ base: string; link: string; }>"
45614
+ }
45615
+ }
45616
+ }
45617
+ ],
45618
+ "slots": [
45619
+ {
45620
+ "name": "default",
45621
+ "type": "{}",
45622
+ "description": "",
45623
+ "schema": {
45624
+ "kind": "object",
45625
+ "type": "{}",
45626
+ "schema": {}
45627
+ }
45628
+ }
45629
+ ],
45630
+ "events": [],
45631
+ "exposed": []
45632
+ }
45633
+ },
45634
+ "ProseH2": {
45635
+ "mode": "all",
45636
+ "prefetch": false,
45637
+ "preload": false,
45638
+ "pascalName": "ProseH2",
45639
+ "kebabName": "prose-h2",
45640
+ "chunkName": "components/prose-h2",
45641
+ "priority": 0,
45642
+ "_scanned": true,
45643
+ "meta": {
45644
+ "type": 0,
45645
+ "props": [
45646
+ {
45647
+ "name": "b24ui",
45648
+ "global": false,
45649
+ "description": "",
45650
+ "tags": [],
45651
+ "required": false,
45652
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45653
+ "schema": {
45654
+ "kind": "enum",
45655
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45656
+ "schema": {
45657
+ "0": "undefined",
45658
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45659
+ }
45660
+ }
45661
+ }
45662
+ ],
45663
+ "slots": [
45664
+ {
45665
+ "name": "default",
45666
+ "type": "{}",
45667
+ "description": "",
45668
+ "schema": {
45669
+ "kind": "object",
45670
+ "type": "{}",
45671
+ "schema": {}
45672
+ }
45673
+ }
45674
+ ],
45675
+ "events": [],
45676
+ "exposed": []
45677
+ }
45678
+ },
45679
+ "ProseH3": {
45680
+ "mode": "all",
45681
+ "prefetch": false,
45682
+ "preload": false,
45683
+ "pascalName": "ProseH3",
45684
+ "kebabName": "prose-h3",
45685
+ "chunkName": "components/prose-h3",
45686
+ "priority": 0,
45687
+ "_scanned": true,
45688
+ "meta": {
45689
+ "type": 0,
45690
+ "props": [
45691
+ {
45692
+ "name": "b24ui",
45693
+ "global": false,
45694
+ "description": "",
45695
+ "tags": [],
45696
+ "required": false,
45697
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45698
+ "schema": {
45699
+ "kind": "enum",
45700
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45701
+ "schema": {
45702
+ "0": "undefined",
45703
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45704
+ }
45705
+ }
45706
+ }
45707
+ ],
45708
+ "slots": [
45709
+ {
45710
+ "name": "default",
45711
+ "type": "{}",
45712
+ "description": "",
45713
+ "schema": {
45714
+ "kind": "object",
45715
+ "type": "{}",
45716
+ "schema": {}
45717
+ }
45718
+ }
45719
+ ],
45720
+ "events": [],
45721
+ "exposed": []
45722
+ }
45723
+ },
45724
+ "ProseH4": {
45725
+ "mode": "all",
45726
+ "prefetch": false,
45727
+ "preload": false,
45728
+ "pascalName": "ProseH4",
45729
+ "kebabName": "prose-h4",
45730
+ "chunkName": "components/prose-h4",
45731
+ "priority": 0,
45732
+ "_scanned": true,
45733
+ "meta": {
45734
+ "type": 0,
45735
+ "props": [
45736
+ {
45737
+ "name": "b24ui",
45738
+ "global": false,
45739
+ "description": "",
45740
+ "tags": [],
45741
+ "required": false,
45742
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45743
+ "schema": {
45744
+ "kind": "enum",
45745
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45746
+ "schema": {
45747
+ "0": "undefined",
45748
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45749
+ }
45750
+ }
45751
+ }
45752
+ ],
45753
+ "slots": [
45754
+ {
45755
+ "name": "default",
45756
+ "type": "{}",
45757
+ "description": "",
45758
+ "schema": {
45759
+ "kind": "object",
45760
+ "type": "{}",
45761
+ "schema": {}
45762
+ }
45763
+ }
45764
+ ],
45765
+ "events": [],
45766
+ "exposed": []
45767
+ }
45768
+ },
45769
+ "ProseH5": {
45770
+ "mode": "all",
45771
+ "prefetch": false,
45772
+ "preload": false,
45773
+ "pascalName": "ProseH5",
45774
+ "kebabName": "prose-h5",
45775
+ "chunkName": "components/prose-h5",
45776
+ "priority": 0,
45777
+ "_scanned": true,
45778
+ "meta": {
45779
+ "type": 0,
45780
+ "props": [
45781
+ {
45782
+ "name": "b24ui",
45783
+ "global": false,
45784
+ "description": "",
45785
+ "tags": [],
45786
+ "required": false,
45787
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45788
+ "schema": {
45789
+ "kind": "enum",
45790
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45791
+ "schema": {
45792
+ "0": "undefined",
45793
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45794
+ }
45795
+ }
45796
+ }
45797
+ ],
45798
+ "slots": [
45799
+ {
45800
+ "name": "default",
45801
+ "type": "{}",
45802
+ "description": "",
45803
+ "schema": {
45804
+ "kind": "object",
45805
+ "type": "{}",
45806
+ "schema": {}
45807
+ }
45808
+ }
45809
+ ],
45810
+ "events": [],
45811
+ "exposed": []
45812
+ }
45813
+ },
45814
+ "ProseH6": {
45815
+ "mode": "all",
45816
+ "prefetch": false,
45817
+ "preload": false,
45818
+ "pascalName": "ProseH6",
45819
+ "kebabName": "prose-h6",
45820
+ "chunkName": "components/prose-h6",
45821
+ "priority": 0,
45822
+ "_scanned": true,
45823
+ "meta": {
45824
+ "type": 0,
45825
+ "props": [
45826
+ {
45827
+ "name": "b24ui",
45828
+ "global": false,
45829
+ "description": "",
45830
+ "tags": [],
45831
+ "required": false,
45832
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45833
+ "schema": {
45834
+ "kind": "enum",
45835
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45836
+ "schema": {
45837
+ "0": "undefined",
45838
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45839
+ }
45840
+ }
45841
+ }
45842
+ ],
45843
+ "slots": [
45844
+ {
45845
+ "name": "default",
45846
+ "type": "{}",
45847
+ "description": "",
45848
+ "schema": {
45849
+ "kind": "object",
45850
+ "type": "{}",
45851
+ "schema": {}
45852
+ }
45853
+ }
45854
+ ],
45855
+ "events": [],
45856
+ "exposed": []
45857
+ }
45858
+ },
45859
+ "ProseHr": {
45860
+ "mode": "all",
45861
+ "prefetch": false,
45862
+ "preload": false,
45863
+ "pascalName": "ProseHr",
45864
+ "kebabName": "prose-hr",
45865
+ "chunkName": "components/prose-hr",
45866
+ "priority": 0,
45867
+ "_scanned": true,
45868
+ "meta": {
45869
+ "type": 0,
45870
+ "props": [
45871
+ {
45872
+ "name": "b24ui",
45873
+ "global": false,
45874
+ "description": "",
45875
+ "tags": [],
45876
+ "required": false,
45877
+ "type": "Partial<{ base: string; }> | undefined",
45878
+ "schema": {
45879
+ "kind": "enum",
45880
+ "type": "Partial<{ base: string; }> | undefined",
45881
+ "schema": {
45882
+ "0": "undefined",
45883
+ "1": "Partial<{ base: string; }>"
45884
+ }
45885
+ }
45886
+ }
45887
+ ],
45888
+ "slots": [],
45889
+ "events": [],
45890
+ "exposed": []
45891
+ }
45892
+ },
45893
+ "ProseLi": {
45894
+ "mode": "all",
45895
+ "prefetch": false,
45896
+ "preload": false,
45897
+ "pascalName": "ProseLi",
45898
+ "kebabName": "prose-li",
45899
+ "chunkName": "components/prose-li",
44682
45900
  "priority": 0,
44683
45901
  "_scanned": true,
44684
45902
  "meta": {
@@ -44807,6 +46025,111 @@ const B24UIMeta = {
44807
46025
  "exposed": []
44808
46026
  }
44809
46027
  },
46028
+ "ProsePre": {
46029
+ "mode": "all",
46030
+ "prefetch": false,
46031
+ "preload": false,
46032
+ "pascalName": "ProsePre",
46033
+ "kebabName": "prose-pre",
46034
+ "chunkName": "components/prose-pre",
46035
+ "priority": 0,
46036
+ "_scanned": true,
46037
+ "meta": {
46038
+ "type": 0,
46039
+ "props": [
46040
+ {
46041
+ "name": "as",
46042
+ "global": false,
46043
+ "description": "The element or component this component should render as.",
46044
+ "tags": [
46045
+ {
46046
+ "name": "defaultValue",
46047
+ "text": "'div'"
46048
+ }
46049
+ ],
46050
+ "required": false,
46051
+ "type": "any",
46052
+ "schema": "any",
46053
+ "default": "\"div\""
46054
+ },
46055
+ {
46056
+ "name": "b24ui",
46057
+ "global": false,
46058
+ "description": "",
46059
+ "tags": [],
46060
+ "required": false,
46061
+ "type": "Partial<{ root: string; base: string; }> | undefined",
46062
+ "schema": {
46063
+ "kind": "enum",
46064
+ "type": "Partial<{ root: string; base: string; }> | undefined",
46065
+ "schema": {
46066
+ "0": "undefined",
46067
+ "1": "Partial<{ root: string; base: string; }>"
46068
+ }
46069
+ }
46070
+ }
46071
+ ],
46072
+ "slots": [
46073
+ {
46074
+ "name": "default",
46075
+ "type": "{}",
46076
+ "description": "",
46077
+ "schema": {
46078
+ "kind": "object",
46079
+ "type": "{}",
46080
+ "schema": {}
46081
+ }
46082
+ }
46083
+ ],
46084
+ "events": [],
46085
+ "exposed": []
46086
+ }
46087
+ },
46088
+ "ProseStrong": {
46089
+ "mode": "all",
46090
+ "prefetch": false,
46091
+ "preload": false,
46092
+ "pascalName": "ProseStrong",
46093
+ "kebabName": "prose-strong",
46094
+ "chunkName": "components/prose-strong",
46095
+ "priority": 0,
46096
+ "_scanned": true,
46097
+ "meta": {
46098
+ "type": 0,
46099
+ "props": [
46100
+ {
46101
+ "name": "b24ui",
46102
+ "global": false,
46103
+ "description": "",
46104
+ "tags": [],
46105
+ "required": false,
46106
+ "type": "Partial<{ base: string; }> | undefined",
46107
+ "schema": {
46108
+ "kind": "enum",
46109
+ "type": "Partial<{ base: string; }> | undefined",
46110
+ "schema": {
46111
+ "0": "undefined",
46112
+ "1": "Partial<{ base: string; }>"
46113
+ }
46114
+ }
46115
+ }
46116
+ ],
46117
+ "slots": [
46118
+ {
46119
+ "name": "default",
46120
+ "type": "{}",
46121
+ "description": "",
46122
+ "schema": {
46123
+ "kind": "object",
46124
+ "type": "{}",
46125
+ "schema": {}
46126
+ }
46127
+ }
46128
+ ],
46129
+ "events": [],
46130
+ "exposed": []
46131
+ }
46132
+ },
44810
46133
  "ProseUl": {
44811
46134
  "mode": "all",
44812
46135
  "prefetch": false,