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.
Files changed (59) hide show
  1. package/lib/arg-callback-obj.d.ts +29 -29
  2. package/lib/arg-callback-obj.js +63 -63
  3. package/lib/built-in-components/nav-link.d.ts +8 -8
  4. package/lib/built-in-components/nav-link.js +23 -23
  5. package/lib/built-in-components/router.d.ts +57 -57
  6. package/lib/built-in-components/router.js +281 -281
  7. package/lib/built-in-components/router.js.map +1 -1
  8. package/lib/component.d.ts +93 -82
  9. package/lib/component.js +353 -328
  10. package/lib/component.js.map +1 -1
  11. package/lib/dot-util.d.ts +26 -26
  12. package/lib/dot-util.js +61 -61
  13. package/lib/dot.d.ts +5 -5
  14. package/lib/dot.js +1128 -1108
  15. package/lib/dot.js.map +1 -1
  16. package/lib/dothtml.d.ts +29 -29
  17. package/lib/dothtml.js +14 -14
  18. package/lib/err.d.ts +2 -2
  19. package/lib/err.js +25 -25
  20. package/lib/event-bus.d.ts +10 -10
  21. package/lib/event-bus.js +36 -36
  22. package/lib/i-dot.d.ts +689 -687
  23. package/lib/i-dot.js +2 -2
  24. package/lib/node-polyfill.d.ts +2 -2
  25. package/lib/node-polyfill.js +13 -13
  26. package/lib/observable-array.d.ts +49 -49
  27. package/lib/observable-array.js +273 -273
  28. package/lib/pages/home-page.d.ts +9 -0
  29. package/lib/pages/home-page.js +24 -0
  30. package/lib/pages/home-page.js.map +1 -0
  31. package/lib/styling/css-types.ts/css-angle.d.ts +7 -7
  32. package/lib/styling/css-types.ts/css-angle.js +21 -21
  33. package/lib/styling/css-types.ts/css-color.d.ts +9 -9
  34. package/lib/styling/css-types.ts/css-color.js +823 -823
  35. package/lib/styling/css-types.ts/css-complex.d.ts +7 -7
  36. package/lib/styling/css-types.ts/css-complex.js +22 -22
  37. package/lib/styling/css-types.ts/css-data-type.d.ts +5 -5
  38. package/lib/styling/css-types.ts/css-data-type.js +8 -8
  39. package/lib/styling/css-types.ts/css-filter.d.ts +22 -22
  40. package/lib/styling/css-types.ts/css-filter.js +120 -120
  41. package/lib/styling/css-types.ts/css-length.d.ts +7 -7
  42. package/lib/styling/css-types.ts/css-length.js +23 -23
  43. package/lib/styling/css-types.ts/css-number.d.ts +6 -6
  44. package/lib/styling/css-types.ts/css-number.js +16 -16
  45. package/lib/styling/css-types.ts/css-percentage.d.ts +5 -5
  46. package/lib/styling/css-types.ts/css-percentage.js +12 -12
  47. package/lib/styling/css-types.ts/css-transform.d.ts +38 -38
  48. package/lib/styling/css-types.ts/css-transform.js +182 -182
  49. package/lib/styling/css-types.ts/css-unknown.d.ts +6 -6
  50. package/lib/styling/css-types.ts/css-unknown.js +16 -16
  51. package/lib/styling/css-types.ts/css-url.d.ts +6 -6
  52. package/lib/styling/css-types.ts/css-url.js +44 -44
  53. package/lib/styling/i-dotcss.d.ts +1085 -1085
  54. package/lib/styling/i-dotcss.js +2 -2
  55. package/lib/styling/style-builder.d.ts +24 -24
  56. package/lib/styling/style-builder.js +814 -814
  57. package/lib/styling/unit-function-tables.d.ts +10 -10
  58. package/lib/styling/unit-function-tables.js +26 -26
  59. 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.10",
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": {