@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.d.mts
CHANGED
|
@@ -664,6 +664,15 @@ var B24UIMeta = {
|
|
|
664
664
|
}
|
|
665
665
|
}
|
|
666
666
|
},
|
|
667
|
+
"activeColor": {
|
|
668
|
+
"name": "activeColor",
|
|
669
|
+
"global": false,
|
|
670
|
+
"description": "",
|
|
671
|
+
"tags": [],
|
|
672
|
+
"required": false,
|
|
673
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
674
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
675
|
+
},
|
|
667
676
|
"depth": {
|
|
668
677
|
"name": "depth",
|
|
669
678
|
"global": false,
|
|
@@ -687,6 +696,15 @@ var B24UIMeta = {
|
|
|
687
696
|
}
|
|
688
697
|
}
|
|
689
698
|
},
|
|
699
|
+
"activeDepth": {
|
|
700
|
+
"name": "activeDepth",
|
|
701
|
+
"global": false,
|
|
702
|
+
"description": "",
|
|
703
|
+
"tags": [],
|
|
704
|
+
"required": false,
|
|
705
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
706
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
707
|
+
},
|
|
690
708
|
"size": {
|
|
691
709
|
"name": "size",
|
|
692
710
|
"global": false,
|
|
@@ -857,6 +875,34 @@ var B24UIMeta = {
|
|
|
857
875
|
"type": "any",
|
|
858
876
|
"schema": "any"
|
|
859
877
|
},
|
|
878
|
+
"activeClass": {
|
|
879
|
+
"name": "activeClass",
|
|
880
|
+
"global": false,
|
|
881
|
+
"description": "The class to apply when the link is active",
|
|
882
|
+
"tags": [
|
|
883
|
+
{
|
|
884
|
+
"name": "defaultValue",
|
|
885
|
+
"text": "''"
|
|
886
|
+
}
|
|
887
|
+
],
|
|
888
|
+
"required": false,
|
|
889
|
+
"type": "string | undefined",
|
|
890
|
+
"schema": "string | undefined"
|
|
891
|
+
},
|
|
892
|
+
"inactiveClass": {
|
|
893
|
+
"name": "inactiveClass",
|
|
894
|
+
"global": false,
|
|
895
|
+
"description": "The class to apply when the link is inactive",
|
|
896
|
+
"tags": [
|
|
897
|
+
{
|
|
898
|
+
"name": "defaultValue",
|
|
899
|
+
"text": "''"
|
|
900
|
+
}
|
|
901
|
+
],
|
|
902
|
+
"required": false,
|
|
903
|
+
"type": "string | undefined",
|
|
904
|
+
"schema": "string | undefined"
|
|
905
|
+
},
|
|
860
906
|
"b24ui": {
|
|
861
907
|
"name": "b24ui",
|
|
862
908
|
"global": false,
|
|
@@ -1263,15 +1309,6 @@ var B24UIMeta = {
|
|
|
1263
1309
|
}
|
|
1264
1310
|
}
|
|
1265
1311
|
},
|
|
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
1312
|
"exactActiveClass": {
|
|
1276
1313
|
"name": "exactActiveClass",
|
|
1277
1314
|
"global": false,
|
|
@@ -1380,15 +1417,6 @@ var B24UIMeta = {
|
|
|
1380
1417
|
"type": "boolean | undefined",
|
|
1381
1418
|
"schema": "boolean | undefined"
|
|
1382
1419
|
},
|
|
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
1420
|
"isAction": {
|
|
1393
1421
|
"name": "isAction",
|
|
1394
1422
|
"global": false,
|
|
@@ -3292,6 +3320,30 @@ var B24UIMeta = {
|
|
|
3292
3320
|
}
|
|
3293
3321
|
}
|
|
3294
3322
|
},
|
|
3323
|
+
{
|
|
3324
|
+
"name": "activeColor",
|
|
3325
|
+
"global": false,
|
|
3326
|
+
"description": "",
|
|
3327
|
+
"tags": [],
|
|
3328
|
+
"required": false,
|
|
3329
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
3330
|
+
"schema": {
|
|
3331
|
+
"kind": "enum",
|
|
3332
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
3333
|
+
"schema": {
|
|
3334
|
+
"0": "undefined",
|
|
3335
|
+
"1": "\"default\"",
|
|
3336
|
+
"2": "\"danger\"",
|
|
3337
|
+
"3": "\"success\"",
|
|
3338
|
+
"4": "\"warning\"",
|
|
3339
|
+
"5": "\"primary\"",
|
|
3340
|
+
"6": "\"secondary\"",
|
|
3341
|
+
"7": "\"collab\"",
|
|
3342
|
+
"8": "\"ai\"",
|
|
3343
|
+
"9": "\"link\""
|
|
3344
|
+
}
|
|
3345
|
+
}
|
|
3346
|
+
},
|
|
3295
3347
|
{
|
|
3296
3348
|
"name": "depth",
|
|
3297
3349
|
"global": false,
|
|
@@ -3315,6 +3367,24 @@ var B24UIMeta = {
|
|
|
3315
3367
|
}
|
|
3316
3368
|
}
|
|
3317
3369
|
},
|
|
3370
|
+
{
|
|
3371
|
+
"name": "activeDepth",
|
|
3372
|
+
"global": false,
|
|
3373
|
+
"description": "",
|
|
3374
|
+
"tags": [],
|
|
3375
|
+
"required": false,
|
|
3376
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
3377
|
+
"schema": {
|
|
3378
|
+
"kind": "enum",
|
|
3379
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
3380
|
+
"schema": {
|
|
3381
|
+
"0": "undefined",
|
|
3382
|
+
"1": "\"light\"",
|
|
3383
|
+
"2": "\"normal\"",
|
|
3384
|
+
"3": "\"dark\""
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3318
3388
|
{
|
|
3319
3389
|
"name": "size",
|
|
3320
3390
|
"global": false,
|
|
@@ -3493,6 +3563,50 @@ var B24UIMeta = {
|
|
|
3493
3563
|
}
|
|
3494
3564
|
}
|
|
3495
3565
|
},
|
|
3566
|
+
{
|
|
3567
|
+
"name": "activeClass",
|
|
3568
|
+
"global": false,
|
|
3569
|
+
"description": "The class to apply when the link is active",
|
|
3570
|
+
"tags": [
|
|
3571
|
+
{
|
|
3572
|
+
"name": "defaultValue",
|
|
3573
|
+
"text": "''"
|
|
3574
|
+
}
|
|
3575
|
+
],
|
|
3576
|
+
"required": false,
|
|
3577
|
+
"type": "string | undefined",
|
|
3578
|
+
"schema": {
|
|
3579
|
+
"kind": "enum",
|
|
3580
|
+
"type": "string | undefined",
|
|
3581
|
+
"schema": {
|
|
3582
|
+
"0": "undefined",
|
|
3583
|
+
"1": "string"
|
|
3584
|
+
}
|
|
3585
|
+
},
|
|
3586
|
+
"default": "\"\""
|
|
3587
|
+
},
|
|
3588
|
+
{
|
|
3589
|
+
"name": "inactiveClass",
|
|
3590
|
+
"global": false,
|
|
3591
|
+
"description": "The class to apply when the link is inactive",
|
|
3592
|
+
"tags": [
|
|
3593
|
+
{
|
|
3594
|
+
"name": "defaultValue",
|
|
3595
|
+
"text": "''"
|
|
3596
|
+
}
|
|
3597
|
+
],
|
|
3598
|
+
"required": false,
|
|
3599
|
+
"type": "string | undefined",
|
|
3600
|
+
"schema": {
|
|
3601
|
+
"kind": "enum",
|
|
3602
|
+
"type": "string | undefined",
|
|
3603
|
+
"schema": {
|
|
3604
|
+
"0": "undefined",
|
|
3605
|
+
"1": "string"
|
|
3606
|
+
}
|
|
3607
|
+
},
|
|
3608
|
+
"default": "\"\""
|
|
3609
|
+
},
|
|
3496
3610
|
{
|
|
3497
3611
|
"name": "b24ui",
|
|
3498
3612
|
"global": false,
|
|
@@ -3941,22 +4055,6 @@ var B24UIMeta = {
|
|
|
3941
4055
|
}
|
|
3942
4056
|
}
|
|
3943
4057
|
},
|
|
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
4058
|
{
|
|
3961
4059
|
"name": "exactActiveClass",
|
|
3962
4060
|
"global": false,
|
|
@@ -4066,7 +4164,8 @@ var B24UIMeta = {
|
|
|
4066
4164
|
"1": "false",
|
|
4067
4165
|
"2": "true"
|
|
4068
4166
|
}
|
|
4069
|
-
}
|
|
4167
|
+
},
|
|
4168
|
+
"default": "undefined"
|
|
4070
4169
|
},
|
|
4071
4170
|
{
|
|
4072
4171
|
"name": "exact",
|
|
@@ -4120,22 +4219,6 @@ var B24UIMeta = {
|
|
|
4120
4219
|
}
|
|
4121
4220
|
}
|
|
4122
4221
|
},
|
|
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
4222
|
{
|
|
4140
4223
|
"name": "isAction",
|
|
4141
4224
|
"global": false,
|
|
@@ -6208,6 +6291,15 @@ var B24UIMeta = {
|
|
|
6208
6291
|
}
|
|
6209
6292
|
}
|
|
6210
6293
|
},
|
|
6294
|
+
"activeColor": {
|
|
6295
|
+
"name": "activeColor",
|
|
6296
|
+
"global": false,
|
|
6297
|
+
"description": "",
|
|
6298
|
+
"tags": [],
|
|
6299
|
+
"required": false,
|
|
6300
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
6301
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
6302
|
+
},
|
|
6211
6303
|
"depth": {
|
|
6212
6304
|
"name": "depth",
|
|
6213
6305
|
"global": false,
|
|
@@ -6231,6 +6323,15 @@ var B24UIMeta = {
|
|
|
6231
6323
|
}
|
|
6232
6324
|
}
|
|
6233
6325
|
},
|
|
6326
|
+
"activeDepth": {
|
|
6327
|
+
"name": "activeDepth",
|
|
6328
|
+
"global": false,
|
|
6329
|
+
"description": "",
|
|
6330
|
+
"tags": [],
|
|
6331
|
+
"required": false,
|
|
6332
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
6333
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
6334
|
+
},
|
|
6234
6335
|
"size": {
|
|
6235
6336
|
"name": "size",
|
|
6236
6337
|
"global": false,
|
|
@@ -6401,6 +6502,34 @@ var B24UIMeta = {
|
|
|
6401
6502
|
"type": "any",
|
|
6402
6503
|
"schema": "any"
|
|
6403
6504
|
},
|
|
6505
|
+
"activeClass": {
|
|
6506
|
+
"name": "activeClass",
|
|
6507
|
+
"global": false,
|
|
6508
|
+
"description": "The class to apply when the link is active",
|
|
6509
|
+
"tags": [
|
|
6510
|
+
{
|
|
6511
|
+
"name": "defaultValue",
|
|
6512
|
+
"text": "''"
|
|
6513
|
+
}
|
|
6514
|
+
],
|
|
6515
|
+
"required": false,
|
|
6516
|
+
"type": "string | undefined",
|
|
6517
|
+
"schema": "string | undefined"
|
|
6518
|
+
},
|
|
6519
|
+
"inactiveClass": {
|
|
6520
|
+
"name": "inactiveClass",
|
|
6521
|
+
"global": false,
|
|
6522
|
+
"description": "The class to apply when the link is inactive",
|
|
6523
|
+
"tags": [
|
|
6524
|
+
{
|
|
6525
|
+
"name": "defaultValue",
|
|
6526
|
+
"text": "''"
|
|
6527
|
+
}
|
|
6528
|
+
],
|
|
6529
|
+
"required": false,
|
|
6530
|
+
"type": "string | undefined",
|
|
6531
|
+
"schema": "string | undefined"
|
|
6532
|
+
},
|
|
6404
6533
|
"b24ui": {
|
|
6405
6534
|
"name": "b24ui",
|
|
6406
6535
|
"global": false,
|
|
@@ -6676,15 +6805,6 @@ var B24UIMeta = {
|
|
|
6676
6805
|
}
|
|
6677
6806
|
}
|
|
6678
6807
|
},
|
|
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
6808
|
"exactActiveClass": {
|
|
6689
6809
|
"name": "exactActiveClass",
|
|
6690
6810
|
"global": false,
|
|
@@ -6793,15 +6913,6 @@ var B24UIMeta = {
|
|
|
6793
6913
|
"type": "boolean | undefined",
|
|
6794
6914
|
"schema": "boolean | undefined"
|
|
6795
6915
|
},
|
|
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
6916
|
"isAction": {
|
|
6806
6917
|
"name": "isAction",
|
|
6807
6918
|
"global": false,
|
|
@@ -7329,6 +7440,15 @@ var B24UIMeta = {
|
|
|
7329
7440
|
}
|
|
7330
7441
|
}
|
|
7331
7442
|
},
|
|
7443
|
+
"activeColor": {
|
|
7444
|
+
"name": "activeColor",
|
|
7445
|
+
"global": false,
|
|
7446
|
+
"description": "",
|
|
7447
|
+
"tags": [],
|
|
7448
|
+
"required": false,
|
|
7449
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
7450
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
7451
|
+
},
|
|
7332
7452
|
"depth": {
|
|
7333
7453
|
"name": "depth",
|
|
7334
7454
|
"global": false,
|
|
@@ -7352,6 +7472,15 @@ var B24UIMeta = {
|
|
|
7352
7472
|
}
|
|
7353
7473
|
}
|
|
7354
7474
|
},
|
|
7475
|
+
"activeDepth": {
|
|
7476
|
+
"name": "activeDepth",
|
|
7477
|
+
"global": false,
|
|
7478
|
+
"description": "",
|
|
7479
|
+
"tags": [],
|
|
7480
|
+
"required": false,
|
|
7481
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
7482
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
7483
|
+
},
|
|
7355
7484
|
"size": {
|
|
7356
7485
|
"name": "size",
|
|
7357
7486
|
"global": false,
|
|
@@ -7522,6 +7651,34 @@ var B24UIMeta = {
|
|
|
7522
7651
|
"type": "any",
|
|
7523
7652
|
"schema": "any"
|
|
7524
7653
|
},
|
|
7654
|
+
"activeClass": {
|
|
7655
|
+
"name": "activeClass",
|
|
7656
|
+
"global": false,
|
|
7657
|
+
"description": "The class to apply when the link is active",
|
|
7658
|
+
"tags": [
|
|
7659
|
+
{
|
|
7660
|
+
"name": "defaultValue",
|
|
7661
|
+
"text": "''"
|
|
7662
|
+
}
|
|
7663
|
+
],
|
|
7664
|
+
"required": false,
|
|
7665
|
+
"type": "string | undefined",
|
|
7666
|
+
"schema": "string | undefined"
|
|
7667
|
+
},
|
|
7668
|
+
"inactiveClass": {
|
|
7669
|
+
"name": "inactiveClass",
|
|
7670
|
+
"global": false,
|
|
7671
|
+
"description": "The class to apply when the link is inactive",
|
|
7672
|
+
"tags": [
|
|
7673
|
+
{
|
|
7674
|
+
"name": "defaultValue",
|
|
7675
|
+
"text": "''"
|
|
7676
|
+
}
|
|
7677
|
+
],
|
|
7678
|
+
"required": false,
|
|
7679
|
+
"type": "string | undefined",
|
|
7680
|
+
"schema": "string | undefined"
|
|
7681
|
+
},
|
|
7525
7682
|
"b24ui": {
|
|
7526
7683
|
"name": "b24ui",
|
|
7527
7684
|
"global": false,
|
|
@@ -7797,15 +7954,6 @@ var B24UIMeta = {
|
|
|
7797
7954
|
}
|
|
7798
7955
|
}
|
|
7799
7956
|
},
|
|
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
7957
|
"exactActiveClass": {
|
|
7810
7958
|
"name": "exactActiveClass",
|
|
7811
7959
|
"global": false,
|
|
@@ -7914,15 +8062,6 @@ var B24UIMeta = {
|
|
|
7914
8062
|
"type": "boolean | undefined",
|
|
7915
8063
|
"schema": "boolean | undefined"
|
|
7916
8064
|
},
|
|
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
8065
|
"isAction": {
|
|
7927
8066
|
"name": "isAction",
|
|
7928
8067
|
"global": false,
|
|
@@ -8384,6 +8523,15 @@ var B24UIMeta = {
|
|
|
8384
8523
|
}
|
|
8385
8524
|
}
|
|
8386
8525
|
},
|
|
8526
|
+
"activeColor": {
|
|
8527
|
+
"name": "activeColor",
|
|
8528
|
+
"global": false,
|
|
8529
|
+
"description": "",
|
|
8530
|
+
"tags": [],
|
|
8531
|
+
"required": false,
|
|
8532
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
8533
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
8534
|
+
},
|
|
8387
8535
|
"depth": {
|
|
8388
8536
|
"name": "depth",
|
|
8389
8537
|
"global": false,
|
|
@@ -8407,6 +8555,15 @@ var B24UIMeta = {
|
|
|
8407
8555
|
}
|
|
8408
8556
|
}
|
|
8409
8557
|
},
|
|
8558
|
+
"activeDepth": {
|
|
8559
|
+
"name": "activeDepth",
|
|
8560
|
+
"global": false,
|
|
8561
|
+
"description": "",
|
|
8562
|
+
"tags": [],
|
|
8563
|
+
"required": false,
|
|
8564
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
8565
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
8566
|
+
},
|
|
8410
8567
|
"size": {
|
|
8411
8568
|
"name": "size",
|
|
8412
8569
|
"global": false,
|
|
@@ -8577,6 +8734,34 @@ var B24UIMeta = {
|
|
|
8577
8734
|
"type": "any",
|
|
8578
8735
|
"schema": "any"
|
|
8579
8736
|
},
|
|
8737
|
+
"activeClass": {
|
|
8738
|
+
"name": "activeClass",
|
|
8739
|
+
"global": false,
|
|
8740
|
+
"description": "The class to apply when the link is active",
|
|
8741
|
+
"tags": [
|
|
8742
|
+
{
|
|
8743
|
+
"name": "defaultValue",
|
|
8744
|
+
"text": "''"
|
|
8745
|
+
}
|
|
8746
|
+
],
|
|
8747
|
+
"required": false,
|
|
8748
|
+
"type": "string | undefined",
|
|
8749
|
+
"schema": "string | undefined"
|
|
8750
|
+
},
|
|
8751
|
+
"inactiveClass": {
|
|
8752
|
+
"name": "inactiveClass",
|
|
8753
|
+
"global": false,
|
|
8754
|
+
"description": "The class to apply when the link is inactive",
|
|
8755
|
+
"tags": [
|
|
8756
|
+
{
|
|
8757
|
+
"name": "defaultValue",
|
|
8758
|
+
"text": "''"
|
|
8759
|
+
}
|
|
8760
|
+
],
|
|
8761
|
+
"required": false,
|
|
8762
|
+
"type": "string | undefined",
|
|
8763
|
+
"schema": "string | undefined"
|
|
8764
|
+
},
|
|
8580
8765
|
"b24ui": {
|
|
8581
8766
|
"name": "b24ui",
|
|
8582
8767
|
"global": false,
|
|
@@ -8852,15 +9037,6 @@ var B24UIMeta = {
|
|
|
8852
9037
|
}
|
|
8853
9038
|
}
|
|
8854
9039
|
},
|
|
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
9040
|
"exactActiveClass": {
|
|
8865
9041
|
"name": "exactActiveClass",
|
|
8866
9042
|
"global": false,
|
|
@@ -8969,15 +9145,6 @@ var B24UIMeta = {
|
|
|
8969
9145
|
"type": "boolean | undefined",
|
|
8970
9146
|
"schema": "boolean | undefined"
|
|
8971
9147
|
},
|
|
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
9148
|
"isAction": {
|
|
8982
9149
|
"name": "isAction",
|
|
8983
9150
|
"global": false,
|
|
@@ -9439,6 +9606,15 @@ var B24UIMeta = {
|
|
|
9439
9606
|
}
|
|
9440
9607
|
}
|
|
9441
9608
|
},
|
|
9609
|
+
"activeColor": {
|
|
9610
|
+
"name": "activeColor",
|
|
9611
|
+
"global": false,
|
|
9612
|
+
"description": "",
|
|
9613
|
+
"tags": [],
|
|
9614
|
+
"required": false,
|
|
9615
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
9616
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
9617
|
+
},
|
|
9442
9618
|
"depth": {
|
|
9443
9619
|
"name": "depth",
|
|
9444
9620
|
"global": false,
|
|
@@ -9462,6 +9638,15 @@ var B24UIMeta = {
|
|
|
9462
9638
|
}
|
|
9463
9639
|
}
|
|
9464
9640
|
},
|
|
9641
|
+
"activeDepth": {
|
|
9642
|
+
"name": "activeDepth",
|
|
9643
|
+
"global": false,
|
|
9644
|
+
"description": "",
|
|
9645
|
+
"tags": [],
|
|
9646
|
+
"required": false,
|
|
9647
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
9648
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
9649
|
+
},
|
|
9465
9650
|
"size": {
|
|
9466
9651
|
"name": "size",
|
|
9467
9652
|
"global": false,
|
|
@@ -9632,6 +9817,34 @@ var B24UIMeta = {
|
|
|
9632
9817
|
"type": "any",
|
|
9633
9818
|
"schema": "any"
|
|
9634
9819
|
},
|
|
9820
|
+
"activeClass": {
|
|
9821
|
+
"name": "activeClass",
|
|
9822
|
+
"global": false,
|
|
9823
|
+
"description": "The class to apply when the link is active",
|
|
9824
|
+
"tags": [
|
|
9825
|
+
{
|
|
9826
|
+
"name": "defaultValue",
|
|
9827
|
+
"text": "''"
|
|
9828
|
+
}
|
|
9829
|
+
],
|
|
9830
|
+
"required": false,
|
|
9831
|
+
"type": "string | undefined",
|
|
9832
|
+
"schema": "string | undefined"
|
|
9833
|
+
},
|
|
9834
|
+
"inactiveClass": {
|
|
9835
|
+
"name": "inactiveClass",
|
|
9836
|
+
"global": false,
|
|
9837
|
+
"description": "The class to apply when the link is inactive",
|
|
9838
|
+
"tags": [
|
|
9839
|
+
{
|
|
9840
|
+
"name": "defaultValue",
|
|
9841
|
+
"text": "''"
|
|
9842
|
+
}
|
|
9843
|
+
],
|
|
9844
|
+
"required": false,
|
|
9845
|
+
"type": "string | undefined",
|
|
9846
|
+
"schema": "string | undefined"
|
|
9847
|
+
},
|
|
9635
9848
|
"b24ui": {
|
|
9636
9849
|
"name": "b24ui",
|
|
9637
9850
|
"global": false,
|
|
@@ -9907,15 +10120,6 @@ var B24UIMeta = {
|
|
|
9907
10120
|
}
|
|
9908
10121
|
}
|
|
9909
10122
|
},
|
|
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
10123
|
"exactActiveClass": {
|
|
9920
10124
|
"name": "exactActiveClass",
|
|
9921
10125
|
"global": false,
|
|
@@ -10024,15 +10228,6 @@ var B24UIMeta = {
|
|
|
10024
10228
|
"type": "boolean | undefined",
|
|
10025
10229
|
"schema": "boolean | undefined"
|
|
10026
10230
|
},
|
|
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
10231
|
"isAction": {
|
|
10037
10232
|
"name": "isAction",
|
|
10038
10233
|
"global": false,
|
|
@@ -10494,6 +10689,15 @@ var B24UIMeta = {
|
|
|
10494
10689
|
}
|
|
10495
10690
|
}
|
|
10496
10691
|
},
|
|
10692
|
+
"activeColor": {
|
|
10693
|
+
"name": "activeColor",
|
|
10694
|
+
"global": false,
|
|
10695
|
+
"description": "",
|
|
10696
|
+
"tags": [],
|
|
10697
|
+
"required": false,
|
|
10698
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
10699
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
10700
|
+
},
|
|
10497
10701
|
"depth": {
|
|
10498
10702
|
"name": "depth",
|
|
10499
10703
|
"global": false,
|
|
@@ -10517,6 +10721,15 @@ var B24UIMeta = {
|
|
|
10517
10721
|
}
|
|
10518
10722
|
}
|
|
10519
10723
|
},
|
|
10724
|
+
"activeDepth": {
|
|
10725
|
+
"name": "activeDepth",
|
|
10726
|
+
"global": false,
|
|
10727
|
+
"description": "",
|
|
10728
|
+
"tags": [],
|
|
10729
|
+
"required": false,
|
|
10730
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
10731
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
10732
|
+
},
|
|
10520
10733
|
"size": {
|
|
10521
10734
|
"name": "size",
|
|
10522
10735
|
"global": false,
|
|
@@ -10687,6 +10900,34 @@ var B24UIMeta = {
|
|
|
10687
10900
|
"type": "any",
|
|
10688
10901
|
"schema": "any"
|
|
10689
10902
|
},
|
|
10903
|
+
"activeClass": {
|
|
10904
|
+
"name": "activeClass",
|
|
10905
|
+
"global": false,
|
|
10906
|
+
"description": "The class to apply when the link is active",
|
|
10907
|
+
"tags": [
|
|
10908
|
+
{
|
|
10909
|
+
"name": "defaultValue",
|
|
10910
|
+
"text": "''"
|
|
10911
|
+
}
|
|
10912
|
+
],
|
|
10913
|
+
"required": false,
|
|
10914
|
+
"type": "string | undefined",
|
|
10915
|
+
"schema": "string | undefined"
|
|
10916
|
+
},
|
|
10917
|
+
"inactiveClass": {
|
|
10918
|
+
"name": "inactiveClass",
|
|
10919
|
+
"global": false,
|
|
10920
|
+
"description": "The class to apply when the link is inactive",
|
|
10921
|
+
"tags": [
|
|
10922
|
+
{
|
|
10923
|
+
"name": "defaultValue",
|
|
10924
|
+
"text": "''"
|
|
10925
|
+
}
|
|
10926
|
+
],
|
|
10927
|
+
"required": false,
|
|
10928
|
+
"type": "string | undefined",
|
|
10929
|
+
"schema": "string | undefined"
|
|
10930
|
+
},
|
|
10690
10931
|
"b24ui": {
|
|
10691
10932
|
"name": "b24ui",
|
|
10692
10933
|
"global": false,
|
|
@@ -10962,15 +11203,6 @@ var B24UIMeta = {
|
|
|
10962
11203
|
}
|
|
10963
11204
|
}
|
|
10964
11205
|
},
|
|
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
11206
|
"exactActiveClass": {
|
|
10975
11207
|
"name": "exactActiveClass",
|
|
10976
11208
|
"global": false,
|
|
@@ -11079,15 +11311,6 @@ var B24UIMeta = {
|
|
|
11079
11311
|
"type": "boolean | undefined",
|
|
11080
11312
|
"schema": "boolean | undefined"
|
|
11081
11313
|
},
|
|
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
11314
|
"isAction": {
|
|
11092
11315
|
"name": "isAction",
|
|
11093
11316
|
"global": false,
|
|
@@ -25238,6 +25461,15 @@ var B24UIMeta = {
|
|
|
25238
25461
|
}
|
|
25239
25462
|
}
|
|
25240
25463
|
},
|
|
25464
|
+
"activeColor": {
|
|
25465
|
+
"name": "activeColor",
|
|
25466
|
+
"global": false,
|
|
25467
|
+
"description": "",
|
|
25468
|
+
"tags": [],
|
|
25469
|
+
"required": false,
|
|
25470
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
25471
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
25472
|
+
},
|
|
25241
25473
|
"depth": {
|
|
25242
25474
|
"name": "depth",
|
|
25243
25475
|
"global": false,
|
|
@@ -25261,6 +25493,15 @@ var B24UIMeta = {
|
|
|
25261
25493
|
}
|
|
25262
25494
|
}
|
|
25263
25495
|
},
|
|
25496
|
+
"activeDepth": {
|
|
25497
|
+
"name": "activeDepth",
|
|
25498
|
+
"global": false,
|
|
25499
|
+
"description": "",
|
|
25500
|
+
"tags": [],
|
|
25501
|
+
"required": false,
|
|
25502
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
25503
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
25504
|
+
},
|
|
25264
25505
|
"size": {
|
|
25265
25506
|
"name": "size",
|
|
25266
25507
|
"global": false,
|
|
@@ -25431,6 +25672,34 @@ var B24UIMeta = {
|
|
|
25431
25672
|
"type": "any",
|
|
25432
25673
|
"schema": "any"
|
|
25433
25674
|
},
|
|
25675
|
+
"activeClass": {
|
|
25676
|
+
"name": "activeClass",
|
|
25677
|
+
"global": false,
|
|
25678
|
+
"description": "The class to apply when the link is active",
|
|
25679
|
+
"tags": [
|
|
25680
|
+
{
|
|
25681
|
+
"name": "defaultValue",
|
|
25682
|
+
"text": "''"
|
|
25683
|
+
}
|
|
25684
|
+
],
|
|
25685
|
+
"required": false,
|
|
25686
|
+
"type": "string | undefined",
|
|
25687
|
+
"schema": "string | undefined"
|
|
25688
|
+
},
|
|
25689
|
+
"inactiveClass": {
|
|
25690
|
+
"name": "inactiveClass",
|
|
25691
|
+
"global": false,
|
|
25692
|
+
"description": "The class to apply when the link is inactive",
|
|
25693
|
+
"tags": [
|
|
25694
|
+
{
|
|
25695
|
+
"name": "defaultValue",
|
|
25696
|
+
"text": "''"
|
|
25697
|
+
}
|
|
25698
|
+
],
|
|
25699
|
+
"required": false,
|
|
25700
|
+
"type": "string | undefined",
|
|
25701
|
+
"schema": "string | undefined"
|
|
25702
|
+
},
|
|
25434
25703
|
"b24ui": {
|
|
25435
25704
|
"name": "b24ui",
|
|
25436
25705
|
"global": false,
|
|
@@ -25837,15 +26106,6 @@ var B24UIMeta = {
|
|
|
25837
26106
|
}
|
|
25838
26107
|
}
|
|
25839
26108
|
},
|
|
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
26109
|
"exactActiveClass": {
|
|
25850
26110
|
"name": "exactActiveClass",
|
|
25851
26111
|
"global": false,
|
|
@@ -25954,15 +26214,6 @@ var B24UIMeta = {
|
|
|
25954
26214
|
"type": "boolean | undefined",
|
|
25955
26215
|
"schema": "boolean | undefined"
|
|
25956
26216
|
},
|
|
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
26217
|
"isAction": {
|
|
25967
26218
|
"name": "isAction",
|
|
25968
26219
|
"global": false,
|
|
@@ -26190,6 +26441,15 @@ var B24UIMeta = {
|
|
|
26190
26441
|
}
|
|
26191
26442
|
}
|
|
26192
26443
|
},
|
|
26444
|
+
"activeColor": {
|
|
26445
|
+
"name": "activeColor",
|
|
26446
|
+
"global": false,
|
|
26447
|
+
"description": "",
|
|
26448
|
+
"tags": [],
|
|
26449
|
+
"required": false,
|
|
26450
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
26451
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
26452
|
+
},
|
|
26193
26453
|
"depth": {
|
|
26194
26454
|
"name": "depth",
|
|
26195
26455
|
"global": false,
|
|
@@ -26213,6 +26473,15 @@ var B24UIMeta = {
|
|
|
26213
26473
|
}
|
|
26214
26474
|
}
|
|
26215
26475
|
},
|
|
26476
|
+
"activeDepth": {
|
|
26477
|
+
"name": "activeDepth",
|
|
26478
|
+
"global": false,
|
|
26479
|
+
"description": "",
|
|
26480
|
+
"tags": [],
|
|
26481
|
+
"required": false,
|
|
26482
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
26483
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
26484
|
+
},
|
|
26216
26485
|
"size": {
|
|
26217
26486
|
"name": "size",
|
|
26218
26487
|
"global": false,
|
|
@@ -26383,6 +26652,34 @@ var B24UIMeta = {
|
|
|
26383
26652
|
"type": "any",
|
|
26384
26653
|
"schema": "any"
|
|
26385
26654
|
},
|
|
26655
|
+
"activeClass": {
|
|
26656
|
+
"name": "activeClass",
|
|
26657
|
+
"global": false,
|
|
26658
|
+
"description": "The class to apply when the link is active",
|
|
26659
|
+
"tags": [
|
|
26660
|
+
{
|
|
26661
|
+
"name": "defaultValue",
|
|
26662
|
+
"text": "''"
|
|
26663
|
+
}
|
|
26664
|
+
],
|
|
26665
|
+
"required": false,
|
|
26666
|
+
"type": "string | undefined",
|
|
26667
|
+
"schema": "string | undefined"
|
|
26668
|
+
},
|
|
26669
|
+
"inactiveClass": {
|
|
26670
|
+
"name": "inactiveClass",
|
|
26671
|
+
"global": false,
|
|
26672
|
+
"description": "The class to apply when the link is inactive",
|
|
26673
|
+
"tags": [
|
|
26674
|
+
{
|
|
26675
|
+
"name": "defaultValue",
|
|
26676
|
+
"text": "''"
|
|
26677
|
+
}
|
|
26678
|
+
],
|
|
26679
|
+
"required": false,
|
|
26680
|
+
"type": "string | undefined",
|
|
26681
|
+
"schema": "string | undefined"
|
|
26682
|
+
},
|
|
26386
26683
|
"b24ui": {
|
|
26387
26684
|
"name": "b24ui",
|
|
26388
26685
|
"global": false,
|
|
@@ -26789,15 +27086,6 @@ var B24UIMeta = {
|
|
|
26789
27086
|
}
|
|
26790
27087
|
}
|
|
26791
27088
|
},
|
|
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
27089
|
"exactActiveClass": {
|
|
26802
27090
|
"name": "exactActiveClass",
|
|
26803
27091
|
"global": false,
|
|
@@ -26906,15 +27194,6 @@ var B24UIMeta = {
|
|
|
26906
27194
|
"type": "boolean | undefined",
|
|
26907
27195
|
"schema": "boolean | undefined"
|
|
26908
27196
|
},
|
|
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
27197
|
"isAction": {
|
|
26919
27198
|
"name": "isAction",
|
|
26920
27199
|
"global": false,
|
|
@@ -28617,6 +28896,30 @@ var B24UIMeta = {
|
|
|
28617
28896
|
},
|
|
28618
28897
|
"default": "true"
|
|
28619
28898
|
},
|
|
28899
|
+
{
|
|
28900
|
+
"name": "overlayBlur",
|
|
28901
|
+
"global": false,
|
|
28902
|
+
"description": "Render an overlay blur behind the modal.\n`auto` use `motion-safe`.",
|
|
28903
|
+
"tags": [
|
|
28904
|
+
{
|
|
28905
|
+
"name": "defaultValue",
|
|
28906
|
+
"text": "'auto'"
|
|
28907
|
+
}
|
|
28908
|
+
],
|
|
28909
|
+
"required": false,
|
|
28910
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
28911
|
+
"schema": {
|
|
28912
|
+
"kind": "enum",
|
|
28913
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
28914
|
+
"schema": {
|
|
28915
|
+
"0": "undefined",
|
|
28916
|
+
"1": "\"off\"",
|
|
28917
|
+
"2": "\"auto\"",
|
|
28918
|
+
"3": "\"on\""
|
|
28919
|
+
}
|
|
28920
|
+
},
|
|
28921
|
+
"default": "\"auto\""
|
|
28922
|
+
},
|
|
28620
28923
|
{
|
|
28621
28924
|
"name": "transition",
|
|
28622
28925
|
"global": false,
|
|
@@ -39442,6 +39745,30 @@ var B24UIMeta = {
|
|
|
39442
39745
|
},
|
|
39443
39746
|
"default": "true"
|
|
39444
39747
|
},
|
|
39748
|
+
{
|
|
39749
|
+
"name": "overlayBlur",
|
|
39750
|
+
"global": false,
|
|
39751
|
+
"description": "Render an overlay blur behind the slideover.\n`auto` use `motion-safe`.",
|
|
39752
|
+
"tags": [
|
|
39753
|
+
{
|
|
39754
|
+
"name": "defaultValue",
|
|
39755
|
+
"text": "'auto'"
|
|
39756
|
+
}
|
|
39757
|
+
],
|
|
39758
|
+
"required": false,
|
|
39759
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
39760
|
+
"schema": {
|
|
39761
|
+
"kind": "enum",
|
|
39762
|
+
"type": "\"off\" | \"auto\" | \"on\" | undefined",
|
|
39763
|
+
"schema": {
|
|
39764
|
+
"0": "undefined",
|
|
39765
|
+
"1": "\"off\"",
|
|
39766
|
+
"2": "\"auto\"",
|
|
39767
|
+
"3": "\"on\""
|
|
39768
|
+
}
|
|
39769
|
+
},
|
|
39770
|
+
"default": "\"auto\""
|
|
39771
|
+
},
|
|
39445
39772
|
{
|
|
39446
39773
|
"name": "transition",
|
|
39447
39774
|
"global": false,
|
|
@@ -42598,6 +42925,15 @@ var B24UIMeta = {
|
|
|
42598
42925
|
}
|
|
42599
42926
|
}
|
|
42600
42927
|
},
|
|
42928
|
+
"activeColor": {
|
|
42929
|
+
"name": "activeColor",
|
|
42930
|
+
"global": false,
|
|
42931
|
+
"description": "",
|
|
42932
|
+
"tags": [],
|
|
42933
|
+
"required": false,
|
|
42934
|
+
"type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
|
|
42935
|
+
"schema": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined"
|
|
42936
|
+
},
|
|
42601
42937
|
"depth": {
|
|
42602
42938
|
"name": "depth",
|
|
42603
42939
|
"global": false,
|
|
@@ -42621,6 +42957,15 @@ var B24UIMeta = {
|
|
|
42621
42957
|
}
|
|
42622
42958
|
}
|
|
42623
42959
|
},
|
|
42960
|
+
"activeDepth": {
|
|
42961
|
+
"name": "activeDepth",
|
|
42962
|
+
"global": false,
|
|
42963
|
+
"description": "",
|
|
42964
|
+
"tags": [],
|
|
42965
|
+
"required": false,
|
|
42966
|
+
"type": "\"light\" | \"normal\" | \"dark\" | undefined",
|
|
42967
|
+
"schema": "\"light\" | \"normal\" | \"dark\" | undefined"
|
|
42968
|
+
},
|
|
42624
42969
|
"size": {
|
|
42625
42970
|
"name": "size",
|
|
42626
42971
|
"global": false,
|
|
@@ -42791,6 +43136,34 @@ var B24UIMeta = {
|
|
|
42791
43136
|
"type": "any",
|
|
42792
43137
|
"schema": "any"
|
|
42793
43138
|
},
|
|
43139
|
+
"activeClass": {
|
|
43140
|
+
"name": "activeClass",
|
|
43141
|
+
"global": false,
|
|
43142
|
+
"description": "The class to apply when the link is active",
|
|
43143
|
+
"tags": [
|
|
43144
|
+
{
|
|
43145
|
+
"name": "defaultValue",
|
|
43146
|
+
"text": "''"
|
|
43147
|
+
}
|
|
43148
|
+
],
|
|
43149
|
+
"required": false,
|
|
43150
|
+
"type": "string | undefined",
|
|
43151
|
+
"schema": "string | undefined"
|
|
43152
|
+
},
|
|
43153
|
+
"inactiveClass": {
|
|
43154
|
+
"name": "inactiveClass",
|
|
43155
|
+
"global": false,
|
|
43156
|
+
"description": "The class to apply when the link is inactive",
|
|
43157
|
+
"tags": [
|
|
43158
|
+
{
|
|
43159
|
+
"name": "defaultValue",
|
|
43160
|
+
"text": "''"
|
|
43161
|
+
}
|
|
43162
|
+
],
|
|
43163
|
+
"required": false,
|
|
43164
|
+
"type": "string | undefined",
|
|
43165
|
+
"schema": "string | undefined"
|
|
43166
|
+
},
|
|
42794
43167
|
"b24ui": {
|
|
42795
43168
|
"name": "b24ui",
|
|
42796
43169
|
"global": false,
|
|
@@ -43197,15 +43570,6 @@ var B24UIMeta = {
|
|
|
43197
43570
|
}
|
|
43198
43571
|
}
|
|
43199
43572
|
},
|
|
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
43573
|
"exactActiveClass": {
|
|
43210
43574
|
"name": "exactActiveClass",
|
|
43211
43575
|
"global": false,
|
|
@@ -43314,15 +43678,6 @@ var B24UIMeta = {
|
|
|
43314
43678
|
"type": "boolean | undefined",
|
|
43315
43679
|
"schema": "boolean | undefined"
|
|
43316
43680
|
},
|
|
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
43681
|
"isAction": {
|
|
43327
43682
|
"name": "isAction",
|
|
43328
43683
|
"global": false,
|
|
@@ -44535,6 +44890,96 @@ var B24UIMeta = {
|
|
|
44535
44890
|
"exposed": []
|
|
44536
44891
|
}
|
|
44537
44892
|
},
|
|
44893
|
+
"ProseBlockquote": {
|
|
44894
|
+
"mode": "all",
|
|
44895
|
+
"prefetch": false,
|
|
44896
|
+
"preload": false,
|
|
44897
|
+
"pascalName": "ProseBlockquote",
|
|
44898
|
+
"kebabName": "prose-blockquote",
|
|
44899
|
+
"chunkName": "components/prose-blockquote",
|
|
44900
|
+
"priority": 0,
|
|
44901
|
+
"_scanned": true,
|
|
44902
|
+
"meta": {
|
|
44903
|
+
"type": 0,
|
|
44904
|
+
"props": [
|
|
44905
|
+
{
|
|
44906
|
+
"name": "b24ui",
|
|
44907
|
+
"global": false,
|
|
44908
|
+
"description": "",
|
|
44909
|
+
"tags": [],
|
|
44910
|
+
"required": false,
|
|
44911
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44912
|
+
"schema": {
|
|
44913
|
+
"kind": "enum",
|
|
44914
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44915
|
+
"schema": {
|
|
44916
|
+
"0": "undefined",
|
|
44917
|
+
"1": "Partial<{ base: string; }>"
|
|
44918
|
+
}
|
|
44919
|
+
}
|
|
44920
|
+
}
|
|
44921
|
+
],
|
|
44922
|
+
"slots": [
|
|
44923
|
+
{
|
|
44924
|
+
"name": "default",
|
|
44925
|
+
"type": "{}",
|
|
44926
|
+
"description": "",
|
|
44927
|
+
"schema": {
|
|
44928
|
+
"kind": "object",
|
|
44929
|
+
"type": "{}",
|
|
44930
|
+
"schema": {}
|
|
44931
|
+
}
|
|
44932
|
+
}
|
|
44933
|
+
],
|
|
44934
|
+
"events": [],
|
|
44935
|
+
"exposed": []
|
|
44936
|
+
}
|
|
44937
|
+
},
|
|
44938
|
+
"ProseEm": {
|
|
44939
|
+
"mode": "all",
|
|
44940
|
+
"prefetch": false,
|
|
44941
|
+
"preload": false,
|
|
44942
|
+
"pascalName": "ProseEm",
|
|
44943
|
+
"kebabName": "prose-em",
|
|
44944
|
+
"chunkName": "components/prose-em",
|
|
44945
|
+
"priority": 0,
|
|
44946
|
+
"_scanned": true,
|
|
44947
|
+
"meta": {
|
|
44948
|
+
"type": 0,
|
|
44949
|
+
"props": [
|
|
44950
|
+
{
|
|
44951
|
+
"name": "b24ui",
|
|
44952
|
+
"global": false,
|
|
44953
|
+
"description": "",
|
|
44954
|
+
"tags": [],
|
|
44955
|
+
"required": false,
|
|
44956
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44957
|
+
"schema": {
|
|
44958
|
+
"kind": "enum",
|
|
44959
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
44960
|
+
"schema": {
|
|
44961
|
+
"0": "undefined",
|
|
44962
|
+
"1": "Partial<{ base: string; }>"
|
|
44963
|
+
}
|
|
44964
|
+
}
|
|
44965
|
+
}
|
|
44966
|
+
],
|
|
44967
|
+
"slots": [
|
|
44968
|
+
{
|
|
44969
|
+
"name": "default",
|
|
44970
|
+
"type": "{}",
|
|
44971
|
+
"description": "",
|
|
44972
|
+
"schema": {
|
|
44973
|
+
"kind": "object",
|
|
44974
|
+
"type": "{}",
|
|
44975
|
+
"schema": {}
|
|
44976
|
+
}
|
|
44977
|
+
}
|
|
44978
|
+
],
|
|
44979
|
+
"events": [],
|
|
44980
|
+
"exposed": []
|
|
44981
|
+
}
|
|
44982
|
+
},
|
|
44538
44983
|
"ProseH1": {
|
|
44539
44984
|
"mode": "all",
|
|
44540
44985
|
"prefetch": false,
|
|
@@ -44670,6 +45115,175 @@ var B24UIMeta = {
|
|
|
44670
45115
|
"exposed": []
|
|
44671
45116
|
}
|
|
44672
45117
|
},
|
|
45118
|
+
"ProseH4": {
|
|
45119
|
+
"mode": "all",
|
|
45120
|
+
"prefetch": false,
|
|
45121
|
+
"preload": false,
|
|
45122
|
+
"pascalName": "ProseH4",
|
|
45123
|
+
"kebabName": "prose-h4",
|
|
45124
|
+
"chunkName": "components/prose-h4",
|
|
45125
|
+
"priority": 0,
|
|
45126
|
+
"_scanned": true,
|
|
45127
|
+
"meta": {
|
|
45128
|
+
"type": 0,
|
|
45129
|
+
"props": [
|
|
45130
|
+
{
|
|
45131
|
+
"name": "b24ui",
|
|
45132
|
+
"global": false,
|
|
45133
|
+
"description": "",
|
|
45134
|
+
"tags": [],
|
|
45135
|
+
"required": false,
|
|
45136
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45137
|
+
"schema": {
|
|
45138
|
+
"kind": "enum",
|
|
45139
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45140
|
+
"schema": {
|
|
45141
|
+
"0": "undefined",
|
|
45142
|
+
"1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
|
|
45143
|
+
}
|
|
45144
|
+
}
|
|
45145
|
+
}
|
|
45146
|
+
],
|
|
45147
|
+
"slots": [
|
|
45148
|
+
{
|
|
45149
|
+
"name": "default",
|
|
45150
|
+
"type": "{}",
|
|
45151
|
+
"description": "",
|
|
45152
|
+
"schema": {
|
|
45153
|
+
"kind": "object",
|
|
45154
|
+
"type": "{}",
|
|
45155
|
+
"schema": {}
|
|
45156
|
+
}
|
|
45157
|
+
}
|
|
45158
|
+
],
|
|
45159
|
+
"events": [],
|
|
45160
|
+
"exposed": []
|
|
45161
|
+
}
|
|
45162
|
+
},
|
|
45163
|
+
"ProseH5": {
|
|
45164
|
+
"mode": "all",
|
|
45165
|
+
"prefetch": false,
|
|
45166
|
+
"preload": false,
|
|
45167
|
+
"pascalName": "ProseH5",
|
|
45168
|
+
"kebabName": "prose-h5",
|
|
45169
|
+
"chunkName": "components/prose-h5",
|
|
45170
|
+
"priority": 0,
|
|
45171
|
+
"_scanned": true,
|
|
45172
|
+
"meta": {
|
|
45173
|
+
"type": 0,
|
|
45174
|
+
"props": [
|
|
45175
|
+
{
|
|
45176
|
+
"name": "b24ui",
|
|
45177
|
+
"global": false,
|
|
45178
|
+
"description": "",
|
|
45179
|
+
"tags": [],
|
|
45180
|
+
"required": false,
|
|
45181
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45182
|
+
"schema": {
|
|
45183
|
+
"kind": "enum",
|
|
45184
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45185
|
+
"schema": {
|
|
45186
|
+
"0": "undefined",
|
|
45187
|
+
"1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
|
|
45188
|
+
}
|
|
45189
|
+
}
|
|
45190
|
+
}
|
|
45191
|
+
],
|
|
45192
|
+
"slots": [
|
|
45193
|
+
{
|
|
45194
|
+
"name": "default",
|
|
45195
|
+
"type": "{}",
|
|
45196
|
+
"description": "",
|
|
45197
|
+
"schema": {
|
|
45198
|
+
"kind": "object",
|
|
45199
|
+
"type": "{}",
|
|
45200
|
+
"schema": {}
|
|
45201
|
+
}
|
|
45202
|
+
}
|
|
45203
|
+
],
|
|
45204
|
+
"events": [],
|
|
45205
|
+
"exposed": []
|
|
45206
|
+
}
|
|
45207
|
+
},
|
|
45208
|
+
"ProseH6": {
|
|
45209
|
+
"mode": "all",
|
|
45210
|
+
"prefetch": false,
|
|
45211
|
+
"preload": false,
|
|
45212
|
+
"pascalName": "ProseH6",
|
|
45213
|
+
"kebabName": "prose-h6",
|
|
45214
|
+
"chunkName": "components/prose-h6",
|
|
45215
|
+
"priority": 0,
|
|
45216
|
+
"_scanned": true,
|
|
45217
|
+
"meta": {
|
|
45218
|
+
"type": 0,
|
|
45219
|
+
"props": [
|
|
45220
|
+
{
|
|
45221
|
+
"name": "b24ui",
|
|
45222
|
+
"global": false,
|
|
45223
|
+
"description": "",
|
|
45224
|
+
"tags": [],
|
|
45225
|
+
"required": false,
|
|
45226
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45227
|
+
"schema": {
|
|
45228
|
+
"kind": "enum",
|
|
45229
|
+
"type": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }> | undefined",
|
|
45230
|
+
"schema": {
|
|
45231
|
+
"0": "undefined",
|
|
45232
|
+
"1": "Partial<{ base: string; leading: string[]; leadingIcon: string; link: string; }>"
|
|
45233
|
+
}
|
|
45234
|
+
}
|
|
45235
|
+
}
|
|
45236
|
+
],
|
|
45237
|
+
"slots": [
|
|
45238
|
+
{
|
|
45239
|
+
"name": "default",
|
|
45240
|
+
"type": "{}",
|
|
45241
|
+
"description": "",
|
|
45242
|
+
"schema": {
|
|
45243
|
+
"kind": "object",
|
|
45244
|
+
"type": "{}",
|
|
45245
|
+
"schema": {}
|
|
45246
|
+
}
|
|
45247
|
+
}
|
|
45248
|
+
],
|
|
45249
|
+
"events": [],
|
|
45250
|
+
"exposed": []
|
|
45251
|
+
}
|
|
45252
|
+
},
|
|
45253
|
+
"ProseHr": {
|
|
45254
|
+
"mode": "all",
|
|
45255
|
+
"prefetch": false,
|
|
45256
|
+
"preload": false,
|
|
45257
|
+
"pascalName": "ProseHr",
|
|
45258
|
+
"kebabName": "prose-hr",
|
|
45259
|
+
"chunkName": "components/prose-hr",
|
|
45260
|
+
"priority": 0,
|
|
45261
|
+
"_scanned": true,
|
|
45262
|
+
"meta": {
|
|
45263
|
+
"type": 0,
|
|
45264
|
+
"props": [
|
|
45265
|
+
{
|
|
45266
|
+
"name": "b24ui",
|
|
45267
|
+
"global": false,
|
|
45268
|
+
"description": "",
|
|
45269
|
+
"tags": [],
|
|
45270
|
+
"required": false,
|
|
45271
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45272
|
+
"schema": {
|
|
45273
|
+
"kind": "enum",
|
|
45274
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45275
|
+
"schema": {
|
|
45276
|
+
"0": "undefined",
|
|
45277
|
+
"1": "Partial<{ base: string; }>"
|
|
45278
|
+
}
|
|
45279
|
+
}
|
|
45280
|
+
}
|
|
45281
|
+
],
|
|
45282
|
+
"slots": [],
|
|
45283
|
+
"events": [],
|
|
45284
|
+
"exposed": []
|
|
45285
|
+
}
|
|
45286
|
+
},
|
|
44673
45287
|
"ProseLi": {
|
|
44674
45288
|
"mode": "all",
|
|
44675
45289
|
"prefetch": false,
|
|
@@ -44805,6 +45419,51 @@ var B24UIMeta = {
|
|
|
44805
45419
|
"exposed": []
|
|
44806
45420
|
}
|
|
44807
45421
|
},
|
|
45422
|
+
"ProseStrong": {
|
|
45423
|
+
"mode": "all",
|
|
45424
|
+
"prefetch": false,
|
|
45425
|
+
"preload": false,
|
|
45426
|
+
"pascalName": "ProseStrong",
|
|
45427
|
+
"kebabName": "prose-strong",
|
|
45428
|
+
"chunkName": "components/prose-strong",
|
|
45429
|
+
"priority": 0,
|
|
45430
|
+
"_scanned": true,
|
|
45431
|
+
"meta": {
|
|
45432
|
+
"type": 0,
|
|
45433
|
+
"props": [
|
|
45434
|
+
{
|
|
45435
|
+
"name": "b24ui",
|
|
45436
|
+
"global": false,
|
|
45437
|
+
"description": "",
|
|
45438
|
+
"tags": [],
|
|
45439
|
+
"required": false,
|
|
45440
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45441
|
+
"schema": {
|
|
45442
|
+
"kind": "enum",
|
|
45443
|
+
"type": "Partial<{ base: string; }> | undefined",
|
|
45444
|
+
"schema": {
|
|
45445
|
+
"0": "undefined",
|
|
45446
|
+
"1": "Partial<{ base: string; }>"
|
|
45447
|
+
}
|
|
45448
|
+
}
|
|
45449
|
+
}
|
|
45450
|
+
],
|
|
45451
|
+
"slots": [
|
|
45452
|
+
{
|
|
45453
|
+
"name": "default",
|
|
45454
|
+
"type": "{}",
|
|
45455
|
+
"description": "",
|
|
45456
|
+
"schema": {
|
|
45457
|
+
"kind": "object",
|
|
45458
|
+
"type": "{}",
|
|
45459
|
+
"schema": {}
|
|
45460
|
+
}
|
|
45461
|
+
}
|
|
45462
|
+
],
|
|
45463
|
+
"events": [],
|
|
45464
|
+
"exposed": []
|
|
45465
|
+
}
|
|
45466
|
+
},
|
|
44808
45467
|
"ProseUl": {
|
|
44809
45468
|
"mode": "all",
|
|
44810
45469
|
"prefetch": false,
|