pageflow-outline-navigation-bar 1.3.1 → 1.4.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
2
  SHA256:
3
- metadata.gz: 979529b1e806d9942d9cda0c6a306a7302449c299553740f67b879c906963ad4
4
- data.tar.gz: 6b87259332a1d87e745dc187cff527c46047448089a95d2fd36a81b094229ad3
3
+ metadata.gz: 4f1456896a3bb6084224c4fc660afcf22b25f684ab1246e152849a19aa88e84b
4
+ data.tar.gz: 2dadf6f0bd23c57cf6f1c292e50156421d30a85aa7b75eab9b78ae9d17627ea7
5
5
  SHA512:
6
- metadata.gz: 79874a065f33baaca3a68973d21a210af21e6626a013bcf0f2b5e0e7cad34497528d194f47aaef2ee6a19232eeeae483dcc39e1a52be23cb9cbf6fa6c2ebcf60
7
- data.tar.gz: e29b4ee743fb031cbf3caacb5918e17d0ae7e22c450eb2aae09f412d7b98ba45e09c69638f4f0a5fa550b5f5ecefd1ef2d7842939b7222fdf383de232565d6e2
6
+ metadata.gz: 17499d9044cacccd42f53d0308b7a2a42f2c5cefc0e7632d535b0d6fe49fbae9e639f53d1a44704e1c9c2d42ca49c325b6277f8425ca1c6330f7ad4f5aa26fa6
7
+ data.tar.gz: 9877eb468b8ff06bbbb254fd6320c889d7b50d74916edab1c936a4879e878bee90d9d1eac5394abb90ebac361ca841ee49b135471e2af4d2712b3e2177d35670
@@ -1,23 +1,18 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 1.3.1
3
+ ### Version 1.4.0
4
4
 
5
- 2019-05-20
5
+ 2019-11-04
6
6
 
7
- [Compare changes](https://github.com/codevise/pageflow-outline-navigation-bar/compare/v1.3.0...v1.3.1)
7
+ [Compare changes](https://github.com/codevise/pageflow-outline-navigation-bar/compare/1-3-stable...v1.4.0)
8
8
 
9
+ - Respect theme color scheme in mobile sharing panel
10
+ ([#13](https://github.com/codevise/pageflow-outline-navigation-bar/pull/13))
11
+ - Extend pageflow version requirement to < 16
12
+ ([#12](https://github.com/codevise/pageflow-outline-navigation-bar/pull/12))
9
13
  - Fix new share icons in sprite variant
10
- ([#11](https://github.com/codevise/pageflow-outline-navigation-bar/pull/11))
11
-
12
- ### Version 1.3.0
13
-
14
- 2019-05-20
15
-
16
- [Compare changes](https://github.com/codevise/pageflow-outline-navigation-bar/compare/1-2-stable...v1.3.0)
17
-
18
- - Support for configurable sharing providers
19
- ([#9](https://github.com/codevise/pageflow-outline-navigation-bar/pull/9))
14
+ ([#10](https://github.com/codevise/pageflow-outline-navigation-bar/pull/10))
20
15
 
21
16
  See
22
- [1-2-stable branch](https://github.com/codevise/pageflow-outline-navigation-bar/blob/1-2-stable/CHANGELOG.md)
17
+ [1-3-stable branch](https://github.com/codevise/pageflow-outline-navigation-bar/blob/1-3-stable/CHANGELOG.md)
23
18
  for previous changes.
@@ -21,6 +21,7 @@ $outline-navigation-bar-icon-font-options: () !default;
21
21
 
22
22
  $outline-navigation-bar-basic-background-color: $basic-background-color-transparent !default;
23
23
  $outline-navigation-bar-active-chapter-color: $main-color !default;
24
+ $outline-navigation-bar-active-share-icon-color: $outline-navigation-bar-active-chapter-color;
24
25
 
25
26
  $outline-navigation-bar-menu-box-background-color: $widget-background-color !default;
26
27
  $outline-navigation-bar-menu-box-color: $widget-text-color !default;
@@ -3,7 +3,7 @@
3
3
  > a {
4
4
  display: block;
5
5
  margin-left: 70px;
6
- color: white;
6
+ color: $widget-text-color;
7
7
  text-decoration: none;
8
8
  font-size: 24px;
9
9
  padding-top: 12px;
@@ -11,13 +11,21 @@
11
11
  height: 80px;
12
12
 
13
13
  svg {
14
- fill: white;
14
+ fill: $widget-text-color;
15
15
  position: absolute;
16
16
  left: 22px;
17
17
  top: 36px;
18
18
  width: 30px;
19
19
  height: 30px;
20
20
  }
21
+
22
+ &.active {
23
+ color: $outline-navigation-bar-active-share-icon-color;
24
+
25
+ svg {
26
+ fill: $outline-navigation-bar-active-share-icon-color;
27
+ }
28
+ }
21
29
  }
22
30
  }
23
31
 
@@ -1,5 +1,5 @@
1
1
  module Pageflow
2
2
  module OutlineNavigationBar
3
- VERSION = '1.3.1'.freeze
3
+ VERSION = '1.4.0'.freeze
4
4
  end
5
5
  end
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
 
19
19
  spec.required_ruby_version = '~> 2.1'
20
20
 
21
- spec.add_runtime_dependency 'pageflow', '~> 14.1.x'
21
+ spec.add_runtime_dependency 'pageflow', ['>= 14.1', '< 16']
22
22
  spec.add_runtime_dependency 'pageflow-public-i18n', '~> 1.0'
23
23
 
24
24
  spec.add_development_dependency 'bundler', '~> 1.0'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow-outline-navigation-bar
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.4.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: 2019-05-20 00:00:00.000000000 Z
11
+ date: 2019-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pageflow
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '14.1'
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: 14.1.x
22
+ version: '16'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '14.1'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: 14.1.x
32
+ version: '16'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: pageflow-public-i18n
29
35
  requirement: !ruby/object:Gem::Requirement