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 +1 -1
- package/src/i-dot.ts +2 -1
- package/src/version.ts +2 -0
package/package.json
CHANGED
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:
|
|
299
|
+
version: typeof VERSION;
|
|
299
300
|
styleMode: "sync" | "async";
|
|
300
301
|
|
|
301
302
|
navigate(path: string, replace?: boolean): void;
|
package/src/version.ts
ADDED