docks_theme_api 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (237) hide show
  1. checksums.yaml +15 -0
  2. data/.babelrc +4 -0
  3. data/.editorconfig +8 -0
  4. data/.eslintrc +115 -0
  5. data/.gitignore +24 -0
  6. data/.rubocop.yml +20 -0
  7. data/.travis.yml +16 -0
  8. data/Gemfile +4 -0
  9. data/README.md +5 -0
  10. data/Rakefile +3 -0
  11. data/assets/images/icons.svg +63 -0
  12. data/assets/scripts/coffeescript/pattern_library_helpers.coffee +8 -0
  13. data/assets/scripts/javascript/pattern_library_helpers.js +11 -0
  14. data/assets/scripts/pattern_library.js +10380 -0
  15. data/assets/scripts/pattern_library_demo.js +0 -0
  16. data/assets/styles/less/pattern-library-helpers.less +103 -0
  17. data/assets/styles/pattern-library-demo.css +1882 -0
  18. data/assets/styles/pattern-library.css +1882 -0
  19. data/assets/styles/sass/pattern-library-helpers.sass +90 -0
  20. data/assets/styles/scss/pattern-library-helpers.scss +99 -0
  21. data/assets/styles/stylus/pattern-library-helpers.styl +90 -0
  22. data/assets/templates/erb/demo.erb +26 -0
  23. data/assets/templates/erb/layouts/demo.erb +17 -0
  24. data/assets/templates/erb/layouts/pattern.erb +76 -0
  25. data/assets/templates/erb/partials/sidebar.erb +124 -0
  26. data/assets/templates/erb/partials/symbols/class.erb +1 -0
  27. data/assets/templates/erb/partials/symbols/demo.erb +40 -0
  28. data/assets/templates/erb/partials/symbols/factory.erb +70 -0
  29. data/assets/templates/erb/partials/symbols/function.erb +103 -0
  30. data/assets/templates/erb/partials/symbols/mixin.erb +62 -0
  31. data/assets/templates/erb/partials/symbols/variable.erb +59 -0
  32. data/assets/templates/erb/pattern.erb +102 -0
  33. data/assets/templates/haml/demo.haml +14 -0
  34. data/assets/templates/haml/layouts/demo.haml +6 -0
  35. data/assets/templates/haml/layouts/pattern.haml +38 -0
  36. data/assets/templates/haml/partials/sidebar.haml +68 -0
  37. data/assets/templates/haml/partials/symbols/class.haml +1 -0
  38. data/assets/templates/haml/partials/symbols/demo.haml +23 -0
  39. data/assets/templates/haml/partials/symbols/factory.haml +38 -0
  40. data/assets/templates/haml/partials/symbols/function.haml +54 -0
  41. data/assets/templates/haml/partials/symbols/mixin.haml +31 -0
  42. data/assets/templates/haml/partials/symbols/variable.haml +22 -0
  43. data/assets/templates/haml/pattern.haml +54 -0
  44. data/assets/templates/slim/demo.slim +24 -0
  45. data/assets/templates/slim/layouts/demo.slim +5 -0
  46. data/assets/templates/slim/layouts/pattern.slim +48 -0
  47. data/assets/templates/slim/partials/sidebar.slim +112 -0
  48. data/assets/templates/slim/partials/symbols/class.slim +1 -0
  49. data/assets/templates/slim/partials/symbols/demo.slim +30 -0
  50. data/assets/templates/slim/partials/symbols/factory.slim +57 -0
  51. data/assets/templates/slim/partials/symbols/function.slim +81 -0
  52. data/assets/templates/slim/partials/symbols/mixin.slim +45 -0
  53. data/assets/templates/slim/partials/symbols/variable.slim +35 -0
  54. data/assets/templates/slim/pattern.slim +63 -0
  55. data/docks_config.rb +32 -0
  56. data/docks_theme_api.gemspec +37 -0
  57. data/gulpfile.js +88 -0
  58. data/karma.conf.js +6 -0
  59. data/lib/docks_theme_api/components/base_component.rb +99 -0
  60. data/lib/docks_theme_api/components/code_block_component.rb +10 -0
  61. data/lib/docks_theme_api/components/popover_component.rb +15 -0
  62. data/lib/docks_theme_api/components/table_component.rb +34 -0
  63. data/lib/docks_theme_api/components/tablist_component.rb +11 -0
  64. data/lib/docks_theme_api/components.rb +21 -0
  65. data/lib/docks_theme_api/helpers/ui_helper.rb +69 -0
  66. data/lib/docks_theme_api/theme.rb +21 -0
  67. data/lib/docks_theme_api.rb +1 -0
  68. data/package.json +60 -0
  69. data/source/behaviors/filterable/filterable.coffee +353 -0
  70. data/source/behaviors/filterable/filterable.js +0 -0
  71. data/source/behaviors/filterable/filterable.scss +34 -0
  72. data/source/behaviors/filterable/package.json +3 -0
  73. data/source/behaviors/index.js +0 -0
  74. data/source/components/avatar/avatar.erb +20 -0
  75. data/source/components/avatar/avatar.js +142 -0
  76. data/source/components/avatar/avatar.scss +200 -0
  77. data/source/components/avatar/avatar_container.erb +13 -0
  78. data/source/components/avatar/package.json +3 -0
  79. data/source/components/avatar/spec/avatar_spec.js +81 -0
  80. data/source/components/badge/badge.scss +158 -0
  81. data/source/components/button/button.scss +213 -0
  82. data/source/components/card/card.scss +32 -0
  83. data/source/components/code_block/code-block.scss +353 -0
  84. data/source/components/code_block/code_block.erb +95 -0
  85. data/source/components/code_block/code_block.js +444 -0
  86. data/source/components/code_block/package.json +3 -0
  87. data/source/components/code_block/spec/code_block_spec.js +10 -0
  88. data/source/components/demo/demo.js +244 -0
  89. data/source/components/demo/demo.scss +90 -0
  90. data/source/components/demo/package.json +3 -0
  91. data/source/components/exploded/exploded.erb +25 -0
  92. data/source/components/exploded/exploded.js +694 -0
  93. data/source/components/exploded/exploded.scss +166 -0
  94. data/source/components/exploded/package.json +3 -0
  95. data/source/components/field/field.js +24 -0
  96. data/source/components/field/field.scss +101 -0
  97. data/source/components/field/package.json +3 -0
  98. data/source/components/header/header.scss +33 -0
  99. data/source/components/iframe/iframe.erb +12 -0
  100. data/source/components/iframe/iframe.js +381 -0
  101. data/source/components/iframe/package.json +3 -0
  102. data/source/components/index.js +37 -0
  103. data/source/components/inline_group/inline-group.scss +14 -0
  104. data/source/components/internal_link/internal_link.js +49 -0
  105. data/source/components/internal_link/package.json +3 -0
  106. data/source/components/list/list.scss +230 -0
  107. data/source/components/modal/modal.coffee +84 -0
  108. data/source/components/modal/modal.erb +19 -0
  109. data/source/components/modal/modal.js +0 -0
  110. data/source/components/modal/modal.scss +57 -0
  111. data/source/components/modal/package.json +3 -0
  112. data/source/components/notice/notice.scss +48 -0
  113. data/source/components/popover/package.json +3 -0
  114. data/source/components/popover/popover.coffee +562 -0
  115. data/source/components/popover/popover.erb +21 -0
  116. data/source/components/popover/popover.js +0 -0
  117. data/source/components/popover/popover.scss +139 -0
  118. data/source/components/range/range.scss +78 -0
  119. data/source/components/resizable/package.json +3 -0
  120. data/source/components/resizable/resizable.erb +30 -0
  121. data/source/components/resizable/resizable.js +250 -0
  122. data/source/components/resizable/resizable.scss +245 -0
  123. data/source/components/resizable/size_buttons.js +249 -0
  124. data/source/components/scroll_container/package.json +3 -0
  125. data/source/components/scroll_container/scroll-container.scss +4 -0
  126. data/source/components/scroll_container/scroll_container.js +24 -0
  127. data/source/components/section/section.scss +99 -0
  128. data/source/components/select/package.json +3 -0
  129. data/source/components/select/select.erb +21 -0
  130. data/source/components/select/select.js +35 -0
  131. data/source/components/select/select.scss +163 -0
  132. data/source/components/table/package.json +3 -0
  133. data/source/components/table/table.erb +16 -0
  134. data/source/components/table/table.js +351 -0
  135. data/source/components/table/table.scss +236 -0
  136. data/source/components/tablist/package.json +3 -0
  137. data/source/components/tablist/tablist.erb +13 -0
  138. data/source/components/tablist/tablist.js +246 -0
  139. data/source/components/tablist/tablist.scss +191 -0
  140. data/source/components/tablist/tablist_panel.erb +14 -0
  141. data/source/components/tablist/tablist_tab.erb +20 -0
  142. data/source/components/toggle/package.json +3 -0
  143. data/source/components/toggle/toggle.erb +11 -0
  144. data/source/components/toggle/toggle.js +211 -0
  145. data/source/components/toggle/toggle_container.erb +30 -0
  146. data/source/components/vertical_spacer/vertical-spacer.scss +3 -0
  147. data/source/components/vertical_stack/vertical-stack.scss +19 -0
  148. data/source/components/xray/package.json +3 -0
  149. data/source/components/xray/xray.erb +50 -0
  150. data/source/components/xray/xray.js +123 -0
  151. data/source/components/xray/xray.scss +79 -0
  152. data/source/foundation/app/app.js +15 -0
  153. data/source/foundation/app/package.json +3 -0
  154. data/source/pattern-library-demo.scss +13 -0
  155. data/source/pattern-library.scss +13 -0
  156. data/source/pattern_library.js +8 -0
  157. data/source/pattern_library_demo.js +8 -0
  158. data/source/structures/index.js +11 -0
  159. data/source/structures/sidebar/package.json +3 -0
  160. data/source/structures/sidebar/sidebar.js +69 -0
  161. data/source/structures/sidebar/sidebar.scss +79 -0
  162. data/source/utilities/builder/builder.js +138 -0
  163. data/source/utilities/builder/package.json +3 -0
  164. data/source/utilities/client/client.js +7 -0
  165. data/source/utilities/client/package.json +3 -0
  166. data/source/utilities/colors/colors.scss +112 -0
  167. data/source/utilities/defaults/defaults.scss +38 -0
  168. data/source/utilities/dom_cache/dom_cache.js +24 -0
  169. data/source/utilities/dom_cache/package.json +3 -0
  170. data/source/utilities/events/events.js +25 -0
  171. data/source/utilities/events/package.json +3 -0
  172. data/source/utilities/font_sizes/font-sizes.scss +85 -0
  173. data/source/utilities/foundation/a11y.scss +10 -0
  174. data/source/utilities/foundation/base.scss +29 -0
  175. data/source/utilities/foundation/icon.scss +114 -0
  176. data/source/utilities/foundation/layout.scss +67 -0
  177. data/source/utilities/foundation/page.scss +39 -0
  178. data/source/utilities/foundation/type.scss +208 -0
  179. data/source/utilities/functions/functions.scss +127 -0
  180. data/source/utilities/keycodes/keycodes.js +23 -0
  181. data/source/utilities/keycodes/package.json +3 -0
  182. data/source/utilities/markup/markup.js +90 -0
  183. data/source/utilities/markup/package.json +3 -0
  184. data/source/utilities/media/media.scss +172 -0
  185. data/source/utilities/mixins/mixins.scss +89 -0
  186. data/source/utilities/naming_convention/naming_convention.js +3 -0
  187. data/source/utilities/naming_convention/package.json +3 -0
  188. data/source/utilities/numbers/numbers.js +14 -0
  189. data/source/utilities/numbers/package.json +3 -0
  190. data/source/utilities/painting/package.json +3 -0
  191. data/source/utilities/painting/painting.js +7 -0
  192. data/source/utilities/pattern/package.json +3 -0
  193. data/source/utilities/pattern/pattern.js +50 -0
  194. data/source/utilities/query_string/package.json +3 -0
  195. data/source/utilities/query_string/query_string.js +24 -0
  196. data/source/utilities/template/package.json +3 -0
  197. data/source/utilities/template/template.js +10 -0
  198. data/source/utilities/text_range/package.json +3 -0
  199. data/source/utilities/text_range/text_range.js +30 -0
  200. data/source/utilities/ui_events/package.json +3 -0
  201. data/source/utilities/ui_events/ui_events.js +85 -0
  202. data/source/utilities/variables/variables.scss +18 -0
  203. data/source/utilities/z_indexes/z-indexes.scss +88 -0
  204. data/source/vendor/array_includes.js +28 -0
  205. data/source/vendor/highlight.js +1142 -0
  206. data/source/vendor/index.js +1 -0
  207. data/source/vendor/matrix.js +399 -0
  208. data/source/vendor/query_string.js +66 -0
  209. data/spec/assets/.eslintrc +9 -0
  210. data/spec/assets/spec_fixture.js +33 -0
  211. data/spec/assets/spec_helper.js +19 -0
  212. data/spec/lib/components/base_component_spec.rb +156 -0
  213. data/spec/lib/components_spec.rb +30 -0
  214. data/spec/lib/helpers/ui_helper_spec.rb +62 -0
  215. data/spec/lib/theme_spec.rb +25 -0
  216. data/spec/spec_helper.rb +15 -0
  217. data/tasks/gulp/.eslintrc +6 -0
  218. data/tasks/gulp/browser_sync.js +8 -0
  219. data/tasks/gulp/code_quality/scripts.js +10 -0
  220. data/tasks/gulp/config/index.js +116 -0
  221. data/tasks/gulp/minify/scripts.js +13 -0
  222. data/tasks/gulp/minify/styles.js +13 -0
  223. data/tasks/gulp/pattern_library/index.js +5 -0
  224. data/tasks/gulp/pattern_library/scripts.js +10 -0
  225. data/tasks/gulp/pattern_library/styles.js +10 -0
  226. data/tasks/gulp/scripts.js +8 -0
  227. data/tasks/gulp/spec/scripts.js +11 -0
  228. data/tasks/gulp/styles.js +17 -0
  229. data/tasks/gulp/utilities/babel/relative_require.js +22 -0
  230. data/tasks/gulp/utilities/babel/spec_helper.js +20 -0
  231. data/tasks/gulp/utilities/browserify_bundler.js +22 -0
  232. data/tasks/gulp/utilities/handle_errors.js +13 -0
  233. data/tasks/gulp/watch.js +9 -0
  234. data/tasks/rake/rspec.rake +7 -0
  235. data/tasks/rake/rubocop.rake +8 -0
  236. data/tasks/rake/templates.rake +50 -0
  237. metadata +470 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YzRmY2M3YWRjNDc0Yzg0ZTc1ZmU5Y2VjYWE2MDA3ZGZhMGFlMjgxNQ==
5
+ data.tar.gz: !binary |-
6
+ ZWE2ZDRmNGY5NWIxYjJjNzZhNTZmOWQ4ZWEwMzM4YjkwZWY0YTNmOA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MmI3NmU3YTlmMzg0ZWQ5N2E1NGRkNjY0ZWY3NDRlZDUxYWNlMGEwYTRlMzQ3
10
+ ZTBhYzYxMzUxYTQ0MjNlNTczMTJmZGVhM2JjZWY3MTQ1YjMxZGE0ODE0MjFm
11
+ NTFmZTFlOWE3MWJjNzI2ZDBhMDgyMWY0ZTU1N2U3ZDA1N2NlYjI=
12
+ data.tar.gz: !binary |-
13
+ MDY2NjMxNzU1ZDJkNjQwYjIzNmI4MmI1NzdmMDE1YTQ0MWQ3ZDNjNDBkZjAx
14
+ ODBmNDM0MTRiNzE3ZTEwZWFkNDVlNzJlODg3OTdjMmE1NTljZGU0MjQ1Yzdj
15
+ MzEyNWE4YTYwY2MwZGRlNDM0ODU2ZTc0NDI1MzA2N2RiZjMxNGQ=
data/.babelrc ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "experimental": true,
3
+ "stage": 0
4
+ }
data/.editorconfig ADDED
@@ -0,0 +1,8 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ trim_trailing_whitespace = true
7
+ end_of_line = lf
8
+ insert_final_newline = true
data/.eslintrc ADDED
@@ -0,0 +1,115 @@
1
+ {
2
+ "parser": "babel-eslint",
3
+
4
+ "ecmaFeatures": {
5
+ "modules": true
6
+ },
7
+
8
+ "rules": {
9
+ "accessor-pairs": 2,
10
+ "arrow-parens": 2,
11
+ "arrow-spacing": [2, { "before": true, "after": true }],
12
+ "brace-style": [2, "1tbs", { "allowSingleLine": true }],
13
+ "camelcase": 0,
14
+ "comma-dangle": [2, "never"],
15
+ "comma-spacing": [2, { "before": false, "after": true }],
16
+ "comma-style": [2, "last"],
17
+ "constructor-super": 2,
18
+ "curly": [2, "multi-line"],
19
+ "dot-location": [2, "property"],
20
+ "eol-last": 2,
21
+ "eqeqeq": [2, "allow-null"],
22
+ "func-style": [2, "expression"],
23
+ "handle-callback-err": [2, "^(err|error)$"],
24
+ "indent": [2, 2, { "SwitchCase": 1, "VariableDeclarator": 2 }],
25
+ "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
26
+ "new-cap": [2, { "newIsCap": true, "capIsNew": false }],
27
+ "new-parens": 2,
28
+ "no-array-constructor": 2,
29
+ "no-caller": 2,
30
+ "no-class-assign": 2,
31
+ "no-cond-assign": 2,
32
+ "no-const-assign": 2,
33
+ "no-control-regex": 2,
34
+ "no-debugger": 2,
35
+ "no-delete-var": 2,
36
+ "no-dupe-args": 2,
37
+ "no-dupe-keys": 2,
38
+ "no-duplicate-case": 2,
39
+ "no-empty-character-class": 2,
40
+ "no-empty-label": 2,
41
+ // Make it a one-off exception instead
42
+ "no-eval": 0,
43
+ "no-ex-assign": 2,
44
+ "no-extend-native": 2,
45
+ "no-extra-bind": 2,
46
+ "no-extra-boolean-cast": 2,
47
+ "no-extra-parens": [2, "functions"],
48
+ "no-fallthrough": 2,
49
+ "no-floating-decimal": 2,
50
+ "no-func-assign": 2,
51
+ "no-implied-eval": 2,
52
+ "no-inner-declarations": [2, "functions"],
53
+ "no-invalid-regexp": 2,
54
+ "no-irregular-whitespace": 2,
55
+ "no-iterator": 2,
56
+ "no-label-var": 2,
57
+ "no-labels": 2,
58
+ "no-lone-blocks": 2,
59
+ "no-mixed-spaces-and-tabs": 2,
60
+ "no-multi-spaces": 2,
61
+ "no-multi-str": 2,
62
+ "no-multiple-empty-lines": [2, { "max": 1 }],
63
+ "no-native-reassign": 2,
64
+ "no-negated-in-lhs": 2,
65
+ "no-new": 2,
66
+ "no-new-func": 2,
67
+ "no-new-object": 2,
68
+ "no-new-require": 2,
69
+ "no-new-wrappers": 2,
70
+ "no-obj-calls": 2,
71
+ "no-octal": 2,
72
+ "no-octal-escape": 2,
73
+ "no-proto": 2,
74
+ "no-redeclare": 2,
75
+ "no-regex-spaces": 2,
76
+ "no-return-assign": 2,
77
+ "no-self-compare": 2,
78
+ "no-sequences": 2,
79
+ "no-shadow": 2,
80
+ "no-shadow-restricted-names": 2,
81
+ "no-spaced-func": 2,
82
+ "no-sparse-arrays": 2,
83
+ "no-this-before-super": 2,
84
+ "no-throw-literal": 2,
85
+ "no-trailing-spaces": 2,
86
+ "no-undef": 2,
87
+ "no-undef-init": 2,
88
+ "no-unexpected-multiline": 2,
89
+ "no-unneeded-ternary": 2,
90
+ "no-unreachable": 2,
91
+ "no-unused-vars": [2, { "vars": "all", "args": "none" }],
92
+ "no-useless-call": 2,
93
+ "no-with": 2,
94
+ "one-var": [2, { "var": "always", "let": "never", "const": "never" }],
95
+ "operator-linebreak": [2, "after"],
96
+ "prefer-spread": 2,
97
+ "quotes": [2, "double"],
98
+ "radix": 2,
99
+ "semi": [2, "always"],
100
+ "space-after-keywords": 0,
101
+ "space-before-blocks": [2, "always"],
102
+ "space-before-function-paren": [2, "never"],
103
+ "space-in-parens": [2, "never"],
104
+ "space-infix-ops": 2,
105
+ "space-return-throw-case": 2,
106
+ "space-unary-ops": [2, { "words": true, "nonwords": false }],
107
+ "spaced-comment": 0,
108
+ "strict": [2, "never"],
109
+ "use-isnan": 2,
110
+ "valid-typeof": 2,
111
+ "vars-on-top": 2,
112
+ "wrap-iife": [2, "any"],
113
+ "yoda": [2, "never"]
114
+ }
115
+ }
data/.gitignore ADDED
@@ -0,0 +1,24 @@
1
+ *.gem
2
+ *.rbc
3
+ .ruby-version
4
+ .bundle
5
+ .config
6
+ .yardoc
7
+ .docks
8
+ Gemfile.lock
9
+ InstalledFiles
10
+ _yardoc
11
+ coverage
12
+ doc/
13
+ lib/bundler/man
14
+ pkg
15
+ rdoc
16
+ tmp
17
+ *.bundle
18
+ *.so
19
+ *.o
20
+ *.a
21
+ mkmf.log
22
+ */.*
23
+ node_modules
24
+ public
data/.rubocop.yml ADDED
@@ -0,0 +1,20 @@
1
+ Documentation:
2
+ Enabled: false
3
+
4
+ Style/StringLiterals:
5
+ EnforcedStyle: double_quotes
6
+
7
+ Style/MultilineOperationIndentation:
8
+ Enabled: false
9
+
10
+ Metrics/MethodLength:
11
+ Max: 15
12
+
13
+ Metrics/ClassLength:
14
+ Max: 125
15
+
16
+ Metrics/LineLength:
17
+ Max: 100
18
+
19
+ Metrics/AbcSize:
20
+ Max: 20
data/.travis.yml ADDED
@@ -0,0 +1,16 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1
6
+ - 2.2
7
+ - rbx-2
8
+ - ruby-head
9
+ install:
10
+ - bundle install
11
+ - npm install
12
+ script:
13
+ - rake spec
14
+ - gulp spec
15
+ notifications:
16
+ slack: lemon:SeSji4OVQ1qGtQ2Gg2iTLCge
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in docks.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Docks Theme - API
2
+
3
+ [![Build Status](https://travis-ci.org/docks-app/api_theme.svg?branch=master)](https://travis-ci.org/docks-app/api_theme)
4
+ [![Dependency Status](https://david-dm.org/docks-app/api_theme.svg?style=flat)](https://david-dm.org/docks-app/api_theme)
5
+ [![devDependency Status](https://david-dm.org/docks-app/api_theme/dev-status.svg?style=flat)](https://david-dm.org/docks-app/api_theme#info=devDependencies)
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ Dir.glob("tasks/**/*.rake").each(&method(:import))
@@ -0,0 +1,63 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
2
+ <symbol id="icon--small" viewBox="0 0 24 24">
3
+ <g fill-rule="evenodd" stroke-width="0">
4
+ <path d="M6,3.99079514 C6,2.89130934 6.90195036,2 8.0085302,2 L15.9914698,2 C17.1007504,2 18,2.89821238 18,3.99079514 L18,20.0092049 C18,21.1086907 17.0980496,22 15.9914698,22 L8.0085302,22 C6.8992496,22 6,21.1017876 6,20.0092049 L6,3.99079514 Z M7,4.85714286 L17,4.85714286 L17,19.1428571 L7,19.1428571 L7,4.85714286 Z"></path>
5
+ </g>
6
+ </symbol>
7
+
8
+ <symbol id="icon--medium" viewBox="0 0 24 24">
9
+ <g fill-rule="evenodd" stroke-width="0">
10
+ <path d="M4,3.99079514 C4,2.89130934 4.89451376,2 5.99406028,2 L18.0059397,2 C19.1072288,2 20,2.89821238 20,3.99079514 L20,20.0092049 C20,21.1086907 19.1054862,22 18.0059397,22 L5.99406028,22 C4.8927712,22 4,21.1017876 4,20.0092049 L4,3.99079514 Z M5.81666667,5.85526316 L18.1833333,5.85526316 L18.1833333,18.1447368 L5.81666667,18.1447368 L5.81666667,5.85526316 Z"></path>
11
+ </g>
12
+ </symbol>
13
+
14
+ <symbol id="icon--large" viewBox="0 0 24 24">
15
+ <g fill-rule="evenodd" transform="translate(-1.000000, 2.000000)" stroke-width="0">
16
+ <path d="M1,2.23743875 C1,1.13300857 1.89702623,0.237691002 3.00494659,0.237691002 L22.9950534,0.237691002 C24.1023548,0.237691002 25,1.13184161 25,2.23743875 L25,14.0274169 C25,15.1318471 24.1029738,16.0271647 22.9950534,16.0271647 L3.00494659,16.0271647 C1.89764516,16.0271647 1,15.1330141 1,14.0274169 L1,2.23743875 Z M3,3.00247329 C3,2.44882258 3.45530558,2 3.99180311,2 L22.0081969,2 C22.5559546,2 23,2.45576096 23,3.00247329 L23,12.9975267 C23,13.5511774 22.5446944,14 22.0081969,14 L3.99180311,14 C3.44404538,14 3,13.544239 3,12.9975267 L3,3.00247329 Z"></path>
17
+ <path d="M7.91567568,18.9473684 C8.27128383,18.0676681 8.97945946,14.7368421 8.97945946,14.7368421 L16.4259459,14.7368421 C16.4259459,14.7368421 16.9944086,17.7220474 17.4897297,18.9473684 C17.7035978,19.4764333 17.7880593,19.3809366 17.7880593,19.3809366 C18.210808,19.7228359 18.109085,20 17.5558398,20 L7.84956557,20 C7.29856561,20 7.25119089,19.8016913 7.64361042,19.4267911 C7.64361042,19.4267911 7.56209464,19.8220541 7.91567568,18.9473684 Z"></path>
18
+ </g>
19
+ </symbol>
20
+
21
+ <symbol id="icon--full" viewBox="0 0 24 24">
22
+ <g stroke-linecap="round" transform="translate(3.000000, 3.000000)" fill="none">
23
+ <path d="M0.904761905,17.1000002 L17.8484848,0.551612906"></path>
24
+ <path d="M7.34937611,17.8411765 L0,17.8411765 L0,10.8"></path>
25
+ <path d="M18.206519,7.04117647 L10.8571429,7.04117647 L10.8571429,0" transform="translate(14.531831, 3.520588) scale(-1, -1) translate(-14.531831, -3.520588) "></path>
26
+ </g>
27
+ </symbol>
28
+
29
+ <symbol id="icon--github" viewBox="0 0 36 36">
30
+ <g stroke="none" fill-rule="evenodd">
31
+ <path d="M0,19.6892308 C0,22.6430769 0.45,25 1.35,26.76 C2.3125,28.6307692 3.80625,30.0153846 5.83125,30.9138462 C7.88125,31.8615385 9.975,32.4461538 12.1125,32.6676923 C14.0375,32.8892308 16.1125,33 18.3375,33 C19.3,33 20.50625,32.9630769 21.95625,32.8892308 C23.16875,32.8153846 24.459375,32.6523077 25.828125,32.4 C27.196875,32.1476923 28.375,31.8184615 29.3625,31.4123077 C30.4875,30.9446154 31.525,30.3138462 32.475,29.52 C33.425,28.7261538 34.1625,27.8061538 34.6875,26.76 C35.5625,25 36,22.6430769 36,19.6892308 C36,16.3169231 35.01875,13.4984615 33.05625,11.2338462 C33.44375,10.0892308 33.6375,8.88923077 33.6375,7.63384615 C33.6375,5.97230769 33.275,4.42769231 32.55,3 C31.0625,3 29.734375,3.25846154 28.565625,3.77538462 C27.396875,4.29230769 26.0125,5.16615385 24.4125,6.39692308 C22.45,5.94153846 20.425,5.71384615 18.3375,5.71384615 C16.0625,5.71384615 13.8375,5.96 11.6625,6.45230769 C10.025,5.18461538 8.621875,4.29230769 7.453125,3.77538462 C6.284375,3.25846154 4.95625,3 3.46875,3 C2.73125,4.41538462 2.3625,5.96 2.3625,7.63384615 C2.3625,8.90153846 2.55625,10.1138462 2.94375,11.2707692 C0.98125,13.5353846 9.2821925e-15,16.3415385 9.2821925e-15,19.6892308 L0,19.6892308 Z M4.8375,23.4369231 C4.8375,21.6892308 5.346875,20.2307692 6.365625,19.0615385 C7.384375,17.8923077 8.725,17.3076923 10.3875,17.3076923 C11.05,17.3076923 12.45625,17.4615385 14.60625,17.7692308 C15.70625,17.9292308 16.8375,18.0092308 18,18.0092308 C19.1625,18.0092308 20.3,17.9292308 21.4125,17.7692308 C23.6,17.4615385 25.00625,17.3076923 25.63125,17.3076923 C27.29375,17.3076923 28.63125,17.8923077 29.64375,19.0615385 C30.65625,20.2307692 31.1625,21.6892308 31.1625,23.4369231 C31.1625,24.68 30.93125,25.7753846 30.46875,26.7230769 C30.00625,27.6338462 29.428125,28.3569231 28.734375,28.8923077 C28.040625,29.4276923 27.15625,29.8553846 26.08125,30.1753846 C24.30625,30.7046154 22.21875,30.9692308 19.81875,30.9692308 L16.18125,30.9692308 C14.99375,30.9692308 13.91875,30.9138462 12.95625,30.8030769 C11.93125,30.7046154 10.9,30.4892308 9.8625,30.1569231 C8.825,29.8246154 7.96875,29.4061538 7.29375,28.9015385 C6.55625,28.3353846 5.9625,27.5815385 5.5125,26.64 C5.0625,25.6984615 4.8375,24.6307692 4.8375,23.4369231 L4.8375,23.4369231 Z M8.30625,23.4369231 C8.30625,24.0153846 8.4,24.6 8.5875,25.1907692 C8.775,25.8307692 9.096875,26.3815385 9.553125,26.8430769 C10.009375,27.3046154 10.51875,27.5353846 11.08125,27.5353846 C11.68125,27.5353846 12.20625,27.2953846 12.65625,26.8153846 C13.44375,25.9169231 13.8375,24.7907692 13.8375,23.4369231 C13.8375,22.8707692 13.75625,22.2923077 13.59375,21.7015385 C13.40625,21.0615385 13.084375,20.5107692 12.628125,20.0492308 C12.171875,19.5876923 11.65625,19.3569231 11.08125,19.3569231 C10.48125,19.3569231 9.95625,19.6030769 9.50625,20.0953846 C8.70625,20.9446154 8.30625,22.0584615 8.30625,23.4369231 L8.30625,23.4369231 Z M22.1625,23.4369231 C22.1625,24.0153846 22.25625,24.6 22.44375,25.1907692 C22.63125,25.8307692 22.95,26.3815385 23.4,26.8430769 C23.85,27.3046154 24.35625,27.5353846 24.91875,27.5353846 C25.53125,27.5353846 26.0625,27.2953846 26.5125,26.8153846 C27.3,25.9169231 27.69375,24.7907692 27.69375,23.4369231 C27.69375,22.9076923 27.60625,22.3292308 27.43125,21.7015385 C27.24375,21.0615385 26.921875,20.5107692 26.465625,20.0492308 C26.009375,19.5876923 25.49375,19.3569231 24.91875,19.3569231 C24.31875,19.3569231 23.80625,19.6030769 23.38125,20.0953846 C22.56875,20.9446154 22.1625,22.0584615 22.1625,23.4369231 L22.1625,23.4369231 Z"></path>
32
+ </g>
33
+ </symbol>
34
+
35
+ <symbol id="icon--search" viewBox="0 0 24 24">
36
+ <g id="search" fill="none" stroke-width="2">
37
+ <ellipse cx="14.3913043" cy="8.66666667" rx="6.60869565" ry="6.66666667"></ellipse>
38
+ <path d="M9.84782609,14.0833333 L2.41304348,21.5833333" stroke-linecap="round"></path>
39
+ </g>
40
+ </symbol>
41
+
42
+ <symbol id="icon--code" viewBox="0 0 36 36">
43
+ <g id="search" fill="none">
44
+ <path d="M16,11 L16,23 L4,23" transform="translate(10.000000, 17.000000) rotate(-225.000000) translate(-10.000000, -17.000000)"></path>
45
+ <path d="M32,11 L32,23 L20,23" transform="translate(26.000000, 17.000000) rotate(-45.000000) translate(-26.000000, -17.000000)"></path>
46
+ <path d="M12.5,30.5 L23.5,4.5"></path>
47
+ </g>
48
+ </symbol>
49
+
50
+ <symbol id="icon--script" viewBox="0 0 36 36">
51
+ <g stroke-width="0" fill-rule="evenodd">
52
+ <path d="M14.8691406,30.6054688 L13.8574219,30.6054688 C12.0982985,30.6054688 10.7903689,30.193038 9.93359375,29.3681641 C9.07681863,28.5432901 8.6484375,27.2923261 8.6484375,25.6152344 L8.6484375,20.9121094 C8.6484375,20.4654926 8.59830779,20.0667335 8.49804688,19.7158203 C8.39778596,19.3649071 8.22233198,19.0686861 7.97167969,18.8271484 C7.72102739,18.5856108 7.38834843,18.4010423 6.97363281,18.2734375 C6.5589172,18.1458327 6.03711252,18.0820312 5.40820312,18.0820312 L4.8203125,18.0820312 L4.8203125,16.1816406 L5.40820312,16.1816406 C6.07357104,16.1816406 6.61588332,16.1269537 7.03515625,16.0175781 C7.45442918,15.9082026 7.7825509,15.7418631 8.01953125,15.5185547 C8.2565116,15.2952463 8.42057246,15.0104184 8.51171875,14.6640625 C8.60286504,14.3177066 8.6484375,13.9075545 8.6484375,13.4335938 L8.6484375,10.1933594 C8.6484375,9.42773055 8.73958242,8.73730776 8.921875,8.12207031 C9.10416758,7.50683286 9.4026672,6.98274956 9.81738281,6.54980469 C10.2320984,6.11685981 10.7698535,5.78418085 11.4306641,5.55175781 C12.0914747,5.31933478 12.9003858,5.203125 13.8574219,5.203125 L14.8691406,5.203125 L14.8691406,8.12207031 L14.0625,8.12207031 C11.9479061,8.12207031 12,8.14256787 12,10.1933594 L12,13.3789062 C12,15.6028757 11.0384211,16.8561184 9.11523438,17.1386719 C11.0566503,17.3300791 12.0273438,18.5787645 12.0273438,20.8847656 L12.0273438,25.5605469 C12.0273438,27.6477969 11.9661354,28.6914062 14.0625,28.6914062 L14.8691406,28.6914062 L14.8691406,30.6054688 Z"></path>
53
+ <path d="M31.8691406,30.6054688 L30.8574219,30.6054688 C29.0982985,30.6054688 27.7903689,30.193038 26.9335937,29.3681641 C26.0768186,28.5432901 25.6484375,27.2923261 25.6484375,25.6152344 L25.6484375,20.9121094 C25.6484375,20.4654926 25.5983078,20.0667335 25.4980469,19.7158203 C25.397786,19.3649071 25.222332,19.0686861 24.9716797,18.8271484 C24.7210274,18.5856108 24.3883484,18.4010423 23.9736328,18.2734375 C23.5589172,18.1458327 23.0371125,18.0820312 22.4082031,18.0820312 L21.8203125,18.0820312 L21.8203125,16.1816406 L22.4082031,16.1816406 C23.073571,16.1816406 23.6158833,16.1269537 24.0351562,16.0175781 C24.4544292,15.9082026 24.7825509,15.7418631 25.0195312,15.5185547 C25.2565116,15.2952463 25.4205725,15.0104184 25.5117187,14.6640625 C25.602865,14.3177066 25.6484375,13.9075545 25.6484375,13.4335938 L25.6484375,10.1933594 C25.6484375,9.42773055 25.7395824,8.73730776 25.921875,8.12207031 C26.1041676,7.50683286 26.4026672,6.98274956 26.8173828,6.54980469 C27.2320984,6.11685981 27.7698535,5.78418085 28.4306641,5.55175781 C29.0914747,5.31933478 29.9003858,5.203125 30.8574219,5.203125 L31.8691406,5.203125 L31.8691406,8.12207031 L31.0625,8.12207031 C28.9479061,8.12207031 29,8.14256787 29,10.1933594 L29,13.3789062 C29,15.6028757 28.0384211,16.8561184 26.1152344,17.1386719 C28.0566503,17.3300791 29.0273437,18.5787645 29.0273437,20.8847656 L29.0273437,25.5605469 C29.0273437,27.6477969 28.9661354,28.6914062 31.0625,28.6914062 L31.8691406,28.6914062 L31.8691406,30.6054688 Z" transform="translate(26.844727, 17.904297) rotate(-180.000000) translate(-26.844727, -17.904297) "></path>
54
+ </g>
55
+ </symbol>
56
+
57
+ <symbol id="icon--eye" viewBox="0 0 24 24">
58
+ <g fill="none">
59
+ <path vector-effect="non-scaling-stroke" d="M12,20 C18.0751322,20 21.8566454,13.6189194 21.8566454,13.6189194 C22.4881027,12.7248149 22.5054618,11.2617188 21.8417669,10.361776 C21.8417669,10.361776 18.0751322,4 12,4 C5.92486775,4 2.14335456,10.3810806 2.14335456,10.3810806 C1.51189727,11.2751851 1.49453823,12.7382812 2.15823314,13.638224 C2.15823314,13.638224 5.92486775,20 12,20 Z"></path>
60
+ <circle cx="12" cy="12" r="4" vector-effect="non-scaling-stroke"></circle>
61
+ </g>
62
+ </symbol>
63
+ </svg>
@@ -0,0 +1,8 @@
1
+ Docks = -> {}
2
+
3
+ if typeof define == "function" && define.amd
4
+ define("docks", [], Docks)
5
+ else if typeof module == "object" && module.exports
6
+ module.exports = Docks()
7
+ else
8
+ @Docks = Docks()
@@ -0,0 +1,11 @@
1
+ (function() {
2
+ function Docks() {}
3
+
4
+ if(typeof define === "function" && define.amd) {
5
+ define("docks", [], Docks);
6
+ } else if(typeof module === "object" && module.exports) {
7
+ module.exports = Docks();
8
+ } else {
9
+ this.Docks = Docks();
10
+ }
11
+ })();