@symbo.ls/default-config 2.11.91 → 2.11.125

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
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@symbo.ls/default-config",
3
- "version": "2.11.91",
3
+ "version": "2.11.125",
4
4
  "source": "src/index.js",
5
5
  "main": "src/index.js",
6
6
  "license": "MIT",
7
- "dependencies": {
7
+ "peerDependencies": {
8
8
  "@symbo.ls/feather-icons": "latest"
9
9
  },
10
- "gitHead": "a22390d3a41fdf49326ba007347a1635f27fa9e5"
10
+ "gitHead": "baa36f3a07d4ea577fe641432ab3ca0432fb4915"
11
11
  }
package/src/index.js CHANGED
@@ -6,8 +6,6 @@ import { TYPOGRAPHY } from './typography'
6
6
  import { SPACING } from './spacing'
7
7
  import { FONT, FONT_FAMILY } from './font'
8
8
 
9
- import FEATHER_ICONS from '@symbo.ls/feather-icons'
10
-
11
9
  export const DEFAULT_CONFIG = {
12
10
  version: '0.0.1',
13
11
  COLOR,
@@ -18,7 +16,7 @@ export const DEFAULT_CONFIG = {
18
16
  FONT,
19
17
  FONT_FAMILY,
20
18
  TIMING: {},
21
- ICONS: FEATHER_ICONS,
19
+ ICONS: {},
22
20
  MEDIA: {
23
21
  tv: '(min-width: 2780px)',
24
22
 
package/src/theme.js CHANGED
@@ -11,7 +11,10 @@ const PRIORITIES = {
11
11
  },
12
12
  '@light': {
13
13
  color: 'white',
14
- background: 'gradient-colorful'
14
+ background: 'gradient-colorful',
15
+ '.color-only': {
16
+ color: 'blue'
17
+ }
15
18
  }
16
19
  },
17
20
 
@@ -123,5 +126,15 @@ export const THEME = {
123
126
  }
124
127
  },
125
128
 
126
- ...PRIORITIES
129
+ ...PRIORITIES,
130
+
131
+ none: {
132
+ color: 'none',
133
+ background: 'none'
134
+ },
135
+
136
+ transparent: {
137
+ color: 'transparent',
138
+ background: 'transparent'
139
+ }
127
140
  }