dothtml 5.2.9 → 5.2.11
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/lib/arg-callback-obj.d.ts +29 -29
- package/lib/arg-callback-obj.js +63 -63
- package/lib/built-in-components/nav-link.d.ts +8 -8
- package/lib/built-in-components/nav-link.js +23 -23
- package/lib/built-in-components/router.d.ts +57 -57
- package/lib/built-in-components/router.js +281 -281
- package/lib/built-in-components/router.js.map +1 -1
- package/lib/component.d.ts +82 -82
- package/lib/component.js +328 -328
- package/lib/dot-util.d.ts +26 -26
- package/lib/dot-util.js +61 -61
- package/lib/dot.d.ts +5 -5
- package/lib/dot.js +1121 -1095
- package/lib/dot.js.map +1 -1
- package/lib/dothtml.d.ts +29 -28
- package/lib/dothtml.js +14 -37
- package/lib/dothtml.js.map +1 -1
- package/lib/err.d.ts +2 -2
- package/lib/err.js +25 -25
- package/lib/event-bus.d.ts +10 -10
- package/lib/event-bus.js +36 -36
- package/lib/i-dot.d.ts +689 -674
- package/lib/i-dot.js +2 -2
- package/lib/node-polyfill.d.ts +2 -2
- package/lib/node-polyfill.js +13 -13
- package/lib/observable-array.d.ts +49 -49
- package/lib/observable-array.js +273 -273
- package/lib/pages/home-page.d.ts +9 -0
- package/lib/pages/home-page.js +24 -0
- package/lib/pages/home-page.js.map +1 -0
- package/lib/styling/css-types.ts/css-angle.d.ts +7 -7
- package/lib/styling/css-types.ts/css-angle.js +21 -21
- package/lib/styling/css-types.ts/css-color.d.ts +9 -9
- package/lib/styling/css-types.ts/css-color.js +823 -823
- package/lib/styling/css-types.ts/css-complex.d.ts +7 -7
- package/lib/styling/css-types.ts/css-complex.js +22 -22
- package/lib/styling/css-types.ts/css-data-type.d.ts +5 -5
- package/lib/styling/css-types.ts/css-data-type.js +8 -8
- package/lib/styling/css-types.ts/css-filter.d.ts +22 -22
- package/lib/styling/css-types.ts/css-filter.js +120 -120
- package/lib/styling/css-types.ts/css-length.d.ts +7 -7
- package/lib/styling/css-types.ts/css-length.js +23 -23
- package/lib/styling/css-types.ts/css-number.d.ts +6 -6
- package/lib/styling/css-types.ts/css-number.js +16 -16
- package/lib/styling/css-types.ts/css-percentage.d.ts +5 -5
- package/lib/styling/css-types.ts/css-percentage.js +12 -12
- package/lib/styling/css-types.ts/css-transform.d.ts +38 -38
- package/lib/styling/css-types.ts/css-transform.js +182 -182
- package/lib/styling/css-types.ts/css-unknown.d.ts +6 -6
- package/lib/styling/css-types.ts/css-unknown.js +16 -16
- package/lib/styling/css-types.ts/css-url.d.ts +6 -6
- package/lib/styling/css-types.ts/css-url.js +44 -44
- package/lib/styling/i-dotcss.d.ts +1085 -1085
- package/lib/styling/i-dotcss.js +2 -2
- package/lib/styling/style-builder.d.ts +24 -24
- package/lib/styling/style-builder.js +814 -814
- package/lib/styling/unit-function-tables.d.ts +10 -10
- package/lib/styling/unit-function-tables.js +26 -26
- package/package.json +9 -8
package/lib/styling/i-dotcss.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=i-dotcss.js.map
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import IDotCss from "./i-dotcss";
|
|
2
|
-
declare const dotcss: IDotCss;
|
|
3
|
-
/**
|
|
4
|
-
* The dotcss builder gets extended with all of the css functions at runtime.
|
|
5
|
-
*/
|
|
6
|
-
export declare class _Builder {
|
|
7
|
-
currentCss: string;
|
|
8
|
-
targets: Array<HTMLElement>;
|
|
9
|
-
constructor(targets?: Array<HTMLElement>);
|
|
10
|
-
toString(): string;
|
|
11
|
-
hide(style?: {
|
|
12
|
-
duration: any;
|
|
13
|
-
hideStyle: any;
|
|
14
|
-
complete: any;
|
|
15
|
-
}): this;
|
|
16
|
-
show(style?: {
|
|
17
|
-
duration: any;
|
|
18
|
-
showStyle: any;
|
|
19
|
-
complete: any;
|
|
20
|
-
}): import("./i-dotcss").IDotcssProp | this;
|
|
21
|
-
fadeOut(duration: any, complete: any): this;
|
|
22
|
-
fadeIn(duration: any, complete: any): import("./i-dotcss").IDotcssProp | this;
|
|
23
|
-
}
|
|
24
|
-
export default dotcss;
|
|
1
|
+
import IDotCss from "./i-dotcss";
|
|
2
|
+
declare const dotcss: IDotCss;
|
|
3
|
+
/**
|
|
4
|
+
* The dotcss builder gets extended with all of the css functions at runtime.
|
|
5
|
+
*/
|
|
6
|
+
export declare class _Builder {
|
|
7
|
+
currentCss: string;
|
|
8
|
+
targets: Array<HTMLElement>;
|
|
9
|
+
constructor(targets?: Array<HTMLElement>);
|
|
10
|
+
toString(): string;
|
|
11
|
+
hide(style?: {
|
|
12
|
+
duration: any;
|
|
13
|
+
hideStyle: any;
|
|
14
|
+
complete: any;
|
|
15
|
+
}): this;
|
|
16
|
+
show(style?: {
|
|
17
|
+
duration: any;
|
|
18
|
+
showStyle: any;
|
|
19
|
+
complete: any;
|
|
20
|
+
}): import("./i-dotcss").IDotcssProp | this;
|
|
21
|
+
fadeOut(duration: any, complete: any): this;
|
|
22
|
+
fadeIn(duration: any, complete: any): import("./i-dotcss").IDotcssProp | this;
|
|
23
|
+
}
|
|
24
|
+
export default dotcss;
|