@tagplus/components 2.0.17 → 2.0.19
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/dist/tp.common.js +1 -1
- package/dist/tp.common.js.map +1 -1
- package/dist/tp.css +3 -3
- package/dist/tp.umd.js +1 -1
- package/dist/tp.umd.js.map +1 -1
- package/dist/tp.umd.min.js +1 -1
- package/dist/tp.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Autosuggest/Autosuggest.vue +10 -8
- package/src/components/Dialog/Dialog.vue +3 -1
- package/src/components/Multisuggest/Multisuggest.vue +10 -8
- package/src/components/Tip/Tip.vue +12 -18
package/package.json
CHANGED
|
@@ -676,14 +676,16 @@ export default {
|
|
|
676
676
|
</script>
|
|
677
677
|
|
|
678
678
|
<style lang="scss" scoped>
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
679
|
+
:deep(){
|
|
680
|
+
.el-input-group__append {
|
|
681
|
+
padding: 0px 6px 0px 0px;
|
|
682
|
+
border: 0;
|
|
683
|
+
width: 58px;
|
|
684
|
+
max-width: 58px;
|
|
685
|
+
.rightContent {
|
|
686
|
+
width: 40px;
|
|
687
|
+
max-width: 40px;
|
|
688
|
+
}
|
|
687
689
|
}
|
|
688
690
|
}
|
|
689
691
|
|
|
@@ -169,7 +169,9 @@ export default {
|
|
|
169
169
|
this.$emit('open')
|
|
170
170
|
this.$el.addEventListener('scroll', this.updatePopper)
|
|
171
171
|
this.$nextTick(() => {
|
|
172
|
-
this.$refs
|
|
172
|
+
if (this.$refs?.dialog) {
|
|
173
|
+
this.$refs.dialog.scrollTop = 0
|
|
174
|
+
}
|
|
173
175
|
})
|
|
174
176
|
|
|
175
177
|
if (this.appendToBody) {
|
|
@@ -730,14 +730,16 @@ export default {
|
|
|
730
730
|
</script>
|
|
731
731
|
|
|
732
732
|
<style lang="scss" scoped>
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
733
|
+
:deep(){
|
|
734
|
+
.el-input-group__append {
|
|
735
|
+
padding: 0px 6px 0px 0px;
|
|
736
|
+
border: 0px;
|
|
737
|
+
width: 58px;
|
|
738
|
+
max-width: 58px;
|
|
739
|
+
.rightContent {
|
|
740
|
+
width: 40px;
|
|
741
|
+
max-width: 40px;
|
|
742
|
+
}
|
|
741
743
|
}
|
|
742
744
|
}
|
|
743
745
|
|
|
@@ -143,36 +143,30 @@ export default {
|
|
|
143
143
|
.tp-tip-error {
|
|
144
144
|
background: #f56c6c1a 0% 0% no-repeat padding-box;
|
|
145
145
|
border: 1px solid #ff6077;
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
::v-deep em {
|
|
151
|
-
color: #ff425f;
|
|
146
|
+
:deep(){
|
|
147
|
+
strong, b, em {
|
|
148
|
+
color: #ff425f;
|
|
149
|
+
}
|
|
152
150
|
}
|
|
153
151
|
}
|
|
154
152
|
|
|
155
153
|
.tp-tip-warning {
|
|
156
154
|
background: #fff9ea 0% 0% no-repeat padding-box;
|
|
157
155
|
border: 1px solid #ffc437;
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
::v-deep em {
|
|
163
|
-
color: #ffc437;
|
|
156
|
+
:deep(){
|
|
157
|
+
strong, b, em {
|
|
158
|
+
color: #ffc437;
|
|
159
|
+
}
|
|
164
160
|
}
|
|
165
161
|
}
|
|
166
162
|
|
|
167
163
|
.tp-tip-success {
|
|
168
164
|
background: #f3fcfc 0% 0% no-repeat padding-box;
|
|
169
165
|
border: 1px solid #08a19e;
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
::v-deep em {
|
|
175
|
-
color: #08a19e;
|
|
166
|
+
:deep(){
|
|
167
|
+
strong, b, em {
|
|
168
|
+
color: #08a19e;
|
|
169
|
+
}
|
|
176
170
|
}
|
|
177
171
|
}
|
|
178
172
|
|