axiom-coding-agent-setup 1.0.9 → 1.0.11
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.
- package/.agents/skills/agent-browser/SKILL.md +55 -0
- package/.agents/skills/developing-with-streamlit/SKILL.md +220 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-chat-ui/SKILL.md +195 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-custom-components-v2/SKILL.md +233 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-custom-components-v2/references/packaged-components.md +212 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-custom-components-v2/references/state-sync.md +149 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-custom-components-v2/references/theme-css-variables.md +243 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-custom-components-v2/references/troubleshooting.md +121 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-dashboards/SKILL.md +147 -0
- package/.agents/skills/developing-with-streamlit/skills/building-streamlit-multipage-apps/SKILL.md +218 -0
- package/.agents/skills/developing-with-streamlit/skills/choosing-streamlit-selection-widgets/SKILL.md +139 -0
- package/.agents/skills/developing-with-streamlit/skills/connecting-streamlit-to-snowflake/SKILL.md +188 -0
- package/.agents/skills/developing-with-streamlit/skills/creating-streamlit-themes/SKILL.md +486 -0
- package/.agents/skills/developing-with-streamlit/skills/displaying-streamlit-data/SKILL.md +199 -0
- package/.agents/skills/developing-with-streamlit/skills/improving-streamlit-design/SKILL.md +191 -0
- package/.agents/skills/developing-with-streamlit/skills/optimizing-streamlit-performance/SKILL.md +323 -0
- package/.agents/skills/developing-with-streamlit/skills/organizing-streamlit-code/SKILL.md +91 -0
- package/.agents/skills/developing-with-streamlit/skills/setting-up-streamlit-environment/SKILL.md +128 -0
- package/.agents/skills/developing-with-streamlit/skills/using-streamlit-cli/SKILL.md +165 -0
- package/.agents/skills/developing-with-streamlit/skills/using-streamlit-custom-components/SKILL.md +170 -0
- package/.agents/skills/developing-with-streamlit/skills/using-streamlit-layouts/SKILL.md +229 -0
- package/.agents/skills/developing-with-streamlit/skills/using-streamlit-markdown/SKILL.md +207 -0
- package/.agents/skills/developing-with-streamlit/skills/using-streamlit-session-state/SKILL.md +144 -0
- package/.agents/skills/developing-with-streamlit/templates/.gitattributes +3 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/README.md +188 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-companies/pyproject.toml +12 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-companies/streamlit_app.py +365 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-compute/pyproject.toml +12 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-compute/streamlit_app.py +461 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-compute-snowflake/.streamlit/secrets.toml.example +20 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-compute-snowflake/pyproject.toml +11 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-compute-snowflake/snowflake.yml +18 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-compute-snowflake/streamlit_app.py +527 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-feature-usage/pyproject.toml +12 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-feature-usage/streamlit_app.py +307 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-metrics/pyproject.toml +12 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-metrics/streamlit_app.py +426 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-metrics-snowflake/.streamlit/secrets.toml.example +20 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-metrics-snowflake/pyproject.toml +11 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-metrics-snowflake/snowflake.yml +18 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-metrics-snowflake/streamlit_app.py +463 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-seattle-weather/pyproject.toml +12 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-seattle-weather/streamlit_app.py +252 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-stock-peers/pyproject.toml +12 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-stock-peers/streamlit_app.py +342 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-stock-peers-snowflake/.streamlit/secrets.toml.example +20 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-stock-peers-snowflake/pyproject.toml +11 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-stock-peers-snowflake/snowflake.yml +18 -0
- package/.agents/skills/developing-with-streamlit/templates/apps/dashboard-stock-peers-snowflake/streamlit_app.py +384 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/README.md +128 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/dracula.toml +39 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/github.toml +37 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/minimal.toml +39 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/nord.toml +39 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/snowflake.toml +42 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/solarized-light.toml +38 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/spotify.toml +34 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_configs/stripe.toml +35 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_shared/streamlit_app.py +336 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/_templates/pyproject.toml.tmpl +12 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/dracula/.streamlit/config.toml +39 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/dracula/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/dracula/streamlit_app.py +337 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/github/.streamlit/config.toml +37 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/github/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/github/streamlit_app.py +337 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/manage.py +332 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/minimal/.streamlit/config.toml +39 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/minimal/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/minimal/streamlit_app.py +337 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/nord/.streamlit/config.toml +39 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/nord/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/nord/streamlit_app.py +337 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/snowflake/.streamlit/config.toml +42 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/snowflake/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/snowflake/streamlit_app.py +337 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/solarized-light/.streamlit/config.toml +38 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/solarized-light/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/solarized-light/streamlit_app.py +337 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/spotify/.streamlit/config.toml +34 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/spotify/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/spotify/streamlit_app.py +337 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/stripe/.streamlit/config.toml +35 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/stripe/pyproject.toml +10 -0
- package/.agents/skills/developing-with-streamlit/templates/themes/stripe/streamlit_app.py +337 -0
- package/.agents/skills/fastapi/SKILL.md +436 -0
- package/.agents/skills/fastapi/references/dependencies.md +142 -0
- package/.agents/skills/fastapi/references/other-tools.md +76 -0
- package/.agents/skills/fastapi/references/streaming.md +105 -0
- package/.agents/skills/frontend-design/LICENSE.txt +177 -0
- package/.agents/skills/frontend-design/SKILL.md +42 -0
- package/.agents/skills/gradio/SKILL.md +84 -0
- package/.agents/skills/gradio/references/api-signatures.md +115 -0
- package/.agents/skills/gradio/references/event-listeners.md +130 -0
- package/.agents/skills/gradio/references/examples.md +613 -0
- package/.agents/skills/ui-ux-pro-max/SKILL.md +659 -0
- package/.agents/skills/ui-ux-pro-max/data +1 -0
- package/.agents/skills/ui-ux-pro-max/scripts +1 -0
- package/.agents/stack.md +187 -187
- package/.env.axiom +8 -0
- package/AGENTS.md +2 -1
- package/README.md +19 -3
- package/bin/cli.js +11 -1
- package/opencode.json +12 -4
- package/package.json +1 -1
- package/skills-lock.json +36 -0
- package/.agents/skills/n8n-patterns/SKILL.md +0 -272
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
# Event Listeners
|
|
2
|
+
|
|
3
|
+
Events supported by each component.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## Event Listener Signature
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
component.event_name(
|
|
10
|
+
fn: Callable | None | Literal["decorator"] = "decorator",
|
|
11
|
+
inputs: Component | Sequence[Component] | set[Component] | None = None,
|
|
12
|
+
outputs: Component | Sequence[Component] | set[Component] | None = None,
|
|
13
|
+
api_name: str | None = None,
|
|
14
|
+
api_description: str | None | Literal[False] = None,
|
|
15
|
+
scroll_to_output: bool = False,
|
|
16
|
+
show_progress: Literal["full", "minimal", "hidden"] = "full",
|
|
17
|
+
show_progress_on: Component | Sequence[Component] | None = None,
|
|
18
|
+
queue: bool = True,
|
|
19
|
+
batch: bool = False,
|
|
20
|
+
max_batch_size: int = 4,
|
|
21
|
+
preprocess: bool = True,
|
|
22
|
+
postprocess: bool = True,
|
|
23
|
+
cancels: dict[str, Any] | list[dict[str, Any]] | None = None,
|
|
24
|
+
trigger_mode: Literal["once", "multiple", "always_last"] | None = None,
|
|
25
|
+
js: str | Literal[True] | None = None,
|
|
26
|
+
concurrency_limit: int | None | Literal["default"] = "default",
|
|
27
|
+
concurrency_id: str | None = None,
|
|
28
|
+
api_visibility: Literal["public", "private", "undocumented"] = "public",
|
|
29
|
+
time_limit: int | None = None,
|
|
30
|
+
stream_every: float = 0.5,
|
|
31
|
+
key: int | str | tuple[int | str, ...] | None = None,
|
|
32
|
+
validator: Callable | None = None,
|
|
33
|
+
) -> Dependency
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Supported Events by Component
|
|
37
|
+
|
|
38
|
+
- **AnnotatedImage**: select
|
|
39
|
+
|
|
40
|
+
- **Audio**: stream, change, clear, play, pause, stop, pause, start_recording, pause_recording, stop_recording, upload, input
|
|
41
|
+
|
|
42
|
+
- **BarPlot**: select, double_click
|
|
43
|
+
|
|
44
|
+
- **BrowserState**: change
|
|
45
|
+
|
|
46
|
+
- **Button**: click
|
|
47
|
+
|
|
48
|
+
- **Chatbot**: change, select, like, retry, undo, example_select, option_select, clear, copy, edit
|
|
49
|
+
|
|
50
|
+
- **Checkbox**: change, input, select
|
|
51
|
+
|
|
52
|
+
- **CheckboxGroup**: change, input, select
|
|
53
|
+
|
|
54
|
+
- **ClearButton**: click
|
|
55
|
+
|
|
56
|
+
- **Code**: change, input, focus, blur
|
|
57
|
+
|
|
58
|
+
- **ColorPicker**: change, input, release, submit, focus, blur
|
|
59
|
+
|
|
60
|
+
- **Dataframe**: change, input, select, edit
|
|
61
|
+
|
|
62
|
+
- **Dataset**: click, select
|
|
63
|
+
|
|
64
|
+
- **DateTime**: change, submit
|
|
65
|
+
|
|
66
|
+
- **DeepLinkButton**: click
|
|
67
|
+
|
|
68
|
+
- **Dialogue**: change, input, submit
|
|
69
|
+
|
|
70
|
+
- **DownloadButton**: click
|
|
71
|
+
|
|
72
|
+
- **Dropdown**: change, input, select, focus, blur, key_up
|
|
73
|
+
|
|
74
|
+
- **DuplicateButton**: click
|
|
75
|
+
|
|
76
|
+
- **File**: change, select, clear, upload, delete, download
|
|
77
|
+
|
|
78
|
+
- **FileExplorer**: change, input, select
|
|
79
|
+
|
|
80
|
+
- **Gallery**: select, upload, change, delete, preview_close, preview_open
|
|
81
|
+
|
|
82
|
+
- **HTML**: change, input, click, double_click, submit, stop, edit, clear, play, pause, end, start_recording, pause_recording, stop_recording, focus, blur, upload, release, select, stream, like, example_select, option_select, load, key_up, apply, delete, tick, undo, retry, expand, collapse, download, copy
|
|
83
|
+
|
|
84
|
+
- **HighlightedText**: change, select
|
|
85
|
+
|
|
86
|
+
- **Image**: clear, change, stream, select, upload, input
|
|
87
|
+
|
|
88
|
+
- **ImageEditor**: clear, change, input, select, upload, apply
|
|
89
|
+
|
|
90
|
+
- **ImageSlider**: clear, change, stream, select, upload, input
|
|
91
|
+
|
|
92
|
+
- **JSON**: change
|
|
93
|
+
|
|
94
|
+
- **Label**: change, select
|
|
95
|
+
|
|
96
|
+
- **LinePlot**: select, double_click
|
|
97
|
+
|
|
98
|
+
- **LoginButton**: click
|
|
99
|
+
|
|
100
|
+
- **Markdown**: change, copy
|
|
101
|
+
|
|
102
|
+
- **Model3D**: change, upload, edit, clear
|
|
103
|
+
|
|
104
|
+
- **MultimodalTextbox**: change, input, select, submit, focus, blur, stop
|
|
105
|
+
|
|
106
|
+
- **Navbar**: change
|
|
107
|
+
|
|
108
|
+
- **Number**: change, input, submit, focus, blur
|
|
109
|
+
|
|
110
|
+
- **ParamViewer**: change, upload
|
|
111
|
+
|
|
112
|
+
- **Plot**: change
|
|
113
|
+
|
|
114
|
+
- **Radio**: select, change, input
|
|
115
|
+
|
|
116
|
+
- **ScatterPlot**: select, double_click
|
|
117
|
+
|
|
118
|
+
- **SimpleImage**: clear, change, upload
|
|
119
|
+
|
|
120
|
+
- **Slider**: change, input, release
|
|
121
|
+
|
|
122
|
+
- **State**: change
|
|
123
|
+
|
|
124
|
+
- **Textbox**: change, input, select, submit, focus, blur, stop, copy
|
|
125
|
+
|
|
126
|
+
- **Timer**: tick
|
|
127
|
+
|
|
128
|
+
- **UploadButton**: click, upload
|
|
129
|
+
|
|
130
|
+
- **Video**: change, clear, start_recording, stop_recording, stop, play, pause, end, upload, input
|