elysium-ui 1.1.2__tar.gz

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 (258) hide show
  1. elysium_ui-1.1.2/LICENSE +202 -0
  2. elysium_ui-1.1.2/NOTICE +12 -0
  3. elysium_ui-1.1.2/PKG-INFO +194 -0
  4. elysium_ui-1.1.2/README.md +154 -0
  5. elysium_ui-1.1.2/elysium-native/Cargo.lock +5988 -0
  6. elysium_ui-1.1.2/elysium-native/Cargo.toml +53 -0
  7. elysium_ui-1.1.2/elysium-native/crates/ely-core/Cargo.toml +13 -0
  8. elysium_ui-1.1.2/elysium-native/crates/ely-core/src/anim.rs +232 -0
  9. elysium_ui-1.1.2/elysium-native/crates/ely-core/src/color.rs +100 -0
  10. elysium_ui-1.1.2/elysium-native/crates/ely-core/src/display_list.rs +346 -0
  11. elysium_ui-1.1.2/elysium-native/crates/ely-core/src/geometry.rs +584 -0
  12. elysium_ui-1.1.2/elysium-native/crates/ely-core/src/lib.rs +16 -0
  13. elysium_ui-1.1.2/elysium-native/crates/ely-core/src/time.rs +43 -0
  14. elysium_ui-1.1.2/elysium-native/crates/ely-ipc/Cargo.toml +19 -0
  15. elysium_ui-1.1.2/elysium-native/crates/ely-ipc/src/auth.rs +12 -0
  16. elysium_ui-1.1.2/elysium-native/crates/ely-ipc/src/framing.rs +4 -0
  17. elysium_ui-1.1.2/elysium-native/crates/ely-ipc/src/lib.rs +13 -0
  18. elysium_ui-1.1.2/elysium-native/crates/ely-ipc/src/messages.rs +36 -0
  19. elysium_ui-1.1.2/elysium-native/crates/ely-ipc/src/server.rs +243 -0
  20. elysium_ui-1.1.2/elysium-native/crates/ely-ipc/src/transport.rs +2 -0
  21. elysium_ui-1.1.2/elysium-native/crates/ely-platform/Cargo.toml +36 -0
  22. elysium_ui-1.1.2/elysium-native/crates/ely-platform/examples/winit_smoke.rs +61 -0
  23. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/a11y.rs +238 -0
  24. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/a11y_bridge.rs +232 -0
  25. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/event_loop.rs +816 -0
  26. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/input.rs +13 -0
  27. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/lib.rs +20 -0
  28. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/platform/linux.rs +1 -0
  29. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/platform/macos.rs +170 -0
  30. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/platform/windows.rs +2 -0
  31. elysium_ui-1.1.2/elysium-native/crates/ely-platform/src/window.rs +750 -0
  32. elysium_ui-1.1.2/elysium-native/crates/ely-py/Cargo.toml +45 -0
  33. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/app.rs +99 -0
  34. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/compute.rs +111 -0
  35. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/dialogs.rs +116 -0
  36. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/display_list.rs +373 -0
  37. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/errors.rs +21 -0
  38. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/ipc.rs +227 -0
  39. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/lib.rs +69 -0
  40. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/menu.rs +195 -0
  41. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/native_os.rs +262 -0
  42. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/path_ops.rs +24 -0
  43. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/render.rs +84 -0
  44. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/runtime.rs +14 -0
  45. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/scene.rs +88 -0
  46. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/skia.rs +262 -0
  47. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/skin.rs +95 -0
  48. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/text.rs +58 -0
  49. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/wgsl.rs +15 -0
  50. elysium_ui-1.1.2/elysium-native/crates/ely-py/src/window.rs +664 -0
  51. elysium_ui-1.1.2/elysium-native/crates/ely-render/Cargo.toml +21 -0
  52. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/compositor.rs +24 -0
  53. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/compute_pbr.rs +351 -0
  54. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/damage.rs +355 -0
  55. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/effects/frosted_glass.rs +32 -0
  56. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/effects/grain.rs +1 -0
  57. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/effects/mod.rs +3 -0
  58. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/effects/shadow.rs +1 -0
  59. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/interop/d3d12.rs +369 -0
  60. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/interop/metal.rs +220 -0
  61. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/interop/vulkan.rs +647 -0
  62. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/lib.rs +34 -0
  63. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/render_thread.rs +294 -0
  64. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/shaders/frosted_glass.wgsl +75 -0
  65. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/shaders/pbr_compute.wgsl +219 -0
  66. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/shaders/skia_blit.wgsl +25 -0
  67. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/skia_bridge.rs +24 -0
  68. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/skia_layer.rs +1113 -0
  69. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/surface.rs +319 -0
  70. elysium_ui-1.1.2/elysium-native/crates/ely-render/src/texture_cache.rs +162 -0
  71. elysium_ui-1.1.2/elysium-native/crates/ely-skin/Cargo.toml +18 -0
  72. elysium_ui-1.1.2/elysium-native/crates/ely-skin/src/compile.rs +523 -0
  73. elysium_ui-1.1.2/elysium-native/crates/ely-skin/src/lib.rs +12 -0
  74. elysium_ui-1.1.2/elysium-native/crates/ely-skin/src/parser.rs +577 -0
  75. elysium_ui-1.1.2/elysium-native/crates/ely-skin/src/registry.rs +62 -0
  76. elysium_ui-1.1.2/elysium-native/crates/ely-skin/src/shader_sandbox.rs +33 -0
  77. elysium_ui-1.1.2/elysium-native/crates/ely-skin/src/signature.rs +26 -0
  78. elysium_ui-1.1.2/elysium-native/crates/ely-skin/src/validator.rs +15 -0
  79. elysium_ui-1.1.2/pyproject.toml +92 -0
  80. elysium_ui-1.1.2/python/elysium/__init__.py +89 -0
  81. elysium_ui-1.1.2/python/elysium/__pyinstaller/__init__.py +17 -0
  82. elysium_ui-1.1.2/python/elysium/__pyinstaller/hook-elysium.py +38 -0
  83. elysium_ui-1.1.2/python/elysium/_deprecation.py +100 -0
  84. elysium_ui-1.1.2/python/elysium/_native/__init__.py +2 -0
  85. elysium_ui-1.1.2/python/elysium/_native/__init__.pyi +109 -0
  86. elysium_ui-1.1.2/python/elysium/_window_ext.py +429 -0
  87. elysium_ui-1.1.2/python/elysium/accessibility.py +356 -0
  88. elysium_ui-1.1.2/python/elysium/aether/__init__.py +31 -0
  89. elysium_ui-1.1.2/python/elysium/aether/_headless.py +304 -0
  90. elysium_ui-1.1.2/python/elysium/aether/bridge.py +511 -0
  91. elysium_ui-1.1.2/python/elysium/aether/capabilities.py +53 -0
  92. elysium_ui-1.1.2/python/elysium/aether/credentials.py +133 -0
  93. elysium_ui-1.1.2/python/elysium/aether/daemon.py +206 -0
  94. elysium_ui-1.1.2/python/elysium/aether/feedback.py +67 -0
  95. elysium_ui-1.1.2/python/elysium/aether/providers/__init__.py +84 -0
  96. elysium_ui-1.1.2/python/elysium/aether/providers/anthropic.py +97 -0
  97. elysium_ui-1.1.2/python/elysium/aether/providers/base.py +16 -0
  98. elysium_ui-1.1.2/python/elysium/aether/providers/deepseek.py +126 -0
  99. elysium_ui-1.1.2/python/elysium/aether/providers/gemini.py +103 -0
  100. elysium_ui-1.1.2/python/elysium/aether/providers/ollama.py +76 -0
  101. elysium_ui-1.1.2/python/elysium/aether/providers/stub.py +75 -0
  102. elysium_ui-1.1.2/python/elysium/aether/session.py +214 -0
  103. elysium_ui-1.1.2/python/elysium/aether/system_prompt.py +105 -0
  104. elysium_ui-1.1.2/python/elysium/aether/tester.py +155 -0
  105. elysium_ui-1.1.2/python/elysium/aether/tools/__init__.py +104 -0
  106. elysium_ui-1.1.2/python/elysium/aether/tools/animation.py +231 -0
  107. elysium_ui-1.1.2/python/elysium/aether/tools/brush.py +337 -0
  108. elysium_ui-1.1.2/python/elysium/aether/tools/code.py +81 -0
  109. elysium_ui-1.1.2/python/elysium/aether/tools/codelink.py +67 -0
  110. elysium_ui-1.1.2/python/elysium/aether/tools/hook.py +81 -0
  111. elysium_ui-1.1.2/python/elysium/aether/tools/material.py +200 -0
  112. elysium_ui-1.1.2/python/elysium/aether/tools/mesh.py +2990 -0
  113. elysium_ui-1.1.2/python/elysium/aether/tools/meta.py +522 -0
  114. elysium_ui-1.1.2/python/elysium/aether/tools/placement.py +241 -0
  115. elysium_ui-1.1.2/python/elysium/aether/tools/run.py +157 -0
  116. elysium_ui-1.1.2/python/elysium/aether/tools/shape.py +114 -0
  117. elysium_ui-1.1.2/python/elysium/aether/tools/snapshot.py +65 -0
  118. elysium_ui-1.1.2/python/elysium/aether/tools/tester.py +61 -0
  119. elysium_ui-1.1.2/python/elysium/aether/tools/texture.py +1297 -0
  120. elysium_ui-1.1.2/python/elysium/aether/tools/window.py +147 -0
  121. elysium_ui-1.1.2/python/elysium/aether/types.py +81 -0
  122. elysium_ui-1.1.2/python/elysium/ai/__init__.py +379 -0
  123. elysium_ui-1.1.2/python/elysium/ai/enhance.py +108 -0
  124. elysium_ui-1.1.2/python/elysium/anim/__init__.py +466 -0
  125. elysium_ui-1.1.2/python/elysium/assets/__init__.py +1 -0
  126. elysium_ui-1.1.2/python/elysium/brush/__init__.py +67 -0
  127. elysium_ui-1.1.2/python/elysium/brush/abr.py +424 -0
  128. elysium_ui-1.1.2/python/elysium/brush/builtin/airbrush_hard_edge.json +22 -0
  129. elysium_ui-1.1.2/python/elysium/brush/builtin/airbrush_soft.json +22 -0
  130. elysium_ui-1.1.2/python/elysium/brush/builtin/airbrush_speckle.json +22 -0
  131. elysium_ui-1.1.2/python/elysium/brush/builtin/bristle_charcoal.json +24 -0
  132. elysium_ui-1.1.2/python/elysium/brush/builtin/bristle_dry.json +24 -0
  133. elysium_ui-1.1.2/python/elysium/brush/builtin/bristle_ink.json +24 -0
  134. elysium_ui-1.1.2/python/elysium/brush/builtin/bristle_wet.json +24 -0
  135. elysium_ui-1.1.2/python/elysium/brush/builtin/ink_brush_pen.json +23 -0
  136. elysium_ui-1.1.2/python/elysium/brush/builtin/ink_calligraphy.json +22 -0
  137. elysium_ui-1.1.2/python/elysium/brush/builtin/ink_fineliner.json +23 -0
  138. elysium_ui-1.1.2/python/elysium/brush/builtin/ink_marker.json +22 -0
  139. elysium_ui-1.1.2/python/elysium/brush/builtin/ink_tech_pen.json +23 -0
  140. elysium_ui-1.1.2/python/elysium/brush/builtin/pattern_confetti.json +25 -0
  141. elysium_ui-1.1.2/python/elysium/brush/builtin/pattern_hatching.json +24 -0
  142. elysium_ui-1.1.2/python/elysium/brush/builtin/pattern_splatter.json +25 -0
  143. elysium_ui-1.1.2/python/elysium/brush/builtin/pattern_stipple.json +24 -0
  144. elysium_ui-1.1.2/python/elysium/brush/builtin/round_chunky.json +23 -0
  145. elysium_ui-1.1.2/python/elysium/brush/builtin/round_feather.json +23 -0
  146. elysium_ui-1.1.2/python/elysium/brush/builtin/round_hard.json +22 -0
  147. elysium_ui-1.1.2/python/elysium/brush/builtin/round_soft.json +22 -0
  148. elysium_ui-1.1.2/python/elysium/brush/builtin/special_highlighter.json +23 -0
  149. elysium_ui-1.1.2/python/elysium/brush/builtin/texture_chalk.json +26 -0
  150. elysium_ui-1.1.2/python/elysium/brush/builtin/texture_crayon.json +26 -0
  151. elysium_ui-1.1.2/python/elysium/brush/builtin/texture_hard_pencil.json +26 -0
  152. elysium_ui-1.1.2/python/elysium/brush/builtin/texture_pencil.json +26 -0
  153. elysium_ui-1.1.2/python/elysium/brush/builtin/texture_soft_pencil.json +26 -0
  154. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_airbrush_hard_edge.png +0 -0
  155. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_airbrush_soft.png +0 -0
  156. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_airbrush_speckle.png +0 -0
  157. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_bristle_charcoal.png +0 -0
  158. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_bristle_dry.png +0 -0
  159. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_bristle_ink.png +0 -0
  160. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_bristle_wet.png +0 -0
  161. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_ink_brush_pen.png +0 -0
  162. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_ink_calligraphy.png +0 -0
  163. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_ink_fineliner.png +0 -0
  164. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_ink_marker.png +0 -0
  165. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_ink_tech_pen.png +0 -0
  166. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_pattern_confetti.png +0 -0
  167. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_pattern_hatching.png +0 -0
  168. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_pattern_splatter.png +0 -0
  169. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_pattern_stipple.png +0 -0
  170. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_round_chunky.png +0 -0
  171. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_round_feather.png +0 -0
  172. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_round_hard.png +0 -0
  173. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_round_soft.png +0 -0
  174. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_special_highlighter.png +0 -0
  175. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_texture_chalk.png +0 -0
  176. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_texture_crayon.png +0 -0
  177. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_texture_hard_pencil.png +0 -0
  178. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_texture_pencil.png +0 -0
  179. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_texture_soft_pencil.png +0 -0
  180. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_wet_drybrush.png +0 -0
  181. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_wet_gouache.png +0 -0
  182. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_wet_oil.png +0 -0
  183. elysium_ui-1.1.2/python/elysium/brush/builtin/thumbs/elysium_wet_watercolor.png +0 -0
  184. elysium_ui-1.1.2/python/elysium/brush/builtin/wet_drybrush.json +24 -0
  185. elysium_ui-1.1.2/python/elysium/brush/builtin/wet_gouache.json +24 -0
  186. elysium_ui-1.1.2/python/elysium/brush/builtin/wet_oil.json +24 -0
  187. elysium_ui-1.1.2/python/elysium/brush/builtin/wet_watercolor.json +25 -0
  188. elysium_ui-1.1.2/python/elysium/brush/elybrush.py +93 -0
  189. elysium_ui-1.1.2/python/elysium/brush/engine.py +213 -0
  190. elysium_ui-1.1.2/python/elysium/brush/engines/__init__.py +4 -0
  191. elysium_ui-1.1.2/python/elysium/brush/engines/airbrush.py +27 -0
  192. elysium_ui-1.1.2/python/elysium/brush/engines/bristle.py +30 -0
  193. elysium_ui-1.1.2/python/elysium/brush/engines/pattern.py +31 -0
  194. elysium_ui-1.1.2/python/elysium/brush/engines/round_stamp.py +34 -0
  195. elysium_ui-1.1.2/python/elysium/brush/engines/texture.py +32 -0
  196. elysium_ui-1.1.2/python/elysium/brush/engines/wet_mix.py +35 -0
  197. elysium_ui-1.1.2/python/elysium/brush/importers.py +75 -0
  198. elysium_ui-1.1.2/python/elysium/brush/library.py +250 -0
  199. elysium_ui-1.1.2/python/elysium/brush/preset.py +144 -0
  200. elysium_ui-1.1.2/python/elysium/brush/sut.py +342 -0
  201. elysium_ui-1.1.2/python/elysium/brush/thumbs.py +164 -0
  202. elysium_ui-1.1.2/python/elysium/charts/__init__.py +467 -0
  203. elysium_ui-1.1.2/python/elysium/cli.py +519 -0
  204. elysium_ui-1.1.2/python/elysium/codelink.py +299 -0
  205. elysium_ui-1.1.2/python/elysium/commands/__init__.py +252 -0
  206. elysium_ui-1.1.2/python/elysium/components/__init__.py +2383 -0
  207. elysium_ui-1.1.2/python/elysium/components/completer.py +181 -0
  208. elysium_ui-1.1.2/python/elysium/components/dashboard.py +202 -0
  209. elysium_ui-1.1.2/python/elysium/components/dataentry.py +580 -0
  210. elysium_ui-1.1.2/python/elysium/components/daterange.py +147 -0
  211. elysium_ui-1.1.2/python/elysium/components/scroll.py +273 -0
  212. elysium_ui-1.1.2/python/elysium/components/virtual.py +236 -0
  213. elysium_ui-1.1.2/python/elysium/concurrency.py +266 -0
  214. elysium_ui-1.1.2/python/elysium/core/__init__.py +1 -0
  215. elysium_ui-1.1.2/python/elysium/debug/__init__.py +125 -0
  216. elysium_ui-1.1.2/python/elysium/dialogs/__init__.py +654 -0
  217. elysium_ui-1.1.2/python/elysium/dnd.py +191 -0
  218. elysium_ui-1.1.2/python/elysium/dock.py +232 -0
  219. elysium_ui-1.1.2/python/elysium/events/__init__.py +18 -0
  220. elysium_ui-1.1.2/python/elysium/focus.py +98 -0
  221. elysium_ui-1.1.2/python/elysium/graphics/__init__.py +621 -0
  222. elysium_ui-1.1.2/python/elysium/i18n.py +199 -0
  223. elysium_ui-1.1.2/python/elysium/input/__init__.py +375 -0
  224. elysium_ui-1.1.2/python/elysium/layout/__init__.py +233 -0
  225. elysium_ui-1.1.2/python/elysium/locale.py +135 -0
  226. elysium_ui-1.1.2/python/elysium/marketplace.py +314 -0
  227. elysium_ui-1.1.2/python/elysium/modelview/__init__.py +637 -0
  228. elysium_ui-1.1.2/python/elysium/modelview/grid.py +524 -0
  229. elysium_ui-1.1.2/python/elysium/native.py +163 -0
  230. elysium_ui-1.1.2/python/elysium/pack/__init__.py +670 -0
  231. elysium_ui-1.1.2/python/elysium/platform/__init__.py +1 -0
  232. elysium_ui-1.1.2/python/elysium/reactive/__init__.py +161 -0
  233. elysium_ui-1.1.2/python/elysium/render/__init__.py +3 -0
  234. elysium_ui-1.1.2/python/elysium/render/compute.py +137 -0
  235. elysium_ui-1.1.2/python/elysium/render/designer_preview.py +539 -0
  236. elysium_ui-1.1.2/python/elysium/render/pbr.py +2186 -0
  237. elysium_ui-1.1.2/python/elysium/render/preview.py +38 -0
  238. elysium_ui-1.1.2/python/elysium/render/shaders/pbr_compute.wgsl +219 -0
  239. elysium_ui-1.1.2/python/elysium/render/texture.py +473 -0
  240. elysium_ui-1.1.2/python/elysium/settings.py +190 -0
  241. elysium_ui-1.1.2/python/elysium/shell/__init__.py +1116 -0
  242. elysium_ui-1.1.2/python/elysium/skin/__init__.py +222 -0
  243. elysium_ui-1.1.2/python/elysium/stubgen.py +121 -0
  244. elysium_ui-1.1.2/python/elysium/styling.py +141 -0
  245. elysium_ui-1.1.2/python/elysium/testing.py +257 -0
  246. elysium_ui-1.1.2/python/elysium/text/__init__.py +33 -0
  247. elysium_ui-1.1.2/python/elysium/text/edit.py +400 -0
  248. elysium_ui-1.1.2/python/elysium/text/richtext.py +230 -0
  249. elysium_ui-1.1.2/python/elysium/text/validate.py +203 -0
  250. elysium_ui-1.1.2/python/elysium/theme/__init__.py +386 -0
  251. elysium_ui-1.1.2/python/elysium/updater/__init__.py +291 -0
  252. elysium_ui-1.1.2/python/elysium/webview/__init__.py +142 -0
  253. elysium_ui-1.1.2/python/elysium/webview/linux.py +129 -0
  254. elysium_ui-1.1.2/python/elysium/webview/macos.py +354 -0
  255. elysium_ui-1.1.2/python/elysium/webview/macos_bridge.py +142 -0
  256. elysium_ui-1.1.2/python/elysium/webview/windows.py +73 -0
  257. elysium_ui-1.1.2/python/elysium/windowing.py +179 -0
  258. elysium_ui-1.1.2/python/elysium/workers/__init__.py +1 -0
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,12 @@
1
+ Elysium UI
2
+ Copyright (c) 2026 Lamaute Labs LLC and Elysium UI contributors
3
+
4
+ This product includes software developed as part of the Elysium UI project
5
+ (https://elysiumui.com), licensed under the Apache License, Version 2.0.
6
+
7
+ "Elysium", "Elysium UI", "Elysium Designer", and the Blue Morpho butterfly
8
+ logo are trademarks of Lamaute Labs LLC and are NOT licensed under the
9
+ Apache License. See TRADEMARK.md for the brand-usage policy.
10
+
11
+ The elysiumui.com website, its design, and its content are proprietary to
12
+ Lamaute Labs LLC and are not part of this open-source distribution.
@@ -0,0 +1,194 @@
1
+ Metadata-Version: 2.4
2
+ Name: elysium-ui
3
+ Version: 1.1.2
4
+ Classifier: Development Status :: 5 - Production/Stable
5
+ Classifier: License :: OSI Approved :: Apache Software License
6
+ Classifier: Programming Language :: Python :: 3 :: Only
7
+ Classifier: Programming Language :: Rust
8
+ Classifier: Topic :: Software Development :: User Interfaces
9
+ Classifier: Operating System :: MacOS
10
+ Classifier: Operating System :: Microsoft :: Windows
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Requires-Dist: numpy>=1.24
13
+ Requires-Dist: scipy>=1.10
14
+ Requires-Dist: pillow>=10
15
+ Requires-Dist: scikit-image>=0.22
16
+ Requires-Dist: anthropic>=0.34 ; extra == 'ai'
17
+ Requires-Dist: openai>=1.40 ; extra == 'ai'
18
+ Requires-Dist: pyinstaller>=6 ; extra == 'build'
19
+ Requires-Dist: maturin>=1.7,<2 ; extra == 'build'
20
+ Requires-Dist: pytest>=8 ; extra == 'dev'
21
+ Requires-Dist: pytest-asyncio>=0.23 ; extra == 'dev'
22
+ Requires-Dist: pytest-cov>=5 ; extra == 'dev'
23
+ Requires-Dist: pillow>=10 ; extra == 'dev'
24
+ Requires-Dist: mypy>=1.10 ; extra == 'dev'
25
+ Requires-Dist: ruff>=0.6 ; extra == 'dev'
26
+ Provides-Extra: ai
27
+ Provides-Extra: build
28
+ Provides-Extra: dev
29
+ License-File: LICENSE
30
+ License-File: NOTICE
31
+ Summary: GPU-accelerated, freeform Python UI framework.
32
+ Keywords: ui,gui,skia,wgpu,desktop,python
33
+ Author: Elysium UI Contributors
34
+ License: Apache-2.0
35
+ Requires-Python: >=3.10
36
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
37
+ Project-URL: Documentation, https://docs.elysium.dev
38
+ Project-URL: Repository, https://github.com/elysiumui/elysium
39
+
40
+ # Elysium UI
41
+
42
+ > Python UI without the rectangles.
43
+
44
+ **Status: 1.0 — production / stable.** The public API follows strict
45
+ [semver](docs/guides/api-stability.md); see the [CHANGELOG](CHANGELOG.md).
46
+
47
+ A GPU-accelerated framework for borderless, shaped, animated Python
48
+ desktop applications. Skia + wgpu hybrid rendering, designer-and-
49
+ developer split via `.esk` skin files, animation as a first-class
50
+ citizen, and a dedicated authoring app (Elysium Designer).
51
+
52
+ It targets Qt/PySide6 parity for desktop UI while deliberately staying
53
+ focused on the UI layer — see the [scope statement](docs/resources/scope-and-batteries.md)
54
+ for what's in and what's left to the Python ecosystem.
55
+
56
+ ## Documentation
57
+
58
+ - **Framework**: [docs.elysiumui.com](https://docs.elysiumui.com) (the
59
+ `elysium` Python package)
60
+ - **Designer**: [designer.elysiumui.com](https://designer.elysiumui.com)
61
+ (the `.esk` authoring app)
62
+
63
+ Both sites build from this repo: `docs/` and `docs-designer/`.
64
+
65
+ ## Quick start
66
+
67
+ ```bash
68
+ pip install elysium-ui
69
+ ```
70
+
71
+ Run the minimum borderless ellipse window:
72
+
73
+ ```python
74
+ import elysium as ely
75
+
76
+ ELLIPSE = "M 0,180 A 180,180 0 1 0 360,180 A 180,180 0 1 0 0,180 Z"
77
+
78
+ app = ely.App(title="Hello", identifier="dev.example.hello")
79
+ window = app.window(transparent=True, title_bar=False,
80
+ resizable=False, initial_size=(360, 360))
81
+ window.set_hit_test_path(ELLIPSE)
82
+ app.run()
83
+ ```
84
+
85
+ A 360 by 360 transparent ellipse window appears with no chrome,
86
+ clipping clicks to the ellipse.
87
+
88
+ ## Four lead demos
89
+
90
+ The Getting Started tutorials walk through four flagship apps:
91
+
92
+ | Demo | Time | What you build |
93
+ |---|---|---|
94
+ | [Aurora Clock](https://docs.elysiumui.com/getting-started/aurora-clock-01-window/) | 30 min | Borderless transparent ellipse clock with breathing aurora glow |
95
+ | [Pomodoro Timer](https://docs.elysiumui.com/getting-started/pomodoro-01-shape-and-modes/) | 25 min | Rounded-rect Pomodoro with radial progress + popover settings |
96
+ | [Stylized Music Player](https://docs.elysiumui.com/getting-started/stylized-music-01-the-faceplate/) | 90 min | Late-1990s-style irregular faceplate music player skin |
97
+ | [Butterfly Banner](https://docs.elysiumui.com/getting-started/butterfly-banner-01-load-the-skin/) | 20 min | The Elysium logo: a butterfly descends and unfurls the wordmark |
98
+
99
+ Together they exercise the entire public API: `App`, `Window`,
100
+ shaped windows, skins, signals, effects, Tweens, Springs,
101
+ Timelines, themes, components, brush, PBR, AI, marketplace.
102
+
103
+ ## The Designer
104
+
105
+ The companion authoring app ships as a signed standalone executable
106
+ per OS:
107
+
108
+ - macOS: `Elysium Designer.app`
109
+ - Windows: `ElysiumDesigner.exe`
110
+ - Linux: `Elysium-Designer.AppImage`
111
+
112
+ Download from [releases](https://github.com/elysiumui/elysium/releases),
113
+ or build from source (see
114
+ [the build-from-source guide](https://designer.elysiumui.com/installation/build-from-source/)).
115
+
116
+ The Designer's lead tutorial is the
117
+ [Blue Morpho to Monarch butterfly](https://designer.elysiumui.com/getting-started/butterfly/)
118
+ texture-transfer workflow, which produces the same `.esk` the
119
+ Butterfly Banner framework demo loads.
120
+
121
+ ## Architecture
122
+
123
+ | Layer | Crate / Package |
124
+ |---|---|
125
+ | Pure-Rust primitives (geometry, display list, color, time) | [`ely-core`](elysium-native/crates/ely-core) |
126
+ | Windowing + input + a11y (winit) | [`ely-platform`](elysium-native/crates/ely-platform) |
127
+ | Skia paint + wgpu compositor + WGSL effects | [`ely-render`](elysium-native/crates/ely-render) |
128
+ | `.esk` parser + naga shader sandbox + Ed25519 signatures | [`ely-skin`](elysium-native/crates/ely-skin) |
129
+ | Hot-reload IPC | [`ely-ipc`](elysium-native/crates/ely-ipc) |
130
+ | PyO3 bindings (the `_native` module) | [`ely-py`](elysium-native/crates/ely-py) |
131
+ | Pure-Python framework | [`python/elysium/`](python/elysium) |
132
+ | Standalone visual designer | [`elysium-designer/`](elysium-designer) |
133
+
134
+ ## Build from source
135
+
136
+ ```bash
137
+ # Native + Python in one command:
138
+ maturin develop --release
139
+
140
+ # Rust workspace tests:
141
+ cd elysium-native && cargo test --workspace
142
+
143
+ # Python suite:
144
+ pytest python/elysium/
145
+
146
+ # Live-window end-to-end test (gated on a display):
147
+ ELYSIUM_RUN_WINDOW_TEST=1 pytest tests/test_smoke.py::test_phase0_live_window_end_to_end
148
+ ```
149
+
150
+ Contributors: see [CONTRIBUTING.md](CONTRIBUTING.md) and the
151
+ [contributing guide on the docs site](https://docs.elysiumui.com/resources/contributing/).
152
+
153
+ ### Where the artifacts land
154
+
155
+ | What | Where | For |
156
+ | -------------- | ---------------------------------------- | ------------------------------------------------------------------- |
157
+ | Framework | `elysium-native/target/wheels/` | `pip install` consumers (developers building apps with the library) |
158
+ | Designer (Mac) | `dist/macos/ElysiumDesigner.app` | End-users on macOS |
159
+ | Designer (Win) | `dist/windows/ElysiumDesigner.exe` | End-users on Windows |
160
+
161
+ The framework directory holds the `pip`-installable wheel +
162
+ universal sdist produced by `maturin build --release --sdist`. The
163
+ Designer directories hold the single-file PyInstaller bundles
164
+ produced by `scripts/build-designer.sh` (or `.ps1` on Windows) — no
165
+ Python install required to run, since each bundle ships its own
166
+ interpreter and the compiled native extension.
167
+
168
+ Cross-platform wheels + Designer binaries also come out of CI:
169
+ trigger `release-library.yml` for wheels (Win/Mac arm64+x86_64/Linux),
170
+ or `build-binaries.yml` for the Designer matrix.
171
+
172
+ ## Examples
173
+
174
+ | Folder | Purpose |
175
+ |---|---|
176
+ | [`examples/hello/`](examples/hello) | Minimum-viable app; smoke test |
177
+ | [`examples/butterfly/`](examples/butterfly) | Blue Morpho reference + Monarch model used by both lead tutorials |
178
+ | [`examples/components/`](examples/components) | Single-window showcase of every built-in component |
179
+ | [`examples/agent-cursor/`](examples/agent-cursor) | Aether-driven borderless cursor companion |
180
+ | [`examples/snapshot-relay/`](examples/snapshot-relay) | Headless `/snapshot` HTTP relay for tests |
181
+
182
+ ## License
183
+
184
+ Permissive. See [LICENSE](LICENSE).
185
+
186
+ ## Links
187
+
188
+ - [docs.elysiumui.com](https://docs.elysiumui.com) (framework)
189
+ - [designer.elysiumui.com](https://designer.elysiumui.com) (Designer)
190
+ - [GitHub Releases](https://github.com/elysiumui/elysium/releases)
191
+ - [PyPI](https://pypi.org/project/elysium)
192
+ - [Issues](https://github.com/elysiumui/elysium/issues)
193
+ - [Discussions](https://github.com/elysiumui/elysium/discussions)
194
+
@@ -0,0 +1,154 @@
1
+ # Elysium UI
2
+
3
+ > Python UI without the rectangles.
4
+
5
+ **Status: 1.0 — production / stable.** The public API follows strict
6
+ [semver](docs/guides/api-stability.md); see the [CHANGELOG](CHANGELOG.md).
7
+
8
+ A GPU-accelerated framework for borderless, shaped, animated Python
9
+ desktop applications. Skia + wgpu hybrid rendering, designer-and-
10
+ developer split via `.esk` skin files, animation as a first-class
11
+ citizen, and a dedicated authoring app (Elysium Designer).
12
+
13
+ It targets Qt/PySide6 parity for desktop UI while deliberately staying
14
+ focused on the UI layer — see the [scope statement](docs/resources/scope-and-batteries.md)
15
+ for what's in and what's left to the Python ecosystem.
16
+
17
+ ## Documentation
18
+
19
+ - **Framework**: [docs.elysiumui.com](https://docs.elysiumui.com) (the
20
+ `elysium` Python package)
21
+ - **Designer**: [designer.elysiumui.com](https://designer.elysiumui.com)
22
+ (the `.esk` authoring app)
23
+
24
+ Both sites build from this repo: `docs/` and `docs-designer/`.
25
+
26
+ ## Quick start
27
+
28
+ ```bash
29
+ pip install elysium-ui
30
+ ```
31
+
32
+ Run the minimum borderless ellipse window:
33
+
34
+ ```python
35
+ import elysium as ely
36
+
37
+ ELLIPSE = "M 0,180 A 180,180 0 1 0 360,180 A 180,180 0 1 0 0,180 Z"
38
+
39
+ app = ely.App(title="Hello", identifier="dev.example.hello")
40
+ window = app.window(transparent=True, title_bar=False,
41
+ resizable=False, initial_size=(360, 360))
42
+ window.set_hit_test_path(ELLIPSE)
43
+ app.run()
44
+ ```
45
+
46
+ A 360 by 360 transparent ellipse window appears with no chrome,
47
+ clipping clicks to the ellipse.
48
+
49
+ ## Four lead demos
50
+
51
+ The Getting Started tutorials walk through four flagship apps:
52
+
53
+ | Demo | Time | What you build |
54
+ |---|---|---|
55
+ | [Aurora Clock](https://docs.elysiumui.com/getting-started/aurora-clock-01-window/) | 30 min | Borderless transparent ellipse clock with breathing aurora glow |
56
+ | [Pomodoro Timer](https://docs.elysiumui.com/getting-started/pomodoro-01-shape-and-modes/) | 25 min | Rounded-rect Pomodoro with radial progress + popover settings |
57
+ | [Stylized Music Player](https://docs.elysiumui.com/getting-started/stylized-music-01-the-faceplate/) | 90 min | Late-1990s-style irregular faceplate music player skin |
58
+ | [Butterfly Banner](https://docs.elysiumui.com/getting-started/butterfly-banner-01-load-the-skin/) | 20 min | The Elysium logo: a butterfly descends and unfurls the wordmark |
59
+
60
+ Together they exercise the entire public API: `App`, `Window`,
61
+ shaped windows, skins, signals, effects, Tweens, Springs,
62
+ Timelines, themes, components, brush, PBR, AI, marketplace.
63
+
64
+ ## The Designer
65
+
66
+ The companion authoring app ships as a signed standalone executable
67
+ per OS:
68
+
69
+ - macOS: `Elysium Designer.app`
70
+ - Windows: `ElysiumDesigner.exe`
71
+ - Linux: `Elysium-Designer.AppImage`
72
+
73
+ Download from [releases](https://github.com/elysiumui/elysium/releases),
74
+ or build from source (see
75
+ [the build-from-source guide](https://designer.elysiumui.com/installation/build-from-source/)).
76
+
77
+ The Designer's lead tutorial is the
78
+ [Blue Morpho to Monarch butterfly](https://designer.elysiumui.com/getting-started/butterfly/)
79
+ texture-transfer workflow, which produces the same `.esk` the
80
+ Butterfly Banner framework demo loads.
81
+
82
+ ## Architecture
83
+
84
+ | Layer | Crate / Package |
85
+ |---|---|
86
+ | Pure-Rust primitives (geometry, display list, color, time) | [`ely-core`](elysium-native/crates/ely-core) |
87
+ | Windowing + input + a11y (winit) | [`ely-platform`](elysium-native/crates/ely-platform) |
88
+ | Skia paint + wgpu compositor + WGSL effects | [`ely-render`](elysium-native/crates/ely-render) |
89
+ | `.esk` parser + naga shader sandbox + Ed25519 signatures | [`ely-skin`](elysium-native/crates/ely-skin) |
90
+ | Hot-reload IPC | [`ely-ipc`](elysium-native/crates/ely-ipc) |
91
+ | PyO3 bindings (the `_native` module) | [`ely-py`](elysium-native/crates/ely-py) |
92
+ | Pure-Python framework | [`python/elysium/`](python/elysium) |
93
+ | Standalone visual designer | [`elysium-designer/`](elysium-designer) |
94
+
95
+ ## Build from source
96
+
97
+ ```bash
98
+ # Native + Python in one command:
99
+ maturin develop --release
100
+
101
+ # Rust workspace tests:
102
+ cd elysium-native && cargo test --workspace
103
+
104
+ # Python suite:
105
+ pytest python/elysium/
106
+
107
+ # Live-window end-to-end test (gated on a display):
108
+ ELYSIUM_RUN_WINDOW_TEST=1 pytest tests/test_smoke.py::test_phase0_live_window_end_to_end
109
+ ```
110
+
111
+ Contributors: see [CONTRIBUTING.md](CONTRIBUTING.md) and the
112
+ [contributing guide on the docs site](https://docs.elysiumui.com/resources/contributing/).
113
+
114
+ ### Where the artifacts land
115
+
116
+ | What | Where | For |
117
+ | -------------- | ---------------------------------------- | ------------------------------------------------------------------- |
118
+ | Framework | `elysium-native/target/wheels/` | `pip install` consumers (developers building apps with the library) |
119
+ | Designer (Mac) | `dist/macos/ElysiumDesigner.app` | End-users on macOS |
120
+ | Designer (Win) | `dist/windows/ElysiumDesigner.exe` | End-users on Windows |
121
+
122
+ The framework directory holds the `pip`-installable wheel +
123
+ universal sdist produced by `maturin build --release --sdist`. The
124
+ Designer directories hold the single-file PyInstaller bundles
125
+ produced by `scripts/build-designer.sh` (or `.ps1` on Windows) — no
126
+ Python install required to run, since each bundle ships its own
127
+ interpreter and the compiled native extension.
128
+
129
+ Cross-platform wheels + Designer binaries also come out of CI:
130
+ trigger `release-library.yml` for wheels (Win/Mac arm64+x86_64/Linux),
131
+ or `build-binaries.yml` for the Designer matrix.
132
+
133
+ ## Examples
134
+
135
+ | Folder | Purpose |
136
+ |---|---|
137
+ | [`examples/hello/`](examples/hello) | Minimum-viable app; smoke test |
138
+ | [`examples/butterfly/`](examples/butterfly) | Blue Morpho reference + Monarch model used by both lead tutorials |
139
+ | [`examples/components/`](examples/components) | Single-window showcase of every built-in component |
140
+ | [`examples/agent-cursor/`](examples/agent-cursor) | Aether-driven borderless cursor companion |
141
+ | [`examples/snapshot-relay/`](examples/snapshot-relay) | Headless `/snapshot` HTTP relay for tests |
142
+
143
+ ## License
144
+
145
+ Permissive. See [LICENSE](LICENSE).
146
+
147
+ ## Links
148
+
149
+ - [docs.elysiumui.com](https://docs.elysiumui.com) (framework)
150
+ - [designer.elysiumui.com](https://designer.elysiumui.com) (Designer)
151
+ - [GitHub Releases](https://github.com/elysiumui/elysium/releases)
152
+ - [PyPI](https://pypi.org/project/elysium)
153
+ - [Issues](https://github.com/elysiumui/elysium/issues)
154
+ - [Discussions](https://github.com/elysiumui/elysium/discussions)