pageflow 15.5.0 → 15.6.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96902980a5bb3f8dbdb7fea7c6d2ac7864cec92f72b841a32f9544d56f25ddf7
4
- data.tar.gz: fb05810978adc0db7eac1901beec575d0d552c2187f95e4e4df92ab8d58801be
3
+ metadata.gz: 5bb0c83189c159ac0c4746f7f3c32a02216b64f51cb74105e53b8bec79446894
4
+ data.tar.gz: c0ded90ce78468423863ff948f4e77016f494f1693192a68d3be4c7c6a0cf058
5
5
  SHA512:
6
- metadata.gz: 157deea11713fb77f374469ffcb2ed25ebe0e7401f140eea761266602099a89311b58be6b4e353980dc6bae3bd896136e2a27b7748c9e6434142816230973400
7
- data.tar.gz: 571fd3407f0e45cd0ba1bb902349da1e84ee1ffdd7cb5367ac59cc22de439ae1866b79214e96c08ecc92956b367ec1a5dd84f2a1f6fa4ff4236d6b9307643e89
6
+ metadata.gz: 35b6fee909919222dc0db448014ac7766144243475814a616b0777fc3c1c34faa5a2c560c60b68e1f0324c85d9198c1c3456c314d5359025dfa27e6e7362bfb5
7
+ data.tar.gz: e7240a0a6e645f9c8f840586fc7f95fa1c5d037b7126a312ed349f03e785abc18cf6ac2ea11b4468593e63213f7d56dcda8ff60108372f91f094e4a047a5b87b
data/CHANGELOG.md CHANGED
@@ -1,116 +1,14 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 15.5.0
3
+ ### Version 15.6.0
4
4
 
5
- 2021-05-07
5
+ 2021-05-10
6
6
 
7
- [Compare changes](https://github.com/codevise/pageflow/compare/15-4-stable...v15.5.0)
7
+ [Compare changes](https://github.com/codevise/pageflow/compare/15-5-stable...v15.6.0)
8
8
 
9
- #### Core
10
-
11
- ##### Manual Update Step
12
-
13
- - Upgrade Webpack config
14
-
15
- Disable Babel compilation of `node_modules` directory to prevent
16
- error of the form "_typeof is not defined" in Video.js HTTP
17
- streaming service worker that is registered when DASH sources are
18
- used. Add the following lines to the host application's
19
- `config/webpack/environment.js` file:
20
-
21
- ```
22
- environment.config.merge(require('pageflow-scrolled/config/webpack'))
23
-
24
- // Opt into future default behavior of Webpacker [1] to work around
25
- // problems with Video.js DASH service worker.
26
- //
27
- // [1] https://github.com/rails/webpacker/pull/2624
28
- environment.loaders.delete('nodeModules')
29
-
30
- ```
31
-
32
- No longer precompiling `node_modules` means that some ES6 syntax
33
- included in some of the packages will end up in the
34
- bundle. `therubyracer` gem then causes "Use of const in strict mode"
35
- error during SSR. Upgrading the host application to use `mini_racer`
36
- instead fixes the problem.
37
- ([#1655](https://github.com/codevise/pageflow/pull/1655))
38
-
39
- ##### Rails Engine
40
-
41
- - Allow registering entry type specific file importers
42
- ([#1684](https://github.com/codevise/pageflow/pull/1684))
43
- - Nested revision components
44
- ([#1654](https://github.com/codevise/pageflow/pull/1654))
45
- - Nested revision components
46
- ([#1654](https://github.com/codevise/pageflow/pull/1654))
47
- - Upgrade to Devise 4.7
48
- ([#1657](https://github.com/codevise/pageflow/pull/1657))
49
-
50
- ##### Admin
51
-
52
- - Validate user locale
53
- ([#1658](https://github.com/codevise/pageflow/pull/1658))
54
-
55
- #### Paged Entry Type
56
-
57
- - Add theme option for content text phone typography
58
- ([#1670](https://github.com/codevise/pageflow/pull/1670))
59
- - Bug fix: Wait until listener is ready before requesting cookie notice
60
- ([#1650](https://github.com/codevise/pageflow/pull/1650))
61
-
62
- #### Scrolled Entry Type
63
-
64
- ##### Rails Engine
65
-
66
- - Color/font options for scrolled themes
67
- ([#1673](https://github.com/codevise/pageflow/pull/1673))
68
- - Improve scrolled install generator
69
- ([#1682](https://github.com/codevise/pageflow/pull/1682))
70
-
71
- ##### Published Entry
72
-
73
- - Add 360 image content element based on @egjs/view360
74
- ([#1675](https://github.com/codevise/pageflow/pull/1675),
75
- [#1676](https://github.com/codevise/pageflow/pull/1676))
76
- - Add position wide for heading content elements
77
- ([#1678](https://github.com/codevise/pageflow/pull/1678))
78
- - Remove chapter number from chapter box
79
- ([#1679](https://github.com/codevise/pageflow/pull/1679))
80
- - Fix embed video opt in text color in inverted section
81
- ([#1671](https://github.com/codevise/pageflow/pull/1671))
82
- - Handle player unallocated by empty pool
83
- ([#1668](https://github.com/codevise/pageflow/pull/1668))
84
- - Horizontal scroller for desktop navigation bar
85
- ([#1669](https://github.com/codevise/pageflow/pull/1669))
86
- - Improve file rights
87
- ([#1665](https://github.com/codevise/pageflow/pull/1665))
88
- - Allow non latin characters in video embed caption
89
- ([#1664](https://github.com/codevise/pageflow/pull/1664))
90
- - Hyphenate long text block headers
91
- ([#1662](https://github.com/codevise/pageflow/pull/1662))
92
- - Upgrade Scrolled to Video.js 7
93
- ([#1655](https://github.com/codevise/pageflow/pull/1655))
94
- - Improve before/after wiggle animation
95
- ([#1659](https://github.com/codevise/pageflow/pull/1659))
96
- - Display notices for unsupported browser or non-js
97
- ([#1653](https://github.com/codevise/pageflow/pull/1653))
98
- - Basic styles for print layout of scrolled entries
99
- ([#1652](https://github.com/codevise/pageflow/pull/1652))
100
- - Bug fix: Hide frame around inline video on iOS 12
101
- ([#1680](https://github.com/codevise/pageflow/pull/1680))
102
-
103
- ##### Editor
104
-
105
- - Prevent concurrent save requests for embed urls
106
- ([#1672](https://github.com/codevise/pageflow/pull/1672))
107
- - Do not trigger multiple save requests for backdrop updates
108
- ([#1666](https://github.com/codevise/pageflow/pull/1666))
109
- - Fix lazy loading in editor for Safari
110
- ([#1660](https://github.com/codevise/pageflow/pull/1660))
111
- - Bug fix: Cascade model removal through ForeignKeySubsetCollection
112
- ([#1651](https://github.com/codevise/pageflow/pull/1651))
9
+ - Support non-root packages in `create_bundle_symlinks_for_yarn` tasks
10
+ ([#1689](https://github.com/codevise/pageflow/pull/1689))
113
11
 
114
12
  See
115
- [15-4-stable branch](https://github.com/codevise/pageflow/blob/15-4-stable/CHANGELOG.md)
13
+ [15-5-stable branch](https://github.com/codevise/pageflow/blob/15-5-stable/CHANGELOG.md)
116
14
  for previous changes.
@@ -1,3 +1,5 @@
1
+ require 'rails'
2
+
1
3
  module PageflowScrolled
2
4
  # Rails integration
3
5
  class Engine < ::Rails::Engine
@@ -12,9 +12,10 @@ namespace :pageflow_scrolled do
12
12
  This script is executed as preinstall script when running `yarn
13
13
  install`.
14
14
  DESC
15
- task :create_bundle_symlinks_for_yarn do
15
+ task :create_bundle_symlinks_for_yarn, [:package_path] do |_t, args|
16
+ package_json_path = File.join(args.fetch(:package_path, '.'), 'package.json')
16
17
  referenced_gems =
17
- File.read('package.json').scan(%r{.bundle/for-yarn/([a-z_-]+)}).flatten.uniq
18
+ File.read(package_json_path).scan(%r{.bundle/for-yarn/([a-z_-]+)}).flatten.uniq
18
19
 
19
20
  FileUtils.rm_rf '.bundle/for-yarn'
20
21
  FileUtils.mkdir_p '.bundle/for-yarn'
@@ -1,4 +1,4 @@
1
- .index-module_container__3dD9z{position:relative}.index-module_hoveringToolbar__31Xpd{position:absolute;z-index:2;top:-10000px;left:-10000px;margin-top:-6px;opacity:0;white-space:nowrap}.index-module_selection__3dUiD{display:none;position:absolute;z-index:1;width:100%;pointer-events:none}.index-module_linkTooltip__36m1K{background-color:#222;border-radius:4px;font-family:Helvetica,Arial,"Sans-Serif";font-size:13px;line-height:1;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.index-module_linkTooltip__36m1K:before{content:"";display:block;position:absolute;left:20px;bottom:100%;border:4px solid transparent;border-bottom-color:#222}.index-module_linkTooltip__36m1K a,.index-module_linkTooltip__36m1K button,.index-module_linkTooltip__36m1K input{color:#fff;background-color:transparent;border:0;display:inline-block;padding:10px}.index-module_linkTooltip__36m1K input{outline:none}.index-module_linkTooltip__36m1K button{border:0;cursor:pointer}.index-module_linkTooltip__36m1K svg{padding-left:7px}.ContentElementMargin-module_wrapper__20kIk{margin:1em 0 0}.ContentElement-module_missing__2_1j9{color:#000;background-color:#fff;border-left:5px solid #f44336;padding:.5em;margin:1em 0 0}.Text-module_h2__34chJ{font-size:66px;font-weight:700}.Text-module_h1__2_5kX{font-size:110px;line-height:1}.Text-module_body__4oWD-{font-size:22px;line-height:1.4}.Text-module_caption__3_6Au{font-size:20px;line-height:1.4}@media (max-width:600px){.Text-module_h2__34chJ{font-size:40px}.Text-module_h1__2_5kX{font-size:66px}}.TextPlaceholder-module_placeholder__sgVwx{pointer-events:none;opacity:.5;height:0}.TextPlaceholder-module_placeholder__sgVwx>div{transform:translateY(-100%)}.Toolbar-module_Toolbar__1INSj{background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);display:flex;gap:2px}.Toolbar-module_button__de5BW{border:0;background:#fff;padding:10px;opacity:.6}.Toolbar-module_button__de5BW:hover{opacity:1}.Toolbar-module_activeButton__2sOLP{background:#ddd;opacity:1}@media (max-width:460px){.Toolbar-module_collapsible__3sivb .Toolbar-module_button__de5BW{display:none}.Toolbar-module_collapsible__3sivb .Toolbar-module_activeButton__2sOLP,.Toolbar-module_collapsible__3sivb:focus-within .Toolbar-module_button__de5BW,.Toolbar-module_collapsible__3sivb:hover .Toolbar-module_button__de5BW{display:inline-block}}.useScrollPositionLifecycle-module_wrapper__1a6Kr{position:relative}.useScrollPositionLifecycle-module_isActiveProbe__3VKB5{position:absolute;top:0;left:0;bottom:2px;width:1px}.ContentElementInsertButton-module_container__3dvUS{height:0;position:relative;top:1em;text-align:center;opacity:.8}.ContentElementInsertButton-module_hovered__3Pggi{opacity:1}.ContentElementInsertButton-module_container__3dvUS:after,.ContentElementInsertButton-module_container__3dvUS:before{content:"";border-top:1px solid;width:calc(50% - 20px);position:absolute;top:0}.ContentElementInsertButton-module_container__3dvUS:before{left:0}.ContentElementInsertButton-module_container__3dvUS:after{right:0}.ContentElementInsertButton-module_button__2-eE2{border:0;background:none;color:currentColor;position:relative;top:-8px}.SelectionRect-module_main__3AOhG{position:relative}.SelectionRect-module_main__3AOhG:after,.SelectionRect-module_main__3AOhG:before{content:"";position:absolute;top:-.5em;left:-.5em;right:-.5em;bottom:-.5em;pointer-events:none;opacity:.8}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF):before{top:5px}.SelectionRect-module_full__3tsQF:after,.SelectionRect-module_full__3tsQF:before{left:0;right:0}.SelectionRect-module_selected__1PhM6:before{border-left:1px solid}.SelectionRect-module_selected__1PhM6:after{border-right:1px solid}.SelectionRect-module_toolbar__3nPrd{position:absolute;top:-40px;right:-15px;z-index:1;pointer-events:auto}.SelectionRect-module_insert__w0Tl0{display:none;text-align:center;position:absolute;width:100%;opacity:.8;pointer-events:none}.SelectionRect-module_insertHovered__VTsDD.SelectionRect-module_insert__w0Tl0{opacity:1}.SelectionRect-module_end__3qOoK .SelectionRect-module_insert-after__3FJ4R,.SelectionRect-module_start__3_nAf .SelectionRect-module_insert-before__2Tyq5{display:block}.SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_insert__w0Tl0:before{content:"";position:absolute;top:0;width:calc(50% - 5px);height:0;border-bottom:1px solid}.SelectionRect-module_insert__w0Tl0:before{left:-.5em}.SelectionRect-module_insert__w0Tl0:after{right:-.5em}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF) .SelectionRect-module_insert-before__2Tyq5:before{left:5px;width:calc(50% - 10px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{width:calc(50% - 5px + -.5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{left:0}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after{right:0}.SelectionRect-module_insertButton__1g-ZG{pointer-events:auto;border:0;background:none;color:currentColor;display:inline-block;vertical-align:top;position:relative;top:-9px;padding:2px 10px}.SelectionRect-module_insert-before__2Tyq5{top:-.5em}.SelectionRect-module_insert-after__3FJ4R{top:calc(100% + .5em)}.SelectionRect-module_dragHandle__2vVhP{position:absolute;top:-7px;left:10px;transform:translate(-100%,-50%);z-index:1;visibility:hidden;padding:10px;cursor:move}.SelectionRect-module_selected__1PhM6 .SelectionRect-module_dragHandle__2vVhP{visibility:visible}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP{left:0;top:0;transform:translate(0);background:radial-gradient(rgba(0,0,0,.72),transparent 50%)}.SelectionRect-module_dragHandle__2vVhP svg{display:block;color:currentColor;width:15px;height:15px;opacity:.8}.SelectionRect-module_dragHandle__2vVhP:hover svg{opacity:1}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP svg{color:#fff}.DropTargets-module_target__Z2N2d{position:absolute;height:50%;width:100%;left:-50px;padding-left:50px;padding-bottom:.5em;opacity:.8}.DropTargets-module_target__Z2N2d:before{content:"";position:absolute;display:block;left:50px;right:0}.DropTargets-module_target__Z2N2d.DropTargets-module_isOver__3ksFy:before{border-top:2px solid}.DropTargets-module_before__cAXo1{top:-.5em}.DropTargets-module_before__cAXo1:before{top:-1px}.DropTargets-module_after__2Q8QU{top:50%}.DropTargets-module_after__2Q8QU:before{top:calc(100% - 1px)}.DropTargets-module_container__3vudG{position:absolute;top:-.5em;left:-50px;width:100%;height:100%;padding:.5em 0 8px 50px}.DropTargets-module_dropTarget__3mmox{position:absolute;left:0;width:100%;opacity:.8}.DropTargets-module_dropIndicator__2zu4d{position:absolute;left:50px;right:0;border-top:2px solid;opacity:0}.DropTargets-module_isOver__2usWn .DropTargets-module_dropIndicator__2zu4d{opacity:1}.MotifArea-module_root__1_ACd{position:absolute;background:radial-gradient(transparent,currentColor);z-index:2;opacity:0;-webkit-transform:translateZ(0)}.MotifArea-module_visible__18Kln{opacity:.2}.SectionDecorator-module_wrapper__3sTk3{position:relative}.SectionDecorator-module_selected__1gcmF>section:before{content:"";display:block;position:absolute;border:1px solid;top:5px;left:5px;right:5px;bottom:5px;z-index:9;pointer-events:none}.SectionDecorator-module_transitionSelected__Wklk6>section:before{content:"";position:absolute;display:block;top:0;width:100%;border-top:2px dotted #fff;z-index:9;background-color:#555;opacity:.7}.SectionDecorator-module_controls__LVEJG{position:absolute;top:-33px;right:0;height:100%;width:50px;padding-left:20px;z-index:10;display:none}.SectionDecorator-module_selected__1gcmF .SectionDecorator-module_controls__LVEJG,.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_controls__LVEJG{display:block}.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_editToolbar__18Kjq{visibility:hidden}.SectionDecorator-module_toolbar__2Va1D{position:absolute;padding:10px 0 10px 10px;z-index:10;overflow:hidden}.SectionDecorator-module_transitionToolbar-before__KipOO{top:0}.SectionDecorator-module_transitionToolbar-after__2_DVO{bottom:-63px}.TwoColumn-module_group__3Hg2y{margin-left:8%;margin-right:8%}.TwoColumn-module_group-full__2OT4o{margin-left:0;margin-right:0}.TwoColumn-module_inline__1fPfM,.TwoColumn-module_sticky__4LCDO,.TwoColumn-module_wide__xdF_t{max-width:500px}.TwoColumn-module_wideViewport___c_Zz .TwoColumn-module_wide__xdF_t{max-width:1200px}.TwoColumn-module_narrowViewport__1x_NY.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO,.TwoColumn-module_right__Fr52a .TwoColumn-module_inline__1fPfM,.TwoColumn-module_right__Fr52a .TwoColumn-module_wide__xdF_t{margin-left:auto}.TwoColumn-module_wideViewport___c_Zz .TwoColumn-module_sticky__4LCDO{position:-webkit-sticky;position:sticky;float:right;clear:right;top:33%;width:30%;max-width:600px}.TwoColumn-module_wideViewport___c_Zz.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO{float:left}.Center-module_outer__3Rr0H{margin-left:8%;margin-right:8%}.Center-module_outer-full__3dknO{margin-left:0;margin-right:0}.Center-module_item__1KSs3{margin-left:auto;margin-right:auto;max-width:700px}.Center-module_item-wide__2shH7{margin-left:auto;margin-right:auto;max-width:1200px}.Center-module_item-full__1cEuv{margin-left:0;margin-right:0;max-width:none}.Center-module_clear__jJEap{clear:both}@media (min-width:950px){.Center-module_inner-left__2z9Ea,.Center-module_inner-right__KBkVt{margin-top:.375em;position:relative;z-index:1}.Center-module_inner-left__2z9Ea{float:left;width:60%;margin-left:-10%;margin-right:1em;margin-bottom:1em}.Center-module_inner-right__KBkVt{float:right;width:60%;margin-right:-10%;margin-left:1em;margin-bottom:1em}}.ToggleFullscreenButton-module_button__3iBr8{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ToggleFullscreenButton-module_button__3iBr8 svg{fill:currentColor;width:20px;height:20px}.Fullscreen-module_wrapper__300hJ{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:20000}.Foreground-module_Foreground__13ODU{position:relative;z-index:3;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center}.Foreground-module_fullFadeHeight__2p9dx{min-height:51vh}.Foreground-module_fullHeight__1vMXb{min-height:100vh}.Foreground-module_inFirstSection__1r-_i{padding-top:58px}.Foreground-module_paddingBottom__3OtY4{padding-bottom:3em}@media print{.Foreground-module_Foreground__13ODU{min-height:auto;margin-top:0!important}}.Viewer-module_full__1q18y{height:100%}.Viewer-module_container__3eJ34{background-color:#000;color:#fff;cursor:move}.Viewer-module_controls__3BTof{position:absolute;right:0;top:0;color:#fff;background:linear-gradient(30deg,transparent,transparent 60%,rgba(0,0,0,.65));padding:5px 5px 40px 70px;pointer-events:none}.Viewer-module_controls__3BTof>*{pointer-events:auto}.Viewer-module_spinner__2oRve{-webkit-animation:Viewer-module_spin__3jBR2 .75s linear infinite;animation:Viewer-module_spin__3jBR2 .75s linear infinite;width:40px;height:40px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:none}.Viewer-module_spinner__2oRve.Viewer-module_isLoading__sQuGw{display:block}@-webkit-keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.globalNotices{z-index:100000000;position:fixed;bottom:10px;left:10px}@supports not (old:ie){.unsupported{display:none}}.globalNotices div{background:#fff;padding:20px;max-width:240px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-family:Source Sans Pro;border-top:2px solid #a50e0e;margin-top:10px}.AppHeader-module_navigationBar__2EFHw{font-family:var(--theme-navigation-font-family);position:fixed;top:-50px;transition:top .15s;z-index:10000;width:100%;text-align:center;height:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.AppHeader-module_navigationBarExpanded__18nbf{top:0}.AppHeader-module_navigationBarContentWrapper__2Sf8y{position:relative;z-index:2;background-color:var(--theme-navigation-surface-color);color:var(--theme-navigation-on-surface-color);height:50px}.AppHeader-module_menuIcon__5JKuj{position:absolute}.AppHeader-module_contextIcons__23I_3{position:absolute;top:0;right:0;display:flex;overflow:hidden;padding:0 12px 100% 300px;pointer-events:none}.AppHeader-module_contextIcons__23I_3>*{pointer-events:auto}.AppHeader-module_contextIcon__157kW{cursor:pointer;width:40px;height:50px;fill:var(--theme-navigation-secondary-on-surface-color)}.AppHeader-module_contextIcon__157kW:hover,div:focus-within>.AppHeader-module_contextIcon__157kW{fill:var(--theme-navigation-primary-on-surface-color)}.AppHeader-module_logo__2E1pn{top:0;left:15px;height:100%}.AppHeader-module_logo__2E1pn img{height:100%}.AppHeader-module_chapterList__2lMMD{padding:0;margin:0;list-style:none;display:flex}.AppHeader-module_chapterListItem__28zrc{position:relative;padding:0 5px;border-right:1px solid #e9e9e9}.AppHeader-module_chapterListItem__28zrc:last-of-type{border-right:none}.AppHeader-module_navigationTooltip__1EvCy{opacity:1!important;box-shadow:0 0 .3125rem rgba(0,0,0,.2)}.AppHeader-module_progressBar__17IVu{position:relative;background-color:hsla(0,0%,76.1%,.8);height:8px;width:100%}.AppHeader-module_progressIndicator__3SlYz{position:absolute;top:0;left:0;width:0;height:100%;background-color:var(--theme-accent-color)}@media screen and (max-width:780px){.AppHeader-module_hasChapters__CTJWZ .AppHeader-module_logo__2E1pn{left:65px}.AppHeader-module_navigationChapters__1dzyV{display:block;position:fixed;top:60px;left:0;background:var(--theme-navigation-background-color);width:100vw;height:calc(100vh - 60px);-ms-scroll-chaining:none;overscroll-behavior:contain;overflow:scroll}.AppHeader-module_navigationChaptersHidden__8AEPA{display:none}.AppHeader-module_chapterList__2lMMD{display:block;padding-top:50px;box-sizing:border-box;min-height:101%}.AppHeader-module_chapterListItem__28zrc{width:80vw;padding:25px 10vw;border-right:none}.AppHeader-module_chapterListItem__28zrc:after,.AppHeader-module_chapterListItem__28zrc:before{display:table;content:" ";border-top:1px solid #646464;width:14%;margin:0 43%;transition:width .15s,margin .15s}.AppHeader-module_chapterListItem__28zrc:hover:after,.AppHeader-module_chapterListItem__28zrc:hover:before{border-top:1px solid var(--theme-navigation-primary-on-background-color);width:80%;margin:0 10%}.AppHeader-module_chapterListItem__28zrc p{margin-top:0}.AppHeader-module_progressBar__17IVu{height:10px}}@media print{.AppHeader-module_navigationBar__2EFHw{position:relative;top:0;height:auto}.AppHeader-module_logo__2E1pn{left:0}.AppHeader-module_chapterList__2lMMD,.AppHeader-module_contextIcons__23I_3,.AppHeader-module_progressBar__17IVu{display:none}}.HamburgerIcon-module_burgerMenuIconContainer__26RY4{display:none}.HamburgerIcon-module_burgerMenuIcon__24t-5{top:12px;left:12px;outline:none}@media screen and (max-width:780px){.HamburgerIcon-module_burgerMenuIconContainer__26RY4{display:block}}
1
+ .index-module_container__3dD9z{position:relative}.index-module_hoveringToolbar__31Xpd{position:absolute;z-index:2;top:-10000px;left:-10000px;margin-top:-6px;opacity:0;white-space:nowrap}.index-module_selection__3dUiD{display:none;position:absolute;z-index:1;width:100%;pointer-events:none}.index-module_linkTooltip__36m1K{background-color:#222;border-radius:4px;font-family:Helvetica,Arial,"Sans-Serif";font-size:13px;line-height:1;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.index-module_linkTooltip__36m1K:before{content:"";display:block;position:absolute;left:20px;bottom:100%;border:4px solid transparent;border-bottom-color:#222}.index-module_linkTooltip__36m1K a,.index-module_linkTooltip__36m1K button,.index-module_linkTooltip__36m1K input{color:#fff;background-color:transparent;border:0;display:inline-block;padding:10px}.index-module_linkTooltip__36m1K input{outline:none}.index-module_linkTooltip__36m1K button{border:0;cursor:pointer}.index-module_linkTooltip__36m1K svg{padding-left:7px}.ContentElementMargin-module_wrapper__20kIk{margin:1em 0 0}.ContentElement-module_missing__2_1j9{color:#000;background-color:#fff;border-left:5px solid #f44336;padding:.5em;margin:1em 0 0}.TextPlaceholder-module_placeholder__sgVwx{pointer-events:none;opacity:.5;height:0}.TextPlaceholder-module_placeholder__sgVwx>div{transform:translateY(-100%)}.Text-module_h2__34chJ{font-size:66px;font-weight:700}.Text-module_h1__2_5kX{font-size:110px;line-height:1}.Text-module_body__4oWD-{font-size:22px;line-height:1.4}.Text-module_caption__3_6Au{font-size:20px;line-height:1.4}@media (max-width:600px){.Text-module_h2__34chJ{font-size:40px}.Text-module_h1__2_5kX{font-size:66px}}.useScrollPositionLifecycle-module_wrapper__1a6Kr{position:relative}.useScrollPositionLifecycle-module_isActiveProbe__3VKB5{position:absolute;top:0;left:0;bottom:2px;width:1px}.DropTargets-module_target__Z2N2d{position:absolute;height:50%;width:100%;left:-50px;padding-left:50px;padding-bottom:.5em;opacity:.8}.DropTargets-module_target__Z2N2d:before{content:"";position:absolute;display:block;left:50px;right:0}.DropTargets-module_target__Z2N2d.DropTargets-module_isOver__3ksFy:before{border-top:2px solid}.DropTargets-module_before__cAXo1{top:-.5em}.DropTargets-module_before__cAXo1:before{top:-1px}.DropTargets-module_after__2Q8QU{top:50%}.DropTargets-module_after__2Q8QU:before{top:calc(100% - 1px)}.SelectionRect-module_main__3AOhG{position:relative}.SelectionRect-module_main__3AOhG:after,.SelectionRect-module_main__3AOhG:before{content:"";position:absolute;top:-.5em;left:-.5em;right:-.5em;bottom:-.5em;pointer-events:none;opacity:.8}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF):before{top:5px}.SelectionRect-module_full__3tsQF:after,.SelectionRect-module_full__3tsQF:before{left:0;right:0}.SelectionRect-module_selected__1PhM6:before{border-left:1px solid}.SelectionRect-module_selected__1PhM6:after{border-right:1px solid}.SelectionRect-module_toolbar__3nPrd{position:absolute;top:-40px;right:-15px;z-index:1;pointer-events:auto}.SelectionRect-module_insert__w0Tl0{display:none;text-align:center;position:absolute;width:100%;opacity:.8;pointer-events:none}.SelectionRect-module_insertHovered__VTsDD.SelectionRect-module_insert__w0Tl0{opacity:1}.SelectionRect-module_end__3qOoK .SelectionRect-module_insert-after__3FJ4R,.SelectionRect-module_start__3_nAf .SelectionRect-module_insert-before__2Tyq5{display:block}.SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_insert__w0Tl0:before{content:"";position:absolute;top:0;width:calc(50% - 5px);height:0;border-bottom:1px solid}.SelectionRect-module_insert__w0Tl0:before{left:-.5em}.SelectionRect-module_insert__w0Tl0:after{right:-.5em}.SelectionRect-module_draggable__3Qp53:not(.SelectionRect-module_full__3tsQF) .SelectionRect-module_insert-before__2Tyq5:before{left:5px;width:calc(50% - 10px - .5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after,.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{width:calc(50% - 5px + -.5em)}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:before{left:0}.SelectionRect-module_full__3tsQF .SelectionRect-module_insert__w0Tl0:after{right:0}.SelectionRect-module_insertButton__1g-ZG{pointer-events:auto;border:0;background:none;color:currentColor;display:inline-block;vertical-align:top;position:relative;top:-9px;padding:2px 10px}.SelectionRect-module_insert-before__2Tyq5{top:-.5em}.SelectionRect-module_insert-after__3FJ4R{top:calc(100% + .5em)}.SelectionRect-module_dragHandle__2vVhP{position:absolute;top:-7px;left:10px;transform:translate(-100%,-50%);z-index:1;visibility:hidden;padding:10px;cursor:move}.SelectionRect-module_selected__1PhM6 .SelectionRect-module_dragHandle__2vVhP{visibility:visible}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP{left:0;top:0;transform:translate(0);background:radial-gradient(rgba(0,0,0,.72),transparent 50%)}.SelectionRect-module_dragHandle__2vVhP svg{display:block;color:currentColor;width:15px;height:15px;opacity:.8}.SelectionRect-module_dragHandle__2vVhP:hover svg{opacity:1}.SelectionRect-module_full__3tsQF .SelectionRect-module_dragHandle__2vVhP svg{color:#fff}.Toolbar-module_Toolbar__1INSj{background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23);display:flex;gap:2px}.Toolbar-module_button__de5BW{border:0;background:#fff;padding:10px;opacity:.6}.Toolbar-module_button__de5BW:hover{opacity:1}.Toolbar-module_activeButton__2sOLP{background:#ddd;opacity:1}@media (max-width:460px){.Toolbar-module_collapsible__3sivb .Toolbar-module_button__de5BW{display:none}.Toolbar-module_collapsible__3sivb .Toolbar-module_activeButton__2sOLP,.Toolbar-module_collapsible__3sivb:focus-within .Toolbar-module_button__de5BW,.Toolbar-module_collapsible__3sivb:hover .Toolbar-module_button__de5BW{display:inline-block}}.ContentElementInsertButton-module_container__3dvUS{height:0;position:relative;top:1em;text-align:center;opacity:.8}.ContentElementInsertButton-module_hovered__3Pggi{opacity:1}.ContentElementInsertButton-module_container__3dvUS:after,.ContentElementInsertButton-module_container__3dvUS:before{content:"";border-top:1px solid;width:calc(50% - 20px);position:absolute;top:0}.ContentElementInsertButton-module_container__3dvUS:before{left:0}.ContentElementInsertButton-module_container__3dvUS:after{right:0}.ContentElementInsertButton-module_button__2-eE2{border:0;background:none;color:currentColor;position:relative;top:-8px}.DropTargets-module_container__3vudG{position:absolute;top:-.5em;left:-50px;width:100%;height:100%;padding:.5em 0 8px 50px}.DropTargets-module_dropTarget__3mmox{position:absolute;left:0;width:100%;opacity:.8}.DropTargets-module_dropIndicator__2zu4d{position:absolute;left:50px;right:0;border-top:2px solid;opacity:0}.DropTargets-module_isOver__2usWn .DropTargets-module_dropIndicator__2zu4d{opacity:1}.MotifArea-module_root__1_ACd{position:absolute;background:radial-gradient(transparent,currentColor);z-index:2;opacity:0;-webkit-transform:translateZ(0)}.MotifArea-module_visible__18Kln{opacity:.2}.SectionDecorator-module_wrapper__3sTk3{position:relative}.SectionDecorator-module_selected__1gcmF>section:before{content:"";display:block;position:absolute;border:1px solid;top:5px;left:5px;right:5px;bottom:5px;z-index:9;pointer-events:none}.SectionDecorator-module_transitionSelected__Wklk6>section:before{content:"";position:absolute;display:block;top:0;width:100%;border-top:2px dotted #fff;z-index:9;background-color:#555;opacity:.7}.SectionDecorator-module_controls__LVEJG{position:absolute;top:-33px;right:0;height:100%;width:50px;padding-left:20px;z-index:10;display:none}.SectionDecorator-module_selected__1gcmF .SectionDecorator-module_controls__LVEJG,.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_controls__LVEJG{display:block}.SectionDecorator-module_transitionSelected__Wklk6 .SectionDecorator-module_editToolbar__18Kjq{visibility:hidden}.SectionDecorator-module_toolbar__2Va1D{position:absolute;padding:10px 0 10px 10px;z-index:10;overflow:hidden}.SectionDecorator-module_transitionToolbar-before__KipOO{top:0}.SectionDecorator-module_transitionToolbar-after__2_DVO{bottom:-63px}.TwoColumn-module_group__3Hg2y{margin-left:8%;margin-right:8%}.TwoColumn-module_group-full__2OT4o{margin-left:0;margin-right:0}.TwoColumn-module_inline__1fPfM,.TwoColumn-module_sticky__4LCDO,.TwoColumn-module_wide__xdF_t{max-width:500px}.TwoColumn-module_wideViewport___c_Zz .TwoColumn-module_wide__xdF_t{max-width:1200px}.TwoColumn-module_narrowViewport__1x_NY.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO,.TwoColumn-module_right__Fr52a .TwoColumn-module_inline__1fPfM,.TwoColumn-module_right__Fr52a .TwoColumn-module_wide__xdF_t{margin-left:auto}.TwoColumn-module_wideViewport___c_Zz .TwoColumn-module_sticky__4LCDO{position:-webkit-sticky;position:sticky;float:right;clear:right;top:33%;width:30%;max-width:600px}.TwoColumn-module_wideViewport___c_Zz.TwoColumn-module_right__Fr52a .TwoColumn-module_sticky__4LCDO{float:left}.Center-module_outer__3Rr0H{margin-left:8%;margin-right:8%}.Center-module_outer-full__3dknO{margin-left:0;margin-right:0}.Center-module_item__1KSs3{margin-left:auto;margin-right:auto;max-width:700px}.Center-module_item-wide__2shH7{margin-left:auto;margin-right:auto;max-width:1200px}.Center-module_item-full__1cEuv{margin-left:0;margin-right:0;max-width:none}.Center-module_clear__jJEap{clear:both}@media (min-width:950px){.Center-module_inner-left__2z9Ea,.Center-module_inner-right__KBkVt{margin-top:.375em;position:relative;z-index:1}.Center-module_inner-left__2z9Ea{float:left;width:60%;margin-left:-10%;margin-right:1em;margin-bottom:1em}.Center-module_inner-right__KBkVt{float:right;width:60%;margin-right:-10%;margin-left:1em;margin-bottom:1em}}.ToggleFullscreenButton-module_button__3iBr8{width:40px;height:40px;margin:0 2px;display:flex;align-items:center;justify-content:center;color:currentColor;cursor:pointer}.ToggleFullscreenButton-module_button__3iBr8 svg{fill:currentColor;width:20px;height:20px}.Fullscreen-module_wrapper__300hJ{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:20000}.Foreground-module_Foreground__13ODU{position:relative;z-index:3;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center}.Foreground-module_fullFadeHeight__2p9dx{min-height:51vh}.Foreground-module_fullHeight__1vMXb{min-height:100vh}.Foreground-module_inFirstSection__1r-_i{padding-top:58px}.Foreground-module_paddingBottom__3OtY4{padding-bottom:3em}@media print{.Foreground-module_Foreground__13ODU{min-height:auto;margin-top:0!important}}.Viewer-module_full__1q18y{height:100%}.Viewer-module_container__3eJ34{background-color:#000;color:#fff;cursor:move}.Viewer-module_controls__3BTof{position:absolute;right:0;top:0;color:#fff;background:linear-gradient(30deg,transparent,transparent 60%,rgba(0,0,0,.65));padding:5px 5px 40px 70px;pointer-events:none}.Viewer-module_controls__3BTof>*{pointer-events:auto}.Viewer-module_spinner__2oRve{-webkit-animation:Viewer-module_spin__3jBR2 .75s linear infinite;animation:Viewer-module_spin__3jBR2 .75s linear infinite;width:40px;height:40px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:none}.Viewer-module_spinner__2oRve.Viewer-module_isLoading__sQuGw{display:block}@-webkit-keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes Viewer-module_spin__3jBR2{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.globalNotices{z-index:100000000;position:fixed;bottom:10px;left:10px}@supports not (old:ie){.unsupported{display:none}}.globalNotices div{background:#fff;padding:20px;max-width:240px;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);font-family:Source Sans Pro;border-top:2px solid #a50e0e;margin-top:10px}.AppHeader-module_navigationBar__2EFHw{font-family:var(--theme-navigation-font-family);position:fixed;top:-50px;transition:top .15s;z-index:10000;width:100%;text-align:center;height:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.AppHeader-module_navigationBarExpanded__18nbf{top:0}.AppHeader-module_navigationBarContentWrapper__2Sf8y{position:relative;z-index:2;background-color:var(--theme-navigation-surface-color);color:var(--theme-navigation-on-surface-color);height:50px}.AppHeader-module_menuIcon__5JKuj{position:absolute}.AppHeader-module_contextIcons__23I_3{position:absolute;top:0;right:0;display:flex;overflow:hidden;padding:0 12px 100% 300px;pointer-events:none}.AppHeader-module_contextIcons__23I_3>*{pointer-events:auto}.AppHeader-module_contextIcon__157kW{cursor:pointer;width:40px;height:50px;fill:var(--theme-navigation-secondary-on-surface-color)}.AppHeader-module_contextIcon__157kW:hover,div:focus-within>.AppHeader-module_contextIcon__157kW{fill:var(--theme-navigation-primary-on-surface-color)}.AppHeader-module_logo__2E1pn{top:0;left:15px;height:100%}.AppHeader-module_logo__2E1pn img{height:100%}.AppHeader-module_chapterList__2lMMD{padding:0;margin:0;list-style:none;display:flex}.AppHeader-module_chapterListItem__28zrc{position:relative;padding:0 5px;border-right:1px solid #e9e9e9}.AppHeader-module_chapterListItem__28zrc:last-of-type{border-right:none}.AppHeader-module_navigationTooltip__1EvCy{opacity:1!important;box-shadow:0 0 .3125rem rgba(0,0,0,.2)}.AppHeader-module_progressBar__17IVu{position:relative;background-color:hsla(0,0%,76.1%,.8);height:8px;width:100%}.AppHeader-module_progressIndicator__3SlYz{position:absolute;top:0;left:0;width:0;height:100%;background-color:var(--theme-accent-color)}@media screen and (max-width:780px){.AppHeader-module_hasChapters__CTJWZ .AppHeader-module_logo__2E1pn{left:65px}.AppHeader-module_navigationChapters__1dzyV{display:block;position:fixed;top:60px;left:0;background:var(--theme-navigation-background-color);width:100vw;height:calc(100vh - 60px);-ms-scroll-chaining:none;overscroll-behavior:contain;overflow:scroll}.AppHeader-module_navigationChaptersHidden__8AEPA{display:none}.AppHeader-module_chapterList__2lMMD{display:block;padding-top:50px;box-sizing:border-box;min-height:101%}.AppHeader-module_chapterListItem__28zrc{width:80vw;padding:25px 10vw;border-right:none}.AppHeader-module_chapterListItem__28zrc:after,.AppHeader-module_chapterListItem__28zrc:before{display:table;content:" ";border-top:1px solid #646464;width:14%;margin:0 43%;transition:width .15s,margin .15s}.AppHeader-module_chapterListItem__28zrc:hover:after,.AppHeader-module_chapterListItem__28zrc:hover:before{border-top:1px solid var(--theme-navigation-primary-on-background-color);width:80%;margin:0 10%}.AppHeader-module_chapterListItem__28zrc p{margin-top:0}.AppHeader-module_progressBar__17IVu{height:10px}}@media print{.AppHeader-module_navigationBar__2EFHw{position:relative;top:0;height:auto}.AppHeader-module_logo__2E1pn{left:0}.AppHeader-module_chapterList__2lMMD,.AppHeader-module_contextIcons__23I_3,.AppHeader-module_progressBar__17IVu{display:none}}.HamburgerIcon-module_burgerMenuIconContainer__26RY4{display:none}.HamburgerIcon-module_burgerMenuIcon__24t-5{top:12px;left:12px;outline:none}@media screen and (max-width:780px){.HamburgerIcon-module_burgerMenuIconContainer__26RY4{display:block}}
2
2
 
3
3
  /*!
4
4
  * Hamburgers
@@ -1,3 +1,3 @@
1
1
  module Pageflow
2
- VERSION = '15.5.0'.freeze
2
+ VERSION = '15.6.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.5.0
4
+ version: 15.6.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: 2021-05-07 00:00:00.000000000 Z
11
+ date: 2021-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails