@tempots/dom 17.0.0 → 19.0.0

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 (50) hide show
  1. package/dom/animatable.d.ts +12 -12
  2. package/dom/attr.d.ts +14 -7
  3. package/dom/dom-context.d.ts +47 -2
  4. package/dom/dom-utils.d.ts +6 -3
  5. package/dom/handle-anchor-click.d.ts +13 -2
  6. package/dom/ssr.d.ts +48 -16
  7. package/index.cjs +1 -1
  8. package/index.d.ts +1 -1
  9. package/index.js +1050 -931
  10. package/package.json +1 -1
  11. package/renderable/async.d.ts +33 -3
  12. package/renderable/attribute.d.ts +28 -9
  13. package/renderable/bind.d.ts +43 -13
  14. package/renderable/conjunction.d.ts +23 -4
  15. package/renderable/consumers.d.ts +54 -1
  16. package/renderable/domnode.d.ts +10 -2
  17. package/renderable/element.d.ts +50 -3
  18. package/renderable/empty.d.ts +5 -0
  19. package/renderable/ensure.d.ts +10 -0
  20. package/renderable/foreach.d.ts +12 -2
  21. package/renderable/fragment.d.ts +11 -0
  22. package/renderable/handler.d.ts +67 -10
  23. package/renderable/map-signal.d.ts +15 -0
  24. package/renderable/not-empty.d.ts +13 -1
  25. package/renderable/onctx.d.ts +9 -2
  26. package/renderable/oneof.d.ts +138 -16
  27. package/renderable/onmount.d.ts +8 -0
  28. package/renderable/onunmount.d.ts +6 -0
  29. package/renderable/portal.d.ts +12 -3
  30. package/renderable/providers.d.ts +39 -6
  31. package/renderable/render.d.ts +39 -3
  32. package/renderable/repeat.d.ts +11 -2
  33. package/renderable/style.d.ts +5 -2
  34. package/renderable/task.d.ts +18 -2
  35. package/renderable/text.d.ts +18 -5
  36. package/renderable/when.d.ts +21 -3
  37. package/std/interpolate.d.ts +56 -5
  38. package/std/position.d.ts +42 -2
  39. package/std/signal-utils.d.ts +226 -0
  40. package/std/signal.d.ts +397 -85
  41. package/types/aria-attributes.d.ts +5 -0
  42. package/types/css-styles.d.ts +11 -0
  43. package/types/domain.d.ts +69 -3
  44. package/types/html-attributes.d.ts +10 -0
  45. package/types/html-events.d.ts +5 -0
  46. package/types/html-tags.d.ts +5 -0
  47. package/types/mathml-attributes.d.ts +5 -0
  48. package/types/mathml-tags.d.ts +4 -0
  49. package/types/svg-attributes.d.ts +5 -0
  50. package/types/svg-tags.d.ts +5 -0
@@ -1,3 +1,8 @@
1
+ /**
2
+ * Represents a mapping of HTML event names to their corresponding event types.
3
+ *
4
+ * @public
5
+ */
1
6
  export type HTMLEvents = {
2
7
  abort: Event;
3
8
  animationcancel: AnimationEvent;
@@ -1,3 +1,8 @@
1
+ /**
2
+ * Represents a mapping of HTML tag names to their corresponding element types.
3
+ *
4
+ * @public
5
+ */
1
6
  export type HTMLTags = {
2
7
  a: HTMLAnchorElement;
3
8
  abbr: HTMLElement;
@@ -1,3 +1,8 @@
1
+ /**
2
+ * Represents the attributes used in MathML elements.
3
+ *
4
+ * @public
5
+ */
1
6
  export type MathMLAttributes = {
2
7
  accent: string;
3
8
  accentunder: string;
@@ -1,3 +1,7 @@
1
+ /**
2
+ * Represents a collection of MathML tags.
3
+ * @public
4
+ */
1
5
  export type MathMLTags = {
2
6
  maction: MathMLElement;
3
7
  math: MathMLElement;
@@ -1,3 +1,8 @@
1
+ /**
2
+ * Represents the attributes that can be used in SVG elements.
3
+ *
4
+ * @public
5
+ */
1
6
  export type SVGAttributes = {
2
7
  accentHeight: number;
3
8
  accumulate: 'none' | 'sum';
@@ -1,3 +1,8 @@
1
+ /**
2
+ * Represents a mapping of SVG tag names to their corresponding SVG element types.
3
+ *
4
+ * @public
5
+ */
1
6
  export type SVGTags = {
2
7
  a: SVGAElement;
3
8
  animate: SVGAnimateElement;