@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.d.ts CHANGED
@@ -235,6 +235,15 @@ var B24UIMeta = {
235
235
  "type": "any",
236
236
  "schema": "any"
237
237
  },
238
+ "style": {
239
+ "name": "style",
240
+ "global": false,
241
+ "description": "",
242
+ "tags": [],
243
+ "required": false,
244
+ "type": "any",
245
+ "schema": "any"
246
+ },
238
247
  "b24ui": {
239
248
  "name": "b24ui",
240
249
  "global": false,
@@ -505,6 +514,15 @@ var B24UIMeta = {
505
514
  "type": "any",
506
515
  "schema": "any"
507
516
  },
517
+ "style": {
518
+ "name": "style",
519
+ "global": false,
520
+ "description": "",
521
+ "tags": [],
522
+ "required": false,
523
+ "type": "any",
524
+ "schema": "any"
525
+ },
508
526
  "b24ui": {
509
527
  "name": "b24ui",
510
528
  "global": false,
@@ -664,6 +682,15 @@ var B24UIMeta = {
664
682
  }
665
683
  }
666
684
  },
685
+ "activeColor": {
686
+ "name": "activeColor",
687
+ "global": false,
688
+ "description": "",
689
+ "tags": [],
690
+ "required": false,
691
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
692
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
693
+ },
667
694
  "depth": {
668
695
  "name": "depth",
669
696
  "global": false,
@@ -687,6 +714,15 @@ var B24UIMeta = {
687
714
  }
688
715
  }
689
716
  },
717
+ "activeDepth": {
718
+ "name": "activeDepth",
719
+ "global": false,
720
+ "description": "",
721
+ "tags": [],
722
+ "required": false,
723
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
724
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
725
+ },
690
726
  "size": {
691
727
  "name": "size",
692
728
  "global": false,
@@ -857,6 +893,34 @@ var B24UIMeta = {
857
893
  "type": "any",
858
894
  "schema": "any"
859
895
  },
896
+ "activeClass": {
897
+ "name": "activeClass",
898
+ "global": false,
899
+ "description": "The class to apply when the link is active",
900
+ "tags": [
901
+ {
902
+ "name": "defaultValue",
903
+ "text": "''"
904
+ }
905
+ ],
906
+ "required": false,
907
+ "type": "string | undefined",
908
+ "schema": "string | undefined"
909
+ },
910
+ "inactiveClass": {
911
+ "name": "inactiveClass",
912
+ "global": false,
913
+ "description": "The class to apply when the link is inactive",
914
+ "tags": [
915
+ {
916
+ "name": "defaultValue",
917
+ "text": "''"
918
+ }
919
+ ],
920
+ "required": false,
921
+ "type": "string | undefined",
922
+ "schema": "string | undefined"
923
+ },
860
924
  "b24ui": {
861
925
  "name": "b24ui",
862
926
  "global": false,
@@ -1018,6 +1082,15 @@ var B24UIMeta = {
1018
1082
  "type": "any",
1019
1083
  "schema": "any"
1020
1084
  },
1085
+ "style": {
1086
+ "name": "style",
1087
+ "global": false,
1088
+ "description": "",
1089
+ "tags": [],
1090
+ "required": false,
1091
+ "type": "any",
1092
+ "schema": "any"
1093
+ },
1021
1094
  "b24ui": {
1022
1095
  "name": "b24ui",
1023
1096
  "global": false,
@@ -1263,15 +1336,6 @@ var B24UIMeta = {
1263
1336
  }
1264
1337
  }
1265
1338
  },
1266
- "activeClass": {
1267
- "name": "activeClass",
1268
- "global": false,
1269
- "description": "Class to apply when the link is active",
1270
- "tags": [],
1271
- "required": false,
1272
- "type": "string | undefined",
1273
- "schema": "string | undefined"
1274
- },
1275
1339
  "exactActiveClass": {
1276
1340
  "name": "exactActiveClass",
1277
1341
  "global": false,
@@ -1380,15 +1444,6 @@ var B24UIMeta = {
1380
1444
  "type": "boolean | undefined",
1381
1445
  "schema": "boolean | undefined"
1382
1446
  },
1383
- "inactiveClass": {
1384
- "name": "inactiveClass",
1385
- "global": false,
1386
- "description": "The class to apply when the link is inactive.",
1387
- "tags": [],
1388
- "required": false,
1389
- "type": "string | undefined",
1390
- "schema": "string | undefined"
1391
- },
1392
1447
  "isAction": {
1393
1448
  "name": "isAction",
1394
1449
  "global": false,
@@ -3156,6 +3211,15 @@ var B24UIMeta = {
3156
3211
  "type": "any",
3157
3212
  "schema": "any"
3158
3213
  },
3214
+ "style": {
3215
+ "name": "style",
3216
+ "global": false,
3217
+ "description": "",
3218
+ "tags": [],
3219
+ "required": false,
3220
+ "type": "any",
3221
+ "schema": "any"
3222
+ },
3159
3223
  "b24ui": {
3160
3224
  "name": "b24ui",
3161
3225
  "global": false,
@@ -3292,6 +3356,30 @@ var B24UIMeta = {
3292
3356
  }
3293
3357
  }
3294
3358
  },
3359
+ {
3360
+ "name": "activeColor",
3361
+ "global": false,
3362
+ "description": "",
3363
+ "tags": [],
3364
+ "required": false,
3365
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
3366
+ "schema": {
3367
+ "kind": "enum",
3368
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
3369
+ "schema": {
3370
+ "0": "undefined",
3371
+ "1": "\"default\"",
3372
+ "2": "\"danger\"",
3373
+ "3": "\"success\"",
3374
+ "4": "\"warning\"",
3375
+ "5": "\"primary\"",
3376
+ "6": "\"secondary\"",
3377
+ "7": "\"collab\"",
3378
+ "8": "\"ai\"",
3379
+ "9": "\"link\""
3380
+ }
3381
+ }
3382
+ },
3295
3383
  {
3296
3384
  "name": "depth",
3297
3385
  "global": false,
@@ -3315,6 +3403,24 @@ var B24UIMeta = {
3315
3403
  }
3316
3404
  }
3317
3405
  },
3406
+ {
3407
+ "name": "activeDepth",
3408
+ "global": false,
3409
+ "description": "",
3410
+ "tags": [],
3411
+ "required": false,
3412
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
3413
+ "schema": {
3414
+ "kind": "enum",
3415
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
3416
+ "schema": {
3417
+ "0": "undefined",
3418
+ "1": "\"light\"",
3419
+ "2": "\"normal\"",
3420
+ "3": "\"dark\""
3421
+ }
3422
+ }
3423
+ },
3318
3424
  {
3319
3425
  "name": "size",
3320
3426
  "global": false,
@@ -3493,6 +3599,50 @@ var B24UIMeta = {
3493
3599
  }
3494
3600
  }
3495
3601
  },
3602
+ {
3603
+ "name": "activeClass",
3604
+ "global": false,
3605
+ "description": "The class to apply when the link is active",
3606
+ "tags": [
3607
+ {
3608
+ "name": "defaultValue",
3609
+ "text": "''"
3610
+ }
3611
+ ],
3612
+ "required": false,
3613
+ "type": "string | undefined",
3614
+ "schema": {
3615
+ "kind": "enum",
3616
+ "type": "string | undefined",
3617
+ "schema": {
3618
+ "0": "undefined",
3619
+ "1": "string"
3620
+ }
3621
+ },
3622
+ "default": "\"\""
3623
+ },
3624
+ {
3625
+ "name": "inactiveClass",
3626
+ "global": false,
3627
+ "description": "The class to apply when the link is inactive",
3628
+ "tags": [
3629
+ {
3630
+ "name": "defaultValue",
3631
+ "text": "''"
3632
+ }
3633
+ ],
3634
+ "required": false,
3635
+ "type": "string | undefined",
3636
+ "schema": {
3637
+ "kind": "enum",
3638
+ "type": "string | undefined",
3639
+ "schema": {
3640
+ "0": "undefined",
3641
+ "1": "string"
3642
+ }
3643
+ },
3644
+ "default": "\"\""
3645
+ },
3496
3646
  {
3497
3647
  "name": "b24ui",
3498
3648
  "global": false,
@@ -3680,6 +3830,15 @@ var B24UIMeta = {
3680
3830
  "type": "any",
3681
3831
  "schema": "any"
3682
3832
  },
3833
+ "style": {
3834
+ "name": "style",
3835
+ "global": false,
3836
+ "description": "",
3837
+ "tags": [],
3838
+ "required": false,
3839
+ "type": "any",
3840
+ "schema": "any"
3841
+ },
3683
3842
  "b24ui": {
3684
3843
  "name": "b24ui",
3685
3844
  "global": false,
@@ -3941,22 +4100,6 @@ var B24UIMeta = {
3941
4100
  }
3942
4101
  }
3943
4102
  },
3944
- {
3945
- "name": "activeClass",
3946
- "global": false,
3947
- "description": "Class to apply when the link is active",
3948
- "tags": [],
3949
- "required": false,
3950
- "type": "string | undefined",
3951
- "schema": {
3952
- "kind": "enum",
3953
- "type": "string | undefined",
3954
- "schema": {
3955
- "0": "undefined",
3956
- "1": "string"
3957
- }
3958
- }
3959
- },
3960
4103
  {
3961
4104
  "name": "exactActiveClass",
3962
4105
  "global": false,
@@ -4066,7 +4209,8 @@ var B24UIMeta = {
4066
4209
  "1": "false",
4067
4210
  "2": "true"
4068
4211
  }
4069
- }
4212
+ },
4213
+ "default": "undefined"
4070
4214
  },
4071
4215
  {
4072
4216
  "name": "exact",
@@ -4120,22 +4264,6 @@ var B24UIMeta = {
4120
4264
  }
4121
4265
  }
4122
4266
  },
4123
- {
4124
- "name": "inactiveClass",
4125
- "global": false,
4126
- "description": "The class to apply when the link is inactive.",
4127
- "tags": [],
4128
- "required": false,
4129
- "type": "string | undefined",
4130
- "schema": {
4131
- "kind": "enum",
4132
- "type": "string | undefined",
4133
- "schema": {
4134
- "0": "undefined",
4135
- "1": "string"
4136
- }
4137
- }
4138
- },
4139
4267
  {
4140
4268
  "name": "isAction",
4141
4269
  "global": false,
@@ -5678,6 +5806,15 @@ var B24UIMeta = {
5678
5806
  "type": "any",
5679
5807
  "schema": "any"
5680
5808
  },
5809
+ "style": {
5810
+ "name": "style",
5811
+ "global": false,
5812
+ "description": "",
5813
+ "tags": [],
5814
+ "required": false,
5815
+ "type": "any",
5816
+ "schema": "any"
5817
+ },
5681
5818
  "b24ui": {
5682
5819
  "name": "b24ui",
5683
5820
  "global": false,
@@ -6089,6 +6226,15 @@ var B24UIMeta = {
6089
6226
  "type": "any",
6090
6227
  "schema": "any"
6091
6228
  },
6229
+ "style": {
6230
+ "name": "style",
6231
+ "global": false,
6232
+ "description": "",
6233
+ "tags": [],
6234
+ "required": false,
6235
+ "type": "any",
6236
+ "schema": "any"
6237
+ },
6092
6238
  "b24ui": {
6093
6239
  "name": "b24ui",
6094
6240
  "global": false,
@@ -6208,6 +6354,15 @@ var B24UIMeta = {
6208
6354
  }
6209
6355
  }
6210
6356
  },
6357
+ "activeColor": {
6358
+ "name": "activeColor",
6359
+ "global": false,
6360
+ "description": "",
6361
+ "tags": [],
6362
+ "required": false,
6363
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
6364
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
6365
+ },
6211
6366
  "depth": {
6212
6367
  "name": "depth",
6213
6368
  "global": false,
@@ -6231,6 +6386,15 @@ var B24UIMeta = {
6231
6386
  }
6232
6387
  }
6233
6388
  },
6389
+ "activeDepth": {
6390
+ "name": "activeDepth",
6391
+ "global": false,
6392
+ "description": "",
6393
+ "tags": [],
6394
+ "required": false,
6395
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
6396
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
6397
+ },
6234
6398
  "size": {
6235
6399
  "name": "size",
6236
6400
  "global": false,
@@ -6401,6 +6565,34 @@ var B24UIMeta = {
6401
6565
  "type": "any",
6402
6566
  "schema": "any"
6403
6567
  },
6568
+ "activeClass": {
6569
+ "name": "activeClass",
6570
+ "global": false,
6571
+ "description": "The class to apply when the link is active",
6572
+ "tags": [
6573
+ {
6574
+ "name": "defaultValue",
6575
+ "text": "''"
6576
+ }
6577
+ ],
6578
+ "required": false,
6579
+ "type": "string | undefined",
6580
+ "schema": "string | undefined"
6581
+ },
6582
+ "inactiveClass": {
6583
+ "name": "inactiveClass",
6584
+ "global": false,
6585
+ "description": "The class to apply when the link is inactive",
6586
+ "tags": [
6587
+ {
6588
+ "name": "defaultValue",
6589
+ "text": "''"
6590
+ }
6591
+ ],
6592
+ "required": false,
6593
+ "type": "string | undefined",
6594
+ "schema": "string | undefined"
6595
+ },
6404
6596
  "b24ui": {
6405
6597
  "name": "b24ui",
6406
6598
  "global": false,
@@ -6676,15 +6868,6 @@ var B24UIMeta = {
6676
6868
  }
6677
6869
  }
6678
6870
  },
6679
- "activeClass": {
6680
- "name": "activeClass",
6681
- "global": false,
6682
- "description": "Class to apply when the link is active",
6683
- "tags": [],
6684
- "required": false,
6685
- "type": "string | undefined",
6686
- "schema": "string | undefined"
6687
- },
6688
6871
  "exactActiveClass": {
6689
6872
  "name": "exactActiveClass",
6690
6873
  "global": false,
@@ -6793,15 +6976,6 @@ var B24UIMeta = {
6793
6976
  "type": "boolean | undefined",
6794
6977
  "schema": "boolean | undefined"
6795
6978
  },
6796
- "inactiveClass": {
6797
- "name": "inactiveClass",
6798
- "global": false,
6799
- "description": "The class to apply when the link is inactive.",
6800
- "tags": [],
6801
- "required": false,
6802
- "type": "string | undefined",
6803
- "schema": "string | undefined"
6804
- },
6805
6979
  "isAction": {
6806
6980
  "name": "isAction",
6807
6981
  "global": false,
@@ -7210,6 +7384,15 @@ var B24UIMeta = {
7210
7384
  "type": "any",
7211
7385
  "schema": "any"
7212
7386
  },
7387
+ "style": {
7388
+ "name": "style",
7389
+ "global": false,
7390
+ "description": "",
7391
+ "tags": [],
7392
+ "required": false,
7393
+ "type": "any",
7394
+ "schema": "any"
7395
+ },
7213
7396
  "b24ui": {
7214
7397
  "name": "b24ui",
7215
7398
  "global": false,
@@ -7329,6 +7512,15 @@ var B24UIMeta = {
7329
7512
  }
7330
7513
  }
7331
7514
  },
7515
+ "activeColor": {
7516
+ "name": "activeColor",
7517
+ "global": false,
7518
+ "description": "",
7519
+ "tags": [],
7520
+ "required": false,
7521
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
7522
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
7523
+ },
7332
7524
  "depth": {
7333
7525
  "name": "depth",
7334
7526
  "global": false,
@@ -7352,6 +7544,15 @@ var B24UIMeta = {
7352
7544
  }
7353
7545
  }
7354
7546
  },
7547
+ "activeDepth": {
7548
+ "name": "activeDepth",
7549
+ "global": false,
7550
+ "description": "",
7551
+ "tags": [],
7552
+ "required": false,
7553
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
7554
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
7555
+ },
7355
7556
  "size": {
7356
7557
  "name": "size",
7357
7558
  "global": false,
@@ -7522,6 +7723,34 @@ var B24UIMeta = {
7522
7723
  "type": "any",
7523
7724
  "schema": "any"
7524
7725
  },
7726
+ "activeClass": {
7727
+ "name": "activeClass",
7728
+ "global": false,
7729
+ "description": "The class to apply when the link is active",
7730
+ "tags": [
7731
+ {
7732
+ "name": "defaultValue",
7733
+ "text": "''"
7734
+ }
7735
+ ],
7736
+ "required": false,
7737
+ "type": "string | undefined",
7738
+ "schema": "string | undefined"
7739
+ },
7740
+ "inactiveClass": {
7741
+ "name": "inactiveClass",
7742
+ "global": false,
7743
+ "description": "The class to apply when the link is inactive",
7744
+ "tags": [
7745
+ {
7746
+ "name": "defaultValue",
7747
+ "text": "''"
7748
+ }
7749
+ ],
7750
+ "required": false,
7751
+ "type": "string | undefined",
7752
+ "schema": "string | undefined"
7753
+ },
7525
7754
  "b24ui": {
7526
7755
  "name": "b24ui",
7527
7756
  "global": false,
@@ -7797,15 +8026,6 @@ var B24UIMeta = {
7797
8026
  }
7798
8027
  }
7799
8028
  },
7800
- "activeClass": {
7801
- "name": "activeClass",
7802
- "global": false,
7803
- "description": "Class to apply when the link is active",
7804
- "tags": [],
7805
- "required": false,
7806
- "type": "string | undefined",
7807
- "schema": "string | undefined"
7808
- },
7809
8029
  "exactActiveClass": {
7810
8030
  "name": "exactActiveClass",
7811
8031
  "global": false,
@@ -7914,15 +8134,6 @@ var B24UIMeta = {
7914
8134
  "type": "boolean | undefined",
7915
8135
  "schema": "boolean | undefined"
7916
8136
  },
7917
- "inactiveClass": {
7918
- "name": "inactiveClass",
7919
- "global": false,
7920
- "description": "The class to apply when the link is inactive.",
7921
- "tags": [],
7922
- "required": false,
7923
- "type": "string | undefined",
7924
- "schema": "string | undefined"
7925
- },
7926
8137
  "isAction": {
7927
8138
  "name": "isAction",
7928
8139
  "global": false,
@@ -8265,6 +8476,15 @@ var B24UIMeta = {
8265
8476
  "type": "any",
8266
8477
  "schema": "any"
8267
8478
  },
8479
+ "style": {
8480
+ "name": "style",
8481
+ "global": false,
8482
+ "description": "",
8483
+ "tags": [],
8484
+ "required": false,
8485
+ "type": "any",
8486
+ "schema": "any"
8487
+ },
8268
8488
  "b24ui": {
8269
8489
  "name": "b24ui",
8270
8490
  "global": false,
@@ -8384,6 +8604,15 @@ var B24UIMeta = {
8384
8604
  }
8385
8605
  }
8386
8606
  },
8607
+ "activeColor": {
8608
+ "name": "activeColor",
8609
+ "global": false,
8610
+ "description": "",
8611
+ "tags": [],
8612
+ "required": false,
8613
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
8614
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
8615
+ },
8387
8616
  "depth": {
8388
8617
  "name": "depth",
8389
8618
  "global": false,
@@ -8407,6 +8636,15 @@ var B24UIMeta = {
8407
8636
  }
8408
8637
  }
8409
8638
  },
8639
+ "activeDepth": {
8640
+ "name": "activeDepth",
8641
+ "global": false,
8642
+ "description": "",
8643
+ "tags": [],
8644
+ "required": false,
8645
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
8646
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
8647
+ },
8410
8648
  "size": {
8411
8649
  "name": "size",
8412
8650
  "global": false,
@@ -8577,6 +8815,34 @@ var B24UIMeta = {
8577
8815
  "type": "any",
8578
8816
  "schema": "any"
8579
8817
  },
8818
+ "activeClass": {
8819
+ "name": "activeClass",
8820
+ "global": false,
8821
+ "description": "The class to apply when the link is active",
8822
+ "tags": [
8823
+ {
8824
+ "name": "defaultValue",
8825
+ "text": "''"
8826
+ }
8827
+ ],
8828
+ "required": false,
8829
+ "type": "string | undefined",
8830
+ "schema": "string | undefined"
8831
+ },
8832
+ "inactiveClass": {
8833
+ "name": "inactiveClass",
8834
+ "global": false,
8835
+ "description": "The class to apply when the link is inactive",
8836
+ "tags": [
8837
+ {
8838
+ "name": "defaultValue",
8839
+ "text": "''"
8840
+ }
8841
+ ],
8842
+ "required": false,
8843
+ "type": "string | undefined",
8844
+ "schema": "string | undefined"
8845
+ },
8580
8846
  "b24ui": {
8581
8847
  "name": "b24ui",
8582
8848
  "global": false,
@@ -8852,15 +9118,6 @@ var B24UIMeta = {
8852
9118
  }
8853
9119
  }
8854
9120
  },
8855
- "activeClass": {
8856
- "name": "activeClass",
8857
- "global": false,
8858
- "description": "Class to apply when the link is active",
8859
- "tags": [],
8860
- "required": false,
8861
- "type": "string | undefined",
8862
- "schema": "string | undefined"
8863
- },
8864
9121
  "exactActiveClass": {
8865
9122
  "name": "exactActiveClass",
8866
9123
  "global": false,
@@ -8969,15 +9226,6 @@ var B24UIMeta = {
8969
9226
  "type": "boolean | undefined",
8970
9227
  "schema": "boolean | undefined"
8971
9228
  },
8972
- "inactiveClass": {
8973
- "name": "inactiveClass",
8974
- "global": false,
8975
- "description": "The class to apply when the link is inactive.",
8976
- "tags": [],
8977
- "required": false,
8978
- "type": "string | undefined",
8979
- "schema": "string | undefined"
8980
- },
8981
9229
  "isAction": {
8982
9230
  "name": "isAction",
8983
9231
  "global": false,
@@ -9320,6 +9568,15 @@ var B24UIMeta = {
9320
9568
  "type": "any",
9321
9569
  "schema": "any"
9322
9570
  },
9571
+ "style": {
9572
+ "name": "style",
9573
+ "global": false,
9574
+ "description": "",
9575
+ "tags": [],
9576
+ "required": false,
9577
+ "type": "any",
9578
+ "schema": "any"
9579
+ },
9323
9580
  "b24ui": {
9324
9581
  "name": "b24ui",
9325
9582
  "global": false,
@@ -9439,6 +9696,15 @@ var B24UIMeta = {
9439
9696
  }
9440
9697
  }
9441
9698
  },
9699
+ "activeColor": {
9700
+ "name": "activeColor",
9701
+ "global": false,
9702
+ "description": "",
9703
+ "tags": [],
9704
+ "required": false,
9705
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
9706
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
9707
+ },
9442
9708
  "depth": {
9443
9709
  "name": "depth",
9444
9710
  "global": false,
@@ -9462,6 +9728,15 @@ var B24UIMeta = {
9462
9728
  }
9463
9729
  }
9464
9730
  },
9731
+ "activeDepth": {
9732
+ "name": "activeDepth",
9733
+ "global": false,
9734
+ "description": "",
9735
+ "tags": [],
9736
+ "required": false,
9737
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
9738
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
9739
+ },
9465
9740
  "size": {
9466
9741
  "name": "size",
9467
9742
  "global": false,
@@ -9632,6 +9907,34 @@ var B24UIMeta = {
9632
9907
  "type": "any",
9633
9908
  "schema": "any"
9634
9909
  },
9910
+ "activeClass": {
9911
+ "name": "activeClass",
9912
+ "global": false,
9913
+ "description": "The class to apply when the link is active",
9914
+ "tags": [
9915
+ {
9916
+ "name": "defaultValue",
9917
+ "text": "''"
9918
+ }
9919
+ ],
9920
+ "required": false,
9921
+ "type": "string | undefined",
9922
+ "schema": "string | undefined"
9923
+ },
9924
+ "inactiveClass": {
9925
+ "name": "inactiveClass",
9926
+ "global": false,
9927
+ "description": "The class to apply when the link is inactive",
9928
+ "tags": [
9929
+ {
9930
+ "name": "defaultValue",
9931
+ "text": "''"
9932
+ }
9933
+ ],
9934
+ "required": false,
9935
+ "type": "string | undefined",
9936
+ "schema": "string | undefined"
9937
+ },
9635
9938
  "b24ui": {
9636
9939
  "name": "b24ui",
9637
9940
  "global": false,
@@ -9907,15 +10210,6 @@ var B24UIMeta = {
9907
10210
  }
9908
10211
  }
9909
10212
  },
9910
- "activeClass": {
9911
- "name": "activeClass",
9912
- "global": false,
9913
- "description": "Class to apply when the link is active",
9914
- "tags": [],
9915
- "required": false,
9916
- "type": "string | undefined",
9917
- "schema": "string | undefined"
9918
- },
9919
10213
  "exactActiveClass": {
9920
10214
  "name": "exactActiveClass",
9921
10215
  "global": false,
@@ -10024,15 +10318,6 @@ var B24UIMeta = {
10024
10318
  "type": "boolean | undefined",
10025
10319
  "schema": "boolean | undefined"
10026
10320
  },
10027
- "inactiveClass": {
10028
- "name": "inactiveClass",
10029
- "global": false,
10030
- "description": "The class to apply when the link is inactive.",
10031
- "tags": [],
10032
- "required": false,
10033
- "type": "string | undefined",
10034
- "schema": "string | undefined"
10035
- },
10036
10321
  "isAction": {
10037
10322
  "name": "isAction",
10038
10323
  "global": false,
@@ -10375,6 +10660,15 @@ var B24UIMeta = {
10375
10660
  "type": "any",
10376
10661
  "schema": "any"
10377
10662
  },
10663
+ "style": {
10664
+ "name": "style",
10665
+ "global": false,
10666
+ "description": "",
10667
+ "tags": [],
10668
+ "required": false,
10669
+ "type": "any",
10670
+ "schema": "any"
10671
+ },
10378
10672
  "b24ui": {
10379
10673
  "name": "b24ui",
10380
10674
  "global": false,
@@ -10494,6 +10788,15 @@ var B24UIMeta = {
10494
10788
  }
10495
10789
  }
10496
10790
  },
10791
+ "activeColor": {
10792
+ "name": "activeColor",
10793
+ "global": false,
10794
+ "description": "",
10795
+ "tags": [],
10796
+ "required": false,
10797
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
10798
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
10799
+ },
10497
10800
  "depth": {
10498
10801
  "name": "depth",
10499
10802
  "global": false,
@@ -10517,6 +10820,15 @@ var B24UIMeta = {
10517
10820
  }
10518
10821
  }
10519
10822
  },
10823
+ "activeDepth": {
10824
+ "name": "activeDepth",
10825
+ "global": false,
10826
+ "description": "",
10827
+ "tags": [],
10828
+ "required": false,
10829
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
10830
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
10831
+ },
10520
10832
  "size": {
10521
10833
  "name": "size",
10522
10834
  "global": false,
@@ -10687,6 +10999,34 @@ var B24UIMeta = {
10687
10999
  "type": "any",
10688
11000
  "schema": "any"
10689
11001
  },
11002
+ "activeClass": {
11003
+ "name": "activeClass",
11004
+ "global": false,
11005
+ "description": "The class to apply when the link is active",
11006
+ "tags": [
11007
+ {
11008
+ "name": "defaultValue",
11009
+ "text": "''"
11010
+ }
11011
+ ],
11012
+ "required": false,
11013
+ "type": "string | undefined",
11014
+ "schema": "string | undefined"
11015
+ },
11016
+ "inactiveClass": {
11017
+ "name": "inactiveClass",
11018
+ "global": false,
11019
+ "description": "The class to apply when the link is inactive",
11020
+ "tags": [
11021
+ {
11022
+ "name": "defaultValue",
11023
+ "text": "''"
11024
+ }
11025
+ ],
11026
+ "required": false,
11027
+ "type": "string | undefined",
11028
+ "schema": "string | undefined"
11029
+ },
10690
11030
  "b24ui": {
10691
11031
  "name": "b24ui",
10692
11032
  "global": false,
@@ -10962,15 +11302,6 @@ var B24UIMeta = {
10962
11302
  }
10963
11303
  }
10964
11304
  },
10965
- "activeClass": {
10966
- "name": "activeClass",
10967
- "global": false,
10968
- "description": "Class to apply when the link is active",
10969
- "tags": [],
10970
- "required": false,
10971
- "type": "string | undefined",
10972
- "schema": "string | undefined"
10973
- },
10974
11305
  "exactActiveClass": {
10975
11306
  "name": "exactActiveClass",
10976
11307
  "global": false,
@@ -11079,15 +11410,6 @@ var B24UIMeta = {
11079
11410
  "type": "boolean | undefined",
11080
11411
  "schema": "boolean | undefined"
11081
11412
  },
11082
- "inactiveClass": {
11083
- "name": "inactiveClass",
11084
- "global": false,
11085
- "description": "The class to apply when the link is inactive.",
11086
- "tags": [],
11087
- "required": false,
11088
- "type": "string | undefined",
11089
- "schema": "string | undefined"
11090
- },
11091
11413
  "isAction": {
11092
11414
  "name": "isAction",
11093
11415
  "global": false,
@@ -11522,6 +11844,15 @@ var B24UIMeta = {
11522
11844
  "type": "any",
11523
11845
  "schema": "any"
11524
11846
  },
11847
+ "style": {
11848
+ "name": "style",
11849
+ "global": false,
11850
+ "description": "",
11851
+ "tags": [],
11852
+ "required": false,
11853
+ "type": "any",
11854
+ "schema": "any"
11855
+ },
11525
11856
  "b24ui": {
11526
11857
  "name": "b24ui",
11527
11858
  "global": false,
@@ -12732,6 +13063,15 @@ var B24UIMeta = {
12732
13063
  "type": "any",
12733
13064
  "schema": "any"
12734
13065
  },
13066
+ "style": {
13067
+ "name": "style",
13068
+ "global": false,
13069
+ "description": "",
13070
+ "tags": [],
13071
+ "required": false,
13072
+ "type": "any",
13073
+ "schema": "any"
13074
+ },
12735
13075
  "b24ui": {
12736
13076
  "name": "b24ui",
12737
13077
  "global": false,
@@ -13705,6 +14045,15 @@ var B24UIMeta = {
13705
14045
  "type": "any",
13706
14046
  "schema": "any"
13707
14047
  },
14048
+ "style": {
14049
+ "name": "style",
14050
+ "global": false,
14051
+ "description": "",
14052
+ "tags": [],
14053
+ "required": false,
14054
+ "type": "any",
14055
+ "schema": "any"
14056
+ },
13708
14057
  "b24ui": {
13709
14058
  "name": "b24ui",
13710
14059
  "global": false,
@@ -14678,6 +15027,15 @@ var B24UIMeta = {
14678
15027
  "type": "any",
14679
15028
  "schema": "any"
14680
15029
  },
15030
+ "style": {
15031
+ "name": "style",
15032
+ "global": false,
15033
+ "description": "",
15034
+ "tags": [],
15035
+ "required": false,
15036
+ "type": "any",
15037
+ "schema": "any"
15038
+ },
14681
15039
  "b24ui": {
14682
15040
  "name": "b24ui",
14683
15041
  "global": false,
@@ -15651,6 +16009,15 @@ var B24UIMeta = {
15651
16009
  "type": "any",
15652
16010
  "schema": "any"
15653
16011
  },
16012
+ "style": {
16013
+ "name": "style",
16014
+ "global": false,
16015
+ "description": "",
16016
+ "tags": [],
16017
+ "required": false,
16018
+ "type": "any",
16019
+ "schema": "any"
16020
+ },
15654
16021
  "b24ui": {
15655
16022
  "name": "b24ui",
15656
16023
  "global": false,
@@ -16804,6 +17171,15 @@ var B24UIMeta = {
16804
17171
  "type": "any",
16805
17172
  "schema": "any"
16806
17173
  },
17174
+ "style": {
17175
+ "name": "style",
17176
+ "global": false,
17177
+ "description": "",
17178
+ "tags": [],
17179
+ "required": false,
17180
+ "type": "any",
17181
+ "schema": "any"
17182
+ },
16807
17183
  "b24ui": {
16808
17184
  "name": "b24ui",
16809
17185
  "global": false,
@@ -19335,6 +19711,15 @@ var B24UIMeta = {
19335
19711
  "type": "any",
19336
19712
  "schema": "any"
19337
19713
  },
19714
+ "style": {
19715
+ "name": "style",
19716
+ "global": false,
19717
+ "description": "",
19718
+ "tags": [],
19719
+ "required": false,
19720
+ "type": "any",
19721
+ "schema": "any"
19722
+ },
19338
19723
  "b24ui": {
19339
19724
  "name": "b24ui",
19340
19725
  "global": false,
@@ -20172,6 +20557,15 @@ var B24UIMeta = {
20172
20557
  "type": "any",
20173
20558
  "schema": "any"
20174
20559
  },
20560
+ "style": {
20561
+ "name": "style",
20562
+ "global": false,
20563
+ "description": "",
20564
+ "tags": [],
20565
+ "required": false,
20566
+ "type": "any",
20567
+ "schema": "any"
20568
+ },
20175
20569
  "b24ui": {
20176
20570
  "name": "b24ui",
20177
20571
  "global": false,
@@ -20958,6 +21352,15 @@ var B24UIMeta = {
20958
21352
  "type": "any",
20959
21353
  "schema": "any"
20960
21354
  },
21355
+ "style": {
21356
+ "name": "style",
21357
+ "global": false,
21358
+ "description": "",
21359
+ "tags": [],
21360
+ "required": false,
21361
+ "type": "any",
21362
+ "schema": "any"
21363
+ },
20961
21364
  "b24ui": {
20962
21365
  "name": "b24ui",
20963
21366
  "global": false,
@@ -21193,6 +21596,15 @@ var B24UIMeta = {
21193
21596
  "type": "any",
21194
21597
  "schema": "any"
21195
21598
  },
21599
+ "style": {
21600
+ "name": "style",
21601
+ "global": false,
21602
+ "description": "",
21603
+ "tags": [],
21604
+ "required": false,
21605
+ "type": "any",
21606
+ "schema": "any"
21607
+ },
21196
21608
  "b24ui": {
21197
21609
  "name": "b24ui",
21198
21610
  "global": false,
@@ -21699,6 +22111,15 @@ var B24UIMeta = {
21699
22111
  "type": "any",
21700
22112
  "schema": "any"
21701
22113
  },
22114
+ "style": {
22115
+ "name": "style",
22116
+ "global": false,
22117
+ "description": "",
22118
+ "tags": [],
22119
+ "required": false,
22120
+ "type": "any",
22121
+ "schema": "any"
22122
+ },
21702
22123
  "b24ui": {
21703
22124
  "name": "b24ui",
21704
22125
  "global": false,
@@ -22231,6 +22652,15 @@ var B24UIMeta = {
22231
22652
  "type": "any",
22232
22653
  "schema": "any"
22233
22654
  },
22655
+ "style": {
22656
+ "name": "style",
22657
+ "global": false,
22658
+ "description": "",
22659
+ "tags": [],
22660
+ "required": false,
22661
+ "type": "any",
22662
+ "schema": "any"
22663
+ },
22234
22664
  "b24ui": {
22235
22665
  "name": "b24ui",
22236
22666
  "global": false,
@@ -22701,6 +23131,15 @@ var B24UIMeta = {
22701
23131
  "type": "any",
22702
23132
  "schema": "any"
22703
23133
  },
23134
+ "style": {
23135
+ "name": "style",
23136
+ "global": false,
23137
+ "description": "",
23138
+ "tags": [],
23139
+ "required": false,
23140
+ "type": "any",
23141
+ "schema": "any"
23142
+ },
22704
23143
  "b24ui": {
22705
23144
  "name": "b24ui",
22706
23145
  "global": false,
@@ -23171,6 +23610,15 @@ var B24UIMeta = {
23171
23610
  "type": "any",
23172
23611
  "schema": "any"
23173
23612
  },
23613
+ "style": {
23614
+ "name": "style",
23615
+ "global": false,
23616
+ "description": "",
23617
+ "tags": [],
23618
+ "required": false,
23619
+ "type": "any",
23620
+ "schema": "any"
23621
+ },
23174
23622
  "b24ui": {
23175
23623
  "name": "b24ui",
23176
23624
  "global": false,
@@ -23641,6 +24089,15 @@ var B24UIMeta = {
23641
24089
  "type": "any",
23642
24090
  "schema": "any"
23643
24091
  },
24092
+ "style": {
24093
+ "name": "style",
24094
+ "global": false,
24095
+ "description": "",
24096
+ "tags": [],
24097
+ "required": false,
24098
+ "type": "any",
24099
+ "schema": "any"
24100
+ },
23644
24101
  "b24ui": {
23645
24102
  "name": "b24ui",
23646
24103
  "global": false,
@@ -24111,6 +24568,15 @@ var B24UIMeta = {
24111
24568
  "type": "any",
24112
24569
  "schema": "any"
24113
24570
  },
24571
+ "style": {
24572
+ "name": "style",
24573
+ "global": false,
24574
+ "description": "",
24575
+ "tags": [],
24576
+ "required": false,
24577
+ "type": "any",
24578
+ "schema": "any"
24579
+ },
24114
24580
  "b24ui": {
24115
24581
  "name": "b24ui",
24116
24582
  "global": false,
@@ -24581,6 +25047,15 @@ var B24UIMeta = {
24581
25047
  "type": "any",
24582
25048
  "schema": "any"
24583
25049
  },
25050
+ "style": {
25051
+ "name": "style",
25052
+ "global": false,
25053
+ "description": "",
25054
+ "tags": [],
25055
+ "required": false,
25056
+ "type": "any",
25057
+ "schema": "any"
25058
+ },
24584
25059
  "b24ui": {
24585
25060
  "name": "b24ui",
24586
25061
  "global": false,
@@ -25238,6 +25713,15 @@ var B24UIMeta = {
25238
25713
  }
25239
25714
  }
25240
25715
  },
25716
+ "activeColor": {
25717
+ "name": "activeColor",
25718
+ "global": false,
25719
+ "description": "",
25720
+ "tags": [],
25721
+ "required": false,
25722
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
25723
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
25724
+ },
25241
25725
  "depth": {
25242
25726
  "name": "depth",
25243
25727
  "global": false,
@@ -25261,6 +25745,15 @@ var B24UIMeta = {
25261
25745
  }
25262
25746
  }
25263
25747
  },
25748
+ "activeDepth": {
25749
+ "name": "activeDepth",
25750
+ "global": false,
25751
+ "description": "",
25752
+ "tags": [],
25753
+ "required": false,
25754
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
25755
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
25756
+ },
25264
25757
  "size": {
25265
25758
  "name": "size",
25266
25759
  "global": false,
@@ -25431,6 +25924,34 @@ var B24UIMeta = {
25431
25924
  "type": "any",
25432
25925
  "schema": "any"
25433
25926
  },
25927
+ "activeClass": {
25928
+ "name": "activeClass",
25929
+ "global": false,
25930
+ "description": "The class to apply when the link is active",
25931
+ "tags": [
25932
+ {
25933
+ "name": "defaultValue",
25934
+ "text": "''"
25935
+ }
25936
+ ],
25937
+ "required": false,
25938
+ "type": "string | undefined",
25939
+ "schema": "string | undefined"
25940
+ },
25941
+ "inactiveClass": {
25942
+ "name": "inactiveClass",
25943
+ "global": false,
25944
+ "description": "The class to apply when the link is inactive",
25945
+ "tags": [
25946
+ {
25947
+ "name": "defaultValue",
25948
+ "text": "''"
25949
+ }
25950
+ ],
25951
+ "required": false,
25952
+ "type": "string | undefined",
25953
+ "schema": "string | undefined"
25954
+ },
25434
25955
  "b24ui": {
25435
25956
  "name": "b24ui",
25436
25957
  "global": false,
@@ -25592,6 +26113,15 @@ var B24UIMeta = {
25592
26113
  "type": "any",
25593
26114
  "schema": "any"
25594
26115
  },
26116
+ "style": {
26117
+ "name": "style",
26118
+ "global": false,
26119
+ "description": "",
26120
+ "tags": [],
26121
+ "required": false,
26122
+ "type": "any",
26123
+ "schema": "any"
26124
+ },
25595
26125
  "b24ui": {
25596
26126
  "name": "b24ui",
25597
26127
  "global": false,
@@ -25837,15 +26367,6 @@ var B24UIMeta = {
25837
26367
  }
25838
26368
  }
25839
26369
  },
25840
- "activeClass": {
25841
- "name": "activeClass",
25842
- "global": false,
25843
- "description": "Class to apply when the link is active",
25844
- "tags": [],
25845
- "required": false,
25846
- "type": "string | undefined",
25847
- "schema": "string | undefined"
25848
- },
25849
26370
  "exactActiveClass": {
25850
26371
  "name": "exactActiveClass",
25851
26372
  "global": false,
@@ -25954,15 +26475,6 @@ var B24UIMeta = {
25954
26475
  "type": "boolean | undefined",
25955
26476
  "schema": "boolean | undefined"
25956
26477
  },
25957
- "inactiveClass": {
25958
- "name": "inactiveClass",
25959
- "global": false,
25960
- "description": "The class to apply when the link is inactive.",
25961
- "tags": [],
25962
- "required": false,
25963
- "type": "string | undefined",
25964
- "schema": "string | undefined"
25965
- },
25966
26478
  "isAction": {
25967
26479
  "name": "isAction",
25968
26480
  "global": false,
@@ -26190,6 +26702,15 @@ var B24UIMeta = {
26190
26702
  }
26191
26703
  }
26192
26704
  },
26705
+ "activeColor": {
26706
+ "name": "activeColor",
26707
+ "global": false,
26708
+ "description": "",
26709
+ "tags": [],
26710
+ "required": false,
26711
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
26712
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
26713
+ },
26193
26714
  "depth": {
26194
26715
  "name": "depth",
26195
26716
  "global": false,
@@ -26213,6 +26734,15 @@ var B24UIMeta = {
26213
26734
  }
26214
26735
  }
26215
26736
  },
26737
+ "activeDepth": {
26738
+ "name": "activeDepth",
26739
+ "global": false,
26740
+ "description": "",
26741
+ "tags": [],
26742
+ "required": false,
26743
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
26744
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
26745
+ },
26216
26746
  "size": {
26217
26747
  "name": "size",
26218
26748
  "global": false,
@@ -26383,6 +26913,34 @@ var B24UIMeta = {
26383
26913
  "type": "any",
26384
26914
  "schema": "any"
26385
26915
  },
26916
+ "activeClass": {
26917
+ "name": "activeClass",
26918
+ "global": false,
26919
+ "description": "The class to apply when the link is active",
26920
+ "tags": [
26921
+ {
26922
+ "name": "defaultValue",
26923
+ "text": "''"
26924
+ }
26925
+ ],
26926
+ "required": false,
26927
+ "type": "string | undefined",
26928
+ "schema": "string | undefined"
26929
+ },
26930
+ "inactiveClass": {
26931
+ "name": "inactiveClass",
26932
+ "global": false,
26933
+ "description": "The class to apply when the link is inactive",
26934
+ "tags": [
26935
+ {
26936
+ "name": "defaultValue",
26937
+ "text": "''"
26938
+ }
26939
+ ],
26940
+ "required": false,
26941
+ "type": "string | undefined",
26942
+ "schema": "string | undefined"
26943
+ },
26386
26944
  "b24ui": {
26387
26945
  "name": "b24ui",
26388
26946
  "global": false,
@@ -26544,6 +27102,15 @@ var B24UIMeta = {
26544
27102
  "type": "any",
26545
27103
  "schema": "any"
26546
27104
  },
27105
+ "style": {
27106
+ "name": "style",
27107
+ "global": false,
27108
+ "description": "",
27109
+ "tags": [],
27110
+ "required": false,
27111
+ "type": "any",
27112
+ "schema": "any"
27113
+ },
26547
27114
  "b24ui": {
26548
27115
  "name": "b24ui",
26549
27116
  "global": false,
@@ -26789,15 +27356,6 @@ var B24UIMeta = {
26789
27356
  }
26790
27357
  }
26791
27358
  },
26792
- "activeClass": {
26793
- "name": "activeClass",
26794
- "global": false,
26795
- "description": "Class to apply when the link is active",
26796
- "tags": [],
26797
- "required": false,
26798
- "type": "string | undefined",
26799
- "schema": "string | undefined"
26800
- },
26801
27359
  "exactActiveClass": {
26802
27360
  "name": "exactActiveClass",
26803
27361
  "global": false,
@@ -26906,15 +27464,6 @@ var B24UIMeta = {
26906
27464
  "type": "boolean | undefined",
26907
27465
  "schema": "boolean | undefined"
26908
27466
  },
26909
- "inactiveClass": {
26910
- "name": "inactiveClass",
26911
- "global": false,
26912
- "description": "The class to apply when the link is inactive.",
26913
- "tags": [],
26914
- "required": false,
26915
- "type": "string | undefined",
26916
- "schema": "string | undefined"
26917
- },
26918
27467
  "isAction": {
26919
27468
  "name": "isAction",
26920
27469
  "global": false,
@@ -28617,6 +29166,30 @@ var B24UIMeta = {
28617
29166
  },
28618
29167
  "default": "true"
28619
29168
  },
29169
+ {
29170
+ "name": "overlayBlur",
29171
+ "global": false,
29172
+ "description": "Render an overlay blur behind the modal.\n`auto` use `motion-safe`.",
29173
+ "tags": [
29174
+ {
29175
+ "name": "defaultValue",
29176
+ "text": "'auto'"
29177
+ }
29178
+ ],
29179
+ "required": false,
29180
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
29181
+ "schema": {
29182
+ "kind": "enum",
29183
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
29184
+ "schema": {
29185
+ "0": "undefined",
29186
+ "1": "\"off\"",
29187
+ "2": "\"auto\"",
29188
+ "3": "\"on\""
29189
+ }
29190
+ },
29191
+ "default": "\"auto\""
29192
+ },
28620
29193
  {
28621
29194
  "name": "transition",
28622
29195
  "global": false,
@@ -30814,6 +31387,15 @@ var B24UIMeta = {
30814
31387
  "type": "any",
30815
31388
  "schema": "any"
30816
31389
  },
31390
+ "style": {
31391
+ "name": "style",
31392
+ "global": false,
31393
+ "description": "",
31394
+ "tags": [],
31395
+ "required": false,
31396
+ "type": "any",
31397
+ "schema": "any"
31398
+ },
30817
31399
  "b24ui": {
30818
31400
  "name": "b24ui",
30819
31401
  "global": false,
@@ -31427,6 +32009,15 @@ var B24UIMeta = {
31427
32009
  "type": "any",
31428
32010
  "schema": "any"
31429
32011
  },
32012
+ "style": {
32013
+ "name": "style",
32014
+ "global": false,
32015
+ "description": "",
32016
+ "tags": [],
32017
+ "required": false,
32018
+ "type": "any",
32019
+ "schema": "any"
32020
+ },
31430
32021
  "b24ui": {
31431
32022
  "name": "b24ui",
31432
32023
  "global": false,
@@ -31865,6 +32456,15 @@ var B24UIMeta = {
31865
32456
  "type": "any",
31866
32457
  "schema": "any"
31867
32458
  },
32459
+ "style": {
32460
+ "name": "style",
32461
+ "global": false,
32462
+ "description": "",
32463
+ "tags": [],
32464
+ "required": false,
32465
+ "type": "any",
32466
+ "schema": "any"
32467
+ },
31868
32468
  "b24ui": {
31869
32469
  "name": "b24ui",
31870
32470
  "global": false,
@@ -32324,6 +32924,15 @@ var B24UIMeta = {
32324
32924
  "type": "any",
32325
32925
  "schema": "any"
32326
32926
  },
32927
+ "style": {
32928
+ "name": "style",
32929
+ "global": false,
32930
+ "description": "",
32931
+ "tags": [],
32932
+ "required": false,
32933
+ "type": "any",
32934
+ "schema": "any"
32935
+ },
32327
32936
  "b24ui": {
32328
32937
  "name": "b24ui",
32329
32938
  "global": false,
@@ -32783,6 +33392,15 @@ var B24UIMeta = {
32783
33392
  "type": "any",
32784
33393
  "schema": "any"
32785
33394
  },
33395
+ "style": {
33396
+ "name": "style",
33397
+ "global": false,
33398
+ "description": "",
33399
+ "tags": [],
33400
+ "required": false,
33401
+ "type": "any",
33402
+ "schema": "any"
33403
+ },
32786
33404
  "b24ui": {
32787
33405
  "name": "b24ui",
32788
33406
  "global": false,
@@ -33242,6 +33860,15 @@ var B24UIMeta = {
33242
33860
  "type": "any",
33243
33861
  "schema": "any"
33244
33862
  },
33863
+ "style": {
33864
+ "name": "style",
33865
+ "global": false,
33866
+ "description": "",
33867
+ "tags": [],
33868
+ "required": false,
33869
+ "type": "any",
33870
+ "schema": "any"
33871
+ },
33245
33872
  "b24ui": {
33246
33873
  "name": "b24ui",
33247
33874
  "global": false,
@@ -34098,6 +34725,15 @@ var B24UIMeta = {
34098
34725
  "type": "any",
34099
34726
  "schema": "any"
34100
34727
  },
34728
+ "style": {
34729
+ "name": "style",
34730
+ "global": false,
34731
+ "description": "",
34732
+ "tags": [],
34733
+ "required": false,
34734
+ "type": "any",
34735
+ "schema": "any"
34736
+ },
34101
34737
  "b24ui": {
34102
34738
  "name": "b24ui",
34103
34739
  "global": false,
@@ -34706,6 +35342,15 @@ var B24UIMeta = {
34706
35342
  "type": "any",
34707
35343
  "schema": "any"
34708
35344
  },
35345
+ "style": {
35346
+ "name": "style",
35347
+ "global": false,
35348
+ "description": "",
35349
+ "tags": [],
35350
+ "required": false,
35351
+ "type": "any",
35352
+ "schema": "any"
35353
+ },
34709
35354
  "b24ui": {
34710
35355
  "name": "b24ui",
34711
35356
  "global": false,
@@ -35449,6 +36094,15 @@ var B24UIMeta = {
35449
36094
  "type": "any",
35450
36095
  "schema": "any"
35451
36096
  },
36097
+ "style": {
36098
+ "name": "style",
36099
+ "global": false,
36100
+ "description": "",
36101
+ "tags": [],
36102
+ "required": false,
36103
+ "type": "any",
36104
+ "schema": "any"
36105
+ },
35452
36106
  "b24ui": {
35453
36107
  "name": "b24ui",
35454
36108
  "global": false,
@@ -35684,6 +36338,15 @@ var B24UIMeta = {
35684
36338
  "type": "any",
35685
36339
  "schema": "any"
35686
36340
  },
36341
+ "style": {
36342
+ "name": "style",
36343
+ "global": false,
36344
+ "description": "",
36345
+ "tags": [],
36346
+ "required": false,
36347
+ "type": "any",
36348
+ "schema": "any"
36349
+ },
35687
36350
  "b24ui": {
35688
36351
  "name": "b24ui",
35689
36352
  "global": false,
@@ -36190,6 +36853,15 @@ var B24UIMeta = {
36190
36853
  "type": "any",
36191
36854
  "schema": "any"
36192
36855
  },
36856
+ "style": {
36857
+ "name": "style",
36858
+ "global": false,
36859
+ "description": "",
36860
+ "tags": [],
36861
+ "required": false,
36862
+ "type": "any",
36863
+ "schema": "any"
36864
+ },
36193
36865
  "b24ui": {
36194
36866
  "name": "b24ui",
36195
36867
  "global": false,
@@ -36687,6 +37359,15 @@ var B24UIMeta = {
36687
37359
  "type": "any",
36688
37360
  "schema": "any"
36689
37361
  },
37362
+ "style": {
37363
+ "name": "style",
37364
+ "global": false,
37365
+ "description": "",
37366
+ "tags": [],
37367
+ "required": false,
37368
+ "type": "any",
37369
+ "schema": "any"
37370
+ },
36690
37371
  "b24ui": {
36691
37372
  "name": "b24ui",
36692
37373
  "global": false,
@@ -37219,6 +37900,15 @@ var B24UIMeta = {
37219
37900
  "type": "any",
37220
37901
  "schema": "any"
37221
37902
  },
37903
+ "style": {
37904
+ "name": "style",
37905
+ "global": false,
37906
+ "description": "",
37907
+ "tags": [],
37908
+ "required": false,
37909
+ "type": "any",
37910
+ "schema": "any"
37911
+ },
37222
37912
  "b24ui": {
37223
37913
  "name": "b24ui",
37224
37914
  "global": false,
@@ -37689,6 +38379,15 @@ var B24UIMeta = {
37689
38379
  "type": "any",
37690
38380
  "schema": "any"
37691
38381
  },
38382
+ "style": {
38383
+ "name": "style",
38384
+ "global": false,
38385
+ "description": "",
38386
+ "tags": [],
38387
+ "required": false,
38388
+ "type": "any",
38389
+ "schema": "any"
38390
+ },
37692
38391
  "b24ui": {
37693
38392
  "name": "b24ui",
37694
38393
  "global": false,
@@ -38159,6 +38858,15 @@ var B24UIMeta = {
38159
38858
  "type": "any",
38160
38859
  "schema": "any"
38161
38860
  },
38861
+ "style": {
38862
+ "name": "style",
38863
+ "global": false,
38864
+ "description": "",
38865
+ "tags": [],
38866
+ "required": false,
38867
+ "type": "any",
38868
+ "schema": "any"
38869
+ },
38162
38870
  "b24ui": {
38163
38871
  "name": "b24ui",
38164
38872
  "global": false,
@@ -38629,6 +39337,15 @@ var B24UIMeta = {
38629
39337
  "type": "any",
38630
39338
  "schema": "any"
38631
39339
  },
39340
+ "style": {
39341
+ "name": "style",
39342
+ "global": false,
39343
+ "description": "",
39344
+ "tags": [],
39345
+ "required": false,
39346
+ "type": "any",
39347
+ "schema": "any"
39348
+ },
38632
39349
  "b24ui": {
38633
39350
  "name": "b24ui",
38634
39351
  "global": false,
@@ -39139,6 +39856,15 @@ var B24UIMeta = {
39139
39856
  "type": "any",
39140
39857
  "schema": "any"
39141
39858
  },
39859
+ "style": {
39860
+ "name": "style",
39861
+ "global": false,
39862
+ "description": "",
39863
+ "tags": [],
39864
+ "required": false,
39865
+ "type": "any",
39866
+ "schema": "any"
39867
+ },
39142
39868
  "b24ui": {
39143
39869
  "name": "b24ui",
39144
39870
  "global": false,
@@ -39442,6 +40168,30 @@ var B24UIMeta = {
39442
40168
  },
39443
40169
  "default": "true"
39444
40170
  },
40171
+ {
40172
+ "name": "overlayBlur",
40173
+ "global": false,
40174
+ "description": "Render an overlay blur behind the slideover.\n`auto` use `motion-safe`.",
40175
+ "tags": [
40176
+ {
40177
+ "name": "defaultValue",
40178
+ "text": "'auto'"
40179
+ }
40180
+ ],
40181
+ "required": false,
40182
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
40183
+ "schema": {
40184
+ "kind": "enum",
40185
+ "type": "\"off\" | \"auto\" | \"on\" | undefined",
40186
+ "schema": {
40187
+ "0": "undefined",
40188
+ "1": "\"off\"",
40189
+ "2": "\"auto\"",
40190
+ "3": "\"on\""
40191
+ }
40192
+ },
40193
+ "default": "\"auto\""
40194
+ },
39445
40195
  {
39446
40196
  "name": "transition",
39447
40197
  "global": false,
@@ -40430,6 +41180,15 @@ var B24UIMeta = {
40430
41180
  "type": "any",
40431
41181
  "schema": "any"
40432
41182
  },
41183
+ "style": {
41184
+ "name": "style",
41185
+ "global": false,
41186
+ "description": "",
41187
+ "tags": [],
41188
+ "required": false,
41189
+ "type": "any",
41190
+ "schema": "any"
41191
+ },
40433
41192
  "b24ui": {
40434
41193
  "name": "b24ui",
40435
41194
  "global": false,
@@ -40918,6 +41677,15 @@ var B24UIMeta = {
40918
41677
  "type": "any",
40919
41678
  "schema": "any"
40920
41679
  },
41680
+ "style": {
41681
+ "name": "style",
41682
+ "global": false,
41683
+ "description": "",
41684
+ "tags": [],
41685
+ "required": false,
41686
+ "type": "any",
41687
+ "schema": "any"
41688
+ },
40921
41689
  "b24ui": {
40922
41690
  "name": "b24ui",
40923
41691
  "global": false,
@@ -41173,6 +41941,15 @@ var B24UIMeta = {
41173
41941
  "type": "any",
41174
41942
  "schema": "any"
41175
41943
  },
41944
+ "style": {
41945
+ "name": "style",
41946
+ "global": false,
41947
+ "description": "",
41948
+ "tags": [],
41949
+ "required": false,
41950
+ "type": "any",
41951
+ "schema": "any"
41952
+ },
41176
41953
  "b24ui": {
41177
41954
  "name": "b24ui",
41178
41955
  "global": false,
@@ -41428,6 +42205,15 @@ var B24UIMeta = {
41428
42205
  "type": "any",
41429
42206
  "schema": "any"
41430
42207
  },
42208
+ "style": {
42209
+ "name": "style",
42210
+ "global": false,
42211
+ "description": "",
42212
+ "tags": [],
42213
+ "required": false,
42214
+ "type": "any",
42215
+ "schema": "any"
42216
+ },
41431
42217
  "b24ui": {
41432
42218
  "name": "b24ui",
41433
42219
  "global": false,
@@ -41683,6 +42469,15 @@ var B24UIMeta = {
41683
42469
  "type": "any",
41684
42470
  "schema": "any"
41685
42471
  },
42472
+ "style": {
42473
+ "name": "style",
42474
+ "global": false,
42475
+ "description": "",
42476
+ "tags": [],
42477
+ "required": false,
42478
+ "type": "any",
42479
+ "schema": "any"
42480
+ },
41686
42481
  "b24ui": {
41687
42482
  "name": "b24ui",
41688
42483
  "global": false,
@@ -42461,6 +43256,15 @@ var B24UIMeta = {
42461
43256
  "type": "any",
42462
43257
  "schema": "any"
42463
43258
  },
43259
+ "style": {
43260
+ "name": "style",
43261
+ "global": false,
43262
+ "description": "",
43263
+ "tags": [],
43264
+ "required": false,
43265
+ "type": "any",
43266
+ "schema": "any"
43267
+ },
42464
43268
  "b24ui": {
42465
43269
  "name": "b24ui",
42466
43270
  "global": false,
@@ -42598,6 +43402,15 @@ var B24UIMeta = {
42598
43402
  }
42599
43403
  }
42600
43404
  },
43405
+ "activeColor": {
43406
+ "name": "activeColor",
43407
+ "global": false,
43408
+ "description": "",
43409
+ "tags": [],
43410
+ "required": false,
43411
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
43412
+ "schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
43413
+ },
42601
43414
  "depth": {
42602
43415
  "name": "depth",
42603
43416
  "global": false,
@@ -42621,6 +43434,15 @@ var B24UIMeta = {
42621
43434
  }
42622
43435
  }
42623
43436
  },
43437
+ "activeDepth": {
43438
+ "name": "activeDepth",
43439
+ "global": false,
43440
+ "description": "",
43441
+ "tags": [],
43442
+ "required": false,
43443
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
43444
+ "schema": "\"light\" | \"normal\" | \"dark\" | undefined"
43445
+ },
42624
43446
  "size": {
42625
43447
  "name": "size",
42626
43448
  "global": false,
@@ -42791,6 +43613,34 @@ var B24UIMeta = {
42791
43613
  "type": "any",
42792
43614
  "schema": "any"
42793
43615
  },
43616
+ "activeClass": {
43617
+ "name": "activeClass",
43618
+ "global": false,
43619
+ "description": "The class to apply when the link is active",
43620
+ "tags": [
43621
+ {
43622
+ "name": "defaultValue",
43623
+ "text": "''"
43624
+ }
43625
+ ],
43626
+ "required": false,
43627
+ "type": "string | undefined",
43628
+ "schema": "string | undefined"
43629
+ },
43630
+ "inactiveClass": {
43631
+ "name": "inactiveClass",
43632
+ "global": false,
43633
+ "description": "The class to apply when the link is inactive",
43634
+ "tags": [
43635
+ {
43636
+ "name": "defaultValue",
43637
+ "text": "''"
43638
+ }
43639
+ ],
43640
+ "required": false,
43641
+ "type": "string | undefined",
43642
+ "schema": "string | undefined"
43643
+ },
42794
43644
  "b24ui": {
42795
43645
  "name": "b24ui",
42796
43646
  "global": false,
@@ -42952,6 +43802,15 @@ var B24UIMeta = {
42952
43802
  "type": "any",
42953
43803
  "schema": "any"
42954
43804
  },
43805
+ "style": {
43806
+ "name": "style",
43807
+ "global": false,
43808
+ "description": "",
43809
+ "tags": [],
43810
+ "required": false,
43811
+ "type": "any",
43812
+ "schema": "any"
43813
+ },
42955
43814
  "b24ui": {
42956
43815
  "name": "b24ui",
42957
43816
  "global": false,
@@ -43197,15 +44056,6 @@ var B24UIMeta = {
43197
44056
  }
43198
44057
  }
43199
44058
  },
43200
- "activeClass": {
43201
- "name": "activeClass",
43202
- "global": false,
43203
- "description": "Class to apply when the link is active",
43204
- "tags": [],
43205
- "required": false,
43206
- "type": "string | undefined",
43207
- "schema": "string | undefined"
43208
- },
43209
44059
  "exactActiveClass": {
43210
44060
  "name": "exactActiveClass",
43211
44061
  "global": false,
@@ -43314,15 +44164,6 @@ var B24UIMeta = {
43314
44164
  "type": "boolean | undefined",
43315
44165
  "schema": "boolean | undefined"
43316
44166
  },
43317
- "inactiveClass": {
43318
- "name": "inactiveClass",
43319
- "global": false,
43320
- "description": "The class to apply when the link is inactive.",
43321
- "tags": [],
43322
- "required": false,
43323
- "type": "string | undefined",
43324
- "schema": "string | undefined"
43325
- },
43326
44167
  "isAction": {
43327
44168
  "name": "isAction",
43328
44169
  "global": false,
@@ -44535,13 +45376,13 @@ var B24UIMeta = {
44535
45376
  "exposed": []
44536
45377
  }
44537
45378
  },
44538
- "ProseH1": {
45379
+ "ProseA": {
44539
45380
  "mode": "all",
44540
45381
  "prefetch": false,
44541
45382
  "preload": false,
44542
- "pascalName": "ProseH1",
44543
- "kebabName": "prose-h1",
44544
- "chunkName": "components/prose-h1",
45383
+ "pascalName": "ProseA",
45384
+ "kebabName": "prose-a",
45385
+ "chunkName": "components/prose-a",
44545
45386
  "priority": 0,
44546
45387
  "_scanned": true,
44547
45388
  "meta": {
@@ -44553,13 +45394,13 @@ var B24UIMeta = {
44553
45394
  "description": "",
44554
45395
  "tags": [],
44555
45396
  "required": false,
44556
- "type": "Partial<{ base: string; link: string; }> | undefined",
45397
+ "type": "Partial<{ base: string; }> | undefined",
44557
45398
  "schema": {
44558
45399
  "kind": "enum",
44559
- "type": "Partial<{ base: string; link: string; }> | undefined",
45400
+ "type": "Partial<{ base: string; }> | undefined",
44560
45401
  "schema": {
44561
45402
  "0": "undefined",
44562
- "1": "Partial<{ base: string; link: string; }>"
45403
+ "1": "Partial<{ base: string; }>"
44563
45404
  }
44564
45405
  }
44565
45406
  }
@@ -44580,13 +45421,13 @@ var B24UIMeta = {
44580
45421
  "exposed": []
44581
45422
  }
44582
45423
  },
44583
- "ProseH2": {
45424
+ "ProseBlockquote": {
44584
45425
  "mode": "all",
44585
45426
  "prefetch": false,
44586
45427
  "preload": false,
44587
- "pascalName": "ProseH2",
44588
- "kebabName": "prose-h2",
44589
- "chunkName": "components/prose-h2",
45428
+ "pascalName": "ProseBlockquote",
45429
+ "kebabName": "prose-blockquote",
45430
+ "chunkName": "components/prose-blockquote",
44590
45431
  "priority": 0,
44591
45432
  "_scanned": true,
44592
45433
  "meta": {
@@ -44598,13 +45439,13 @@ var B24UIMeta = {
44598
45439
  "description": "",
44599
45440
  "tags": [],
44600
45441
  "required": false,
44601
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45442
+ "type": "Partial<{ base: string; }> | undefined",
44602
45443
  "schema": {
44603
45444
  "kind": "enum",
44604
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45445
+ "type": "Partial<{ base: string; }> | undefined",
44605
45446
  "schema": {
44606
45447
  "0": "undefined",
44607
- "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45448
+ "1": "Partial<{ base: string; }>"
44608
45449
  }
44609
45450
  }
44610
45451
  }
@@ -44625,31 +45466,59 @@ var B24UIMeta = {
44625
45466
  "exposed": []
44626
45467
  }
44627
45468
  },
44628
- "ProseH3": {
45469
+ "ProseCode": {
44629
45470
  "mode": "all",
44630
45471
  "prefetch": false,
44631
45472
  "preload": false,
44632
- "pascalName": "ProseH3",
44633
- "kebabName": "prose-h3",
44634
- "chunkName": "components/prose-h3",
45473
+ "pascalName": "ProseCode",
45474
+ "kebabName": "prose-code",
45475
+ "chunkName": "components/prose-code",
44635
45476
  "priority": 0,
44636
45477
  "_scanned": true,
44637
45478
  "meta": {
44638
45479
  "type": 0,
44639
45480
  "props": [
45481
+ {
45482
+ "name": "color",
45483
+ "global": false,
45484
+ "description": "",
45485
+ "tags": [
45486
+ {
45487
+ "name": "defaultValue",
45488
+ "text": "'default'"
45489
+ }
45490
+ ],
45491
+ "required": false,
45492
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | undefined",
45493
+ "schema": {
45494
+ "kind": "enum",
45495
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | undefined",
45496
+ "schema": {
45497
+ "0": "undefined",
45498
+ "1": "\"default\"",
45499
+ "2": "\"danger\"",
45500
+ "3": "\"success\"",
45501
+ "4": "\"warning\"",
45502
+ "5": "\"primary\"",
45503
+ "6": "\"secondary\"",
45504
+ "7": "\"collab\"",
45505
+ "8": "\"ai\""
45506
+ }
45507
+ }
45508
+ },
44640
45509
  {
44641
45510
  "name": "b24ui",
44642
45511
  "global": false,
44643
45512
  "description": "",
44644
45513
  "tags": [],
44645
45514
  "required": false,
44646
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45515
+ "type": "Partial<{ base: string; }> | undefined",
44647
45516
  "schema": {
44648
45517
  "kind": "enum",
44649
- "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45518
+ "type": "Partial<{ base: string; }> | undefined",
44650
45519
  "schema": {
44651
45520
  "0": "undefined",
44652
- "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45521
+ "1": "Partial<{ base: string; }>"
44653
45522
  }
44654
45523
  }
44655
45524
  }
@@ -44670,13 +45539,362 @@ var B24UIMeta = {
44670
45539
  "exposed": []
44671
45540
  }
44672
45541
  },
44673
- "ProseLi": {
45542
+ "ProseEm": {
44674
45543
  "mode": "all",
44675
45544
  "prefetch": false,
44676
45545
  "preload": false,
44677
- "pascalName": "ProseLi",
44678
- "kebabName": "prose-li",
44679
- "chunkName": "components/prose-li",
45546
+ "pascalName": "ProseEm",
45547
+ "kebabName": "prose-em",
45548
+ "chunkName": "components/prose-em",
45549
+ "priority": 0,
45550
+ "_scanned": true,
45551
+ "meta": {
45552
+ "type": 0,
45553
+ "props": [
45554
+ {
45555
+ "name": "b24ui",
45556
+ "global": false,
45557
+ "description": "",
45558
+ "tags": [],
45559
+ "required": false,
45560
+ "type": "Partial<{ base: string; }> | undefined",
45561
+ "schema": {
45562
+ "kind": "enum",
45563
+ "type": "Partial<{ base: string; }> | undefined",
45564
+ "schema": {
45565
+ "0": "undefined",
45566
+ "1": "Partial<{ base: string; }>"
45567
+ }
45568
+ }
45569
+ }
45570
+ ],
45571
+ "slots": [
45572
+ {
45573
+ "name": "default",
45574
+ "type": "{}",
45575
+ "description": "",
45576
+ "schema": {
45577
+ "kind": "object",
45578
+ "type": "{}",
45579
+ "schema": {}
45580
+ }
45581
+ }
45582
+ ],
45583
+ "events": [],
45584
+ "exposed": []
45585
+ }
45586
+ },
45587
+ "ProseH1": {
45588
+ "mode": "all",
45589
+ "prefetch": false,
45590
+ "preload": false,
45591
+ "pascalName": "ProseH1",
45592
+ "kebabName": "prose-h1",
45593
+ "chunkName": "components/prose-h1",
45594
+ "priority": 0,
45595
+ "_scanned": true,
45596
+ "meta": {
45597
+ "type": 0,
45598
+ "props": [
45599
+ {
45600
+ "name": "b24ui",
45601
+ "global": false,
45602
+ "description": "",
45603
+ "tags": [],
45604
+ "required": false,
45605
+ "type": "Partial<{ base: string; link: string; }> | undefined",
45606
+ "schema": {
45607
+ "kind": "enum",
45608
+ "type": "Partial<{ base: string; link: string; }> | undefined",
45609
+ "schema": {
45610
+ "0": "undefined",
45611
+ "1": "Partial<{ base: string; link: string; }>"
45612
+ }
45613
+ }
45614
+ }
45615
+ ],
45616
+ "slots": [
45617
+ {
45618
+ "name": "default",
45619
+ "type": "{}",
45620
+ "description": "",
45621
+ "schema": {
45622
+ "kind": "object",
45623
+ "type": "{}",
45624
+ "schema": {}
45625
+ }
45626
+ }
45627
+ ],
45628
+ "events": [],
45629
+ "exposed": []
45630
+ }
45631
+ },
45632
+ "ProseH2": {
45633
+ "mode": "all",
45634
+ "prefetch": false,
45635
+ "preload": false,
45636
+ "pascalName": "ProseH2",
45637
+ "kebabName": "prose-h2",
45638
+ "chunkName": "components/prose-h2",
45639
+ "priority": 0,
45640
+ "_scanned": true,
45641
+ "meta": {
45642
+ "type": 0,
45643
+ "props": [
45644
+ {
45645
+ "name": "b24ui",
45646
+ "global": false,
45647
+ "description": "",
45648
+ "tags": [],
45649
+ "required": false,
45650
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45651
+ "schema": {
45652
+ "kind": "enum",
45653
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45654
+ "schema": {
45655
+ "0": "undefined",
45656
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45657
+ }
45658
+ }
45659
+ }
45660
+ ],
45661
+ "slots": [
45662
+ {
45663
+ "name": "default",
45664
+ "type": "{}",
45665
+ "description": "",
45666
+ "schema": {
45667
+ "kind": "object",
45668
+ "type": "{}",
45669
+ "schema": {}
45670
+ }
45671
+ }
45672
+ ],
45673
+ "events": [],
45674
+ "exposed": []
45675
+ }
45676
+ },
45677
+ "ProseH3": {
45678
+ "mode": "all",
45679
+ "prefetch": false,
45680
+ "preload": false,
45681
+ "pascalName": "ProseH3",
45682
+ "kebabName": "prose-h3",
45683
+ "chunkName": "components/prose-h3",
45684
+ "priority": 0,
45685
+ "_scanned": true,
45686
+ "meta": {
45687
+ "type": 0,
45688
+ "props": [
45689
+ {
45690
+ "name": "b24ui",
45691
+ "global": false,
45692
+ "description": "",
45693
+ "tags": [],
45694
+ "required": false,
45695
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45696
+ "schema": {
45697
+ "kind": "enum",
45698
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45699
+ "schema": {
45700
+ "0": "undefined",
45701
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45702
+ }
45703
+ }
45704
+ }
45705
+ ],
45706
+ "slots": [
45707
+ {
45708
+ "name": "default",
45709
+ "type": "{}",
45710
+ "description": "",
45711
+ "schema": {
45712
+ "kind": "object",
45713
+ "type": "{}",
45714
+ "schema": {}
45715
+ }
45716
+ }
45717
+ ],
45718
+ "events": [],
45719
+ "exposed": []
45720
+ }
45721
+ },
45722
+ "ProseH4": {
45723
+ "mode": "all",
45724
+ "prefetch": false,
45725
+ "preload": false,
45726
+ "pascalName": "ProseH4",
45727
+ "kebabName": "prose-h4",
45728
+ "chunkName": "components/prose-h4",
45729
+ "priority": 0,
45730
+ "_scanned": true,
45731
+ "meta": {
45732
+ "type": 0,
45733
+ "props": [
45734
+ {
45735
+ "name": "b24ui",
45736
+ "global": false,
45737
+ "description": "",
45738
+ "tags": [],
45739
+ "required": false,
45740
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45741
+ "schema": {
45742
+ "kind": "enum",
45743
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45744
+ "schema": {
45745
+ "0": "undefined",
45746
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45747
+ }
45748
+ }
45749
+ }
45750
+ ],
45751
+ "slots": [
45752
+ {
45753
+ "name": "default",
45754
+ "type": "{}",
45755
+ "description": "",
45756
+ "schema": {
45757
+ "kind": "object",
45758
+ "type": "{}",
45759
+ "schema": {}
45760
+ }
45761
+ }
45762
+ ],
45763
+ "events": [],
45764
+ "exposed": []
45765
+ }
45766
+ },
45767
+ "ProseH5": {
45768
+ "mode": "all",
45769
+ "prefetch": false,
45770
+ "preload": false,
45771
+ "pascalName": "ProseH5",
45772
+ "kebabName": "prose-h5",
45773
+ "chunkName": "components/prose-h5",
45774
+ "priority": 0,
45775
+ "_scanned": true,
45776
+ "meta": {
45777
+ "type": 0,
45778
+ "props": [
45779
+ {
45780
+ "name": "b24ui",
45781
+ "global": false,
45782
+ "description": "",
45783
+ "tags": [],
45784
+ "required": false,
45785
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45786
+ "schema": {
45787
+ "kind": "enum",
45788
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45789
+ "schema": {
45790
+ "0": "undefined",
45791
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45792
+ }
45793
+ }
45794
+ }
45795
+ ],
45796
+ "slots": [
45797
+ {
45798
+ "name": "default",
45799
+ "type": "{}",
45800
+ "description": "",
45801
+ "schema": {
45802
+ "kind": "object",
45803
+ "type": "{}",
45804
+ "schema": {}
45805
+ }
45806
+ }
45807
+ ],
45808
+ "events": [],
45809
+ "exposed": []
45810
+ }
45811
+ },
45812
+ "ProseH6": {
45813
+ "mode": "all",
45814
+ "prefetch": false,
45815
+ "preload": false,
45816
+ "pascalName": "ProseH6",
45817
+ "kebabName": "prose-h6",
45818
+ "chunkName": "components/prose-h6",
45819
+ "priority": 0,
45820
+ "_scanned": true,
45821
+ "meta": {
45822
+ "type": 0,
45823
+ "props": [
45824
+ {
45825
+ "name": "b24ui",
45826
+ "global": false,
45827
+ "description": "",
45828
+ "tags": [],
45829
+ "required": false,
45830
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45831
+ "schema": {
45832
+ "kind": "enum",
45833
+ "type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
45834
+ "schema": {
45835
+ "0": "undefined",
45836
+ "1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
45837
+ }
45838
+ }
45839
+ }
45840
+ ],
45841
+ "slots": [
45842
+ {
45843
+ "name": "default",
45844
+ "type": "{}",
45845
+ "description": "",
45846
+ "schema": {
45847
+ "kind": "object",
45848
+ "type": "{}",
45849
+ "schema": {}
45850
+ }
45851
+ }
45852
+ ],
45853
+ "events": [],
45854
+ "exposed": []
45855
+ }
45856
+ },
45857
+ "ProseHr": {
45858
+ "mode": "all",
45859
+ "prefetch": false,
45860
+ "preload": false,
45861
+ "pascalName": "ProseHr",
45862
+ "kebabName": "prose-hr",
45863
+ "chunkName": "components/prose-hr",
45864
+ "priority": 0,
45865
+ "_scanned": true,
45866
+ "meta": {
45867
+ "type": 0,
45868
+ "props": [
45869
+ {
45870
+ "name": "b24ui",
45871
+ "global": false,
45872
+ "description": "",
45873
+ "tags": [],
45874
+ "required": false,
45875
+ "type": "Partial<{ base: string; }> | undefined",
45876
+ "schema": {
45877
+ "kind": "enum",
45878
+ "type": "Partial<{ base: string; }> | undefined",
45879
+ "schema": {
45880
+ "0": "undefined",
45881
+ "1": "Partial<{ base: string; }>"
45882
+ }
45883
+ }
45884
+ }
45885
+ ],
45886
+ "slots": [],
45887
+ "events": [],
45888
+ "exposed": []
45889
+ }
45890
+ },
45891
+ "ProseLi": {
45892
+ "mode": "all",
45893
+ "prefetch": false,
45894
+ "preload": false,
45895
+ "pascalName": "ProseLi",
45896
+ "kebabName": "prose-li",
45897
+ "chunkName": "components/prose-li",
44680
45898
  "priority": 0,
44681
45899
  "_scanned": true,
44682
45900
  "meta": {
@@ -44805,6 +46023,111 @@ var B24UIMeta = {
44805
46023
  "exposed": []
44806
46024
  }
44807
46025
  },
46026
+ "ProsePre": {
46027
+ "mode": "all",
46028
+ "prefetch": false,
46029
+ "preload": false,
46030
+ "pascalName": "ProsePre",
46031
+ "kebabName": "prose-pre",
46032
+ "chunkName": "components/prose-pre",
46033
+ "priority": 0,
46034
+ "_scanned": true,
46035
+ "meta": {
46036
+ "type": 0,
46037
+ "props": [
46038
+ {
46039
+ "name": "as",
46040
+ "global": false,
46041
+ "description": "The element or component this component should render as.",
46042
+ "tags": [
46043
+ {
46044
+ "name": "defaultValue",
46045
+ "text": "'div'"
46046
+ }
46047
+ ],
46048
+ "required": false,
46049
+ "type": "any",
46050
+ "schema": "any",
46051
+ "default": "\"div\""
46052
+ },
46053
+ {
46054
+ "name": "b24ui",
46055
+ "global": false,
46056
+ "description": "",
46057
+ "tags": [],
46058
+ "required": false,
46059
+ "type": "Partial<{ root: string; base: string; }> | undefined",
46060
+ "schema": {
46061
+ "kind": "enum",
46062
+ "type": "Partial<{ root: string; base: string; }> | undefined",
46063
+ "schema": {
46064
+ "0": "undefined",
46065
+ "1": "Partial<{ root: string; base: string; }>"
46066
+ }
46067
+ }
46068
+ }
46069
+ ],
46070
+ "slots": [
46071
+ {
46072
+ "name": "default",
46073
+ "type": "{}",
46074
+ "description": "",
46075
+ "schema": {
46076
+ "kind": "object",
46077
+ "type": "{}",
46078
+ "schema": {}
46079
+ }
46080
+ }
46081
+ ],
46082
+ "events": [],
46083
+ "exposed": []
46084
+ }
46085
+ },
46086
+ "ProseStrong": {
46087
+ "mode": "all",
46088
+ "prefetch": false,
46089
+ "preload": false,
46090
+ "pascalName": "ProseStrong",
46091
+ "kebabName": "prose-strong",
46092
+ "chunkName": "components/prose-strong",
46093
+ "priority": 0,
46094
+ "_scanned": true,
46095
+ "meta": {
46096
+ "type": 0,
46097
+ "props": [
46098
+ {
46099
+ "name": "b24ui",
46100
+ "global": false,
46101
+ "description": "",
46102
+ "tags": [],
46103
+ "required": false,
46104
+ "type": "Partial<{ base: string; }> | undefined",
46105
+ "schema": {
46106
+ "kind": "enum",
46107
+ "type": "Partial<{ base: string; }> | undefined",
46108
+ "schema": {
46109
+ "0": "undefined",
46110
+ "1": "Partial<{ base: string; }>"
46111
+ }
46112
+ }
46113
+ }
46114
+ ],
46115
+ "slots": [
46116
+ {
46117
+ "name": "default",
46118
+ "type": "{}",
46119
+ "description": "",
46120
+ "schema": {
46121
+ "kind": "object",
46122
+ "type": "{}",
46123
+ "schema": {}
46124
+ }
46125
+ }
46126
+ ],
46127
+ "events": [],
46128
+ "exposed": []
46129
+ }
46130
+ },
44808
46131
  "ProseUl": {
44809
46132
  "mode": "all",
44810
46133
  "prefetch": false,