@symbo.ls/scratch 0.7.36 → 0.7.37

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.
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": "0.7.36",
5
+ "version": "0.7.37",
6
6
  "files": [
7
7
  "src"
8
8
  ],
@@ -1,17 +1,15 @@
1
1
  'use strict'
2
2
 
3
3
  import { getActiveConfig } from '../factory'
4
+ import { isObject, isArray, isString } from '@domql/utils'
4
5
 
5
6
  import {
6
- isArray,
7
7
  colorStringToRgbaArray,
8
- isString,
9
8
  rgbToHSL,
10
9
  hexToRgbArray,
11
10
  rgbArrayToHex,
12
11
  hslToRgb,
13
- getColorShade,
14
- isObject
12
+ getColorShade
15
13
  } from '../utils'
16
14
 
17
15
  export const getColor = (value, key) => {
@@ -1,12 +1,13 @@
1
1
  'use strict'
2
2
 
3
3
  import { getActiveConfig } from '../factory'
4
+
5
+ import { isString } from '@domql/utils'
4
6
  import {
5
7
  applySequenceVars,
6
8
  arrayze,
7
9
  generateSequence,
8
10
  getSequenceValuePropertyPair,
9
- isString,
10
11
  merge
11
12
  } from '../utils'
12
13
 
@@ -8,7 +8,7 @@ import {
8
8
  isString,
9
9
  isObjectLike,
10
10
  isArray
11
- } from '../utils'
11
+ } from '@domql/utils'
12
12
 
13
13
  const ENV = process.env.NODE_ENV // eslint-disable-line
14
14
 
@@ -1,8 +1,8 @@
1
1
  'use strict'
2
2
 
3
3
  import { getActiveConfig } from '../factory'
4
+ import { isString } from '@domql/utils'
4
5
  import { toDashCase } from '@symbo.ls/utils'
5
- import { isString } from './object'
6
6
 
7
7
  export const numToLetterMap = {
8
8
  '-6': 'U',
package/src/utils/var.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  import { getActiveConfig } from '../factory'
4
- import { isObjectLike } from './object'
4
+ import { isObjectLike } from '@domql/utils'
5
5
 
6
6
  const ENV = process.env.NODE_ENV // eslint-disable-line
7
7