vue-element-ui-x 1.0.41-beta → 1.0.42-beta
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/lib/components/Sender/index.js +1 -1
- package/lib/components/ThoughtChain/index.js +30 -30
- package/lib/index.common.js +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.js +774 -774
- package/lib/index.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/ThoughtChain/src/main.vue +1 -1
- package/src/styles/Sender.scss +8 -4
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
:type="getType(item)"
|
|
17
17
|
:icon="dotIsIcon ? item.icon : 'el-icon-more'"
|
|
18
18
|
:color="dotIsIcon ? item.iconColor : null"
|
|
19
|
-
:size="dotIsIcon ? item.iconSize : 'normal'"
|
|
19
|
+
:size="dotIsIcon ? item.iconSize || dotSize : 'normal'"
|
|
20
20
|
:timestamp="getTitle(item)"
|
|
21
21
|
:hide-timestamp="item.hideTitle"
|
|
22
22
|
:placement="item.placement || 'top'"
|
package/src/styles/Sender.scss
CHANGED
|
@@ -42,7 +42,10 @@ $--el-x-fill-color: $--background-color-base;
|
|
|
42
42
|
&:after {
|
|
43
43
|
content: '';
|
|
44
44
|
position: absolute;
|
|
45
|
-
|
|
45
|
+
top: 0;
|
|
46
|
+
right: 0;
|
|
47
|
+
bottom: 0;
|
|
48
|
+
left: 0;
|
|
46
49
|
pointer-events: none;
|
|
47
50
|
transition: border-color $--el-x-transition-duration;
|
|
48
51
|
border-radius: inherit;
|
|
@@ -110,9 +113,10 @@ $--el-x-fill-color: $--background-color-base;
|
|
|
110
113
|
display: flex;
|
|
111
114
|
gap: $--el-x-padding-xs;
|
|
112
115
|
width: 100%;
|
|
113
|
-
padding-
|
|
114
|
-
padding-
|
|
115
|
-
padding-
|
|
116
|
+
padding-top: $--el-x-padding-sm;
|
|
117
|
+
padding-bottom: $--el-x-padding-sm;
|
|
118
|
+
padding-left: $--el-x-padding;
|
|
119
|
+
padding-right: $--el-x-padding-sm;
|
|
116
120
|
box-sizing: border-box;
|
|
117
121
|
align-items: flex-end;
|
|
118
122
|
|