adminforth 2.4.0-next.67 → 2.4.0-next.69

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.
@@ -187,7 +187,7 @@ function updateFromProps() {
187
187
  }
188
188
 
189
189
  async function inputClick() {
190
- if (props.readonly || props.searchDisabled) return;
190
+ if (props.readonly) return;
191
191
  // Toggle local dropdown
192
192
  showDropdown.value = !showDropdown.value;
193
193
  // If the dropdown is about to close, reset the search
@@ -161,6 +161,7 @@ import { getCustomComponent } from '@/utils';
161
161
  import Input from '@/afcl/Input.vue';
162
162
  import Select from '@/afcl/Select.vue';
163
163
  import Spinner from '@/afcl/Spinner.vue';
164
+ import debounce from 'debounce';
164
165
 
165
166
  const filtersStore = useFiltersStore();
166
167
  const { t } = useI18n();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.67",
3
+ "version": "2.4.0-next.69",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",