alchemy_cms 7.1.4 → 7.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6c615cf9ac7a5ea2ca6d9a146cf61aab6511bcfa4277740e8989492288427e9
4
- data.tar.gz: 3a35e7708046a45c5abdc50403428c9fe153e95634a97a3ee6dc3552b3401030
3
+ metadata.gz: 96768643fc124e7d3faf032a61ec6b1cb2d737a5582f146990a63809f5f12814
4
+ data.tar.gz: 8bc4f8f2d7c4416562ee1259601919f48867b91b4479130d24975c900ecc561b
5
5
  SHA512:
6
- metadata.gz: 78fedab87a5984f88f012177c31133570647b7c7816a55ded8f56127fdf54070b6d6367db843214af1d38e45099502e309be950ceeb14bc78580158e5958ef21
7
- data.tar.gz: 1d251b4a5ba8c0e0287d314d7c06a343ba83bf068b1afb243b026fa9dae254477c73639b4c5c67f7e96e820124255dd08d0eedb11eff127b1d53553e40e8d77e
6
+ metadata.gz: 2b79394f97b700fa5e59fa242c50d9b296b3de5abcd8e35d483a609fc7d44329ab0e5cdc9d350f8e2891fea81a2f5627fe1a2a08436d1fb3f56ef3e22d209f08
7
+ data.tar.gz: 5e018ef946f2185733751c6d2e4e62248ce2af578c2cefec7417932b1d8153522ec6f0c684451989291c6a1361a49193295e6c4ae1f3218fbe9c5398d76bb565
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.1.5 (2024-02-29)
4
+
5
+ - [7.1-stable] Fix taggable uniqueness in tags admin table [#2764](https://github.com/AlchemyCMS/alchemy_cms/pull/2764) ([alchemycms-bot](https://github.com/alchemycms-bot))
6
+ - [7.1-stable] Fix datepicker in resource forms [#2762](https://github.com/AlchemyCMS/alchemy_cms/pull/2762) ([alchemycms-bot](https://github.com/alchemycms-bot))
7
+
3
8
  ## 7.1.4 (2024-02-27)
4
9
 
5
10
  - [7.1-stable] Merge pull request #2752 from tvdeyen/fix-copy-elements-order [#2754](https://github.com/AlchemyCMS/alchemy_cms/pull/2754) ([alchemycms-bot](https://github.com/alchemycms-bot))
@@ -2,7 +2,7 @@
2
2
  <td class="icon"><%= render_icon(:tag, size: "xl") %></td>
3
3
  <td class="name"><%= tag.name %></td>
4
4
  <td>
5
- <% tag.taggings.collect(&:taggable).compact.uniq.each do |taggable| %>
5
+ <% tag.taggings.collect(&:taggable).compact.uniq(&:class).each do |taggable| %>
6
6
  <span class="label">
7
7
  <%= taggable.class.model_name.human %>
8
8
  </span>
@@ -40,7 +40,7 @@ module Alchemy
40
40
  }.merge(options[:input_html] || {})
41
41
 
42
42
  date_field = input attribute_name, as: :string, input_html: input_options
43
- template.content_tag("alchemy-datepicker", date_field, type: type)
43
+ template.content_tag("alchemy-datepicker", date_field, "input-type" => type)
44
44
  end
45
45
 
46
46
  # Renders a simple_form input that displays a richtext editor
@@ -107,12 +107,7 @@ module Alchemy
107
107
  when "boolean"
108
108
  options
109
109
  when "date", "time", "datetime"
110
- options.merge(
111
- as: "string",
112
- input_html: {
113
- data: {datepicker_type: input_type}
114
- }
115
- )
110
+ options.merge(as: input_type)
116
111
  when "text"
117
112
  options.merge(as: "text", input_html: {rows: 4})
118
113
  else
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alchemy
4
- VERSION = "7.1.4"
4
+ VERSION = "7.1.5"
5
5
 
6
6
  def self.version
7
7
  VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy_cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.4
4
+ version: 7.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2024-02-27 00:00:00.000000000 Z
16
+ date: 2024-02-29 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: actionmailer