dothtml 6.0.0-beta.3 → 6.0.0-beta.30

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 (78) hide show
  1. package/build_module/css/css-props.d.ts +8 -0
  2. package/build_module/css/css-props.js +40 -0
  3. package/build_module/css/css-props.js.map +1 -0
  4. package/build_module/css/css.js +1 -0
  5. package/build_module/css/css.js.map +1 -0
  6. package/build_module/css/format-css-type.d.ts +5 -0
  7. package/build_module/css/format-css-type.js +73 -0
  8. package/build_module/css/format-css-type.js.map +1 -0
  9. package/build_module/decoration/component.d.ts +5 -17
  10. package/build_module/decoration/component.js +20 -17
  11. package/build_module/decoration/component.js.map +1 -1
  12. package/build_module/decoration/use-styles.d.ts +13 -0
  13. package/build_module/decoration/use-styles.js +19 -0
  14. package/build_module/decoration/use-styles.js.map +1 -0
  15. package/build_module/dot.js +166 -343
  16. package/build_module/dot.js.map +1 -1
  17. package/build_module/helpers/render-css.d.ts +2 -0
  18. package/build_module/helpers/render-css.js +20 -0
  19. package/build_module/helpers/render-css.js.map +1 -0
  20. package/build_module/helpers/render-stylesheet.d.ts +2 -0
  21. package/build_module/helpers/render-stylesheet.js +27 -0
  22. package/build_module/helpers/render-stylesheet.js.map +1 -0
  23. package/build_module/helpers/tools.d.ts +3 -0
  24. package/build_module/helpers/tools.js +50 -0
  25. package/build_module/helpers/tools.js.map +1 -0
  26. package/build_module/helpers.d.ts +1 -0
  27. package/build_module/helpers.js +1 -0
  28. package/build_module/helpers.js.map +1 -1
  29. package/build_module/index.js +1 -0
  30. package/build_module/index.js.map +1 -1
  31. package/build_module/reactive.d.ts +10 -1
  32. package/build_module/reactive.js +34 -4
  33. package/build_module/reactive.js.map +1 -1
  34. package/build_module/v-meta-nodes/attribute-v-node.d.ts +12 -0
  35. package/build_module/v-meta-nodes/attribute-v-node.js +48 -0
  36. package/build_module/v-meta-nodes/attribute-v-node.js.map +1 -0
  37. package/build_module/v-meta-nodes/style-v-node.d.ts +16 -0
  38. package/build_module/v-meta-nodes/style-v-node.js +135 -0
  39. package/build_module/v-meta-nodes/style-v-node.js.map +1 -0
  40. package/build_module/v-meta-nodes/v-meta-node.d.ts +5 -0
  41. package/build_module/v-meta-nodes/v-meta-node.js +3 -0
  42. package/build_module/v-meta-nodes/v-meta-node.js.map +1 -0
  43. package/build_module/v-style-nodes/base-v-style.d.ts +14 -0
  44. package/build_module/v-style-nodes/base-v-style.js +112 -0
  45. package/build_module/v-style-nodes/base-v-style.js.map +1 -0
  46. package/build_module/v-style-nodes/css-function-builder-v-style.d.ts +17 -0
  47. package/build_module/v-style-nodes/css-function-builder-v-style.js +28 -0
  48. package/build_module/v-style-nodes/css-function-builder-v-style.js.map +1 -0
  49. package/build_module/v-style-nodes/filter-v-style.d.ts +13 -0
  50. package/build_module/v-style-nodes/filter-v-style.js +35 -0
  51. package/build_module/v-style-nodes/filter-v-style.js.map +1 -0
  52. package/build_module/v-style-nodes/transform-v-style.d.ts +28 -0
  53. package/build_module/v-style-nodes/transform-v-style.js +76 -0
  54. package/build_module/v-style-nodes/transform-v-style.js.map +1 -0
  55. package/build_module/v-style-nodes/v-style.d.ts +6 -0
  56. package/build_module/v-style-nodes/v-style.js +6 -0
  57. package/build_module/v-style-nodes/v-style.js.map +1 -0
  58. package/build_module/vdom-nodes/collection-vdom.js +1 -1
  59. package/build_module/vdom-nodes/collection-vdom.js.map +1 -1
  60. package/build_module/vdom-nodes/component-vdom.d.ts +0 -1
  61. package/build_module/vdom-nodes/component-vdom.js +32 -11
  62. package/build_module/vdom-nodes/component-vdom.js.map +1 -1
  63. package/build_module/vdom-nodes/container-vdom.d.ts +2 -0
  64. package/build_module/vdom-nodes/container-vdom.js +12 -0
  65. package/build_module/vdom-nodes/container-vdom.js.map +1 -1
  66. package/build_module/vdom-nodes/element-vdom.d.ts +3 -0
  67. package/build_module/vdom-nodes/element-vdom.js +39 -0
  68. package/build_module/vdom-nodes/element-vdom.js.map +1 -1
  69. package/build_module/vdom-nodes/html-vdom.js +1 -1
  70. package/build_module/vdom-nodes/html-vdom.js.map +1 -1
  71. package/build_module/window-wrapper.d.ts +20 -0
  72. package/build_module/window-wrapper.js +36 -0
  73. package/build_module/window-wrapper.js.map +1 -0
  74. package/package.json +4 -3
  75. package/readme.md +1 -1
  76. package/build_module/decoration/style.js +0 -1
  77. package/build_module/decoration/style.js.map +0 -1
  78. /package/build_module/{decoration/style.d.ts → css/css.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dothtml",
3
- "version": "6.0.0-beta.3",
3
+ "version": "6.0.0-beta.30",
4
4
  "description": "DOThtml is a client-side web building framework written in TypeScript.",
5
5
  "main": "./build_module/index.js",
6
6
  "exports": "./build_module/index.js",
@@ -11,7 +11,8 @@
11
11
  "scripts": {
12
12
  "test": "npm run build & jest",
13
13
  "build": "tsc --declaration",
14
- "buildumd": "webpack"
14
+ "buildumd": "webpack",
15
+ "publish-beta": "npm run build & npm publish --tag beta"
15
16
  },
16
17
  "repository": {
17
18
  "type": "git",
@@ -52,6 +53,6 @@
52
53
  "webpack-cli": "^5.1.4"
53
54
  },
54
55
  "dependencies": {
55
- "dothtml-interfaces": "^0.1.31"
56
+ "dothtml-interfaces": "^0.3.10"
56
57
  }
57
58
  }
package/readme.md CHANGED
@@ -23,4 +23,4 @@ The Style builder is powerful and useful, but still not fully developed. Conside
23
23
  - A lot of CSS properties don't enforce proper typing and will allow any string. This is a WIP and will naturally get better over time.
24
24
  - CSS @ rules like @keyframes, @media, @font-face, etc are currently not supported because they are currently not configurable in JavaScript. A workaround that generates dynamic CSS is planned.
25
25
 
26
- - Support for header elements (including stylesheets) is planned.
26
+ - Support for header elements (including stylesheets) is planned.
@@ -1 +0,0 @@
1
- //# sourceMappingURL=style.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"style.js","sourceRoot":"","sources":["../../src/decoration/style.ts"],"names":[],"mappings":""}