@symbo.ls/scratch 2.10.188 → 2.10.189

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.
@@ -23,7 +23,6 @@ __export(font_family_exports, {
23
23
  FONT_FAMILY_TYPES: () => FONT_FAMILY_TYPES
24
24
  });
25
25
  module.exports = __toCommonJS(font_family_exports);
26
- var import_utils = require("../utils");
27
26
  var defaultFont = {
28
27
  // eslint-disable-line
29
28
  name: "",
@@ -36,4 +35,4 @@ const FONT_FAMILY_TYPES = {
36
35
  serif: "Times New Roman, Georgia, serif, --system-default",
37
36
  monospace: "Courier New, monospace, --system-default"
38
37
  };
39
- const FONT_FACE = (0, import_utils.getFontFace)(FONT_FAMILY);
38
+ const FONT_FACE = {};
@@ -16,6 +16,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
16
16
  var utils_exports = {};
17
17
  module.exports = __toCommonJS(utils_exports);
18
18
  __reExport(utils_exports, require("./color.js"), module.exports);
19
+ __reExport(utils_exports, require("./theme.js"), module.exports);
19
20
  __reExport(utils_exports, require("./font.js"), module.exports);
20
21
  __reExport(utils_exports, require("./sequence.js"), module.exports);
21
22
  __reExport(utils_exports, require("./var.js"), module.exports);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@symbo.ls/scratch",
3
3
  "description": "Φ / CSS framework and methodology.",
4
4
  "author": "symbo.ls",
5
- "version": "2.10.188",
5
+ "version": "2.10.189",
6
6
  "files": [
7
7
  "src",
8
8
  "dist"
@@ -36,5 +36,5 @@
36
36
  "> 1%",
37
37
  "ie >= 9"
38
38
  ],
39
- "gitHead": "101a03940d79cdd43dfcfb78c2086f4d13a0142d"
39
+ "gitHead": "8c7496816c98a3cdfe6a83ecf8b5d925713ac3bd"
40
40
  }
@@ -1,7 +1,5 @@
1
1
  'use strict'
2
2
 
3
- import { getFontFace } from '../utils'
4
-
5
3
  var defaultFont = { // eslint-disable-line
6
4
  name: '',
7
5
  family: '',
@@ -14,4 +12,4 @@ export const FONT_FAMILY_TYPES = {
14
12
  serif: 'Times New Roman, Georgia, serif, --system-default',
15
13
  monospace: 'Courier New, monospace, --system-default'
16
14
  }
17
- export const FONT_FACE = getFontFace(FONT_FAMILY)
15
+ export const FONT_FACE = {}
@@ -1,6 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  export * from './color.js'
4
+ export * from './theme.js'
4
5
  export * from './font.js'
5
6
  export * from './sequence.js'
6
7
  export * from './var.js'