express_ui 0.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +38 -0
- data/Rakefile +37 -0
- data/app/assets/config/express_ui_manifest.js +2 -0
- data/app/assets/javascripts/express_ui/application.js +1 -0
- data/app/assets/javascripts/express_ui/copy_code.js +63 -0
- data/app/assets/javascripts/express_ui/search.js +103 -0
- data/app/assets/javascripts/express_ui/styleguide.js +90 -0
- data/app/assets/stylesheets/express_ui/atoms/_animations.sass +35 -0
- data/app/assets/stylesheets/express_ui/atoms/_buttons.sass +119 -0
- data/app/assets/stylesheets/express_ui/atoms/_headings.sass +51 -0
- data/app/assets/stylesheets/express_ui/atoms/_icons.sass +3 -0
- data/app/assets/stylesheets/express_ui/atoms/_images.sass +37 -0
- data/app/assets/stylesheets/express_ui/atoms/_media_queries.sass +27 -0
- data/app/assets/stylesheets/express_ui/atoms/_mixins.sass +33 -0
- data/app/assets/stylesheets/express_ui/atoms/_reset.sass +11 -0
- data/app/assets/stylesheets/express_ui/atoms/_typography.sass +167 -0
- data/app/assets/stylesheets/express_ui/atoms/_variables.sass +52 -0
- data/app/assets/stylesheets/express_ui/molecules/_button_group.sass +54 -0
- data/app/assets/stylesheets/express_ui/molecules/_container.sass +29 -0
- data/app/assets/stylesheets/express_ui/molecules/_flash_messages.sass +56 -0
- data/app/assets/stylesheets/express_ui/molecules/_form_groups.sass +96 -0
- data/app/assets/stylesheets/express_ui/molecules/_forms.sass +159 -0
- data/app/assets/stylesheets/express_ui/molecules/_lists.sass +56 -0
- data/app/assets/stylesheets/express_ui/molecules/_nav.sass +85 -0
- data/app/assets/stylesheets/express_ui/molecules/_tables.sass +77 -0
- data/app/assets/stylesheets/express_ui/molecules/_tabs.sass +23 -0
- data/app/assets/stylesheets/express_ui/organisms/_header.sass +29 -0
- data/app/assets/stylesheets/express_ui/organisms/_sidebar.sass +113 -0
- data/app/assets/stylesheets/express_ui/style.sass +31 -0
- data/app/assets/stylesheets/express_ui/styleguide.sass +200 -0
- data/app/assets/stylesheets/express_ui/templates/_content_sidebar.sass +31 -0
- data/app/assets/stylesheets/express_ui/templates/_full_width.sass +5 -0
- data/app/assets/stylesheets/express_ui/templates/_half_width.sass +8 -0
- data/app/assets/stylesheets/express_ui/templates/_master_detail.sass +50 -0
- data/app/components/code_demo.rb +31 -0
- data/app/controllers/express_ui/about_controller.rb +10 -0
- data/app/controllers/express_ui/application_controller.rb +5 -0
- data/app/controllers/express_ui/styleguide_controller.rb +10 -0
- data/app/controllers/express_ui/templates_controller.rb +26 -0
- data/app/controllers/express_ui/uicomponents_controller.rb +26 -0
- data/app/helpers/express_ui/application_helper.rb +28 -0
- data/app/jobs/express_ui/application_job.rb +4 -0
- data/app/mailers/express_ui/application_mailer.rb +6 -0
- data/app/models/express_ui/application_record.rb +5 -0
- data/app/views/express_ui/atoms/_animations.html.erb +33 -0
- data/app/views/express_ui/atoms/_buttons.html.erb +129 -0
- data/app/views/express_ui/atoms/_headings.html.erb +3 -0
- data/app/views/express_ui/atoms/_icons.html.erb +13 -0
- data/app/views/express_ui/atoms/_mixins.html.erb +6 -0
- data/app/views/express_ui/atoms/_typography.html.erb +201 -0
- data/app/views/express_ui/atoms/_variables.html.erb +50 -0
- data/app/views/express_ui/molecules/_button_group.html.erb +90 -0
- data/app/views/express_ui/molecules/_container.html.erb +32 -0
- data/app/views/express_ui/molecules/_flash_messages.html.erb +49 -0
- data/app/views/express_ui/molecules/_form_group_horizontal.html.erb +14 -0
- data/app/views/express_ui/molecules/_form_group_inline.html.erb +1 -0
- data/app/views/express_ui/molecules/_form_group_single_line.html.erb +9 -0
- data/app/views/express_ui/molecules/_form_groups.html.erb +69 -0
- data/app/views/express_ui/molecules/_forms.html.erb +209 -0
- data/app/views/express_ui/molecules/_forms_checkbox.html.erb +20 -0
- data/app/views/express_ui/molecules/_forms_radio.html.erb +12 -0
- data/app/views/express_ui/molecules/_forms_select.html.erb +11 -0
- data/app/views/express_ui/molecules/_nav.html.erb +11 -0
- data/app/views/express_ui/molecules/_nav_mega_menu.html.erb +74 -0
- data/app/views/express_ui/molecules/_table.html.erb +93 -0
- data/app/views/express_ui/molecules/_table_with_filtering.html.erb +55 -0
- data/app/views/express_ui/organisms/_header.html.erb +24 -0
- data/app/views/express_ui/shared/_header.html.erb +10 -0
- data/app/views/express_ui/shared/_search_box.html.erb +6 -0
- data/app/views/express_ui/shared/_sidebar_left.html.erb +4 -0
- data/app/views/express_ui/shared/_sidebar_right.html.erb +5 -0
- data/app/views/express_ui/styleguide/about.html.erb +22 -0
- data/app/views/express_ui/styleguide/index.html.erb +79 -0
- data/app/views/express_ui/templates/_header.html.erb +15 -0
- data/app/views/express_ui/templates/_templates.html.erb +57 -0
- data/app/views/express_ui/templates/content_and_sidebar.html.erb +32 -0
- data/app/views/express_ui/templates/content_and_sidebar_fixed.html.erb +34 -0
- data/app/views/express_ui/templates/full_width.html.erb +25 -0
- data/app/views/express_ui/templates/half_width.html.erb +25 -0
- data/app/views/express_ui/templates/master_detail.html.erb +41 -0
- data/app/views/express_ui/templates/master_detail_fixed.html.erb +36 -0
- data/app/views/express_ui/uicomponents/_buttons.html.et +10 -0
- data/app/views/express_ui/uicomponents/_flash_message.html.et +19 -0
- data/app/views/express_ui/uicomponents/_forms.html.et +118 -0
- data/app/views/express_ui/uicomponents/_heading.html.et +24 -0
- data/app/views/express_ui/uicomponents/_icons.html.et +35 -0
- data/app/views/express_ui/uicomponents/_layout.html.et +47 -0
- data/app/views/express_ui/uicomponents/_lists.html.et +9 -0
- data/app/views/express_ui/uicomponents/_login.html.erb +15 -0
- data/app/views/express_ui/uicomponents/_nav.html.et +18 -0
- data/app/views/express_ui/uicomponents/_pages.html.et +22 -0
- data/app/views/express_ui/uicomponents/_panel.html.et +33 -0
- data/app/views/express_ui/uicomponents/_popup.html.et +19 -0
- data/app/views/express_ui/uicomponents/_register.html.erb +14 -0
- data/app/views/express_ui/uicomponents/_sidebar.html.et +8 -0
- data/app/views/express_ui/uicomponents/_table.html.et +29 -0
- data/app/views/express_ui/uicomponents/_widget_box.html.et +14 -0
- data/app/views/express_ui/uicomponents/index.html.erb +55 -0
- data/app/views/layouts/express_ui/styleguide.html.erb +20 -0
- data/config/routes.rb +12 -0
- data/lib/express_ui.rb +5 -0
- data/lib/express_ui/engine.rb +12 -0
- data/lib/express_ui/version.rb +3 -0
- data/lib/tasks/express_ui_tasks.rake +4 -0
- metadata +251 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
h3 { 'smart_table'}
|
2
|
+
section {
|
3
|
+
|
4
|
+
code_demo {
|
5
|
+
%Q{
|
6
|
+
smart_table(
|
7
|
+
columns: {
|
8
|
+
"Column 1" => "Column 2"
|
9
|
+
}
|
10
|
+
)
|
11
|
+
}
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
h3 { 'definition_table()' }
|
16
|
+
|
17
|
+
section {
|
18
|
+
code_demo {
|
19
|
+
%Q{
|
20
|
+
definition_table()
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<%= render "express_ui/shared/header" %>
|
2
|
+
<div class="ae-template-content-sidebar-fixed">
|
3
|
+
<%= render "express_ui/shared/sidebar_left" %>
|
4
|
+
|
5
|
+
<div class="ae-content content">
|
6
|
+
<%= render "express_ui/shared/search_box" %>
|
7
|
+
|
8
|
+
<h1>UI Components</h1>
|
9
|
+
|
10
|
+
<div class="js-anchorific-content">
|
11
|
+
<h2>Buttons</h2>
|
12
|
+
|
13
|
+
<%= render "express_ui/uicomponents/buttons" %>
|
14
|
+
|
15
|
+
<h2>Forms</h2>
|
16
|
+
<%= render "express_ui/uicomponents/forms" %>
|
17
|
+
<h2>Flash Messages</h2>
|
18
|
+
<%= render "express_ui/uicomponents/flash_message" %>
|
19
|
+
|
20
|
+
<h2>Heading</h2>
|
21
|
+
<%= render "express_ui/uicomponents/heading" %>
|
22
|
+
|
23
|
+
<h2>Icons</h2>
|
24
|
+
<%= render "express_ui/uicomponents/icons" %>
|
25
|
+
|
26
|
+
<h2>Layout</h2>
|
27
|
+
<%= render "express_ui/uicomponents/layout" %>
|
28
|
+
|
29
|
+
<h2>Lists</h2>
|
30
|
+
<%= render "express_ui/uicomponents/lists" %>
|
31
|
+
|
32
|
+
<h2>Nav</h2>
|
33
|
+
<%= render "express_ui/uicomponents/nav" %>
|
34
|
+
|
35
|
+
<h2>Panel</h2>
|
36
|
+
<%= render "express_ui/uicomponents/panel" %>
|
37
|
+
|
38
|
+
<h2>Popup</h2>
|
39
|
+
<%= render "express_ui/uicomponents/popup" %>
|
40
|
+
|
41
|
+
<h2>Tables</h2>
|
42
|
+
<%= render "express_ui/uicomponents/table" %>
|
43
|
+
<h2>Widget Box</h2>
|
44
|
+
|
45
|
+
<%= render "express_ui/uicomponents/widget_box" %>
|
46
|
+
|
47
|
+
<h2>Templates</h2>
|
48
|
+
<%= render "express_ui/templates/templates" %>
|
49
|
+
|
50
|
+
<h2>Pages</h2>
|
51
|
+
<%= render "express_ui/uicomponents/pages" %>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
</div>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<html>
|
2
|
+
<!--[if IE 7]><html class='no-js ie7 no-freight base #{yield :document_class}' data-topic="#{yield :topic}" lang='en'><![endif]-->
|
3
|
+
<!--[if IE 8]><html class='no-js ie8 no-freight base #{yield :document_class}' data-topic="#{yield :topic}" lang='en'><![endif]-->
|
4
|
+
<!--[if IE 9]><html class='no-js ie9 no-freight base #{yield :document_class}' data-topic="#{yield :topic}" lang='en'><![endif]-->
|
5
|
+
<!--[if gt IE 9]><!--><html class='no-js no-freight base #{yield :document_class}' data-topic="#{yield :topic}" lang='en'><!--<![endif]-->
|
6
|
+
<head>
|
7
|
+
<link href="https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i" rel="stylesheet">
|
8
|
+
<meta charset="utf-8"/>
|
9
|
+
<meta content="AppExpress" name="author"/>
|
10
|
+
<title>AppExpress Express UI</title>
|
11
|
+
<%= csrf_meta_tags %>
|
12
|
+
<%= stylesheet_link_tag 'express_ui/styleguide', :media => "all" %>
|
13
|
+
<%= javascript_include_tag 'express_ui/application', 'data-turbolinks-track': 'reload' %>
|
14
|
+
<%= javascript_include_tag 'https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js' %>
|
15
|
+
</head>
|
16
|
+
|
17
|
+
<body>
|
18
|
+
<%= yield %>
|
19
|
+
</body>
|
20
|
+
</head>
|
data/config/routes.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
ExpressUi::Engine.routes.draw do
|
2
|
+
root to: "styleguide#index", as: :styleguide
|
3
|
+
get '/ui_components', to: 'uicomponents#index', as: :uicomponents
|
4
|
+
get '/about', to: 'styleguide#about', as: :about
|
5
|
+
|
6
|
+
get '/ui_components/templates/master-detail', to: 'templates#master_detail'
|
7
|
+
get '/ui_components/templates/master-detail-fixed', to: 'templates#master_detail_fixed'
|
8
|
+
get '/ui_components/templates/content-and-sidebar', to: 'templates#content_and_sidebar'
|
9
|
+
get '/ui_components/templates/content-and-sidebar-fixed', to: 'templates#content_and_sidebar_fixed'
|
10
|
+
get '/ui_components/templates/half-width', to: 'templates#half_width'
|
11
|
+
get '/ui_components/templates/full-width', to: 'templates#full_width'
|
12
|
+
end
|
data/lib/express_ui.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'express_templates'
|
2
|
+
|
3
|
+
components = Dir.glob(File.join(File.dirname(__FILE__), '..', '..', 'app', 'components', '**', '*.rb'))
|
4
|
+
components.sort!
|
5
|
+
components.each {|component| require component }
|
6
|
+
|
7
|
+
module ExpressUi
|
8
|
+
class Engine < ::Rails::Engine
|
9
|
+
require 'jquery-rails'
|
10
|
+
isolate_namespace ExpressUi
|
11
|
+
end
|
12
|
+
end
|
metadata
ADDED
@@ -0,0 +1,251 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: express_ui
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0.rc1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Steven Talcott Smith
|
8
|
+
- Nestor G Pestelos Jr
|
9
|
+
- Kindred Pasana
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2017-03-28 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: express_templates
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - '='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.11.16.rc1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - '='
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: 0.11.16.rc1
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: rails
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '5.0'
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '5.0'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: sass-rails
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
type: :runtime
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: jquery-rails
|
59
|
+
requirement: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
type: :runtime
|
65
|
+
prerelease: false
|
66
|
+
version_requirements: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: font-awesome-sass
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - "~>"
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '4.7'
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - "~>"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '4.7'
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: byebug
|
87
|
+
requirement: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
type: :development
|
93
|
+
prerelease: false
|
94
|
+
version_requirements: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
- !ruby/object:Gem::Dependency
|
100
|
+
name: sqlite3
|
101
|
+
requirement: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
type: :development
|
107
|
+
prerelease: false
|
108
|
+
version_requirements: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
description: User interface library for AppExpress components (https://appexpress.io)
|
114
|
+
email:
|
115
|
+
- steve@aelogica.com
|
116
|
+
- nestor@aelogica.com
|
117
|
+
- kindred@aelogica.com
|
118
|
+
executables: []
|
119
|
+
extensions: []
|
120
|
+
extra_rdoc_files: []
|
121
|
+
files:
|
122
|
+
- MIT-LICENSE
|
123
|
+
- README.md
|
124
|
+
- Rakefile
|
125
|
+
- app/assets/config/express_ui_manifest.js
|
126
|
+
- app/assets/javascripts/express_ui/application.js
|
127
|
+
- app/assets/javascripts/express_ui/copy_code.js
|
128
|
+
- app/assets/javascripts/express_ui/search.js
|
129
|
+
- app/assets/javascripts/express_ui/styleguide.js
|
130
|
+
- app/assets/stylesheets/express_ui/atoms/_animations.sass
|
131
|
+
- app/assets/stylesheets/express_ui/atoms/_buttons.sass
|
132
|
+
- app/assets/stylesheets/express_ui/atoms/_headings.sass
|
133
|
+
- app/assets/stylesheets/express_ui/atoms/_icons.sass
|
134
|
+
- app/assets/stylesheets/express_ui/atoms/_images.sass
|
135
|
+
- app/assets/stylesheets/express_ui/atoms/_media_queries.sass
|
136
|
+
- app/assets/stylesheets/express_ui/atoms/_mixins.sass
|
137
|
+
- app/assets/stylesheets/express_ui/atoms/_reset.sass
|
138
|
+
- app/assets/stylesheets/express_ui/atoms/_typography.sass
|
139
|
+
- app/assets/stylesheets/express_ui/atoms/_variables.sass
|
140
|
+
- app/assets/stylesheets/express_ui/molecules/_button_group.sass
|
141
|
+
- app/assets/stylesheets/express_ui/molecules/_container.sass
|
142
|
+
- app/assets/stylesheets/express_ui/molecules/_flash_messages.sass
|
143
|
+
- app/assets/stylesheets/express_ui/molecules/_form_groups.sass
|
144
|
+
- app/assets/stylesheets/express_ui/molecules/_forms.sass
|
145
|
+
- app/assets/stylesheets/express_ui/molecules/_lists.sass
|
146
|
+
- app/assets/stylesheets/express_ui/molecules/_nav.sass
|
147
|
+
- app/assets/stylesheets/express_ui/molecules/_tables.sass
|
148
|
+
- app/assets/stylesheets/express_ui/molecules/_tabs.sass
|
149
|
+
- app/assets/stylesheets/express_ui/organisms/_header.sass
|
150
|
+
- app/assets/stylesheets/express_ui/organisms/_sidebar.sass
|
151
|
+
- app/assets/stylesheets/express_ui/style.sass
|
152
|
+
- app/assets/stylesheets/express_ui/styleguide.sass
|
153
|
+
- app/assets/stylesheets/express_ui/templates/_content_sidebar.sass
|
154
|
+
- app/assets/stylesheets/express_ui/templates/_full_width.sass
|
155
|
+
- app/assets/stylesheets/express_ui/templates/_half_width.sass
|
156
|
+
- app/assets/stylesheets/express_ui/templates/_master_detail.sass
|
157
|
+
- app/components/code_demo.rb
|
158
|
+
- app/controllers/express_ui/about_controller.rb
|
159
|
+
- app/controllers/express_ui/application_controller.rb
|
160
|
+
- app/controllers/express_ui/styleguide_controller.rb
|
161
|
+
- app/controllers/express_ui/templates_controller.rb
|
162
|
+
- app/controllers/express_ui/uicomponents_controller.rb
|
163
|
+
- app/helpers/express_ui/application_helper.rb
|
164
|
+
- app/jobs/express_ui/application_job.rb
|
165
|
+
- app/mailers/express_ui/application_mailer.rb
|
166
|
+
- app/models/express_ui/application_record.rb
|
167
|
+
- app/views/express_ui/atoms/_animations.html.erb
|
168
|
+
- app/views/express_ui/atoms/_buttons.html.erb
|
169
|
+
- app/views/express_ui/atoms/_headings.html.erb
|
170
|
+
- app/views/express_ui/atoms/_icons.html.erb
|
171
|
+
- app/views/express_ui/atoms/_mixins.html.erb
|
172
|
+
- app/views/express_ui/atoms/_typography.html.erb
|
173
|
+
- app/views/express_ui/atoms/_variables.html.erb
|
174
|
+
- app/views/express_ui/molecules/_button_group.html.erb
|
175
|
+
- app/views/express_ui/molecules/_container.html.erb
|
176
|
+
- app/views/express_ui/molecules/_flash_messages.html.erb
|
177
|
+
- app/views/express_ui/molecules/_form_group_horizontal.html.erb
|
178
|
+
- app/views/express_ui/molecules/_form_group_inline.html.erb
|
179
|
+
- app/views/express_ui/molecules/_form_group_single_line.html.erb
|
180
|
+
- app/views/express_ui/molecules/_form_groups.html.erb
|
181
|
+
- app/views/express_ui/molecules/_forms.html.erb
|
182
|
+
- app/views/express_ui/molecules/_forms_checkbox.html.erb
|
183
|
+
- app/views/express_ui/molecules/_forms_radio.html.erb
|
184
|
+
- app/views/express_ui/molecules/_forms_select.html.erb
|
185
|
+
- app/views/express_ui/molecules/_nav.html.erb
|
186
|
+
- app/views/express_ui/molecules/_nav_mega_menu.html.erb
|
187
|
+
- app/views/express_ui/molecules/_table.html.erb
|
188
|
+
- app/views/express_ui/molecules/_table_with_filtering.html.erb
|
189
|
+
- app/views/express_ui/organisms/_header.html.erb
|
190
|
+
- app/views/express_ui/shared/_header.html.erb
|
191
|
+
- app/views/express_ui/shared/_search_box.html.erb
|
192
|
+
- app/views/express_ui/shared/_sidebar_left.html.erb
|
193
|
+
- app/views/express_ui/shared/_sidebar_right.html.erb
|
194
|
+
- app/views/express_ui/styleguide/about.html.erb
|
195
|
+
- app/views/express_ui/styleguide/index.html.erb
|
196
|
+
- app/views/express_ui/templates/_header.html.erb
|
197
|
+
- app/views/express_ui/templates/_templates.html.erb
|
198
|
+
- app/views/express_ui/templates/content_and_sidebar.html.erb
|
199
|
+
- app/views/express_ui/templates/content_and_sidebar_fixed.html.erb
|
200
|
+
- app/views/express_ui/templates/full_width.html.erb
|
201
|
+
- app/views/express_ui/templates/half_width.html.erb
|
202
|
+
- app/views/express_ui/templates/master_detail.html.erb
|
203
|
+
- app/views/express_ui/templates/master_detail_fixed.html.erb
|
204
|
+
- app/views/express_ui/uicomponents/_buttons.html.et
|
205
|
+
- app/views/express_ui/uicomponents/_flash_message.html.et
|
206
|
+
- app/views/express_ui/uicomponents/_forms.html.et
|
207
|
+
- app/views/express_ui/uicomponents/_heading.html.et
|
208
|
+
- app/views/express_ui/uicomponents/_icons.html.et
|
209
|
+
- app/views/express_ui/uicomponents/_layout.html.et
|
210
|
+
- app/views/express_ui/uicomponents/_lists.html.et
|
211
|
+
- app/views/express_ui/uicomponents/_login.html.erb
|
212
|
+
- app/views/express_ui/uicomponents/_nav.html.et
|
213
|
+
- app/views/express_ui/uicomponents/_pages.html.et
|
214
|
+
- app/views/express_ui/uicomponents/_panel.html.et
|
215
|
+
- app/views/express_ui/uicomponents/_popup.html.et
|
216
|
+
- app/views/express_ui/uicomponents/_register.html.erb
|
217
|
+
- app/views/express_ui/uicomponents/_sidebar.html.et
|
218
|
+
- app/views/express_ui/uicomponents/_table.html.et
|
219
|
+
- app/views/express_ui/uicomponents/_widget_box.html.et
|
220
|
+
- app/views/express_ui/uicomponents/index.html.erb
|
221
|
+
- app/views/layouts/express_ui/styleguide.html.erb
|
222
|
+
- config/routes.rb
|
223
|
+
- lib/express_ui.rb
|
224
|
+
- lib/express_ui/engine.rb
|
225
|
+
- lib/express_ui/version.rb
|
226
|
+
- lib/tasks/express_ui_tasks.rake
|
227
|
+
homepage: https://github.com/aelogica/express-gems/express_ui
|
228
|
+
licenses:
|
229
|
+
- MIT
|
230
|
+
metadata: {}
|
231
|
+
post_install_message:
|
232
|
+
rdoc_options: []
|
233
|
+
require_paths:
|
234
|
+
- lib
|
235
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
236
|
+
requirements:
|
237
|
+
- - ">="
|
238
|
+
- !ruby/object:Gem::Version
|
239
|
+
version: '0'
|
240
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
241
|
+
requirements:
|
242
|
+
- - ">"
|
243
|
+
- !ruby/object:Gem::Version
|
244
|
+
version: 1.3.1
|
245
|
+
requirements: []
|
246
|
+
rubyforge_project:
|
247
|
+
rubygems_version: 2.5.2
|
248
|
+
signing_key:
|
249
|
+
specification_version: 4
|
250
|
+
summary: User interface library for AppExpress components
|
251
|
+
test_files: []
|