railsui 3.2.2 → 3.2.3
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/Gemfile.lock +1 -1
- data/app/views/railsui/themes/corgie/components/pagination/_simple.html.erb +36 -79
- data/lib/railsui/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65c8f8fddc779bebbaf3f7b9a5dc11ace2c285964c8306d18c6c60e7696fb400
|
4
|
+
data.tar.gz: f98fb4101382bf441cab02f2755802aca10b03809d4ec69ebb1710188285d256
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bbcb99405b65d34131567531fc8e6508fa91a11c5c2cd6f987fc7e9c3cab3d9e732d9a4cefceb6dd18734617a029d3cd34210f1c000a7240704066f2e3c8a19
|
7
|
+
data.tar.gz: cbfb85ad4795f7b4666c1113524f3def71fac6ec4c173f693da681cf863d8a6a12de99428a838fd33f2c284586c2f3a1b02a32cc56cdaf74f3d9a4141eac1694
|
data/Gemfile.lock
CHANGED
@@ -23,88 +23,45 @@
|
|
23
23
|
|
24
24
|
<% content_for :example, flush: true do %>
|
25
25
|
<% content_for :html, flush: true do %>
|
26
|
-
<
|
27
|
-
<
|
28
|
-
<
|
29
|
-
<
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
</
|
34
|
-
<
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
<
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
</li>
|
44
|
-
<li>
|
45
|
-
<span href="#" class="py-2 px-4 block border-t-2 border-transparent rounded pointer-events-none select-none">…</span>
|
46
|
-
</li>
|
47
|
-
<li>
|
48
|
-
<a href="#" class="py-2 px-4 block border-t-2 border-transparent rounded hover:bg-neutral-50/50 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200">8</a>
|
49
|
-
</li>
|
50
|
-
<li>
|
51
|
-
<a href="#" class="py-2 px-4 block border-t-2 border-transparent rounded hover:bg-neutral-50/50 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200">9</a>
|
52
|
-
</li>
|
53
|
-
<li>
|
54
|
-
<a href="#" class="py-2 px-4 block border-t-2 border-transparent rounded hover:bg-neutral-50/50 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200">10</a>
|
55
|
-
</li>
|
56
|
-
|
57
|
-
</div>
|
58
|
-
<li class="flex-1 flex justify-end items-center">
|
59
|
-
<a href="#" class="flex justify-center items-center space-x-2 py-2 px-4 rounded hover:bg-neutral-50/50 group hover:text-primary-600 sm:w-auto w-full sm:bg-transparent bg-neutral-50 sm:mt-0 mt-3 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200">
|
60
|
-
<span>Next</span>
|
61
|
-
<%%= icon "arrow-small-right", class: "w-4 h-4 text-neutral-400 group-hover:text-primary-500 dark:group-hover:text-neutral-200" %>
|
62
|
-
</a>
|
63
|
-
</li>
|
64
|
-
</ul>
|
65
|
-
</nav>
|
26
|
+
<div class="flex justify-center mt-16">
|
27
|
+
<nav class="flex gap-2 items-center" aria-label="Pagination">
|
28
|
+
<a href="#" class="btn btn-white size-10">
|
29
|
+
<span class="sr-only">Previous</span>
|
30
|
+
<%%= icon "chevron-left", class: "size-5" %>
|
31
|
+
</a>
|
32
|
+
<a href="#" class="btn btn-primary dark:bg-black dark:shadow-sm size-10">1</a>
|
33
|
+
<a href="#" class="btn btn-white size-10">2</a>
|
34
|
+
<a href="#" class="btn btn-white size-10">3</a>
|
35
|
+
<span class="btn btn-white size-10 pointer-events-none cursor-none">...</span>
|
36
|
+
<a href="#" class="btn btn-white size-10">8</a>
|
37
|
+
<a href="#" class="btn btn-white size-10">
|
38
|
+
<span class="sr-only">Next</span>
|
39
|
+
<%%= icon "chevron-right", class: "size-5" %>
|
40
|
+
</a>
|
41
|
+
</nav>
|
42
|
+
</div>
|
66
43
|
<% end %>
|
67
44
|
|
68
45
|
<% content_for :erb, flush: true do %>
|
69
|
-
<
|
70
|
-
<
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
</
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
<span href="#" class="py-2 px-4 block border-t-2 border-transparent rounded pointer-events-none select-none">…</span>
|
89
|
-
</li>
|
90
|
-
<li>
|
91
|
-
<%%= link_to "8", "#", class:"py-2 px-4 block border-t-2 border-transparent rounded hover:bg-neutral-50/50 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200" %>
|
92
|
-
</li>
|
93
|
-
<li>
|
94
|
-
<%%= link_to "9", "#", class:"py-2 px-4 block border-t-2 border-transparent rounded hover:bg-neutral-50/50 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200" %>
|
95
|
-
</li>
|
96
|
-
<li>
|
97
|
-
<%%= link_to "10", "#", class:"py-2 px-4 block border-t-2 border-transparent rounded hover:bg-neutral-50/50 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200" %>
|
98
|
-
</li>
|
99
|
-
</div>
|
100
|
-
<li class="flex-1 flex justify-end items-center">
|
101
|
-
<%%= link_to "#", class: "flex justify-center items-center space-x-2 py-2 px-4 rounded hover:bg-neutral-50/50 group hover:text-primary-600 sm:w-auto w-full sm:bg-transparent bg-neutral-50 sm:mt-0 mt-3 dark:hover:bg-neutral-500/30 dark:hover:text-neutral-200" do %>
|
102
|
-
<span>Next</span>
|
103
|
-
<%%= icon "arrow-small-right", class: "w-4 h-4 text-neutral-400 group-hover:text-primary-500 dark:group-hover:text-neutral-200" %>
|
104
|
-
<%% end %>
|
105
|
-
</li>
|
106
|
-
</ul>
|
107
|
-
</nav>
|
46
|
+
<div class="flex justify-center mt-16">
|
47
|
+
<nav class="flex gap-2 items-center" aria-label="Pagination">
|
48
|
+
<%%= link_to "#", class: "btn btn-white size-10" do %>
|
49
|
+
<span class="sr-only">Previous</span>
|
50
|
+
<%%= icon "chevron-left", class: "size-5" %>
|
51
|
+
<%% end %>
|
52
|
+
|
53
|
+
<%%= link_to "1", "#", class: "btn btn-primary dark:bg-black dark:shadow-sm size-10" %>
|
54
|
+
<%%= link_to "2", "#", class: "btn btn-white size-10" %>
|
55
|
+
<%%= link_to "3", "#", class: "btn btn-white size-10" %>
|
56
|
+
<span class="btn btn-white size-10 pointer-events-none cursor-none">...</span>
|
57
|
+
<%%= link_to "8", "#", class: "btn btn-white size-10" %>
|
58
|
+
|
59
|
+
<%%= link_to "9", "#", class: "btn btn-white size-10" %>
|
60
|
+
<span class="sr-only">Next</span>
|
61
|
+
<%%= icon "chevron-right", class: "size-5" %>
|
62
|
+
<%% end %>
|
63
|
+
</nav>
|
64
|
+
</div>
|
108
65
|
<% end %>
|
109
66
|
|
110
67
|
|
data/lib/railsui/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: railsui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Leverenz
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-08-
|
10
|
+
date: 2025-08-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: rails
|