alchemy_cms 7.0.12 → 7.0.13

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: 82cd64dd71fa79871bc3bfbec5f7f13d3a12d8227fe2294c4ba2fe544ad98dcb
4
- data.tar.gz: a30831a00b1afa326159f19d706352ddf43f0e0f4cb84e0fa7a2590b7e12435a
3
+ metadata.gz: 7e1e1f44ae24e197683a4022bc888322ad87557119ab90f85fe455e3d0871a11
4
+ data.tar.gz: d88442e6659689d233994892136e531ed45727cea4a771ff3947589d01964fbf
5
5
  SHA512:
6
- metadata.gz: 200987b061160915c554f377a735d6a590bc7d342bd7ebae9d133c0812440a731b1e9aa2b3566a6e241a32282fb19b6b4b1ff94fbf57261f1ae99f16060d0b91
7
- data.tar.gz: 6dbe3f6fbf7cff9946245c405a5b5caa884872f7095d3da3b49a05bb500eb7c7a626bfe8968b9e7ab894f7e2db6d077eac87876f8ccc927d885a4d87d422e820
6
+ metadata.gz: a881a0032cfd6c600e71513982d172db9f5d8bd1276d53de1ca045c758c2a6b256937f68df26375bcc085cf1cff52a4e5db087ba8b33595b5b9884447d419f12
7
+ data.tar.gz: 7701f3c046c5bef17f75be1121fc4908d3aeba17abc88cadf04a5a59656c5c66bf0fcdb76cf395783d0cf5aaff27fab5b5549c512d00427485a5dbbf7407a8a0
data/.gem_release.yml CHANGED
@@ -5,5 +5,4 @@ bump:
5
5
  tag:
6
6
  remote: upstream
7
7
  release:
8
- github: true
9
8
  repo: AlchemyCMS/alchemy_cms
data/.gitignore CHANGED
@@ -29,3 +29,5 @@ yarn-debug.log*
29
29
  .yarn-integrity
30
30
  yarn.lock
31
31
  /spec/dummy/public/pictures
32
+ .byebug_history
33
+ .vscode/
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.0.13 (2024-05-29)
4
+
5
+ - [7.0-stable] Fix preview window width for smaller viewports [#2889](https://github.com/AlchemyCMS/alchemy_cms/pull/2889) ([alchemycms-bot](https://github.com/alchemycms-bot))
6
+ - [7.0-stable] Fix Preview Window width [#2880](https://github.com/AlchemyCMS/alchemy_cms/pull/2880) ([alchemycms-bot](https://github.com/alchemycms-bot))
7
+ - [7.0-stable] Fix preview window resize transition [#2871](https://github.com/AlchemyCMS/alchemy_cms/pull/2871) ([alchemycms-bot](https://github.com/alchemycms-bot))
8
+
3
9
  ## 7.0.12 (2024-04-12)
4
10
 
5
11
  - [7.0-stable] Fix Ingredient Boolean View [#2837](https://github.com/AlchemyCMS/alchemy_cms/pull/2837) ([alchemycms-bot](https://github.com/alchemycms-bot))
data/Gemfile CHANGED
@@ -61,3 +61,5 @@ if Gem.ruby_version >= Gem::Version.new("3.1.0")
61
61
  end
62
62
  gem "net-smtp", "~> 0.3.0", require: false
63
63
  end
64
+
65
+ gem "gem-release", "~> 2.2"
@@ -7,7 +7,7 @@
7
7
  border: 0 none;
8
8
  background: #fff;
9
9
  border-right: $default-border;
10
- transition: $transition-duration ease-in-out;
10
+ transition: width $transition-duration ease-in-out;
11
11
 
12
12
  .collapsed-menu & {
13
13
  left: $collapsed-main-menu-width;
@@ -15,10 +15,14 @@
15
15
  }
16
16
 
17
17
  .collapsed-menu.elements-window-visible & {
18
- width: calc(100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-width});
18
+ width: calc(
19
+ 100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-min-width}
20
+ );
19
21
 
20
- @media screen and (min-width: $large-screen-break-point) {
21
- max-width: calc(100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-min-width});
22
+ @media screen and (min-width: 1777px) {
23
+ width: calc(
24
+ 100vw - #{$collapsed-main-menu-width - $default-border-width} - #{$elements-window-width}
25
+ );
22
26
  }
23
27
  }
24
28
  }
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alchemy
4
- VERSION = "7.0.12"
4
+ VERSION = "7.0.13"
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.0.12
4
+ version: 7.0.13
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-04-12 00:00:00.000000000 Z
16
+ date: 2024-05-29 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: actionmailer
@@ -1456,7 +1456,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1456
1456
  version: '0'
1457
1457
  requirements:
1458
1458
  - ImageMagick (libmagick), v6.6 or greater.
1459
- rubygems_version: 3.4.19
1459
+ rubygems_version: 3.5.9
1460
1460
  signing_key:
1461
1461
  specification_version: 4
1462
1462
  summary: A powerful, userfriendly and flexible CMS for Rails