README.md
pyproject.toml
requirements.txt
src/pydom/__init__.py
src/pydom/component.py
src/pydom/element.py
src/pydom/errors.py
src/pydom/page.py
src/pydom/version.py
src/pydom/context/__init__.py
src/pydom/context/context.py
src/pydom/context/feature.py
src/pydom/context/standard/__init__.py
src/pydom/context/standard/transformers/__init__.py
src/pydom/context/standard/transformers/class_transformer.py
src/pydom/context/standard/transformers/dash_transformer.py
src/pydom/context/standard/transformers/html_events_transformer.py
src/pydom/context/standard/transformers/simple_transformer.py
src/pydom/context/standard/transformers/style_transformer.py
src/pydom/html/__init__.py
src/pydom/html/a.py
src/pydom/html/abbr.py
src/pydom/html/address.py
src/pydom/html/area.py
src/pydom/html/article.py
src/pydom/html/aside.py
src/pydom/html/audio.py
src/pydom/html/b.py
src/pydom/html/base.py
src/pydom/html/bdi.py
src/pydom/html/bdo.py
src/pydom/html/blockquote.py
src/pydom/html/body.py
src/pydom/html/br.py
src/pydom/html/button.py
src/pydom/html/canvas.py
src/pydom/html/caption.py
src/pydom/html/cite.py
src/pydom/html/code.py
src/pydom/html/col.py
src/pydom/html/colgroup.py
src/pydom/html/data.py
src/pydom/html/datalist.py
src/pydom/html/dd.py
src/pydom/html/del_.py
src/pydom/html/details.py
src/pydom/html/dfn.py
src/pydom/html/dialog.py
src/pydom/html/div.py
src/pydom/html/dl.py
src/pydom/html/dt.py
src/pydom/html/em.py
src/pydom/html/embed.py
src/pydom/html/fieldset.py
src/pydom/html/figcaption.py
src/pydom/html/figure.py
src/pydom/html/footer.py
src/pydom/html/form.py
src/pydom/html/fragment.py
src/pydom/html/h1.py
src/pydom/html/h2.py
src/pydom/html/h3.py
src/pydom/html/h4.py
src/pydom/html/h5.py
src/pydom/html/h6.py
src/pydom/html/head.py
src/pydom/html/header.py
src/pydom/html/hgroup.py
src/pydom/html/hr.py
src/pydom/html/html.py
src/pydom/html/i.py
src/pydom/html/iframe.py
src/pydom/html/img.py
src/pydom/html/input.py
src/pydom/html/ins.py
src/pydom/html/kbd.py
src/pydom/html/label.py
src/pydom/html/legend.py
src/pydom/html/li.py
src/pydom/html/link.py
src/pydom/html/main.py
src/pydom/html/map.py
src/pydom/html/mark.py
src/pydom/html/menu.py
src/pydom/html/meta.py
src/pydom/html/meter.py
src/pydom/html/nav.py
src/pydom/html/noscript.py
src/pydom/html/object.py
src/pydom/html/ol.py
src/pydom/html/optgroup.py
src/pydom/html/option.py
src/pydom/html/output.py
src/pydom/html/p.py
src/pydom/html/param.py
src/pydom/html/picture.py
src/pydom/html/pre.py
src/pydom/html/progress.py
src/pydom/html/q.py
src/pydom/html/rp.py
src/pydom/html/rt.py
src/pydom/html/ruby.py
src/pydom/html/s.py
src/pydom/html/samp.py
src/pydom/html/script.py
src/pydom/html/search.py
src/pydom/html/section.py
src/pydom/html/select.py
src/pydom/html/slot.py
src/pydom/html/small.py
src/pydom/html/source.py
src/pydom/html/span.py
src/pydom/html/strong.py
src/pydom/html/style.py
src/pydom/html/sub.py
src/pydom/html/summary.py
src/pydom/html/sup.py
src/pydom/html/svg.py
src/pydom/html/table.py
src/pydom/html/tbody.py
src/pydom/html/td.py
src/pydom/html/template.py
src/pydom/html/textarea.py
src/pydom/html/tfoot.py
src/pydom/html/th.py
src/pydom/html/thead.py
src/pydom/html/time.py
src/pydom/html/title.py
src/pydom/html/tr.py
src/pydom/html/track.py
src/pydom/html/u.py
src/pydom/html/ul.py
src/pydom/html/var.py
src/pydom/html/video.py
src/pydom/html/wbr.py
src/pydom/rendering/__init__.py
src/pydom/rendering/html.py
src/pydom/rendering/json.py
src/pydom/rendering/props.py
src/pydom/rendering/render_state.py
src/pydom/rendering/transformers/__init__.py
src/pydom/rendering/transformers/post_render_transformer.py
src/pydom/rendering/transformers/property_transformer.py
src/pydom/rendering/tree/__init__.py
src/pydom/rendering/tree/tree.py
src/pydom/rendering/tree/nodes/__init__.py
src/pydom/rendering/tree/nodes/context_node.py
src/pydom/rendering/tree/nodes/element_node.py
src/pydom/rendering/tree/nodes/text_node.py
src/pydom/rendering/tree/nodes/tree_node.py
src/pydom/styling/__init__.py
src/pydom/styling/color.py
src/pydom/styling/css_modules.py
src/pydom/styling/style_object.py
src/pydom/types/__init__.py
src/pydom/types/rendering.py
src/pydom/types/html/__init__.py
src/pydom/types/html/aria_props.py
src/pydom/types/html/html_anchor_element.py
src/pydom/types/html/html_area_element.py
src/pydom/types/html/html_audio_element.py
src/pydom/types/html/html_base_element.py
src/pydom/types/html/html_body_element.py
src/pydom/types/html/html_br_element.py
src/pydom/types/html/html_button_element.py
src/pydom/types/html/html_canvas_element.py
src/pydom/types/html/html_charset_meta_element.py
src/pydom/types/html/html_data_element.py
src/pydom/types/html/html_data_list_element.py
src/pydom/types/html/html_details_element.py
src/pydom/types/html/html_dialog_element.py
src/pydom/types/html/html_div_element.py
src/pydom/types/html/html_document_meta_element.py
src/pydom/types/html/html_element.py
src/pydom/types/html/html_element_props.py
src/pydom/types/html/html_embed_element.py
src/pydom/types/html/html_event_props.py
src/pydom/types/html/html_field_set_element.py
src/pydom/types/html/html_form_element.py
src/pydom/types/html/html_head_element.py
src/pydom/types/html/html_heading_element.py
src/pydom/types/html/html_hr_element.py
src/pydom/types/html/html_html_element.py
src/pydom/types/html/html_iframe_element.py
src/pydom/types/html/html_image_element.py
src/pydom/types/html/html_input_element.py
src/pydom/types/html/html_label_element.py
src/pydom/types/html/html_legend_element.py
src/pydom/types/html/html_link_element.py
src/pydom/types/html/html_list_item_element.py
src/pydom/types/html/html_map_element.py
src/pydom/types/html/html_meter_element.py
src/pydom/types/html/html_mod_element.py
src/pydom/types/html/html_object_element.py
src/pydom/types/html/html_opt_group_element.py
src/pydom/types/html/html_option_element.py
src/pydom/types/html/html_ordered_list_element.py
src/pydom/types/html/html_output_element.py
src/pydom/types/html/html_paragraph_element.py
src/pydom/types/html/html_param_element.py
src/pydom/types/html/html_picture_element.py
src/pydom/types/html/html_pragma_meta_element.py
src/pydom/types/html/html_pre_element.py
src/pydom/types/html/html_progress_element.py
src/pydom/types/html/html_quote_element.py
src/pydom/types/html/html_script_element.py
src/pydom/types/html/html_select_element.py
src/pydom/types/html/html_slot_element.py
src/pydom/types/html/html_source_element.py
src/pydom/types/html/html_span_element.py
src/pydom/types/html/html_style_element.py
src/pydom/types/html/html_table_caption_element.py
src/pydom/types/html/html_table_cell_element.py
src/pydom/types/html/html_table_col_element.py
src/pydom/types/html/html_table_data_cell_element.py
src/pydom/types/html/html_table_element.py
src/pydom/types/html/html_table_header_cell_element.py
src/pydom/types/html/html_table_row_element.py
src/pydom/types/html/html_table_section_element.py
src/pydom/types/html/html_template_element.py
src/pydom/types/html/html_text_area_element.py
src/pydom/types/html/html_time_element.py
src/pydom/types/html/html_title_element.py
src/pydom/types/html/html_track_element.py
src/pydom/types/html/html_unordered_list_element.py
src/pydom/types/html/html_user_meta_element.py
src/pydom/types/html/html_video_element.py
src/pydom/types/styling/css_properties.py
src/pydom/utils/base_model.py
src/pydom/utils/functions.py
src/pydom/utils/injector.py
src/python_dom.egg-info/PKG-INFO
src/python_dom.egg-info/SOURCES.txt
src/python_dom.egg-info/dependency_links.txt
src/python_dom.egg-info/requires.txt
src/python_dom.egg-info/top_level.txt
tests/test_nested.py
tests/test_rendering.py