diff --git a/.gitignore b/.gitignore index 3b8518e..3e0d36f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,45 @@ -``` -# Logs and temp files -*.log -*.tmp -*.swp - -# Environment +__pycache__/ +*.py[cod] +*$py.class +*.so +*.egg +*.egg-info/ +dist/ +build/ +.eggs/ .env -.env.local -*.env.* +.venv +venv/ +env/ +.Python +*.pyo + +# Hatch +.hatch/ + +# pytest +.pytest_cache/ +.coverage +htmlcov/ +*.coveragerc -# Editors +# mypy +.mypy_cache/ +*.pyi + +# ruff +.ruff_cache/ + +# IDE .vscode/ .idea/ +*.swp +*.swo + +# PyUI build output +dist/ +.pyui_cache/ -# Original rules preserved -test_output.log -``` \ No newline at end of file +# OS +.DS_Store +Thumbs.db diff --git a/examples/blog/__pycache__/app.cpython-312.pyc b/examples/blog/__pycache__/app.cpython-312.pyc deleted file mode 100644 index 3823e10..0000000 Binary files a/examples/blog/__pycache__/app.cpython-312.pyc and /dev/null differ diff --git a/examples/dashboard/__pycache__/app.cpython-312.pyc b/examples/dashboard/__pycache__/app.cpython-312.pyc deleted file mode 100644 index f3bb7a7..0000000 Binary files a/examples/dashboard/__pycache__/app.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/__pycache__/__init__.cpython-312.pyc b/src/pyui/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 5a471d3..0000000 Binary files a/src/pyui/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/__pycache__/app.cpython-312.pyc b/src/pyui/__pycache__/app.cpython-312.pyc deleted file mode 100644 index 47f7dbf..0000000 Binary files a/src/pyui/__pycache__/app.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/__pycache__/exceptions.cpython-312.pyc b/src/pyui/__pycache__/exceptions.cpython-312.pyc deleted file mode 100644 index 9d807d0..0000000 Binary files a/src/pyui/__pycache__/exceptions.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/__pycache__/linter.cpython-312.pyc b/src/pyui/__pycache__/linter.cpython-312.pyc deleted file mode 100644 index 0b00845..0000000 Binary files a/src/pyui/__pycache__/linter.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/__pycache__/page.cpython-312.pyc b/src/pyui/__pycache__/page.cpython-312.pyc deleted file mode 100644 index 5b5a5a6..0000000 Binary files a/src/pyui/__pycache__/page.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/__pycache__/scaffold.cpython-312.pyc b/src/pyui/__pycache__/scaffold.cpython-312.pyc deleted file mode 100644 index 8d4f47c..0000000 Binary files a/src/pyui/__pycache__/scaffold.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/cli/__pycache__/__init__.cpython-312.pyc b/src/pyui/cli/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 436eded..0000000 Binary files a/src/pyui/cli/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/cli/__pycache__/main.cpython-312.pyc b/src/pyui/cli/__pycache__/main.cpython-312.pyc deleted file mode 100644 index ca92cfa..0000000 Binary files a/src/pyui/cli/__pycache__/main.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/compiler/__pycache__/__init__.cpython-312.pyc b/src/pyui/compiler/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 809c157..0000000 Binary files a/src/pyui/compiler/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/compiler/__pycache__/discovery.cpython-312.pyc b/src/pyui/compiler/__pycache__/discovery.cpython-312.pyc deleted file mode 100644 index 5085180..0000000 Binary files a/src/pyui/compiler/__pycache__/discovery.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/compiler/__pycache__/ir.cpython-312.pyc b/src/pyui/compiler/__pycache__/ir.cpython-312.pyc deleted file mode 100644 index 0e19fb7..0000000 Binary files a/src/pyui/compiler/__pycache__/ir.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index af2581b..0000000 Binary files a/src/pyui/components/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/__pycache__/base.cpython-312.pyc b/src/pyui/components/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 2775d6c..0000000 Binary files a/src/pyui/components/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/data/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/data/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2b861a4..0000000 Binary files a/src/pyui/components/data/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/data/__pycache__/chart.cpython-312.pyc b/src/pyui/components/data/__pycache__/chart.cpython-312.pyc deleted file mode 100644 index 9a5934e..0000000 Binary files a/src/pyui/components/data/__pycache__/chart.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/data/__pycache__/stat.cpython-312.pyc b/src/pyui/components/data/__pycache__/stat.cpython-312.pyc deleted file mode 100644 index 9a32f67..0000000 Binary files a/src/pyui/components/data/__pycache__/stat.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/data/__pycache__/table.cpython-312.pyc b/src/pyui/components/data/__pycache__/table.cpython-312.pyc deleted file mode 100644 index 020b692..0000000 Binary files a/src/pyui/components/data/__pycache__/table.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/display/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 34192c8..0000000 Binary files a/src/pyui/components/display/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/avatar.cpython-312.pyc b/src/pyui/components/display/__pycache__/avatar.cpython-312.pyc deleted file mode 100644 index 3001adf..0000000 Binary files a/src/pyui/components/display/__pycache__/avatar.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/badge.cpython-312.pyc b/src/pyui/components/display/__pycache__/badge.cpython-312.pyc deleted file mode 100644 index 40b926d..0000000 Binary files a/src/pyui/components/display/__pycache__/badge.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/blur_heading.cpython-312.pyc b/src/pyui/components/display/__pycache__/blur_heading.cpython-312.pyc deleted file mode 100644 index a61067b..0000000 Binary files a/src/pyui/components/display/__pycache__/blur_heading.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/heading.cpython-312.pyc b/src/pyui/components/display/__pycache__/heading.cpython-312.pyc deleted file mode 100644 index 314f12f..0000000 Binary files a/src/pyui/components/display/__pycache__/heading.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/icon.cpython-312.pyc b/src/pyui/components/display/__pycache__/icon.cpython-312.pyc deleted file mode 100644 index 5e4e928..0000000 Binary files a/src/pyui/components/display/__pycache__/icon.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/image.cpython-312.pyc b/src/pyui/components/display/__pycache__/image.cpython-312.pyc deleted file mode 100644 index 03c567b..0000000 Binary files a/src/pyui/components/display/__pycache__/image.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/link.cpython-312.pyc b/src/pyui/components/display/__pycache__/link.cpython-312.pyc deleted file mode 100644 index 7c9485a..0000000 Binary files a/src/pyui/components/display/__pycache__/link.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/markdown.cpython-312.pyc b/src/pyui/components/display/__pycache__/markdown.cpython-312.pyc deleted file mode 100644 index 0c76273..0000000 Binary files a/src/pyui/components/display/__pycache__/markdown.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/rawhtml.cpython-312.pyc b/src/pyui/components/display/__pycache__/rawhtml.cpython-312.pyc deleted file mode 100644 index 9d931a4..0000000 Binary files a/src/pyui/components/display/__pycache__/rawhtml.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/tag.cpython-312.pyc b/src/pyui/components/display/__pycache__/tag.cpython-312.pyc deleted file mode 100644 index f099571..0000000 Binary files a/src/pyui/components/display/__pycache__/tag.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/display/__pycache__/text.cpython-312.pyc b/src/pyui/components/display/__pycache__/text.cpython-312.pyc deleted file mode 100644 index e86a75f..0000000 Binary files a/src/pyui/components/display/__pycache__/text.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 873d704..0000000 Binary files a/src/pyui/components/feedback/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/alert.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/alert.cpython-312.pyc deleted file mode 100644 index 0c034f4..0000000 Binary files a/src/pyui/components/feedback/__pycache__/alert.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/drawer.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/drawer.cpython-312.pyc deleted file mode 100644 index d76fffc..0000000 Binary files a/src/pyui/components/feedback/__pycache__/drawer.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/modal.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/modal.cpython-312.pyc deleted file mode 100644 index ccf8093..0000000 Binary files a/src/pyui/components/feedback/__pycache__/modal.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/progress.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/progress.cpython-312.pyc deleted file mode 100644 index a49a3fd..0000000 Binary files a/src/pyui/components/feedback/__pycache__/progress.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/skeleton.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/skeleton.cpython-312.pyc deleted file mode 100644 index e9cc536..0000000 Binary files a/src/pyui/components/feedback/__pycache__/skeleton.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/spinner.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/spinner.cpython-312.pyc deleted file mode 100644 index e7c03d7..0000000 Binary files a/src/pyui/components/feedback/__pycache__/spinner.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/toast.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/toast.cpython-312.pyc deleted file mode 100644 index a2e09bb..0000000 Binary files a/src/pyui/components/feedback/__pycache__/toast.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/feedback/__pycache__/tooltip.cpython-312.pyc b/src/pyui/components/feedback/__pycache__/tooltip.cpython-312.pyc deleted file mode 100644 index 0af40bd..0000000 Binary files a/src/pyui/components/feedback/__pycache__/tooltip.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/input/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9af7b45..0000000 Binary files a/src/pyui/components/input/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/button.cpython-312.pyc b/src/pyui/components/input/__pycache__/button.cpython-312.pyc deleted file mode 100644 index 98e742d..0000000 Binary files a/src/pyui/components/input/__pycache__/button.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/checkbox.cpython-312.pyc b/src/pyui/components/input/__pycache__/checkbox.cpython-312.pyc deleted file mode 100644 index e7b7368..0000000 Binary files a/src/pyui/components/input/__pycache__/checkbox.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/datepicker.cpython-312.pyc b/src/pyui/components/input/__pycache__/datepicker.cpython-312.pyc deleted file mode 100644 index 60ec9c1..0000000 Binary files a/src/pyui/components/input/__pycache__/datepicker.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/filepicker.cpython-312.pyc b/src/pyui/components/input/__pycache__/filepicker.cpython-312.pyc deleted file mode 100644 index 42535cf..0000000 Binary files a/src/pyui/components/input/__pycache__/filepicker.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/form.cpython-312.pyc b/src/pyui/components/input/__pycache__/form.cpython-312.pyc deleted file mode 100644 index bb86e46..0000000 Binary files a/src/pyui/components/input/__pycache__/form.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/input.cpython-312.pyc b/src/pyui/components/input/__pycache__/input.cpython-312.pyc deleted file mode 100644 index 108432f..0000000 Binary files a/src/pyui/components/input/__pycache__/input.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/radio.cpython-312.pyc b/src/pyui/components/input/__pycache__/radio.cpython-312.pyc deleted file mode 100644 index 8eb0ab0..0000000 Binary files a/src/pyui/components/input/__pycache__/radio.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/select.cpython-312.pyc b/src/pyui/components/input/__pycache__/select.cpython-312.pyc deleted file mode 100644 index 444697a..0000000 Binary files a/src/pyui/components/input/__pycache__/select.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/slider.cpython-312.pyc b/src/pyui/components/input/__pycache__/slider.cpython-312.pyc deleted file mode 100644 index 6654fbc..0000000 Binary files a/src/pyui/components/input/__pycache__/slider.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/textarea.cpython-312.pyc b/src/pyui/components/input/__pycache__/textarea.cpython-312.pyc deleted file mode 100644 index 140a063..0000000 Binary files a/src/pyui/components/input/__pycache__/textarea.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/input/__pycache__/toggle.cpython-312.pyc b/src/pyui/components/input/__pycache__/toggle.cpython-312.pyc deleted file mode 100644 index 86ecdb2..0000000 Binary files a/src/pyui/components/input/__pycache__/toggle.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/layout/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f8bfcba..0000000 Binary files a/src/pyui/components/layout/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/container.cpython-312.pyc b/src/pyui/components/layout/__pycache__/container.cpython-312.pyc deleted file mode 100644 index 8e03b2e..0000000 Binary files a/src/pyui/components/layout/__pycache__/container.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/divider.cpython-312.pyc b/src/pyui/components/layout/__pycache__/divider.cpython-312.pyc deleted file mode 100644 index 555e99d..0000000 Binary files a/src/pyui/components/layout/__pycache__/divider.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/flex.cpython-312.pyc b/src/pyui/components/layout/__pycache__/flex.cpython-312.pyc deleted file mode 100644 index 06c5027..0000000 Binary files a/src/pyui/components/layout/__pycache__/flex.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/grid.cpython-312.pyc b/src/pyui/components/layout/__pycache__/grid.cpython-312.pyc deleted file mode 100644 index ee2d381..0000000 Binary files a/src/pyui/components/layout/__pycache__/grid.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/list.cpython-312.pyc b/src/pyui/components/layout/__pycache__/list.cpython-312.pyc deleted file mode 100644 index f263a7c..0000000 Binary files a/src/pyui/components/layout/__pycache__/list.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/section.cpython-312.pyc b/src/pyui/components/layout/__pycache__/section.cpython-312.pyc deleted file mode 100644 index c01fb84..0000000 Binary files a/src/pyui/components/layout/__pycache__/section.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/sidebar.cpython-312.pyc b/src/pyui/components/layout/__pycache__/sidebar.cpython-312.pyc deleted file mode 100644 index fd5e92e..0000000 Binary files a/src/pyui/components/layout/__pycache__/sidebar.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/spacer.cpython-312.pyc b/src/pyui/components/layout/__pycache__/spacer.cpython-312.pyc deleted file mode 100644 index cc01f91..0000000 Binary files a/src/pyui/components/layout/__pycache__/spacer.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/split.cpython-312.pyc b/src/pyui/components/layout/__pycache__/split.cpython-312.pyc deleted file mode 100644 index 6e5d2ae..0000000 Binary files a/src/pyui/components/layout/__pycache__/split.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/layout/__pycache__/stack.cpython-312.pyc b/src/pyui/components/layout/__pycache__/stack.cpython-312.pyc deleted file mode 100644 index 1344bd8..0000000 Binary files a/src/pyui/components/layout/__pycache__/stack.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/media/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/media/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9113bc9..0000000 Binary files a/src/pyui/components/media/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/media/__pycache__/video.cpython-312.pyc b/src/pyui/components/media/__pycache__/video.cpython-312.pyc deleted file mode 100644 index 1dddbf1..0000000 Binary files a/src/pyui/components/media/__pycache__/video.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/media/__pycache__/video_bg.cpython-312.pyc b/src/pyui/components/media/__pycache__/video_bg.cpython-312.pyc deleted file mode 100644 index 01a4cb2..0000000 Binary files a/src/pyui/components/media/__pycache__/video_bg.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/navigation/__pycache__/__init__.cpython-312.pyc b/src/pyui/components/navigation/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9867e11..0000000 Binary files a/src/pyui/components/navigation/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/navigation/__pycache__/breadcrumb.cpython-312.pyc b/src/pyui/components/navigation/__pycache__/breadcrumb.cpython-312.pyc deleted file mode 100644 index 012c0d4..0000000 Binary files a/src/pyui/components/navigation/__pycache__/breadcrumb.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/navigation/__pycache__/floating_nav.cpython-312.pyc b/src/pyui/components/navigation/__pycache__/floating_nav.cpython-312.pyc deleted file mode 100644 index 0cb8fac..0000000 Binary files a/src/pyui/components/navigation/__pycache__/floating_nav.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/navigation/__pycache__/menu.cpython-312.pyc b/src/pyui/components/navigation/__pycache__/menu.cpython-312.pyc deleted file mode 100644 index 5c26022..0000000 Binary files a/src/pyui/components/navigation/__pycache__/menu.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/navigation/__pycache__/nav.cpython-312.pyc b/src/pyui/components/navigation/__pycache__/nav.cpython-312.pyc deleted file mode 100644 index ab85e12..0000000 Binary files a/src/pyui/components/navigation/__pycache__/nav.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/navigation/__pycache__/pagination.cpython-312.pyc b/src/pyui/components/navigation/__pycache__/pagination.cpython-312.pyc deleted file mode 100644 index f3f8034..0000000 Binary files a/src/pyui/components/navigation/__pycache__/pagination.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/components/navigation/__pycache__/tabs.cpython-312.pyc b/src/pyui/components/navigation/__pycache__/tabs.cpython-312.pyc deleted file mode 100644 index 2505411..0000000 Binary files a/src/pyui/components/navigation/__pycache__/tabs.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/hotreload/__pycache__/__init__.cpython-312.pyc b/src/pyui/hotreload/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9837e0b..0000000 Binary files a/src/pyui/hotreload/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/hotreload/__pycache__/diff.cpython-312.pyc b/src/pyui/hotreload/__pycache__/diff.cpython-312.pyc deleted file mode 100644 index 9888695..0000000 Binary files a/src/pyui/hotreload/__pycache__/diff.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/hotreload/__pycache__/watcher.cpython-312.pyc b/src/pyui/hotreload/__pycache__/watcher.cpython-312.pyc deleted file mode 100644 index d03e129..0000000 Binary files a/src/pyui/hotreload/__pycache__/watcher.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/plugins/__pycache__/__init__.cpython-312.pyc b/src/pyui/plugins/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index cecf4c1..0000000 Binary files a/src/pyui/plugins/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/plugins/__pycache__/base.cpython-312.pyc b/src/pyui/plugins/__pycache__/base.cpython-312.pyc deleted file mode 100644 index 4fd6285..0000000 Binary files a/src/pyui/plugins/__pycache__/base.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/plugins/__pycache__/loader.cpython-312.pyc b/src/pyui/plugins/__pycache__/loader.cpython-312.pyc deleted file mode 100644 index 2c01f71..0000000 Binary files a/src/pyui/plugins/__pycache__/loader.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/plugins/__pycache__/registry.cpython-312.pyc b/src/pyui/plugins/__pycache__/registry.cpython-312.pyc deleted file mode 100644 index 979c272..0000000 Binary files a/src/pyui/plugins/__pycache__/registry.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/__pycache__/__init__.cpython-312.pyc b/src/pyui/renderers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 2fc4139..0000000 Binary files a/src/pyui/renderers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/cli/__pycache__/__init__.cpython-312.pyc b/src/pyui/renderers/cli/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index eaf91de..0000000 Binary files a/src/pyui/renderers/cli/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/cli/__pycache__/generator.cpython-312.pyc b/src/pyui/renderers/cli/__pycache__/generator.cpython-312.pyc deleted file mode 100644 index e153a8a..0000000 Binary files a/src/pyui/renderers/cli/__pycache__/generator.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/desktop/__pycache__/__init__.cpython-312.pyc b/src/pyui/renderers/desktop/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index fabcc81..0000000 Binary files a/src/pyui/renderers/desktop/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/desktop/__pycache__/tkinter_renderer.cpython-312.pyc b/src/pyui/renderers/desktop/__pycache__/tkinter_renderer.cpython-312.pyc deleted file mode 100644 index 6bf4347..0000000 Binary files a/src/pyui/renderers/desktop/__pycache__/tkinter_renderer.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/web/__pycache__/__init__.cpython-312.pyc b/src/pyui/renderers/web/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9c36a6d..0000000 Binary files a/src/pyui/renderers/web/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/web/__pycache__/generator.cpython-312.pyc b/src/pyui/renderers/web/__pycache__/generator.cpython-312.pyc deleted file mode 100644 index e713bf5..0000000 Binary files a/src/pyui/renderers/web/__pycache__/generator.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/renderers/web/__pycache__/tailwind.cpython-312.pyc b/src/pyui/renderers/web/__pycache__/tailwind.cpython-312.pyc deleted file mode 100644 index a6ea030..0000000 Binary files a/src/pyui/renderers/web/__pycache__/tailwind.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/state/__pycache__/__init__.cpython-312.pyc b/src/pyui/state/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 4107ee0..0000000 Binary files a/src/pyui/state/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/state/__pycache__/computed.cpython-312.pyc b/src/pyui/state/__pycache__/computed.cpython-312.pyc deleted file mode 100644 index efa30dc..0000000 Binary files a/src/pyui/state/__pycache__/computed.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/state/__pycache__/reactive.cpython-312.pyc b/src/pyui/state/__pycache__/reactive.cpython-312.pyc deleted file mode 100644 index cb8432e..0000000 Binary files a/src/pyui/state/__pycache__/reactive.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/state/__pycache__/store.cpython-312.pyc b/src/pyui/state/__pycache__/store.cpython-312.pyc deleted file mode 100644 index 47300fe..0000000 Binary files a/src/pyui/state/__pycache__/store.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/theme/__pycache__/__init__.cpython-312.pyc b/src/pyui/theme/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 506eedd..0000000 Binary files a/src/pyui/theme/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/theme/__pycache__/engine.cpython-312.pyc b/src/pyui/theme/__pycache__/engine.cpython-312.pyc deleted file mode 100644 index 598bb97..0000000 Binary files a/src/pyui/theme/__pycache__/engine.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/theme/__pycache__/tokens.cpython-312.pyc b/src/pyui/theme/__pycache__/tokens.cpython-312.pyc deleted file mode 100644 index 0c738a0..0000000 Binary files a/src/pyui/theme/__pycache__/tokens.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/utils/__pycache__/__init__.cpython-312.pyc b/src/pyui/utils/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 534969f..0000000 Binary files a/src/pyui/utils/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/src/pyui/utils/__pycache__/logging.cpython-312.pyc b/src/pyui/utils/__pycache__/logging.cpython-312.pyc deleted file mode 100644 index dfaa64b..0000000 Binary files a/src/pyui/utils/__pycache__/logging.cpython-312.pyc and /dev/null differ diff --git a/tests/__pycache__/conftest.cpython-312-pytest-9.0.3.pyc b/tests/__pycache__/conftest.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 13d6394..0000000 Binary files a/tests/__pycache__/conftest.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/__pycache__/test_linter.cpython-312-pytest-9.0.3.pyc b/tests/__pycache__/test_linter.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 64355b6..0000000 Binary files a/tests/__pycache__/test_linter.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/__pycache__/test_scaffold.cpython-312-pytest-9.0.3.pyc b/tests/__pycache__/test_scaffold.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index e41ff3f..0000000 Binary files a/tests/__pycache__/test_scaffold.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/__pycache__/test_setup.cpython-312-pytest-9.0.3.pyc b/tests/__pycache__/test_setup.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 9304522..0000000 Binary files a/tests/__pycache__/test_setup.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/integration/__pycache__/__init__.cpython-312.pyc b/tests/integration/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 98299f6..0000000 Binary files a/tests/integration/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/tests/integration/__pycache__/test_full_pipeline.cpython-312-pytest-9.0.3.pyc b/tests/integration/__pycache__/test_full_pipeline.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 38fb115..0000000 Binary files a/tests/integration/__pycache__/test_full_pipeline.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_compiler/__pycache__/__init__.cpython-312.pyc b/tests/test_compiler/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index b6db533..0000000 Binary files a/tests/test_compiler/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/tests/test_compiler/__pycache__/test_discovery.cpython-312-pytest-9.0.3.pyc b/tests/test_compiler/__pycache__/test_discovery.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 23e58a6..0000000 Binary files a/tests/test_compiler/__pycache__/test_discovery.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_compiler/__pycache__/test_ir.cpython-312-pytest-9.0.3.pyc b/tests/test_compiler/__pycache__/test_ir.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 1fce858..0000000 Binary files a/tests/test_compiler/__pycache__/test_ir.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_hotreload/__pycache__/__init__.cpython-312.pyc b/tests/test_hotreload/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f832648..0000000 Binary files a/tests/test_hotreload/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/tests/test_hotreload/__pycache__/test_diff.cpython-312-pytest-9.0.3.pyc b/tests/test_hotreload/__pycache__/test_diff.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 464b56c..0000000 Binary files a/tests/test_hotreload/__pycache__/test_diff.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_hotreload/__pycache__/test_watcher.cpython-312-pytest-9.0.3.pyc b/tests/test_hotreload/__pycache__/test_watcher.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 8c1d093..0000000 Binary files a/tests/test_hotreload/__pycache__/test_watcher.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_plugins/__pycache__/__init__.cpython-312.pyc b/tests/test_plugins/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index f34214e..0000000 Binary files a/tests/test_plugins/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/tests/test_plugins/__pycache__/test_registry.cpython-312-pytest-9.0.3.pyc b/tests/test_plugins/__pycache__/test_registry.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 3192b97..0000000 Binary files a/tests/test_plugins/__pycache__/test_registry.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_renderers/__pycache__/__init__.cpython-312.pyc b/tests/test_renderers/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 89984e7..0000000 Binary files a/tests/test_renderers/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/tests/test_renderers/__pycache__/test_cli.cpython-312-pytest-9.0.3.pyc b/tests/test_renderers/__pycache__/test_cli.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 377f6b1..0000000 Binary files a/tests/test_renderers/__pycache__/test_cli.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_renderers/__pycache__/test_components.cpython-312-pytest-9.0.3.pyc b/tests/test_renderers/__pycache__/test_components.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index c035ade..0000000 Binary files a/tests/test_renderers/__pycache__/test_components.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_renderers/__pycache__/test_desktop.cpython-312-pytest-9.0.3.pyc b/tests/test_renderers/__pycache__/test_desktop.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index aa20cb2..0000000 Binary files a/tests/test_renderers/__pycache__/test_desktop.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_renderers/__pycache__/test_v12_components.cpython-312-pytest-9.0.3.pyc b/tests/test_renderers/__pycache__/test_v12_components.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 3683af8..0000000 Binary files a/tests/test_renderers/__pycache__/test_v12_components.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_renderers/__pycache__/test_web.cpython-312-pytest-9.0.3.pyc b/tests/test_renderers/__pycache__/test_web.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 23971b7..0000000 Binary files a/tests/test_renderers/__pycache__/test_web.cpython-312-pytest-9.0.3.pyc and /dev/null differ diff --git a/tests/test_theme/__pycache__/__init__.cpython-312.pyc b/tests/test_theme/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 0c8fdd4..0000000 Binary files a/tests/test_theme/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/tests/test_theme/__pycache__/test_engine.cpython-312-pytest-9.0.3.pyc b/tests/test_theme/__pycache__/test_engine.cpython-312-pytest-9.0.3.pyc deleted file mode 100644 index 764b936..0000000 Binary files a/tests/test_theme/__pycache__/test_engine.cpython-312-pytest-9.0.3.pyc and /dev/null differ