@next-bricks/data-view 0.13.4 → 0.13.5

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.
@@ -0,0 +1,28 @@
1
+ 应用墙小卡片
2
+
3
+ ## Examples
4
+
5
+ ### Basic
6
+
7
+ ```yaml preview
8
+ - brick: data-view.app-wall-card-item
9
+ properties:
10
+ cardTitle: pos
11
+ description: 店铺货管通
12
+ style:
13
+ width: 100px
14
+ height: 120px
15
+ ```
16
+
17
+ ### Status
18
+
19
+ ```yaml preview
20
+ - brick: data-view.app-wall-card-item
21
+ properties:
22
+ status: warning
23
+ cardTitle: pos
24
+ description: 店铺货管通
25
+ style:
26
+ width: 100px
27
+ height: 120px
28
+ ```
@@ -0,0 +1,13 @@
1
+ 应用墙流光线条
2
+
3
+ ## Examples
4
+
5
+ ### Basic
6
+
7
+ ```yaml preview
8
+ - brick: data-view.app-wall-relation-line
9
+ properties:
10
+ lightColor: purple
11
+ style:
12
+ height: 200px
13
+ ```
@@ -0,0 +1,57 @@
1
+ 系统卡片
2
+
3
+ ## Examples
4
+
5
+ ### Basic
6
+
7
+ ```yaml preview
8
+ - brick: data-view.app-wall-system-card
9
+ properties:
10
+ cardTitle: A系统
11
+ itemList:
12
+ - key: 实例ID
13
+ value: xxxx
14
+ - key: 系统英文缩写
15
+ value: system-fms
16
+ - key: 实例ID
17
+ value: xxx
18
+ - key: 系统英文名称
19
+ value: app-fms
20
+ - key: 系统中文名称
21
+ value: A财务系统
22
+ - key: 归属部门
23
+ value: 财务系统部
24
+ - key: 系统类型
25
+ value: 应用系统
26
+ - key: 系统描述
27
+ value: 1、使用场景概述:财务应收和应付结算
28
+ buttonName: 应用墙大屏
29
+ style:
30
+ background: rgba(40, 46, 58, 100%)
31
+ box-shadow: "0 0 12px 2px rgba(80, 255, 255, 0.45), inset 0 0 22px 0 #20242A"
32
+ border: "2px solid #50FFFF"
33
+ overflow: hidden
34
+ height: 400px
35
+ ```
36
+
37
+ ### Status
38
+
39
+ ```yaml preview
40
+ - brick: data-view.app-wall-system-card
41
+ properties:
42
+ cardTitle: B系统
43
+ itemList:
44
+ - key: 实例ID
45
+ value: xxxx
46
+ - key: 系统英文缩写
47
+ value: system-fms-B
48
+ - key: 系统描述
49
+ value: 1、使用场景概述:财务应收和应付结算
50
+ buttonName: 应用墙大屏
51
+ status: warning
52
+ style:
53
+ background: "linear-gradient(180deg, #CC0066 0%, rgba(204, 0, 102, 0.2) 100%),#0F1117FF"
54
+ box-shadow: "0 0 12px 2px rgba(204, 0, 102, 0.4), inset 0 4px 10px 0 rgba(255, 255, 255, 0.65)"
55
+ overflow: hidden
56
+ height: 400px
57
+ ```