aspose-html-net 25.6.0__py3-none-manylinux1_x86_64.whl → 25.7.0__py3-none-manylinux1_x86_64.whl

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 (30) hide show
  1. aspose/assemblies/html/Aspose.HTML.dll +0 -0
  2. aspose/assemblies/html/WrpInterop.Aspose.Html.dll +0 -0
  3. aspose/html/__init__.pyi +3367 -2025
  4. aspose/html/collections/__init__.pyi +4 -4
  5. aspose/html/dom/__init__.pyi +778 -404
  6. aspose/html/dom/canvas/__init__.pyi +2 -2
  7. aspose/html/dom/css/__init__.pyi +12 -11
  8. aspose/html/dom/events/__init__.pyi +20 -20
  9. aspose/html/dom/mutations/__init__.pyi +4 -4
  10. aspose/html/dom/svg/__init__.pyi +2726 -1627
  11. aspose/html/dom/svg/datatypes/__init__.pyi +52 -52
  12. aspose/html/dom/svg/events/__init__.pyi +4 -4
  13. aspose/html/dom/svg/filters/__init__.pyi +1375 -825
  14. aspose/html/dom/svg/paths/__init__.pyi +42 -42
  15. aspose/html/rendering/__init__.pyi +8 -0
  16. aspose/html/window/__init__.pyi +18 -7
  17. aspose/html.cpython-310-x86_64-linux-gnu.so +0 -0
  18. aspose/html.cpython-311-x86_64-linux-gnu.so +0 -0
  19. aspose/html.cpython-313-x86_64-linux-gnu.so +0 -0
  20. aspose/html.cpython-35m-x86_64-linux-gnu.so +0 -0
  21. aspose/html.cpython-36m-x86_64-linux-gnu.so +0 -0
  22. aspose/html.cpython-37m-x86_64-linux-gnu.so +0 -0
  23. aspose/html.cpython-38-x86_64-linux-gnu.so +0 -0
  24. aspose/html.cpython-39-x86_64-linux-gnu.so +0 -0
  25. aspose_html_net-25.7.0.dist-info/METADATA +224 -0
  26. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.7.0.dist-info}/RECORD +29 -29
  27. aspose_html_net-25.6.0.dist-info/METADATA +0 -114
  28. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.7.0.dist-info}/WHEEL +0 -0
  29. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.7.0.dist-info}/entry_points.txt +0 -0
  30. {aspose_html_net-25.6.0.dist-info → aspose_html_net-25.7.0.dist-info}/top_level.txt +0 -0
@@ -74,9 +74,9 @@ class DOMTokenList(aspose.html.dom.DOMObject):
74
74
  ...
75
75
 
76
76
  def get_platform_type(self) -> Type:
77
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
77
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
78
78
 
79
- :returns: The ECMAScript object :py:class:`System.Type`.'''
79
+ :returns: The ECMAScript object.'''
80
80
  ...
81
81
 
82
82
  def contains(self, token : str) -> bool:
@@ -164,9 +164,9 @@ class NamedNodeMap(aspose.html.dom.DOMObject):
164
164
  '''Represents collections of attributes that can be accessed by name.'''
165
165
 
166
166
  def get_platform_type(self) -> Type:
167
- '''This method is used to retrieve ECMAScript object :py:class:`System.Type`.
167
+ '''This method is used to retrieve the ECMAScript object :py:class:`System.Type`.
168
168
 
169
- :returns: The ECMAScript object :py:class:`System.Type`.'''
169
+ :returns: The ECMAScript object.'''
170
170
  ...
171
171
 
172
172
  def get_named_item(self, name : str) -> aspose.html.dom.Attr: