https://github.com/paraboly/web-component-chmod-checkbox
CHMOD based animated checkbox WebComponent with StencilJS
https://github.com/paraboly/web-component-chmod-checkbox
animated animated-checkbox animation checkbox chmod chmod-checkbox freakycoder front-end html jsx paraboly stenciljs ui web web-component web-components
Last synced: 3 months ago
JSON representation
CHMOD based animated checkbox WebComponent with StencilJS
- Host: GitHub
- URL: https://github.com/paraboly/web-component-chmod-checkbox
- Owner: Paraboly
- License: mit
- Created: 2019-09-30T12:47:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-11T08:19:01.000Z (almost 4 years ago)
- Last Synced: 2025-02-01T00:23:43.781Z (4 months ago)
- Topics: animated, animated-checkbox, animation, checkbox, chmod, chmod-checkbox, freakycoder, front-end, html, jsx, paraboly, stenciljs, ui, web, web-component, web-components
- Language: TypeScript
- Homepage: https://paraboly.com
- Size: 285 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://github.com/WrathChaos/web-component-chmod-checkbox)
[](https://www.npmjs.com/package/@paraboly/chmod-checkbox)
[](https://www.npmjs.com/package/@paraboly/chmod-checkbox)

[](https://opensource.org/licenses/MIT)
[](https://github.com/prettier/prettier)
![]()
![]()
Chmod Checkbox comes with three (3) animated checkbox which includes READ, WRITE and EXECUTE values. These text values are customizable. It has built-in chmod calculator for each value.
## Fundamental CHMOD Architecture
| Value | R | W | X | Description |
| ----- | --- | --- | --- | ------------- |
| 0 | 0 | 0 | 0 | NO_PERMISSION |
| 1 | 1 | 0 | 0 | READ |
| 2 | 0 | 1 | 0 | WRITE |
| 3 | 1 | 1 | 0 | READ/WRITE |
| 4 | 0 | 0 | 1 | EXECUTE |
| 5 | 1 | 0 | 1 | READ/EXECUTE |
| 6 | 0 | 1 | 1 | WRITE/EXECUTE |
| 7 | 1 | 1 | 1 | ALL |## Installation
## First Install the Peer Dependency
This peer dependency is essential for this library! You need to install it
### [pwc-animated-checkbox](https://github.com/Paraboly/pwc-animated-checkbox)
```js
npm i @paraboly/pwc-animated-checkbox
```### Script tag (Recommended: Painless)
- Put a script tag similar to this `` in the head of your index.html
- Then you can use the element anywhere in your template, JSX, html etc### Node Modules
- Run `npm install @paraboly/chmod-checkbox --save`
- Put a script tag similar to this `` in the head of your index.html
- Then you can use the element anywhere in your template, JSX, html etc### In a stencil-starter app
- Run `npm install @paraboly/chmod-checkbox --save`
- Add an import to the npm packages `import @paraboly/chmod-checkbox;`
- Then you can use the element anywhere in your template, JSX, html etc# Usage
```html
```
## How to get value from a prop?
```js
document.querySelectorAll("chmod-checkbox")[0].permission
document.querySelectorAll("chmod-checkbox")[0].first
document.querySelectorAll("chmod-checkbox")[0].middle
document.querySelectorAll("chmod-checkbox")[0].last```
### Configuration - Props
| Property | Type | Default | Description |
| ---------- | :----: | :-----: | --------------------------------- |
| permission | number | 0 | get the changing permission value |### Future Plans
- [x] ~~LICENSE~~
- [ ] Customizable colors
- [x] ~~Make another web-component with just animated checkbox and implement it on this library~~
- [ ] Write an article about the lib on Medium## Author
FreakyCoder, [email protected]
## License
WebComponent Chmod Checkbox is available under the MIT license. See the LICENSE file for more info.