spree_frontend 4.3.0.rc2 → 4.3.0.rc3
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 +4 -4
- data/app/assets/images/arrow-right-circle-fill.svg +3 -0
- data/app/views/spree/layouts/spree_application.html.erb +1 -0
- data/app/views/spree/shared/_copyright.html.erb +1 -10
- data/app/views/spree/shared/_get_started.html.erb +32 -0
- metadata +10 -9
- data/app/assets/images/spark-logo@3x.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb4a74b1b7115b80405f1a3b20f297a7b5ee01900623b7e24d029e821ba3958b
|
|
4
|
+
data.tar.gz: 55960bbd275a107d009029ebd20321a42bc6e0c46e0b8c863955cdcc42898075
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a30ac40767917cdd7257f7a613d9d51275383adfc89a20d1fd4bc32741da1cb5d94f8f07f93ce35774d2f111a8903ae296846046cb29e5c19fb021d5c396bea9
|
|
7
|
+
data.tar.gz: 7247f2d98a0064f09da880554dd390d255aa6008228701169701b1d2b9b8c0c1c0f274647ff0bea0b05c41d20e2337bd0faba5831233b2df27f4255bf9001525
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right-circle-fill" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z"/>
|
|
3
|
+
</svg>
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
<%= render partial: 'spree/shared/head' %>
|
|
9
9
|
</head>
|
|
10
10
|
<body class="<%= body_class %>" id="<%= @body_id || 'default' %>" data-hook="body">
|
|
11
|
+
<%= render partial: 'spree/shared/get_started' %>
|
|
11
12
|
<%= render partial: 'spree/shared/header' %>
|
|
12
13
|
<div id="overlay" class="overlay hide-on-esc"></div>
|
|
13
14
|
|
|
@@ -1,17 +1,8 @@
|
|
|
1
1
|
<div class="border-top footer-spree-copyright">
|
|
2
2
|
<div class="container">
|
|
3
3
|
<div class="d-flex flex-column flex-lg-row align-items-center justify-content-center py-3 footer-spree-copyright-content">
|
|
4
|
-
<div>Designed and developed by</div>
|
|
5
|
-
<div class="mb-1 mb-lg-0">
|
|
6
|
-
<%= link_to 'https://sparksolutions.co/', target: :_blank, 'aria-label': 'Go to Spark Solutions', rel: :follow do %>
|
|
7
|
-
<%= image_tag 'spark-logo@3x.png', class: 'footer-spree-copyright-logo-spark mx-2', alt: 'Spree Commerce & Ruby on Rails developers', title: 'Spree Commerce & Ruby on Rails developers' %>
|
|
8
|
-
<% end %>
|
|
9
|
-
</div>
|
|
10
|
-
<div class="d-none d-lg-inline-block mr-2">|</div>
|
|
11
4
|
<div>
|
|
12
|
-
© <%= Time.current.year %>
|
|
13
|
-
<%= link_to current_store.name, "https://#{current_store.url}" %>.
|
|
14
|
-
<%= Spree.t(:all_rights_reserved) %>.
|
|
5
|
+
Designed and developed by <%= link_to 'Spark Solutions', 'https://sparksolutions.co/', target: :_blank, 'aria-label': 'Go to Spark Solutions', rel: :follow %> | © <%= Time.current.year %> <%= link_to current_store.name, current_store.formatted_url %>. <%= Spree.t(:all_rights_reserved) %>.
|
|
15
6
|
</div>
|
|
16
7
|
</div>
|
|
17
8
|
</div>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!-- Styles And Script In A View Partial
|
|
2
|
+
If this view partial is removed from the spree_application.html.erb layout file, the storefront
|
|
3
|
+
will instantly snap back to the original look and feel with no hangover CSS or JavaScript related
|
|
4
|
+
to this partial.
|
|
5
|
+
|
|
6
|
+
Please do not transfer styles and JavaScript found here
|
|
7
|
+
into the main stylesheets or JavaScript files.
|
|
8
|
+
-->
|
|
9
|
+
<style>
|
|
10
|
+
#getStartedBar {
|
|
11
|
+
background: #33ba6f;
|
|
12
|
+
color: white;
|
|
13
|
+
z-index: 10;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
#getStartedBar svg {
|
|
17
|
+
vertical-align: text-top;
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
|
|
21
|
+
<div id="getStartedBar" class="d-flex justify-content-center align-items-center p-1">
|
|
22
|
+
<div class="row">
|
|
23
|
+
<div class="col-12 text-center">
|
|
24
|
+
<h5 class="m-0">
|
|
25
|
+
<span style="font-weight: 200;">Create your own Spree project</span> <a href="https://spreecommerce.org/contact/" class="btn btn-outline-light btn-sm m-2" style="font-size: 1em; font-weight:800;">Get Started
|
|
26
|
+
<%= icon(name: 'arrow-right-circle-fill',
|
|
27
|
+
width: 22,
|
|
28
|
+
height: 22) %></a>
|
|
29
|
+
</h5>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spree_frontend
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.0.
|
|
4
|
+
version: 4.3.0.rc3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Schofield
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-08-
|
|
12
|
+
date: 2021-08-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: spree_api
|
|
@@ -17,28 +17,28 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 4.3.0.
|
|
20
|
+
version: 4.3.0.rc3
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - ">="
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 4.3.0.
|
|
27
|
+
version: 4.3.0.rc3
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: spree_core
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
31
31
|
requirements:
|
|
32
32
|
- - ">="
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 4.3.0.
|
|
34
|
+
version: 4.3.0.rc3
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - ">="
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 4.3.0.
|
|
41
|
+
version: 4.3.0.rc3
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: babel-transpiler
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -211,6 +211,7 @@ files:
|
|
|
211
211
|
- Rakefile
|
|
212
212
|
- app/assets/config/spree_frontend_manifest.js
|
|
213
213
|
- app/assets/images/arrow-down.svg
|
|
214
|
+
- app/assets/images/arrow-right-circle-fill.svg
|
|
214
215
|
- app/assets/images/arrow-right.svg
|
|
215
216
|
- app/assets/images/arrow.svg
|
|
216
217
|
- app/assets/images/bag.svg
|
|
@@ -548,7 +549,6 @@ files:
|
|
|
548
549
|
- app/assets/images/radio-button.svg
|
|
549
550
|
- app/assets/images/search-no-results.svg
|
|
550
551
|
- app/assets/images/search.svg
|
|
551
|
-
- app/assets/images/spark-logo@3x.png
|
|
552
552
|
- app/assets/images/twitter.svg
|
|
553
553
|
- app/assets/images/vimeo.svg
|
|
554
554
|
- app/assets/javascripts/spree.js
|
|
@@ -762,6 +762,7 @@ files:
|
|
|
762
762
|
- app/views/spree/shared/_error_messages.html.erb
|
|
763
763
|
- app/views/spree/shared/_flashes.html.erb
|
|
764
764
|
- app/views/spree/shared/_footer.html.erb
|
|
765
|
+
- app/views/spree/shared/_get_started.html.erb
|
|
765
766
|
- app/views/spree/shared/_head.html.erb
|
|
766
767
|
- app/views/spree/shared/_header.html.erb
|
|
767
768
|
- app/views/spree/shared/_internationalization_options.html.erb
|
|
@@ -838,9 +839,9 @@ licenses:
|
|
|
838
839
|
- BSD-3-Clause
|
|
839
840
|
metadata:
|
|
840
841
|
bug_tracker_uri: https://github.com/spree/spree/issues
|
|
841
|
-
changelog_uri: https://github.com/spree/spree/releases/tag/v4.3.0.
|
|
842
|
+
changelog_uri: https://github.com/spree/spree/releases/tag/v4.3.0.rc3
|
|
842
843
|
documentation_uri: https://dev-docs.spreecommerce.org/
|
|
843
|
-
source_code_uri: https://github.com/spree/spree/tree/v4.3.0.
|
|
844
|
+
source_code_uri: https://github.com/spree/spree/tree/v4.3.0.rc3
|
|
844
845
|
post_install_message:
|
|
845
846
|
rdoc_options: []
|
|
846
847
|
require_paths:
|
|
Binary file
|