@paperless/core 1.36.1 → 1.36.2

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/hydrate/index.js CHANGED
@@ -21187,7 +21187,7 @@ class Select {
21187
21187
  return items;
21188
21188
  }
21189
21189
  _getAutoCompleteItem() {
21190
- return (hAsync("div", { class: "bg-white sticky top-0 pt-2 -mt-2" }, hAsync("input", { class: "p-input size-small mb-2 sticky top-2", placeholder: this.autocompletePlaceholder, onInput: (ev) => this._onAutoComplete(ev), ref: (ref) => (this.autocompleteInputRef = ref) })));
21190
+ return (hAsync("div", { class: "bg-white sticky top-0 pt-2 -mt-2" }, hAsync("input", { class: "p-input size-small mb-2 sticky top-2", placeholder: this.autocompletePlaceholder, onInput: (ev) => this._onAutoComplete(ev), ref: (ref) => (this.autocompleteInputRef = ref), value: this.query })));
21191
21191
  }
21192
21192
  _setMultiContainerMaxWidth() {
21193
21193
  if (!this._inputRef || !this._multiContainerRef) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/core",
3
- "version": "1.36.1",
3
+ "version": "1.36.2",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",