https://github.com/justfairdev/natural
Angular Material components and various utilities
https://github.com/justfairdev/natural
angular hacktoberfast
Last synced: about 1 month ago
JSON representation
Angular Material components and various utilities
- Host: GitHub
- URL: https://github.com/justfairdev/natural
- Owner: justfairdev
- License: mit
- Created: 2024-03-21T20:22:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-01T01:58:15.000Z (almost 2 years ago)
- Last Synced: 2025-07-29T06:56:27.027Z (8 months ago)
- Topics: angular, hacktoberfast
- Language: TypeScript
- Homepage:
- Size: 5.77 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Natural
[](https://github.com/Ecodev/natural/actions)
[](https://www.npmjs.com/package/@ecodev/natural)
[](https://www.npmjs.com/package/@ecodev/natural)
[](https://www.npmjs.com/package/@ecodev/natural)
[](https://gitter.im/Ecodev/natural)
This project is a collection of Angular Material components and various utilities classes for Angular projects.
## Install
```bash
yarn add @ecodev/natural
```
## Development
The most useful commands for development are:
- `yarn dev` to start a development server
- `yarn build-demo` to build the docs locally (it will be published automatically by GitHub Actions)
- `git tag -am 1.2.3 1.2.3 && git push` to publish the lib to npm (via GitHub Actions `release` job)
### i18n
This library is ready to be translated, but it does not ship translations. It is up to the consuming
application to extract and translate strings.
## Components
### Natural Search
This is an Angular component to search for things via configurable facets. Facets may be
configured to use one of the built-in component, or a custom component to input values.
See the component in action on [the demo page](https://ecodev.github.io/natural).
#### Prior work
While the implementation is entirely different, [VisualSearch.js
](https://github.com/documentcloud/visualsearch/) was an important inspiration.