solidus_backend 4.1.0 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/solidus_backend_manifest.js +2 -1
  3. data/app/assets/images/spree/backend/themes/solidus_admin/remixicon.symbol.svg +11 -0
  4. data/app/assets/javascripts/spree/backend/components/admin_nav.js +18 -0
  5. data/app/assets/javascripts/spree/backend/option_value_picker.js +0 -1
  6. data/app/assets/javascripts/spree/backend/views/promotions/option_values_rule.js +3 -3
  7. data/app/assets/stylesheets/spree/backend/components/_navigation.scss +11 -0
  8. data/app/assets/stylesheets/spree/backend/components/_navigation_solidus_admin.scss +274 -0
  9. data/app/assets/stylesheets/spree/backend/components/_switch_solidus_admin.scss +48 -0
  10. data/app/assets/stylesheets/spree/backend/shared/_layout.scss +1 -1
  11. data/app/assets/stylesheets/spree/backend/themes/solidus_admin/_colors.scss +44 -0
  12. data/app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss +8 -8
  13. data/app/assets/stylesheets/spree/backend/themes/solidus_admin/_variables.scss +28 -72
  14. data/app/controllers/spree/admin/resource_controller.rb +13 -9
  15. data/app/controllers/spree/admin/stock_items_controller.rb +22 -13
  16. data/app/helpers/spree/admin/navigation_helper.rb +46 -29
  17. data/app/views/spree/admin/shared/_navigation_solidus_admin.html.erb +101 -0
  18. data/app/views/spree/admin/shared/_product_sub_menu.html.erb +7 -5
  19. data/app/views/spree/admin/shared/_promotion_sub_menu.html.erb +4 -2
  20. data/app/views/spree/admin/shared/_settings_sub_menu.html.erb +8 -6
  21. data/app/views/spree/admin/shared/_tabs.html.erb +18 -6
  22. data/app/views/spree/admin/shared/_variant_search.html.erb +8 -1
  23. data/app/views/spree/admin/stock_items/_stock_management.html.erb +21 -9
  24. data/app/views/spree/admin/stock_items/index.html.erb +4 -1
  25. data/app/views/spree/layouts/admin.html.erb +6 -2
  26. data/lib/spree/backend_configuration/deprecated_tab_constants.rb +34 -0
  27. data/lib/spree/backend_configuration/menu_item.rb +67 -13
  28. data/lib/spree/backend_configuration.rb +131 -58
  29. data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_es-CL.js +10 -0
  30. data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hy.js +37 -0
  31. metadata +15 -7
@@ -4,54 +4,108 @@ module Spree
4
4
  class BackendConfiguration < Preferences::Configuration
5
5
  # An item which should be drawn in the admin menu
6
6
  class MenuItem
7
- attr_reader :icon, :label, :partial, :condition, :sections, :match_path
7
+ attr_reader :icon, :label, :partial, :children, :condition, :data_hook, :match_path
8
8
 
9
- attr_accessor :position
9
+ def sections # rubocop:disable Style/TrivialAccessors
10
+ @sections
11
+ end
12
+ deprecate sections: :label, deprecator: Spree.deprecator
13
+
14
+ attr_accessor :position # rubocop:disable Layout/EmptyLinesAroundAttributeAccessor
15
+ deprecate position: nil, deprecator: Spree.deprecator
16
+ deprecate "position=": nil, deprecator: Spree.deprecator
10
17
 
11
- # @param sections [Array<Symbol>] The sections which are contained within
12
- # this admin menu section.
13
18
  # @param icon [String] The icon to draw for this menu item
14
19
  # @param condition [Proc] A proc which returns true if this menu item
15
20
  # should be drawn. If nil, it will be replaced with a proc which always
16
21
  # returns true.
17
22
  # @param label [Symbol] The translation key for a label to use for this
18
23
  # menu item.
19
- # @param partial [String] A partial to draw within this menu item for use
20
- # in declaring a submenu
21
- # @param url [String] A url where this link should send the user to
22
- # @param position [Integer] The position in which the menu item should render
23
- # nil will cause the item to render last
24
+ # @param children [Array<Spree::BackendConfiguration::MenuItem>] An array
25
+ # @param url [String|Symbol] A url where this link should send the user to or a Symbol representing a route name
24
26
  # @param match_path [String, Regexp, callable] (nil) If the {url} to determine the active tab is ambigous
25
27
  # you can pass a String, Regexp or callable to identify this menu item. The callable
26
28
  # accepts a request object and returns a Boolean value.
27
29
  def initialize(
28
- sections,
29
- icon,
30
+ *args,
31
+ icon: nil,
30
32
  condition: nil,
31
33
  label: nil,
32
34
  partial: nil,
35
+ children: [],
33
36
  url: nil,
34
37
  position: nil,
38
+ data_hook: nil,
35
39
  match_path: nil
36
40
  )
41
+ if args.length == 2
42
+ sections, icon = args
43
+ label ||= sections.first.to_s
44
+ Spree.deprecator.warn "Passing sections to #{self.class.name} is deprecated. Please pass a label instead."
45
+ Spree.deprecator.warn "Passing icon to #{self.class.name} is deprecated. Please use the keyword argument instead."
46
+ elsif args.any?
47
+ raise ArgumentError, "wrong number of arguments (given #{args.length}, expected 0..2)"
48
+ end
49
+
50
+ if partial.present? && children.blank?
51
+ # We only show the deprecation if there are no children, because if there are children,
52
+ # then the menu item is already future-proofed.
53
+ Spree.deprecator.warn "Passing a partial to #{self.class.name} is deprecated. Please use the children keyword argument instead."
54
+ end
37
55
 
38
56
  @condition = condition || -> { true }
39
57
  @sections = sections
40
58
  @icon = icon
41
- @label = label || sections.first
59
+ @label = label
42
60
  @partial = partial
61
+ @children = children
43
62
  @url = url
44
- @position = position
63
+ @data_hook = data_hook
45
64
  @match_path = match_path
65
+
66
+ self.position = position if position # Use the setter to deprecate
67
+ end
68
+
69
+ def render_in?(view_context)
70
+ view_context.instance_exec(&@condition) ||
71
+ children.any? { |child| child.render_in?(view_context) }
72
+ end
73
+
74
+ def render_partial?
75
+ return false if partial.blank?
76
+
77
+ children.blank? || Spree::Backend::Config.prefer_menu_item_partials
78
+ end
79
+
80
+ def match_path?(request)
81
+ if match_path.is_a? Regexp
82
+ request.fullpath =~ match_path
83
+ elsif match_path.respond_to?(:call)
84
+ match_path.call(request)
85
+ elsif match_path
86
+ request.fullpath.starts_with?("#{spree.admin_path}#{match_path}")
87
+ else
88
+ request.fullpath.to_s.starts_with?(url.to_s)
89
+ end
46
90
  end
47
91
 
48
92
  def url
49
93
  if @url.respond_to?(:call)
50
94
  @url.call
95
+ elsif @url.is_a?(Symbol)
96
+ spree.public_send(@url)
97
+ elsif @url.nil? && @label
98
+ spree.send("admin_#{@label}_path")
51
99
  else
52
100
  @url
53
101
  end
54
102
  end
103
+
104
+ private
105
+
106
+ def spree
107
+ Spree::Core::Engine.routes.url_helpers
108
+ end
55
109
  end
56
110
  end
57
111
  end
@@ -22,6 +22,12 @@ module Spree
22
22
  user_theme ? themes.fetch(user_theme.to_sym) : themes.fetch(theme.to_sym)
23
23
  end
24
24
 
25
+ # @!attribute [rw] admin_updated_navbar
26
+ # @return [Boolean] Should the updated navbar be used in admin (default: +false+)
27
+ #
28
+ # TODO: Update boundaries before merging to `main`
29
+ versioned_preference :admin_updated_navbar, :boolean, initial_value: false, boundaries: { "4.1.0.a" => true }
30
+
25
31
  preference :frontend_product_path,
26
32
  :proc,
27
33
  default: proc {
@@ -32,40 +38,32 @@ module Spree
32
38
  }
33
39
  }
34
40
 
35
- ORDER_TABS ||= [:orders, :payments, :creditcard_payments,
36
- :shipments, :credit_cards, :return_authorizations,
37
- :customer_returns, :adjustments, :customer_details]
38
- PRODUCT_TABS ||= [:products, :option_types, :properties,
39
- :variants, :product_properties, :taxonomies,
40
- :taxons]
41
- CONFIGURATION_TABS ||= [:stores, :tax_categories,
42
- :tax_rates, :zones,
43
- :payment_methods, :shipping_methods,
44
- :shipping_categories, :stock_locations,
45
- :refund_reasons, :reimbursement_types,
46
- :return_reasons, :adjustment_reasons,
47
- :store_credit_reasons]
48
- PROMOTION_TABS ||= [:promotions, :promotion_categories]
49
- STOCK_TABS ||= [:stock_items]
50
- USER_TABS ||= [:users, :store_credits]
41
+ # @!attribute [rw] prefer_menu_item_partials
42
+ # @return [Boolean] Whether or not to prefer menu item partials when both a partial and children are present.
43
+ preference :prefer_menu_item_partials, :boolean, default: false
44
+
45
+ autoload :ORDER_TABS, 'spree/backend_configuration/deprecated_tab_constants'
46
+ autoload :PRODUCT_TABS, 'spree/backend_configuration/deprecated_tab_constants'
47
+ autoload :CONFIGURATION_TABS, 'spree/backend_configuration/deprecated_tab_constants'
48
+ autoload :PROMOTION_TABS, 'spree/backend_configuration/deprecated_tab_constants'
49
+ autoload :STOCK_TABS, 'spree/backend_configuration/deprecated_tab_constants'
50
+ autoload :USER_TABS, 'spree/backend_configuration/deprecated_tab_constants'
51
51
 
52
52
  # Items can be added to the menu by using code like the following:
53
53
  #
54
54
  # Spree::Backend::Config.configure do |config|
55
55
  # config.menu_items << config.class::MenuItem.new(
56
- # [:section],
57
- # 'icon-name',
58
- # url: 'https://solidus.io/'
56
+ # label: :my_reports,
57
+ # icon: 'file-text-o', # see https://fontawesome.com/v4/icons/
58
+ # url: :my_admin_reports_path,
59
+ # condition: -> { can?(:admin, MyReports) },
60
+ # partial: 'spree/admin/shared/my_reports_sub_menu',
61
+ # match_path: '/reports',
59
62
  # )
60
63
  # end
61
64
  #
62
65
  # @!attribute menu_items
63
66
  # @return [Array<Spree::BackendConfiguration::MenuItem>]
64
- #
65
- # Positioning can be determined by setting the position attribute to
66
- # an Integer or nil. Menu Items will be rendered with smaller lower values
67
- # first and higher values last. A position value of nil will cause the menu
68
- # item to be rendered at the end of the list.
69
67
  attr_writer :menu_items
70
68
 
71
69
  # Return the menu items which should be drawn in the menu
@@ -75,63 +73,138 @@ module Spree
75
73
  def menu_items
76
74
  @menu_items ||= [
77
75
  MenuItem.new(
78
- ORDER_TABS,
79
- 'shopping-cart',
76
+ label: :orders,
77
+ icon: admin_updated_navbar ? 'ri-inbox-line' : 'shopping-cart',
80
78
  condition: -> { can?(:admin, Spree::Order) },
81
- position: 0
79
+ match_path: %r{/(
80
+ adjustments|
81
+ credit_cards|
82
+ creditcard_payments|
83
+ customer_details|
84
+ customer_returns|
85
+ orders|
86
+ payments|
87
+ return_authorizations|
88
+ shipments
89
+ )}x,
82
90
  ),
83
91
  MenuItem.new(
84
- PRODUCT_TABS,
85
- 'th-large',
92
+ label: :products,
93
+ icon: admin_updated_navbar ? 'ri-price-tag-3-line' : 'th-large',
86
94
  condition: -> { can?(:admin, Spree::Product) },
87
95
  partial: 'spree/admin/shared/product_sub_menu',
88
- position: 1
96
+ data_hook: :admin_product_sub_tabs,
97
+ children: [
98
+ MenuItem.new(
99
+ label: :products,
100
+ condition: -> { can? :admin, Spree::Product },
101
+ match_path: '/products',
102
+ ),
103
+ MenuItem.new(
104
+ label: :option_types,
105
+ condition: -> { can? :admin, Spree::OptionType },
106
+ match_path: '/option_types',
107
+ ),
108
+ MenuItem.new(
109
+ label: :properties,
110
+ condition: -> { can? :admin, Spree::Property },
111
+ ),
112
+ MenuItem.new(
113
+ label: :taxonomies,
114
+ condition: -> { can? :admin, Spree::Taxonomy },
115
+ ),
116
+ MenuItem.new(
117
+ url: :admin_taxons_path,
118
+ condition: -> { can? :admin, Spree::Taxon },
119
+ label: :display_order,
120
+ match_path: '/taxons',
121
+ ),
122
+ ],
89
123
  ),
90
124
  MenuItem.new(
91
- PROMOTION_TABS,
92
- 'bullhorn',
125
+ label: :promotions,
126
+ icon: admin_updated_navbar ? 'ri-megaphone-line' : 'bullhorn',
93
127
  partial: 'spree/admin/shared/promotion_sub_menu',
94
128
  condition: -> { can?(:admin, Spree::Promotion) },
95
129
  url: :admin_promotions_path,
96
- position: 2
130
+ data_hook: :admin_promotion_sub_tabs,
131
+ children: [
132
+ MenuItem.new(
133
+ label: :promotions,
134
+ condition: -> { can?(:admin, Spree::Promotion) },
135
+ ),
136
+ MenuItem.new(
137
+ label: :promotion_categories,
138
+ condition: -> { can?(:admin, Spree::PromotionCategory) },
139
+ ),
140
+ ],
97
141
  ),
98
142
  MenuItem.new(
99
- STOCK_TABS,
100
- 'cubes',
101
- condition: -> { can?(:admin, Spree::StockItem) },
102
143
  label: :stock,
144
+ icon: admin_updated_navbar ? 'ri-stack-line' : 'cubes',
145
+ match_path: %r{/(stock_items)},
146
+ condition: -> { can?(:admin, Spree::StockItem) },
103
147
  url: :admin_stock_items_path,
104
- match_path: '/stock_items',
105
- position: 3
106
148
  ),
107
149
  MenuItem.new(
108
- USER_TABS,
109
- 'user',
150
+ label: :users,
151
+ icon: admin_updated_navbar ? 'ri-user-line' : 'user',
152
+ match_path: %r{/(users|store_credits)},
110
153
  condition: -> { Spree.user_class && can?(:admin, Spree.user_class) },
111
154
  url: :admin_users_path,
112
- position: 4
113
155
  ),
114
156
  MenuItem.new(
115
- CONFIGURATION_TABS,
116
- 'wrench',
117
- condition: -> {
118
- can?(:admin, Spree::Store) ||
119
- can?(:admin, Spree::AdjustmentReason) ||
120
- can?(:admin, Spree::PaymentMethod) ||
121
- can?(:admin, Spree::RefundReason) ||
122
- can?(:admin, Spree::ReimbursementType) ||
123
- can?(:admin, Spree::ShippingCategory) ||
124
- can?(:admin, Spree::ShippingMethod) ||
125
- can?(:admin, Spree::StockLocation) ||
126
- can?(:admin, Spree::TaxCategory) ||
127
- can?(:admin, Spree::TaxRate) ||
128
- can?(:admin, Spree::ReturnReason) ||
129
- can?(:admin, Spree::Zone)
130
- },
131
157
  label: :settings,
158
+ icon: admin_updated_navbar ? 'ri-settings-line' : 'wrench',
159
+ data_hook: :admin_settings_sub_tabs,
132
160
  partial: 'spree/admin/shared/settings_sub_menu',
161
+ condition: -> { can? :admin, Spree::Store },
133
162
  url: :admin_stores_path,
134
- position: 5
163
+ children: [
164
+ MenuItem.new(
165
+ label: :stores,
166
+ condition: -> { can? :admin, Spree::Store },
167
+ url: :admin_stores_path,
168
+ ),
169
+ MenuItem.new(
170
+ label: :payments,
171
+ condition: -> { can? :admin, Spree::PaymentMethod },
172
+ url: :admin_payment_methods_path,
173
+ ),
174
+
175
+ MenuItem.new(
176
+ label: :taxes,
177
+ condition: -> { can?(:admin, Spree::TaxCategory) || can?(:admin, Spree::TaxRate) },
178
+ url: :admin_tax_categories_path,
179
+ match_path: %r(tax_categories|tax_rates),
180
+ ),
181
+ MenuItem.new(
182
+ label: :checkout,
183
+ condition: -> {
184
+ can?(:admin, Spree::RefundReason) ||
185
+ can?(:admin, Spree::ReimbursementType) ||
186
+ can?(:show, Spree::ReturnReason) ||
187
+ can?(:show, Spree::AdjustmentReason)
188
+ },
189
+ url: :admin_refund_reasons_path,
190
+ match_path: %r(refund_reasons|reimbursement_types|return_reasons|adjustment_reasons|store_credit_reasons)
191
+ ),
192
+ MenuItem.new(
193
+ label: :shipping,
194
+ condition: -> {
195
+ can?(:admin, Spree::ShippingMethod) ||
196
+ can?(:admin, Spree::ShippingCategory) ||
197
+ can?(:admin, Spree::StockLocation)
198
+ },
199
+ url: :admin_shipping_methods_path,
200
+ match_path: %r(shipping_methods|shipping_categories|stock_locations),
201
+ ),
202
+ MenuItem.new(
203
+ label: :zones,
204
+ condition: -> { can?(:admin, Spree::Zone) },
205
+ url: :admin_zones_path,
206
+ ),
207
+ ],
135
208
  )
136
209
  ]
137
210
  end
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Select2 Chilean Spanish translations
3
+ */
4
+ (function ($) {
5
+ "use strict";
6
+
7
+ $.fn.select2.locales['es-CL'] = {};
8
+
9
+ $.extend($.fn.select2.defaults, $.fn.select2.locales['es-CL']);
10
+ })(jQuery);
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Select2 Armenian translation.
3
+ *
4
+ * @author Arman Harutyunyan <armanx@gmail.com>
5
+ * @author Siruhi Karakhanyan <sirunkarakhanyan1983@gmail.com>
6
+ *
7
+ */
8
+ (function($) {
9
+ "use strict";
10
+
11
+ $.fn.select2.locales['hy'] = {
12
+ formatNoMatches: function() {
13
+ return "Համընկնումներ չեն գտնվել";
14
+ },
15
+ formatInputTooShort: function(input, min) {
16
+ return "Խնդրում ենք մուտքագրել առնվազն" + character(min - input.length);
17
+ },
18
+ formatInputTooLong: function(input, max) {
19
+ return "Խնդրում ենք մուտքագրել" + character(input.length - max) + " պակաս";
20
+ },
21
+ formatSelectionTooBig: function(limit) {
22
+ return "Դուք կարող եք ընտրել ոչ ավելին" + character(limit);
23
+ },
24
+ formatLoadMore: function(pageNumber) {
25
+ return "Տվյալների բեռնում…";
26
+ },
27
+ formatSearching: function() {
28
+ return "Որոնել…";
29
+ }
30
+ };
31
+
32
+ $.extend($.fn.select2.defaults, $.fn.select2.locales['hy']);
33
+
34
+ function character(n) {
35
+ return " " + n + " խորհրդանիշ";
36
+ }
37
+ })(jQuery);
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_backend
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solidus Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-29 00:00:00.000000000 Z
11
+ date: 2023-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_api
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.0
19
+ version: 4.2.0
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: 4.1.0
26
+ version: 4.2.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: solidus_core
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 4.1.0
33
+ version: 4.2.0
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: 4.1.0
40
+ version: 4.2.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: font-awesome-rails
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -167,6 +167,7 @@ files:
167
167
  - app/assets/config/solidus_backend_manifest.js
168
168
  - app/assets/images/favicon.ico
169
169
  - app/assets/images/solidus-style-guide-logo.png
170
+ - app/assets/images/spree/backend/themes/solidus_admin/remixicon.symbol.svg
170
171
  - app/assets/javascripts/spree/backend.js
171
172
  - app/assets/javascripts/spree/backend/addresses.js
172
173
  - app/assets/javascripts/spree/backend/adjustments.js
@@ -296,11 +297,13 @@ files:
296
297
  - app/assets/stylesheets/spree/backend/components/_list_group.scss
297
298
  - app/assets/stylesheets/spree/backend/components/_messages.scss
298
299
  - app/assets/stylesheets/spree/backend/components/_navigation.scss
300
+ - app/assets/stylesheets/spree/backend/components/_navigation_solidus_admin.scss
299
301
  - app/assets/stylesheets/spree/backend/components/_number_with_currency.scss
300
302
  - app/assets/stylesheets/spree/backend/components/_pills.scss
301
303
  - app/assets/stylesheets/spree/backend/components/_progress.scss
302
304
  - app/assets/stylesheets/spree/backend/components/_sidebar.scss
303
305
  - app/assets/stylesheets/spree/backend/components/_stock_table.scss
306
+ - app/assets/stylesheets/spree/backend/components/_switch_solidus_admin.scss
304
307
  - app/assets/stylesheets/spree/backend/components/_table-filter.scss
305
308
  - app/assets/stylesheets/spree/backend/components/_tabs.scss
306
309
  - app/assets/stylesheets/spree/backend/components/index.scss
@@ -346,6 +349,7 @@ files:
346
349
  - app/assets/stylesheets/spree/backend/spree_admin.scss
347
350
  - app/assets/stylesheets/spree/backend/themes/classic.css.scss
348
351
  - app/assets/stylesheets/spree/backend/themes/solidus_admin.css.scss
352
+ - app/assets/stylesheets/spree/backend/themes/solidus_admin/_colors.scss
349
353
  - app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss
350
354
  - app/assets/stylesheets/spree/backend/themes/solidus_admin/_variables.scss
351
355
  - app/assets/stylesheets/spree/backend/vendor/index.scss
@@ -599,6 +603,7 @@ files:
599
603
  - app/views/spree/admin/shared/_navigation.html.erb
600
604
  - app/views/spree/admin/shared/_navigation_footer_fallback.html.erb
601
605
  - app/views/spree/admin/shared/_navigation_header.html.erb
606
+ - app/views/spree/admin/shared/_navigation_solidus_admin.html.erb
602
607
  - app/views/spree/admin/shared/_new_resource_links.html.erb
603
608
  - app/views/spree/admin/shared/_no_objects_found.html.erb
604
609
  - app/views/spree/admin/shared/_number_with_currency.html.erb
@@ -741,6 +746,7 @@ files:
741
746
  - lib/spree/backend/config.rb
742
747
  - lib/spree/backend/engine.rb
743
748
  - lib/spree/backend_configuration.rb
749
+ - lib/spree/backend_configuration/deprecated_tab_constants.rb
744
750
  - lib/spree/backend_configuration/menu_item.rb
745
751
  - lib/spree_backend.rb
746
752
  - solidus_backend.gemspec
@@ -777,6 +783,7 @@ files:
777
783
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-IN.js
778
784
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-NZ.js
779
785
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_en-US.js
786
+ - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_es-CL.js
780
787
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_es-MX.js
781
788
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_es.js
782
789
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_et.js
@@ -788,6 +795,7 @@ files:
788
795
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_he.js
789
796
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hr.js
790
797
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hu.js
798
+ - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hy.js
791
799
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_id.js
792
800
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_is.js
793
801
  - vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_it.js
@@ -922,7 +930,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
922
930
  - !ruby/object:Gem::Version
923
931
  version: 1.8.23
924
932
  requirements: []
925
- rubygems_version: 3.3.7
933
+ rubygems_version: 3.3.23
926
934
  signing_key:
927
935
  specification_version: 4
928
936
  summary: Admin interface for the Solidus e-commerce framework.