dothtml-interfaces 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/i-dot.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dothtml-interfaces",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Dependency injection interfaces for DOTHtml.",
5
5
  "main": "src/index.d.ts",
6
6
  "types": "src/index.d.ts",
package/src/i-dot.d.ts CHANGED
@@ -741,7 +741,7 @@ interface IDotInput extends IDotGlobalAttrs {
741
741
  // setVal(value: unknown): IDotInput;
742
742
 
743
743
  // Input-specific events:
744
- onSearch: (e: Event) => void;
744
+ onSearch?: (e: Event) => void;
745
745
  }
746
746
 
747
747
  interface IDotIns extends IDotGlobalAttrs {