vue-intergrall-plugins 0.0.251 → 0.0.252
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/package.json
CHANGED
|
@@ -269,6 +269,15 @@ h1, h2, h3, h4, p { margin: 0; padding: 0 }
|
|
|
269
269
|
flex-grow: 0;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
+
.vs__dropdown-option.vs__dropdown-option--selected {
|
|
273
|
+
background-color: rgb(26, 95, 173)!important;
|
|
274
|
+
color: white;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.vs__dropdown-menu li {
|
|
278
|
+
padding: 10px 15px;
|
|
279
|
+
}
|
|
280
|
+
|
|
272
281
|
.vs__dropdown-option {
|
|
273
282
|
transition: background-color 150ms;
|
|
274
283
|
white-space: normal;
|
|
@@ -107,7 +107,7 @@ export default {
|
|
|
107
107
|
this.$root.$refs[`template-single-${this.identifier}`] = this
|
|
108
108
|
},
|
|
109
109
|
mounted() {
|
|
110
|
-
this.getListOpts()
|
|
110
|
+
if(this.allVariables) this.getListOpts()
|
|
111
111
|
this.setInputs();
|
|
112
112
|
},
|
|
113
113
|
updated() {
|
|
@@ -177,7 +177,7 @@ export default {
|
|
|
177
177
|
input.setAttribute("id", `{{var_${this.lastVar}}}`);
|
|
178
178
|
input.addEventListener("input", (event) => {
|
|
179
179
|
this.setVar(event, `var_${this.lastVar}`, true);
|
|
180
|
-
varList.classList.remove("visible")
|
|
180
|
+
if(varList) varList.classList.remove("visible")
|
|
181
181
|
});
|
|
182
182
|
input.addEventListener("focus", () => {
|
|
183
183
|
input.classList.remove("invalid");
|