pageflow-linkmap-page 1.1.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4b73e3d49c82b5876fce90056bcb4fe58771fc34
4
- data.tar.gz: 6d38604747a162226fc45fd9b2b6c1d56c596ea8
2
+ SHA256:
3
+ metadata.gz: c428ede361d69d72f0868d03a251c11997208893fcde9e424a9e4e205f0a1d65
4
+ data.tar.gz: 70a18281efb93e3335290cbc339f331be440a8f3736285416271a03d74e79e81
5
5
  SHA512:
6
- metadata.gz: 9a18d92640f24a2539bd1d4f4c9742d7549cdc5c86e56cb7087be871816787f28568e6fb291fdcdee800ff4e0e4cfea87e415127540e8e83ffb9609d9caee176
7
- data.tar.gz: 84e8646c2e3ca811472f92adc70b6f2df67a3146e71775003aab7b298ce1e38dd95368f0fa9f1239baf41efe244dfc0959825f9561899874802f4e0c5a018be7
6
+ metadata.gz: 6eaa4497dbfcbf2ac9d63e5453f507c9c1179c6b6b7d91e61bf69719167b2a85557f5affa3dc28ed91166067f3c1972c23dcac4babb57d57a234204263d690dc
7
+ data.tar.gz: 04567addacca9b750f6eaf8e79ea3041886c8d141c1d7c3784d5d28ceb56cb00884f763f64e59f07327cfb445e5023d3f932023241442f6cc9ae142e6c2a7d1c
data/CHANGELOG.md CHANGED
@@ -1,20 +1,18 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 1.1.0
3
+ ### Version 1.2.0
4
4
 
5
- 2017-10-09
5
+ 2018-07-30
6
6
 
7
- [Compare changes](https://github.com/codevise/pageflow-linkmap-page/compare/1-0-stable...v1.1.0)
7
+ [Compare changes](https://github.com/codevise/pageflow-linkmap-page/compare/1-1-stable...v1.2.0)
8
8
 
9
- - Fix hover video variant in published entry
10
- ([#29](https://github.com/codevise/pageflow-linkmap-page/pull/29))
11
- - Make mask image url template generation more robust
12
- ([#30](https://github.com/codevise/pageflow-linkmap-page/pull/30))
13
- - Improve mask features of hotspot page
14
- ([#28](https://github.com/codevise/pageflow-linkmap-page/pull/28))
15
- - Ensure pageflow 12 is used in tests
16
- ([#27](https://github.com/codevise/pageflow-linkmap-page/pull/27))
9
+ - Typographie variables for overlay section
10
+ ([#34](https://github.com/codevise/pageflow-linkmap-page/pull/34))
11
+ - Do not show load indicator for external link opening new tab
12
+ ([#32](https://github.com/codevise/pageflow-linkmap-page/pull/32))
13
+ - Set railties version to prevent infinite loop in bundle install
14
+ ([#33](https://github.com/codevise/pageflow-linkmap-page/pull/33))
17
15
 
18
16
  See
19
- [1-0-stable branch](https://github.com/codevise/pageflow-linkmap-page/blob/1-0-stable/CHANGELOG.md)
17
+ [1-1-stable branch](https://github.com/codevise/pageflow-linkmap-page/blob/1-1-stable/CHANGELOG.md)
20
18
  for previous changes.
data/Gemfile CHANGED
@@ -7,3 +7,8 @@ gem 'state_machine', git: 'https://github.com/codevise/state_machine.git'
7
7
 
8
8
  gem 'spring-commands-rspec', group: :development
9
9
  gem 'spring-commands-teaspoon', group: :development
10
+
11
+ # Required to make Bundler 1.16.1 find a resolution. Without this line
12
+ # `bundle install` without a `Gemfile.lock` would run for a very long
13
+ # time makin the Travis build time out.
14
+ gem 'railties', '~> 4.2'
@@ -90,7 +90,9 @@
90
90
  area.addClass('active');
91
91
  }
92
92
 
93
- if (!area.hasClass('dynamic_marker') && area.hasClass('external_site_area')) {
93
+ if (!area.hasClass('dynamic_marker') &&
94
+ area.hasClass('external_site_area') &&
95
+ area.hasClass('target_self')) {
94
96
  displayExternalLinkLoadingIndicator(event.originalEvent);
95
97
  }
96
98
  });
@@ -34,6 +34,11 @@
34
34
  $linkmap-overlay-title-color: $linkmap-main-color !default;
35
35
  $linkmap-overlay-background-color: rgba(48,48,48,0.8) !default;
36
36
 
37
+ $linkmap-overlay-title-typography: () !default;
38
+ $linkmap-overlay-description-typography: () !default;
39
+ $linkmap-overlay-title-phone-typography: () !default;
40
+ $linkmap-overlay-description-phone-typography: () !default;
41
+
37
42
  $linkmap-icon-color: $main-color !default;
38
43
 
39
44
  $linkmap-audio-progress-color: $linkmap-main-color !default;
@@ -186,29 +191,49 @@
186
191
  padding: 5px 10px;
187
192
 
188
193
  .link_title {
189
- line-height: 20px;
190
- font-size: 16px;
194
+ @include typography(
195
+ $linkmap-overlay-title-phone-typography,
196
+ (
197
+ line-height: 20px,
198
+ font-size: 16px
199
+ )
200
+ );
191
201
  }
192
202
 
193
203
  .link_description {
194
- font-size: 12px;
195
- line-height: 14px;
204
+ @include typography(
205
+ $linkmap-overlay-description-phone-typography,
206
+ (
207
+ font-size: 12px,
208
+ line-height: 14px
209
+ )
210
+ );
196
211
  }
197
212
  }
198
213
  }
199
214
 
200
215
  .link_title {
201
- font-size: 24px;
216
+ @include typography(
217
+ $linkmap-overlay-title-typography,
218
+ (
219
+ font-size: 24px,
220
+ letter-spacing: 0.31px,
221
+ line-height: 30px
222
+ )
223
+ );
202
224
  color: $linkmap-overlay-title-color;
203
- letter-spacing: 0.31px;
204
- line-height: 30px;
205
225
  }
206
226
 
207
227
  .link_description {
208
- font-size: 16px;
209
- color: white;
210
- letter-spacing: 0.22px;
211
- line-height: 26px;
228
+ @include typography(
229
+ $linkmap-overlay-description-typography,
230
+ (
231
+ font-size: 16px,
232
+ letter-spacing: 0.22px,
233
+ line-height: 26px
234
+ )
235
+ );
236
+ color: white,
212
237
  }
213
238
 
214
239
  &:before {
@@ -365,4 +390,4 @@
365
390
  display: block;
366
391
  }
367
392
  }
368
- }
393
+ }
@@ -1,5 +1,5 @@
1
1
  module Pageflow
2
2
  module LinkmapPage
3
- VERSION = '1.1.0'.freeze
3
+ VERSION = '1.2.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow-linkmap-page
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codevise Solutions Ltd.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-09 00:00:00.000000000 Z
11
+ date: 2018-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pageflow
@@ -295,7 +295,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
295
295
  version: '0'
296
296
  requirements: []
297
297
  rubyforge_project:
298
- rubygems_version: 2.6.8
298
+ rubygems_version: 2.7.5
299
299
  signing_key:
300
300
  specification_version: 4
301
301
  summary: Pageflow page type for a page that contains customizable link areas