vueless 1.4.12-beta.11 → 1.4.12-beta.13

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.4.12-beta.11",
3
+ "version": "1.4.12-beta.13",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -15,7 +15,7 @@ export default /*tw*/ {
15
15
  listboxInput: {
16
16
  base: "{UInputSearch} sticky top-0 pt-1 bg-default z-10",
17
17
  searchInput: {
18
- wrapper: "pl-2 pr-1 rounded-none border-0 border-b focus-within:outline-0 border-default!",
18
+ wrapper: "pl-2 pr-1 rounded-none border-0 border-b focus-within:outline-0 outline-none! border-default!",
19
19
  },
20
20
  },
21
21
  selectIcon: {
@@ -135,7 +135,7 @@ const dropdownValue = computed({
135
135
  emit("update:modelValue", value);
136
136
  emit("change", { value, options: props.options });
137
137
 
138
- if (!props.multiple && props.closeOnSelect) deactivate();
138
+ if (props.closeOnSelect) deactivate();
139
139
  },
140
140
  });
141
141