dothtml 5.2.10 → 5.2.12
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 +93 -82
- package/lib/component.js +353 -328
- package/lib/component.js.map +1 -1
- 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 +1128 -1108
- package/lib/dot.js.map +1 -1
- package/lib/dothtml.d.ts +29 -29
- package/lib/dothtml.js +14 -14
- 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 -687
- 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 +3 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export declare const AllLengthUnits: ({
|
|
2
|
-
unit: string;
|
|
3
|
-
jsName?: undefined;
|
|
4
|
-
} | {
|
|
5
|
-
unit: string;
|
|
6
|
-
jsName: string;
|
|
7
|
-
})[];
|
|
8
|
-
export declare const AllAngleUnits: {
|
|
9
|
-
unit: string;
|
|
10
|
-
}[];
|
|
1
|
+
export declare const AllLengthUnits: ({
|
|
2
|
+
unit: string;
|
|
3
|
+
jsName?: undefined;
|
|
4
|
+
} | {
|
|
5
|
+
unit: string;
|
|
6
|
+
jsName: string;
|
|
7
|
+
})[];
|
|
8
|
+
export declare const AllAngleUnits: {
|
|
9
|
+
unit: string;
|
|
10
|
+
}[];
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AllAngleUnits = exports.AllLengthUnits = void 0;
|
|
4
|
-
exports.AllLengthUnits = [
|
|
5
|
-
{ unit: "Em" },
|
|
6
|
-
{ unit: "Ex" },
|
|
7
|
-
{ unit: "Ch" },
|
|
8
|
-
{ unit: "Rem" },
|
|
9
|
-
{ unit: "Vw" },
|
|
10
|
-
{ unit: "Vh" },
|
|
11
|
-
{ unit: "Vmin" },
|
|
12
|
-
{ unit: "Vmax" },
|
|
13
|
-
{ unit: "%", jsName: "P" },
|
|
14
|
-
{ unit: "Cm" },
|
|
15
|
-
{ unit: "Mm" },
|
|
16
|
-
{ unit: "In" },
|
|
17
|
-
{ unit: "Px" },
|
|
18
|
-
{ unit: "Pt" },
|
|
19
|
-
{ unit: "Pc" }
|
|
20
|
-
];
|
|
21
|
-
exports.AllAngleUnits = [
|
|
22
|
-
{ unit: "Deg" },
|
|
23
|
-
{ unit: "Grad" },
|
|
24
|
-
{ unit: "Rad" },
|
|
25
|
-
{ unit: "Turn" }
|
|
26
|
-
];
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AllAngleUnits = exports.AllLengthUnits = void 0;
|
|
4
|
+
exports.AllLengthUnits = [
|
|
5
|
+
{ unit: "Em" },
|
|
6
|
+
{ unit: "Ex" },
|
|
7
|
+
{ unit: "Ch" },
|
|
8
|
+
{ unit: "Rem" },
|
|
9
|
+
{ unit: "Vw" },
|
|
10
|
+
{ unit: "Vh" },
|
|
11
|
+
{ unit: "Vmin" },
|
|
12
|
+
{ unit: "Vmax" },
|
|
13
|
+
{ unit: "%", jsName: "P" },
|
|
14
|
+
{ unit: "Cm" },
|
|
15
|
+
{ unit: "Mm" },
|
|
16
|
+
{ unit: "In" },
|
|
17
|
+
{ unit: "Px" },
|
|
18
|
+
{ unit: "Pt" },
|
|
19
|
+
{ unit: "Pc" }
|
|
20
|
+
];
|
|
21
|
+
exports.AllAngleUnits = [
|
|
22
|
+
{ unit: "Deg" },
|
|
23
|
+
{ unit: "Grad" },
|
|
24
|
+
{ unit: "Rad" },
|
|
25
|
+
{ unit: "Turn" }
|
|
26
|
+
];
|
|
27
27
|
//# sourceMappingURL=unit-function-tables.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dothtml",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.12",
|
|
4
4
|
"description": "DOThtml is a client-side web building framework written in TypeScript.",
|
|
5
5
|
"main": "./lib/dothtml.js",
|
|
6
6
|
"exports": "./lib/dothtml.js",
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
"copyfiles": "^2.4.1",
|
|
20
20
|
"esm": "^3.2.25",
|
|
21
21
|
"jest": "^29.5.0",
|
|
22
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
22
23
|
"ts-jest": "^29.0.5",
|
|
24
|
+
"ts-node": "^10.9.1",
|
|
23
25
|
"typescript": "^5.0.2"
|
|
24
26
|
},
|
|
25
27
|
"repository": {
|