@next-core/brick-types 2.47.0 → 2.50.0
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 +324 -90
- package/CHANGELOG.md +27 -33
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/types/manifest.d.ts +20 -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 +5 -2
- package/dist/types/runtime.d.ts.map +1 -1
- package/package.json +2 -2
package/.schema/storyboard.json
CHANGED
|
@@ -139,9 +139,21 @@
|
|
|
139
139
|
"description": "本地化后的应用名称(运行时得出),本地化获取失败时回退到 `name`。",
|
|
140
140
|
"type": "string"
|
|
141
141
|
},
|
|
142
|
+
"noAuthGuard": {
|
|
143
|
+
"description": "整个应用不启用登录守卫。",
|
|
144
|
+
"type": "boolean"
|
|
145
|
+
},
|
|
146
|
+
"isBuildPush": {
|
|
147
|
+
"description": "表示该应用是否是来自 BuildAndPush 的。",
|
|
148
|
+
"type": "boolean"
|
|
149
|
+
},
|
|
142
150
|
"$$routeAliasMap": {
|
|
143
151
|
"$ref": "#/definitions/RouteAliasMap",
|
|
144
152
|
"description": "路由别名映射(运行时得出)。"
|
|
153
|
+
},
|
|
154
|
+
"breadcrumb": {
|
|
155
|
+
"$ref": "#/definitions/BreadcrumbConf",
|
|
156
|
+
"description": "面包屑配置"
|
|
145
157
|
}
|
|
146
158
|
}
|
|
147
159
|
},
|
|
@@ -2634,6 +2646,82 @@
|
|
|
2634
2646
|
}
|
|
2635
2647
|
}
|
|
2636
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": {
|
|
2700
|
+
"type": "string"
|
|
2701
|
+
}
|
|
2702
|
+
}
|
|
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
|
+
},
|
|
2637
2725
|
"RouteConfOfBricks": {
|
|
2638
2726
|
"description": "包含一组构件的路由配置。",
|
|
2639
2727
|
"type": "object",
|
|
@@ -3406,78 +3494,6 @@
|
|
|
3406
3494
|
}
|
|
3407
3495
|
]
|
|
3408
3496
|
},
|
|
3409
|
-
"BreadcrumbConf": {
|
|
3410
|
-
"description": "面包屑配置。",
|
|
3411
|
-
"type": "object",
|
|
3412
|
-
"properties": {
|
|
3413
|
-
"items": {
|
|
3414
|
-
"description": "面包屑列表。",
|
|
3415
|
-
"type": "array",
|
|
3416
|
-
"items": {
|
|
3417
|
-
"$ref": "#/definitions/BreadcrumbItemConf"
|
|
3418
|
-
}
|
|
3419
|
-
},
|
|
3420
|
-
"overwrite": {
|
|
3421
|
-
"description": "是否覆盖上层路由已有的面包屑列表(默认为追加模式)。",
|
|
3422
|
-
"type": "boolean"
|
|
3423
|
-
}
|
|
3424
|
-
}
|
|
3425
|
-
},
|
|
3426
|
-
"BreadcrumbItemConf": {
|
|
3427
|
-
"description": "面包屑单项配置。",
|
|
3428
|
-
"type": "object",
|
|
3429
|
-
"properties": {
|
|
3430
|
-
"text": {
|
|
3431
|
-
"description": "面包屑文本。",
|
|
3432
|
-
"type": "string"
|
|
3433
|
-
},
|
|
3434
|
-
"to": {
|
|
3435
|
-
"$ref": "#/definitions/LocationDescriptor<PluginHistoryState>",
|
|
3436
|
-
"description": "面包屑对应的链接。"
|
|
3437
|
-
}
|
|
3438
|
-
}
|
|
3439
|
-
},
|
|
3440
|
-
"LocationDescriptorObject<PluginHistoryState>": {
|
|
3441
|
-
"type": "object",
|
|
3442
|
-
"properties": {
|
|
3443
|
-
"pathname": {
|
|
3444
|
-
"type": "string"
|
|
3445
|
-
},
|
|
3446
|
-
"search": {
|
|
3447
|
-
"type": "string"
|
|
3448
|
-
},
|
|
3449
|
-
"state": {
|
|
3450
|
-
"$ref": "#/definitions/PluginHistoryState"
|
|
3451
|
-
},
|
|
3452
|
-
"hash": {
|
|
3453
|
-
"type": "string"
|
|
3454
|
-
},
|
|
3455
|
-
"key": {
|
|
3456
|
-
"type": "string"
|
|
3457
|
-
}
|
|
3458
|
-
}
|
|
3459
|
-
},
|
|
3460
|
-
"PluginHistoryState": {
|
|
3461
|
-
"type": "object",
|
|
3462
|
-
"properties": {
|
|
3463
|
-
"notify": {
|
|
3464
|
-
"type": "boolean"
|
|
3465
|
-
},
|
|
3466
|
-
"from": {
|
|
3467
|
-
"$ref": "#/definitions/LocationDescriptor<PluginHistoryState>"
|
|
3468
|
-
}
|
|
3469
|
-
}
|
|
3470
|
-
},
|
|
3471
|
-
"LocationDescriptor<PluginHistoryState>": {
|
|
3472
|
-
"anyOf": [
|
|
3473
|
-
{
|
|
3474
|
-
"$ref": "#/definitions/LocationDescriptorObject<PluginHistoryState>"
|
|
3475
|
-
},
|
|
3476
|
-
{
|
|
3477
|
-
"type": "string"
|
|
3478
|
-
}
|
|
3479
|
-
]
|
|
3480
|
-
},
|
|
3481
3497
|
"BrickMenuConf": {
|
|
3482
3498
|
"description": "使用构件做数据代理的菜单配置。",
|
|
3483
3499
|
"type": "object",
|
|
@@ -5099,17 +5115,17 @@
|
|
|
5099
5115
|
"$ref": "#/definitions/MetaI18n",
|
|
5100
5116
|
"description": "{@inheritDoc MetaI18n}"
|
|
5101
5117
|
},
|
|
5102
|
-
"
|
|
5118
|
+
"functions": {
|
|
5119
|
+
"description": "应用定义的函数列表。",
|
|
5103
5120
|
"type": "array",
|
|
5104
5121
|
"items": {
|
|
5105
|
-
"$ref": "#/definitions/
|
|
5122
|
+
"$ref": "#/definitions/StoryboardFunction"
|
|
5106
5123
|
}
|
|
5107
5124
|
},
|
|
5108
|
-
"
|
|
5109
|
-
"description": "应用定义的函数列表。",
|
|
5125
|
+
"menus": {
|
|
5110
5126
|
"type": "array",
|
|
5111
5127
|
"items": {
|
|
5112
|
-
"$ref": "#/definitions/
|
|
5128
|
+
"$ref": "#/definitions/MenuRawData"
|
|
5113
5129
|
}
|
|
5114
5130
|
}
|
|
5115
5131
|
}
|
|
@@ -5699,35 +5715,253 @@
|
|
|
5699
5715
|
"description": "应用定义的国际化配置表。",
|
|
5700
5716
|
"type": "object"
|
|
5701
5717
|
},
|
|
5702
|
-
"
|
|
5703
|
-
"description": "
|
|
5718
|
+
"StoryboardFunction": {
|
|
5719
|
+
"description": "应用定义的函数。",
|
|
5704
5720
|
"type": "object",
|
|
5705
5721
|
"properties": {
|
|
5706
5722
|
"name": {
|
|
5707
|
-
"description": "
|
|
5723
|
+
"description": "函数名称。",
|
|
5708
5724
|
"type": "string"
|
|
5709
5725
|
},
|
|
5710
|
-
"
|
|
5711
|
-
"description": "
|
|
5726
|
+
"source": {
|
|
5727
|
+
"description": "函数源码。",
|
|
5712
5728
|
"type": "string"
|
|
5729
|
+
},
|
|
5730
|
+
"typescript": {
|
|
5731
|
+
"description": "是否使用 TypeScript。",
|
|
5732
|
+
"type": "boolean"
|
|
5713
5733
|
}
|
|
5714
5734
|
}
|
|
5715
5735
|
},
|
|
5716
|
-
"
|
|
5717
|
-
"description": "
|
|
5736
|
+
"MenuRawData": {
|
|
5737
|
+
"description": "原始菜单数据。",
|
|
5718
5738
|
"type": "object",
|
|
5719
5739
|
"properties": {
|
|
5720
|
-
"
|
|
5721
|
-
"description": "函数名称。",
|
|
5740
|
+
"menuId": {
|
|
5722
5741
|
"type": "string"
|
|
5723
5742
|
},
|
|
5724
|
-
"
|
|
5725
|
-
"description": "函数源码。",
|
|
5743
|
+
"title": {
|
|
5726
5744
|
"type": "string"
|
|
5727
5745
|
},
|
|
5728
|
-
"
|
|
5729
|
-
"
|
|
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": "高亮菜单项时是否使用精确匹配来对比当前地址和菜单项地址。",
|
|
5730
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"
|
|
5731
5965
|
}
|
|
5732
5966
|
}
|
|
5733
5967
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -3,93 +3,87 @@
|
|
|
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.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)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
10
10
|
|
|
11
|
-
*
|
|
11
|
+
* update type ([#1174](https://github.com/easyops-cn/next-core/issues/1174)) ([a128ce1](https://github.com/easyops-cn/next-core/commit/a128ce11cfea01f3d73ba3ec9728ab647b390823))
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
# [2.
|
|
17
|
+
# [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)
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
###
|
|
20
|
+
### Bug Fixes
|
|
21
21
|
|
|
22
|
-
*
|
|
23
|
-
* **brick-types:** update Story type ([f4d0e95](https://github.com/easyops-cn/next-core/commit/f4d0e95423bb089f2a999865a99bbe1e58ff3cb7))
|
|
22
|
+
* 构件按照名称前缀识别构件包 ([5293187](https://github.com/easyops-cn/next-core/commit/52931871641a072909d3ff2b5ddb4436503a5676))
|
|
24
23
|
|
|
25
24
|
|
|
25
|
+
### Features
|
|
26
26
|
|
|
27
|
+
* support getting images by static files ([c23d88a](https://github.com/easyops-cn/next-core/commit/c23d88aa70f5009453a1d3c58e7f4a0d6249c719))
|
|
27
28
|
|
|
28
29
|
|
|
29
|
-
# [2.45.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.44.0...@next-core/brick-types@2.45.0) (2021-10-28)
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
### Features
|
|
33
32
|
|
|
34
|
-
|
|
35
|
-
* RouteConfOfBricks add analyticsData property ([348752f](https://github.com/easyops-cn/next-core/commit/348752fa7d0886e506ea728a60687715f0d6b1b5))
|
|
33
|
+
# [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)
|
|
36
34
|
|
|
35
|
+
### Features
|
|
37
36
|
|
|
37
|
+
- support standalone menu types ([9ab5868](https://github.com/easyops-cn/next-core/commit/9ab5868c7182e5befa0d6553b47b813e46c2b73c))
|
|
38
38
|
|
|
39
|
+
# [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)
|
|
39
40
|
|
|
41
|
+
### Features
|
|
40
42
|
|
|
41
|
-
|
|
43
|
+
- BuilderRouteNode add analyticsData property ([ed1d401](https://github.com/easyops-cn/next-core/commit/ed1d401e4f47e7f6849cef0260cb355d2d8f7e01))
|
|
42
44
|
|
|
45
|
+
# [2.46.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.45.0...@next-core/brick-types@2.46.0) (2021-11-01)
|
|
43
46
|
|
|
44
47
|
### Features
|
|
45
48
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
- **brick-types:** interface Story add fields: useWidget ([1efa653](https://github.com/easyops-cn/next-core/commit/1efa653329a06bba934227e93277918e3dc233ea))
|
|
50
|
+
- **brick-types:** update Story type ([f4d0e95](https://github.com/easyops-cn/next-core/commit/f4d0e95423bb089f2a999865a99bbe1e58ff3cb7))
|
|
49
51
|
|
|
52
|
+
# [2.45.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.44.0...@next-core/brick-types@2.45.0) (2021-10-28)
|
|
50
53
|
|
|
54
|
+
### Features
|
|
51
55
|
|
|
52
|
-
|
|
56
|
+
- add isRouteConfOfBricks and isRouteConfOfRoutes ([2f15f6c](https://github.com/easyops-cn/next-core/commit/2f15f6ce8b0fc1c6120cc4f93c185402c5f2f72a))
|
|
57
|
+
- RouteConfOfBricks add analyticsData property ([348752f](https://github.com/easyops-cn/next-core/commit/348752fa7d0886e506ea728a60687715f0d6b1b5))
|
|
53
58
|
|
|
59
|
+
# [2.44.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.43.0...@next-core/brick-types@2.44.0) (2021-10-28)
|
|
54
60
|
|
|
55
61
|
### Features
|
|
56
62
|
|
|
57
|
-
|
|
58
|
-
|
|
63
|
+
- **buildDataManage:** add the updateBrick function to update the widget ([a5929b4](https://github.com/easyops-cn/next-core/commit/a5929b4dee4148d95c6e37b4fe6eb2b4ee9f8570))
|
|
59
64
|
|
|
65
|
+
# [2.43.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.42.0...@next-core/brick-types@2.43.0) (2021-10-21)
|
|
60
66
|
|
|
67
|
+
### Features
|
|
61
68
|
|
|
69
|
+
- **bindListeners:** add analytics.send builtin handler ([bd16412](https://github.com/easyops-cn/next-core/commit/bd164129a1e95b73867be9504c0704beb14fe581))
|
|
62
70
|
|
|
63
71
|
# [2.42.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.41.0...@next-core/brick-types@2.42.0) (2021-10-20)
|
|
64
72
|
|
|
65
|
-
|
|
66
73
|
### Features
|
|
67
74
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
75
|
+
- support checking version of installed apps ([220aed5](https://github.com/easyops-cn/next-core/commit/220aed501758a047743ecf6fa1485a09358ecadb))
|
|
73
76
|
|
|
74
77
|
# [2.41.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.40.1...@next-core/brick-types@2.41.0) (2021-10-13)
|
|
75
78
|
|
|
76
|
-
|
|
77
79
|
### Features
|
|
78
80
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
- update useBrick if condition, and support widget to expand ([df4b47a](https://github.com/easyops-cn/next-core/commit/df4b47ad3337c7723d50ee81e7bb1b86076bc5b2))
|
|
84
82
|
|
|
85
83
|
## [2.40.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.40.0...@next-core/brick-types@2.40.1) (2021-10-12)
|
|
86
84
|
|
|
87
85
|
**Note:** Version bump only for package @next-core/brick-types
|
|
88
86
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
87
|
# [2.40.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-types@2.39.1...@next-core/brick-types@2.40.0) (2021-09-30)
|
|
94
88
|
|
|
95
89
|
### Features
|