pageflow-text-page 1.2.0 → 1.3.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: 8b9fd19cfb1329ec3e4d80fbe07541dabf310d492b3eb6b6d65df6dda2b74c69
4
- data.tar.gz: 61dfbba3e847b3c2aceb5a523c9a7441a02d08d842dd623be1557197a276639c
3
+ metadata.gz: 228d8f62d8f82d55731c19379a975d68c6d12dbeccc30d24e8f607a9c77a1ba9
4
+ data.tar.gz: 26ba7711e7db00899368bb668953e29c3b1a00fcac31e51acee01b05ad08186a
5
5
  SHA512:
6
- metadata.gz: 4e2bd1d8855901bc9bc9191eb949f19fc1ca612a975f2947da2f9a352d6a006353491a0db4ebf0835307772cd2cf722c5467e56a126bdcb594045be8660ebffc
7
- data.tar.gz: 8b2021a196dcf6513a7e934caa44d57264a0d06975c83f3b5706a5acce54c90f7ae7fc9ce54eac832da1b0d3ca0e0235e8d5138da935be14af3290ddd1c6e5b5
6
+ metadata.gz: 05d183c061b135e660d75855a3046aaab7f70d2deec6cbd71f9400980258ea7d7f83c022d21484d67ce7bc13d6fee51f4b1ab83c0cc91422127e3aa73d560d13
7
+ data.tar.gz: 574bacb05829dbcc1de2a49ef7b6ed4bedb967c7476be1bceaa0d0977c863e37094d283d67b65f80e2464dfd8625b42f23580188b535ebe6616ab60bdfcecb73
data/.travis.yml CHANGED
@@ -1,3 +1,4 @@
1
+ dist: trusty
1
2
  language: ruby
2
3
  rvm: 2.5
3
4
 
data/CHANGELOG.md CHANGED
@@ -1,16 +1,18 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 1.2.0
4
3
 
5
- 2019-04-08
4
+ ### Version 1.3.0
6
5
 
7
- [Compare changes](https://github.com/codevise/pageflow-text-page/compare/1-1-stable...v1.2.0)
6
+ 2019-05-20
8
7
 
9
- - Adapt page dom for pageflow 14
10
- ([#22](https://github.com/codevise/pageflow-text-page/pull/22))
11
- - Setup page type lint specs
12
- ([#21](https://github.com/codevise/pageflow-text-page/pull/21))
8
+ [Compare changes](https://github.com/codevise/pageflow-text-page/compare/1-2-stable...v1.3.0)
9
+
10
+ - Allow page links in text area
11
+ ([#23](https://github.com/codevise/pageflow-text-page/pull/23))
12
+ - Allow lists in text area
13
+ ([#24](https://github.com/codevise/pageflow-text-page/pull/24)),
14
+ ([#25](https://github.com/codevise/pageflow-text-page/pull/25))
13
15
 
14
16
  See
15
- [1-1-stable branch](https://github.com/codevise/pageflow-text-page/blob/1-1-stable/CHANGELOG.md)
17
+ [1-2-stable branch](https://github.com/codevise/pageflow-text-page/blob/1-2-stable/CHANGELOG.md)
16
18
  for previous changes.
@@ -21,7 +21,10 @@ pageflow.ConfigurationEditorView.register('text_page', {
21
21
 
22
22
  this.tab('content', function () {
23
23
  this.input('text_title', pageflow.TextInputView);
24
- this.input('text', pageflow.TextAreaInputView);
24
+ this.input('text', pageflow.TextAreaInputView, {
25
+ fragmentLinkInputView: pageflow.PageLinkInputView,
26
+ enableLists: true
27
+ });
25
28
  this.input('invert_text', pageflow.CheckBoxInputView);
26
29
  this.input('text_page_background_color', pageflow.ColorInputView, {
27
30
  defaultValue: function(invertText) {
@@ -64,4 +67,4 @@ pageflow.ConfigurationEditorView.register('text_page', {
64
67
  })).uniq().compact().value();
65
68
  }
66
69
  }
67
- });
70
+ });
@@ -236,7 +236,8 @@ $inverted-background-color: black;
236
236
  }
237
237
  }
238
238
  }
239
- p {
239
+
240
+ .paragraph {
240
241
  width: 100%;
241
242
  }
242
243
  }
@@ -348,7 +349,8 @@ $inverted-background-color: black;
348
349
  max-width: 1000px;
349
350
  width: 84%;
350
351
 
351
- .page_sub_header, p {
352
+ .page_sub_header,
353
+ .paragraph {
352
354
  margin: 0;
353
355
  max-width: 500px;
354
356
  }
@@ -551,16 +553,24 @@ $inverted-background-color: black;
551
553
  }
552
554
 
553
555
  .slideshow {
554
- .text_page p, .page_sub_header span, .inline_image_text, .fixed_header_area .page_header_wrapper {
556
+ .text_page .paragraph,
557
+ .page_sub_header span,
558
+ .inline_image_text,
559
+ .fixed_header_area .page_header_wrapper {
555
560
  @include transition(0.5s ease);
556
561
  }
562
+
557
563
  .hidden_by_overlay .text_page {
558
564
  .content {
559
565
  opacity: 1;
560
- p, .page_sub_header span, .inline_image_text {
566
+
567
+ .paragraph,
568
+ .page_sub_header span,
569
+ .inline_image_text {
561
570
  opacity: 0;
562
571
  }
563
572
  }
573
+
564
574
  .fixed_header_area .page_header_wrapper {
565
575
  opacity: 0;
566
576
  }
@@ -45,9 +45,9 @@
45
45
  <% end %>
46
46
  <div class="bigscreen_toggler" tabindex="4" title="<%= t('pageflow.public.enlarge_view') %>"><%= t('pageflow.public.fullscreen') %></div>
47
47
  <% end %>
48
- <p>
48
+ <div class="paragraph">
49
49
  <%= raw configuration['text'] %>
50
- </p>
50
+ </div>
51
51
  </div>
52
52
  </div>
53
53
  </div>
@@ -1,5 +1,5 @@
1
1
  module Pageflow
2
2
  module TextPage
3
- VERSION = '1.2.0'.freeze
3
+ VERSION = '1.3.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow-text-page
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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-04-08 00:00:00.000000000 Z
11
+ date: 2019-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pageflow
@@ -174,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
174
  version: '0'
175
175
  requirements: []
176
176
  rubyforge_project:
177
- rubygems_version: 2.7.5
177
+ rubygems_version: 2.7.8
178
178
  signing_key:
179
179
  specification_version: 4
180
180
  summary: Pageflow Page Type text pages