alchemy_cms 7.2.9 → 7.3.0

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 (191) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +97 -29
  3. data/Gemfile +3 -11
  4. data/Rakefile +1 -0
  5. data/alchemy_cms.gemspec +7 -7
  6. data/app/assets/builds/alchemy/admin/print.css +1 -0
  7. data/app/assets/builds/alchemy/admin/print.css.map +1 -0
  8. data/app/assets/builds/alchemy/admin.css +1 -0
  9. data/app/assets/builds/alchemy/admin.css.map +1 -0
  10. data/app/assets/builds/alchemy/welcome.css +1 -0
  11. data/app/assets/builds/alchemy/welcome.css.map +1 -0
  12. data/app/assets/builds/tinymce/skins/content/alchemy/content.css +1 -0
  13. data/app/assets/builds/tinymce/skins/content/alchemy/content.css.map +1 -0
  14. data/app/assets/builds/tinymce/skins/content/alchemy/content.min.css +1 -0
  15. data/app/assets/builds/tinymce/skins/content/alchemy/content.min.css.map +1 -0
  16. data/app/assets/builds/tinymce/skins/ui/alchemy/skin.css +1 -0
  17. data/app/assets/builds/tinymce/skins/ui/alchemy/skin.css.map +1 -0
  18. data/app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css +1 -0
  19. data/app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css.map +1 -0
  20. data/app/assets/config/alchemy_manifest.js +1 -5
  21. data/app/assets/javascripts/alchemy/alchemy.dialog.js.coffee +4 -0
  22. data/app/assets/stylesheets/alchemy/{_custom-properties.scss → _custom-properties.css} +28 -25
  23. data/app/assets/stylesheets/alchemy/_deprecated_variables.scss +41 -0
  24. data/app/assets/stylesheets/alchemy/_deprecation.scss +17 -0
  25. data/app/assets/stylesheets/alchemy/_extends.scss +1 -1
  26. data/app/assets/stylesheets/alchemy/_mixins.scss +20 -23
  27. data/app/assets/stylesheets/alchemy/_variables.scss +98 -94
  28. data/app/assets/stylesheets/alchemy/{archive.scss → admin/archive.scss} +23 -23
  29. data/app/assets/stylesheets/alchemy/{attachment-select.scss → admin/attachment-select.scss} +2 -2
  30. data/app/assets/stylesheets/alchemy/{attachments.scss → admin/attachments.scss} +4 -4
  31. data/app/assets/stylesheets/alchemy/{base.scss → admin/base.scss} +9 -9
  32. data/app/assets/stylesheets/alchemy/{buttons.scss → admin/buttons.scss} +3 -3
  33. data/app/assets/stylesheets/alchemy/{clipboard.scss → admin/clipboard.scss} +9 -6
  34. data/app/assets/stylesheets/alchemy/{dashboard.scss → admin/dashboard.scss} +8 -8
  35. data/app/assets/stylesheets/alchemy/{dialogs.scss → admin/dialogs.scss} +20 -20
  36. data/app/assets/stylesheets/alchemy/{elements.scss → admin/elements.scss} +129 -89
  37. data/app/assets/stylesheets/alchemy/{errors.scss → admin/errors.scss} +22 -6
  38. data/app/assets/stylesheets/alchemy/{flash.scss → admin/flash.scss} +3 -3
  39. data/app/assets/stylesheets/alchemy/{flatpickr.scss → admin/flatpickr.scss} +55 -35
  40. data/app/assets/stylesheets/alchemy/{form_fields.scss → admin/form_fields.scss} +8 -6
  41. data/app/assets/stylesheets/alchemy/{forms.scss → admin/forms.scss} +20 -16
  42. data/app/assets/stylesheets/alchemy/{frame.scss → admin/frame.scss} +9 -9
  43. data/app/assets/stylesheets/alchemy/{image_library.scss → admin/image_library.scss} +34 -33
  44. data/app/assets/stylesheets/alchemy/admin/labels.scss +3 -0
  45. data/app/assets/stylesheets/alchemy/{list_filter.scss → admin/list_filter.scss} +4 -4
  46. data/app/assets/stylesheets/alchemy/{lists.scss → admin/lists.scss} +9 -7
  47. data/app/assets/stylesheets/alchemy/{navigation.scss → admin/navigation.scss} +17 -17
  48. data/app/assets/stylesheets/alchemy/{node-select.scss → admin/node-select.scss} +5 -5
  49. data/app/assets/stylesheets/alchemy/{nodes.scss → admin/nodes.scss} +11 -11
  50. data/app/assets/stylesheets/alchemy/{notices.scss → admin/notices.scss} +11 -7
  51. data/app/assets/stylesheets/alchemy/{page-select.scss → admin/page-select.scss} +10 -10
  52. data/app/assets/stylesheets/alchemy/{pagination.scss → admin/pagination.scss} +10 -10
  53. data/app/assets/stylesheets/alchemy/{print.scss → admin/print.scss} +2 -6
  54. data/app/assets/stylesheets/alchemy/{resource_info.scss → admin/resource_info.scss} +6 -7
  55. data/app/assets/stylesheets/alchemy/{search.scss → admin/search.scss} +6 -6
  56. data/app/assets/stylesheets/alchemy/{selects.scss → admin/selects.scss} +46 -39
  57. data/app/assets/stylesheets/alchemy/{shoelace.scss → admin/shoelace.scss} +10 -10
  58. data/app/assets/stylesheets/alchemy/{sitemap.scss → admin/sitemap.scss} +18 -19
  59. data/app/assets/stylesheets/alchemy/{tables.scss → admin/tables.scss} +26 -22
  60. data/app/assets/stylesheets/alchemy/admin/tags.scss +158 -0
  61. data/app/assets/stylesheets/alchemy/{toolbar.scss → admin/toolbar.scss} +10 -10
  62. data/app/assets/stylesheets/alchemy/{typography.scss → admin/typography.scss} +3 -3
  63. data/app/assets/stylesheets/alchemy/{upload.scss → admin/upload.scss} +1 -1
  64. data/app/assets/stylesheets/alchemy/admin.scss +40 -45
  65. data/app/assets/stylesheets/alchemy/welcome.scss +57 -0
  66. data/app/assets/stylesheets/tinymce/skins/content/alchemy/{content.min.scss → content.scss} +5 -4
  67. data/app/assets/stylesheets/tinymce/skins/ui/alchemy/{skin.min.scss → skin.scss} +40 -40
  68. data/app/components/alchemy/admin/link_dialog/internal_tab.rb +1 -2
  69. data/app/components/alchemy/admin/resource/action.rb +46 -0
  70. data/app/components/alchemy/admin/resource/cell.rb +34 -0
  71. data/app/components/alchemy/admin/resource/header.rb +46 -0
  72. data/app/components/alchemy/admin/resource/table.rb +153 -0
  73. data/app/components/alchemy/ingredients/datetime_view.rb +2 -2
  74. data/app/components/alchemy/ingredients/link_view.rb +1 -7
  75. data/app/components/alchemy/ingredients/picture_view.rb +2 -5
  76. data/app/components/alchemy/ingredients/text_view.rb +1 -4
  77. data/app/controllers/alchemy/admin/base_controller.rb +4 -27
  78. data/app/controllers/alchemy/admin/elements_controller.rb +7 -3
  79. data/app/controllers/alchemy/admin/languages_controller.rb +1 -1
  80. data/app/controllers/alchemy/admin/legacy_page_urls_controller.rb +1 -1
  81. data/app/controllers/alchemy/admin/pages_controller.rb +6 -2
  82. data/app/controllers/alchemy/admin/pictures_controller.rb +2 -2
  83. data/app/controllers/alchemy/admin/resources_controller.rb +3 -3
  84. data/app/controllers/alchemy/base_controller.rb +2 -0
  85. data/app/controllers/concerns/alchemy/admin/uploader_responses.rb +2 -11
  86. data/app/decorators/alchemy/ingredient_editor.rb +17 -0
  87. data/app/helpers/alchemy/admin/pages_helper.rb +6 -10
  88. data/app/helpers/alchemy/base_helper.rb +2 -2
  89. data/app/helpers/alchemy/elements_block_helper.rb +13 -1
  90. data/app/helpers/alchemy/pages_helper.rb +2 -2
  91. data/app/javascript/alchemy_admin/components/element_editor.js +23 -31
  92. data/app/javascript/alchemy_admin/components/preview_window.js +2 -3
  93. data/app/javascript/alchemy_admin/picture_selector.js +38 -10
  94. data/app/models/alchemy/attachment.rb +0 -8
  95. data/app/models/alchemy/element/dom_id.rb +1 -0
  96. data/app/models/alchemy/element/element_ingredients.rb +0 -73
  97. data/app/models/alchemy/element/presenters.rb +4 -1
  98. data/app/models/alchemy/element.rb +6 -0
  99. data/app/models/alchemy/elements_repository.rb +2 -2
  100. data/app/models/alchemy/ingredient_validator.rb +10 -0
  101. data/app/models/alchemy/page/page_scopes.rb +1 -1
  102. data/app/models/alchemy/picture.rb +0 -10
  103. data/app/models/concerns/alchemy/picture_thumbnails.rb +5 -4
  104. data/app/views/alchemy/admin/attachments/_files_list.html.erb +74 -16
  105. data/app/views/alchemy/admin/clipboard/index.html.erb +38 -33
  106. data/app/views/alchemy/admin/dashboard/_dashboard.html.erb +3 -0
  107. data/app/views/alchemy/admin/dashboard/_left_column.html.erb +4 -0
  108. data/app/views/alchemy/admin/dashboard/_right_column.html.erb +9 -0
  109. data/app/views/alchemy/admin/dashboard/_top.html.erb +12 -0
  110. data/app/views/alchemy/admin/dashboard/index.html.erb +1 -25
  111. data/app/views/alchemy/admin/elements/_element.html.erb +1 -2
  112. data/app/views/alchemy/admin/elements/_form.html.erb +1 -1
  113. data/app/views/alchemy/admin/ingredients/_picture_fields.html.erb +10 -3
  114. data/app/views/alchemy/admin/ingredients/update.turbo_stream.erb +7 -0
  115. data/app/views/alchemy/admin/languages/_table.html.erb +16 -42
  116. data/app/views/alchemy/admin/nodes/_form.html.erb +1 -1
  117. data/app/views/alchemy/admin/pages/_table.html.erb +92 -27
  118. data/app/views/alchemy/admin/pages/edit.html.erb +6 -8
  119. data/app/views/alchemy/admin/pages/index.html.erb +0 -4
  120. data/app/views/alchemy/admin/pictures/_form.html.erb +14 -12
  121. data/app/views/alchemy/admin/pictures/index.html.erb +1 -11
  122. data/app/views/alchemy/admin/pictures/update.turbo_stream.erb +6 -0
  123. data/app/views/alchemy/admin/resources/_resource_table.html.erb +3 -0
  124. data/app/views/alchemy/admin/resources/_table.html.erb +2 -0
  125. data/app/views/alchemy/admin/resources/index.html.erb +1 -1
  126. data/app/views/alchemy/admin/sites/index.html.erb +1 -1
  127. data/app/views/alchemy/admin/styleguide/index.html.erb +0 -4
  128. data/app/views/alchemy/admin/tags/index.html.erb +15 -14
  129. data/app/views/alchemy/base/403.html.erb +6 -0
  130. data/app/views/alchemy/base/500.html.erb +14 -12
  131. data/app/views/alchemy/ingredients/_datetime_editor.html.erb +13 -11
  132. data/app/views/alchemy/ingredients/_headline_editor.html.erb +29 -22
  133. data/app/views/alchemy/ingredients/_link_editor.html.erb +17 -11
  134. data/app/views/alchemy/ingredients/_page_editor.html.erb +1 -0
  135. data/app/views/alchemy/ingredients/_picture_editor.html.erb +3 -4
  136. data/app/views/alchemy/ingredients/_richtext_editor.html.erb +5 -1
  137. data/app/views/alchemy/ingredients/_select_editor.html.erb +2 -1
  138. data/app/views/alchemy/ingredients/_text_editor.html.erb +20 -14
  139. data/app/views/alchemy/ingredients/shared/_picture_css_class.html.erb +6 -0
  140. data/app/views/layouts/alchemy/admin.html.erb +4 -2
  141. data/bin/setup +2 -0
  142. data/bin/start +1 -1
  143. data/bun.lockb +0 -0
  144. data/config/alchemy/config.yml +9 -0
  145. data/config/locales/alchemy.en.yml +8 -29
  146. data/config/routes.rb +22 -22
  147. data/lib/alchemy/config.rb +3 -3
  148. data/lib/alchemy/install/tasks.rb +5 -2
  149. data/lib/alchemy/resource.rb +4 -14
  150. data/lib/alchemy/resources_helper.rb +3 -1
  151. data/lib/alchemy/test_support/capybara_helpers.rb +8 -5
  152. data/lib/alchemy/test_support/shared_uploader_examples.rb +0 -1
  153. data/lib/alchemy/upgrader/seven_point_three.rb +52 -0
  154. data/lib/alchemy/version.rb +1 -1
  155. data/lib/alchemy_cms.rb +1 -1
  156. data/lib/generators/alchemy/install/files/article.css +25 -0
  157. data/lib/generators/alchemy/install/files/custom.css +4 -0
  158. data/lib/generators/alchemy/install/install_generator.rb +6 -6
  159. data/lib/tasks/alchemy/upgrade.rake +29 -1
  160. data/vendor/assets/stylesheets/alchemy_admin/select2.css +1 -0
  161. data/vendor/assets/stylesheets/jquery.Jcrop.min.css +2 -0
  162. data/vendor/javascript/shoelace.min.js +62 -63
  163. data/vendor/javascript/tinymce.min.js +1 -1
  164. metadata +135 -107
  165. data/app/assets/images/alchemy/lupe.cur +0 -0
  166. data/app/assets/stylesheets/alchemy/labels.scss +0 -3
  167. data/app/assets/stylesheets/alchemy/tags.scss +0 -155
  168. data/app/assets/stylesheets/alchemy/welcome.sass +0 -49
  169. data/app/components/concerns/alchemy/ingredients/link_target.rb +0 -18
  170. data/app/views/alchemy/admin/attachments/_attachment.html.erb +0 -81
  171. data/app/views/alchemy/admin/languages/_language.html.erb +0 -50
  172. data/app/views/alchemy/admin/pages/_table_row.html.erb +0 -111
  173. data/app/views/alchemy/admin/pages/list/_table.html.erb +0 -31
  174. data/app/views/alchemy/admin/pictures/update.js.erb +0 -6
  175. data/app/views/alchemy/admin/tags/_tag.html.erb +0 -32
  176. data/app/views/alchemy/base/update.js.erb +0 -5
  177. data/lib/generators/alchemy/install/files/all.css +0 -11
  178. data/lib/generators/alchemy/install/files/article.scss +0 -30
  179. data/package.json +0 -52
  180. data/vendor/assets/stylesheets/alchemy_admin/select2.scss +0 -741
  181. data/vendor/assets/stylesheets/jquery.Jcrop.min.scss +0 -2
  182. /data/app/assets/stylesheets/alchemy/{fonts.scss → _fonts.scss} +0 -0
  183. /data/app/assets/stylesheets/alchemy/{hints.scss → admin/hints.scss} +0 -0
  184. /data/app/assets/stylesheets/alchemy/{icons.scss → admin/icons.scss} +0 -0
  185. /data/app/assets/stylesheets/alchemy/{images.scss → admin/images.scss} +0 -0
  186. /data/app/assets/stylesheets/alchemy/{preview_window.scss → admin/preview_window.scss} +0 -0
  187. /data/app/assets/stylesheets/alchemy/{spinner.scss → admin/spinner.scss} +0 -0
  188. /data/app/views/alchemy/admin/dashboard/{_locked_pages.html.erb → widgets/_locked_pages.html.erb} +0 -0
  189. /data/app/views/alchemy/admin/dashboard/{_recent_pages.html.erb → widgets/_recent_pages.html.erb} +0 -0
  190. /data/app/views/alchemy/admin/dashboard/{_sites.html.erb → widgets/_sites.html.erb} +0 -0
  191. /data/app/views/alchemy/admin/dashboard/{_users.html.erb → widgets/_users.html.erb} +0 -0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy_cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.2.9
4
+ version: 7.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
@@ -10,9 +10,10 @@ authors:
10
10
  - Hendrik Mans
11
11
  - Carsten Fregin
12
12
  - Martin Meyerhoff
13
+ autorequire:
13
14
  bindir: bin
14
15
  cert_chain: []
15
- date: 2025-03-17 00:00:00.000000000 Z
16
+ date: 2024-09-11 00:00:00.000000000 Z
16
17
  dependencies:
17
18
  - !ruby/object:Gem::Dependency
18
19
  name: actionmailer
@@ -23,7 +24,7 @@ dependencies:
23
24
  version: '7.0'
24
25
  - - "<"
25
26
  - !ruby/object:Gem::Version
26
- version: '7.2'
27
+ version: '7.3'
27
28
  type: :runtime
28
29
  prerelease: false
29
30
  version_requirements: !ruby/object:Gem::Requirement
@@ -33,7 +34,7 @@ dependencies:
33
34
  version: '7.0'
34
35
  - - "<"
35
36
  - !ruby/object:Gem::Version
36
- version: '7.2'
37
+ version: '7.3'
37
38
  - !ruby/object:Gem::Dependency
38
39
  name: actionpack
39
40
  requirement: !ruby/object:Gem::Requirement
@@ -43,7 +44,7 @@ dependencies:
43
44
  version: '7.0'
44
45
  - - "<"
45
46
  - !ruby/object:Gem::Version
46
- version: '7.2'
47
+ version: '7.3'
47
48
  type: :runtime
48
49
  prerelease: false
49
50
  version_requirements: !ruby/object:Gem::Requirement
@@ -53,7 +54,7 @@ dependencies:
53
54
  version: '7.0'
54
55
  - - "<"
55
56
  - !ruby/object:Gem::Version
56
- version: '7.2'
57
+ version: '7.3'
57
58
  - !ruby/object:Gem::Dependency
58
59
  name: actionview
59
60
  requirement: !ruby/object:Gem::Requirement
@@ -63,7 +64,7 @@ dependencies:
63
64
  version: '7.0'
64
65
  - - "<"
65
66
  - !ruby/object:Gem::Version
66
- version: '7.2'
67
+ version: '7.3'
67
68
  type: :runtime
68
69
  prerelease: false
69
70
  version_requirements: !ruby/object:Gem::Requirement
@@ -73,7 +74,7 @@ dependencies:
73
74
  version: '7.0'
74
75
  - - "<"
75
76
  - !ruby/object:Gem::Version
76
- version: '7.2'
77
+ version: '7.3'
77
78
  - !ruby/object:Gem::Dependency
78
79
  name: activejob
79
80
  requirement: !ruby/object:Gem::Requirement
@@ -83,7 +84,7 @@ dependencies:
83
84
  version: '7.0'
84
85
  - - "<"
85
86
  - !ruby/object:Gem::Version
86
- version: '7.2'
87
+ version: '7.3'
87
88
  type: :runtime
88
89
  prerelease: false
89
90
  version_requirements: !ruby/object:Gem::Requirement
@@ -93,7 +94,7 @@ dependencies:
93
94
  version: '7.0'
94
95
  - - "<"
95
96
  - !ruby/object:Gem::Version
96
- version: '7.2'
97
+ version: '7.3'
97
98
  - !ruby/object:Gem::Dependency
98
99
  name: activemodel
99
100
  requirement: !ruby/object:Gem::Requirement
@@ -103,7 +104,7 @@ dependencies:
103
104
  version: '7.0'
104
105
  - - "<"
105
106
  - !ruby/object:Gem::Version
106
- version: '7.2'
107
+ version: '7.3'
107
108
  type: :runtime
108
109
  prerelease: false
109
110
  version_requirements: !ruby/object:Gem::Requirement
@@ -113,7 +114,7 @@ dependencies:
113
114
  version: '7.0'
114
115
  - - "<"
115
116
  - !ruby/object:Gem::Version
116
- version: '7.2'
117
+ version: '7.3'
117
118
  - !ruby/object:Gem::Dependency
118
119
  name: activerecord
119
120
  requirement: !ruby/object:Gem::Requirement
@@ -123,7 +124,7 @@ dependencies:
123
124
  version: '7.0'
124
125
  - - "<"
125
126
  - !ruby/object:Gem::Version
126
- version: '7.2'
127
+ version: '7.3'
127
128
  type: :runtime
128
129
  prerelease: false
129
130
  version_requirements: !ruby/object:Gem::Requirement
@@ -133,7 +134,7 @@ dependencies:
133
134
  version: '7.0'
134
135
  - - "<"
135
136
  - !ruby/object:Gem::Version
136
- version: '7.2'
137
+ version: '7.3'
137
138
  - !ruby/object:Gem::Dependency
138
139
  name: activesupport
139
140
  requirement: !ruby/object:Gem::Requirement
@@ -143,7 +144,7 @@ dependencies:
143
144
  version: '7.0'
144
145
  - - "<"
145
146
  - !ruby/object:Gem::Version
146
- version: '7.2'
147
+ version: '7.3'
147
148
  type: :runtime
148
149
  prerelease: false
149
150
  version_requirements: !ruby/object:Gem::Requirement
@@ -153,7 +154,7 @@ dependencies:
153
154
  version: '7.0'
154
155
  - - "<"
155
156
  - !ruby/object:Gem::Version
156
- version: '7.2'
157
+ version: '7.3'
157
158
  - !ruby/object:Gem::Dependency
158
159
  name: railties
159
160
  requirement: !ruby/object:Gem::Requirement
@@ -163,7 +164,7 @@ dependencies:
163
164
  version: '7.0'
164
165
  - - "<"
165
166
  - !ruby/object:Gem::Version
166
- version: '7.2'
167
+ version: '7.3'
167
168
  type: :runtime
168
169
  prerelease: false
169
170
  version_requirements: !ruby/object:Gem::Requirement
@@ -173,7 +174,7 @@ dependencies:
173
174
  version: '7.0'
174
175
  - - "<"
175
176
  - !ruby/object:Gem::Version
176
- version: '7.2'
177
+ version: '7.3'
177
178
  - !ruby/object:Gem::Dependency
178
179
  name: active_model_serializers
179
180
  requirement: !ruby/object:Gem::Requirement
@@ -215,6 +216,9 @@ dependencies:
215
216
  - - "~>"
216
217
  - !ruby/object:Gem::Version
217
218
  version: '3.1'
219
+ - - ">="
220
+ - !ruby/object:Gem::Version
221
+ version: 3.7.0
218
222
  type: :runtime
219
223
  prerelease: false
220
224
  version_requirements: !ruby/object:Gem::Requirement
@@ -222,6 +226,9 @@ dependencies:
222
226
  - - "~>"
223
227
  - !ruby/object:Gem::Version
224
228
  version: '3.1'
229
+ - - ">="
230
+ - !ruby/object:Gem::Version
231
+ version: 3.7.0
225
232
  - !ruby/object:Gem::Dependency
226
233
  name: cancancan
227
234
  requirement: !ruby/object:Gem::Requirement
@@ -262,6 +269,20 @@ dependencies:
262
269
  - - "<"
263
270
  - !ruby/object:Gem::Version
264
271
  version: '6.0'
272
+ - !ruby/object:Gem::Dependency
273
+ name: csv
274
+ requirement: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - "~>"
277
+ - !ruby/object:Gem::Version
278
+ version: '3.3'
279
+ type: :runtime
280
+ prerelease: false
281
+ version_requirements: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - "~>"
284
+ - !ruby/object:Gem::Version
285
+ version: '3.3'
265
286
  - !ruby/object:Gem::Dependency
266
287
  name: dragonfly
267
288
  requirement: !ruby/object:Gem::Requirement
@@ -412,20 +433,6 @@ dependencies:
412
433
  - - "<"
413
434
  - !ruby/object:Gem::Version
414
435
  version: '5.0'
415
- - !ruby/object:Gem::Dependency
416
- name: sassc-rails
417
- requirement: !ruby/object:Gem::Requirement
418
- requirements:
419
- - - "~>"
420
- - !ruby/object:Gem::Version
421
- version: '2.1'
422
- type: :runtime
423
- prerelease: false
424
- version_requirements: !ruby/object:Gem::Requirement
425
- requirements:
426
- - - "~>"
427
- - !ruby/object:Gem::Version
428
- version: '2.1'
429
436
  - !ruby/object:Gem::Dependency
430
437
  name: simple_form
431
438
  requirement: !ruby/object:Gem::Requirement
@@ -447,25 +454,25 @@ dependencies:
447
454
  - !ruby/object:Gem::Version
448
455
  version: '6'
449
456
  - !ruby/object:Gem::Dependency
450
- name: sprockets
457
+ name: sprockets-rails
451
458
  requirement: !ruby/object:Gem::Requirement
452
459
  requirements:
453
460
  - - ">="
454
461
  - !ruby/object:Gem::Version
455
- version: '3.0'
462
+ version: '3.5'
456
463
  - - "<"
457
464
  - !ruby/object:Gem::Version
458
- version: '5'
465
+ version: '4'
459
466
  type: :runtime
460
467
  prerelease: false
461
468
  version_requirements: !ruby/object:Gem::Requirement
462
469
  requirements:
463
470
  - - ">="
464
471
  - !ruby/object:Gem::Version
465
- version: '3.0'
472
+ version: '3.5'
466
473
  - - "<"
467
474
  - !ruby/object:Gem::Version
468
- version: '5'
475
+ version: '4'
469
476
  - !ruby/object:Gem::Dependency
470
477
  name: turbo-rails
471
478
  requirement: !ruby/object:Gem::Requirement
@@ -602,16 +609,16 @@ dependencies:
602
609
  name: rspec-rails
603
610
  requirement: !ruby/object:Gem::Requirement
604
611
  requirements:
605
- - - ">="
612
+ - - "~>"
606
613
  - !ruby/object:Gem::Version
607
- version: 4.0.0.beta2
614
+ version: '6.1'
608
615
  type: :development
609
616
  prerelease: false
610
617
  version_requirements: !ruby/object:Gem::Requirement
611
618
  requirements:
612
- - - ">="
619
+ - - "~>"
613
620
  - !ruby/object:Gem::Version
614
- version: 4.0.0.beta2
621
+ version: '6.1'
615
622
  - !ruby/object:Gem::Dependency
616
623
  name: simplecov
617
624
  requirement: !ruby/object:Gem::Requirement
@@ -698,13 +705,26 @@ files:
698
705
  - Rakefile
699
706
  - SECURITY.md
700
707
  - alchemy_cms.gemspec
708
+ - app/assets/builds/alchemy/admin.css
709
+ - app/assets/builds/alchemy/admin.css.map
710
+ - app/assets/builds/alchemy/admin/print.css
711
+ - app/assets/builds/alchemy/admin/print.css.map
712
+ - app/assets/builds/alchemy/welcome.css
713
+ - app/assets/builds/alchemy/welcome.css.map
714
+ - app/assets/builds/tinymce/skins/content/alchemy/content.css
715
+ - app/assets/builds/tinymce/skins/content/alchemy/content.css.map
716
+ - app/assets/builds/tinymce/skins/content/alchemy/content.min.css
717
+ - app/assets/builds/tinymce/skins/content/alchemy/content.min.css.map
718
+ - app/assets/builds/tinymce/skins/ui/alchemy/skin.css
719
+ - app/assets/builds/tinymce/skins/ui/alchemy/skin.css.map
720
+ - app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css
721
+ - app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css.map
701
722
  - app/assets/config/alchemy_manifest.js
702
723
  - app/assets/images/alchemy/alchemy-logo.png
703
724
  - app/assets/images/alchemy/alchemy-logo.svg
704
725
  - app/assets/images/alchemy/favicon.ico
705
726
  - app/assets/images/alchemy/icon-white.svg
706
727
  - app/assets/images/alchemy/icon.svg
707
- - app/assets/images/alchemy/lupe.cur
708
728
  - app/assets/images/alchemy/missing-image.svg
709
729
  - app/assets/javascripts/alchemy/admin.js
710
730
  - app/assets/javascripts/alchemy/alchemy.dialog.js.coffee
@@ -716,56 +736,58 @@ files:
716
736
  - app/assets/javascripts/alchemy/templates/page_folder.hbs
717
737
  - app/assets/javascripts/tinymce/icons/remixicons/icons.js
718
738
  - app/assets/javascripts/tinymce/plugins/alchemy_link/plugin.min.js
719
- - app/assets/stylesheets/alchemy/_custom-properties.scss
739
+ - app/assets/stylesheets/alchemy/_custom-properties.css
720
740
  - app/assets/stylesheets/alchemy/_defaults.scss
741
+ - app/assets/stylesheets/alchemy/_deprecated_variables.scss
742
+ - app/assets/stylesheets/alchemy/_deprecation.scss
721
743
  - app/assets/stylesheets/alchemy/_extends.scss
744
+ - app/assets/stylesheets/alchemy/_fonts.scss
722
745
  - app/assets/stylesheets/alchemy/_mixins.scss
723
746
  - app/assets/stylesheets/alchemy/_variables.scss
724
747
  - app/assets/stylesheets/alchemy/admin.scss
725
- - app/assets/stylesheets/alchemy/archive.scss
726
- - app/assets/stylesheets/alchemy/attachment-select.scss
727
- - app/assets/stylesheets/alchemy/attachments.scss
728
- - app/assets/stylesheets/alchemy/base.scss
729
- - app/assets/stylesheets/alchemy/buttons.scss
730
- - app/assets/stylesheets/alchemy/clipboard.scss
731
- - app/assets/stylesheets/alchemy/dashboard.scss
732
- - app/assets/stylesheets/alchemy/dialogs.scss
733
- - app/assets/stylesheets/alchemy/elements.scss
734
- - app/assets/stylesheets/alchemy/errors.scss
735
- - app/assets/stylesheets/alchemy/flash.scss
736
- - app/assets/stylesheets/alchemy/flatpickr.scss
737
- - app/assets/stylesheets/alchemy/fonts.scss
738
- - app/assets/stylesheets/alchemy/form_fields.scss
739
- - app/assets/stylesheets/alchemy/forms.scss
740
- - app/assets/stylesheets/alchemy/frame.scss
741
- - app/assets/stylesheets/alchemy/hints.scss
742
- - app/assets/stylesheets/alchemy/icons.scss
743
- - app/assets/stylesheets/alchemy/image_library.scss
744
- - app/assets/stylesheets/alchemy/images.scss
745
- - app/assets/stylesheets/alchemy/labels.scss
746
- - app/assets/stylesheets/alchemy/list_filter.scss
747
- - app/assets/stylesheets/alchemy/lists.scss
748
- - app/assets/stylesheets/alchemy/navigation.scss
749
- - app/assets/stylesheets/alchemy/node-select.scss
750
- - app/assets/stylesheets/alchemy/nodes.scss
751
- - app/assets/stylesheets/alchemy/notices.scss
752
- - app/assets/stylesheets/alchemy/page-select.scss
753
- - app/assets/stylesheets/alchemy/pagination.scss
754
- - app/assets/stylesheets/alchemy/preview_window.scss
755
- - app/assets/stylesheets/alchemy/print.scss
756
- - app/assets/stylesheets/alchemy/resource_info.scss
757
- - app/assets/stylesheets/alchemy/search.scss
758
- - app/assets/stylesheets/alchemy/selects.scss
759
- - app/assets/stylesheets/alchemy/shoelace.scss
760
- - app/assets/stylesheets/alchemy/sitemap.scss
761
- - app/assets/stylesheets/alchemy/spinner.scss
762
- - app/assets/stylesheets/alchemy/tables.scss
763
- - app/assets/stylesheets/alchemy/tags.scss
764
- - app/assets/stylesheets/alchemy/toolbar.scss
765
- - app/assets/stylesheets/alchemy/typography.scss
766
- - app/assets/stylesheets/alchemy/upload.scss
767
- - app/assets/stylesheets/alchemy/welcome.sass
768
- - app/assets/stylesheets/tinymce/skins/content/alchemy/content.min.scss
748
+ - app/assets/stylesheets/alchemy/admin/archive.scss
749
+ - app/assets/stylesheets/alchemy/admin/attachment-select.scss
750
+ - app/assets/stylesheets/alchemy/admin/attachments.scss
751
+ - app/assets/stylesheets/alchemy/admin/base.scss
752
+ - app/assets/stylesheets/alchemy/admin/buttons.scss
753
+ - app/assets/stylesheets/alchemy/admin/clipboard.scss
754
+ - app/assets/stylesheets/alchemy/admin/dashboard.scss
755
+ - app/assets/stylesheets/alchemy/admin/dialogs.scss
756
+ - app/assets/stylesheets/alchemy/admin/elements.scss
757
+ - app/assets/stylesheets/alchemy/admin/errors.scss
758
+ - app/assets/stylesheets/alchemy/admin/flash.scss
759
+ - app/assets/stylesheets/alchemy/admin/flatpickr.scss
760
+ - app/assets/stylesheets/alchemy/admin/form_fields.scss
761
+ - app/assets/stylesheets/alchemy/admin/forms.scss
762
+ - app/assets/stylesheets/alchemy/admin/frame.scss
763
+ - app/assets/stylesheets/alchemy/admin/hints.scss
764
+ - app/assets/stylesheets/alchemy/admin/icons.scss
765
+ - app/assets/stylesheets/alchemy/admin/image_library.scss
766
+ - app/assets/stylesheets/alchemy/admin/images.scss
767
+ - app/assets/stylesheets/alchemy/admin/labels.scss
768
+ - app/assets/stylesheets/alchemy/admin/list_filter.scss
769
+ - app/assets/stylesheets/alchemy/admin/lists.scss
770
+ - app/assets/stylesheets/alchemy/admin/navigation.scss
771
+ - app/assets/stylesheets/alchemy/admin/node-select.scss
772
+ - app/assets/stylesheets/alchemy/admin/nodes.scss
773
+ - app/assets/stylesheets/alchemy/admin/notices.scss
774
+ - app/assets/stylesheets/alchemy/admin/page-select.scss
775
+ - app/assets/stylesheets/alchemy/admin/pagination.scss
776
+ - app/assets/stylesheets/alchemy/admin/preview_window.scss
777
+ - app/assets/stylesheets/alchemy/admin/print.scss
778
+ - app/assets/stylesheets/alchemy/admin/resource_info.scss
779
+ - app/assets/stylesheets/alchemy/admin/search.scss
780
+ - app/assets/stylesheets/alchemy/admin/selects.scss
781
+ - app/assets/stylesheets/alchemy/admin/shoelace.scss
782
+ - app/assets/stylesheets/alchemy/admin/sitemap.scss
783
+ - app/assets/stylesheets/alchemy/admin/spinner.scss
784
+ - app/assets/stylesheets/alchemy/admin/tables.scss
785
+ - app/assets/stylesheets/alchemy/admin/tags.scss
786
+ - app/assets/stylesheets/alchemy/admin/toolbar.scss
787
+ - app/assets/stylesheets/alchemy/admin/typography.scss
788
+ - app/assets/stylesheets/alchemy/admin/upload.scss
789
+ - app/assets/stylesheets/alchemy/welcome.scss
790
+ - app/assets/stylesheets/tinymce/skins/content/alchemy/content.scss
769
791
  - app/assets/stylesheets/tinymce/skins/skintool.json
770
792
  - app/assets/stylesheets/tinymce/skins/ui/alchemy/content.css
771
793
  - app/assets/stylesheets/tinymce/skins/ui/alchemy/content.inline.css
@@ -774,9 +796,9 @@ files:
774
796
  - app/assets/stylesheets/tinymce/skins/ui/alchemy/content.mobile.css
775
797
  - app/assets/stylesheets/tinymce/skins/ui/alchemy/content.mobile.min.css
776
798
  - app/assets/stylesheets/tinymce/skins/ui/alchemy/fonts/tinymce-mobile.woff
777
- - app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.min.scss
778
799
  - app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.mobile.css
779
800
  - app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.mobile.min.css
801
+ - app/assets/stylesheets/tinymce/skins/ui/alchemy/skin.scss
780
802
  - app/components/alchemy/admin/attachment_select.rb
781
803
  - app/components/alchemy/admin/icon.rb
782
804
  - app/components/alchemy/admin/link_dialog/anchor_tab.rb
@@ -789,6 +811,10 @@ files:
789
811
  - app/components/alchemy/admin/message.rb
790
812
  - app/components/alchemy/admin/node_select.rb
791
813
  - app/components/alchemy/admin/page_select.rb
814
+ - app/components/alchemy/admin/resource/action.rb
815
+ - app/components/alchemy/admin/resource/cell.rb
816
+ - app/components/alchemy/admin/resource/header.rb
817
+ - app/components/alchemy/admin/resource/table.rb
792
818
  - app/components/alchemy/admin/tags_autocomplete.rb
793
819
  - app/components/alchemy/admin/toolbar_button.rb
794
820
  - app/components/alchemy/ingredients/audio_view.rb
@@ -806,7 +832,6 @@ files:
806
832
  - app/components/alchemy/ingredients/select_view.rb
807
833
  - app/components/alchemy/ingredients/text_view.rb
808
834
  - app/components/alchemy/ingredients/video_view.rb
809
- - app/components/concerns/alchemy/ingredients/link_target.rb
810
835
  - app/controllers/alchemy/admin/attachments_controller.rb
811
836
  - app/controllers/alchemy/admin/base_controller.rb
812
837
  - app/controllers/alchemy/admin/clipboard_controller.rb
@@ -1010,7 +1035,6 @@ files:
1010
1035
  - app/views/alchemy/_menubar.html.erb
1011
1036
  - app/views/alchemy/_preview_mode_code.html.erb
1012
1037
  - app/views/alchemy/admin/attachments/_archive_overlay.html.erb
1013
- - app/views/alchemy/admin/attachments/_attachment.html.erb
1014
1038
  - app/views/alchemy/admin/attachments/_file_to_assign.html.erb
1015
1039
  - app/views/alchemy/admin/attachments/_files_list.html.erb
1016
1040
  - app/views/alchemy/admin/attachments/_overlay_file_list.html.erb
@@ -1027,13 +1051,17 @@ files:
1027
1051
  - app/views/alchemy/admin/clipboard/insert.js.erb
1028
1052
  - app/views/alchemy/admin/clipboard/remove.js.erb
1029
1053
  - app/views/alchemy/admin/crop.html.erb
1030
- - app/views/alchemy/admin/dashboard/_locked_pages.html.erb
1031
- - app/views/alchemy/admin/dashboard/_recent_pages.html.erb
1032
- - app/views/alchemy/admin/dashboard/_sites.html.erb
1033
- - app/views/alchemy/admin/dashboard/_users.html.erb
1054
+ - app/views/alchemy/admin/dashboard/_dashboard.html.erb
1055
+ - app/views/alchemy/admin/dashboard/_left_column.html.erb
1056
+ - app/views/alchemy/admin/dashboard/_right_column.html.erb
1057
+ - app/views/alchemy/admin/dashboard/_top.html.erb
1034
1058
  - app/views/alchemy/admin/dashboard/help.html.erb
1035
1059
  - app/views/alchemy/admin/dashboard/index.html.erb
1036
1060
  - app/views/alchemy/admin/dashboard/info.html.erb
1061
+ - app/views/alchemy/admin/dashboard/widgets/_locked_pages.html.erb
1062
+ - app/views/alchemy/admin/dashboard/widgets/_recent_pages.html.erb
1063
+ - app/views/alchemy/admin/dashboard/widgets/_sites.html.erb
1064
+ - app/views/alchemy/admin/dashboard/widgets/_users.html.erb
1037
1065
  - app/views/alchemy/admin/elements/_add_nested_element_form.html.erb
1038
1066
  - app/views/alchemy/admin/elements/_element.html.erb
1039
1067
  - app/views/alchemy/admin/elements/_footer.html.erb
@@ -1053,7 +1081,6 @@ files:
1053
1081
  - app/views/alchemy/admin/ingredients/edit.html.erb
1054
1082
  - app/views/alchemy/admin/ingredients/update.turbo_stream.erb
1055
1083
  - app/views/alchemy/admin/languages/_form.html.erb
1056
- - app/views/alchemy/admin/languages/_language.html.erb
1057
1084
  - app/views/alchemy/admin/languages/_table.html.erb
1058
1085
  - app/views/alchemy/admin/languages/edit.html.erb
1059
1086
  - app/views/alchemy/admin/languages/index.html.erb
@@ -1095,14 +1122,12 @@ files:
1095
1122
  - app/views/alchemy/admin/pages/_publication_fields.html.erb
1096
1123
  - app/views/alchemy/admin/pages/_sitemap.html.erb
1097
1124
  - app/views/alchemy/admin/pages/_table.html.erb
1098
- - app/views/alchemy/admin/pages/_table_row.html.erb
1099
1125
  - app/views/alchemy/admin/pages/_toolbar.html.erb
1100
1126
  - app/views/alchemy/admin/pages/configure.html.erb
1101
1127
  - app/views/alchemy/admin/pages/edit.html.erb
1102
1128
  - app/views/alchemy/admin/pages/flush.js.erb
1103
1129
  - app/views/alchemy/admin/pages/index.html.erb
1104
1130
  - app/views/alchemy/admin/pages/info.html.erb
1105
- - app/views/alchemy/admin/pages/list/_table.html.erb
1106
1131
  - app/views/alchemy/admin/pages/locked.html.erb
1107
1132
  - app/views/alchemy/admin/pages/new.html.erb
1108
1133
  - app/views/alchemy/admin/pages/show.html.erb
@@ -1134,12 +1159,13 @@ files:
1134
1159
  - app/views/alchemy/admin/pictures/index.html.erb
1135
1160
  - app/views/alchemy/admin/pictures/index.js.erb
1136
1161
  - app/views/alchemy/admin/pictures/show.html.erb
1137
- - app/views/alchemy/admin/pictures/update.js.erb
1162
+ - app/views/alchemy/admin/pictures/update.turbo_stream.erb
1138
1163
  - app/views/alchemy/admin/resources/_filter.html.erb
1139
1164
  - app/views/alchemy/admin/resources/_filter_bar.html.erb
1140
1165
  - app/views/alchemy/admin/resources/_form.html.erb
1141
1166
  - app/views/alchemy/admin/resources/_per_page_select.html.erb
1142
1167
  - app/views/alchemy/admin/resources/_resource.html.erb
1168
+ - app/views/alchemy/admin/resources/_resource_table.html.erb
1143
1169
  - app/views/alchemy/admin/resources/_table.html.erb
1144
1170
  - app/views/alchemy/admin/resources/_table_header.html.erb
1145
1171
  - app/views/alchemy/admin/resources/_tag_list.html.erb
@@ -1153,7 +1179,6 @@ files:
1153
1179
  - app/views/alchemy/admin/sites/new.html.erb
1154
1180
  - app/views/alchemy/admin/styleguide/index.html.erb
1155
1181
  - app/views/alchemy/admin/tags/_radio_tag.html.erb
1156
- - app/views/alchemy/admin/tags/_tag.html.erb
1157
1182
  - app/views/alchemy/admin/tags/edit.html.erb
1158
1183
  - app/views/alchemy/admin/tags/index.html.erb
1159
1184
  - app/views/alchemy/admin/tags/new.html.erb
@@ -1161,12 +1186,12 @@ files:
1161
1186
  - app/views/alchemy/admin/uploader/_button.html.erb
1162
1187
  - app/views/alchemy/admin/uploader/_setup.html.erb
1163
1188
  - app/views/alchemy/attachments/show.html.erb
1189
+ - app/views/alchemy/base/403.html.erb
1164
1190
  - app/views/alchemy/base/500.html.erb
1165
1191
  - app/views/alchemy/base/error_notice.html.erb
1166
1192
  - app/views/alchemy/base/error_notice.js.erb
1167
1193
  - app/views/alchemy/base/permission_denied.js.erb
1168
1194
  - app/views/alchemy/base/redirect.js.erb
1169
- - app/views/alchemy/base/update.js.erb
1170
1195
  - app/views/alchemy/breadcrumb/_page.html.erb
1171
1196
  - app/views/alchemy/breadcrumb/_separator.html.erb
1172
1197
  - app/views/alchemy/breadcrumb/_wrapper.html.erb
@@ -1203,6 +1228,7 @@ files:
1203
1228
  - app/views/alchemy/ingredients/_video_view.html.erb
1204
1229
  - app/views/alchemy/ingredients/shared/_anchor.html.erb
1205
1230
  - app/views/alchemy/ingredients/shared/_link_tools.html.erb
1231
+ - app/views/alchemy/ingredients/shared/_picture_css_class.html.erb
1206
1232
  - app/views/alchemy/ingredients/shared/_picture_tools.html.erb
1207
1233
  - app/views/alchemy/language_links/_language.html.erb
1208
1234
  - app/views/alchemy/language_links/_spacer.html.erb
@@ -1229,6 +1255,7 @@ files:
1229
1255
  - bin/rspec
1230
1256
  - bin/setup
1231
1257
  - bin/start
1258
+ - bun.lockb
1232
1259
  - bundles/shoelace.js
1233
1260
  - bundles/tinymce.js
1234
1261
  - config/alchemy/config.yml
@@ -1321,6 +1348,7 @@ files:
1321
1348
  - lib/alchemy/test_support/shared_uploader_examples.rb
1322
1349
  - lib/alchemy/tinymce.rb
1323
1350
  - lib/alchemy/upgrader.rb
1351
+ - lib/alchemy/upgrader/seven_point_three.rb
1324
1352
  - lib/alchemy/upgrader/seven_point_zero.rb
1325
1353
  - lib/alchemy/upgrader/tasks/.keep
1326
1354
  - lib/alchemy/version.rb
@@ -1338,10 +1366,10 @@ files:
1338
1366
  - lib/generators/alchemy/install/files/_standard.html.erb
1339
1367
  - lib/generators/alchemy/install/files/alchemy.en.yml
1340
1368
  - lib/generators/alchemy/install/files/alchemy_admin.js
1341
- - lib/generators/alchemy/install/files/all.css
1342
1369
  - lib/generators/alchemy/install/files/all.js
1343
1370
  - lib/generators/alchemy/install/files/application.html.erb
1344
- - lib/generators/alchemy/install/files/article.scss
1371
+ - lib/generators/alchemy/install/files/article.css
1372
+ - lib/generators/alchemy/install/files/custom.css
1345
1373
  - lib/generators/alchemy/install/install_generator.rb
1346
1374
  - lib/generators/alchemy/install/templates/dragonfly.rb.tt
1347
1375
  - lib/generators/alchemy/install/templates/elements.yml.tt
@@ -1375,14 +1403,13 @@ files:
1375
1403
  - lib/tasks/alchemy/tidy.rake
1376
1404
  - lib/tasks/alchemy/upgrade.rake
1377
1405
  - lib/tasks/alchemy/usage.rake
1378
- - package.json
1379
1406
  - rollup.config.mjs
1380
1407
  - vendor/assets/fonts/remixicon.symbol.svg
1381
1408
  - vendor/assets/images/Jcrop.gif
1382
1409
  - vendor/assets/javascripts/jquery_plugins/jquery.Jcrop.min.js
1383
1410
  - vendor/assets/javascripts/jquery_plugins/select2.js
1384
- - vendor/assets/stylesheets/alchemy_admin/select2.scss
1385
- - vendor/assets/stylesheets/jquery.Jcrop.min.scss
1411
+ - vendor/assets/stylesheets/alchemy_admin/select2.css
1412
+ - vendor/assets/stylesheets/jquery.Jcrop.min.css
1386
1413
  - vendor/assets/stylesheets/tinymce/skins/content/default/content.min.css
1387
1414
  - vendor/javascript/clipboard.min.js
1388
1415
  - vendor/javascript/flatpickr.min.js
@@ -1424,7 +1451,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1424
1451
  requirements:
1425
1452
  - - ">="
1426
1453
  - !ruby/object:Gem::Version
1427
- version: 3.0.0
1454
+ version: 3.1.0
1428
1455
  required_rubygems_version: !ruby/object:Gem::Requirement
1429
1456
  requirements:
1430
1457
  - - ">="
@@ -1432,7 +1459,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1432
1459
  version: '0'
1433
1460
  requirements:
1434
1461
  - ImageMagick (libmagick), v6.6 or greater.
1435
- rubygems_version: 3.6.5
1462
+ rubygems_version: 3.5.16
1463
+ signing_key:
1436
1464
  specification_version: 4
1437
1465
  summary: A powerful, userfriendly and flexible CMS for Rails
1438
1466
  test_files: []
Binary file
@@ -1,3 +0,0 @@
1
- .label {
2
- @include label-base($margin: 0, $padding: 0 2 * $default-padding);
3
- }