2024-01-19 13:13:02 +08:00
# @gradio/paramviewer
2024-01-19 04:47:01 +08:00
2024-05-30 07:00:00 +08:00
## 0.4.15
### Dependency updates
- @gradio/statustracker@0 .6.0
2024-06-06 22:06:28 +08:00
## 0.4.15
### Dependency updates
- @gradio/statustracker@0 .6.0
2024-05-22 05:01:35 +08:00
## 0.4.14
### Dependency updates
- @gradio/utils@0 .4.2
- @gradio/atoms@0 .7.4
- @gradio/statustracker@0 .5.5
2024-05-16 06:23:53 +08:00
## 0.4.13
### Dependency updates
- @gradio/statustracker@0 .5.4
2024-05-14 07:23:49 +08:00
## 0.4.12
### Dependency updates
- @gradio/statustracker@0 .5.3
2024-05-11 02:31:04 +08:00
## 0.4.11
### Dependency updates
- @gradio/atoms@0 .7.3
- @gradio/statustracker@0 .5.2
2024-05-04 02:06:05 +08:00
## 0.4.10
### Dependency updates
- @gradio/atoms@0 .7.2
- @gradio/utils@0 .4.1
- @gradio/statustracker@0 .5.1
2024-04-26 07:08:27 +08:00
## 0.4.9
### Fixes
- [#8066 ](https://github.com/gradio-app/gradio/pull/8066 ) [`624f9b9` ](https://github.com/gradio-app/gradio/commit/624f9b9477f74a581a6c14119234f9efdfcda398 ) - make gradio dev tools a local dependency rather than bundling. Thanks @pngwn !
### Dependency updates
- @gradio/atoms@0 .7.1
- @gradio/statustracker@0 .5.0
- @gradio/utils@0 .4.0
2024-04-19 02:09:10 +08:00
## 0.4.8
### Dependency updates
- @gradio/utils@0 .3.2
- @gradio/statustracker@0 .4.12
- @gradio/atoms@0 .7.0
2024-04-09 03:07:24 +08:00
## 0.4.7
### Dependency updates
- @gradio/utils@0 .3.1
- @gradio/atoms@0 .6.2
- @gradio/statustracker@0 .4.11
2024-03-28 05:25:36 +08:00
## 0.4.6
### Dependency updates
- @gradio/atoms@0 .6.1
- @gradio/statustracker@0 .4.10
2024-03-26 00:35:44 +08:00
## 0.4.5
### Dependency updates
- @gradio/statustracker@0 .4.9
- @gradio/atoms@0 .6.0
2024-02-23 05:29:11 +08:00
## 0.4.4
### Patch Changes
- Updated dependencies [[`98a2719` ](https://github.com/gradio-app/gradio/commit/98a2719bfb9c64338caf9009891b6c6b0b33ea89 )]:
- @gradio/statustracker@0 .4.8
2024-02-17 04:28:13 +08:00
## 0.4.3
### Patch Changes
- Updated dependencies []:
- @gradio/atoms@0 .5.3
- @gradio/statustracker@0 .4.7
2024-02-15 06:17:50 +08:00
## 0.4.2
### Patch Changes
- Updated dependencies [[`065c5b1` ](https://github.com/gradio-app/gradio/commit/065c5b163c4badb9d9cbd06d627fb4ba086003e7 )]:
- @gradio/utils@0 .3.0
- @gradio/atoms@0 .5.2
- @gradio/statustracker@0 .4.6
2024-02-07 07:19:29 +08:00
## 0.4.1
### Patch Changes
- Updated dependencies [[`fdd1521` ](https://github.com/gradio-app/gradio/commit/fdd15213c24b9cbc58bbc1b6beb4af7c18f48557 )]:
- @gradio/utils@0 .2.2
- @gradio/atoms@0 .5.1
- @gradio/statustracker@0 .4.5
2024-01-26 08:10:24 +08:00
## 0.4.0
### Features
2024-02-07 07:19:29 +08:00
- [#7109 ](https://github.com/gradio-app/gradio/pull/7109 ) [`125a832` ](https://github.com/gradio-app/gradio/commit/125a832ab7ee2b5affa574e8b32c88f430cc6663 ) - generate docs when running `gradio cc build` . Thanks [@pngwn ](https://github.com/pngwn )!
2024-01-26 08:10:24 +08:00
### Fixes
2024-02-07 07:19:29 +08:00
- [#7130 ](https://github.com/gradio-app/gradio/pull/7130 ) [`e7ab406` ](https://github.com/gradio-app/gradio/commit/e7ab4063eb2624820b9f1076960e9596791d9427 ) - Fix ParamViewer css. Thanks [@freddyaboulton ](https://github.com/freddyaboulton )!
2024-01-26 08:10:24 +08:00
2024-01-19 13:13:02 +08:00
## 0.3.0
2024-01-19 05:38:03 +08:00
2024-01-19 13:13:02 +08:00
### Highlights
#### Custom component documentation generator ([#7030](https://github.com/gradio-app/gradio/pull/7030) [`3a944ed`](https://github.com/gradio-app/gradio/commit/3a944ed9f162a224d26959a9c556346a9d205311))
2024-01-19 05:38:03 +08:00
If your custom component has type hints and docstrings for both parameters and return values, you can now automatically generate a documentation page and README.md with no additional effort. Simply run the following command:
```sh
gradio cc docs
```
This will generate a Gradio app that you can upload to spaces providing rich documentation for potential users. The documentation page includes:
- Installation instructions.
- A live embedded demo and working code snippet, pulled from your demo app.
- An API reference for initialising the component, with types, default values and descriptions.
- An explanation of how the component affects the user's predict function inputs and outputs.
- Any additional interfaces or classes that are necessary to understand the API reference.
- Optional links to GitHub, PyPi, and Hugging Face Spaces.
A README will also be generated detailing the same information but in a format that is optimised for viewing on GitHub or PyPi!
2024-01-19 13:13:02 +08:00
2024-02-07 07:19:29 +08:00
Thanks [@pngwn ](https://github.com/pngwn )!
2024-01-19 13:13:02 +08:00
### Features
2024-03-26 00:35:44 +08:00
- [#7069 ](https://github.com/gradio-app/gradio/pull/7069 ) [`07d520c` ](https://github.com/gradio-app/gradio/commit/07d520c7a2590eb5544bd0b17f82ea31ecf43e00 ) - fix versions. Thanks [@pngwn ](https://github.com/pngwn )!