@fonixtree/magic-design 0.1.74 → 0.1.76
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/es/common/ImagePicker/index.js +2 -43
- package/es/common/ImagePicker/index.less +0 -1
- package/es/constants/index.js +1 -2
- package/es/core/Designer/AiImageGenerator/GenerateSize/index.js +6 -6
- package/es/core/Designer/AiImageGenerator/index.js +54 -314
- package/es/core/Designer/AiImageGenerator/index.less +34 -62
- package/es/core/Designer/ChatRobot/index.js +9 -24
- package/es/core/Designer/ChatRobot/index.less +0 -3
- package/es/core/Designer/FonixtreeGpt/index.js +171 -32
- package/es/core/Designer/index.js +3 -1
- package/es/utils/commonUtil.js +4 -1
- package/lib/common/ImagePicker/index.js +2 -43
- package/lib/common/ImagePicker/index.less +0 -1
- package/lib/constants/index.js +1 -2
- package/lib/core/Designer/AiImageGenerator/GenerateSize/index.js +6 -6
- package/lib/core/Designer/AiImageGenerator/index.js +54 -314
- package/lib/core/Designer/AiImageGenerator/index.less +34 -62
- package/lib/core/Designer/ChatRobot/index.js +9 -24
- package/lib/core/Designer/ChatRobot/index.less +0 -3
- package/lib/core/Designer/FonixtreeGpt/index.js +171 -32
- package/lib/core/Designer/index.js +3 -1
- package/lib/utils/commonUtil.js +4 -1
- package/package.json +1 -1
- package/es/core/Designer/AiImageGenerator/History/index.js +0 -141
- package/es/core/Designer/AiImageGenerator/History/index.less +0 -69
- package/lib/core/Designer/AiImageGenerator/History/index.js +0 -141
- package/lib/core/Designer/AiImageGenerator/History/index.less +0 -69
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
.history_wrap {
|
|
2
|
-
position: relative;
|
|
3
|
-
height: calc(100vh - 100px);
|
|
4
|
-
overflow: scroll;
|
|
5
|
-
width: 132px;
|
|
6
|
-
min-height: 100%;
|
|
7
|
-
background-color: #FFF;
|
|
8
|
-
border-radius: 4px;
|
|
9
|
-
.history_header {
|
|
10
|
-
display: flex;
|
|
11
|
-
justify-content: space-between;
|
|
12
|
-
padding: 16px;
|
|
13
|
-
}
|
|
14
|
-
.history_list {
|
|
15
|
-
padding: 0 16px;
|
|
16
|
-
max-height: calc(100vh - 200px);
|
|
17
|
-
overflow: scroll;
|
|
18
|
-
.historyNode {
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
border: 2px solid transparent;
|
|
21
|
-
border-radius: 6px;
|
|
22
|
-
position: relative;
|
|
23
|
-
margin-bottom: 12px;
|
|
24
|
-
.hisSelectIcon {
|
|
25
|
-
position: absolute;
|
|
26
|
-
right: 6px;
|
|
27
|
-
top: 6px;
|
|
28
|
-
background-color: #FFF;
|
|
29
|
-
border-radius: 50%;
|
|
30
|
-
display: flex;
|
|
31
|
-
align-items: center;
|
|
32
|
-
justify-content: center;
|
|
33
|
-
}
|
|
34
|
-
img {
|
|
35
|
-
border-radius: 4px;
|
|
36
|
-
width: 96px;
|
|
37
|
-
height: 96px;
|
|
38
|
-
}
|
|
39
|
-
.hisImgNum {
|
|
40
|
-
width: 18px;
|
|
41
|
-
height: 18px;
|
|
42
|
-
position: absolute;
|
|
43
|
-
bottom: 6px;
|
|
44
|
-
right: 6px;
|
|
45
|
-
background: #2F54EBCC;
|
|
46
|
-
color: #FFF;
|
|
47
|
-
font-family: 'Open Sans';
|
|
48
|
-
font-size: 12px;
|
|
49
|
-
font-weight: 400;
|
|
50
|
-
display: flex;
|
|
51
|
-
align-items: center;
|
|
52
|
-
justify-content: center;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
.active {
|
|
56
|
-
border: 2px solid #2F54EB;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
.historyBottom {
|
|
60
|
-
cursor: pointer;
|
|
61
|
-
position: absolute;
|
|
62
|
-
bottom: 16px;
|
|
63
|
-
left: 0;
|
|
64
|
-
right: 0;
|
|
65
|
-
margin-top: 10px;
|
|
66
|
-
color: #FF4141;
|
|
67
|
-
text-align: center;
|
|
68
|
-
}
|
|
69
|
-
}
|