power-compass 0.2.2 → 0.3.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 (45) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +25 -0
  3. data/app/assets/stylesheets/compass/layout.scss +41 -0
  4. data/app/assets/stylesheets/compass/navigation/_all.scss +6 -0
  5. data/app/assets/stylesheets/compass/navigation/_header.scss +168 -0
  6. data/app/assets/stylesheets/compass/navigation/_label.scss +31 -0
  7. data/app/assets/stylesheets/compass/navigation/_main-page-content.scss +61 -0
  8. data/app/assets/stylesheets/compass/navigation/_recent-crumbs.scss +17 -0
  9. data/app/assets/stylesheets/compass/navigation/_sidebar.scss +123 -0
  10. data/app/assets/stylesheets/compass/navigation/_spinner.scss +27 -0
  11. data/app/components/compass/application_component.rb +8 -0
  12. data/app/components/compass/layout/banner.html.erb +3 -0
  13. data/app/components/compass/layout/banner.rb +14 -0
  14. data/app/components/compass/layout/breadcrumb_item.html.erb +20 -0
  15. data/app/components/compass/layout/breadcrumb_item.rb +19 -0
  16. data/app/components/compass/layout/breadcrumbs.html.erb +14 -0
  17. data/app/components/compass/layout/breadcrumbs.rb +9 -0
  18. data/app/components/compass/layout/content_container_component.html.erb +3 -0
  19. data/app/components/compass/layout/content_container_component.rb +9 -0
  20. data/app/components/compass/layout/header/dropdown_menu.html.erb +15 -0
  21. data/app/components/compass/layout/header/dropdown_menu.rb +36 -0
  22. data/app/components/compass/layout/header/logo.html.erb +8 -0
  23. data/app/components/compass/layout/header/logo.rb +17 -0
  24. data/app/components/compass/layout/header/search_input.html.erb +1 -0
  25. data/app/components/compass/layout/header/search_input.rb +11 -0
  26. data/app/components/compass/layout/header/tasks_menu.html.erb +3 -0
  27. data/app/components/compass/layout/header/tasks_menu.rb +12 -0
  28. data/app/components/compass/layout/header.html.erb +23 -0
  29. data/app/components/compass/layout/header.rb +32 -0
  30. data/app/components/compass/layout/impersonation_banner.html.erb +3 -0
  31. data/app/components/compass/layout/impersonation_banner.rb +9 -0
  32. data/app/components/compass/layout/sidebar.html.erb +5 -0
  33. data/app/components/compass/layout/sidebar.rb +9 -0
  34. data/app/components/compass/layout.html.erb +51 -0
  35. data/app/components/compass/layout.rb +44 -0
  36. data/app/components/concerns/compass/config_props.rb +20 -0
  37. data/app/controllers/compass/application_controller.rb +6 -11
  38. data/app/controllers/compass/info_controller.rb +12 -0
  39. data/config/routes.rb +2 -0
  40. data/lib/compass/configuration.rb +1 -0
  41. data/lib/compass/engine.rb +31 -0
  42. data/lib/compass/search/provider.rb +1 -4
  43. data/lib/compass/version.rb +1 -1
  44. data/vendor/assets/stylesheets/compass/layout.css +843 -0
  45. metadata +57 -1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: power-compass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Palhares
@@ -29,6 +29,26 @@ dependencies:
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
31
  version: '8.0'
32
+ - !ruby/object:Gem::Dependency
33
+ name: view_component
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '2.0'
39
+ - - "<"
40
+ - !ruby/object:Gem::Version
41
+ version: '4.0'
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '2.0'
49
+ - - "<"
50
+ - !ruby/object:Gem::Version
51
+ version: '4.0'
32
52
  description: Compass provides backend services for Compass:UI
33
53
  email:
34
54
  - chjunior@gmail.com
@@ -38,7 +58,42 @@ extra_rdoc_files: []
38
58
  files:
39
59
  - MIT-LICENSE
40
60
  - Rakefile
61
+ - app/assets/stylesheets/compass/layout.scss
62
+ - app/assets/stylesheets/compass/navigation/_all.scss
63
+ - app/assets/stylesheets/compass/navigation/_header.scss
64
+ - app/assets/stylesheets/compass/navigation/_label.scss
65
+ - app/assets/stylesheets/compass/navigation/_main-page-content.scss
66
+ - app/assets/stylesheets/compass/navigation/_recent-crumbs.scss
67
+ - app/assets/stylesheets/compass/navigation/_sidebar.scss
68
+ - app/assets/stylesheets/compass/navigation/_spinner.scss
69
+ - app/components/compass/application_component.rb
70
+ - app/components/compass/layout.html.erb
71
+ - app/components/compass/layout.rb
72
+ - app/components/compass/layout/banner.html.erb
73
+ - app/components/compass/layout/banner.rb
74
+ - app/components/compass/layout/breadcrumb_item.html.erb
75
+ - app/components/compass/layout/breadcrumb_item.rb
76
+ - app/components/compass/layout/breadcrumbs.html.erb
77
+ - app/components/compass/layout/breadcrumbs.rb
78
+ - app/components/compass/layout/content_container_component.html.erb
79
+ - app/components/compass/layout/content_container_component.rb
80
+ - app/components/compass/layout/header.html.erb
81
+ - app/components/compass/layout/header.rb
82
+ - app/components/compass/layout/header/dropdown_menu.html.erb
83
+ - app/components/compass/layout/header/dropdown_menu.rb
84
+ - app/components/compass/layout/header/logo.html.erb
85
+ - app/components/compass/layout/header/logo.rb
86
+ - app/components/compass/layout/header/search_input.html.erb
87
+ - app/components/compass/layout/header/search_input.rb
88
+ - app/components/compass/layout/header/tasks_menu.html.erb
89
+ - app/components/compass/layout/header/tasks_menu.rb
90
+ - app/components/compass/layout/impersonation_banner.html.erb
91
+ - app/components/compass/layout/impersonation_banner.rb
92
+ - app/components/compass/layout/sidebar.html.erb
93
+ - app/components/compass/layout/sidebar.rb
94
+ - app/components/concerns/compass/config_props.rb
41
95
  - app/controllers/compass/application_controller.rb
96
+ - app/controllers/compass/info_controller.rb
42
97
  - app/controllers/compass/menu_controller.rb
43
98
  - app/controllers/compass/notification_controller.rb
44
99
  - app/controllers/compass/search_controller.rb
@@ -67,6 +122,7 @@ files:
67
122
  - lib/compass/search/view_context.rb
68
123
  - lib/compass/version.rb
69
124
  - lib/tasks/compass_tasks.rake
125
+ - vendor/assets/stylesheets/compass/layout.css
70
126
  homepage: https://powerhrg.com
71
127
  licenses:
72
128
  - MIT