@madgex/design-system 1.16.4 → 1.16.6

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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 17 Jul 2019 08:51:39 GMT
3
+ * Generated on Wed, 17 Jul 2019 12:31:55 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 17 Jul 2019 08:51:39 GMT
3
+ * Generated on Wed, 17 Jul 2019 12:31:55 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 Wed, 17 Jul 2019 08:51:39 GMT
4
+ Generated on Wed, 17 Jul 2019 12:31:55 GMT
5
5
  */
6
6
 
7
7
  $mds-color-brand-1-base: #1b75bb !default;
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  Do not edit directly
3
- Generated on Wed, 17 Jul 2019 08:51:39 GMT
3
+ Generated on Wed, 17 Jul 2019 12:31:55 GMT
4
4
  */
5
5
  html,
6
6
  body,
@@ -462,8 +462,11 @@ body {
462
462
  font-family: "Helvetica", Arial, sans-serif;
463
463
  }
464
464
 
465
+ html,
465
466
  body {
466
467
  background: #ffffff;
468
+ -moz-osx-font-smoothing: grayscale;
469
+ -webkit-font-smoothing: antialiased;
467
470
  }
468
471
 
469
472
  .mds-site-container {
package/docs/01-index.njk CHANGED
@@ -4,6 +4,8 @@ title: Madgex Design System
4
4
 
5
5
  This is your index page. You can edit its contents at `docs/01-index.hbs`
6
6
 
7
+ v{{ pkg.version }}
8
+
7
9
  <!--
8
10
  ```
9
11
  {% view '@button' %}
package/fractal.js CHANGED
@@ -50,6 +50,7 @@ fractal.docs.engine(nunjucks);
50
50
  fractal.docs.set('ext', '.njk'); // default is '.md'
51
51
  fractal.docs.set('path', path.join(__dirname, 'docs'));
52
52
  fractal.docs.set('default.context', {
53
+ pkg,
53
54
  tokens,
54
55
  icons,
55
56
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@madgex/design-system",
3
- "version": "1.16.4",
3
+ "version": "1.16.6",
4
4
  "scripts": {
5
5
  "clean": "rimraf dist public tokens/build",
6
6
  "commit": "commit",
@@ -1,5 +1,8 @@
1
+ html,
1
2
  body {
2
3
  background: $mds-color-background-body;
4
+ -moz-osx-font-smoothing: grayscale;
5
+ -webkit-font-smoothing: antialiased;
3
6
  }
4
7
 
5
8
  .mds-site-container {
@@ -39,4 +42,4 @@ body {
39
42
  bottom: auto;
40
43
  top: 0;
41
44
  }
42
- }
45
+ }