pageflow-text-page 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +10 -8
- data/app/assets/javascript/pageflow/text_page/editor.js +5 -2
- data/app/assets/stylesheets/pageflow/text_page.scss +14 -4
- data/app/views/pageflow/text_page/page.html.erb +2 -2
- data/lib/pageflow/text_page/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 228d8f62d8f82d55731c19379a975d68c6d12dbeccc30d24e8f607a9c77a1ba9
|
4
|
+
data.tar.gz: 26ba7711e7db00899368bb668953e29c3b1a00fcac31e51acee01b05ad08186a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05d183c061b135e660d75855a3046aaab7f70d2deec6cbd71f9400980258ea7d7f83c022d21484d67ce7bc13d6fee51f4b1ab83c0cc91422127e3aa73d560d13
|
7
|
+
data.tar.gz: 574bacb05829dbcc1de2a49ef7b6ed4bedb967c7476be1bceaa0d0977c863e37094d283d67b65f80e2464dfd8625b42f23580188b535ebe6616ab60bdfcecb73
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,16 +1,18 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
### Version 1.2.0
|
4
3
|
|
5
|
-
|
4
|
+
### Version 1.3.0
|
6
5
|
|
7
|
-
|
6
|
+
2019-05-20
|
8
7
|
|
9
|
-
-
|
10
|
-
|
11
|
-
-
|
12
|
-
([#
|
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-
|
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
|
-
|
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,
|
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
|
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
|
-
|
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
|
-
<
|
48
|
+
<div class="paragraph">
|
49
49
|
<%= raw configuration['text'] %>
|
50
|
-
</
|
50
|
+
</div>
|
51
51
|
</div>
|
52
52
|
</div>
|
53
53
|
</div>
|
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.
|
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-
|
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.
|
177
|
+
rubygems_version: 2.7.8
|
178
178
|
signing_key:
|
179
179
|
specification_version: 4
|
180
180
|
summary: Pageflow Page Type text pages
|