@next-core/brick-types 2.48.1-alpha.0 → 2.51.1
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/.schema/storyboard.json +323 -93
- package/CHANGELOG.md +29 -3
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/types/manifest.d.ts +17 -13
- package/dist/types/manifest.d.ts.map +1 -1
- package/dist/types/menu.d.ts +36 -0
- package/dist/types/menu.d.ts.map +1 -1
- package/dist/types/runtime.d.ts +6 -2
- package/dist/types/runtime.d.ts.map +1 -1
- package/package.json +3 -3
package/.schema/storyboard.json
CHANGED
|
@@ -143,9 +143,17 @@
|
|
|
143
143
|
"description": "整个应用不启用登录守卫。",
|
|
144
144
|
"type": "boolean"
|
|
145
145
|
},
|
|
146
|
+
"isBuildPush": {
|
|
147
|
+
"description": "表示该应用是否是来自 BuildAndPush 的。",
|
|
148
|
+
"type": "boolean"
|
|
149
|
+
},
|
|
146
150
|
"$$routeAliasMap": {
|
|
147
151
|
"$ref": "#/definitions/RouteAliasMap",
|
|
148
152
|
"description": "路由别名映射(运行时得出)。"
|
|
153
|
+
},
|
|
154
|
+
"breadcrumb": {
|
|
155
|
+
"$ref": "#/definitions/BreadcrumbConf",
|
|
156
|
+
"description": "面包屑配置"
|
|
149
157
|
}
|
|
150
158
|
}
|
|
151
159
|
},
|
|
@@ -2633,11 +2641,87 @@
|
|
|
2633
2641
|
"size": {
|
|
2634
2642
|
"type": "number"
|
|
2635
2643
|
},
|
|
2636
|
-
"__@toStringTag": {
|
|
2644
|
+
"__@toStringTag@13750": {
|
|
2645
|
+
"type": "string"
|
|
2646
|
+
}
|
|
2647
|
+
}
|
|
2648
|
+
},
|
|
2649
|
+
"BreadcrumbConf": {
|
|
2650
|
+
"description": "面包屑配置。",
|
|
2651
|
+
"type": "object",
|
|
2652
|
+
"properties": {
|
|
2653
|
+
"items": {
|
|
2654
|
+
"description": "面包屑列表。",
|
|
2655
|
+
"type": "array",
|
|
2656
|
+
"items": {
|
|
2657
|
+
"$ref": "#/definitions/BreadcrumbItemConf"
|
|
2658
|
+
}
|
|
2659
|
+
},
|
|
2660
|
+
"overwrite": {
|
|
2661
|
+
"description": "是否覆盖上层路由已有的面包屑列表(默认为追加模式)。",
|
|
2662
|
+
"type": "boolean"
|
|
2663
|
+
},
|
|
2664
|
+
"noCurrentApp": {
|
|
2665
|
+
"description": "是否显示当前AppName",
|
|
2666
|
+
"type": "boolean"
|
|
2667
|
+
}
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
"BreadcrumbItemConf": {
|
|
2671
|
+
"description": "面包屑单项配置。",
|
|
2672
|
+
"type": "object",
|
|
2673
|
+
"properties": {
|
|
2674
|
+
"text": {
|
|
2675
|
+
"description": "面包屑文本。",
|
|
2676
|
+
"type": "string"
|
|
2677
|
+
},
|
|
2678
|
+
"to": {
|
|
2679
|
+
"$ref": "#/definitions/LocationDescriptor<PluginHistoryState>",
|
|
2680
|
+
"description": "面包屑对应的链接。"
|
|
2681
|
+
}
|
|
2682
|
+
}
|
|
2683
|
+
},
|
|
2684
|
+
"LocationDescriptorObject<PluginHistoryState>": {
|
|
2685
|
+
"type": "object",
|
|
2686
|
+
"properties": {
|
|
2687
|
+
"pathname": {
|
|
2688
|
+
"type": "string"
|
|
2689
|
+
},
|
|
2690
|
+
"search": {
|
|
2691
|
+
"type": "string"
|
|
2692
|
+
},
|
|
2693
|
+
"state": {
|
|
2694
|
+
"$ref": "#/definitions/PluginHistoryState"
|
|
2695
|
+
},
|
|
2696
|
+
"hash": {
|
|
2697
|
+
"type": "string"
|
|
2698
|
+
},
|
|
2699
|
+
"key": {
|
|
2637
2700
|
"type": "string"
|
|
2638
2701
|
}
|
|
2639
2702
|
}
|
|
2640
2703
|
},
|
|
2704
|
+
"PluginHistoryState": {
|
|
2705
|
+
"type": "object",
|
|
2706
|
+
"properties": {
|
|
2707
|
+
"notify": {
|
|
2708
|
+
"type": "boolean"
|
|
2709
|
+
},
|
|
2710
|
+
"from": {
|
|
2711
|
+
"$ref": "#/definitions/LocationDescriptor<PluginHistoryState>"
|
|
2712
|
+
}
|
|
2713
|
+
}
|
|
2714
|
+
},
|
|
2715
|
+
"LocationDescriptor<PluginHistoryState>": {
|
|
2716
|
+
"anyOf": [
|
|
2717
|
+
{
|
|
2718
|
+
"$ref": "#/definitions/LocationDescriptorObject<PluginHistoryState>"
|
|
2719
|
+
},
|
|
2720
|
+
{
|
|
2721
|
+
"type": "string"
|
|
2722
|
+
}
|
|
2723
|
+
]
|
|
2724
|
+
},
|
|
2641
2725
|
"RouteConfOfBricks": {
|
|
2642
2726
|
"description": "包含一组构件的路由配置。",
|
|
2643
2727
|
"type": "object",
|
|
@@ -2903,7 +2987,7 @@
|
|
|
2903
2987
|
]
|
|
2904
2988
|
},
|
|
2905
2989
|
"portal": {
|
|
2906
|
-
"description": "标记 `portal: true` 的构件将被放置到一个“{@
|
|
2990
|
+
"description": "标记 `portal: true` 的构件将被放置到一个“{@linkhttps ://reactjs.org/docs/portals.html | 传送门}”容器中,它们通常为\n*Modal*、*Drawer* 等弹窗容器类型的构件。",
|
|
2907
2991
|
"type": "boolean"
|
|
2908
2992
|
},
|
|
2909
2993
|
"context": {
|
|
@@ -3410,78 +3494,6 @@
|
|
|
3410
3494
|
}
|
|
3411
3495
|
]
|
|
3412
3496
|
},
|
|
3413
|
-
"BreadcrumbConf": {
|
|
3414
|
-
"description": "面包屑配置。",
|
|
3415
|
-
"type": "object",
|
|
3416
|
-
"properties": {
|
|
3417
|
-
"items": {
|
|
3418
|
-
"description": "面包屑列表。",
|
|
3419
|
-
"type": "array",
|
|
3420
|
-
"items": {
|
|
3421
|
-
"$ref": "#/definitions/BreadcrumbItemConf"
|
|
3422
|
-
}
|
|
3423
|
-
},
|
|
3424
|
-
"overwrite": {
|
|
3425
|
-
"description": "是否覆盖上层路由已有的面包屑列表(默认为追加模式)。",
|
|
3426
|
-
"type": "boolean"
|
|
3427
|
-
}
|
|
3428
|
-
}
|
|
3429
|
-
},
|
|
3430
|
-
"BreadcrumbItemConf": {
|
|
3431
|
-
"description": "面包屑单项配置。",
|
|
3432
|
-
"type": "object",
|
|
3433
|
-
"properties": {
|
|
3434
|
-
"text": {
|
|
3435
|
-
"description": "面包屑文本。",
|
|
3436
|
-
"type": "string"
|
|
3437
|
-
},
|
|
3438
|
-
"to": {
|
|
3439
|
-
"$ref": "#/definitions/LocationDescriptor<PluginHistoryState>",
|
|
3440
|
-
"description": "面包屑对应的链接。"
|
|
3441
|
-
}
|
|
3442
|
-
}
|
|
3443
|
-
},
|
|
3444
|
-
"LocationDescriptorObject<PluginHistoryState>": {
|
|
3445
|
-
"type": "object",
|
|
3446
|
-
"properties": {
|
|
3447
|
-
"pathname": {
|
|
3448
|
-
"type": "string"
|
|
3449
|
-
},
|
|
3450
|
-
"search": {
|
|
3451
|
-
"type": "string"
|
|
3452
|
-
},
|
|
3453
|
-
"state": {
|
|
3454
|
-
"$ref": "#/definitions/PluginHistoryState"
|
|
3455
|
-
},
|
|
3456
|
-
"hash": {
|
|
3457
|
-
"type": "string"
|
|
3458
|
-
},
|
|
3459
|
-
"key": {
|
|
3460
|
-
"type": "string"
|
|
3461
|
-
}
|
|
3462
|
-
}
|
|
3463
|
-
},
|
|
3464
|
-
"PluginHistoryState": {
|
|
3465
|
-
"type": "object",
|
|
3466
|
-
"properties": {
|
|
3467
|
-
"notify": {
|
|
3468
|
-
"type": "boolean"
|
|
3469
|
-
},
|
|
3470
|
-
"from": {
|
|
3471
|
-
"$ref": "#/definitions/LocationDescriptor<PluginHistoryState>"
|
|
3472
|
-
}
|
|
3473
|
-
}
|
|
3474
|
-
},
|
|
3475
|
-
"LocationDescriptor<PluginHistoryState>": {
|
|
3476
|
-
"anyOf": [
|
|
3477
|
-
{
|
|
3478
|
-
"$ref": "#/definitions/LocationDescriptorObject<PluginHistoryState>"
|
|
3479
|
-
},
|
|
3480
|
-
{
|
|
3481
|
-
"type": "string"
|
|
3482
|
-
}
|
|
3483
|
-
]
|
|
3484
|
-
},
|
|
3485
3497
|
"BrickMenuConf": {
|
|
3486
3498
|
"description": "使用构件做数据代理的菜单配置。",
|
|
3487
3499
|
"type": "object",
|
|
@@ -5103,17 +5115,17 @@
|
|
|
5103
5115
|
"$ref": "#/definitions/MetaI18n",
|
|
5104
5116
|
"description": "{@inheritDoc MetaI18n}"
|
|
5105
5117
|
},
|
|
5106
|
-
"
|
|
5118
|
+
"functions": {
|
|
5119
|
+
"description": "应用定义的函数列表。",
|
|
5107
5120
|
"type": "array",
|
|
5108
5121
|
"items": {
|
|
5109
|
-
"$ref": "#/definitions/
|
|
5122
|
+
"$ref": "#/definitions/StoryboardFunction"
|
|
5110
5123
|
}
|
|
5111
5124
|
},
|
|
5112
|
-
"
|
|
5113
|
-
"description": "应用定义的函数列表。",
|
|
5125
|
+
"menus": {
|
|
5114
5126
|
"type": "array",
|
|
5115
5127
|
"items": {
|
|
5116
|
-
"$ref": "#/definitions/
|
|
5128
|
+
"$ref": "#/definitions/MenuRawData"
|
|
5117
5129
|
}
|
|
5118
5130
|
}
|
|
5119
5131
|
}
|
|
@@ -5209,7 +5221,7 @@
|
|
|
5209
5221
|
}
|
|
5210
5222
|
},
|
|
5211
5223
|
"portal": {
|
|
5212
|
-
"description": "标记 `portal: true` 的构件将被放置到一个“{@
|
|
5224
|
+
"description": "标记 `portal: true` 的构件将被放置到一个“{@linkhttps ://reactjs.org/docs/portals.html | 传送门}”容器中,它们通常为\n*Modal*、*Drawer* 等弹窗容器类型的构件。",
|
|
5213
5225
|
"type": "boolean"
|
|
5214
5226
|
},
|
|
5215
5227
|
"context": {
|
|
@@ -5703,35 +5715,253 @@
|
|
|
5703
5715
|
"description": "应用定义的国际化配置表。",
|
|
5704
5716
|
"type": "object"
|
|
5705
5717
|
},
|
|
5706
|
-
"
|
|
5707
|
-
"description": "
|
|
5718
|
+
"StoryboardFunction": {
|
|
5719
|
+
"description": "应用定义的函数。",
|
|
5708
5720
|
"type": "object",
|
|
5709
5721
|
"properties": {
|
|
5710
5722
|
"name": {
|
|
5711
|
-
"description": "
|
|
5723
|
+
"description": "函数名称。",
|
|
5712
5724
|
"type": "string"
|
|
5713
5725
|
},
|
|
5714
|
-
"
|
|
5715
|
-
"description": "
|
|
5726
|
+
"source": {
|
|
5727
|
+
"description": "函数源码。",
|
|
5716
5728
|
"type": "string"
|
|
5729
|
+
},
|
|
5730
|
+
"typescript": {
|
|
5731
|
+
"description": "是否使用 TypeScript。",
|
|
5732
|
+
"type": "boolean"
|
|
5717
5733
|
}
|
|
5718
5734
|
}
|
|
5719
5735
|
},
|
|
5720
|
-
"
|
|
5721
|
-
"description": "
|
|
5736
|
+
"MenuRawData": {
|
|
5737
|
+
"description": "原始菜单数据。",
|
|
5722
5738
|
"type": "object",
|
|
5723
5739
|
"properties": {
|
|
5724
|
-
"
|
|
5725
|
-
"description": "函数名称。",
|
|
5740
|
+
"menuId": {
|
|
5726
5741
|
"type": "string"
|
|
5727
5742
|
},
|
|
5728
|
-
"
|
|
5729
|
-
"description": "函数源码。",
|
|
5743
|
+
"title": {
|
|
5730
5744
|
"type": "string"
|
|
5731
5745
|
},
|
|
5732
|
-
"
|
|
5733
|
-
"
|
|
5746
|
+
"app": {
|
|
5747
|
+
"type": "array",
|
|
5748
|
+
"items": [
|
|
5749
|
+
{
|
|
5750
|
+
"type": "object",
|
|
5751
|
+
"properties": {
|
|
5752
|
+
"appId": {
|
|
5753
|
+
"type": "string"
|
|
5754
|
+
}
|
|
5755
|
+
}
|
|
5756
|
+
}
|
|
5757
|
+
],
|
|
5758
|
+
"minItems": 1,
|
|
5759
|
+
"maxItems": 1
|
|
5760
|
+
},
|
|
5761
|
+
"icon": {
|
|
5762
|
+
"description": "图标配置。",
|
|
5763
|
+
"anyOf": [
|
|
5764
|
+
{
|
|
5765
|
+
"$ref": "#/definitions/RefinedAntdIcon"
|
|
5766
|
+
},
|
|
5767
|
+
{
|
|
5768
|
+
"$ref": "#/definitions/LegacyAntdIcon"
|
|
5769
|
+
},
|
|
5770
|
+
{
|
|
5771
|
+
"$ref": "#/definitions/FaIcon"
|
|
5772
|
+
},
|
|
5773
|
+
{
|
|
5774
|
+
"$ref": "#/definitions/EasyopsIcon"
|
|
5775
|
+
}
|
|
5776
|
+
]
|
|
5777
|
+
},
|
|
5778
|
+
"link": {
|
|
5779
|
+
"type": "string"
|
|
5780
|
+
},
|
|
5781
|
+
"titleDataSource": {
|
|
5782
|
+
"$ref": "#/definitions/TitleDataSource"
|
|
5783
|
+
},
|
|
5784
|
+
"items": {
|
|
5785
|
+
"type": "array",
|
|
5786
|
+
"items": {
|
|
5787
|
+
"$ref": "#/definitions/MenuItemRawData",
|
|
5788
|
+
"description": "原始菜单项数据。"
|
|
5789
|
+
}
|
|
5790
|
+
},
|
|
5791
|
+
"type": {
|
|
5792
|
+
"enum": [
|
|
5793
|
+
"inject",
|
|
5794
|
+
"main"
|
|
5795
|
+
],
|
|
5796
|
+
"type": "string"
|
|
5797
|
+
},
|
|
5798
|
+
"injectMenuGroupId": {
|
|
5799
|
+
"type": "string"
|
|
5800
|
+
},
|
|
5801
|
+
"defaultCollapsed": {
|
|
5802
|
+
"type": "boolean"
|
|
5803
|
+
},
|
|
5804
|
+
"defaultCollapsedBreakpoint": {
|
|
5805
|
+
"type": "number"
|
|
5806
|
+
},
|
|
5807
|
+
"dynamicItems": {
|
|
5808
|
+
"type": "boolean"
|
|
5809
|
+
},
|
|
5810
|
+
"itemsResolve": {
|
|
5811
|
+
"description": "异步数据处理配置。",
|
|
5812
|
+
"anyOf": [
|
|
5813
|
+
{
|
|
5814
|
+
"$ref": "#/definitions/UseProviderResolveConf"
|
|
5815
|
+
},
|
|
5816
|
+
{
|
|
5817
|
+
"$ref": "#/definitions/SelectorProviderResolveConf"
|
|
5818
|
+
},
|
|
5819
|
+
{
|
|
5820
|
+
"description": "引用类的异步数据处理配置。",
|
|
5821
|
+
"allOf": [
|
|
5822
|
+
{
|
|
5823
|
+
"$ref": "#/definitions/Pick<BaseEntityResolveConf,\"transform\"|\"name\"|\"transformFrom\"|\"transformMapArray\"|\"onReject\"|\"if\">"
|
|
5824
|
+
},
|
|
5825
|
+
{
|
|
5826
|
+
"type": "object",
|
|
5827
|
+
"properties": {
|
|
5828
|
+
"ref": {
|
|
5829
|
+
"description": "设置要引用的预定义的异步数据处理 ID",
|
|
5830
|
+
"type": "string"
|
|
5831
|
+
}
|
|
5832
|
+
}
|
|
5833
|
+
}
|
|
5834
|
+
]
|
|
5835
|
+
}
|
|
5836
|
+
]
|
|
5837
|
+
}
|
|
5838
|
+
}
|
|
5839
|
+
},
|
|
5840
|
+
"TitleDataSource": {
|
|
5841
|
+
"type": "object",
|
|
5842
|
+
"properties": {
|
|
5843
|
+
"objectId": {
|
|
5844
|
+
"type": "string"
|
|
5845
|
+
},
|
|
5846
|
+
"instanceId": {
|
|
5847
|
+
"type": "string"
|
|
5848
|
+
},
|
|
5849
|
+
"attributeId": {
|
|
5850
|
+
"type": "string"
|
|
5851
|
+
}
|
|
5852
|
+
}
|
|
5853
|
+
},
|
|
5854
|
+
"Omit<SidebarMenuSimpleItem,\"type\">": {
|
|
5855
|
+
"type": "object",
|
|
5856
|
+
"properties": {
|
|
5857
|
+
"text": {
|
|
5858
|
+
"description": "菜单项文本。",
|
|
5859
|
+
"type": "string"
|
|
5860
|
+
},
|
|
5861
|
+
"exact": {
|
|
5862
|
+
"description": "高亮菜单项时是否使用精确匹配来对比当前地址和菜单项地址。",
|
|
5734
5863
|
"type": "boolean"
|
|
5864
|
+
},
|
|
5865
|
+
"icon": {
|
|
5866
|
+
"description": "菜单项的图标。",
|
|
5867
|
+
"anyOf": [
|
|
5868
|
+
{
|
|
5869
|
+
"$ref": "#/definitions/RefinedAntdIcon"
|
|
5870
|
+
},
|
|
5871
|
+
{
|
|
5872
|
+
"$ref": "#/definitions/LegacyAntdIcon"
|
|
5873
|
+
},
|
|
5874
|
+
{
|
|
5875
|
+
"$ref": "#/definitions/FaIcon"
|
|
5876
|
+
},
|
|
5877
|
+
{
|
|
5878
|
+
"$ref": "#/definitions/EasyopsIcon"
|
|
5879
|
+
}
|
|
5880
|
+
]
|
|
5881
|
+
},
|
|
5882
|
+
"key": {
|
|
5883
|
+
"type": "string"
|
|
5884
|
+
},
|
|
5885
|
+
"to": {
|
|
5886
|
+
"description": "菜单项对应的系统内地址。",
|
|
5887
|
+
"anyOf": [
|
|
5888
|
+
{
|
|
5889
|
+
"$ref": "#/definitions/LocationDescriptorObject<unknown>"
|
|
5890
|
+
},
|
|
5891
|
+
{
|
|
5892
|
+
"type": "string"
|
|
5893
|
+
}
|
|
5894
|
+
]
|
|
5895
|
+
},
|
|
5896
|
+
"href": {
|
|
5897
|
+
"description": "菜单项对应的外部链接地址。",
|
|
5898
|
+
"type": "string"
|
|
5899
|
+
},
|
|
5900
|
+
"target": {
|
|
5901
|
+
"description": "菜单项链接打开的目标。",
|
|
5902
|
+
"type": "string"
|
|
5903
|
+
},
|
|
5904
|
+
"activeIncludes": {
|
|
5905
|
+
"description": "设置额外包含的匹配高亮菜单项的地址列表。",
|
|
5906
|
+
"type": "array",
|
|
5907
|
+
"items": {
|
|
5908
|
+
"type": "string"
|
|
5909
|
+
}
|
|
5910
|
+
},
|
|
5911
|
+
"activeExcludes": {
|
|
5912
|
+
"description": "设置需要被排除的匹配高亮菜单项的地址列表。",
|
|
5913
|
+
"type": "array",
|
|
5914
|
+
"items": {
|
|
5915
|
+
"type": "string"
|
|
5916
|
+
}
|
|
5917
|
+
},
|
|
5918
|
+
"activeMatchSearch": {
|
|
5919
|
+
"description": "设置匹配高亮菜单项时是否还对 search 参数进行比较。",
|
|
5920
|
+
"type": "boolean"
|
|
5921
|
+
}
|
|
5922
|
+
}
|
|
5923
|
+
},
|
|
5924
|
+
"MenuItemRawData": {
|
|
5925
|
+
"description": "原始菜单项数据。",
|
|
5926
|
+
"allOf": [
|
|
5927
|
+
{
|
|
5928
|
+
"$ref": "#/definitions/Omit<SidebarMenuSimpleItem,\"type\">"
|
|
5929
|
+
},
|
|
5930
|
+
{
|
|
5931
|
+
"$ref": "#/definitions/{children?:MenuItemRawData[];type?:\"default\"|\"group\";sort?:number;if?:string|boolean;defaultExpanded?:boolean;groupId?:string;}"
|
|
5932
|
+
}
|
|
5933
|
+
]
|
|
5934
|
+
},
|
|
5935
|
+
"{children?:MenuItemRawData[];type?:\"default\"|\"group\";sort?:number;if?:string|boolean;defaultExpanded?:boolean;groupId?:string;}": {
|
|
5936
|
+
"type": "object",
|
|
5937
|
+
"properties": {
|
|
5938
|
+
"children": {
|
|
5939
|
+
"type": "array",
|
|
5940
|
+
"items": {
|
|
5941
|
+
"$ref": "#/definitions/MenuItemRawData"
|
|
5942
|
+
}
|
|
5943
|
+
},
|
|
5944
|
+
"type": {
|
|
5945
|
+
"enum": [
|
|
5946
|
+
"default",
|
|
5947
|
+
"group"
|
|
5948
|
+
],
|
|
5949
|
+
"type": "string"
|
|
5950
|
+
},
|
|
5951
|
+
"sort": {
|
|
5952
|
+
"type": "number"
|
|
5953
|
+
},
|
|
5954
|
+
"if": {
|
|
5955
|
+
"type": [
|
|
5956
|
+
"string",
|
|
5957
|
+
"boolean"
|
|
5958
|
+
]
|
|
5959
|
+
},
|
|
5960
|
+
"defaultExpanded": {
|
|
5961
|
+
"type": "boolean"
|
|
5962
|
+
},
|
|
5963
|
+
"groupId": {
|
|
5964
|
+
"type": "string"
|
|
5735
5965
|
}
|
|
5736
5966
|
}
|
|
5737
5967
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -3,15 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [2.
|
|
6
|
+
## [2.51.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.51.0...@next-core/brick-types@2.51.1) (2021-12-17)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @next-core/brick-types
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [2.51.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.50.0...@next-core/brick-types@2.51.0) (2021-12-03)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- support isAdmin ([f160156](https://github.com/easyops-cn/next-core/commit/f1601567b59c9f4a27aa130dc3e2e327c84c35db))
|
|
19
|
+
|
|
20
|
+
# [2.50.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.49.0...@next-core/brick-types@2.50.0) (2021-11-23)
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
- update type ([#1174](https://github.com/easyops-cn/next-core/issues/1174)) ([a128ce1](https://github.com/easyops-cn/next-core/commit/a128ce11cfea01f3d73ba3ec9728ab647b390823))
|
|
25
|
+
|
|
26
|
+
# [2.49.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.48.0...@next-core/brick-types@2.49.0) (2021-11-18)
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- 构件按照名称前缀识别构件包 ([5293187](https://github.com/easyops-cn/next-core/commit/52931871641a072909d3ff2b5ddb4436503a5676))
|
|
31
|
+
|
|
32
|
+
### Features
|
|
33
|
+
|
|
34
|
+
- support getting images by static files ([c23d88a](https://github.com/easyops-cn/next-core/commit/c23d88aa70f5009453a1d3c58e7f4a0d6249c719))
|
|
35
|
+
|
|
36
|
+
# [2.48.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.47.0...@next-core/brick-types@2.48.0) (2021-11-11)
|
|
11
37
|
|
|
12
38
|
### Features
|
|
13
39
|
|
|
14
|
-
- support
|
|
40
|
+
- support standalone menu types ([9ab5868](https://github.com/easyops-cn/next-core/commit/9ab5868c7182e5befa0d6553b47b813e46c2b73c))
|
|
15
41
|
|
|
16
42
|
# [2.47.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.46.0...@next-core/brick-types@2.47.0) (2021-11-02)
|
|
17
43
|
|