coupdoeil 1.0.0.pre.rc1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -1
- data/lib/coupdoeil/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76c263c22c11fb3ffe7fa96da1d9a3dcfe12dd209b57b999ffc3eb0623c6babf
|
4
|
+
data.tar.gz: 61ba2b5faee4080f7db503c7ae7869015a091970e10d6587f7fc3123a07da00f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f94fb2662bd3b9915860cba9d13bc1a209e8e670820ffb1d4294b1ba0808103df441e3a75ed064e0b22676963ee3fa60aa902c03a0d6073f2981ed026435700c
|
7
|
+
data.tar.gz: ba5e0d524441b0199bf8f9175a01efa6f8c9fe99cd6f7992f5ce4444b878eed62bad7056f63000ff8be9a04b0b24fd9531e4d37ae72208bdecffab37b15e929a
|
data/README.md
CHANGED
@@ -6,6 +6,8 @@ A framework to easily handle popovers.
|
|
6
6
|
## Documentation
|
7
7
|
See [coupdoeil.org](https://coupdoeil.org) for full documentation.
|
8
8
|
|
9
|
+
There is also an [introduction article I wrote for the first release.](https://dev.to/pagehey/coupdoeil-ruby-gem-174a)
|
10
|
+
|
9
11
|
## Overview
|
10
12
|
|
11
13
|
### What is a Coupdoeil::Popover?
|
@@ -23,7 +25,12 @@ Click to toggle examples
|
|
23
25
|
<summary><i>A form in a popup</i></summary>
|
24
26
|
<img src="https://coupdoeil.org/overview-example-2.gif" alt="popover example" />
|
25
27
|
</details>
|
26
|
-
|
28
|
+
<details>
|
29
|
+
<summary><i>A side menu with sub items</i></summary>
|
30
|
+
<img src="https://coupdoeil.org/overview-example-3.gif" alt="side menu with sub items popover example" />
|
31
|
+
</details>
|
32
|
+
|
33
|
+
[See more use-cases in documentation](https://coupdoeil.org/case-studies.html)
|
27
34
|
|
28
35
|
The current implementation takes inspiration from both ViewComponent and ActionMailer, to make it as easy as possible to use while offering a wide range of possibilities.
|
29
36
|
|
@@ -57,6 +64,8 @@ Which is embedded by doing so:
|
|
57
64
|
</div>
|
58
65
|
```
|
59
66
|
|
67
|
+
|
68
|
+
|
60
69
|
### Why use Coupdoeil popovers?
|
61
70
|
|
62
71
|
The concept of 'quick look' allowed by popovers can really improve UX by avoiding the need to navigate to another page and back again just to check summary for a resource.
|
data/lib/coupdoeil/version.rb
CHANGED