@symbo.ls/scratch 2.10.211 → 2.10.212

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.
@@ -21,8 +21,8 @@ __export(spacing_exports, {
21
21
  SPACING: () => SPACING
22
22
  });
23
23
  module.exports = __toCommonJS(spacing_exports);
24
- var import_sequence = require("./sequence");
25
- var import_typography = require("./typography");
24
+ var import_sequence = require("./sequence.js");
25
+ var import_typography = require("./typography.js");
26
26
  const defaultProps = {
27
27
  base: import_typography.TYPOGRAPHY.base,
28
28
  type: "spacing",
@@ -21,12 +21,12 @@ __export(timing_exports, {
21
21
  TIMING: () => TIMING
22
22
  });
23
23
  module.exports = __toCommonJS(timing_exports);
24
- var import__ = require(".");
24
+ var import_sequence = require("./sequence");
25
25
  const defaultProps = {
26
26
  default: 150,
27
27
  base: 150,
28
28
  type: "timing",
29
- ratio: import__.SEQUENCE["perfect-fourth"],
29
+ ratio: import_sequence.SEQUENCE["perfect-fourth"],
30
30
  range: [-3, 12],
31
31
  unit: "ms",
32
32
  sequence: {},
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.211",
5
+ "version": "2.10.212",
6
6
  "files": [
7
7
  "src",
8
8
  "dist"
@@ -36,5 +36,5 @@
36
36
  "> 1%",
37
37
  "ie >= 9"
38
38
  ],
39
- "gitHead": "dce0b6a43e184536459c3f63a2417fa182117cdf"
39
+ "gitHead": "a0f1a0d4507e03fca0eb7103ad227919c65df6aa"
40
40
  }
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
- import { SEQUENCE } from './sequence'
4
- import { TYPOGRAPHY } from './typography'
3
+ import { SEQUENCE } from './sequence.js'
4
+ import { TYPOGRAPHY } from './typography.js'
5
5
 
6
6
  const defaultProps = {
7
7
  base: TYPOGRAPHY.base,
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { SEQUENCE } from '.'
3
+ import { SEQUENCE } from './sequence'
4
4
 
5
5
  const defaultProps = {
6
6
  default: 150,