@startinblox/core 0.19.22 → 0.19.23

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -49296,13 +49296,14 @@ const SolidFormSearch = {
49296
49296
  async populate() {
49297
49297
  await this.replaceAttributesData();
49298
49298
  if (this.submitButton == null) {
49299
- this.element.addEventListener("input", (e) => this.debounceInput(e.target));
49300
- } else {
49301
- this.element.addEventListener("submit", (e) => {
49302
- e.preventDefault();
49303
- this.inputChange(e.target);
49299
+ this.element.addEventListener("input", (e) => {
49300
+ this.debounceInput(e.target);
49304
49301
  });
49305
49302
  }
49303
+ this.element.addEventListener("submit", (e) => {
49304
+ e.preventDefault();
49305
+ this.inputChange(e.target);
49306
+ });
49306
49307
  const fields = await this.getFields();
49307
49308
  const widgetTemplates = await Promise.all(fields.map((field) => this.createWidgetTemplate(field)));
49308
49309
  const template = html`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/core",
3
- "version": "0.19.22",
3
+ "version": "0.19.23",
4
4
  "description": "This is a series of web component respecting both the web components standards and the Linked Data Platform convention.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",