gradio-themer 0.1.0__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 (893) hide show
  1. gradio_themer-0.1.0/.gitignore +57 -0
  2. gradio_themer-0.1.0/PKG-INFO +405 -0
  3. gradio_themer-0.1.0/README.md +380 -0
  4. gradio_themer-0.1.0/backend/gradio_themer/__init__.py +3 -0
  5. gradio_themer-0.1.0/backend/gradio_themer/generate_theme_template.py +169 -0
  6. gradio_themer-0.1.0/backend/gradio_themer/gradio_themer.py +336 -0
  7. gradio_themer-0.1.0/backend/gradio_themer/gradio_themer.pyi +490 -0
  8. gradio_themer-0.1.0/backend/gradio_themer/templates/component/index.js +1256 -0
  9. gradio_themer-0.1.0/backend/gradio_themer/templates/component/style.css +1 -0
  10. gradio_themer-0.1.0/backend/gradio_themer/templates/example/index.js +103 -0
  11. gradio_themer-0.1.0/backend/gradio_themer/templates/example/style.css +1 -0
  12. gradio_themer-0.1.0/demo/README.md +191 -0
  13. gradio_themer-0.1.0/demo/__init__.py +0 -0
  14. gradio_themer-0.1.0/demo/app.py +113 -0
  15. gradio_themer-0.1.0/demo/app.py.bak +634 -0
  16. gradio_themer-0.1.0/demo/css.css +157 -0
  17. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_avif.pyi +3 -0
  18. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_imaging.pyi +31 -0
  19. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_imagingcms.pyi +143 -0
  20. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_imagingft.pyi +69 -0
  21. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_imagingmath.pyi +3 -0
  22. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_imagingmorph.pyi +3 -0
  23. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_imagingtk.pyi +3 -0
  24. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/PIL/_webp.pyi +3 -0
  25. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/audioop/__init__.pyi +44 -0
  26. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/__init__.pyi +37 -0
  27. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/_openssl.pyi +8 -0
  28. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/asn1.pyi +7 -0
  29. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/exceptions.pyi +17 -0
  30. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/ocsp.pyi +117 -0
  31. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/__init__.pyi +75 -0
  32. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/aead.pyi +107 -0
  33. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ciphers.pyi +38 -0
  34. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/cmac.pyi +18 -0
  35. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/dh.pyi +51 -0
  36. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/dsa.pyi +41 -0
  37. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ec.pyi +52 -0
  38. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed25519.pyi +13 -0
  39. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed448.pyi +13 -0
  40. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/hashes.pyi +28 -0
  41. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/hmac.pyi +22 -0
  42. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/kdf.pyi +49 -0
  43. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/keys.pyi +34 -0
  44. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/poly1305.pyi +15 -0
  45. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/rsa.pyi +55 -0
  46. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/x25519.pyi +13 -0
  47. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/x448.pyi +13 -0
  48. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/pkcs12.pyi +52 -0
  49. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/pkcs7.pyi +50 -0
  50. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/test_support.pyi +23 -0
  51. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/x509.pyi +313 -0
  52. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/_simple_templates/simpledropdown.pyi +279 -0
  53. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/_simple_templates/simpleimage.pyi +275 -0
  54. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/_simple_templates/simpletextbox.pyi +262 -0
  55. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/blocks_events.pyi +86 -0
  56. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/annotated_image.pyi +301 -0
  57. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/audio.pyi +1022 -0
  58. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/base.pyi +490 -0
  59. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/browser_state.pyi +131 -0
  60. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/button.pyi +167 -0
  61. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/chatbot.pyi +1155 -0
  62. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/checkbox.pyi +266 -0
  63. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/checkboxgroup.pyi +312 -0
  64. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/clear_button.pyi +151 -0
  65. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/code.pyi +407 -0
  66. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/color_picker.pyi +368 -0
  67. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/dataframe.pyi +693 -0
  68. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/dataset.pyi +302 -0
  69. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/datetime.pyi +275 -0
  70. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/deep_link_button.pyi +138 -0
  71. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/download_button.pyi +182 -0
  72. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/dropdown.pyi +552 -0
  73. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/duplicate_button.pyi +101 -0
  74. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/fallback.pyi +38 -0
  75. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/file.pyi +557 -0
  76. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/file_explorer.pyi +270 -0
  77. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/gallery.pyi +584 -0
  78. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/highlighted_text.pyi +308 -0
  79. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/html.pyi +214 -0
  80. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/image.pyi +569 -0
  81. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/image_editor.pyi +833 -0
  82. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/imageslider.pyi +542 -0
  83. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/json_component.pyi +207 -0
  84. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/label.pyi +276 -0
  85. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/login_button.pyi +130 -0
  86. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/markdown.pyi +252 -0
  87. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/model3d.pyi +349 -0
  88. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/multimodal_textbox.pyi +606 -0
  89. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/native_plot.pyi +400 -0
  90. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/number.pyi +407 -0
  91. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/paramviewer.pyi +217 -0
  92. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/plot.pyi +226 -0
  93. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/radio.pyi +310 -0
  94. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/slider.pyi +302 -0
  95. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/state.pyi +150 -0
  96. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/textbox.pyi +571 -0
  97. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/timer.pyi +123 -0
  98. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/upload_button.pyi +348 -0
  99. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/components/video.pyi +1051 -0
  100. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/layouts/accordion.pyi +164 -0
  101. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/layouts/column.pyi +83 -0
  102. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/layouts/form.pyi +64 -0
  103. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/layouts/group.pyi +55 -0
  104. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/layouts/row.pyi +98 -0
  105. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/layouts/sidebar.pyi +170 -0
  106. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/layouts/tabs.pyi +274 -0
  107. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/sketch/sketchbox.pyi +100 -0
  108. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/stubs/anyio.pyi +62 -0
  109. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio/templates.pyi +913 -0
  110. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/gradio_themer/gradio_themer.pyi +490 -0
  111. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/markupsafe/_speedups.pyi +1 -0
  112. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/__config__.pyi +102 -0
  113. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/__init__.pyi +5387 -0
  114. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_array_api_info.pyi +207 -0
  115. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_configtool.pyi +1 -0
  116. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/__init__.pyi +2 -0
  117. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_add_newdocs.pyi +3 -0
  118. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_add_newdocs_scalars.pyi +16 -0
  119. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_asarray.pyi +41 -0
  120. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_dtype.pyi +58 -0
  121. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_dtype_ctypes.pyi +83 -0
  122. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_exceptions.pyi +55 -0
  123. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_internal.pyi +72 -0
  124. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_machar.pyi +55 -0
  125. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_methods.pyi +22 -0
  126. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_simd.pyi +25 -0
  127. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_string_helpers.pyi +12 -0
  128. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_type_aliases.pyi +97 -0
  129. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/_ufunc_config.pyi +32 -0
  130. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/arrayprint.pyi +238 -0
  131. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/defchararray.pyi +1085 -0
  132. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/einsumfunc.pyi +184 -0
  133. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/fromnumeric.pyi +1747 -0
  134. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/function_base.pyi +278 -0
  135. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/getlimits.pyi +3 -0
  136. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/memmap.pyi +3 -0
  137. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/multiarray.pyi +1291 -0
  138. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/numeric.pyi +882 -0
  139. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/numerictypes.pyi +192 -0
  140. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/overrides.pyi +48 -0
  141. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/printoptions.pyi +28 -0
  142. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/records.pyi +333 -0
  143. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/shape_base.pyi +175 -0
  144. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/strings.pyi +511 -0
  145. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_core/umath.pyi +197 -0
  146. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_distributor_init.pyi +1 -0
  147. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_expired_attrs_2_0.pyi +62 -0
  148. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_globals.pyi +17 -0
  149. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_pyinstaller/__init__.pyi +0 -0
  150. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_pyinstaller/hook-numpy.pyi +13 -0
  151. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_pytesttester.pyi +18 -0
  152. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_typing/_callable.pyi +366 -0
  153. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_typing/_nbit_base.pyi +40 -0
  154. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_typing/_ufunc.pyi +941 -0
  155. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_utils/__init__.pyi +30 -0
  156. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_utils/_convertions.pyi +4 -0
  157. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_utils/_inspect.pyi +71 -0
  158. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/_utils/_pep440.pyi +121 -0
  159. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/char/__init__.pyi +111 -0
  160. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/core/__init__.pyi +0 -0
  161. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/core/_dtype.pyi +0 -0
  162. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/core/_dtype_ctypes.pyi +0 -0
  163. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/core/overrides.pyi +7 -0
  164. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/ctypeslib/__init__.pyi +33 -0
  165. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/ctypeslib/_ctypeslib.pyi +245 -0
  166. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/dtypes.pyi +631 -0
  167. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/exceptions.pyi +25 -0
  168. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/__init__.pyi +6 -0
  169. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/__version__.pyi +1 -0
  170. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/_backends/__init__.pyi +5 -0
  171. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/_backends/_backend.pyi +46 -0
  172. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/_backends/_distutils.pyi +13 -0
  173. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/_backends/_meson.pyi +63 -0
  174. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/_isocbind.pyi +13 -0
  175. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/_src_pyf.pyi +29 -0
  176. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/auxfuncs.pyi +263 -0
  177. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/capi_maps.pyi +33 -0
  178. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/cb_rules.pyi +17 -0
  179. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/cfuncs.pyi +31 -0
  180. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/common_rules.pyi +9 -0
  181. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/crackfortran.pyi +258 -0
  182. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/diagnose.pyi +4 -0
  183. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/f2py2e.pyi +76 -0
  184. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/f90mod_rules.pyi +16 -0
  185. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/func2subr.pyi +7 -0
  186. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/rules.pyi +43 -0
  187. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/symbolic.pyi +221 -0
  188. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/f2py/use_rules.pyi +9 -0
  189. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/fft/__init__.pyi +43 -0
  190. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/fft/_helper.pyi +45 -0
  191. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/fft/_pocketfft.pyi +138 -0
  192. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/fft/helper.pyi +22 -0
  193. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/__init__.pyi +28 -0
  194. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_array_utils_impl.pyi +26 -0
  195. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_arraypad_impl.pyi +89 -0
  196. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_arraysetops_impl.pyi +444 -0
  197. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_arrayterator_impl.pyi +46 -0
  198. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_datasource.pyi +31 -0
  199. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_format_impl.pyi +26 -0
  200. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_function_base_impl.pyi +985 -0
  201. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_histograms_impl.pyi +50 -0
  202. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_index_tricks_impl.pyi +196 -0
  203. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_iotools.pyi +114 -0
  204. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_nanfunctions_impl.pyi +52 -0
  205. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_npyio_impl.pyi +301 -0
  206. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_polynomial_impl.pyi +316 -0
  207. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_scimath_impl.pyi +93 -0
  208. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_shape_base_impl.pyi +235 -0
  209. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_stride_tricks_impl.pyi +74 -0
  210. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_twodim_base_impl.pyi +438 -0
  211. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_type_check_impl.pyi +350 -0
  212. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_ufunclike_impl.pyi +67 -0
  213. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_user_array_impl.pyi +225 -0
  214. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_utils_impl.pyi +10 -0
  215. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/_version.pyi +17 -0
  216. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/array_utils.pyi +12 -0
  217. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/format.pyi +66 -0
  218. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/introspect.pyi +3 -0
  219. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/mixins.pyi +75 -0
  220. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/npyio.pyi +9 -0
  221. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/recfunctions.pyi +435 -0
  222. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/scimath.pyi +30 -0
  223. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/stride_tricks.pyi +6 -0
  224. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/lib/user_array.pyi +1 -0
  225. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/linalg/__init__.pyi +73 -0
  226. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/linalg/_linalg.pyi +482 -0
  227. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/linalg/_umath_linalg.pyi +61 -0
  228. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/linalg/lapack_lite.pyi +141 -0
  229. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/linalg/linalg.pyi +69 -0
  230. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/ma/__init__.pyi +458 -0
  231. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/ma/core.pyi +1462 -0
  232. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/ma/extras.pyi +134 -0
  233. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/ma/mrecords.pyi +96 -0
  234. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/matlib.pyi +582 -0
  235. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/matrixlib/__init__.pyi +5 -0
  236. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/matrixlib/defmatrix.pyi +17 -0
  237. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/__init__.pyi +25 -0
  238. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/_polybase.pyi +285 -0
  239. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/_polytypes.pyi +892 -0
  240. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/chebyshev.pyi +181 -0
  241. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/hermite.pyi +107 -0
  242. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/hermite_e.pyi +107 -0
  243. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/laguerre.pyi +100 -0
  244. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/legendre.pyi +100 -0
  245. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/polynomial.pyi +89 -0
  246. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/polynomial/polyutils.pyi +423 -0
  247. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/__init__.pyi +124 -0
  248. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_bounded_integers.pyi +1 -0
  249. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_common.pyi +16 -0
  250. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_generator.pyi +856 -0
  251. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_mt19937.pyi +25 -0
  252. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_pcg64.pyi +44 -0
  253. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_philox.pyi +39 -0
  254. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_pickle.pyi +43 -0
  255. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/_sfc64.pyi +28 -0
  256. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/bit_generator.pyi +124 -0
  257. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/random/mtrand.pyi +703 -0
  258. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/rec/__init__.pyi +23 -0
  259. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/strings/__init__.pyi +97 -0
  260. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/testing/__init__.pyi +102 -0
  261. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/testing/_private/__init__.pyi +0 -0
  262. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/testing/_private/extbuild.pyi +25 -0
  263. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/testing/_private/utils.pyi +499 -0
  264. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/testing/overrides.pyi +11 -0
  265. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/testing/print_coercion_tables.pyi +27 -0
  266. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  267. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  268. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/array_like.pyi +15 -0
  269. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  270. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/arrayprint.pyi +16 -0
  271. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  272. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  273. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/char.pyi +65 -0
  274. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/chararray.pyi +62 -0
  275. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  276. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/constants.pyi +3 -0
  277. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/datasource.pyi +15 -0
  278. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/dtype.pyi +17 -0
  279. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  280. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/flatiter.pyi +20 -0
  281. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  282. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/histograms.pyi +12 -0
  283. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  284. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_function_base.pyi +62 -0
  285. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  286. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  287. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  288. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/linalg.pyi +48 -0
  289. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ma.pyi +143 -0
  290. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/memmap.pyi +5 -0
  291. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/modules.pyi +17 -0
  292. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  293. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  294. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ndarray_misc.pyi +36 -0
  295. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/nditer.pyi +8 -0
  296. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/nested_sequence.pyi +16 -0
  297. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/npyio.pyi +24 -0
  298. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  299. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/random.pyi +62 -0
  300. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/rec.pyi +17 -0
  301. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/scalars.pyi +87 -0
  302. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/shape.pyi +6 -0
  303. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  304. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  305. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/strings.pyi +52 -0
  306. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/testing.pyi +28 -0
  307. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/twodim_base.pyi +32 -0
  308. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/type_check.pyi +13 -0
  309. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  310. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  311. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  312. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  313. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  314. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arithmetic.pyi +720 -0
  315. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  316. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/array_constructors.pyi +247 -0
  317. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arraypad.pyi +22 -0
  318. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  319. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  320. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  321. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/bitwise_ops.pyi +168 -0
  322. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/char.pyi +218 -0
  323. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/chararray.pyi +137 -0
  324. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  325. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/constants.pyi +14 -0
  326. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  327. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  328. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/dtype.pyi +136 -0
  329. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  330. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/emath.pyi +54 -0
  331. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/fft.pyi +37 -0
  332. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/flatiter.pyi +47 -0
  333. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  334. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/getlimits.pyi +51 -0
  335. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  336. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  337. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_function_base.pyi +213 -0
  338. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_polynomial.pyi +144 -0
  339. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  340. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  341. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/linalg.pyi +132 -0
  342. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ma.pyi +370 -0
  343. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  344. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  345. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/mod.pyi +180 -0
  346. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/modules.pyi +51 -0
  347. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/multiarray.pyi +194 -0
  348. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/nbit_base_example.pyi +21 -0
  349. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_assignability.pyi +77 -0
  350. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_conversion.pyi +85 -0
  351. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_misc.pyi +237 -0
  352. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +39 -0
  353. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  354. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  355. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  356. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/numeric.pyi +134 -0
  357. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/numerictypes.pyi +51 -0
  358. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/polynomial_polybase.pyi +220 -0
  359. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +219 -0
  360. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  361. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/random.pyi +1546 -0
  362. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/rec.pyi +171 -0
  363. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  364. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/shape.pyi +13 -0
  365. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  366. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  367. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/strings.pyi +196 -0
  368. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/testing.pyi +198 -0
  369. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/twodim_base.pyi +145 -0
  370. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  371. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ufunc_config.pyi +30 -0
  372. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  373. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ufuncs.pyi +123 -0
  374. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  375. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/numpy/version.pyi +18 -0
  376. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/orjson/__init__.pyi +32 -0
  377. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/algos.pyi +416 -0
  378. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/arrays.pyi +40 -0
  379. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/byteswap.pyi +5 -0
  380. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/groupby.pyi +216 -0
  381. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/hashing.pyi +9 -0
  382. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/hashtable.pyi +252 -0
  383. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/index.pyi +103 -0
  384. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/indexing.pyi +17 -0
  385. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/internals.pyi +94 -0
  386. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/interval.pyi +174 -0
  387. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/join.pyi +79 -0
  388. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/json.pyi +23 -0
  389. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/lib.pyi +216 -0
  390. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/missing.pyi +16 -0
  391. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/ops.pyi +51 -0
  392. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/ops_dispatch.pyi +5 -0
  393. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/parsers.pyi +77 -0
  394. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/properties.pyi +27 -0
  395. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/reshape.pyi +16 -0
  396. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/sas.pyi +7 -0
  397. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/sparse.pyi +51 -0
  398. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/testing.pyi +12 -0
  399. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslib.pyi +37 -0
  400. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/ccalendar.pyi +12 -0
  401. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/conversion.pyi +14 -0
  402. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/dtypes.pyi +83 -0
  403. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/fields.pyi +62 -0
  404. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/nattype.pyi +141 -0
  405. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/np_datetime.pyi +27 -0
  406. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/offsets.pyi +287 -0
  407. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/parsing.pyi +33 -0
  408. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/period.pyi +135 -0
  409. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/strptime.pyi +14 -0
  410. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/timedeltas.pyi +174 -0
  411. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/timestamps.pyi +241 -0
  412. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/timezones.pyi +21 -0
  413. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/tzconversion.pyi +21 -0
  414. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/tslibs/vectorized.pyi +43 -0
  415. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/window/aggregations.pyi +127 -0
  416. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/window/indexers.pyi +12 -0
  417. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pandas/_libs/writers.pyi +20 -0
  418. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/pydantic_core/_pydantic_core.pyi +1039 -0
  419. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/typing_inspection/typing_objects.pyi +406 -0
  420. gradio_themer-0.1.0/demo/demo_venv/lib/python3.13/site-packages/websockets/speedups.pyi +1 -0
  421. gradio_themer-0.1.0/demo/mcp_tools.py +728 -0
  422. gradio_themer-0.1.0/demo/page.py +568 -0
  423. gradio_themer-0.1.0/demo/requirements.txt +5 -0
  424. gradio_themer-0.1.0/demo/space.py +239 -0
  425. gradio_themer-0.1.0/demo/user_themes.json +321 -0
  426. gradio_themer-0.1.0/frontend/Example.svelte +19 -0
  427. gradio_themer-0.1.0/frontend/Index.svelte +2782 -0
  428. gradio_themer-0.1.0/frontend/Index.svelte.bak +1755 -0
  429. gradio_themer-0.1.0/frontend/gradio.config.js +9 -0
  430. gradio_themer-0.1.0/frontend/package-lock.json +7462 -0
  431. gradio_themer-0.1.0/frontend/package.json +44 -0
  432. gradio_themer-0.1.0/frontend/postcss.config.js +6 -0
  433. gradio_themer-0.1.0/frontend/styles.css +475 -0
  434. gradio_themer-0.1.0/frontend/tailwind.config.js +51 -0
  435. gradio_themer-0.1.0/frontend/tsconfig.json +19 -0
  436. gradio_themer-0.1.0/frontend/vite.config.js +15 -0
  437. gradio_themer-0.1.0/package-lock.json +6 -0
  438. gradio_themer-0.1.0/pyproject.toml +57 -0
  439. gradio_themer-0.1.0/tests/test_component.py +191 -0
  440. gradio_themer-0.1.0/user_themes.json +46 -0
  441. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_avif.pyi +3 -0
  442. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_imaging.pyi +31 -0
  443. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_imagingcms.pyi +143 -0
  444. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_imagingft.pyi +69 -0
  445. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_imagingmath.pyi +3 -0
  446. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_imagingmorph.pyi +3 -0
  447. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_imagingtk.pyi +3 -0
  448. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/PIL/_webp.pyi +3 -0
  449. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/audioop/__init__.pyi +44 -0
  450. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/__init__.pyi +37 -0
  451. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/_openssl.pyi +8 -0
  452. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/asn1.pyi +7 -0
  453. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/exceptions.pyi +17 -0
  454. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/ocsp.pyi +117 -0
  455. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/__init__.pyi +75 -0
  456. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/aead.pyi +107 -0
  457. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ciphers.pyi +38 -0
  458. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/cmac.pyi +18 -0
  459. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/dh.pyi +51 -0
  460. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/dsa.pyi +41 -0
  461. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ec.pyi +52 -0
  462. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed25519.pyi +13 -0
  463. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/ed448.pyi +13 -0
  464. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/hashes.pyi +28 -0
  465. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/hmac.pyi +22 -0
  466. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/kdf.pyi +49 -0
  467. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/keys.pyi +34 -0
  468. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/poly1305.pyi +15 -0
  469. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/rsa.pyi +55 -0
  470. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/x25519.pyi +13 -0
  471. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/openssl/x448.pyi +13 -0
  472. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/pkcs12.pyi +52 -0
  473. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/pkcs7.pyi +50 -0
  474. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/test_support.pyi +23 -0
  475. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/cryptography/hazmat/bindings/_rust/x509.pyi +313 -0
  476. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/_simple_templates/simpledropdown.pyi +279 -0
  477. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/_simple_templates/simpleimage.pyi +275 -0
  478. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/_simple_templates/simpletextbox.pyi +262 -0
  479. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/blocks_events.pyi +86 -0
  480. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/annotated_image.pyi +301 -0
  481. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/audio.pyi +1022 -0
  482. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/base.pyi +490 -0
  483. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/browser_state.pyi +131 -0
  484. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/button.pyi +167 -0
  485. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/chatbot.pyi +1155 -0
  486. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/checkbox.pyi +266 -0
  487. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/checkboxgroup.pyi +312 -0
  488. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/clear_button.pyi +151 -0
  489. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/code.pyi +407 -0
  490. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/color_picker.pyi +368 -0
  491. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/dataframe.pyi +693 -0
  492. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/dataset.pyi +302 -0
  493. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/datetime.pyi +275 -0
  494. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/deep_link_button.pyi +138 -0
  495. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/download_button.pyi +182 -0
  496. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/dropdown.pyi +552 -0
  497. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/duplicate_button.pyi +101 -0
  498. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/fallback.pyi +38 -0
  499. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/file.pyi +557 -0
  500. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/file_explorer.pyi +270 -0
  501. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/gallery.pyi +584 -0
  502. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/highlighted_text.pyi +308 -0
  503. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/html.pyi +214 -0
  504. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/image.pyi +569 -0
  505. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/image_editor.pyi +833 -0
  506. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/imageslider.pyi +542 -0
  507. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/json_component.pyi +207 -0
  508. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/label.pyi +276 -0
  509. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/login_button.pyi +130 -0
  510. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/markdown.pyi +252 -0
  511. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/model3d.pyi +349 -0
  512. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/multimodal_textbox.pyi +606 -0
  513. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/native_plot.pyi +400 -0
  514. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/number.pyi +407 -0
  515. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/paramviewer.pyi +217 -0
  516. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/plot.pyi +226 -0
  517. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/radio.pyi +310 -0
  518. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/slider.pyi +302 -0
  519. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/state.pyi +150 -0
  520. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/textbox.pyi +571 -0
  521. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/timer.pyi +123 -0
  522. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/upload_button.pyi +348 -0
  523. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/components/video.pyi +1051 -0
  524. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/layouts/accordion.pyi +164 -0
  525. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/layouts/column.pyi +83 -0
  526. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/layouts/form.pyi +64 -0
  527. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/layouts/group.pyi +55 -0
  528. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/layouts/row.pyi +98 -0
  529. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/layouts/sidebar.pyi +170 -0
  530. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/layouts/tabs.pyi +274 -0
  531. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/sketch/sketchbox.pyi +100 -0
  532. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/stubs/anyio.pyi +62 -0
  533. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/gradio/templates.pyi +913 -0
  534. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/jaraco/functools/__init__.pyi +125 -0
  535. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/markupsafe/_speedups.pyi +1 -0
  536. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/more_itertools/__init__.pyi +2 -0
  537. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/more_itertools/more.pyi +931 -0
  538. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/more_itertools/recipes.pyi +192 -0
  539. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/nh3/__init__.pyi +21 -0
  540. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/__config__.pyi +102 -0
  541. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/__init__.pyi +5387 -0
  542. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_array_api_info.pyi +207 -0
  543. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_configtool.pyi +1 -0
  544. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/__init__.pyi +2 -0
  545. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_add_newdocs.pyi +3 -0
  546. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_add_newdocs_scalars.pyi +16 -0
  547. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_asarray.pyi +41 -0
  548. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_dtype.pyi +58 -0
  549. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_dtype_ctypes.pyi +83 -0
  550. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_exceptions.pyi +55 -0
  551. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_internal.pyi +72 -0
  552. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_machar.pyi +55 -0
  553. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_methods.pyi +22 -0
  554. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_simd.pyi +25 -0
  555. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_string_helpers.pyi +12 -0
  556. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_type_aliases.pyi +97 -0
  557. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/_ufunc_config.pyi +32 -0
  558. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/arrayprint.pyi +238 -0
  559. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/defchararray.pyi +1085 -0
  560. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/einsumfunc.pyi +184 -0
  561. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/fromnumeric.pyi +1747 -0
  562. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/function_base.pyi +278 -0
  563. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/getlimits.pyi +3 -0
  564. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/memmap.pyi +3 -0
  565. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/multiarray.pyi +1291 -0
  566. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/numeric.pyi +882 -0
  567. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/numerictypes.pyi +192 -0
  568. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/overrides.pyi +48 -0
  569. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/printoptions.pyi +28 -0
  570. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/records.pyi +333 -0
  571. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/shape_base.pyi +175 -0
  572. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/strings.pyi +511 -0
  573. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_core/umath.pyi +197 -0
  574. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_distributor_init.pyi +1 -0
  575. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_expired_attrs_2_0.pyi +62 -0
  576. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_globals.pyi +17 -0
  577. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_pyinstaller/__init__.pyi +0 -0
  578. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_pyinstaller/hook-numpy.pyi +13 -0
  579. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_pytesttester.pyi +18 -0
  580. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_typing/_callable.pyi +366 -0
  581. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_typing/_nbit_base.pyi +40 -0
  582. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_typing/_ufunc.pyi +941 -0
  583. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_utils/__init__.pyi +30 -0
  584. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_utils/_convertions.pyi +4 -0
  585. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_utils/_inspect.pyi +71 -0
  586. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/_utils/_pep440.pyi +121 -0
  587. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/char/__init__.pyi +111 -0
  588. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/core/__init__.pyi +0 -0
  589. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/core/_dtype.pyi +0 -0
  590. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/core/_dtype_ctypes.pyi +0 -0
  591. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/core/overrides.pyi +7 -0
  592. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/ctypeslib/__init__.pyi +33 -0
  593. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/ctypeslib/_ctypeslib.pyi +245 -0
  594. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/dtypes.pyi +631 -0
  595. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/exceptions.pyi +25 -0
  596. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/__init__.pyi +6 -0
  597. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/__version__.pyi +1 -0
  598. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/_backends/__init__.pyi +5 -0
  599. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/_backends/_backend.pyi +46 -0
  600. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/_backends/_distutils.pyi +13 -0
  601. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/_backends/_meson.pyi +63 -0
  602. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/_isocbind.pyi +13 -0
  603. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/_src_pyf.pyi +29 -0
  604. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/auxfuncs.pyi +263 -0
  605. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/capi_maps.pyi +33 -0
  606. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/cb_rules.pyi +17 -0
  607. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/cfuncs.pyi +31 -0
  608. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/common_rules.pyi +9 -0
  609. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/crackfortran.pyi +258 -0
  610. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/diagnose.pyi +4 -0
  611. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/f2py2e.pyi +76 -0
  612. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/f90mod_rules.pyi +16 -0
  613. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/func2subr.pyi +7 -0
  614. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/rules.pyi +43 -0
  615. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/symbolic.pyi +221 -0
  616. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/f2py/use_rules.pyi +9 -0
  617. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/fft/__init__.pyi +43 -0
  618. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/fft/_helper.pyi +45 -0
  619. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/fft/_pocketfft.pyi +138 -0
  620. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/fft/helper.pyi +22 -0
  621. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/__init__.pyi +28 -0
  622. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_array_utils_impl.pyi +26 -0
  623. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_arraypad_impl.pyi +89 -0
  624. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_arraysetops_impl.pyi +444 -0
  625. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_arrayterator_impl.pyi +46 -0
  626. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_datasource.pyi +31 -0
  627. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_format_impl.pyi +26 -0
  628. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_function_base_impl.pyi +985 -0
  629. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_histograms_impl.pyi +50 -0
  630. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_index_tricks_impl.pyi +196 -0
  631. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_iotools.pyi +114 -0
  632. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_nanfunctions_impl.pyi +52 -0
  633. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_npyio_impl.pyi +301 -0
  634. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_polynomial_impl.pyi +316 -0
  635. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_scimath_impl.pyi +93 -0
  636. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_shape_base_impl.pyi +235 -0
  637. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_stride_tricks_impl.pyi +74 -0
  638. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_twodim_base_impl.pyi +438 -0
  639. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_type_check_impl.pyi +350 -0
  640. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_ufunclike_impl.pyi +67 -0
  641. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_user_array_impl.pyi +225 -0
  642. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_utils_impl.pyi +10 -0
  643. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/_version.pyi +17 -0
  644. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/array_utils.pyi +12 -0
  645. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/format.pyi +66 -0
  646. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/introspect.pyi +3 -0
  647. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/mixins.pyi +75 -0
  648. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/npyio.pyi +9 -0
  649. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/recfunctions.pyi +435 -0
  650. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/scimath.pyi +30 -0
  651. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/stride_tricks.pyi +6 -0
  652. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/lib/user_array.pyi +1 -0
  653. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/linalg/__init__.pyi +73 -0
  654. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/linalg/_linalg.pyi +482 -0
  655. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/linalg/_umath_linalg.pyi +61 -0
  656. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/linalg/lapack_lite.pyi +141 -0
  657. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/linalg/linalg.pyi +69 -0
  658. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/ma/__init__.pyi +458 -0
  659. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/ma/core.pyi +1462 -0
  660. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/ma/extras.pyi +134 -0
  661. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/ma/mrecords.pyi +96 -0
  662. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/matlib.pyi +582 -0
  663. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/matrixlib/__init__.pyi +5 -0
  664. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/matrixlib/defmatrix.pyi +17 -0
  665. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/__init__.pyi +25 -0
  666. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/_polybase.pyi +285 -0
  667. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/_polytypes.pyi +892 -0
  668. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/chebyshev.pyi +181 -0
  669. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/hermite.pyi +107 -0
  670. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/hermite_e.pyi +107 -0
  671. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/laguerre.pyi +100 -0
  672. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/legendre.pyi +100 -0
  673. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/polynomial.pyi +89 -0
  674. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/polynomial/polyutils.pyi +423 -0
  675. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/__init__.pyi +124 -0
  676. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_bounded_integers.pyi +1 -0
  677. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_common.pyi +16 -0
  678. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_generator.pyi +856 -0
  679. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_mt19937.pyi +25 -0
  680. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_pcg64.pyi +44 -0
  681. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_philox.pyi +39 -0
  682. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_pickle.pyi +43 -0
  683. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/_sfc64.pyi +28 -0
  684. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/bit_generator.pyi +124 -0
  685. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/random/mtrand.pyi +703 -0
  686. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/rec/__init__.pyi +23 -0
  687. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/strings/__init__.pyi +97 -0
  688. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/testing/__init__.pyi +102 -0
  689. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/testing/_private/__init__.pyi +0 -0
  690. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/testing/_private/extbuild.pyi +25 -0
  691. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/testing/_private/utils.pyi +499 -0
  692. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/testing/overrides.pyi +11 -0
  693. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/testing/print_coercion_tables.pyi +27 -0
  694. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  695. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  696. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/array_like.pyi +15 -0
  697. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  698. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/arrayprint.pyi +16 -0
  699. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  700. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  701. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/char.pyi +65 -0
  702. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/chararray.pyi +62 -0
  703. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  704. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/constants.pyi +3 -0
  705. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/datasource.pyi +15 -0
  706. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/dtype.pyi +17 -0
  707. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  708. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/flatiter.pyi +20 -0
  709. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  710. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/histograms.pyi +12 -0
  711. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  712. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_function_base.pyi +62 -0
  713. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  714. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  715. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  716. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/linalg.pyi +48 -0
  717. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ma.pyi +143 -0
  718. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/memmap.pyi +5 -0
  719. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/modules.pyi +17 -0
  720. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  721. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  722. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ndarray_misc.pyi +36 -0
  723. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/nditer.pyi +8 -0
  724. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/nested_sequence.pyi +16 -0
  725. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/npyio.pyi +24 -0
  726. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  727. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/random.pyi +62 -0
  728. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/rec.pyi +17 -0
  729. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/scalars.pyi +87 -0
  730. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/shape.pyi +6 -0
  731. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  732. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  733. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/strings.pyi +52 -0
  734. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/testing.pyi +28 -0
  735. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/twodim_base.pyi +32 -0
  736. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/type_check.pyi +13 -0
  737. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  738. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  739. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  740. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  741. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  742. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arithmetic.pyi +720 -0
  743. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  744. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/array_constructors.pyi +247 -0
  745. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arraypad.pyi +22 -0
  746. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  747. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  748. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  749. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/bitwise_ops.pyi +168 -0
  750. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/char.pyi +218 -0
  751. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/chararray.pyi +137 -0
  752. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  753. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/constants.pyi +14 -0
  754. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  755. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  756. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/dtype.pyi +136 -0
  757. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  758. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/emath.pyi +54 -0
  759. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/fft.pyi +37 -0
  760. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/flatiter.pyi +47 -0
  761. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  762. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/getlimits.pyi +51 -0
  763. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  764. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  765. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_function_base.pyi +213 -0
  766. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_polynomial.pyi +144 -0
  767. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  768. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  769. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/linalg.pyi +132 -0
  770. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ma.pyi +370 -0
  771. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  772. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  773. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/mod.pyi +180 -0
  774. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/modules.pyi +51 -0
  775. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/multiarray.pyi +194 -0
  776. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/nbit_base_example.pyi +21 -0
  777. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_assignability.pyi +77 -0
  778. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_conversion.pyi +85 -0
  779. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_misc.pyi +237 -0
  780. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +39 -0
  781. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  782. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  783. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  784. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/numeric.pyi +134 -0
  785. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/numerictypes.pyi +51 -0
  786. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/polynomial_polybase.pyi +220 -0
  787. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +219 -0
  788. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  789. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/random.pyi +1546 -0
  790. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/rec.pyi +171 -0
  791. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  792. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/shape.pyi +13 -0
  793. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  794. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  795. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/strings.pyi +196 -0
  796. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/testing.pyi +198 -0
  797. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/twodim_base.pyi +145 -0
  798. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  799. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ufunc_config.pyi +30 -0
  800. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  801. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/ufuncs.pyi +123 -0
  802. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  803. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/numpy/version.pyi +18 -0
  804. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/orjson/__init__.pyi +32 -0
  805. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/algos.pyi +416 -0
  806. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/arrays.pyi +40 -0
  807. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/byteswap.pyi +5 -0
  808. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/groupby.pyi +216 -0
  809. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/hashing.pyi +9 -0
  810. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/hashtable.pyi +252 -0
  811. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/index.pyi +103 -0
  812. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/indexing.pyi +17 -0
  813. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/internals.pyi +94 -0
  814. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/interval.pyi +174 -0
  815. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/join.pyi +79 -0
  816. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/json.pyi +23 -0
  817. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/lib.pyi +216 -0
  818. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/missing.pyi +16 -0
  819. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/ops.pyi +51 -0
  820. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/ops_dispatch.pyi +5 -0
  821. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/parsers.pyi +77 -0
  822. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/properties.pyi +27 -0
  823. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/reshape.pyi +16 -0
  824. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/sas.pyi +7 -0
  825. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/sparse.pyi +51 -0
  826. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/testing.pyi +12 -0
  827. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslib.pyi +37 -0
  828. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/ccalendar.pyi +12 -0
  829. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/conversion.pyi +14 -0
  830. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/dtypes.pyi +83 -0
  831. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/fields.pyi +62 -0
  832. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/nattype.pyi +141 -0
  833. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/np_datetime.pyi +27 -0
  834. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/offsets.pyi +287 -0
  835. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/parsing.pyi +33 -0
  836. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/period.pyi +135 -0
  837. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/strptime.pyi +14 -0
  838. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/timedeltas.pyi +174 -0
  839. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/timestamps.pyi +241 -0
  840. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/timezones.pyi +21 -0
  841. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/tzconversion.pyi +21 -0
  842. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/tslibs/vectorized.pyi +43 -0
  843. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/window/aggregations.pyi +127 -0
  844. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/window/indexers.pyi +12 -0
  845. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pandas/_libs/writers.pyi +20 -0
  846. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/pydantic_core/_pydantic_core.pyi +1039 -0
  847. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/safetensors/__init__.pyi +149 -0
  848. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +125 -0
  849. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/setuptools/_vendor/more_itertools/__init__.pyi +2 -0
  850. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/setuptools/_vendor/more_itertools/more.pyi +709 -0
  851. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +136 -0
  852. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/tokenizers/__init__.pyi +1238 -0
  853. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/tokenizers/decoders/__init__.pyi +279 -0
  854. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/tokenizers/models/__init__.pyi +591 -0
  855. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/tokenizers/normalizers/__init__.pyi +636 -0
  856. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/tokenizers/pre_tokenizers/__init__.pyi +610 -0
  857. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/tokenizers/processors/__init__.pyi +342 -0
  858. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/tokenizers/trainers/__init__.pyi +156 -0
  859. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_VariableFunctions.pyi +25821 -0
  860. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/__init__.pyi +11384 -0
  861. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_aoti.pyi +24 -0
  862. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_autograd.pyi +138 -0
  863. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_cpu.pyi +13 -0
  864. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_cudnn.pyi +14 -0
  865. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_cusparselt.pyi +1 -0
  866. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_distributed_autograd.pyi +26 -0
  867. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_distributed_c10d.pyi +757 -0
  868. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_distributed_rpc.pyi +188 -0
  869. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_distributed_rpc_testing.pyi +32 -0
  870. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_export.pyi +10 -0
  871. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_functions.pyi +19 -0
  872. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_functorch.pyi +83 -0
  873. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_instruction_counter.pyi +4 -0
  874. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_itt.pyi +5 -0
  875. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_lazy.pyi +26 -0
  876. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_lazy_ts_backend.pyi +12 -0
  877. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_monitor.pyi +58 -0
  878. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_nn.pyi +89 -0
  879. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_nvtx.pyi +9 -0
  880. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_onnx.pyi +39 -0
  881. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_profiler.pyi +246 -0
  882. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_C/_verbose.pyi +3 -0
  883. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/_VF.pyi +25821 -0
  884. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/distributed/optim/zero_redundancy_optimizer.pyi +84 -0
  885. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/jit/_script.pyi +296 -0
  886. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/nn/functional.pyi +688 -0
  887. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/nn/parameter.pyi +43 -0
  888. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/optim/_multi_tensor/__init__.pyi +15 -0
  889. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/return_types.pyi +446 -0
  890. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/utils/_config_typing.pyi +34 -0
  891. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/torch/utils/data/datapipes/datapipe.pyi +697 -0
  892. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/typing_inspection/typing_objects.pyi +406 -0
  893. gradio_themer-0.1.0/venv/lib/python3.13/site-packages/websockets/speedups.pyi +1 -0
@@ -0,0 +1,57 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+ MANIFEST
23
+
24
+ # Virtual environments
25
+ venv/
26
+ env/
27
+ ENV/
28
+ env.bak/
29
+ venv.bak/
30
+ demo_venv/
31
+ *_venv/
32
+ .venv/
33
+
34
+ # IDE
35
+ .vscode/
36
+ .idea/
37
+ *.swp
38
+ *.swo
39
+
40
+ # OS
41
+ .DS_Store
42
+ Thumbs.db
43
+
44
+ # Gradio
45
+ gradio_cached_examples/
46
+ flagged/
47
+
48
+ # Node
49
+ node_modules/
50
+ *.log
51
+ npm-debug.log*
52
+ yarn-debug.log*
53
+ yarn-error.log*
54
+
55
+ # Build artifacts
56
+ *.whl
57
+ *.tar.gz
@@ -0,0 +1,405 @@
1
+ Metadata-Version: 2.4
2
+ Name: gradio_themer
3
+ Version: 0.1.0
4
+ Summary: User-configurable themes for Gradio applications - unlimited custom themes via JSON configuration
5
+ Author-email: Eldar Syzdykov <eldar@utexas.edu>
6
+ License-Expression: MIT
7
+ Keywords: gradio-custom-component,gradio-styling,gradio-themes,ui-themes,user-configurable
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Topic :: Scientific/Engineering
17
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
+ Classifier: Topic :: Scientific/Engineering :: Visualization
19
+ Requires-Python: >=3.8
20
+ Requires-Dist: gradio<6.0,>=4.0
21
+ Provides-Extra: dev
22
+ Requires-Dist: build; extra == 'dev'
23
+ Requires-Dist: twine; extra == 'dev'
24
+ Description-Content-Type: text/markdown
25
+
26
+
27
+ # `gradio_themer`
28
+ <img alt="Static Badge" src="https://img.shields.io/badge/version%20-%200.1.0%20-%20orange">
29
+
30
+ User-configurable themes for Gradio applications - unlimited custom themes via JSON configuration
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install gradio_themer
36
+ ```
37
+
38
+ ## Usage
39
+
40
+ ```python
41
+ """
42
+ Gradio Themer - MCP Server Entry Point
43
+ Clean entry point that exposes only the 4 intended MCP tools.
44
+ """
45
+
46
+ import os
47
+ import gradio as gr
48
+
49
+ # CRITICAL: Enable MCP server mode (as per GRADIO_MCP_HF_SPACES_GUIDE.md)
50
+ os.environ["GRADIO_MCP_SERVER"] = "True"
51
+
52
+ # Import the 4 MCP tools - these will be exposed by the MCP server
53
+ from mcp_tools import (
54
+ setup_package,
55
+ generate_theme,
56
+ convert_css_to_theme,
57
+ generate_app_code,
58
+ )
59
+
60
+ if __name__ == "__main__":
61
+ try:
62
+ import page
63
+
64
+ # Add hidden MCP endpoints to the existing demo
65
+ with page.demo:
66
+ # Add hidden MCP tool endpoints (invisible to users, visible to MCP)
67
+
68
+ # Hidden setup_package endpoint
69
+ setup_btn = gr.Button("Setup Package", visible=False)
70
+ setup_output = gr.JSON(visible=False)
71
+ setup_btn.click(
72
+ fn=setup_package, outputs=setup_output, api_name="setup_package"
73
+ )
74
+
75
+ # Hidden generate_theme endpoint
76
+ theme_name_input = gr.Textbox(visible=False)
77
+ primary_color_input = gr.Textbox(visible=False, value="#3b82f6")
78
+ theme_style_input = gr.Textbox(visible=False, value="light")
79
+ accent_color_input = gr.Textbox(visible=False, value="")
80
+ generate_theme_btn = gr.Button("Generate Theme", visible=False)
81
+ generate_theme_output = gr.JSON(visible=False)
82
+ generate_theme_btn.click(
83
+ fn=generate_theme,
84
+ inputs=[
85
+ theme_name_input,
86
+ primary_color_input,
87
+ theme_style_input,
88
+ accent_color_input,
89
+ ],
90
+ outputs=generate_theme_output,
91
+ api_name="generate_theme",
92
+ )
93
+
94
+ # Hidden convert_css_to_theme endpoint
95
+ css_input = gr.Textbox(visible=False)
96
+ convert_theme_name_input = gr.Textbox(
97
+ visible=False, value="converted_theme"
98
+ )
99
+ user_token_input = gr.Textbox(visible=False, value="")
100
+ model_choice_input = gr.Textbox(visible=False, value="qwen")
101
+ convert_css_btn = gr.Button("Convert CSS", visible=False)
102
+ convert_css_output = gr.Textbox(visible=False)
103
+ convert_css_btn.click(
104
+ fn=convert_css_to_theme,
105
+ inputs=[
106
+ css_input,
107
+ convert_theme_name_input,
108
+ user_token_input,
109
+ model_choice_input,
110
+ ],
111
+ outputs=convert_css_output,
112
+ api_name="convert_css_to_theme",
113
+ )
114
+
115
+ # Hidden generate_app_code endpoint
116
+ app_theme_names_input = gr.Textbox(
117
+ visible=False, value="ocean_breeze,sunset_orange"
118
+ )
119
+ app_title_input = gr.Textbox(visible=False, value="My Themed App")
120
+ include_components_input = gr.Textbox(
121
+ visible=False, value="button,textbox,slider"
122
+ )
123
+ generate_app_btn = gr.Button("Generate App", visible=False)
124
+ generate_app_output = gr.Textbox(visible=False)
125
+ generate_app_btn.click(
126
+ fn=generate_app_code,
127
+ inputs=[
128
+ app_theme_names_input,
129
+ app_title_input,
130
+ include_components_input,
131
+ ],
132
+ outputs=generate_app_output,
133
+ api_name="generate_app_code",
134
+ )
135
+
136
+ # Launch the demo with MCP server enabled
137
+ page.demo.launch(
138
+ mcp_server=True, # CRITICAL: Enable MCP server functionality
139
+ server_name="0.0.0.0",
140
+ server_port=7860,
141
+ share=False,
142
+ debug=True,
143
+ allowed_paths=["./"],
144
+ )
145
+
146
+ except ImportError as e:
147
+ print(f"❌ Error importing demo interface: {e}")
148
+ print("Make sure page.py exists and contains the 'demo' variable")
149
+ exit(1)
150
+ except AttributeError as e:
151
+ print(f"❌ Error accessing demo object: {e}")
152
+ print("Make sure page.py contains a 'demo' variable")
153
+ exit(1)
154
+
155
+ ```
156
+
157
+ ## `GradioThemer`
158
+
159
+ ### Initialization
160
+
161
+ <table>
162
+ <thead>
163
+ <tr>
164
+ <th align="left">name</th>
165
+ <th align="left" style="width: 25%;">type</th>
166
+ <th align="left">default</th>
167
+ <th align="left">description</th>
168
+ </tr>
169
+ </thead>
170
+ <tbody>
171
+ <tr>
172
+ <td align="left"><code>value</code></td>
173
+ <td align="left" style="width: 25%;">
174
+
175
+ ```python
176
+ typing.Union[
177
+ typing.Dict[str, typing.Any], typing.Callable, NoneType
178
+ ][
179
+ typing.Dict[str, typing.Any][str, typing.Any],
180
+ Callable,
181
+ None,
182
+ ]
183
+ ```
184
+
185
+ </td>
186
+ <td align="left"><code>None</code></td>
187
+ <td align="left">Default theme configuration. Should be a dict with 'themeInput', 'themeConfig', and 'generatedCSS' keys.</td>
188
+ </tr>
189
+
190
+ <tr>
191
+ <td align="left"><code>theme_config_path</code></td>
192
+ <td align="left" style="width: 25%;">
193
+
194
+ ```python
195
+ typing.Optional[str][str, None]
196
+ ```
197
+
198
+ </td>
199
+ <td align="left"><code>None</code></td>
200
+ <td align="left">Path to user themes configuration file (JSON). If None, searches for common filenames.</td>
201
+ </tr>
202
+
203
+ <tr>
204
+ <td align="left"><code>label</code></td>
205
+ <td align="left" style="width: 25%;">
206
+
207
+ ```python
208
+ str | None
209
+ ```
210
+
211
+ </td>
212
+ <td align="left"><code>None</code></td>
213
+ <td align="left">The label for this component, displayed above the component if `show_label` is `True`.</td>
214
+ </tr>
215
+
216
+ <tr>
217
+ <td align="left"><code>every</code></td>
218
+ <td align="left" style="width: 25%;">
219
+
220
+ ```python
221
+ float | None
222
+ ```
223
+
224
+ </td>
225
+ <td align="left"><code>None</code></td>
226
+ <td align="left">Continously calls `value` to recalculate it if `value` is a function.</td>
227
+ </tr>
228
+
229
+ <tr>
230
+ <td align="left"><code>inputs</code></td>
231
+ <td align="left" style="width: 25%;">
232
+
233
+ ```python
234
+ typing.Union[
235
+ gradio.components.base.FormComponent,
236
+ typing.Sequence[gradio.components.base.FormComponent],
237
+ set[gradio.components.base.FormComponent],
238
+ NoneType,
239
+ ][
240
+ gradio.components.base.FormComponent,
241
+ typing.Sequence[gradio.components.base.FormComponent][
242
+ gradio.components.base.FormComponent
243
+ ],
244
+ set[gradio.components.base.FormComponent],
245
+ None,
246
+ ]
247
+ ```
248
+
249
+ </td>
250
+ <td align="left"><code>None</code></td>
251
+ <td align="left">Components that are used as inputs to calculate `value` if `value` is a function.</td>
252
+ </tr>
253
+
254
+ <tr>
255
+ <td align="left"><code>show_label</code></td>
256
+ <td align="left" style="width: 25%;">
257
+
258
+ ```python
259
+ bool | None
260
+ ```
261
+
262
+ </td>
263
+ <td align="left"><code>None</code></td>
264
+ <td align="left">If True, will display label.</td>
265
+ </tr>
266
+
267
+ <tr>
268
+ <td align="left"><code>scale</code></td>
269
+ <td align="left" style="width: 25%;">
270
+
271
+ ```python
272
+ int | None
273
+ ```
274
+
275
+ </td>
276
+ <td align="left"><code>None</code></td>
277
+ <td align="left">Relative size compared to adjacent Components.</td>
278
+ </tr>
279
+
280
+ <tr>
281
+ <td align="left"><code>min_width</code></td>
282
+ <td align="left" style="width: 25%;">
283
+
284
+ ```python
285
+ int
286
+ ```
287
+
288
+ </td>
289
+ <td align="left"><code>160</code></td>
290
+ <td align="left">Minimum pixel width.</td>
291
+ </tr>
292
+
293
+ <tr>
294
+ <td align="left"><code>interactive</code></td>
295
+ <td align="left" style="width: 25%;">
296
+
297
+ ```python
298
+ bool | None
299
+ ```
300
+
301
+ </td>
302
+ <td align="left"><code>None</code></td>
303
+ <td align="left">If True, will be rendered as an editable component.</td>
304
+ </tr>
305
+
306
+ <tr>
307
+ <td align="left"><code>visible</code></td>
308
+ <td align="left" style="width: 25%;">
309
+
310
+ ```python
311
+ bool
312
+ ```
313
+
314
+ </td>
315
+ <td align="left"><code>True</code></td>
316
+ <td align="left">If False, component will be hidden.</td>
317
+ </tr>
318
+
319
+ <tr>
320
+ <td align="left"><code>elem_id</code></td>
321
+ <td align="left" style="width: 25%;">
322
+
323
+ ```python
324
+ str | None
325
+ ```
326
+
327
+ </td>
328
+ <td align="left"><code>None</code></td>
329
+ <td align="left">An optional string that is assigned as the id of this component in the HTML DOM.</td>
330
+ </tr>
331
+
332
+ <tr>
333
+ <td align="left"><code>elem_classes</code></td>
334
+ <td align="left" style="width: 25%;">
335
+
336
+ ```python
337
+ list[str] | str | None
338
+ ```
339
+
340
+ </td>
341
+ <td align="left"><code>None</code></td>
342
+ <td align="left">An optional list of strings that are assigned as the classes of this component in the HTML DOM.</td>
343
+ </tr>
344
+
345
+ <tr>
346
+ <td align="left"><code>render</code></td>
347
+ <td align="left" style="width: 25%;">
348
+
349
+ ```python
350
+ bool
351
+ ```
352
+
353
+ </td>
354
+ <td align="left"><code>True</code></td>
355
+ <td align="left">If False, component will not render be rendered in the Blocks context.</td>
356
+ </tr>
357
+
358
+ <tr>
359
+ <td align="left"><code>key</code></td>
360
+ <td align="left" style="width: 25%;">
361
+
362
+ ```python
363
+ int | str | None
364
+ ```
365
+
366
+ </td>
367
+ <td align="left"><code>None</code></td>
368
+ <td align="left">A unique key for this component.</td>
369
+ </tr>
370
+ </tbody></table>
371
+
372
+
373
+ ### Events
374
+
375
+ | name | description |
376
+ |:-----|:------------|
377
+ | `change` | Triggered when the value of the GradioThemer changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |
378
+ | `input` | This listener is triggered when the user changes the value of the GradioThemer. |
379
+ | `submit` | This listener is triggered when the user presses the Enter key while the GradioThemer is focused. |
380
+
381
+
382
+
383
+ ### User function
384
+
385
+ The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).
386
+
387
+ - When used as an Input, the component only impacts the input signature of the user function.
388
+ - When used as an output, the component only impacts the return signature of the user function.
389
+
390
+ The code snippet below is accurate in cases where the component is used as both an input and an output.
391
+
392
+ - **As output:** Is passed, passes the theme configuration as a dict into the function.
393
+ - **As input:** Should return, expects a dict with theme configuration data.
394
+
395
+ ```python
396
+ def predict(
397
+ value: typing.Optional[typing.Dict[str, typing.Any]][
398
+ typing.Dict[str, typing.Any][str, typing.Any], None
399
+ ]
400
+ ) -> typing.Optional[typing.Dict[str, typing.Any]][
401
+ typing.Dict[str, typing.Any][str, typing.Any], None
402
+ ]:
403
+ return value
404
+ ```
405
+