avo-rhino_field 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +16 -0
- data/app/assets/builds/avo-rhino_field.css +1004 -0
- data/app/assets/builds/avo-rhino_field.css.map +1 -0
- data/app/assets/builds/avo-rhino_field.js +29477 -0
- data/app/assets/builds/avo-rhino_field.js.map +7 -0
- data/app/assets/stylesheets/avo-rhino_field.css +19 -0
- data/app/assets/svgs/avo/gradient.svg +3 -0
- data/app/components/avo/fields/rhino_field/edit_component.html.erb +58 -0
- data/app/components/avo/fields/rhino_field/edit_component.rb +21 -0
- data/app/components/avo/fields/rhino_field/show_component.html.erb +14 -0
- data/app/components/avo/fields/rhino_field/show_component.rb +4 -0
- data/avo-rhino_field.gemspec +19 -0
- data/lib/avo/rhino_field/engine.rb +24 -0
- data/lib/avo/rhino_field/fields/rhino_field.rb +21 -0
- data/lib/avo/rhino_field/version.rb +5 -0
- data/lib/avo/rhino_field.rb +13 -0
- metadata +57 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e7aec35556234089518c72a1314cecb1836e3f47fcfc6cb89fc849175be65561
|
4
|
+
data.tar.gz: 3822aa64d2f78d877541a014cb28523b78eae4e464d001ae56793cf00b20c50d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3eda4c22cc990b70437fa1c9a402114728df1911c98eb02cc4c896c45c15c4e2a1d7c4af415356f02672aa2a3a2437799e486b42c2b3f8e236e9c2edcac81286
|
7
|
+
data.tar.gz: afff2c7d30daf2f51fcb4e18025edc4f684ec9f5dad3158a85765b6bd3c4e1bf7f4e53f1a0ead5d20d778ffe2290ab9ba5590e9cc4d9b72c534e7489b9574372
|
data/README.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Avo Rhino Field
|
2
|
+
|
3
|
+
A simple Rhino field for [avo-hq/avo](https://github.com/avo-hq/avo), a Rails Admin Panel and Internal Tool Builder.
|
4
|
+
|
5
|
+
Docs available at [https://docs.avohq.io/3.0/fields/rhino.html](https://docs.avohq.io/3.0/fields/rhino.html)
|
6
|
+
|
7
|
+
## Usage
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
field :body, as: :rhino
|
11
|
+
```
|
12
|
+
|
13
|
+
### TODO
|
14
|
+
|
15
|
+
- image flicker when selected/deselected
|
16
|
+
|