dothtml-interfaces 6.0.6 → 6.0.8

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": "dothtml-interfaces",
3
- "version": "6.0.6",
3
+ "version": "6.0.8",
4
4
  "description": "Dependency injection interfaces for DOTHtml.",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
package/src/i-dot.ts CHANGED
@@ -1,4 +1,5 @@
1
1
 
2
+ import { VERSION } from "./version";
2
3
  import IDotComponent from "./i-dot-component";
3
4
  import IDotCss from "./styles/i-dot-css";
4
5
  import IEventBus from "./i-event-bus";
@@ -295,7 +296,7 @@ export type ComponentArgs<TProps extends Array<string> = [], TEvents extends Arr
295
296
  export interface IDotCore extends IDotDocument {
296
297
  (targetSelector: string | Element | Node | NodeList | Array<Node | Element>, targetWindow?: Window): IDotDocument;
297
298
 
298
- version: string;
299
+ version: typeof VERSION;
299
300
  styleMode: "sync" | "async";
300
301
 
301
302
  navigate(path: string, replace?: boolean): void;
package/src/version.ts ADDED
@@ -0,0 +1,2 @@
1
+ /* GENERATED CONTENT */
2
+ export const VERSION = "6.0.8" as const;