undercase 0.2.29 → 0.2.57

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -4
  3. data/Rakefile +0 -6
  4. data/app/assets/images/backgrounds/diag_black.png +0 -0
  5. data/app/assets/javascripts/undercase/patterns/AbsolutelyPositionTableCells.js +12 -0
  6. data/app/assets/javascripts/undercase/patterns/Filter.js +6 -0
  7. data/app/assets/javascripts/undercase/patterns/daterange.js +28 -0
  8. data/app/assets/javascripts/undercase/patterns/modal.js +1 -4
  9. data/app/assets/javascripts/undercase/patterns/timepicker.js +6 -1
  10. data/app/assets/javascripts/undercase/vendor/jquery-extensions/jquery.timepicker.js +1125 -0
  11. data/app/assets/stylesheets/undercase/libraries/_borders.scss +1 -0
  12. data/app/assets/stylesheets/undercase/patterns/_borders.scss +9 -0
  13. data/app/assets/stylesheets/undercase/patterns/_filters.scss +41 -10
  14. data/app/assets/stylesheets/undercase/patterns/_forms.scss +20 -1
  15. data/app/assets/stylesheets/undercase/patterns/_layout.scss +14 -0
  16. data/app/assets/stylesheets/undercase/patterns/_lists.scss +57 -0
  17. data/app/assets/stylesheets/undercase/patterns/_popovers.scss +5 -0
  18. data/app/assets/stylesheets/undercase/patterns/_tables.scss +97 -50
  19. data/app/assets/stylesheets/undercase/patterns/_typography.scss +13 -1
  20. data/app/assets/stylesheets/undercase/patterns_new_front_end/_cards.scss +45 -0
  21. data/app/assets/stylesheets/undercase/vendor_static/_all.scss +1 -0
  22. data/app/assets/stylesheets/undercase/vendor_static/_timepicker.scss +72 -0
  23. data/app/assets/stylesheets/undercase_frame/_dummy_site.scss +77 -0
  24. data/app/controllers/undercase/application_controller.rb +1 -0
  25. data/app/inputs/date_picker_input.rb +2 -2
  26. data/app/views/layouts/undercase/application.html.haml +6 -1
  27. data/app/views/undercase/patterns/_definition_list.html.haml +9 -0
  28. data/app/views/undercase/patterns/_filters.html.haml +13 -0
  29. data/app/views/undercase/patterns/_filters_show_only.html.haml +5 -0
  30. data/app/views/undercase/patterns/_grids_basic.html.haml +39 -0
  31. data/app/views/undercase/patterns/_grids_element_spacing.html.haml +94 -0
  32. data/app/views/undercase/patterns/_grids_responsive.html.haml +32 -0
  33. data/app/views/undercase/patterns/_layouts.html.haml +20 -0
  34. data/app/views/undercase/patterns/_list_long.html.haml +45 -0
  35. data/app/views/undercase/patterns/_popover.html.haml +23 -6
  36. data/app/views/undercase/patterns/_tables.html.haml +26 -0
  37. data/app/views/undercase/patterns/{_tables_small_tablet.html.haml → _tables_unsorted.html.haml} +6 -9
  38. data/app/views/undercase/patterns/_typography_highlight.html.haml +5 -0
  39. data/app/views/undercase/patterns/_uc_forms_date_range_picker.html.haml +43 -0
  40. data/app/views/undercase/patterns/_uc_history_card.html.haml +10 -0
  41. data/app/views/undercase/patterns/index.html.haml +1 -1
  42. data/lib/tasks/undercase.rake +53 -0
  43. data/lib/undercase/patterns/definition_list.yml +4 -0
  44. data/lib/undercase/patterns/grids_basic.yml +6 -0
  45. data/lib/undercase/patterns/grids_element_spacing.yml +12 -0
  46. data/lib/undercase/patterns/grids_responsive.yml +6 -0
  47. data/lib/undercase/patterns/layouts.yml +6 -0
  48. data/lib/undercase/patterns/list_long.yml +4 -0
  49. data/lib/undercase/patterns/tables.yml +4 -0
  50. data/lib/undercase/patterns/tables_unsorted.yml +4 -0
  51. data/lib/undercase/patterns/typography_highlight.yml +4 -0
  52. data/lib/undercase/patterns/uc_forms_date_range_picker.yml +4 -0
  53. data/lib/undercase/patterns/uc_history_card.yml +4 -0
  54. data/lib/undercase/version.rb +1 -1
  55. data/public/undercase-0.2.57.tar.gz +0 -0
  56. metadata +44 -11
  57. data/app/views/undercase/patterns/_grid.html.haml +0 -0
  58. data/app/views/undercase/patterns/_tables_mobile.html.haml +0 -23
  59. data/app/views/undercase/patterns/_tables_not_desktop.html.haml +0 -21
  60. data/app/views/undercase/patterns/_tables_small_mobile.html.haml +0 -23
  61. data/lib/undercase/patterns/grid.yml +0 -4
  62. data/lib/undercase/patterns/tables_mobile.yml +0 -4
  63. data/lib/undercase/patterns/tables_not_desktop.yml +0 -4
  64. data/lib/undercase/patterns/tables_small_tablet.yml +0 -4
@@ -0,0 +1,32 @@
1
+ %h1 Responsive
2
+ .uf-responsive-demo
3
+ %p Resize your browser window.
4
+ Current breakpoints being applied at your current screen size are
5
+
6
+ %p.double-gap-top Currently active breakpoints are highlighted in blue below. Resize your browser window to see each breakpoint.
7
+ .row.gap-top
8
+ .uf-demo-mobile
9
+ %p $mobile
10
+ %p Targets screens mobile size and smaller (480px and under)
11
+ %p (max-width: 480px)
12
+ .row.gap-top
13
+ .uf-demo-not-mobile
14
+ %p $not-mobile
15
+ %p Targets screens larger than mobile (481px and up)
16
+ %p (min-width: 481px)
17
+ .row.gap-top
18
+ .uf-demo-small-tablet
19
+ %p $small-tablet
20
+ %p Targets all screen sizes smaller than 768px
21
+ %p (max-width: 767px)
22
+ .row.gap-top
23
+ .uf-demo-not-desktop
24
+ %p $not-desktop
25
+ %p Targets screens 1024px and under
26
+ %p (max-width: 1024px)
27
+ .row.gap-top
28
+ .uf-demo-desktop
29
+ %p $desktop
30
+ %p Targets screens desktop size (1025px and up)
31
+ %p (min-width: 1025px)
32
+
@@ -0,0 +1,20 @@
1
+ %h1 Default Sidebar
2
+ .uf-demo-set
3
+ .row.uf-demo-container
4
+ .uc-layout-left-sidebar
5
+ .uf-demo-object
6
+ %p .uc-layout-left-sidebar
7
+ .uc-layout-center.uc-editable-border-left
8
+ .uf-demo-object
9
+ %p .uc-layout-center
10
+ %p .uc-editable-border-left
11
+
12
+ %h1 Wide Left Sidebar
13
+ .uf-demo-set
14
+ .row.uf-demo-container
15
+ .uc-layout-sidebar-wide.pad-top
16
+ .uf-demo-object
17
+ %p .uc-layout-sidebar-wide
18
+ .uc-layout-center-slim.uc-editable-border-left
19
+ .uf-demo-object
20
+ %p .uc-layout-center-slim.uc-editable-border-left
@@ -0,0 +1,45 @@
1
+ .uc-border-bottom-middle-gray.gap-bottom
2
+ %h2 Field Values
3
+ %ul.uc-list-long
4
+ %li
5
+ .pull-left
6
+ %span.pad-right{data: {presents: "popover", placement: "bottom"}}
7
+ %a.uc-icon-book.gray-link{href: '#'}
8
+ .popover-content.hidden
9
+ %p This is the value definition for the endpoint.
10
+ .pull-left
11
+ %strong Authentication Locked
12
+ %p
13
+ %a{href: '#'} https://example.com
14
+ — Port: 3000
15
+ .pull-right.half-padded
16
+ .uc-icon-lock
17
+ %li
18
+ .pull-left
19
+ %span.pad-right{data: {presents: "popover", placement: "bottom"}}
20
+ %a.uc-icon-book.gray-link{href: '#'}
21
+ .popover-content.hidden
22
+ %p This is the value definition for the endpoint.
23
+ .pull-left
24
+ %strong Authentication Hidden
25
+ %p
26
+ %a{href: '#'} https://example.com
27
+ — Port: 3000
28
+ .pull-right.half-padded
29
+ %a.uc-icon-pencil.pad-right{href: '#'}
30
+ %a.uc-icon-eye{href: '#'}
31
+ - 15.times do |i|
32
+ %li
33
+ .pull-left
34
+ %span.pad-right{data: {presents: "popover", placement: "bottom"}}
35
+ %a.uc-icon-book.gray-link{href: '#'}
36
+ .popover-content.hidden
37
+ %p This is the value definition for the endpoint.
38
+ .pull-left
39
+ %strong Authentication #{i}
40
+ %p
41
+ %a{href: '#'} https://example#{i}.com
42
+ — Port: #{i}000
43
+ .pull-right.half-padded
44
+ %a.uc-icon-pencil.pad-right{href: '#'}
45
+ %a.uc-icon-eye-slash{href: '#'}
@@ -1,9 +1,26 @@
1
- %span{data: {presents: "popover", placement: "top", title: "Greetings"}}
2
- =link_to 'Click this text', '#'
3
- .popover-content.hidden
4
- %p This is the popover content.
5
- %p It can have <strong>rich HTML</strong>.
6
- to see a popover.
1
+ .pad-bottom
2
+ %span{data: {presents: "popover", placement: "bottom", title: "Greetings"}}
3
+ =link_to 'Click this text', '#'
4
+ .popover-content.hidden
5
+ %p This is the popover content.
6
+ %p It can have <strong>rich HTML</strong>.
7
+ to see a bottom popover.
8
+
9
+ .pad-bottom
10
+ %span{data: {presents: "popover", placement: "top", title: "Greetings"}}
11
+ =link_to 'Click this text', '#'
12
+ .popover-content.hidden
13
+ %p This is the popover content.
14
+ %p It can have <strong>rich HTML</strong>.
15
+ to see a top popover.
16
+
17
+ .pad-bottom
18
+ %span{data: {presents: "popover", placement: "top", trigger: "hover", title: "Greetings"}}
19
+ =link_to 'Hover on this text', '#'
20
+ .popover-content.hidden
21
+ %p This is the popover content.
22
+ %p It can have <strong>rich HTML</strong>.
23
+ to see a top popover.
7
24
 
8
25
  For more options, refer to the
9
26
  = link_to "Bootstrap documentation.", "http://getbootstrap.com/javascript/#popovers"
@@ -0,0 +1,26 @@
1
+ .uc-table-wrapper
2
+ %table.uc-table{ data: { presents: 'AbsolutelyPositionTableCells' } }
3
+ %col.uc-table__col--auto
4
+ %col.uc-table__col--small
5
+ %col.uc-table__col--medium
6
+ %col.uc-table__col--large
7
+ %col.uc-table__col--x-large
8
+ %col.uc-table__col--xxxx-large
9
+ %thead
10
+ %tr
11
+ %th.active
12
+ %a.descending{href: '#'} Auto-sized Column
13
+ %th
14
+ %a{href: '#'} Sml
15
+ %th
16
+ %a{href: '#'} Med
17
+ %th
18
+ %a{href: '#'} Large
19
+ %th X-Large No link
20
+ %th XX-Large No link
21
+ %tbody
22
+ - 3.times do
23
+ %tr
24
+ - text = "Salted Caramel Brownie; Toffee; Marzipan; Chocolate; Gingerbread; Ice cream chocolate cake;"
25
+ - text.split(';').each do |t|
26
+ %td #{t}
@@ -1,25 +1,22 @@
1
1
  .uc-table-wrapper
2
- %table.uc-table--respond-small-tablet
2
+ %table.uc-table.uc-table--unsorted
3
3
  %col.uc-table__col--auto
4
- %col.uc-table__col--tiny
5
4
  %col.uc-table__col--small
6
5
  %col.uc-table__col--medium
7
6
  %col.uc-table__col--large
8
7
  %col.uc-table__col--x-large
9
- %col.uc-table__col--xx-large
8
+ %col.uc-table__col--xxxx-large
10
9
  %thead
11
10
  %tr
12
- %th
13
- %a.uc-icon-sort-descending Auto-sized Column
14
- %th Tiny
15
- %th Small
16
- %th Medium
11
+ %th Auto-sized Column
12
+ %th Sml
13
+ %th Med
17
14
  %th Large
18
15
  %th X-Large
19
16
  %th XX-Large
20
17
  %tbody
21
18
  - 3.times do
22
19
  %tr
23
- - text = "Lorem ipsum dolor; sit; amet; consectetur ; adipisicing ;elit citation; sin substantiatus"
20
+ - text = "Salted Caramel Brownie; Toffee; Marzipan; Chocolate; Gingerbread; Ice cream chocolate cake;"
24
21
  - text.split(';').each do |t|
25
22
  %td #{t}
@@ -0,0 +1,5 @@
1
+ %p
2
+ %span.uc-highlight__yellow Yellow Highlighted Text
3
+
4
+ %p
5
+ %span.uc-highlight__blue Blue Highlighted Text
@@ -0,0 +1,43 @@
1
+ - @object = DummyFormObject.new(has_errors: false)
2
+
3
+ %form
4
+ = simple_fields_for @object do |f|
5
+ %fieldset.uc-form__fieldset--grouped{data: { presents: 'daterange' }}
6
+ %legend.uc-form-legend Date Range
7
+ .uc-form-daterange__start-fields
8
+ = f.input :start_date,
9
+ as: :date,
10
+ label: "Start",
11
+ label_html: { class: 'uc-form-label--secondary' }
12
+ .uc-form-daterange__end-fields
13
+ %fieldset.uc-form-fieldset--secondary
14
+ %legend.uc-form-legend End
15
+ = f.input :end_date,
16
+ as: :date,
17
+ label: false,
18
+ wrapper_html: {class: 'js-daterange-end-fields'}
19
+ = f.input :date_range_to_present,
20
+ as: :boolean,
21
+ label: "to present",
22
+ wrapper_html: {class: 'uc-form-field--boolean js-present'}
23
+
24
+
25
+
26
+ %fieldset.uc-form__fieldset--grouped{data: { presents: 'daterange' }}
27
+ %legend.uc-form-legend Date Time Range
28
+ .uc-form-daterange__start-fields
29
+ = f.input :start_date_time,
30
+ as: :datetime,
31
+ label: "Start",
32
+ input_html: { class: 'uc-form-fieldset--secondary' }
33
+ .uc-form-daterange__end-fields
34
+ %fieldset.uc-form-fieldset--secondary
35
+ %legend.uc-form-legend End
36
+ = f.input :end_date_time,
37
+ as: :datetime,
38
+ label: false,
39
+ wrapper_html: {class: 'js-daterange-end-fields'}
40
+ = f.input :date_time_range_to_present,
41
+ as: :boolean,
42
+ label: "to present",
43
+ wrapper_html: {class: 'uc-form-field--boolean js-present'}
@@ -0,0 +1,10 @@
1
+ %section.uc-card.uc-border-yellow-solid-wide-top
2
+ %header.uc-history-card__header
3
+ %h2 History card
4
+ %h5.uc-history-card__label.uc-t-body-strong Label
5
+ %ul.uc-history_card__info
6
+ %li Created by Super admin Worker on 10/15/2014
7
+ %li edit (editable for 30 more days)
8
+ %li remove
9
+ .padded.uc-history-card__content.uc-border-top-yellow-dotted
10
+ %p Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
@@ -1,4 +1,4 @@
1
- - content_for :title, "Getting Started!"
1
+ - content_for :title, "Getting Started"
2
2
 
3
3
  .doc-text
4
4
  %p The pattern library contains the UI building blocks of Casebook. It is divided into sections that reflect the categories of components we use:
@@ -8,6 +8,49 @@ namespace :fonts do
8
8
  end
9
9
  end
10
10
 
11
+ namespace :undercase do
12
+ desc 'Compile and commit assets'
13
+ task :package do
14
+ system "rm public/undercase-*.tar.gz"
15
+ system "cd spec/dummy/public; rake assets:precompile > /dev/null 2>&1"
16
+ system "cd public; (tar -C ../spec/dummy/public/assets -cvzf undercase-#{bumped_version}.tar.gz .)> /dev/null 2>&1"
17
+ system "git add 'public/undercase-*.tar.gz'"
18
+ system "git commit -m 'Add packaged assets for v#{bumped_version}'"
19
+ end
20
+
21
+ desc 'Push to github and heroku'
22
+ task :deploy do
23
+ system "git push origin head --tags"
24
+ system "git push heroku master"
25
+ end
26
+
27
+ desc 'Tag and package assets - defaults to incrementing current version number unless passed VERSION as an argument'
28
+ task release: [:package, :bump, :tag, :deploy]
29
+
30
+ desc 'Create tag'
31
+ task :tag do
32
+ system "git tag v#{bumped_version}"
33
+ end
34
+
35
+ desc 'Bump undercase version'
36
+ task :bump do
37
+ puts "Bumping undercase version to #{bumped_version}"
38
+
39
+ version_file_text = <<-VERSION_FILE
40
+ module Undercase
41
+ VERSION = '#{bumped_version}'
42
+ end
43
+ VERSION_FILE
44
+
45
+ File.open("lib/undercase/version.rb", 'w') { |file| file.write(version_file_text) }
46
+ system "git add lib/undercase/version.rb"
47
+ system "bundle install > /dev/null 2>&1"
48
+
49
+ system "git add Gemfile.lock"
50
+ system "git commit -m 'Bump undercase to v#{bumped_version}'"
51
+ end
52
+ end
53
+
11
54
  namespace :pattern do
12
55
  desc 'Combine import statements for all existing, new, and changed patterns into a manifest file. Overwrites existing manifest.'
13
56
  task :manifest do
@@ -49,3 +92,13 @@ category: :choose_one
49
92
  puts 'Done'
50
93
  end
51
94
  end
95
+
96
+ def bumped_version
97
+ @bumped_version ||= (ENV['VERSION'] || calculate_new_version)
98
+ end
99
+
100
+ def calculate_new_version
101
+ major, minor, patch = "#{Undercase::VERSION}".split(".")
102
+ incremented_patch = patch.to_i + 1
103
+ [major, minor, incremented_patch.to_s].join(".")
104
+ end
@@ -0,0 +1,4 @@
1
+ name: Definition List
2
+ description: A two column list of terms (on left, in gray) and definitions (on right, in dark gray)
3
+ usage: A structure for clearly listing definitions
4
+ category: :lists
@@ -0,0 +1,6 @@
1
+ name: Basic Grids
2
+ description: |
3
+ Casebook currently uses the 12 column [grid system built into Groundwork](http://groundworkcss.github.io/groundwork/docs/grid.html). We have three basic templates, which sit on the grid as outlined below.
4
+ usage: |
5
+ When sizing elements for Casebook, please use Groundwork's grid fractions, rather than percentages or pixel widths. Within larger containers, always choose fractions which will align with &mdash; rather than break across columns of &mdash; the 12 column grid.
6
+ category: :grids
@@ -0,0 +1,12 @@
1
+ name: Element Spacing
2
+ description: |
3
+ When creating new layouts, cards or modals &mdash; or otherwise adding elements to Casebook &mdash; please use Groundwork's gap and pad helpers, rather than hard coded pixel-based element spacing. Doing so will correctly preserve spacing on different screen sizes.
4
+
5
+ See [Groundwork's helper classes](http://groundworkcss.github.io/groundwork/docs/helpers.html) for a complete reference.
6
+ usage: |
7
+ * Use Gaps (Gap = Margin) to add spacing BETWEEN elements. Use pads (Pad = padding) to add spacing WITHIN elements.
8
+ * When in doubt, use gaps vertically, since the browser will collapse cascading gap elements and thereby prevent doubling visual space when items are placed adjacent to one another. Before delivering a story, always double check that adjacent elements have kept the intended collapsed distance from one another (i.e. elements are not further apart than desired due to the additive margin effect).
9
+ * Wherever possible/relevant, build consistent element spacing into Undercase, rather than adding it inline for each element.
10
+ * Always use multiples of half or full gap.
11
+ * As a reference, we are moving towards more white space in Casebook, so all spacing (except for icon/text separation) is/should be 1x gap/pad or larger, as outlined in the examples below.
12
+ category: :grids
@@ -0,0 +1,6 @@
1
+ name: Responsive
2
+ description: |
3
+ We are working towards making the entirety of Casebook responsive, meaning that it will not only work, but also look good on all devices and viewport sizes. All new designs, therefore, should be designed and built to work cleanly from the start at the three breakpoints to which we are building.
4
+ usage: |
5
+ When coding for different browser widths based on device, use only built-in Groundwork defined breakpoints. Casebook currently targets `$desktop` (or `$not-desktop`), `$small-tablet` and `$mobile` (or `$not-mobile`).
6
+ category: :grids
@@ -0,0 +1,6 @@
1
+ name: Layouts
2
+ description: |
3
+ Default application layout uses a two twelfth/ten twelfth split. These patterns allow for custom layouts per controller for greater flexibility.
4
+ usage: |
5
+ Create a new layout template in app/views/layouts, for instance app/views/layouts/histories.html.haml
6
+ category: :grids
@@ -0,0 +1,4 @@
1
+ name: Long list
2
+ description: Long list for items that do not fit in one page
3
+ usage: Use in showing configuration
4
+ category: :lists
@@ -0,0 +1,4 @@
1
+ name: Tables
2
+ description: Specifically-sized and auto-sized table column widths.
3
+ usage: For all-device-sized browser windows, scroll bar appears at bottom and table expands to 100%
4
+ category: :components
@@ -0,0 +1,4 @@
1
+ name: Tables - Unsorted
2
+ description: Specifically-sized and auto-sized table column widths.
3
+ usage: For all-device-sized browser windows, scroll bar appears at bottom and table expands to 100%
4
+ category: :components
@@ -0,0 +1,4 @@
1
+ name: Highlight
2
+ description: Highlighted text
3
+ usage: Use the classes
4
+ category: :typography
@@ -0,0 +1,4 @@
1
+ name: Date/Time Range Picker
2
+ description: A Date/Time Range Picker with optional end of range
3
+ usage: Use on forms
4
+ category: :forms
@@ -0,0 +1,4 @@
1
+ name: History Card
2
+ description: The card that appears on the history filter page
3
+ usage: To show abbreviated information about notes, attachments, etc
4
+ category: :components
@@ -1,3 +1,3 @@
1
1
  module Undercase
2
- VERSION = '0.2.29'
2
+ VERSION = '0.2.57'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: undercase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.29
4
+ version: 0.2.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - Case Commons, LLC
@@ -10,8 +10,22 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-08-29 00:00:00.000000000 Z
13
+ date: 2014-10-30 00:00:00.000000000 Z
14
14
  dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bluecloth
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
15
29
  - !ruby/object:Gem::Dependency
16
30
  name: bootstrap-sass
17
31
  requirement: !ruby/object:Gem::Requirement
@@ -418,6 +432,7 @@ files:
418
432
  - app/assets/fonts/Undercase-Icons/Undercase-Icons.woff
419
433
  - app/assets/images/avatar_male_small.png
420
434
  - app/assets/images/backgrounds/checkerboard_tile.png
435
+ - app/assets/images/backgrounds/diag_black.png
421
436
  - app/assets/images/icons/calendar_datepicker.svg
422
437
  - app/assets/images/icons/checkbox-selected.svg
423
438
  - app/assets/images/icons/checkbox-unselected.svg
@@ -456,10 +471,12 @@ files:
456
471
  - app/assets/javascripts/undercase/index.js
457
472
  - app/assets/javascripts/undercase/lib/BreakpointTell.js
458
473
  - app/assets/javascripts/undercase/lib/timezone.js
474
+ - app/assets/javascripts/undercase/patterns/AbsolutelyPositionTableCells.js
459
475
  - app/assets/javascripts/undercase/patterns/Filter.js
460
476
  - app/assets/javascripts/undercase/patterns/FlexibleSearchMenu.js
461
477
  - app/assets/javascripts/undercase/patterns/ToggleNavigationSearch.js
462
478
  - app/assets/javascripts/undercase/patterns/datepicker.js
479
+ - app/assets/javascripts/undercase/patterns/daterange.js
463
480
  - app/assets/javascripts/undercase/patterns/expando.js
464
481
  - app/assets/javascripts/undercase/patterns/modal.js
465
482
  - app/assets/javascripts/undercase/patterns/tabs.js
@@ -469,6 +486,7 @@ files:
469
486
  - app/assets/javascripts/undercase/show_code.js
470
487
  - app/assets/javascripts/undercase/vendor/date.js
471
488
  - app/assets/javascripts/undercase/vendor/jquery-extensions/jquery.calendrical.js
489
+ - app/assets/javascripts/undercase/vendor/jquery-extensions/jquery.timepicker.js
472
490
  - app/assets/javascripts/undercase/vendor/jquery-ui-1.10.3.js
473
491
  - app/assets/javascripts/undercase/vendor/modernizr.custom.14960.js
474
492
  - app/assets/javascripts/undercase/vendor/underscore.js
@@ -523,6 +541,7 @@ files:
523
541
  - app/assets/stylesheets/undercase/vendor_static/_calendrical.scss
524
542
  - app/assets/stylesheets/undercase/vendor_static/_icons.scss
525
543
  - app/assets/stylesheets/undercase/vendor_static/_jquery-ui-1.8.13.custom.scss
544
+ - app/assets/stylesheets/undercase/vendor_static/_timepicker.scss
526
545
  - app/assets/stylesheets/undercase_frame/_dummy_site.scss
527
546
  - app/assets/stylesheets/undercase_frame/vendor/coderay.css
528
547
  - app/assets/stylesheets/undercase_frame_application.css.scss
@@ -553,26 +572,29 @@ files:
553
572
  - app/views/undercase/patterns/_chevrons.html.haml
554
573
  - app/views/undercase/patterns/_colors.html.haml
555
574
  - app/views/undercase/patterns/_content_with_toolbar.html.haml
575
+ - app/views/undercase/patterns/_definition_list.html.haml
556
576
  - app/views/undercase/patterns/_dropdown.html.haml
557
577
  - app/views/undercase/patterns/_filters.html.haml
558
578
  - app/views/undercase/patterns/_filters_show_only.html.haml
559
579
  - app/views/undercase/patterns/_gray_link.html.haml
560
- - app/views/undercase/patterns/_grid.html.haml
580
+ - app/views/undercase/patterns/_grids_basic.html.haml
581
+ - app/views/undercase/patterns/_grids_element_spacing.html.haml
582
+ - app/views/undercase/patterns/_grids_responsive.html.haml
561
583
  - app/views/undercase/patterns/_icon_classes.html.haml
562
584
  - app/views/undercase/patterns/_icon_custom.html.haml
563
585
  - app/views/undercase/patterns/_inline_message.html.haml
586
+ - app/views/undercase/patterns/_layouts.html.haml
564
587
  - app/views/undercase/patterns/_length_of_time.html.haml
565
588
  - app/views/undercase/patterns/_list_circle.html.haml
566
589
  - app/views/undercase/patterns/_list_disc.html.haml
590
+ - app/views/undercase/patterns/_list_long.html.haml
567
591
  - app/views/undercase/patterns/_navigation.html.haml
568
592
  - app/views/undercase/patterns/_pagination.html.haml
569
593
  - app/views/undercase/patterns/_pattern.html.haml
570
594
  - app/views/undercase/patterns/_person_placard.html.haml
571
595
  - app/views/undercase/patterns/_popover.html.haml
572
- - app/views/undercase/patterns/_tables_mobile.html.haml
573
- - app/views/undercase/patterns/_tables_not_desktop.html.haml
574
- - app/views/undercase/patterns/_tables_small_mobile.html.haml
575
- - app/views/undercase/patterns/_tables_small_tablet.html.haml
596
+ - app/views/undercase/patterns/_tables.html.haml
597
+ - app/views/undercase/patterns/_tables_unsorted.html.haml
576
598
  - app/views/undercase/patterns/_typography.html.haml
577
599
  - app/views/undercase/patterns/_typography_body_em.html.haml
578
600
  - app/views/undercase/patterns/_typography_body_p.html.haml
@@ -585,6 +607,7 @@ files:
585
607
  - app/views/undercase/patterns/_typography_heading_3.html.haml
586
608
  - app/views/undercase/patterns/_typography_heading_4.html.haml
587
609
  - app/views/undercase/patterns/_typography_heading_thin.html.haml
610
+ - app/views/undercase/patterns/_typography_highlight.html.haml
588
611
  - app/views/undercase/patterns/_typography_links_general.html.haml
589
612
  - app/views/undercase/patterns/_typography_links_navigation.html.haml
590
613
  - app/views/undercase/patterns/_typography_links_page_banner.html.haml
@@ -605,6 +628,7 @@ files:
605
628
  - app/views/undercase/patterns/_uc_forms_conditionally_required.html.haml
606
629
  - app/views/undercase/patterns/_uc_forms_currency_input.html.haml
607
630
  - app/views/undercase/patterns/_uc_forms_date_picker.html.haml
631
+ - app/views/undercase/patterns/_uc_forms_date_range_picker.html.haml
608
632
  - app/views/undercase/patterns/_uc_forms_date_time_picker.html.haml
609
633
  - app/views/undercase/patterns/_uc_forms_disabled_field.html.haml
610
634
  - app/views/undercase/patterns/_uc_forms_dropdown.html.haml
@@ -623,6 +647,7 @@ files:
623
647
  - app/views/undercase/patterns/_uc_forms_small_field.html.haml
624
648
  - app/views/undercase/patterns/_uc_forms_textarea.html.haml
625
649
  - app/views/undercase/patterns/_uc_forms_tiny_field.html.haml
650
+ - app/views/undercase/patterns/_uc_history_card.html.haml
626
651
  - app/views/undercase/patterns/_uc_list_comma.html.haml
627
652
  - app/views/undercase/patterns/_uc_list_ordered_alpha.html.haml
628
653
  - app/views/undercase/patterns/_uc_list_ordered_decimal.html.haml
@@ -662,24 +687,28 @@ files:
662
687
  - lib/undercase/patterns/chevrons.yml
663
688
  - lib/undercase/patterns/colors.yml
664
689
  - lib/undercase/patterns/content_with_toolbar.yml
690
+ - lib/undercase/patterns/definition_list.yml
665
691
  - lib/undercase/patterns/dropdown.yml
666
692
  - lib/undercase/patterns/filters.yml
667
693
  - lib/undercase/patterns/filters_show_only.yml
668
694
  - lib/undercase/patterns/gray_link.yml
669
- - lib/undercase/patterns/grid.yml
695
+ - lib/undercase/patterns/grids_basic.yml
696
+ - lib/undercase/patterns/grids_element_spacing.yml
697
+ - lib/undercase/patterns/grids_responsive.yml
670
698
  - lib/undercase/patterns/icon_classes.yml
671
699
  - lib/undercase/patterns/icon_custom.yml
672
700
  - lib/undercase/patterns/inline_message.yml
701
+ - lib/undercase/patterns/layouts.yml
673
702
  - lib/undercase/patterns/length_of_time.yml
674
703
  - lib/undercase/patterns/list_circle.yml
675
704
  - lib/undercase/patterns/list_disc.yml
705
+ - lib/undercase/patterns/list_long.yml
676
706
  - lib/undercase/patterns/navigation.yml
677
707
  - lib/undercase/patterns/pagination.yml
678
708
  - lib/undercase/patterns/person_placard.yml
679
709
  - lib/undercase/patterns/popover.yml
680
- - lib/undercase/patterns/tables_mobile.yml
681
- - lib/undercase/patterns/tables_not_desktop.yml
682
- - lib/undercase/patterns/tables_small_tablet.yml
710
+ - lib/undercase/patterns/tables.yml
711
+ - lib/undercase/patterns/tables_unsorted.yml
683
712
  - lib/undercase/patterns/typography.yml
684
713
  - lib/undercase/patterns/typography_body_em.yml
685
714
  - lib/undercase/patterns/typography_body_p.yml
@@ -692,6 +721,7 @@ files:
692
721
  - lib/undercase/patterns/typography_heading_3.yml
693
722
  - lib/undercase/patterns/typography_heading_4.yml
694
723
  - lib/undercase/patterns/typography_heading_thin.yml
724
+ - lib/undercase/patterns/typography_highlight.yml
695
725
  - lib/undercase/patterns/typography_links_general.yml
696
726
  - lib/undercase/patterns/typography_links_navigation.yml
697
727
  - lib/undercase/patterns/typography_links_page_banner.yml
@@ -712,6 +742,7 @@ files:
712
742
  - lib/undercase/patterns/uc_forms_conditionally_required.yml
713
743
  - lib/undercase/patterns/uc_forms_currency_input.yml
714
744
  - lib/undercase/patterns/uc_forms_date_picker.yml
745
+ - lib/undercase/patterns/uc_forms_date_range_picker.yml
715
746
  - lib/undercase/patterns/uc_forms_date_time_picker.yml
716
747
  - lib/undercase/patterns/uc_forms_disabled_field.yml
717
748
  - lib/undercase/patterns/uc_forms_dropdown.yml
@@ -730,6 +761,7 @@ files:
730
761
  - lib/undercase/patterns/uc_forms_small_field.yml
731
762
  - lib/undercase/patterns/uc_forms_textarea.yml
732
763
  - lib/undercase/patterns/uc_forms_tiny_field.yml
764
+ - lib/undercase/patterns/uc_history_card.yml
733
765
  - lib/undercase/patterns/uc_list_comma.yml
734
766
  - lib/undercase/patterns/uc_list_ordered_alpha.yml
735
767
  - lib/undercase/patterns/uc_list_ordered_decimal.yml
@@ -762,6 +794,7 @@ files:
762
794
  - public/timezones/systemv
763
795
  - public/timezones/yearistype.sh
764
796
  - public/timezones/zone.tab
797
+ - public/undercase-0.2.57.tar.gz
765
798
  homepage: https://github.com/Casecommons/undercase
766
799
  licenses:
767
800
  - Proprietary