docs: add djc-heroicons to community examples (#896)

This commit is contained in:
Juro Oravec 2025-01-08 21:58:43 +01:00 committed by GitHub
parent 3bbd4326e6
commit 6c2a687d69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 4 deletions

View file

@ -47,6 +47,8 @@
- You can disable or customize Media inheritance by setting `extend` attribute on the `Component.Media` nested class. This work similarly to Django's [`Media.extend`](https://docs.djangoproject.com/en/5.1/topics/forms/media/#extend).
- When child component defines either `template` or `template_file`, both of parent's `template` and `template_file` are ignored. The same applies to `js_file` and `css_file`.
- Autodiscovery now ignores files and directories that start with an underscore (`_`), except `__init__.py`
- The [Signals](https://docs.djangoproject.com/en/5.1/topics/signals/) emitted by or during the use of django-components are now documented, together the `template_rendered` signal.
## v0.123

View file

@ -142,6 +142,8 @@ One of our goals with `django-components` is to make it easy to share components
- [django-htmx-components](https://github.com/iwanalabs/django-htmx-components): A set of components for use with [htmx](https://htmx.org/). Try out the [live demo](https://dhc.iwanalabs.com/).
- [djc-heroicons](https://pypi.org/project/djc-heroicons/): A component that renders icons from [Heroicons.com](https://heroicons.com/).
## Contributing and development
Get involved or sponsor this project - [See here](https://emilstenstrom.github.io/django-components/dev/overview/contributing/)

View file

@ -3,7 +3,9 @@ title: Authoring component libraries
weight: 8
---
You can publish and share your components for others to use. Here are the steps to do so:
You can publish and share your components for others to use. Below you will find the steps to do so.
For live examples, see the [Community examples](../../overview/community.md#community-examples).
## Writing component libraries

View file

@ -16,3 +16,5 @@ One of our goals with `django-components` is to make it easy to share components
If you have a set of components that you think would be useful to others, please open a pull request to add them to the list below.
- [django-htmx-components](https://github.com/iwanalabs/django-htmx-components): A set of components for use with [htmx](https://htmx.org/). Try out the [live demo](https://dhc.iwanalabs.com/).
- [djc-heroicons](https://pypi.org/project/djc-heroicons/): A component that renders icons from [Heroicons.com](https://heroicons.com/).

View file

@ -142,9 +142,7 @@ to see the latest features and fixes.
## Community examples
One of our goals with `django-components` is to make it easy to share components between projects. If you have a set of components that you think would be useful to others, please open a pull request to add them to the list below.
- [django-htmx-components](https://github.com/iwanalabs/django-htmx-components): A set of components for use with [htmx](https://htmx.org/). Try out the [live demo](https://dhc.iwanalabs.com/).
One of our goals with `django-components` is to make it easy to share components between projects. Head over to the [Community examples](./community.md#community-examples) to see some examples.
## Contributing and development