spree_admin 5.0.0.rc1 → 5.0.1

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.
Files changed (161) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/spree/admin/components/_bulk_panel.scss +11 -1
  3. data/app/assets/stylesheets/spree/admin/components/_cards.scss +3 -4
  4. data/app/assets/stylesheets/spree/admin/components/_dropdowns.scss +1 -1
  5. data/app/assets/stylesheets/spree/admin/components/_main.scss +22 -5
  6. data/app/assets/stylesheets/spree/admin/components/_modals.scss +1 -1
  7. data/app/assets/stylesheets/spree/admin/global/_variables.scss +8 -2
  8. data/app/assets/stylesheets/spree/admin/shared/_base.scss +12 -1
  9. data/app/controllers/spree/admin/dashboard_controller.rb +4 -1
  10. data/app/controllers/spree/admin/products_controller.rb +1 -8
  11. data/app/controllers/spree/admin/storefront_controller.rb +1 -1
  12. data/app/controllers/spree/admin/translations_controller.rb +1 -1
  13. data/app/helpers/spree/admin/base_helper.rb +69 -63
  14. data/app/helpers/spree/admin/bulk_operations_helper.rb +86 -0
  15. data/app/helpers/spree/admin/modal_helper.rb +29 -0
  16. data/app/helpers/spree/admin/navigation_helper.rb +89 -11
  17. data/app/helpers/spree/admin/orders_helper.rb +0 -19
  18. data/app/helpers/spree/admin/stores_helper.rb +8 -36
  19. data/app/helpers/spree/admin/webhooks_subscribers_helper.rb +1 -1
  20. data/app/javascript/spree/admin/controllers/variants_form_controller.js +10 -3
  21. data/app/views/active_storage/_upload_form.html.erb +4 -8
  22. data/app/views/layouts/spree/admin.html.erb +4 -0
  23. data/app/views/spree/admin/assets/edit.html.erb +3 -8
  24. data/app/views/spree/admin/coupon_codes/index.html.erb +4 -6
  25. data/app/views/spree/admin/custom_domains/_custom_domains.html.erb +1 -1
  26. data/app/views/spree/admin/custom_domains/index.html.erb +1 -1
  27. data/app/views/spree/admin/customer_returns/index.html.erb +4 -17
  28. data/app/views/spree/admin/dashboard/_setup_progress.html.erb +4 -2
  29. data/app/views/spree/admin/dashboard/_sidebar.html.erb +2 -0
  30. data/app/views/spree/admin/dashboard/_top_products.html.erb +34 -24
  31. data/app/views/spree/admin/dashboard/analytics.html.erb +3 -1
  32. data/app/views/spree/admin/dashboard/show.html.erb +4 -8
  33. data/app/views/spree/admin/digital_assets/_table.html.erb +1 -1
  34. data/app/views/spree/admin/digital_assets/edit.html.erb +3 -11
  35. data/app/views/spree/admin/digital_assets/new.html.erb +3 -11
  36. data/app/views/spree/admin/exports/index.html.erb +22 -24
  37. data/app/views/spree/admin/exports/new.html.erb +3 -9
  38. data/app/views/spree/admin/line_items/new.html.erb +2 -5
  39. data/app/views/spree/admin/oauth_applications/index.html.erb +57 -58
  40. data/app/views/spree/admin/option_types/_filter.html.erb +1 -1
  41. data/app/views/spree/admin/option_types/index.html.erb +7 -11
  42. data/app/views/spree/admin/orders/_customer_summary.html.erb +0 -2
  43. data/app/views/spree/admin/orders/_filters.html.erb +3 -8
  44. data/app/views/spree/admin/orders/_header.html.erb +2 -0
  45. data/app/views/spree/admin/orders/_list.html.erb +2 -4
  46. data/app/views/spree/admin/orders/_summary.html.erb +1 -1
  47. data/app/views/spree/admin/orders/billing_address/create.turbo_stream.erb +3 -6
  48. data/app/views/spree/admin/orders/billing_address/edit.html.erb +3 -6
  49. data/app/views/spree/admin/orders/billing_address/new.html.erb +3 -6
  50. data/app/views/spree/admin/orders/billing_address/update.turbo_stream.erb +3 -6
  51. data/app/views/spree/admin/orders/contact_information/edit.html.erb +3 -6
  52. data/app/views/spree/admin/orders/customer_returns/edit.html.erb +1 -10
  53. data/app/views/spree/admin/orders/edit.html.erb +3 -5
  54. data/app/views/spree/admin/orders/index.html.erb +1 -1
  55. data/app/views/spree/admin/orders/return_authorizations/_form.html.erb +1 -1
  56. data/app/views/spree/admin/orders/return_authorizations/show.html.erb +45 -43
  57. data/app/views/spree/admin/orders/shipping_address/create.turbo_stream.erb +3 -6
  58. data/app/views/spree/admin/orders/shipping_address/edit.html.erb +3 -6
  59. data/app/views/spree/admin/orders/shipping_address/new.html.erb +3 -6
  60. data/app/views/spree/admin/orders/shipping_address/update.turbo_stream.erb +3 -6
  61. data/app/views/spree/admin/pages/_filters.html.erb +1 -1
  62. data/app/views/spree/admin/pages/edit.html.erb +2 -5
  63. data/app/views/spree/admin/pages/index.html.erb +4 -4
  64. data/app/views/spree/admin/payment_methods/index.html.erb +10 -8
  65. data/app/views/spree/admin/post_categories/index.html.erb +4 -6
  66. data/app/views/spree/admin/posts/_filters.html.erb +2 -7
  67. data/app/views/spree/admin/posts/_post.html.erb +1 -11
  68. data/app/views/spree/admin/posts/index.html.erb +5 -9
  69. data/app/views/spree/admin/products/_bulk_operations.html.erb +59 -94
  70. data/app/views/spree/admin/products/_filters.html.erb +13 -8
  71. data/app/views/spree/admin/products/_form.html.erb +3 -3
  72. data/app/views/spree/admin/products/_list.html.erb +2 -10
  73. data/app/views/spree/admin/products/_product.html.erb +1 -4
  74. data/app/views/spree/admin/products/bulk_modal.html.erb +3 -8
  75. data/app/views/spree/admin/products/edit.html.erb +3 -0
  76. data/app/views/spree/admin/products/form/_variants.html.erb +1 -0
  77. data/app/views/spree/admin/products/index.html.erb +5 -5
  78. data/app/views/spree/admin/promotion_actions/new.html.erb +7 -12
  79. data/app/views/spree/admin/promotion_rules/new.html.erb +7 -12
  80. data/app/views/spree/admin/promotions/_filters.html.erb +27 -0
  81. data/app/views/spree/admin/promotions/index.html.erb +7 -35
  82. data/app/views/spree/admin/properties/index.html.erb +10 -9
  83. data/app/views/spree/admin/refund_reasons/index.html.erb +37 -35
  84. data/app/views/spree/admin/refunds/edit.html.erb +3 -8
  85. data/app/views/spree/admin/reimbursement_types/index.html.erb +42 -40
  86. data/app/views/spree/admin/reports/_report.html.erb +1 -1
  87. data/app/views/spree/admin/return_authorization_reasons/index.html.erb +41 -41
  88. data/app/views/spree/admin/return_authorizations/_filters.html.erb +1 -1
  89. data/app/views/spree/admin/return_authorizations/_list.html.erb +1 -10
  90. data/app/views/spree/admin/return_authorizations/index.html.erb +1 -1
  91. data/app/views/spree/admin/roles/_form.html.erb +1 -1
  92. data/app/views/spree/admin/roles/index.html.erb +26 -24
  93. data/app/views/spree/admin/shared/_bulk_modal.html.erb +6 -7
  94. data/app/views/spree/admin/shared/_developers_nav.html.erb +2 -2
  95. data/app/views/spree/admin/shared/_filter_submit.html.erb +6 -0
  96. data/app/views/spree/admin/shared/_head.html.erb +3 -1
  97. data/app/views/spree/admin/shared/_modal.html.erb +2 -8
  98. data/app/views/spree/admin/shared/_multi_product_picker.html.erb +2 -4
  99. data/app/views/spree/admin/shared/_no_resource_found.html.erb +1 -1
  100. data/app/views/spree/admin/shared/_posts_tabs.html.erb +2 -2
  101. data/app/views/spree/admin/shared/_product_image.html.erb +1 -10
  102. data/app/views/spree/admin/shared/_refunds.html.erb +1 -1
  103. data/app/views/spree/admin/shared/_returns_and_refunds_nav.html.erb +3 -3
  104. data/app/views/spree/admin/shared/_shipping_nav.html.erb +2 -2
  105. data/app/views/spree/admin/shared/_stock_nav.html.erb +2 -2
  106. data/app/views/spree/admin/shared/_tax_nav.html.erb +2 -2
  107. data/app/views/spree/admin/shared/_user.html.erb +2 -2
  108. data/app/views/spree/admin/shared/_user_dropdown.html.erb +2 -2
  109. data/app/views/spree/admin/shared/sidebar/_orders_nav.html.erb +19 -29
  110. data/app/views/spree/admin/shared/sidebar/_products_nav.html.erb +6 -25
  111. data/app/views/spree/admin/shared/sidebar/_returns_nav.html.erb +8 -15
  112. data/app/views/spree/admin/shared/sidebar/_store_dropdown.html.erb +36 -7
  113. data/app/views/spree/admin/shared/sidebar/_store_nav.html.erb +28 -52
  114. data/app/views/spree/admin/shared/sidebar/_storefront_nav.html.erb +19 -26
  115. data/app/views/spree/admin/shared/sortable_tree/_taxonomy.html.erb +3 -23
  116. data/app/views/spree/admin/shipping_categories/index.html.erb +28 -26
  117. data/app/views/spree/admin/shipping_methods/_actions.html.erb +1 -1
  118. data/app/views/spree/admin/shipping_methods/index.html.erb +23 -21
  119. data/app/views/spree/admin/stock_items/_filters.html.erb +2 -7
  120. data/app/views/spree/admin/stock_items/index.html.erb +5 -8
  121. data/app/views/spree/admin/stock_locations/_stock_location.html.erb +16 -13
  122. data/app/views/spree/admin/stock_locations/index.html.erb +24 -21
  123. data/app/views/spree/admin/stock_transfers/_filters.html.erb +1 -1
  124. data/app/views/spree/admin/stock_transfers/_new_variant_modal.html.erb +3 -5
  125. data/app/views/spree/admin/stock_transfers/index.html.erb +6 -6
  126. data/app/views/spree/admin/store_credit_categories/_form.html.erb +1 -1
  127. data/app/views/spree/admin/store_credit_categories/edit.html.erb +6 -4
  128. data/app/views/spree/admin/store_credit_categories/index.html.erb +28 -24
  129. data/app/views/spree/admin/store_credits/index.html.erb +2 -2
  130. data/app/views/spree/admin/storefront/edit.html.erb +7 -9
  131. data/app/views/spree/admin/stores/form/_basic.html.erb +2 -2
  132. data/app/views/spree/admin/stores/form/_policies.html.erb +1 -1
  133. data/app/views/spree/admin/stores/new.html.erb +8 -6
  134. data/app/views/spree/admin/tax_categories/index.html.erb +24 -22
  135. data/app/views/spree/admin/tax_rates/index.html.erb +26 -24
  136. data/app/views/spree/admin/taxonomies/index.html.erb +4 -4
  137. data/app/views/spree/admin/taxonomies/show.html.erb +2 -2
  138. data/app/views/spree/admin/themes/_theme_preview_image.html.erb +1 -10
  139. data/app/views/spree/admin/themes/index.html.erb +2 -2
  140. data/app/views/spree/admin/translations/_translations_unavailable.html.erb +6 -8
  141. data/app/views/spree/admin/users/_filters.html.erb +2 -7
  142. data/app/views/spree/admin/users/_tabs.html.erb +4 -4
  143. data/app/views/spree/admin/users/_user.html.erb +1 -4
  144. data/app/views/spree/admin/users/bulk_modal.html.erb +3 -8
  145. data/app/views/spree/admin/users/index.html.erb +25 -58
  146. data/app/views/spree/admin/variants/_variant.html.erb +8 -2
  147. data/app/views/spree/admin/variants/form/_media_asset.html.erb +1 -7
  148. data/app/views/spree/admin/variants/form/_pricing.html.erb +5 -4
  149. data/app/views/spree/admin/webhooks_subscribers/_form.html.erb +1 -1
  150. data/app/views/spree/admin/webhooks_subscribers/index.html.erb +25 -22
  151. data/app/views/spree/admin/webhooks_subscribers/show.html.erb +3 -3
  152. data/app/views/spree/admin/zones/index.html.erb +34 -32
  153. data/config/locales/en.yml +1 -46
  154. data/lib/spree/admin/engine.rb +50 -0
  155. metadata +13 -14
  156. data/app/views/spree/admin/orders/_extra_filters.html.erb +0 -0
  157. data/app/views/spree/admin/products/_empty_list.html.erb +0 -1
  158. data/app/views/spree/admin/products/form/_extra_filters.html.erb +0 -0
  159. data/app/views/spree/admin/products/form/_extra_form.html.erb +0 -0
  160. data/app/views/spree/admin/products/form/_extra_form_sidebar.erb +0 -0
  161. data/app/views/spree/admin/stores/form/_custom.html.erb +0 -0
@@ -3,7 +3,7 @@
3
3
  <% end %>
4
4
 
5
5
  <% content_for :page_actions do %>
6
- <%= button_link_to Spree.t(:new_zone), new_object_url, class: "btn-primary", icon: 'plus' %>
6
+ <%= link_to_with_icon 'plus', Spree.t(:new_zone), new_object_url, class: "btn btn-primary" %>
7
7
  <% end if can? :create, Spree::Zone %>
8
8
 
9
9
  <% content_for :page_alerts do %>
@@ -12,34 +12,36 @@
12
12
  </div>
13
13
  <% end %>
14
14
 
15
- <% if @zones.any? %>
16
- <div class="table-responsive card-lg p-0">
17
- <table class="table" id='listing_zones'>
18
- <thead class="text-muted">
19
- <tr>
20
- <th><%= sort_link @search,:name, Spree.t(:name), title: 'zones_order_by_name_title' %></th>
21
- <th>
22
- <%= sort_link @search,:description, Spree.t(:description), {}, {title: 'zones_order_by_description_title'} %>
23
- </th>
24
- <th><%= Spree.t(:default_tax_zone) %></th>
25
- <th class="actions"></th>
26
- </tr>
27
- </thead>
28
- <tbody>
29
- <% @zones.each do |zone| %>
30
- <tr id="<%= spree_dom_id zone %>" class="cursor-pointer" data-controller="row-link">
31
- <td class="w-25" data-action="click->row-link#openLink"><%= zone.name %></td>
32
- <td class="w-40 text-muted text-wrap" data-action="click->row-link#openLink"><%= zone.description %></td>
33
- <td class="w-10" data-action="click->row-link#openLink"><%= active_badge(zone.default_tax?) %></td>
34
- <td class="w-10 actions">
35
- <%= link_to_edit(zone, data: { row_link_target: :link }) if can? :edit, zone %>
36
- </td>
37
- </tr>
38
- <% end %>
39
- </tbody>
40
- </table>
41
- <%= render 'spree/admin/shared/index_table_options', collection: @zones, simple: true %>
42
- </div>
43
- <% else %>
44
- <%= render 'spree/admin/shared/no_resource_found' %>
45
- <% end %>
15
+ <div class="card-lg">
16
+ <% if @collection.any? %>
17
+ <div class="table-responsive">
18
+ <table class="table">
19
+ <thead class="text-muted">
20
+ <tr>
21
+ <th><%= sort_link @search,:name, Spree.t(:name) %></th>
22
+ <th>
23
+ <%= sort_link @search,:description, Spree.t(:description) %>
24
+ </th>
25
+ <th><%= Spree.t(:default_tax_zone) %></th>
26
+ <th></th>
27
+ </tr>
28
+ </thead>
29
+ <tbody>
30
+ <% @collection.each do |zone| %>
31
+ <tr id="<%= spree_dom_id zone %>" class="cursor-pointer" data-controller="row-link">
32
+ <td class="w-25" data-action="click->row-link#openLink"><%= zone.name %></td>
33
+ <td class="w-40 text-muted text-wrap" data-action="click->row-link#openLink"><%= zone.description %></td>
34
+ <td class="w-10" data-action="click->row-link#openLink"><%= active_badge(zone.default_tax?) %></td>
35
+ <td class="w-10 actions">
36
+ <%= link_to_edit(zone, data: { row_link_target: :link }) if can? :edit, zone %>
37
+ </td>
38
+ </tr>
39
+ <% end %>
40
+ </tbody>
41
+ </table>
42
+ <%= render 'spree/admin/shared/index_table_options', collection: @collection %>
43
+ </div>
44
+ <% else %>
45
+ <%= render 'spree/admin/shared/no_resource_found' %>
46
+ <% end %>
47
+ </div>
@@ -2,7 +2,6 @@
2
2
  en:
3
3
  spree:
4
4
  admin:
5
- active: Active
6
5
  amount_spent: Amount spent
7
6
  audit_log: Audit Log
8
7
  avg_order_value: Avg. Order Value
@@ -170,7 +169,6 @@ en:
170
169
  paused: Paused
171
170
  search_results:
172
171
  no_products: We couldn't find any products matching your search :(
173
- selected: products selected
174
172
  seo:
175
173
  placeholder: Add a title and description to see how this product might appear in a search engine listing
176
174
  status_form:
@@ -185,6 +183,7 @@ en:
185
183
  report_created: Your report is being generated. You will receive an email with a download link when it is ready!
186
184
  reset_digital_link_download_limits: Reset download limits
187
185
  response_code: Response Code
186
+ selected: selected
188
187
  send_payment_link: Send Payment Link
189
188
  shipment_transfer:
190
189
  wrong_destination: Wrong destination
@@ -231,7 +230,6 @@ en:
231
230
  manual: Manual
232
231
  manual_info: Curate products manually. You can add or remove them in bulk.
233
232
  upload_new_asset: Upload new asset
234
- url: URL
235
233
  user:
236
234
  last_order_placed: Last order placed
237
235
  no_store_credit: Customer has no Store Credit available
@@ -251,54 +249,11 @@ en:
251
249
  stock_locations_link: To add more stock locations please go to <a href="%{link}">Stock Locations</a>
252
250
  total_inventory_html: 'Total inventory at %{stock_location} location: %{count} available'
253
251
  webhooks_subscribers:
254
- addresses: Addresses
255
252
  all_events: All Events
256
- assets: Assets
257
- credit_cards: Credit Cards
258
- customer_returns: Customer Returns
259
- digital_links: Digital Links
260
- digitals: Digitals
261
- inventory_units: Inventory Units
262
- line_items: Line Items
263
253
  new_webhooks_subscriber: New Webhooks Subscriber
264
254
  no_events: No Events
265
- option_types: Option Types
266
- option_values: Option Values
267
- orders: Orders
268
- payment_capture_events: Payment Capture Events
269
- payments: Payments
270
- prices: Prices
271
- products: Products
272
- promotions: Promotions
273
- properties: Properties
274
- prototypes: Prototypes
275
- refunds: Refunds
276
- reimbursements: Reimbursements
277
- return_authorizations: Return Authorizations
278
- return_items: Return Items
279
- roles: Roles
280
255
  select_events: Select events
281
- shipment_transfer:
282
- wrong_destination: Selected location is not a valid destination
283
- shipments: Shipments
284
- shipping_categories: Shipping Categories
285
- shipping_methods: Shipping Methods
286
- shipping_rates: Shipping Rates
287
- stock_items: Stock Items
288
- stock_locations: Stock Locations
289
- stock_movements: Stock Movements
290
- stock_transfers: Stock Transfers
291
- store_credits: Store Credits
292
- stores: Stores
293
256
  subscribe_to_all_events: Subscribe to all events
294
257
  subscriptions: Subscriptions
295
- tax_rates: Tax Rates
296
- taxonomies: Taxonomies
297
- taxons: Taxons
298
258
  time_of_last_event: Time of Last Event
299
- variants: Variants
300
259
  webhooks_events: Webhooks Events
301
- webhooks_subscribers: Webhooks Subscribers
302
- wished_items: Wished Items
303
- wishlists: Wishlists
304
- zones: Zones
@@ -3,6 +3,33 @@ require_relative 'runtime_configuration'
3
3
  module Spree
4
4
  module Admin
5
5
  class Engine < ::Rails::Engine
6
+ Environment = Struct.new(
7
+ :head_partials,
8
+ :body_start_partials,
9
+ :body_end_partials,
10
+ :dashboard_analytics_partials,
11
+ :dashboard_sidebar_partials,
12
+ :product_dropdown_partials,
13
+ :product_form_partials,
14
+ :product_form_sidebar_partials,
15
+ :products_filters_partials,
16
+ :order_page_header_partials,
17
+ :order_page_body_partials,
18
+ :order_page_summary_partials,
19
+ :order_page_sidebar_partials,
20
+ :order_page_dropdown_partials,
21
+ :orders_filters_partials,
22
+ :store_form_partials,
23
+ :store_nav_partials,
24
+ :store_settings_nav_partials,
25
+ :store_orders_nav_partials,
26
+ :store_products_nav_partials
27
+ )
28
+
29
+ # accessible via Rails.application.config.spree_admin
30
+ initializer 'spree.admin.environment', before: :load_config_initializers do |app|
31
+ app.config.spree_admin = Environment.new
32
+ end
6
33
 
7
34
  initializer 'spree.admin.configuration', before: :load_config_initializers do |_app|
8
35
  Spree::Admin::RuntimeConfig = Spree::Admin::RuntimeConfiguration.new
@@ -46,6 +73,29 @@ module Spree
46
73
  end
47
74
  end
48
75
  end
76
+
77
+ config.after_initialize do
78
+ Rails.application.config.spree_admin.head_partials = []
79
+ Rails.application.config.spree_admin.body_start_partials = []
80
+ Rails.application.config.spree_admin.body_end_partials = []
81
+ Rails.application.config.spree_admin.dashboard_analytics_partials = []
82
+ Rails.application.config.spree_admin.dashboard_sidebar_partials = []
83
+ Rails.application.config.spree_admin.product_form_partials = []
84
+ Rails.application.config.spree_admin.product_form_sidebar_partials = []
85
+ Rails.application.config.spree_admin.product_dropdown_partials = []
86
+ Rails.application.config.spree_admin.products_filters_partials = []
87
+ Rails.application.config.spree_admin.order_page_header_partials = []
88
+ Rails.application.config.spree_admin.order_page_body_partials = []
89
+ Rails.application.config.spree_admin.order_page_sidebar_partials = []
90
+ Rails.application.config.spree_admin.order_page_summary_partials = []
91
+ Rails.application.config.spree_admin.order_page_dropdown_partials = []
92
+ Rails.application.config.spree_admin.orders_filters_partials = []
93
+ Rails.application.config.spree_admin.store_form_partials = []
94
+ Rails.application.config.spree_admin.store_nav_partials = []
95
+ Rails.application.config.spree_admin.store_settings_nav_partials = []
96
+ Rails.application.config.spree_admin.store_orders_nav_partials = []
97
+ Rails.application.config.spree_admin.store_products_nav_partials = []
98
+ end
49
99
  end
50
100
  end
51
101
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.rc1
4
+ version: 5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vendo Connect Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-01 00:00:00.000000000 Z
11
+ date: 2025-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: spree_core
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 5.0.0.rc1
19
+ version: 5.0.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 5.0.0.rc1
26
+ version: 5.0.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: spree_api
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 5.0.0.rc1
33
+ version: 5.0.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 5.0.0.rc1
40
+ version: 5.0.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: active_link_to
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -384,9 +384,11 @@ files:
384
384
  - app/controllers/spree/admin/webhooks_subscribers_controller.rb
385
385
  - app/controllers/spree/admin/zones_controller.rb
386
386
  - app/helpers/spree/admin/base_helper.rb
387
+ - app/helpers/spree/admin/bulk_operations_helper.rb
387
388
  - app/helpers/spree/admin/custom_domains_helper.rb
388
389
  - app/helpers/spree/admin/customer_returns_helper.rb
389
390
  - app/helpers/spree/admin/flash_helper.rb
391
+ - app/helpers/spree/admin/modal_helper.rb
390
392
  - app/helpers/spree/admin/navigation_helper.rb
391
393
  - app/helpers/spree/admin/onboarding_helper.rb
392
394
  - app/helpers/spree/admin/orders_filters_helper.rb
@@ -498,6 +500,7 @@ files:
498
500
  - app/views/spree/admin/dashboard/_analytics.html.erb
499
501
  - app/views/spree/admin/dashboard/_setup_progress.html.erb
500
502
  - app/views/spree/admin/dashboard/_setup_tasks.html.erb
503
+ - app/views/spree/admin/dashboard/_sidebar.html.erb
501
504
  - app/views/spree/admin/dashboard/_store_preview.html.erb
502
505
  - app/views/spree/admin/dashboard/_top_products.html.erb
503
506
  - app/views/spree/admin/dashboard/_updater.html.erb
@@ -541,7 +544,6 @@ files:
541
544
  - app/views/spree/admin/orders/_customer.html.erb
542
545
  - app/views/spree/admin/orders/_customer_returns.html.erb
543
546
  - app/views/spree/admin/orders/_customer_summary.html.erb
544
- - app/views/spree/admin/orders/_extra_filters.html.erb
545
547
  - app/views/spree/admin/orders/_filters.html.erb
546
548
  - app/views/spree/admin/orders/_header.html.erb
547
549
  - app/views/spree/admin/orders/_header_custom.html.erb
@@ -724,7 +726,6 @@ files:
724
726
  - app/views/spree/admin/preferences/_password_field.html.erb
725
727
  - app/views/spree/admin/products/_bulk_operations.html.erb
726
728
  - app/views/spree/admin/products/_edit_page_title.html.erb
727
- - app/views/spree/admin/products/_empty_list.html.erb
728
729
  - app/views/spree/admin/products/_filters.html.erb
729
730
  - app/views/spree/admin/products/_form.html.erb
730
731
  - app/views/spree/admin/products/_import_button.html.erb
@@ -740,9 +741,6 @@ files:
740
741
  - app/views/spree/admin/products/edit.html.erb
741
742
  - app/views/spree/admin/products/form/_base.html.erb
742
743
  - app/views/spree/admin/products/form/_categorization.html.erb
743
- - app/views/spree/admin/products/form/_extra_filters.html.erb
744
- - app/views/spree/admin/products/form/_extra_form.html.erb
745
- - app/views/spree/admin/products/form/_extra_form_sidebar.erb
746
744
  - app/views/spree/admin/products/form/_inventory.html.erb
747
745
  - app/views/spree/admin/products/form/_properties.html.erb
748
746
  - app/views/spree/admin/products/form/_shipping.html.erb
@@ -776,6 +774,7 @@ files:
776
774
  - app/views/spree/admin/promotion_rules/forms/_user_logged_in.html.erb
777
775
  - app/views/spree/admin/promotion_rules/new.html.erb
778
776
  - app/views/spree/admin/promotions/_actions.html.erb
777
+ - app/views/spree/admin/promotions/_filters.html.erb
779
778
  - app/views/spree/admin/promotions/_form.html.erb
780
779
  - app/views/spree/admin/promotions/_header.html.erb
781
780
  - app/views/spree/admin/promotions/_promotion.html.erb
@@ -837,6 +836,7 @@ files:
837
836
  - app/views/spree/admin/shared/_edit_resource_links.html.erb
838
837
  - app/views/spree/admin/shared/_error_messages.html.erb
839
838
  - app/views/spree/admin/shared/_filter_badge_template.erb
839
+ - app/views/spree/admin/shared/_filter_submit.html.erb
840
840
  - app/views/spree/admin/shared/_filters_button.html.erb
841
841
  - app/views/spree/admin/shared/_filters_search_bar.html.erb
842
842
  - app/views/spree/admin/shared/_footer.html.erb
@@ -928,7 +928,6 @@ files:
928
928
  - app/views/spree/admin/stores/form/_basic.html.erb
929
929
  - app/views/spree/admin/stores/form/_buttons.html.erb
930
930
  - app/views/spree/admin/stores/form/_checkout.html.erb
931
- - app/views/spree/admin/stores/form/_custom.html.erb
932
931
  - app/views/spree/admin/stores/form/_emails.html.erb
933
932
  - app/views/spree/admin/stores/form/_policies.html.erb
934
933
  - app/views/spree/admin/stores/new.html.erb
@@ -1059,9 +1058,9 @@ licenses:
1059
1058
  - AGPL-3.0-or-later
1060
1059
  metadata:
1061
1060
  bug_tracker_uri: https://github.com/spree/spree/issues
1062
- changelog_uri: https://github.com/spree/spree/releases/tag/v5.0.0.rc1
1061
+ changelog_uri: https://github.com/spree/spree/releases/tag/v5.0.1
1063
1062
  documentation_uri: https://docs.spreecommerce.org/
1064
- source_code_uri: https://github.com/spree/spree/tree/v5.0.0.rc1
1063
+ source_code_uri: https://github.com/spree/spree/tree/v5.0.1
1065
1064
  post_install_message:
1066
1065
  rdoc_options: []
1067
1066
  require_paths:
File without changes
@@ -1 +0,0 @@
1
- <%= render 'spree/admin/shared/no_resource_found' %>
File without changes