express_admin 1.5.0 → 1.6.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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/express_admin/components/_command_button.sass +18 -0
- data/app/assets/stylesheets/express_admin/components/_pane.sass +0 -7
- data/app/assets/stylesheets/express_admin/screen.sass +2 -0
- data/app/assets/stylesheets/express_admin/shared/_tables.sass +9 -9
- data/app/components/express_admin/command_button.rb +42 -0
- data/app/components/express_admin/command_button_list.rb +32 -0
- data/app/components/express_admin/smart_table.rb +2 -0
- data/app/components/express_admin/widget_box.rb +2 -2
- data/app/views/layouts/express_admin/admin.html.et +2 -2
- data/lib/express_admin/commandable.rb +27 -5
- data/lib/express_admin/commands.rb +7 -1
- data/lib/express_admin/standard_actions.rb +12 -3
- data/lib/express_admin/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/test/components/command_button_test.rb +43 -0
- data/vendor/gems/express_templates/express_templates-0.10.1.gem +0 -0
- data/vendor/gems/express_templates/lib/express_templates/components/base.rb +4 -0
- data/vendor/gems/express_templates/lib/express_templates/components/capabilities/resourceful.rb +10 -6
- data/vendor/gems/express_templates/lib/express_templates/version.rb +1 -1
- data/vendor/gems/express_templates/test/components/forms/checkbox_test.rb +3 -0
- data/vendor/gems/express_templates/test/dummy/log/test.log +3222 -0
- metadata +7 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: express_admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Talcott Smith
|
@@ -355,6 +355,7 @@ files:
|
|
355
355
|
- app/assets/javascripts/express_admin/utility.js
|
356
356
|
- app/assets/stylesheets/dataTables/dataTables.foundation.css.erb
|
357
357
|
- app/assets/stylesheets/express_admin.css
|
358
|
+
- app/assets/stylesheets/express_admin/components/_command_button.sass
|
358
359
|
- app/assets/stylesheets/express_admin/components/_definition.sass
|
359
360
|
- app/assets/stylesheets/express_admin/components/_empty_state.sass
|
360
361
|
- app/assets/stylesheets/express_admin/components/_h_box.sass
|
@@ -394,6 +395,8 @@ files:
|
|
394
395
|
- app/assets/stylesheets/express_admin/shared/_trees.sass
|
395
396
|
- app/assets/stylesheets/express_admin/shared/_widgets.sass
|
396
397
|
- app/assets/stylesheets/ionicons/ionicons.scss
|
398
|
+
- app/components/express_admin/command_button.rb
|
399
|
+
- app/components/express_admin/command_button_list.rb
|
397
400
|
- app/components/express_admin/definition_list.rb
|
398
401
|
- app/components/express_admin/definition_table.rb
|
399
402
|
- app/components/express_admin/flash_messages.rb
|
@@ -517,6 +520,7 @@ files:
|
|
517
520
|
- test/dummy/public/422.html
|
518
521
|
- test/dummy/public/500.html
|
519
522
|
- test/dummy/public/favicon.ico
|
523
|
+
- test/dummy/test/components/command_button_test.rb
|
520
524
|
- test/dummy/test/components/definition_list_test.rb
|
521
525
|
- test/dummy/test/components/definition_table_test.rb
|
522
526
|
- test/dummy/test/components/flash_messages_test.rb
|
@@ -573,6 +577,7 @@ files:
|
|
573
577
|
- vendor/gems/express_templates/README.md
|
574
578
|
- vendor/gems/express_templates/Rakefile
|
575
579
|
- vendor/gems/express_templates/express_templates-0.10.0.gem
|
580
|
+
- vendor/gems/express_templates/express_templates-0.10.1.gem
|
576
581
|
- vendor/gems/express_templates/express_templates-0.7.0.gem
|
577
582
|
- vendor/gems/express_templates/express_templates-0.7.1.gem
|
578
583
|
- vendor/gems/express_templates/express_templates-0.8.0.gem
|
@@ -858,6 +863,7 @@ test_files:
|
|
858
863
|
- test/dummy/public/favicon.ico
|
859
864
|
- test/dummy/Rakefile
|
860
865
|
- test/dummy/README.rdoc
|
866
|
+
- test/dummy/test/components/command_button_test.rb
|
861
867
|
- test/dummy/test/components/definition_list_test.rb
|
862
868
|
- test/dummy/test/components/definition_table_test.rb
|
863
869
|
- test/dummy/test/components/flash_messages_test.rb
|