@bitrix24/b24ui-nuxt 0.4.1 → 0.4.2
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.
- package/.nuxt/b24ui/button.ts +8 -0
- package/.nuxt/b24ui/modal.ts +22 -4
- package/.nuxt/b24ui/prose/blockquote.ts +5 -0
- package/.nuxt/b24ui/prose/em.ts +5 -0
- package/.nuxt/b24ui/prose/h1.ts +6 -0
- package/.nuxt/b24ui/prose/{prose-h2.ts → h2.ts} +1 -1
- package/.nuxt/b24ui/prose/{prose-h3.ts → h3.ts} +1 -1
- package/.nuxt/b24ui/prose/h4.ts +16 -0
- package/.nuxt/b24ui/prose/h5.ts +16 -0
- package/.nuxt/b24ui/prose/h6.ts +16 -0
- package/.nuxt/b24ui/prose/hr.ts +5 -0
- package/.nuxt/b24ui/prose/ol.ts +5 -0
- package/.nuxt/b24ui/prose/strong.ts +5 -0
- package/.nuxt/b24ui/prose/ul.ts +5 -0
- package/.nuxt/b24ui/slideover.ts +25 -7
- package/dist/meta.cjs +854 -195
- package/dist/meta.d.cts +854 -195
- package/dist/meta.d.mts +854 -195
- package/dist/meta.d.ts +854 -195
- package/dist/meta.mjs +854 -195
- package/dist/module.cjs +2 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/dist/runtime/components/Button.vue +83 -45
- package/dist/runtime/components/Modal.vue +13 -2
- package/dist/runtime/components/Slideover.vue +10 -2
- package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
- package/dist/runtime/prose/Blockquote.vue +36 -0
- package/dist/runtime/prose/Em.vue +36 -0
- package/dist/runtime/prose/{ProseH1.vue → H1.vue} +1 -1
- package/dist/runtime/prose/{ProseH2.vue → H2.vue} +1 -1
- package/dist/runtime/prose/{ProseH3.vue → H3.vue} +1 -1
- package/dist/runtime/prose/H4.vue +36 -0
- package/dist/runtime/prose/H5.vue +36 -0
- package/dist/runtime/prose/H6.vue +36 -0
- package/dist/runtime/prose/Hr.vue +30 -0
- package/dist/runtime/prose/{ProseLi.vue → Li.vue} +1 -1
- package/dist/runtime/prose/{ProseOl.vue → Ol.vue} +1 -1
- package/dist/runtime/prose/{ProseP.vue → P.vue} +1 -1
- package/dist/runtime/prose/Strong.vue +36 -0
- package/dist/runtime/prose/{ProseUl.vue → Ul.vue} +1 -1
- package/dist/runtime/types/index.d.ts +14 -7
- package/dist/runtime/types/index.js +14 -7
- package/dist/runtime/vue/components/Link.vue +2 -2
- package/dist/shared/{b24ui-nuxt.CnMGpwQb.cjs → b24ui-nuxt.Bt28CeAD.cjs} +185 -40
- package/dist/shared/{b24ui-nuxt.BGGwh89R.mjs → b24ui-nuxt.Bx_-_mhu.mjs} +185 -40
- package/dist/unplugin.cjs +3 -3
- package/dist/unplugin.mjs +3 -3
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +4 -4
- package/.nuxt/b24ui/prose/prose-h1.ts +0 -6
- package/.nuxt/b24ui/prose/prose-ol.ts +0 -5
- package/.nuxt/b24ui/prose/prose-ul.ts +0 -5
- /package/.nuxt/b24ui/prose/{prose-li.ts → li.ts} +0 -0
- /package/.nuxt/b24ui/prose/{prose-p.ts → p.ts} +0 -0
package/dist/meta.cjs
CHANGED
|
@@ -666,6 +666,15 @@ const B24UIMeta = {
|
|
|
666
666
|
}
|
|
667
667
|
}
|
|
668
668
|
},
|
|
669
|
+
"activeColor": {
|
|
670
|
+
"name": "activeColor",
|
|
671
|
+
"global": false,
|
|
672
|
+
"description": "",
|
|
673
|
+
"tags": [],
|
|
674
|
+
"required": false,
|
|
675
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
676
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
677
|
+
},
|
|
669
678
|
"depth": {
|
|
670
679
|
"name": "depth",
|
|
671
680
|
"global": false,
|
|
@@ -689,6 +698,15 @@ const B24UIMeta = {
|
|
|
689
698
|
}
|
|
690
699
|
}
|
|
691
700
|
},
|
|
701
|
+
"activeDepth": {
|
|
702
|
+
"name": "activeDepth",
|
|
703
|
+
"global": false,
|
|
704
|
+
"description": "",
|
|
705
|
+
"tags": [],
|
|
706
|
+
"required": false,
|
|
707
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
708
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
709
|
+
},
|
|
692
710
|
"size": {
|
|
693
711
|
"name": "size",
|
|
694
712
|
"global": false,
|
|
@@ -859,6 +877,34 @@ const B24UIMeta = {
|
|
|
859
877
|
"type": "any",
|
|
860
878
|
"schema": "any"
|
|
861
879
|
},
|
|
880
|
+
"activeClass": {
|
|
881
|
+
"name": "activeClass",
|
|
882
|
+
"global": false,
|
|
883
|
+
"description": "The class to apply when the link is active",
|
|
884
|
+
"tags": [
|
|
885
|
+
{
|
|
886
|
+
"name": "defaultValue",
|
|
887
|
+
"text": "''"
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"required": false,
|
|
891
|
+
"type": "string | undefined",
|
|
892
|
+
"schema": "string | undefined"
|
|
893
|
+
},
|
|
894
|
+
"inactiveClass": {
|
|
895
|
+
"name": "inactiveClass",
|
|
896
|
+
"global": false,
|
|
897
|
+
"description": "The class to apply when the link is inactive",
|
|
898
|
+
"tags": [
|
|
899
|
+
{
|
|
900
|
+
"name": "defaultValue",
|
|
901
|
+
"text": "''"
|
|
902
|
+
}
|
|
903
|
+
],
|
|
904
|
+
"required": false,
|
|
905
|
+
"type": "string | undefined",
|
|
906
|
+
"schema": "string | undefined"
|
|
907
|
+
},
|
|
862
908
|
"b24ui": {
|
|
863
909
|
"name": "b24ui",
|
|
864
910
|
"global": false,
|
|
@@ -1265,15 +1311,6 @@ const B24UIMeta = {
|
|
|
1265
1311
|
}
|
|
1266
1312
|
}
|
|
1267
1313
|
},
|
|
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
1314
|
"exactActiveClass": {
|
|
1278
1315
|
"name": "exactActiveClass",
|
|
1279
1316
|
"global": false,
|
|
@@ -1382,15 +1419,6 @@ const B24UIMeta = {
|
|
|
1382
1419
|
"type": "boolean | undefined",
|
|
1383
1420
|
"schema": "boolean | undefined"
|
|
1384
1421
|
},
|
|
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
1422
|
"isAction": {
|
|
1395
1423
|
"name": "isAction",
|
|
1396
1424
|
"global": false,
|
|
@@ -3294,6 +3322,30 @@ const B24UIMeta = {
|
|
|
3294
3322
|
}
|
|
3295
3323
|
}
|
|
3296
3324
|
},
|
|
3325
|
+
{
|
|
3326
|
+
"name": "activeColor",
|
|
3327
|
+
"global": false,
|
|
3328
|
+
"description": "",
|
|
3329
|
+
"tags": [],
|
|
3330
|
+
"required": false,
|
|
3331
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
3332
|
+
"schema": {
|
|
3333
|
+
"kind": "enum",
|
|
3334
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
3335
|
+
"schema": {
|
|
3336
|
+
"0": "undefined",
|
|
3337
|
+
"1": "\"default\"",
|
|
3338
|
+
"2": "\"danger\"",
|
|
3339
|
+
"3": "\"success\"",
|
|
3340
|
+
"4": "\"warning\"",
|
|
3341
|
+
"5": "\"primary\"",
|
|
3342
|
+
"6": "\"secondary\"",
|
|
3343
|
+
"7": "\"collab\"",
|
|
3344
|
+
"8": "\"ai\"",
|
|
3345
|
+
"9": "\"link\""
|
|
3346
|
+
}
|
|
3347
|
+
}
|
|
3348
|
+
},
|
|
3297
3349
|
{
|
|
3298
3350
|
"name": "depth",
|
|
3299
3351
|
"global": false,
|
|
@@ -3317,6 +3369,24 @@ const B24UIMeta = {
|
|
|
3317
3369
|
}
|
|
3318
3370
|
}
|
|
3319
3371
|
},
|
|
3372
|
+
{
|
|
3373
|
+
"name": "activeDepth",
|
|
3374
|
+
"global": false,
|
|
3375
|
+
"description": "",
|
|
3376
|
+
"tags": [],
|
|
3377
|
+
"required": false,
|
|
3378
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
3379
|
+
"schema": {
|
|
3380
|
+
"kind": "enum",
|
|
3381
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
3382
|
+
"schema": {
|
|
3383
|
+
"0": "undefined",
|
|
3384
|
+
"1": "\"light\"",
|
|
3385
|
+
"2": "\"normal\"",
|
|
3386
|
+
"3": "\"dark\""
|
|
3387
|
+
}
|
|
3388
|
+
}
|
|
3389
|
+
},
|
|
3320
3390
|
{
|
|
3321
3391
|
"name": "size",
|
|
3322
3392
|
"global": false,
|
|
@@ -3495,6 +3565,50 @@ const B24UIMeta = {
|
|
|
3495
3565
|
}
|
|
3496
3566
|
}
|
|
3497
3567
|
},
|
|
3568
|
+
{
|
|
3569
|
+
"name": "activeClass",
|
|
3570
|
+
"global": false,
|
|
3571
|
+
"description": "The class to apply when the link is active",
|
|
3572
|
+
"tags": [
|
|
3573
|
+
{
|
|
3574
|
+
"name": "defaultValue",
|
|
3575
|
+
"text": "''"
|
|
3576
|
+
}
|
|
3577
|
+
],
|
|
3578
|
+
"required": false,
|
|
3579
|
+
"type": "string | undefined",
|
|
3580
|
+
"schema": {
|
|
3581
|
+
"kind": "enum",
|
|
3582
|
+
"type": "string | undefined",
|
|
3583
|
+
"schema": {
|
|
3584
|
+
"0": "undefined",
|
|
3585
|
+
"1": "string"
|
|
3586
|
+
}
|
|
3587
|
+
},
|
|
3588
|
+
"default": "\"\""
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"name": "inactiveClass",
|
|
3592
|
+
"global": false,
|
|
3593
|
+
"description": "The class to apply when the link is inactive",
|
|
3594
|
+
"tags": [
|
|
3595
|
+
{
|
|
3596
|
+
"name": "defaultValue",
|
|
3597
|
+
"text": "''"
|
|
3598
|
+
}
|
|
3599
|
+
],
|
|
3600
|
+
"required": false,
|
|
3601
|
+
"type": "string | undefined",
|
|
3602
|
+
"schema": {
|
|
3603
|
+
"kind": "enum",
|
|
3604
|
+
"type": "string | undefined",
|
|
3605
|
+
"schema": {
|
|
3606
|
+
"0": "undefined",
|
|
3607
|
+
"1": "string"
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3610
|
+
"default": "\"\""
|
|
3611
|
+
},
|
|
3498
3612
|
{
|
|
3499
3613
|
"name": "b24ui",
|
|
3500
3614
|
"global": false,
|
|
@@ -3943,22 +4057,6 @@ const B24UIMeta = {
|
|
|
3943
4057
|
}
|
|
3944
4058
|
}
|
|
3945
4059
|
},
|
|
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
4060
|
{
|
|
3963
4061
|
"name": "exactActiveClass",
|
|
3964
4062
|
"global": false,
|
|
@@ -4068,7 +4166,8 @@ const B24UIMeta = {
|
|
|
4068
4166
|
"1": "false",
|
|
4069
4167
|
"2": "true"
|
|
4070
4168
|
}
|
|
4071
|
-
}
|
|
4169
|
+
},
|
|
4170
|
+
"default": "undefined"
|
|
4072
4171
|
},
|
|
4073
4172
|
{
|
|
4074
4173
|
"name": "exact",
|
|
@@ -4122,22 +4221,6 @@ const B24UIMeta = {
|
|
|
4122
4221
|
}
|
|
4123
4222
|
}
|
|
4124
4223
|
},
|
|
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
4224
|
{
|
|
4142
4225
|
"name": "isAction",
|
|
4143
4226
|
"global": false,
|
|
@@ -6210,6 +6293,15 @@ const B24UIMeta = {
|
|
|
6210
6293
|
}
|
|
6211
6294
|
}
|
|
6212
6295
|
},
|
|
6296
|
+
"activeColor": {
|
|
6297
|
+
"name": "activeColor",
|
|
6298
|
+
"global": false,
|
|
6299
|
+
"description": "",
|
|
6300
|
+
"tags": [],
|
|
6301
|
+
"required": false,
|
|
6302
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
6303
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
6304
|
+
},
|
|
6213
6305
|
"depth": {
|
|
6214
6306
|
"name": "depth",
|
|
6215
6307
|
"global": false,
|
|
@@ -6233,6 +6325,15 @@ const B24UIMeta = {
|
|
|
6233
6325
|
}
|
|
6234
6326
|
}
|
|
6235
6327
|
},
|
|
6328
|
+
"activeDepth": {
|
|
6329
|
+
"name": "activeDepth",
|
|
6330
|
+
"global": false,
|
|
6331
|
+
"description": "",
|
|
6332
|
+
"tags": [],
|
|
6333
|
+
"required": false,
|
|
6334
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
6335
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
6336
|
+
},
|
|
6236
6337
|
"size": {
|
|
6237
6338
|
"name": "size",
|
|
6238
6339
|
"global": false,
|
|
@@ -6403,6 +6504,34 @@ const B24UIMeta = {
|
|
|
6403
6504
|
"type": "any",
|
|
6404
6505
|
"schema": "any"
|
|
6405
6506
|
},
|
|
6507
|
+
"activeClass": {
|
|
6508
|
+
"name": "activeClass",
|
|
6509
|
+
"global": false,
|
|
6510
|
+
"description": "The class to apply when the link is active",
|
|
6511
|
+
"tags": [
|
|
6512
|
+
{
|
|
6513
|
+
"name": "defaultValue",
|
|
6514
|
+
"text": "''"
|
|
6515
|
+
}
|
|
6516
|
+
],
|
|
6517
|
+
"required": false,
|
|
6518
|
+
"type": "string | undefined",
|
|
6519
|
+
"schema": "string | undefined"
|
|
6520
|
+
},
|
|
6521
|
+
"inactiveClass": {
|
|
6522
|
+
"name": "inactiveClass",
|
|
6523
|
+
"global": false,
|
|
6524
|
+
"description": "The class to apply when the link is inactive",
|
|
6525
|
+
"tags": [
|
|
6526
|
+
{
|
|
6527
|
+
"name": "defaultValue",
|
|
6528
|
+
"text": "''"
|
|
6529
|
+
}
|
|
6530
|
+
],
|
|
6531
|
+
"required": false,
|
|
6532
|
+
"type": "string | undefined",
|
|
6533
|
+
"schema": "string | undefined"
|
|
6534
|
+
},
|
|
6406
6535
|
"b24ui": {
|
|
6407
6536
|
"name": "b24ui",
|
|
6408
6537
|
"global": false,
|
|
@@ -6678,15 +6807,6 @@ const B24UIMeta = {
|
|
|
6678
6807
|
}
|
|
6679
6808
|
}
|
|
6680
6809
|
},
|
|
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
6810
|
"exactActiveClass": {
|
|
6691
6811
|
"name": "exactActiveClass",
|
|
6692
6812
|
"global": false,
|
|
@@ -6795,15 +6915,6 @@ const B24UIMeta = {
|
|
|
6795
6915
|
"type": "boolean | undefined",
|
|
6796
6916
|
"schema": "boolean | undefined"
|
|
6797
6917
|
},
|
|
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
6918
|
"isAction": {
|
|
6808
6919
|
"name": "isAction",
|
|
6809
6920
|
"global": false,
|
|
@@ -7331,6 +7442,15 @@ const B24UIMeta = {
|
|
|
7331
7442
|
}
|
|
7332
7443
|
}
|
|
7333
7444
|
},
|
|
7445
|
+
"activeColor": {
|
|
7446
|
+
"name": "activeColor",
|
|
7447
|
+
"global": false,
|
|
7448
|
+
"description": "",
|
|
7449
|
+
"tags": [],
|
|
7450
|
+
"required": false,
|
|
7451
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
7452
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
7453
|
+
},
|
|
7334
7454
|
"depth": {
|
|
7335
7455
|
"name": "depth",
|
|
7336
7456
|
"global": false,
|
|
@@ -7354,6 +7474,15 @@ const B24UIMeta = {
|
|
|
7354
7474
|
}
|
|
7355
7475
|
}
|
|
7356
7476
|
},
|
|
7477
|
+
"activeDepth": {
|
|
7478
|
+
"name": "activeDepth",
|
|
7479
|
+
"global": false,
|
|
7480
|
+
"description": "",
|
|
7481
|
+
"tags": [],
|
|
7482
|
+
"required": false,
|
|
7483
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
7484
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
7485
|
+
},
|
|
7357
7486
|
"size": {
|
|
7358
7487
|
"name": "size",
|
|
7359
7488
|
"global": false,
|
|
@@ -7524,6 +7653,34 @@ const B24UIMeta = {
|
|
|
7524
7653
|
"type": "any",
|
|
7525
7654
|
"schema": "any"
|
|
7526
7655
|
},
|
|
7656
|
+
"activeClass": {
|
|
7657
|
+
"name": "activeClass",
|
|
7658
|
+
"global": false,
|
|
7659
|
+
"description": "The class to apply when the link is active",
|
|
7660
|
+
"tags": [
|
|
7661
|
+
{
|
|
7662
|
+
"name": "defaultValue",
|
|
7663
|
+
"text": "''"
|
|
7664
|
+
}
|
|
7665
|
+
],
|
|
7666
|
+
"required": false,
|
|
7667
|
+
"type": "string | undefined",
|
|
7668
|
+
"schema": "string | undefined"
|
|
7669
|
+
},
|
|
7670
|
+
"inactiveClass": {
|
|
7671
|
+
"name": "inactiveClass",
|
|
7672
|
+
"global": false,
|
|
7673
|
+
"description": "The class to apply when the link is inactive",
|
|
7674
|
+
"tags": [
|
|
7675
|
+
{
|
|
7676
|
+
"name": "defaultValue",
|
|
7677
|
+
"text": "''"
|
|
7678
|
+
}
|
|
7679
|
+
],
|
|
7680
|
+
"required": false,
|
|
7681
|
+
"type": "string | undefined",
|
|
7682
|
+
"schema": "string | undefined"
|
|
7683
|
+
},
|
|
7527
7684
|
"b24ui": {
|
|
7528
7685
|
"name": "b24ui",
|
|
7529
7686
|
"global": false,
|
|
@@ -7799,15 +7956,6 @@ const B24UIMeta = {
|
|
|
7799
7956
|
}
|
|
7800
7957
|
}
|
|
7801
7958
|
},
|
|
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
7959
|
"exactActiveClass": {
|
|
7812
7960
|
"name": "exactActiveClass",
|
|
7813
7961
|
"global": false,
|
|
@@ -7916,15 +8064,6 @@ const B24UIMeta = {
|
|
|
7916
8064
|
"type": "boolean | undefined",
|
|
7917
8065
|
"schema": "boolean | undefined"
|
|
7918
8066
|
},
|
|
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
8067
|
"isAction": {
|
|
7929
8068
|
"name": "isAction",
|
|
7930
8069
|
"global": false,
|
|
@@ -8386,6 +8525,15 @@ const B24UIMeta = {
|
|
|
8386
8525
|
}
|
|
8387
8526
|
}
|
|
8388
8527
|
},
|
|
8528
|
+
"activeColor": {
|
|
8529
|
+
"name": "activeColor",
|
|
8530
|
+
"global": false,
|
|
8531
|
+
"description": "",
|
|
8532
|
+
"tags": [],
|
|
8533
|
+
"required": false,
|
|
8534
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
8535
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
8536
|
+
},
|
|
8389
8537
|
"depth": {
|
|
8390
8538
|
"name": "depth",
|
|
8391
8539
|
"global": false,
|
|
@@ -8409,6 +8557,15 @@ const B24UIMeta = {
|
|
|
8409
8557
|
}
|
|
8410
8558
|
}
|
|
8411
8559
|
},
|
|
8560
|
+
"activeDepth": {
|
|
8561
|
+
"name": "activeDepth",
|
|
8562
|
+
"global": false,
|
|
8563
|
+
"description": "",
|
|
8564
|
+
"tags": [],
|
|
8565
|
+
"required": false,
|
|
8566
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
8567
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
8568
|
+
},
|
|
8412
8569
|
"size": {
|
|
8413
8570
|
"name": "size",
|
|
8414
8571
|
"global": false,
|
|
@@ -8579,6 +8736,34 @@ const B24UIMeta = {
|
|
|
8579
8736
|
"type": "any",
|
|
8580
8737
|
"schema": "any"
|
|
8581
8738
|
},
|
|
8739
|
+
"activeClass": {
|
|
8740
|
+
"name": "activeClass",
|
|
8741
|
+
"global": false,
|
|
8742
|
+
"description": "The class to apply when the link is active",
|
|
8743
|
+
"tags": [
|
|
8744
|
+
{
|
|
8745
|
+
"name": "defaultValue",
|
|
8746
|
+
"text": "''"
|
|
8747
|
+
}
|
|
8748
|
+
],
|
|
8749
|
+
"required": false,
|
|
8750
|
+
"type": "string | undefined",
|
|
8751
|
+
"schema": "string | undefined"
|
|
8752
|
+
},
|
|
8753
|
+
"inactiveClass": {
|
|
8754
|
+
"name": "inactiveClass",
|
|
8755
|
+
"global": false,
|
|
8756
|
+
"description": "The class to apply when the link is inactive",
|
|
8757
|
+
"tags": [
|
|
8758
|
+
{
|
|
8759
|
+
"name": "defaultValue",
|
|
8760
|
+
"text": "''"
|
|
8761
|
+
}
|
|
8762
|
+
],
|
|
8763
|
+
"required": false,
|
|
8764
|
+
"type": "string | undefined",
|
|
8765
|
+
"schema": "string | undefined"
|
|
8766
|
+
},
|
|
8582
8767
|
"b24ui": {
|
|
8583
8768
|
"name": "b24ui",
|
|
8584
8769
|
"global": false,
|
|
@@ -8854,15 +9039,6 @@ const B24UIMeta = {
|
|
|
8854
9039
|
}
|
|
8855
9040
|
}
|
|
8856
9041
|
},
|
|
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
9042
|
"exactActiveClass": {
|
|
8867
9043
|
"name": "exactActiveClass",
|
|
8868
9044
|
"global": false,
|
|
@@ -8971,15 +9147,6 @@ const B24UIMeta = {
|
|
|
8971
9147
|
"type": "boolean | undefined",
|
|
8972
9148
|
"schema": "boolean | undefined"
|
|
8973
9149
|
},
|
|
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
9150
|
"isAction": {
|
|
8984
9151
|
"name": "isAction",
|
|
8985
9152
|
"global": false,
|
|
@@ -9441,6 +9608,15 @@ const B24UIMeta = {
|
|
|
9441
9608
|
}
|
|
9442
9609
|
}
|
|
9443
9610
|
},
|
|
9611
|
+
"activeColor": {
|
|
9612
|
+
"name": "activeColor",
|
|
9613
|
+
"global": false,
|
|
9614
|
+
"description": "",
|
|
9615
|
+
"tags": [],
|
|
9616
|
+
"required": false,
|
|
9617
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
9618
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
9619
|
+
},
|
|
9444
9620
|
"depth": {
|
|
9445
9621
|
"name": "depth",
|
|
9446
9622
|
"global": false,
|
|
@@ -9464,6 +9640,15 @@ const B24UIMeta = {
|
|
|
9464
9640
|
}
|
|
9465
9641
|
}
|
|
9466
9642
|
},
|
|
9643
|
+
"activeDepth": {
|
|
9644
|
+
"name": "activeDepth",
|
|
9645
|
+
"global": false,
|
|
9646
|
+
"description": "",
|
|
9647
|
+
"tags": [],
|
|
9648
|
+
"required": false,
|
|
9649
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
9650
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
9651
|
+
},
|
|
9467
9652
|
"size": {
|
|
9468
9653
|
"name": "size",
|
|
9469
9654
|
"global": false,
|
|
@@ -9634,6 +9819,34 @@ const B24UIMeta = {
|
|
|
9634
9819
|
"type": "any",
|
|
9635
9820
|
"schema": "any"
|
|
9636
9821
|
},
|
|
9822
|
+
"activeClass": {
|
|
9823
|
+
"name": "activeClass",
|
|
9824
|
+
"global": false,
|
|
9825
|
+
"description": "The class to apply when the link is active",
|
|
9826
|
+
"tags": [
|
|
9827
|
+
{
|
|
9828
|
+
"name": "defaultValue",
|
|
9829
|
+
"text": "''"
|
|
9830
|
+
}
|
|
9831
|
+
],
|
|
9832
|
+
"required": false,
|
|
9833
|
+
"type": "string | undefined",
|
|
9834
|
+
"schema": "string | undefined"
|
|
9835
|
+
},
|
|
9836
|
+
"inactiveClass": {
|
|
9837
|
+
"name": "inactiveClass",
|
|
9838
|
+
"global": false,
|
|
9839
|
+
"description": "The class to apply when the link is inactive",
|
|
9840
|
+
"tags": [
|
|
9841
|
+
{
|
|
9842
|
+
"name": "defaultValue",
|
|
9843
|
+
"text": "''"
|
|
9844
|
+
}
|
|
9845
|
+
],
|
|
9846
|
+
"required": false,
|
|
9847
|
+
"type": "string | undefined",
|
|
9848
|
+
"schema": "string | undefined"
|
|
9849
|
+
},
|
|
9637
9850
|
"b24ui": {
|
|
9638
9851
|
"name": "b24ui",
|
|
9639
9852
|
"global": false,
|
|
@@ -9909,15 +10122,6 @@ const B24UIMeta = {
|
|
|
9909
10122
|
}
|
|
9910
10123
|
}
|
|
9911
10124
|
},
|
|
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
10125
|
"exactActiveClass": {
|
|
9922
10126
|
"name": "exactActiveClass",
|
|
9923
10127
|
"global": false,
|
|
@@ -10026,15 +10230,6 @@ const B24UIMeta = {
|
|
|
10026
10230
|
"type": "boolean | undefined",
|
|
10027
10231
|
"schema": "boolean | undefined"
|
|
10028
10232
|
},
|
|
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
10233
|
"isAction": {
|
|
10039
10234
|
"name": "isAction",
|
|
10040
10235
|
"global": false,
|
|
@@ -10496,6 +10691,15 @@ const B24UIMeta = {
|
|
|
10496
10691
|
}
|
|
10497
10692
|
}
|
|
10498
10693
|
},
|
|
10694
|
+
"activeColor": {
|
|
10695
|
+
"name": "activeColor",
|
|
10696
|
+
"global": false,
|
|
10697
|
+
"description": "",
|
|
10698
|
+
"tags": [],
|
|
10699
|
+
"required": false,
|
|
10700
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
10701
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
10702
|
+
},
|
|
10499
10703
|
"depth": {
|
|
10500
10704
|
"name": "depth",
|
|
10501
10705
|
"global": false,
|
|
@@ -10519,6 +10723,15 @@ const B24UIMeta = {
|
|
|
10519
10723
|
}
|
|
10520
10724
|
}
|
|
10521
10725
|
},
|
|
10726
|
+
"activeDepth": {
|
|
10727
|
+
"name": "activeDepth",
|
|
10728
|
+
"global": false,
|
|
10729
|
+
"description": "",
|
|
10730
|
+
"tags": [],
|
|
10731
|
+
"required": false,
|
|
10732
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
10733
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
10734
|
+
},
|
|
10522
10735
|
"size": {
|
|
10523
10736
|
"name": "size",
|
|
10524
10737
|
"global": false,
|
|
@@ -10689,6 +10902,34 @@ const B24UIMeta = {
|
|
|
10689
10902
|
"type": "any",
|
|
10690
10903
|
"schema": "any"
|
|
10691
10904
|
},
|
|
10905
|
+
"activeClass": {
|
|
10906
|
+
"name": "activeClass",
|
|
10907
|
+
"global": false,
|
|
10908
|
+
"description": "The class to apply when the link is active",
|
|
10909
|
+
"tags": [
|
|
10910
|
+
{
|
|
10911
|
+
"name": "defaultValue",
|
|
10912
|
+
"text": "''"
|
|
10913
|
+
}
|
|
10914
|
+
],
|
|
10915
|
+
"required": false,
|
|
10916
|
+
"type": "string | undefined",
|
|
10917
|
+
"schema": "string | undefined"
|
|
10918
|
+
},
|
|
10919
|
+
"inactiveClass": {
|
|
10920
|
+
"name": "inactiveClass",
|
|
10921
|
+
"global": false,
|
|
10922
|
+
"description": "The class to apply when the link is inactive",
|
|
10923
|
+
"tags": [
|
|
10924
|
+
{
|
|
10925
|
+
"name": "defaultValue",
|
|
10926
|
+
"text": "''"
|
|
10927
|
+
}
|
|
10928
|
+
],
|
|
10929
|
+
"required": false,
|
|
10930
|
+
"type": "string | undefined",
|
|
10931
|
+
"schema": "string | undefined"
|
|
10932
|
+
},
|
|
10692
10933
|
"b24ui": {
|
|
10693
10934
|
"name": "b24ui",
|
|
10694
10935
|
"global": false,
|
|
@@ -10964,15 +11205,6 @@ const B24UIMeta = {
|
|
|
10964
11205
|
}
|
|
10965
11206
|
}
|
|
10966
11207
|
},
|
|
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
11208
|
"exactActiveClass": {
|
|
10977
11209
|
"name": "exactActiveClass",
|
|
10978
11210
|
"global": false,
|
|
@@ -11081,15 +11313,6 @@ const B24UIMeta = {
|
|
|
11081
11313
|
"type": "boolean | undefined",
|
|
11082
11314
|
"schema": "boolean | undefined"
|
|
11083
11315
|
},
|
|
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
11316
|
"isAction": {
|
|
11094
11317
|
"name": "isAction",
|
|
11095
11318
|
"global": false,
|
|
@@ -25240,6 +25463,15 @@ const B24UIMeta = {
|
|
|
25240
25463
|
}
|
|
25241
25464
|
}
|
|
25242
25465
|
},
|
|
25466
|
+
"activeColor": {
|
|
25467
|
+
"name": "activeColor",
|
|
25468
|
+
"global": false,
|
|
25469
|
+
"description": "",
|
|
25470
|
+
"tags": [],
|
|
25471
|
+
"required": false,
|
|
25472
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
25473
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
25474
|
+
},
|
|
25243
25475
|
"depth": {
|
|
25244
25476
|
"name": "depth",
|
|
25245
25477
|
"global": false,
|
|
@@ -25263,6 +25495,15 @@ const B24UIMeta = {
|
|
|
25263
25495
|
}
|
|
25264
25496
|
}
|
|
25265
25497
|
},
|
|
25498
|
+
"activeDepth": {
|
|
25499
|
+
"name": "activeDepth",
|
|
25500
|
+
"global": false,
|
|
25501
|
+
"description": "",
|
|
25502
|
+
"tags": [],
|
|
25503
|
+
"required": false,
|
|
25504
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
25505
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
25506
|
+
},
|
|
25266
25507
|
"size": {
|
|
25267
25508
|
"name": "size",
|
|
25268
25509
|
"global": false,
|
|
@@ -25433,6 +25674,34 @@ const B24UIMeta = {
|
|
|
25433
25674
|
"type": "any",
|
|
25434
25675
|
"schema": "any"
|
|
25435
25676
|
},
|
|
25677
|
+
"activeClass": {
|
|
25678
|
+
"name": "activeClass",
|
|
25679
|
+
"global": false,
|
|
25680
|
+
"description": "The class to apply when the link is active",
|
|
25681
|
+
"tags": [
|
|
25682
|
+
{
|
|
25683
|
+
"name": "defaultValue",
|
|
25684
|
+
"text": "''"
|
|
25685
|
+
}
|
|
25686
|
+
],
|
|
25687
|
+
"required": false,
|
|
25688
|
+
"type": "string | undefined",
|
|
25689
|
+
"schema": "string | undefined"
|
|
25690
|
+
},
|
|
25691
|
+
"inactiveClass": {
|
|
25692
|
+
"name": "inactiveClass",
|
|
25693
|
+
"global": false,
|
|
25694
|
+
"description": "The class to apply when the link is inactive",
|
|
25695
|
+
"tags": [
|
|
25696
|
+
{
|
|
25697
|
+
"name": "defaultValue",
|
|
25698
|
+
"text": "''"
|
|
25699
|
+
}
|
|
25700
|
+
],
|
|
25701
|
+
"required": false,
|
|
25702
|
+
"type": "string | undefined",
|
|
25703
|
+
"schema": "string | undefined"
|
|
25704
|
+
},
|
|
25436
25705
|
"b24ui": {
|
|
25437
25706
|
"name": "b24ui",
|
|
25438
25707
|
"global": false,
|
|
@@ -25839,15 +26108,6 @@ const B24UIMeta = {
|
|
|
25839
26108
|
}
|
|
25840
26109
|
}
|
|
25841
26110
|
},
|
|
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
26111
|
"exactActiveClass": {
|
|
25852
26112
|
"name": "exactActiveClass",
|
|
25853
26113
|
"global": false,
|
|
@@ -25956,15 +26216,6 @@ const B24UIMeta = {
|
|
|
25956
26216
|
"type": "boolean | undefined",
|
|
25957
26217
|
"schema": "boolean | undefined"
|
|
25958
26218
|
},
|
|
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
26219
|
"isAction": {
|
|
25969
26220
|
"name": "isAction",
|
|
25970
26221
|
"global": false,
|
|
@@ -26192,6 +26443,15 @@ const B24UIMeta = {
|
|
|
26192
26443
|
}
|
|
26193
26444
|
}
|
|
26194
26445
|
},
|
|
26446
|
+
"activeColor": {
|
|
26447
|
+
"name": "activeColor",
|
|
26448
|
+
"global": false,
|
|
26449
|
+
"description": "",
|
|
26450
|
+
"tags": [],
|
|
26451
|
+
"required": false,
|
|
26452
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
26453
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
26454
|
+
},
|
|
26195
26455
|
"depth": {
|
|
26196
26456
|
"name": "depth",
|
|
26197
26457
|
"global": false,
|
|
@@ -26215,6 +26475,15 @@ const B24UIMeta = {
|
|
|
26215
26475
|
}
|
|
26216
26476
|
}
|
|
26217
26477
|
},
|
|
26478
|
+
"activeDepth": {
|
|
26479
|
+
"name": "activeDepth",
|
|
26480
|
+
"global": false,
|
|
26481
|
+
"description": "",
|
|
26482
|
+
"tags": [],
|
|
26483
|
+
"required": false,
|
|
26484
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
26485
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
26486
|
+
},
|
|
26218
26487
|
"size": {
|
|
26219
26488
|
"name": "size",
|
|
26220
26489
|
"global": false,
|
|
@@ -26385,6 +26654,34 @@ const B24UIMeta = {
|
|
|
26385
26654
|
"type": "any",
|
|
26386
26655
|
"schema": "any"
|
|
26387
26656
|
},
|
|
26657
|
+
"activeClass": {
|
|
26658
|
+
"name": "activeClass",
|
|
26659
|
+
"global": false,
|
|
26660
|
+
"description": "The class to apply when the link is active",
|
|
26661
|
+
"tags": [
|
|
26662
|
+
{
|
|
26663
|
+
"name": "defaultValue",
|
|
26664
|
+
"text": "''"
|
|
26665
|
+
}
|
|
26666
|
+
],
|
|
26667
|
+
"required": false,
|
|
26668
|
+
"type": "string | undefined",
|
|
26669
|
+
"schema": "string | undefined"
|
|
26670
|
+
},
|
|
26671
|
+
"inactiveClass": {
|
|
26672
|
+
"name": "inactiveClass",
|
|
26673
|
+
"global": false,
|
|
26674
|
+
"description": "The class to apply when the link is inactive",
|
|
26675
|
+
"tags": [
|
|
26676
|
+
{
|
|
26677
|
+
"name": "defaultValue",
|
|
26678
|
+
"text": "''"
|
|
26679
|
+
}
|
|
26680
|
+
],
|
|
26681
|
+
"required": false,
|
|
26682
|
+
"type": "string | undefined",
|
|
26683
|
+
"schema": "string | undefined"
|
|
26684
|
+
},
|
|
26388
26685
|
"b24ui": {
|
|
26389
26686
|
"name": "b24ui",
|
|
26390
26687
|
"global": false,
|
|
@@ -26791,15 +27088,6 @@ const B24UIMeta = {
|
|
|
26791
27088
|
}
|
|
26792
27089
|
}
|
|
26793
27090
|
},
|
|
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
27091
|
"exactActiveClass": {
|
|
26804
27092
|
"name": "exactActiveClass",
|
|
26805
27093
|
"global": false,
|
|
@@ -26908,15 +27196,6 @@ const B24UIMeta = {
|
|
|
26908
27196
|
"type": "boolean | undefined",
|
|
26909
27197
|
"schema": "boolean | undefined"
|
|
26910
27198
|
},
|
|
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
27199
|
"isAction": {
|
|
26921
27200
|
"name": "isAction",
|
|
26922
27201
|
"global": false,
|
|
@@ -28619,6 +28898,30 @@ const B24UIMeta = {
|
|
|
28619
28898
|
},
|
|
28620
28899
|
"default": "true"
|
|
28621
28900
|
},
|
|
28901
|
+
{
|
|
28902
|
+
"name": "overlayBlur",
|
|
28903
|
+
"global": false,
|
|
28904
|
+
"description": "Render an overlay blur behind the modal.\n`auto` use `motion-safe`.",
|
|
28905
|
+
"tags": [
|
|
28906
|
+
{
|
|
28907
|
+
"name": "defaultValue",
|
|
28908
|
+
"text": "'auto'"
|
|
28909
|
+
}
|
|
28910
|
+
],
|
|
28911
|
+
"required": false,
|
|
28912
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
28913
|
+
"schema": {
|
|
28914
|
+
"kind": "enum",
|
|
28915
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
28916
|
+
"schema": {
|
|
28917
|
+
"0": "undefined",
|
|
28918
|
+
"1": "\"off\"",
|
|
28919
|
+
"2": "\"auto\"",
|
|
28920
|
+
"3": "\"on\""
|
|
28921
|
+
}
|
|
28922
|
+
},
|
|
28923
|
+
"default": "\"auto\""
|
|
28924
|
+
},
|
|
28622
28925
|
{
|
|
28623
28926
|
"name": "transition",
|
|
28624
28927
|
"global": false,
|
|
@@ -39444,6 +39747,30 @@ const B24UIMeta = {
|
|
|
39444
39747
|
},
|
|
39445
39748
|
"default": "true"
|
|
39446
39749
|
},
|
|
39750
|
+
{
|
|
39751
|
+
"name": "overlayBlur",
|
|
39752
|
+
"global": false,
|
|
39753
|
+
"description": "Render an overlay blur behind the slideover.\n`auto` use `motion-safe`.",
|
|
39754
|
+
"tags": [
|
|
39755
|
+
{
|
|
39756
|
+
"name": "defaultValue",
|
|
39757
|
+
"text": "'auto'"
|
|
39758
|
+
}
|
|
39759
|
+
],
|
|
39760
|
+
"required": false,
|
|
39761
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
39762
|
+
"schema": {
|
|
39763
|
+
"kind": "enum",
|
|
39764
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
39765
|
+
"schema": {
|
|
39766
|
+
"0": "undefined",
|
|
39767
|
+
"1": "\"off\"",
|
|
39768
|
+
"2": "\"auto\"",
|
|
39769
|
+
"3": "\"on\""
|
|
39770
|
+
}
|
|
39771
|
+
},
|
|
39772
|
+
"default": "\"auto\""
|
|
39773
|
+
},
|
|
39447
39774
|
{
|
|
39448
39775
|
"name": "transition",
|
|
39449
39776
|
"global": false,
|
|
@@ -42600,6 +42927,15 @@ const B24UIMeta = {
|
|
|
42600
42927
|
}
|
|
42601
42928
|
}
|
|
42602
42929
|
},
|
|
42930
|
+
"activeColor": {
|
|
42931
|
+
"name": "activeColor",
|
|
42932
|
+
"global": false,
|
|
42933
|
+
"description": "",
|
|
42934
|
+
"tags": [],
|
|
42935
|
+
"required": false,
|
|
42936
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
42937
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
42938
|
+
},
|
|
42603
42939
|
"depth": {
|
|
42604
42940
|
"name": "depth",
|
|
42605
42941
|
"global": false,
|
|
@@ -42623,6 +42959,15 @@ const B24UIMeta = {
|
|
|
42623
42959
|
}
|
|
42624
42960
|
}
|
|
42625
42961
|
},
|
|
42962
|
+
"activeDepth": {
|
|
42963
|
+
"name": "activeDepth",
|
|
42964
|
+
"global": false,
|
|
42965
|
+
"description": "",
|
|
42966
|
+
"tags": [],
|
|
42967
|
+
"required": false,
|
|
42968
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
42969
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
42970
|
+
},
|
|
42626
42971
|
"size": {
|
|
42627
42972
|
"name": "size",
|
|
42628
42973
|
"global": false,
|
|
@@ -42793,6 +43138,34 @@ const B24UIMeta = {
|
|
|
42793
43138
|
"type": "any",
|
|
42794
43139
|
"schema": "any"
|
|
42795
43140
|
},
|
|
43141
|
+
"activeClass": {
|
|
43142
|
+
"name": "activeClass",
|
|
43143
|
+
"global": false,
|
|
43144
|
+
"description": "The class to apply when the link is active",
|
|
43145
|
+
"tags": [
|
|
43146
|
+
{
|
|
43147
|
+
"name": "defaultValue",
|
|
43148
|
+
"text": "''"
|
|
43149
|
+
}
|
|
43150
|
+
],
|
|
43151
|
+
"required": false,
|
|
43152
|
+
"type": "string | undefined",
|
|
43153
|
+
"schema": "string | undefined"
|
|
43154
|
+
},
|
|
43155
|
+
"inactiveClass": {
|
|
43156
|
+
"name": "inactiveClass",
|
|
43157
|
+
"global": false,
|
|
43158
|
+
"description": "The class to apply when the link is inactive",
|
|
43159
|
+
"tags": [
|
|
43160
|
+
{
|
|
43161
|
+
"name": "defaultValue",
|
|
43162
|
+
"text": "''"
|
|
43163
|
+
}
|
|
43164
|
+
],
|
|
43165
|
+
"required": false,
|
|
43166
|
+
"type": "string | undefined",
|
|
43167
|
+
"schema": "string | undefined"
|
|
43168
|
+
},
|
|
42796
43169
|
"b24ui": {
|
|
42797
43170
|
"name": "b24ui",
|
|
42798
43171
|
"global": false,
|
|
@@ -43199,15 +43572,6 @@ const B24UIMeta = {
|
|
|
43199
43572
|
}
|
|
43200
43573
|
}
|
|
43201
43574
|
},
|
|
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
43575
|
"exactActiveClass": {
|
|
43212
43576
|
"name": "exactActiveClass",
|
|
43213
43577
|
"global": false,
|
|
@@ -43316,15 +43680,6 @@ const B24UIMeta = {
|
|
|
43316
43680
|
"type": "boolean | undefined",
|
|
43317
43681
|
"schema": "boolean | undefined"
|
|
43318
43682
|
},
|
|
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
43683
|
"isAction": {
|
|
43329
43684
|
"name": "isAction",
|
|
43330
43685
|
"global": false,
|
|
@@ -44537,6 +44892,96 @@ const B24UIMeta = {
|
|
|
44537
44892
|
"exposed": []
|
|
44538
44893
|
}
|
|
44539
44894
|
},
|
|
44895
|
+
"ProseBlockquote": {
|
|
44896
|
+
"mode": "all",
|
|
44897
|
+
"prefetch": false,
|
|
44898
|
+
"preload": false,
|
|
44899
|
+
"pascalName": "ProseBlockquote",
|
|
44900
|
+
"kebabName": "prose-blockquote",
|
|
44901
|
+
"chunkName": "components/prose-blockquote",
|
|
44902
|
+
"priority": 0,
|
|
44903
|
+
"_scanned": true,
|
|
44904
|
+
"meta": {
|
|
44905
|
+
"type": 0,
|
|
44906
|
+
"props": [
|
|
44907
|
+
{
|
|
44908
|
+
"name": "b24ui",
|
|
44909
|
+
"global": false,
|
|
44910
|
+
"description": "",
|
|
44911
|
+
"tags": [],
|
|
44912
|
+
"required": false,
|
|
44913
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44914
|
+
"schema": {
|
|
44915
|
+
"kind": "enum",
|
|
44916
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44917
|
+
"schema": {
|
|
44918
|
+
"0": "undefined",
|
|
44919
|
+
"1": "Partial<{ base: string; }>"
|
|
44920
|
+
}
|
|
44921
|
+
}
|
|
44922
|
+
}
|
|
44923
|
+
],
|
|
44924
|
+
"slots": [
|
|
44925
|
+
{
|
|
44926
|
+
"name": "default",
|
|
44927
|
+
"type": "{}",
|
|
44928
|
+
"description": "",
|
|
44929
|
+
"schema": {
|
|
44930
|
+
"kind": "object",
|
|
44931
|
+
"type": "{}",
|
|
44932
|
+
"schema": {}
|
|
44933
|
+
}
|
|
44934
|
+
}
|
|
44935
|
+
],
|
|
44936
|
+
"events": [],
|
|
44937
|
+
"exposed": []
|
|
44938
|
+
}
|
|
44939
|
+
},
|
|
44940
|
+
"ProseEm": {
|
|
44941
|
+
"mode": "all",
|
|
44942
|
+
"prefetch": false,
|
|
44943
|
+
"preload": false,
|
|
44944
|
+
"pascalName": "ProseEm",
|
|
44945
|
+
"kebabName": "prose-em",
|
|
44946
|
+
"chunkName": "components/prose-em",
|
|
44947
|
+
"priority": 0,
|
|
44948
|
+
"_scanned": true,
|
|
44949
|
+
"meta": {
|
|
44950
|
+
"type": 0,
|
|
44951
|
+
"props": [
|
|
44952
|
+
{
|
|
44953
|
+
"name": "b24ui",
|
|
44954
|
+
"global": false,
|
|
44955
|
+
"description": "",
|
|
44956
|
+
"tags": [],
|
|
44957
|
+
"required": false,
|
|
44958
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44959
|
+
"schema": {
|
|
44960
|
+
"kind": "enum",
|
|
44961
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44962
|
+
"schema": {
|
|
44963
|
+
"0": "undefined",
|
|
44964
|
+
"1": "Partial<{ base: string; }>"
|
|
44965
|
+
}
|
|
44966
|
+
}
|
|
44967
|
+
}
|
|
44968
|
+
],
|
|
44969
|
+
"slots": [
|
|
44970
|
+
{
|
|
44971
|
+
"name": "default",
|
|
44972
|
+
"type": "{}",
|
|
44973
|
+
"description": "",
|
|
44974
|
+
"schema": {
|
|
44975
|
+
"kind": "object",
|
|
44976
|
+
"type": "{}",
|
|
44977
|
+
"schema": {}
|
|
44978
|
+
}
|
|
44979
|
+
}
|
|
44980
|
+
],
|
|
44981
|
+
"events": [],
|
|
44982
|
+
"exposed": []
|
|
44983
|
+
}
|
|
44984
|
+
},
|
|
44540
44985
|
"ProseH1": {
|
|
44541
44986
|
"mode": "all",
|
|
44542
44987
|
"prefetch": false,
|
|
@@ -44672,6 +45117,175 @@ const B24UIMeta = {
|
|
|
44672
45117
|
"exposed": []
|
|
44673
45118
|
}
|
|
44674
45119
|
},
|
|
45120
|
+
"ProseH4": {
|
|
45121
|
+
"mode": "all",
|
|
45122
|
+
"prefetch": false,
|
|
45123
|
+
"preload": false,
|
|
45124
|
+
"pascalName": "ProseH4",
|
|
45125
|
+
"kebabName": "prose-h4",
|
|
45126
|
+
"chunkName": "components/prose-h4",
|
|
45127
|
+
"priority": 0,
|
|
45128
|
+
"_scanned": true,
|
|
45129
|
+
"meta": {
|
|
45130
|
+
"type": 0,
|
|
45131
|
+
"props": [
|
|
45132
|
+
{
|
|
45133
|
+
"name": "b24ui",
|
|
45134
|
+
"global": false,
|
|
45135
|
+
"description": "",
|
|
45136
|
+
"tags": [],
|
|
45137
|
+
"required": false,
|
|
45138
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45139
|
+
"schema": {
|
|
45140
|
+
"kind": "enum",
|
|
45141
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45142
|
+
"schema": {
|
|
45143
|
+
"0": "undefined",
|
|
45144
|
+
"1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
|
|
45145
|
+
}
|
|
45146
|
+
}
|
|
45147
|
+
}
|
|
45148
|
+
],
|
|
45149
|
+
"slots": [
|
|
45150
|
+
{
|
|
45151
|
+
"name": "default",
|
|
45152
|
+
"type": "{}",
|
|
45153
|
+
"description": "",
|
|
45154
|
+
"schema": {
|
|
45155
|
+
"kind": "object",
|
|
45156
|
+
"type": "{}",
|
|
45157
|
+
"schema": {}
|
|
45158
|
+
}
|
|
45159
|
+
}
|
|
45160
|
+
],
|
|
45161
|
+
"events": [],
|
|
45162
|
+
"exposed": []
|
|
45163
|
+
}
|
|
45164
|
+
},
|
|
45165
|
+
"ProseH5": {
|
|
45166
|
+
"mode": "all",
|
|
45167
|
+
"prefetch": false,
|
|
45168
|
+
"preload": false,
|
|
45169
|
+
"pascalName": "ProseH5",
|
|
45170
|
+
"kebabName": "prose-h5",
|
|
45171
|
+
"chunkName": "components/prose-h5",
|
|
45172
|
+
"priority": 0,
|
|
45173
|
+
"_scanned": true,
|
|
45174
|
+
"meta": {
|
|
45175
|
+
"type": 0,
|
|
45176
|
+
"props": [
|
|
45177
|
+
{
|
|
45178
|
+
"name": "b24ui",
|
|
45179
|
+
"global": false,
|
|
45180
|
+
"description": "",
|
|
45181
|
+
"tags": [],
|
|
45182
|
+
"required": false,
|
|
45183
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45184
|
+
"schema": {
|
|
45185
|
+
"kind": "enum",
|
|
45186
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45187
|
+
"schema": {
|
|
45188
|
+
"0": "undefined",
|
|
45189
|
+
"1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
|
|
45190
|
+
}
|
|
45191
|
+
}
|
|
45192
|
+
}
|
|
45193
|
+
],
|
|
45194
|
+
"slots": [
|
|
45195
|
+
{
|
|
45196
|
+
"name": "default",
|
|
45197
|
+
"type": "{}",
|
|
45198
|
+
"description": "",
|
|
45199
|
+
"schema": {
|
|
45200
|
+
"kind": "object",
|
|
45201
|
+
"type": "{}",
|
|
45202
|
+
"schema": {}
|
|
45203
|
+
}
|
|
45204
|
+
}
|
|
45205
|
+
],
|
|
45206
|
+
"events": [],
|
|
45207
|
+
"exposed": []
|
|
45208
|
+
}
|
|
45209
|
+
},
|
|
45210
|
+
"ProseH6": {
|
|
45211
|
+
"mode": "all",
|
|
45212
|
+
"prefetch": false,
|
|
45213
|
+
"preload": false,
|
|
45214
|
+
"pascalName": "ProseH6",
|
|
45215
|
+
"kebabName": "prose-h6",
|
|
45216
|
+
"chunkName": "components/prose-h6",
|
|
45217
|
+
"priority": 0,
|
|
45218
|
+
"_scanned": true,
|
|
45219
|
+
"meta": {
|
|
45220
|
+
"type": 0,
|
|
45221
|
+
"props": [
|
|
45222
|
+
{
|
|
45223
|
+
"name": "b24ui",
|
|
45224
|
+
"global": false,
|
|
45225
|
+
"description": "",
|
|
45226
|
+
"tags": [],
|
|
45227
|
+
"required": false,
|
|
45228
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45229
|
+
"schema": {
|
|
45230
|
+
"kind": "enum",
|
|
45231
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45232
|
+
"schema": {
|
|
45233
|
+
"0": "undefined",
|
|
45234
|
+
"1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
|
|
45235
|
+
}
|
|
45236
|
+
}
|
|
45237
|
+
}
|
|
45238
|
+
],
|
|
45239
|
+
"slots": [
|
|
45240
|
+
{
|
|
45241
|
+
"name": "default",
|
|
45242
|
+
"type": "{}",
|
|
45243
|
+
"description": "",
|
|
45244
|
+
"schema": {
|
|
45245
|
+
"kind": "object",
|
|
45246
|
+
"type": "{}",
|
|
45247
|
+
"schema": {}
|
|
45248
|
+
}
|
|
45249
|
+
}
|
|
45250
|
+
],
|
|
45251
|
+
"events": [],
|
|
45252
|
+
"exposed": []
|
|
45253
|
+
}
|
|
45254
|
+
},
|
|
45255
|
+
"ProseHr": {
|
|
45256
|
+
"mode": "all",
|
|
45257
|
+
"prefetch": false,
|
|
45258
|
+
"preload": false,
|
|
45259
|
+
"pascalName": "ProseHr",
|
|
45260
|
+
"kebabName": "prose-hr",
|
|
45261
|
+
"chunkName": "components/prose-hr",
|
|
45262
|
+
"priority": 0,
|
|
45263
|
+
"_scanned": true,
|
|
45264
|
+
"meta": {
|
|
45265
|
+
"type": 0,
|
|
45266
|
+
"props": [
|
|
45267
|
+
{
|
|
45268
|
+
"name": "b24ui",
|
|
45269
|
+
"global": false,
|
|
45270
|
+
"description": "",
|
|
45271
|
+
"tags": [],
|
|
45272
|
+
"required": false,
|
|
45273
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45274
|
+
"schema": {
|
|
45275
|
+
"kind": "enum",
|
|
45276
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45277
|
+
"schema": {
|
|
45278
|
+
"0": "undefined",
|
|
45279
|
+
"1": "Partial<{ base: string; }>"
|
|
45280
|
+
}
|
|
45281
|
+
}
|
|
45282
|
+
}
|
|
45283
|
+
],
|
|
45284
|
+
"slots": [],
|
|
45285
|
+
"events": [],
|
|
45286
|
+
"exposed": []
|
|
45287
|
+
}
|
|
45288
|
+
},
|
|
44675
45289
|
"ProseLi": {
|
|
44676
45290
|
"mode": "all",
|
|
44677
45291
|
"prefetch": false,
|
|
@@ -44807,6 +45421,51 @@ const B24UIMeta = {
|
|
|
44807
45421
|
"exposed": []
|
|
44808
45422
|
}
|
|
44809
45423
|
},
|
|
45424
|
+
"ProseStrong": {
|
|
45425
|
+
"mode": "all",
|
|
45426
|
+
"prefetch": false,
|
|
45427
|
+
"preload": false,
|
|
45428
|
+
"pascalName": "ProseStrong",
|
|
45429
|
+
"kebabName": "prose-strong",
|
|
45430
|
+
"chunkName": "components/prose-strong",
|
|
45431
|
+
"priority": 0,
|
|
45432
|
+
"_scanned": true,
|
|
45433
|
+
"meta": {
|
|
45434
|
+
"type": 0,
|
|
45435
|
+
"props": [
|
|
45436
|
+
{
|
|
45437
|
+
"name": "b24ui",
|
|
45438
|
+
"global": false,
|
|
45439
|
+
"description": "",
|
|
45440
|
+
"tags": [],
|
|
45441
|
+
"required": false,
|
|
45442
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45443
|
+
"schema": {
|
|
45444
|
+
"kind": "enum",
|
|
45445
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45446
|
+
"schema": {
|
|
45447
|
+
"0": "undefined",
|
|
45448
|
+
"1": "Partial<{ base: string; }>"
|
|
45449
|
+
}
|
|
45450
|
+
}
|
|
45451
|
+
}
|
|
45452
|
+
],
|
|
45453
|
+
"slots": [
|
|
45454
|
+
{
|
|
45455
|
+
"name": "default",
|
|
45456
|
+
"type": "{}",
|
|
45457
|
+
"description": "",
|
|
45458
|
+
"schema": {
|
|
45459
|
+
"kind": "object",
|
|
45460
|
+
"type": "{}",
|
|
45461
|
+
"schema": {}
|
|
45462
|
+
}
|
|
45463
|
+
}
|
|
45464
|
+
],
|
|
45465
|
+
"events": [],
|
|
45466
|
+
"exposed": []
|
|
45467
|
+
}
|
|
45468
|
+
},
|
|
44810
45469
|
"ProseUl": {
|
|
44811
45470
|
"mode": "all",
|
|
44812
45471
|
"prefetch": false,
|