web47core 3.2.59 → 3.2.61
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/app/helpers/model_modal_helper.rb +2 -2
- data/app/views/icons/_square-rounded-x-filled.html.erb +1 -0
- data/app/views/icons/_square-rounded-x-outline.html.erb +1 -0
- data/app/views/icons/_user-circle.html.erb +1 -0
- data/config/locales/en.yml +2 -0
- data/lib/web47core/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d511fc296a283d6eb8b57354a60b9dbf6ef20ceb289f32e21c4f30b69e50d863
|
4
|
+
data.tar.gz: 8feae554ac2d17955fecbe764d31f1e01d5f3ac1425264e33bcf7f8474e46d9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d69a96b9280512aca61dcad945b8a5b200cdeb44a49bd61acad23b0f0f54807f8380a4db24daa652b77350584fde027a0bce782ebd456fac2f1c1c0ab479a6c7
|
7
|
+
data.tar.gz: 2b883da89af3ccfd3209e0051d5f117d00c0a26bcfb760de83cfc1aca7112b0ef5fb55da4542e2c4cb6df3b7a39cd9a4ac091fdfc2dae2472bc7984b92884332
|
@@ -229,7 +229,7 @@ module ModelModalHelper
|
|
229
229
|
content_tag(:div, class: 'modal-footer') do
|
230
230
|
concat(content_tag(:button, class: 'btn me-auto', data: { bs_dismiss: :modal }) do
|
231
231
|
concat(I18n.t('ui_form.actions.close'))
|
232
|
-
concat(svg_icon(:close))
|
232
|
+
concat(svg_icon(:close, classes: %w[ms-2]))
|
233
233
|
end)
|
234
234
|
concat(edit_modal_tag(model, edit_path))
|
235
235
|
end
|
@@ -240,7 +240,7 @@ module ModelModalHelper
|
|
240
240
|
|
241
241
|
content_tag(:a, href: path, class: 'modal-action') do
|
242
242
|
concat(I18n.t('ui_form.actions.edit'))
|
243
|
-
concat(svg_icon(:edit))
|
243
|
+
concat(svg_icon(:edit, classes: %w[ms-2]))
|
244
244
|
end
|
245
245
|
end
|
246
246
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
<path d="M12 2l.324 .001l.318 .004l.616 .017l.299 .013l.579 .034l.553 .046c4.785 .464 6.732 2.411 7.196 7.196l.046 .553l.034 .579c.005 .098 .01 .198 .013 .299l.017 .616l.005 .642l-.005 .642l-.017 .616l-.013 .299l-.034 .579l-.046 .553c-.464 4.785 -2.411 6.732 -7.196 7.196l-.553 .046l-.579 .034c-.098 .005 -.198 .01 -.299 .013l-.616 .017l-.642 .005l-.642 -.005l-.616 -.017l-.299 -.013l-.579 -.034l-.553 -.046c-4.785 -.464 -6.732 -2.411 -7.196 -7.196l-.046 -.553l-.034 -.579a28.058 28.058 0 0 1 -.013 -.299l-.017 -.616c-.003 -.21 -.005 -.424 -.005 -.642l.001 -.324l.004 -.318l.017 -.616l.013 -.299l.034 -.579l.046 -.553c.464 -4.785 2.411 -6.732 7.196 -7.196l.553 -.046l.579 -.034c.098 -.005 .198 -.01 .299 -.013l.616 -.017c.21 -.003 .424 -.005 .642 -.005zm-1.489 7.14a1 1 0 0 0 -1.218 1.567l1.292 1.293l-1.292 1.293l-.083 .094a1 1 0 0 0 1.497 1.32l1.293 -1.292l1.293 1.292l.094 .083a1 1 0 0 0 1.32 -1.497l-1.292 -1.293l1.292 -1.293l.083 -.094a1 1 0 0 0 -1.497 -1.32l-1.293 1.292l-1.293 -1.292l-.094 -.083z" fill="currentColor" stroke-width="0" />
|
@@ -0,0 +1 @@
|
|
1
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M10 10l4 4m0 -4l-4 4" /><path d="M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z" />
|
@@ -0,0 +1 @@
|
|
1
|
+
<path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M12 10m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0" /><path d="M6.168 18.849a4 4 0 0 1 3.832 -2.849h4a4 4 0 0 1 3.834 2.855" />
|
data/config/locales/en.yml
CHANGED
data/lib/web47core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web47core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.61
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Schroeder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -577,6 +577,8 @@ files:
|
|
577
577
|
- app/views/icons/_rotate.html.erb
|
578
578
|
- app/views/icons/_run.html.erb
|
579
579
|
- app/views/icons/_skull.html.erb
|
580
|
+
- app/views/icons/_square-rounded-x-filled.html.erb
|
581
|
+
- app/views/icons/_square-rounded-x-outline.html.erb
|
580
582
|
- app/views/icons/_thumb-down-filled.html.erb
|
581
583
|
- app/views/icons/_thumb-down-outline.html.erb
|
582
584
|
- app/views/icons/_thumb-up-filled.html.erb
|
@@ -584,6 +586,7 @@ files:
|
|
584
586
|
- app/views/icons/_trash-filled.html.erb
|
585
587
|
- app/views/icons/_trash-outline.html.erb
|
586
588
|
- app/views/icons/_treadmill.html.erb
|
589
|
+
- app/views/icons/_user-circle.html.erb
|
587
590
|
- app/views/status/index.html.haml
|
588
591
|
- app/views/system_configurations/edit.html.haml
|
589
592
|
- app/views/system_configurations/show.html.haml
|