@madgex/design-system 1.24.2 → 1.26.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.
Files changed (51) hide show
  1. package/.vscode/launch.json +1 -1
  2. package/__tests__/unit/tasks/css.spec.js +5 -0
  3. package/__tests__/unit/tasks/jsbundle.spec.js +5 -0
  4. package/__tests__/unit/tasks/svgsprite.spec.js +5 -0
  5. package/__tests__/unit/tasks/tokens.spec.js +5 -0
  6. package/coverage/cobertura-coverage.xml +3 -2
  7. package/coverage/components/accordion/accordion.js.html +1 -1
  8. package/coverage/components/accordion/index.html +1 -1
  9. package/coverage/components/tabs/index.html +1 -1
  10. package/coverage/components/tabs/tabs.js.html +1 -1
  11. package/coverage/index.html +7 -7
  12. package/coverage/js/common.js.html +1 -1
  13. package/coverage/js/index-polyfills.js.html +1 -1
  14. package/coverage/js/index.html +1 -1
  15. package/coverage/js/index.js.html +1 -1
  16. package/coverage/js/polyfills/closest.js.html +1 -1
  17. package/coverage/js/polyfills/index.html +1 -1
  18. package/coverage/tokens/_config.js.html +17 -11
  19. package/coverage/tokens/index.html +5 -5
  20. package/dist/_tokens/css/_tokens.css +1 -1
  21. package/dist/_tokens/js/_tokens-module.js +1 -1
  22. package/dist/_tokens/scss/_tokens.scss +1 -1
  23. package/dist/assets/icons.svg +1 -1
  24. package/dist/css/index.css +1 -1
  25. package/dist/js/index.js +2 -2
  26. package/docs/tokens/spacing.njk +2 -2
  27. package/fractal.js +2 -2
  28. package/gulpfile.js +11 -11
  29. package/hook.js +63 -0
  30. package/package.json +32 -34
  31. package/src/components/pagination/README.md +20 -0
  32. package/src/components/pagination/_macro.njk +3 -0
  33. package/src/components/pagination/_template.njk +49 -0
  34. package/src/components/pagination/pagination.config.js +48 -0
  35. package/src/components/pagination/pagination.njk +17 -0
  36. package/src/components/pagination/pagination.scss +35 -0
  37. package/src/scss/components/__index.scss +2 -1
  38. package/src/scss/helpers/__index.scss +1 -1
  39. package/src/scss/index.scss +1 -1
  40. package/src/tokens/_config.js +8 -6
  41. package/src/tokens/overrides/override.json +1 -0
  42. package/src/tokens/size.json +1 -1
  43. package/tasks/css.js +97 -0
  44. package/{gulp-tasks → tasks}/fractal.js +6 -4
  45. package/tasks/js-bundle.js +44 -0
  46. package/tasks/svgsprite.js +69 -0
  47. package/tasks/tokens.js +34 -0
  48. package/gulp-tasks/css.js +0 -22
  49. package/gulp-tasks/js-bundle.js +0 -31
  50. package/gulp-tasks/svgsprite.js +0 -57
  51. package/gulp-tasks/tokens.js +0 -20
@@ -24,4 +24,4 @@
24
24
  "console": "internalConsole"
25
25
  }
26
26
  ]
27
- }
27
+ }
@@ -0,0 +1,5 @@
1
+ const {css} = require('../../../tasks/css');
2
+ describe('CSS', () => {
3
+ beforeEach(() => {});
4
+ it.skip('correctly creates the css folder', () => {});
5
+ });
@@ -0,0 +1,5 @@
1
+ const {jsbundle} = require('../../../tasks/js-bundle');
2
+ describe('JS Bundle', () => {
3
+ beforeEach(() => {});
4
+ it.skip('correctly creates the js bundles', () => {});
5
+ });
@@ -0,0 +1,5 @@
1
+ const {svgsprite} = require('../../../tasks/svgsprite');
2
+ describe('SVGSprite', () => {
3
+ beforeEach(() => {});
4
+ it.skip('correctly creates the SVG sprites', () => {});
5
+ });
@@ -0,0 +1,5 @@
1
+ const {tokens} = require('../../../tasks/tokens');
2
+ describe('Tokens', () => {
3
+ beforeEach(() => {});
4
+ it.skip('correctly creates the token folder', () => {});
5
+ });
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="173" lines-covered="49" line-rate="0.2832" branches-valid="43" branches-covered="9" branch-rate="0.20929999999999999" timestamp="1571678843069" complexity="0" version="0.1">
3
+ <coverage lines-valid="174" lines-covered="49" line-rate="0.2816" branches-valid="43" branches-covered="9" branch-rate="0.20929999999999999" timestamp="1571928629089" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/var/lib/jenkins/jobs/madgex-design-system/branches/master/workspace</source>
6
6
  </sources>
@@ -410,7 +410,8 @@
410
410
  </methods>
411
411
  <lines>
412
412
  <line number="1" hits="0" branch="false"/>
413
- <line number="161" hits="0" branch="false"/>
413
+ <line number="3" hits="0" branch="false"/>
414
+ <line number="163" hits="0" branch="false"/>
414
415
  </lines>
415
416
  </class>
416
417
  </classes>
@@ -376,7 +376,7 @@ export default accordion;
376
376
  </div><!-- /wrapper -->
377
377
  <div class='footer quiet pad2 space-top1 center small'>
378
378
  Code coverage
379
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
379
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
380
380
  </div>
381
381
  </div>
382
382
  <script src="../../prettify.js"></script>
@@ -80,7 +80,7 @@
80
80
  </div><!-- /wrapper -->
81
81
  <div class='footer quiet pad2 space-top1 center small'>
82
82
  Code coverage
83
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
83
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
84
84
  </div>
85
85
  </div>
86
86
  <script src="../../prettify.js"></script>
@@ -80,7 +80,7 @@
80
80
  </div><!-- /wrapper -->
81
81
  <div class='footer quiet pad2 space-top1 center small'>
82
82
  Code coverage
83
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
83
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
84
84
  </div>
85
85
  </div>
86
86
  <script src="../../prettify.js"></script>
@@ -499,7 +499,7 @@ export default tabs;
499
499
  </div><!-- /wrapper -->
500
500
  <div class='footer quiet pad2 space-top1 center small'>
501
501
  Code coverage
502
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
502
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
503
503
  </div>
504
504
  </div>
505
505
  <script src="../../prettify.js"></script>
@@ -20,9 +20,9 @@
20
20
  </h1>
21
21
  <div class='clearfix'>
22
22
  <div class='fl pad1y space-right2'>
23
- <span class="strong">28.16% </span>
23
+ <span class="strong">28% </span>
24
24
  <span class="quiet">Statements</span>
25
- <span class='fraction'>49/174</span>
25
+ <span class='fraction'>49/175</span>
26
26
  </div>
27
27
  <div class='fl pad1y space-right2'>
28
28
  <span class="strong">20.93% </span>
@@ -35,9 +35,9 @@
35
35
  <span class='fraction'>4/35</span>
36
36
  </div>
37
37
  <div class='fl pad1y space-right2'>
38
- <span class="strong">28.32% </span>
38
+ <span class="strong">28.16% </span>
39
39
  <span class="quiet">Lines</span>
40
- <span class='fraction'>49/173</span>
40
+ <span class='fraction'>49/174</span>
41
41
  </div>
42
42
  </div>
43
43
  <p class="quiet">
@@ -117,13 +117,13 @@
117
117
  <td class="file low" data-value="tokens"><a href="tokens/index.html">tokens</a></td>
118
118
  <td data-value="0" class="pic low"><div class="chart"><div class="cover-fill" style="width: 0%;"></div><div class="cover-empty" style="width:100%;"></div></div></td>
119
119
  <td data-value="0" class="pct low">0%</td>
120
- <td data-value="2" class="abs low">0/2</td>
120
+ <td data-value="3" class="abs low">0/3</td>
121
121
  <td data-value="100" class="pct high">100%</td>
122
122
  <td data-value="0" class="abs high">0/0</td>
123
123
  <td data-value="100" class="pct high">100%</td>
124
124
  <td data-value="0" class="abs high">0/0</td>
125
125
  <td data-value="0" class="pct low">0%</td>
126
- <td data-value="2" class="abs low">0/2</td>
126
+ <td data-value="3" class="abs low">0/3</td>
127
127
  </tr>
128
128
 
129
129
  </tbody>
@@ -132,7 +132,7 @@
132
132
  </div><!-- /wrapper -->
133
133
  <div class='footer quiet pad2 space-top1 center small'>
134
134
  Code coverage
135
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
135
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
136
136
  </div>
137
137
  </div>
138
138
  <script src="prettify.js"></script>
@@ -88,7 +88,7 @@
88
88
  </div><!-- /wrapper -->
89
89
  <div class='footer quiet pad2 space-top1 center small'>
90
90
  Code coverage
91
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
91
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
92
92
  </div>
93
93
  </div>
94
94
  <script src="../prettify.js"></script>
@@ -58,7 +58,7 @@ import './polyfills/closest';
58
58
  </div><!-- /wrapper -->
59
59
  <div class='footer quiet pad2 space-top1 center small'>
60
60
  Code coverage
61
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
61
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
62
62
  </div>
63
63
  </div>
64
64
  <script src="../prettify.js"></script>
@@ -106,7 +106,7 @@
106
106
  </div><!-- /wrapper -->
107
107
  <div class='footer quiet pad2 space-top1 center small'>
108
108
  Code coverage
109
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
109
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
110
110
  </div>
111
111
  </div>
112
112
  <script src="../prettify.js"></script>
@@ -106,7 +106,7 @@ import accordion from '../components/accordion/accordion';
106
106
  </div><!-- /wrapper -->
107
107
  <div class='footer quiet pad2 space-top1 center small'>
108
108
  Code coverage
109
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
109
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
110
110
  </div>
111
111
  </div>
112
112
  <script src="../prettify.js"></script>
@@ -100,7 +100,7 @@
100
100
  </div><!-- /wrapper -->
101
101
  <div class='footer quiet pad2 space-top1 center small'>
102
102
  Code coverage
103
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
103
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
104
104
  </div>
105
105
  </div>
106
106
  <script src="../../prettify.js"></script>
@@ -80,7 +80,7 @@
80
80
  </div><!-- /wrapper -->
81
81
  <div class='footer quiet pad2 space-top1 center small'>
82
82
  Code coverage
83
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
83
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
84
84
  </div>
85
85
  </div>
86
86
  <script src="../../prettify.js"></script>
@@ -22,7 +22,7 @@
22
22
  <div class='fl pad1y space-right2'>
23
23
  <span class="strong">0% </span>
24
24
  <span class="quiet">Statements</span>
25
- <span class='fraction'>0/2</span>
25
+ <span class='fraction'>0/3</span>
26
26
  </div>
27
27
  <div class='fl pad1y space-right2'>
28
28
  <span class="strong">100% </span>
@@ -37,7 +37,7 @@
37
37
  <div class='fl pad1y space-right2'>
38
38
  <span class="strong">0% </span>
39
39
  <span class="quiet">Lines</span>
40
- <span class='fraction'>0/2</span>
40
+ <span class='fraction'>0/3</span>
41
41
  </div>
42
42
  </div>
43
43
  <p class="quiet">
@@ -207,7 +207,11 @@
207
207
  <a name='L159'></a><a href='#L159'>159</a>
208
208
  <a name='L160'></a><a href='#L160'>160</a>
209
209
  <a name='L161'></a><a href='#L161'>161</a>
210
- <a name='L162'></a><a href='#L162'>162</a></td><td class="line-coverage quiet"><span class="cline-any cline-no">&nbsp;</span>
210
+ <a name='L162'></a><a href='#L162'>162</a>
211
+ <a name='L163'></a><a href='#L163'>163</a>
212
+ <a name='L164'></a><a href='#L164'>164</a></td><td class="line-coverage quiet"><span class="cline-any cline-no">&nbsp;</span>
213
+ <span class="cline-any cline-neutral">&nbsp;</span>
214
+ <span class="cline-any cline-no">&nbsp;</span>
211
215
  <span class="cline-any cline-neutral">&nbsp;</span>
212
216
  <span class="cline-any cline-neutral">&nbsp;</span>
213
217
  <span class="cline-any cline-neutral">&nbsp;</span>
@@ -368,13 +372,15 @@
368
372
  <span class="cline-any cline-neutral">&nbsp;</span>
369
373
  <span class="cline-any cline-neutral">&nbsp;</span>
370
374
  <span class="cline-any cline-no">&nbsp;</span>
371
- <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">const config = <span class="cstat-no" title="statement not covered" >{</span>
372
- source: ['src/tokens/**/*.json'],
375
+ <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">const path = <span class="cstat-no" title="statement not covered" >require('path');</span>
376
+ &nbsp;
377
+ const config = <span class="cstat-no" title="statement not covered" >{</span>
378
+ source: [path.resolve(__dirname, '../tokens/*.json'), path.resolve(__dirname, '../tokens/overrides/override.json')],
373
379
  platforms: {
374
380
  'css-variables': {
375
381
  // transformGroup: 'css',
376
382
  transforms: ['attribute/cti', 'name/cti/kebab', 'time/seconds', 'content/icon', 'color/css'],
377
- buildPath: 'dist/_tokens/css/',
383
+ buildPath: `${path.resolve(__dirname, '../../dist/_tokens/css/')}/`,
378
384
  prefix: 'mds',
379
385
  files: [
380
386
  {
@@ -385,9 +391,9 @@
385
391
  },
386
392
  'scss-variables': {
387
393
  // transformGroup: 'web',
388
- // transforms: ['size/px'],
394
+ // transforms: ['size/px']
389
395
  transforms: ['attribute/cti', 'name/cti/kebab', 'color/css', 'color/scssColorFunctions'],
390
- buildPath: 'dist/_tokens/scss/',
396
+ buildPath: `${path.resolve(__dirname, '../../dist/_tokens/scss/')}/`,
391
397
  prefix: 'mds',
392
398
  files: [
393
399
  {
@@ -399,7 +405,7 @@
399
405
  },
400
406
  sketch: {
401
407
  transformGroup: 'web',
402
- buildPath: 'dist/_tokens/sketch/',
408
+ buildPath: `${path.resolve(__dirname, '../../dist/_tokens/sketch/')}/`,
403
409
  prefix: 'mds',
404
410
  files: [
405
411
  {
@@ -436,7 +442,7 @@
436
442
  // },
437
443
  'js-module': {
438
444
  transformGroup: 'js',
439
- buildPath: 'dist/_tokens/js/',
445
+ buildPath: `${path.resolve(__dirname, '../../dist/_tokens/js/')}/`,
440
446
  prefix: 'mds',
441
447
  files: [
442
448
  {
@@ -535,7 +541,7 @@
535
541
  </div><!-- /wrapper -->
536
542
  <div class='footer quiet pad2 space-top1 center small'>
537
543
  Code coverage
538
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
544
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
539
545
  </div>
540
546
  </div>
541
547
  <script src="../prettify.js"></script>
@@ -22,7 +22,7 @@
22
22
  <div class='fl pad1y space-right2'>
23
23
  <span class="strong">0% </span>
24
24
  <span class="quiet">Statements</span>
25
- <span class='fraction'>0/2</span>
25
+ <span class='fraction'>0/3</span>
26
26
  </div>
27
27
  <div class='fl pad1y space-right2'>
28
28
  <span class="strong">100% </span>
@@ -37,7 +37,7 @@
37
37
  <div class='fl pad1y space-right2'>
38
38
  <span class="strong">0% </span>
39
39
  <span class="quiet">Lines</span>
40
- <span class='fraction'>0/2</span>
40
+ <span class='fraction'>0/3</span>
41
41
  </div>
42
42
  </div>
43
43
  <p class="quiet">
@@ -65,13 +65,13 @@
65
65
  <td class="file low" data-value="_config.js"><a href="_config.js.html">_config.js</a></td>
66
66
  <td data-value="0" class="pic low"><div class="chart"><div class="cover-fill" style="width: 0%;"></div><div class="cover-empty" style="width:100%;"></div></div></td>
67
67
  <td data-value="0" class="pct low">0%</td>
68
- <td data-value="2" class="abs low">0/2</td>
68
+ <td data-value="3" class="abs low">0/3</td>
69
69
  <td data-value="100" class="pct high">100%</td>
70
70
  <td data-value="0" class="abs high">0/0</td>
71
71
  <td data-value="100" class="pct high">100%</td>
72
72
  <td data-value="0" class="abs high">0/0</td>
73
73
  <td data-value="0" class="pct low">0%</td>
74
- <td data-value="2" class="abs low">0/2</td>
74
+ <td data-value="3" class="abs low">0/3</td>
75
75
  </tr>
76
76
 
77
77
  </tbody>
@@ -80,7 +80,7 @@
80
80
  </div><!-- /wrapper -->
81
81
  <div class='footer quiet pad2 space-top1 center small'>
82
82
  Code coverage
83
- generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 21 2019 18:27:23 GMT+0100 (BST)
83
+ generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Thu Oct 24 2019 15:50:29 GMT+0100 (BST)
84
84
  </div>
85
85
  </div>
86
86
  <script src="../prettify.js"></script>
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 21 Oct 2019 17:27:44 GMT
3
+ * Generated on Thu, 24 Oct 2019 14:50:51 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 21 Oct 2019 17:27:44 GMT
3
+ * Generated on Thu, 24 Oct 2019 14:50:51 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,7 +1,7 @@
1
1
 
2
2
  /*
3
3
  Do not edit directly
4
- Generated on Mon, 21 Oct 2019 17:27:44 GMT
4
+ Generated on Thu, 24 Oct 2019 14:50:51 GMT
5
5
  */
6
6
 
7
7
  $mds-color-brand-1-base: #1b75bb !default;
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><filter id="social-facebook-a" filterUnits="userSpaceOnUse" x="-1.9" y="-4" width="14.9" height="32"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="-.7" y="-.3" width="18" height="17.9"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><symbol id="chevron-left" viewBox="0 0 24 24"><path d="M4.5 12a2.3 2.3 0 01.78-1.729L16.432.46a1.847 1.847 0 012.439 2.773l-9.752 8.579a.25.25 0 000 .376l9.752 8.579a1.847 1.847 0 01-2.439 2.773L5.284 13.732A2.31 2.31 0 014.5 12z" fill-rule="nonzero"/></symbol><symbol id="chevron-right" viewBox="0 0 24 24"><path d="M19.5 12a2.3 2.3 0 01-.78 1.729L7.568 23.54a1.847 1.847 0 01-2.439-2.773l9.752-8.579a.25.25 0 000-.376L5.129 3.233A1.847 1.847 0 017.568.46l11.148 9.808A2.31 2.31 0 0119.5 12z" fill-rule="nonzero"/></symbol><symbol id="email" viewBox="0 0 24 24"><path d="M11.114 14.556L1.43 4.87a.5.5 0 01.281-.849C1.807 4.007 1.903 4 2 4h20c.096 0 .192.007.287.021a.5.5 0 01.281.849l-9.686 9.686a1.252 1.252 0 01-1.768 0zm12.774-8.724A.181.181 0 0124 6v12a2 2 0 01-2 2H2a2 2 0 01-2-2V6c0-.073.045-.138.112-.166a.18.18 0 01.2.039l6.2 6.2a.251.251 0 010 .354L1.469 17.47a.75.75 0 001.06 1.061l5.043-5.043a.251.251 0 01.354 0l2.131 2.127a2.75 2.75 0 003.888 0l2.129-2.129a.25.25 0 01.354 0l5.043 5.043a.75.75 0 101.06-1.061l-5.043-5.043a.251.251 0 010-.354l6.2-6.2a.182.182 0 01.2-.039z" fill-rule="nonzero"/></symbol><symbol id="job" viewBox="0 0 24 24"><path d="M3 22.5h18a3 3 0 003-3v-11a3 3 0 00-3-3h-3.9a.25.25 0 01-.248-.219l-.144-1.153A3 3 0 0013.734 1.5h-3.468a3 3 0 00-2.977 2.628l-.144 1.153A.25.25 0 016.9 5.5H3a3 3 0 00-3 3v11a3 3 0 003 3zM9.273 4.376a1 1 0 01.993-.876h3.468a1 1 0 01.993.876l.105.844a.25.25 0 01-.248.28H9.416a.25.25 0 01-.248-.28l.105-.844zM5.25 11a.75.75 0 01.75-.75h12a.75.75 0 01.75.75v.5a.75.75 0 01-.75.75H6a.75.75 0 01-.75-.75V11zm0 5.5a.75.75 0 01.75-.75h12a.75.75 0 01.75.75v.5a.75.75 0 01-.75.75H6a.75.75 0 01-.75-.75v-.5z" fill-rule="nonzero"/></symbol><symbol id="location-pin" viewBox="0 0 24 24"><path d="M12 0a8.009 8.009 0 00-8 8c0 3.51 5 12.025 7.148 15.524a1 1 0 001.704-.001C15 20.026 20 11.514 20 8a8.009 8.009 0 00-8-8zm0 11.5a3.5 3.5 0 110-7 3.5 3.5 0 010 7z" fill-rule="nonzero"/></symbol><symbol id="menu" viewBox="0 0 24 24"><g transform="translate(1 2.429)" fill-rule="nonzero"><rect width="22" height="4.222" rx="1.5"/><rect y="7.389" width="22" height="4.222" rx="1.5"/><rect y="14.778" width="22" height="4.222" rx="1.5"/></g></symbol><symbol id="search" viewBox="0 0 24 24"><path d="M23.384 21.619l-6.529-6.529a9.284 9.284 0 10-1.768 1.768l6.529 6.529c.492.48 1.276.48 1.768 0a1.251 1.251 0 000-1.768zM2.75 9.5a6.75 6.75 0 116.75 6.75A6.758 6.758 0 012.75 9.5z" fill-rule="nonzero"/></symbol><symbol id="social-facebook" viewBox="0 0 32 32"><g transform="translate(10 4)"><mask maskUnits="userSpaceOnUse" x="-1.9" y="-4" width="14.9" height="32" id="social-facebook-b"><g filter="url(#social-facebook-a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.9-4H13v32H-1.9z"/></g></mask><path d="M7.6-4H13v5.5h-1.5c-.7 0-1.4 0-2.1.1-.9.1-1.3.5-1.3 1.4v3.4l.1.1H13c-.2 1.8-.4 3.7-.6 5.5H8v16H1.4v-.2-15.4-.3h-3.2V6.5h3.3V5.4c0-1.4-.1-2.9.2-4.3.5-2.7 1.9-4.2 4.5-4.8.4-.2.9-.2 1.4-.3" mask="url(#social-facebook-b)" fill-rule="evenodd" clip-rule="evenodd"/></g></symbol><symbol id="social-linkedin" viewBox="0 0 32 32"><style>.st3{fill-rule:evenodd;clip-rule:evenodd}</style><g id="Group-8" transform="translate(5 5)"><g id="Group-3" transform="translate(7.441 6.354)"><mask maskUnits="userSpaceOnUse" x="-.7" y="-.3" width="18" height="17.9" id="mask-2_1_"><g filter="url(#Adobe_OpacityMaskFilter)"><path id="path-1_1_" fill-rule="evenodd" clip-rule="evenodd" d="M-.7-.3h18v17.9h-18z"/></g></mask><path id="Fill-1" d="M-.7 17.6c0-.1-.1-.2-.1-.3V.3.1h5.9v2.3h.1c.3-.2.4-.4.6-.6 1-1.2 2.3-1.9 3.9-2 1.8-.2 3.4.1 4.9 1.2 1.3 1 2.1 2.3 2.4 3.8l.3 1.8c0 .1 0 .2.1.3v10.7h-5.9v-.5-8.7c0-.7-.1-1.4-.3-2.1-.5-2-3-2.8-4.6-1.4-1 .7-1.4 1.7-1.4 2.8v9.5c0 .1 0 .3-.1.4H-.7z" mask="url(#mask-2_1_)" fill-rule="evenodd" clip-rule="evenodd"/></g><path id="Fill-4" class="st3" d="M-2.4 24v-.4V6.5h5.9V23.9h-5.9z"/><path id="Fill-6" class="st3" d="M-2.7.6c0-.2.1-.4.1-.6.5-1.2 1.8-2 3.3-2C2-1.9 3-1.4 3.6-.2c.9 2-.4 4.1-2.6 4.2-.5.1-1 0-1.6-.1-1.1-.3-1.8-1.1-2.1-2.2 0-.1 0-.2-.1-.3V.6z"/></g></symbol><symbol id="social-twitter" viewBox="0 0 32 32"><path d="M10.1 29c12.1 0 18.7-10 18.7-18.7v-.8c1.2-1 2.3-2.1 3.2-3.4-1.2.5-2.4.9-3.8 1 1.4-.8 2.4-2.1 2.9-3.6-1.3.8-2.7 1.3-4.2 1.6C25.7 3.8 24 3 22.2 3c-3.6 0-6.6 2.9-6.6 6.6 0 .5.1 1 .2 1.5-5.5-.3-10.3-2.9-13.6-6.9-.6 1-.9 2.1-.9 3.3 0 2.3 1.2 4.3 2.9 5.5-1.1 0-2.1-.3-3-.8v.1c0 3.2 2.3 5.8 5.3 6.4-.6.2-1.1.2-1.7.2-.4 0-.8 0-1.2-.1.8 2.6 3.3 4.5 6.1 4.6-2.2 1.8-5.1 2.8-8.2 2.8-.5 0-1.1 0-1.6-.1 3 1.8 6.5 2.9 10.2 2.9"/></symbol><symbol id="star-fill" viewBox="0 0 24 24"><path d="M23.555 8.729a1.505 1.505 0 00-1.406-.98h-6.087a.5.5 0 01-.472-.334l-2.185-6.193a1.5 1.5 0 00-2.81 0l-.005.016-2.18 6.177a.5.5 0 01-.471.334H1.85A1.5 1.5 0 00.887 10.4l5.184 4.3a.5.5 0 01.155.543l-2.178 6.531a1.5 1.5 0 002.31 1.684l5.346-3.92a.5.5 0 01.591 0l5.344 3.919a1.5 1.5 0 002.312-1.683l-2.178-6.535a.5.5 0 01.155-.543l5.194-4.306a1.5 1.5 0 00.433-1.661z" fill-rule="evenodd"/></symbol><symbol id="star-outline" viewBox="0 0 24 24"><path d="M23.901 8.657a1.616 1.616 0 00-1.512-1.046h-6.538L13.51 1.038A1.612 1.612 0 0011.99 0a1.611 1.611 0 00-1.507 1.058L8.15 7.61H1.612c-.678 0-1.283.421-1.515 1.053a1.59 1.59 0 00.48 1.771l5.535 4.547-2.323 6.91a1.59 1.59 0 00.577 1.798c.567.411 1.338.41 1.904-.001L12 19.527l5.73 4.164a1.623 1.623 0 001.902.002 1.59 1.59 0 00.58-1.795l-2.324-6.913 5.548-4.559a1.594 1.594 0 00.465-1.769zm-7.996 5.127c-.35.287-.485.757-.342 1.184l1.704 5.069a.271.271 0 01-.098.307.277.277 0 01-.325 0l-4.194-3.052a1.108 1.108 0 00-1.302 0l-4.189 3.046a.277.277 0 01-.324 0 .271.271 0 01-.1-.305l1.704-5.07a1.085 1.085 0 00-.341-1.184L3.83 10.276a.271.271 0 01-.084-.303.275.275 0 01.259-.18H8.93a1.1 1.1 0 001.037-.729l1.774-4.983a.275.275 0 01.52 0l1.772 4.983a1.1 1.1 0 001.037.729h4.924a.271.271 0 01.175.483l-4.264 3.508z" fill-rule="nonzero"/></symbol><symbol id="user" viewBox="0 0 24 24"><path d="M12 11.75a5.5 5.5 0 110-11 5.5 5.5 0 010 11zm0 1.5a9.511 9.511 0 019.5 9.5.5.5 0 01-.5.5H3a.5.5 0 01-.5-.5 9.511 9.511 0 019.5-9.5z" fill-rule="nonzero"/></symbol></svg>
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><filter id="icons-a" filterUnits="userSpaceOnUse" x="-1.9" y="-4" width="14.9" height="32"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter><filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="-.7" y="-.3" width="18" height="17.9"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><symbol id="chevron-left" viewBox="0 0 24 24"><path d="M4.5 12a2.3 2.3 0 01.78-1.729L16.432.46a1.847 1.847 0 012.439 2.773l-9.752 8.579a.25.25 0 000 .376l9.752 8.579a1.847 1.847 0 01-2.439 2.773L5.284 13.732A2.31 2.31 0 014.5 12z" fill-rule="nonzero"/></symbol><symbol id="chevron-right" viewBox="0 0 24 24"><path d="M19.5 12a2.3 2.3 0 01-.78 1.729L7.568 23.54a1.847 1.847 0 01-2.439-2.773l9.752-8.579a.25.25 0 000-.376L5.129 3.233A1.847 1.847 0 017.568.46l11.148 9.808A2.31 2.31 0 0119.5 12z" fill-rule="nonzero"/></symbol><symbol id="email" viewBox="0 0 24 24"><path d="M11.114 14.556L1.43 4.87a.5.5 0 01.281-.849C1.807 4.007 1.903 4 2 4h20c.096 0 .192.007.287.021a.5.5 0 01.281.849l-9.686 9.686a1.252 1.252 0 01-1.768 0zm12.774-8.724A.181.181 0 0124 6v12a2 2 0 01-2 2H2a2 2 0 01-2-2V6c0-.073.045-.138.112-.166a.18.18 0 01.2.039l6.2 6.2a.251.251 0 010 .354L1.469 17.47a.75.75 0 001.06 1.061l5.043-5.043a.251.251 0 01.354 0l2.131 2.127a2.75 2.75 0 003.888 0l2.129-2.129a.25.25 0 01.354 0l5.043 5.043a.75.75 0 101.06-1.061l-5.043-5.043a.251.251 0 010-.354l6.2-6.2a.182.182 0 01.2-.039z" fill-rule="nonzero"/></symbol><symbol id="job" viewBox="0 0 24 24"><path d="M3 22.5h18a3 3 0 003-3v-11a3 3 0 00-3-3h-3.9a.25.25 0 01-.248-.219l-.144-1.153A3 3 0 0013.734 1.5h-3.468a3 3 0 00-2.977 2.628l-.144 1.153A.25.25 0 016.9 5.5H3a3 3 0 00-3 3v11a3 3 0 003 3zM9.273 4.376a1 1 0 01.993-.876h3.468a1 1 0 01.993.876l.105.844a.25.25 0 01-.248.28H9.416a.25.25 0 01-.248-.28l.105-.844zM5.25 11a.75.75 0 01.75-.75h12a.75.75 0 01.75.75v.5a.75.75 0 01-.75.75H6a.75.75 0 01-.75-.75V11zm0 5.5a.75.75 0 01.75-.75h12a.75.75 0 01.75.75v.5a.75.75 0 01-.75.75H6a.75.75 0 01-.75-.75v-.5z" fill-rule="nonzero"/></symbol><symbol id="location-pin" viewBox="0 0 24 24"><path d="M12 0a8.009 8.009 0 00-8 8c0 3.51 5 12.025 7.148 15.524a1 1 0 001.704-.001C15 20.026 20 11.514 20 8a8.009 8.009 0 00-8-8zm0 11.5a3.5 3.5 0 110-7 3.5 3.5 0 010 7z" fill-rule="nonzero"/></symbol><symbol id="menu" viewBox="0 0 24 24"><g transform="translate(1 2.429)" fill-rule="nonzero"><rect width="22" height="4.222" rx="1.5"/><rect y="7.389" width="22" height="4.222" rx="1.5"/><rect y="14.778" width="22" height="4.222" rx="1.5"/></g></symbol><symbol id="search" viewBox="0 0 24 24"><path d="M23.384 21.619l-6.529-6.529a9.284 9.284 0 10-1.768 1.768l6.529 6.529c.492.48 1.276.48 1.768 0a1.251 1.251 0 000-1.768zM2.75 9.5a6.75 6.75 0 116.75 6.75A6.758 6.758 0 012.75 9.5z" fill-rule="nonzero"/></symbol><symbol id="social-facebook" viewBox="0 0 32 32"><g transform="translate(10 4)"><mask maskUnits="userSpaceOnUse" x="-1.9" y="-4" width="14.9" height="32" id="icons-b"><g filter="url(#icons-a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.9-4H13v32H-1.9z"/></g></mask><path d="M7.6-4H13v5.5h-1.5c-.7 0-1.4 0-2.1.1-.9.1-1.3.5-1.3 1.4v3.4l.1.1H13c-.2 1.8-.4 3.7-.6 5.5H8v16H1.4v-.2-15.4-.3h-3.2V6.5h3.3V5.4c0-1.4-.1-2.9.2-4.3.5-2.7 1.9-4.2 4.5-4.8.4-.2.9-.2 1.4-.3" mask="url(#icons-b)" fill-rule="evenodd" clip-rule="evenodd"/></g></symbol><symbol id="social-linkedin" viewBox="0 0 32 32"><style>.st3{fill-rule:evenodd;clip-rule:evenodd}</style><g id="Group-8" transform="translate(5 5)"><g id="Group-3" transform="translate(7.441 6.354)"><mask maskUnits="userSpaceOnUse" x="-.7" y="-.3" width="18" height="17.9" id="mask-2_1_"><g filter="url(#Adobe_OpacityMaskFilter)"><path id="path-1_1_" fill-rule="evenodd" clip-rule="evenodd" d="M-.7-.3h18v17.9h-18z"/></g></mask><path id="Fill-1" d="M-.7 17.6c0-.1-.1-.2-.1-.3V.3.1h5.9v2.3h.1c.3-.2.4-.4.6-.6 1-1.2 2.3-1.9 3.9-2 1.8-.2 3.4.1 4.9 1.2 1.3 1 2.1 2.3 2.4 3.8l.3 1.8c0 .1 0 .2.1.3v10.7h-5.9v-.5-8.7c0-.7-.1-1.4-.3-2.1-.5-2-3-2.8-4.6-1.4-1 .7-1.4 1.7-1.4 2.8v9.5c0 .1 0 .3-.1.4H-.7z" mask="url(#mask-2_1_)" fill-rule="evenodd" clip-rule="evenodd"/></g><path id="Fill-4" class="st3" d="M-2.4 24v-.4V6.5h5.9V23.9h-5.9z"/><path id="Fill-6" class="st3" d="M-2.7.6c0-.2.1-.4.1-.6.5-1.2 1.8-2 3.3-2C2-1.9 3-1.4 3.6-.2c.9 2-.4 4.1-2.6 4.2-.5.1-1 0-1.6-.1-1.1-.3-1.8-1.1-2.1-2.2 0-.1 0-.2-.1-.3V.6z"/></g></symbol><symbol id="social-twitter" viewBox="0 0 32 32"><path d="M10.1 29c12.1 0 18.7-10 18.7-18.7v-.8c1.2-1 2.3-2.1 3.2-3.4-1.2.5-2.4.9-3.8 1 1.4-.8 2.4-2.1 2.9-3.6-1.3.8-2.7 1.3-4.2 1.6C25.7 3.8 24 3 22.2 3c-3.6 0-6.6 2.9-6.6 6.6 0 .5.1 1 .2 1.5-5.5-.3-10.3-2.9-13.6-6.9-.6 1-.9 2.1-.9 3.3 0 2.3 1.2 4.3 2.9 5.5-1.1 0-2.1-.3-3-.8v.1c0 3.2 2.3 5.8 5.3 6.4-.6.2-1.1.2-1.7.2-.4 0-.8 0-1.2-.1.8 2.6 3.3 4.5 6.1 4.6-2.2 1.8-5.1 2.8-8.2 2.8-.5 0-1.1 0-1.6-.1 3 1.8 6.5 2.9 10.2 2.9"/></symbol><symbol id="star-fill" viewBox="0 0 24 24"><path d="M23.555 8.729a1.505 1.505 0 00-1.406-.98h-6.087a.5.5 0 01-.472-.334l-2.185-6.193a1.5 1.5 0 00-2.81 0l-.005.016-2.18 6.177a.5.5 0 01-.471.334H1.85A1.5 1.5 0 00.887 10.4l5.184 4.3a.5.5 0 01.155.543l-2.178 6.531a1.5 1.5 0 002.31 1.684l5.346-3.92a.5.5 0 01.591 0l5.344 3.919a1.5 1.5 0 002.312-1.683l-2.178-6.535a.5.5 0 01.155-.543l5.194-4.306a1.5 1.5 0 00.433-1.661z" fill-rule="evenodd"/></symbol><symbol id="star-outline" viewBox="0 0 24 24"><path d="M23.901 8.657a1.616 1.616 0 00-1.512-1.046h-6.538L13.51 1.038A1.612 1.612 0 0011.99 0a1.611 1.611 0 00-1.507 1.058L8.15 7.61H1.612c-.678 0-1.283.421-1.515 1.053a1.59 1.59 0 00.48 1.771l5.535 4.547-2.323 6.91a1.59 1.59 0 00.577 1.798c.567.411 1.338.41 1.904-.001L12 19.527l5.73 4.164a1.623 1.623 0 001.902.002 1.59 1.59 0 00.58-1.795l-2.324-6.913 5.548-4.559a1.594 1.594 0 00.465-1.769zm-7.996 5.127c-.35.287-.485.757-.342 1.184l1.704 5.069a.271.271 0 01-.098.307.277.277 0 01-.325 0l-4.194-3.052a1.108 1.108 0 00-1.302 0l-4.189 3.046a.277.277 0 01-.324 0 .271.271 0 01-.1-.305l1.704-5.07a1.085 1.085 0 00-.341-1.184L3.83 10.276a.271.271 0 01-.084-.303.275.275 0 01.259-.18H8.93a1.1 1.1 0 001.037-.729l1.774-4.983a.275.275 0 01.52 0l1.772 4.983a1.1 1.1 0 001.037.729h4.924a.271.271 0 01.175.483l-4.264 3.508z" fill-rule="nonzero"/></symbol><symbol id="user" viewBox="0 0 24 24"><path d="M12 11.75a5.5 5.5 0 110-11 5.5 5.5 0 010 11zm0 1.5a9.511 9.511 0 019.5 9.5.5.5 0 01-.5.5H3a.5.5 0 01-.5-.5 9.511 9.511 0 019.5-9.5z" fill-rule="nonzero"/></symbol></svg>