@next-bricks/presentational-bricks 1.287.0 → 1.287.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/deploy/contract.yaml +76 -76
- package/dist/bricks.json +1 -1
- package/dist/{index.f5d7d0f3.js → index.5b678d2a.js} +2 -2
- package/dist/{index.f5d7d0f3.js.map → index.5b678d2a.js.map} +1 -1
- package/dist/lazy-bricks/{~bricks-use-form-and-markdown.dd92.08280add.js → ~bricks-use-form-and-markdown.dd92.58094ada.js} +2 -2
- package/dist/lazy-bricks/~bricks-use-form-and-markdown.dd92.58094ada.js.map +1 -0
- package/dist/stories.json +24 -19
- package/package.json +2 -2
- package/dist/lazy-bricks/~bricks-use-form-and-markdown.dd92.08280add.js.map +0 -1
package/dist/stories.json
CHANGED
|
@@ -16030,28 +16030,40 @@
|
|
|
16030
16030
|
"type": "string",
|
|
16031
16031
|
"required": "false",
|
|
16032
16032
|
"default": "-",
|
|
16033
|
-
"description": "markdown 编辑器的值"
|
|
16034
|
-
|
|
16035
|
-
{
|
|
16036
|
-
"name": "previewContainerStyle",
|
|
16037
|
-
"type": "Record<string,any>",
|
|
16038
|
-
"required": "false",
|
|
16039
|
-
"default": "-",
|
|
16040
|
-
"description": "预览容器的样式"
|
|
16033
|
+
"description": "markdown 编辑器的值",
|
|
16034
|
+
"group": "basic"
|
|
16041
16035
|
},
|
|
16042
16036
|
{
|
|
16043
16037
|
"name": "supportUploadImg",
|
|
16044
16038
|
"type": "boolean",
|
|
16045
16039
|
"required": "-",
|
|
16046
16040
|
"default": "false",
|
|
16047
|
-
"description": "支持上传图片,为 `true` 时需要设置 `bucketName`。对接平台统一资源存储。"
|
|
16041
|
+
"description": "支持上传图片,为 `true` 时需要设置 `bucketName`。对接平台统一资源存储。",
|
|
16042
|
+
"group": "advanced"
|
|
16043
|
+
},
|
|
16044
|
+
{
|
|
16045
|
+
"name": "imagePreview",
|
|
16046
|
+
"type": "booelan",
|
|
16047
|
+
"required": "false",
|
|
16048
|
+
"default": "true",
|
|
16049
|
+
"group": "advanced",
|
|
16050
|
+
"description": "markdown 图片是否支持预览"
|
|
16048
16051
|
},
|
|
16049
16052
|
{
|
|
16050
16053
|
"name": "bucketName",
|
|
16051
16054
|
"type": "string",
|
|
16052
16055
|
"required": "-",
|
|
16053
16056
|
"default": "-",
|
|
16054
|
-
"description": "对象存储桶名字,请在业务编排的时候与后台同学商量创建,一般一个业务需求对应一个存储桶名称,相当于 namespace。需要上传图片的功能(`supportUploadImg:true`)时可用。"
|
|
16057
|
+
"description": "对象存储桶名字,请在业务编排的时候与后台同学商量创建,一般一个业务需求对应一个存储桶名称,相当于 namespace。需要上传图片的功能(`supportUploadImg:true`)时可用。",
|
|
16058
|
+
"group": "advanced"
|
|
16059
|
+
},
|
|
16060
|
+
{
|
|
16061
|
+
"name": "previewContainerStyle",
|
|
16062
|
+
"type": "Record<string,any>",
|
|
16063
|
+
"required": "false",
|
|
16064
|
+
"default": "-",
|
|
16065
|
+
"description": "预览容器的样式",
|
|
16066
|
+
"group": "style"
|
|
16055
16067
|
},
|
|
16056
16068
|
{
|
|
16057
16069
|
"name": "dataSource",
|
|
@@ -16060,7 +16072,7 @@
|
|
|
16060
16072
|
"default": "-",
|
|
16061
16073
|
"description": "[已废弃]数据来源",
|
|
16062
16074
|
"deprecated": true,
|
|
16063
|
-
"group": "
|
|
16075
|
+
"group": "other"
|
|
16064
16076
|
},
|
|
16065
16077
|
{
|
|
16066
16078
|
"name": "fields",
|
|
@@ -16069,14 +16081,7 @@
|
|
|
16069
16081
|
"default": "-",
|
|
16070
16082
|
"description": "[已废弃]字段映射, 跟 dataSource 一起使用来获得运行时 value",
|
|
16071
16083
|
"deprecated": true,
|
|
16072
|
-
"group": "
|
|
16073
|
-
},
|
|
16074
|
-
{
|
|
16075
|
-
"name": "imagePreview",
|
|
16076
|
-
"type": "booelan",
|
|
16077
|
-
"required": "false",
|
|
16078
|
-
"default": "true",
|
|
16079
|
-
"description": "markdown 图片是否支持预览"
|
|
16084
|
+
"group": "other"
|
|
16080
16085
|
}
|
|
16081
16086
|
],
|
|
16082
16087
|
"interface": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-bricks/presentational-bricks",
|
|
3
|
-
"version": "1.287.
|
|
3
|
+
"version": "1.287.1",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "https://github.com/easyops-cn/next-basics/tree/master/bricks/presentational-bricks",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"@next-dll/ace": "*",
|
|
70
70
|
"@next-dll/react-dnd": "*"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "9f22e9bc03326d57ac32a74d1543c135c051cf09"
|
|
73
73
|
}
|