solidus_backend 4.1.1 → 4.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -0
  3. data/app/assets/config/solidus_backend_manifest.js +2 -1
  4. data/app/assets/images/spree/backend/themes/solidus_admin/remixicon.symbol.svg +11 -0
  5. data/app/assets/javascripts/spree/backend/components/admin_nav.js +18 -0
  6. data/app/assets/javascripts/spree/backend/option_value_picker.js +0 -1
  7. data/app/assets/javascripts/spree/backend/views/promotions/option_values_rule.js +3 -3
  8. data/app/assets/stylesheets/spree/backend/components/_navigation.scss +11 -0
  9. data/app/assets/stylesheets/spree/backend/components/_navigation_solidus_admin.scss +274 -0
  10. data/app/assets/stylesheets/spree/backend/components/_switch_solidus_admin.scss +48 -0
  11. data/app/assets/stylesheets/spree/backend/shared/_layout.scss +1 -1
  12. data/app/assets/stylesheets/spree/backend/themes/solidus_admin/_colors.scss +44 -0
  13. data/app/assets/stylesheets/spree/backend/themes/solidus_admin/_tables.scss +8 -8
  14. data/app/assets/stylesheets/spree/backend/themes/solidus_admin/_variables.scss +28 -72
  15. data/app/controllers/spree/admin/resource_controller.rb +13 -9
  16. data/app/controllers/spree/admin/stock_items_controller.rb +22 -13
  17. data/app/helpers/spree/admin/navigation_helper.rb +46 -29
  18. data/app/views/spree/admin/shared/_navigation_solidus_admin.html.erb +101 -0
  19. data/app/views/spree/admin/shared/_product_sub_menu.html.erb +7 -5
  20. data/app/views/spree/admin/shared/_promotion_sub_menu.html.erb +4 -2
  21. data/app/views/spree/admin/shared/_settings_sub_menu.html.erb +8 -6
  22. data/app/views/spree/admin/shared/_tabs.html.erb +18 -6
  23. data/app/views/spree/admin/shared/_variant_search.html.erb +8 -1
  24. data/app/views/spree/admin/stock_items/_stock_management.html.erb +21 -9
  25. data/app/views/spree/admin/stock_items/index.html.erb +4 -1
  26. data/app/views/spree/layouts/admin.html.erb +6 -2
  27. data/lib/spree/backend_configuration/deprecated_tab_constants.rb +34 -0
  28. data/lib/spree/backend_configuration/menu_item.rb +72 -19
  29. data/lib/spree/backend_configuration.rb +131 -59
  30. data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_es-CL.js +10 -0
  31. data/vendor/assets/javascripts/solidus_admin/select2_locales/select2_locale_hy.js +37 -0
  32. metadata +18 -10
@@ -4,53 +4,106 @@ 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
- @sections = sections
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
+ matches =
82
+ if match_path.is_a? Regexp
83
+ request.fullpath =~ match_path
84
+ elsif match_path.respond_to?(:call)
85
+ match_path.call(request)
86
+ elsif match_path
87
+ request.fullpath.starts_with?("#{spree.admin_path}#{match_path}")
88
+ end
89
+ matches ||= request.fullpath.to_s.starts_with?(url.to_s) if url.present?
90
+ matches ||= @sections.include?(request.controller_class.controller_name.to_sym) if @sections.present?
91
+
92
+ matches
46
93
  end
47
94
 
48
95
  def url
49
- if @url.respond_to?(:call)
50
- @url.call
51
- else
52
- @url
53
- end
96
+ url = @url.call if @url.respond_to?(:call)
97
+ url ||= spree.public_send(@url) if @url.is_a?(Symbol) && spree.respond_to?(@url)
98
+ url ||= spree.send("admin_#{@label}_path") if @url.nil? && @label && spree.respond_to?("admin_#{@label}_path")
99
+ url ||= @url.to_s
100
+ url
101
+ end
102
+
103
+ private
104
+
105
+ def spree
106
+ Spree::Core::Engine.routes.url_helpers
54
107
  end
55
108
  end
56
109
  end
@@ -16,12 +16,17 @@ module Spree
16
16
 
17
17
  # @!attribute [rw] theme
18
18
  # @return [String] Default admin theme name
19
- versioned_preference :theme, :string, initial_value: 'classic', boundaries: { "4.1.0.a" => "solidus_admin" }
19
+ versioned_preference :theme, :string, initial_value: 'classic', boundaries: { "4.2.0" => "solidus_admin" }
20
20
 
21
21
  def theme_path(user_theme = nil)
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
+ versioned_preference :admin_updated_navbar, :boolean, initial_value: false, boundaries: { "4.2.0" => true }
29
+
25
30
  preference :frontend_product_path,
26
31
  :proc,
27
32
  default: proc {
@@ -32,40 +37,32 @@ module Spree
32
37
  }
33
38
  }
34
39
 
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]
40
+ # @!attribute [rw] prefer_menu_item_partials
41
+ # @return [Boolean] Whether or not to prefer menu item partials when both a partial and children are present.
42
+ versioned_preference :prefer_menu_item_partials, :boolean, initial_value: true, boundaries: { "4.2.0" => false }
43
+
44
+ autoload :ORDER_TABS, 'spree/backend_configuration/deprecated_tab_constants'
45
+ autoload :PRODUCT_TABS, 'spree/backend_configuration/deprecated_tab_constants'
46
+ autoload :CONFIGURATION_TABS, 'spree/backend_configuration/deprecated_tab_constants'
47
+ autoload :PROMOTION_TABS, 'spree/backend_configuration/deprecated_tab_constants'
48
+ autoload :STOCK_TABS, 'spree/backend_configuration/deprecated_tab_constants'
49
+ autoload :USER_TABS, 'spree/backend_configuration/deprecated_tab_constants'
51
50
 
52
51
  # Items can be added to the menu by using code like the following:
53
52
  #
54
53
  # Spree::Backend::Config.configure do |config|
55
54
  # config.menu_items << config.class::MenuItem.new(
56
- # [:section],
57
- # 'icon-name',
58
- # url: 'https://solidus.io/'
55
+ # label: :my_reports,
56
+ # icon: 'file-text-o', # see https://fontawesome.com/v4/icons/
57
+ # url: :my_admin_reports_path,
58
+ # condition: -> { can?(:admin, MyReports) },
59
+ # partial: 'spree/admin/shared/my_reports_sub_menu',
60
+ # match_path: '/reports',
59
61
  # )
60
62
  # end
61
63
  #
62
64
  # @!attribute menu_items
63
65
  # @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
66
  attr_writer :menu_items
70
67
 
71
68
  # Return the menu items which should be drawn in the menu
@@ -75,63 +72,138 @@ module Spree
75
72
  def menu_items
76
73
  @menu_items ||= [
77
74
  MenuItem.new(
78
- ORDER_TABS,
79
- 'shopping-cart',
75
+ label: :orders,
76
+ icon: admin_updated_navbar ? 'ri-inbox-line' : 'shopping-cart',
80
77
  condition: -> { can?(:admin, Spree::Order) },
81
- position: 0
78
+ match_path: %r{/(
79
+ adjustments|
80
+ credit_cards|
81
+ creditcard_payments|
82
+ customer_details|
83
+ customer_returns|
84
+ orders|
85
+ payments|
86
+ return_authorizations|
87
+ shipments
88
+ )}x,
82
89
  ),
83
90
  MenuItem.new(
84
- PRODUCT_TABS,
85
- 'th-large',
91
+ label: :products,
92
+ icon: admin_updated_navbar ? 'ri-price-tag-3-line' : 'th-large',
86
93
  condition: -> { can?(:admin, Spree::Product) },
87
94
  partial: 'spree/admin/shared/product_sub_menu',
88
- position: 1
95
+ data_hook: :admin_product_sub_tabs,
96
+ children: [
97
+ MenuItem.new(
98
+ label: :products,
99
+ condition: -> { can? :admin, Spree::Product },
100
+ match_path: '/products',
101
+ ),
102
+ MenuItem.new(
103
+ label: :option_types,
104
+ condition: -> { can? :admin, Spree::OptionType },
105
+ match_path: '/option_types',
106
+ ),
107
+ MenuItem.new(
108
+ label: :properties,
109
+ condition: -> { can? :admin, Spree::Property },
110
+ ),
111
+ MenuItem.new(
112
+ label: :taxonomies,
113
+ condition: -> { can? :admin, Spree::Taxonomy },
114
+ ),
115
+ MenuItem.new(
116
+ url: :admin_taxons_path,
117
+ condition: -> { can? :admin, Spree::Taxon },
118
+ label: :display_order,
119
+ match_path: '/taxons',
120
+ ),
121
+ ],
89
122
  ),
90
123
  MenuItem.new(
91
- PROMOTION_TABS,
92
- 'bullhorn',
124
+ label: :promotions,
125
+ icon: admin_updated_navbar ? 'ri-megaphone-line' : 'bullhorn',
93
126
  partial: 'spree/admin/shared/promotion_sub_menu',
94
127
  condition: -> { can?(:admin, Spree::Promotion) },
95
128
  url: :admin_promotions_path,
96
- position: 2
129
+ data_hook: :admin_promotion_sub_tabs,
130
+ children: [
131
+ MenuItem.new(
132
+ label: :promotions,
133
+ condition: -> { can?(:admin, Spree::Promotion) },
134
+ ),
135
+ MenuItem.new(
136
+ label: :promotion_categories,
137
+ condition: -> { can?(:admin, Spree::PromotionCategory) },
138
+ ),
139
+ ],
97
140
  ),
98
141
  MenuItem.new(
99
- STOCK_TABS,
100
- 'cubes',
101
- condition: -> { can?(:admin, Spree::StockItem) },
102
142
  label: :stock,
143
+ icon: admin_updated_navbar ? 'ri-stack-line' : 'cubes',
144
+ match_path: %r{/(stock_items)},
145
+ condition: -> { can?(:admin, Spree::StockItem) },
103
146
  url: :admin_stock_items_path,
104
- match_path: '/stock_items',
105
- position: 3
106
147
  ),
107
148
  MenuItem.new(
108
- USER_TABS,
109
- 'user',
149
+ label: :users,
150
+ icon: admin_updated_navbar ? 'ri-user-line' : 'user',
151
+ match_path: %r{/(users|store_credits)},
110
152
  condition: -> { Spree.user_class && can?(:admin, Spree.user_class) },
111
153
  url: :admin_users_path,
112
- position: 4
113
154
  ),
114
155
  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
156
  label: :settings,
157
+ icon: admin_updated_navbar ? 'ri-settings-line' : 'wrench',
158
+ data_hook: :admin_settings_sub_tabs,
132
159
  partial: 'spree/admin/shared/settings_sub_menu',
160
+ condition: -> { can? :admin, Spree::Store },
133
161
  url: :admin_stores_path,
134
- position: 5
162
+ children: [
163
+ MenuItem.new(
164
+ label: :stores,
165
+ condition: -> { can? :admin, Spree::Store },
166
+ url: :admin_stores_path,
167
+ ),
168
+ MenuItem.new(
169
+ label: :payments,
170
+ condition: -> { can? :admin, Spree::PaymentMethod },
171
+ url: :admin_payment_methods_path,
172
+ ),
173
+
174
+ MenuItem.new(
175
+ label: :taxes,
176
+ condition: -> { can?(:admin, Spree::TaxCategory) || can?(:admin, Spree::TaxRate) },
177
+ url: :admin_tax_categories_path,
178
+ match_path: %r(tax_categories|tax_rates),
179
+ ),
180
+ MenuItem.new(
181
+ label: :checkout,
182
+ condition: -> {
183
+ can?(:admin, Spree::RefundReason) ||
184
+ can?(:admin, Spree::ReimbursementType) ||
185
+ can?(:show, Spree::ReturnReason) ||
186
+ can?(:show, Spree::AdjustmentReason)
187
+ },
188
+ url: :admin_refund_reasons_path,
189
+ match_path: %r(refund_reasons|reimbursement_types|return_reasons|adjustment_reasons|store_credit_reasons)
190
+ ),
191
+ MenuItem.new(
192
+ label: :shipping,
193
+ condition: -> {
194
+ can?(:admin, Spree::ShippingMethod) ||
195
+ can?(:admin, Spree::ShippingCategory) ||
196
+ can?(:admin, Spree::StockLocation)
197
+ },
198
+ url: :admin_shipping_methods_path,
199
+ match_path: %r(shipping_methods|shipping_categories|stock_locations),
200
+ ),
201
+ MenuItem.new(
202
+ label: :zones,
203
+ condition: -> { can?(:admin, Spree::Zone) },
204
+ url: :admin_zones_path,
205
+ ),
206
+ ],
135
207
  )
136
208
  ]
137
209
  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.1
4
+ version: 4.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solidus Team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-14 00:00:00.000000000 Z
11
+ date: 2023-10-04 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.1
19
+ version: 4.2.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: 4.1.1
26
+ version: 4.2.1
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.1
33
+ version: 4.2.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: 4.1.1
40
+ version: 4.2.1
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
@@ -907,7 +915,7 @@ licenses:
907
915
  - BSD-3-Clause
908
916
  metadata:
909
917
  rubygems_mfa_required: 'true'
910
- post_install_message:
918
+ post_install_message:
911
919
  rdoc_options: []
912
920
  require_paths:
913
921
  - lib
@@ -922,8 +930,8 @@ 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.4.9
926
- signing_key:
933
+ rubygems_version: 3.3.23
934
+ signing_key:
927
935
  specification_version: 4
928
936
  summary: Admin interface for the Solidus e-commerce framework.
929
937
  test_files: []