@codecademy/variance 0.21.1-alpha.d71088.0 → 0.21.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@codecademy/variance",
3
3
  "description": "Constraint based CSS in JS for building scalable design systems",
4
- "version": "0.21.1-alpha.d71088.0",
4
+ "version": "0.21.1",
5
5
  "keywords": [
6
6
  "emotion",
7
7
  "css",
@@ -35,5 +35,5 @@
35
35
  "csstype": "^3.0.7",
36
36
  "lodash": "^4.17.5"
37
37
  },
38
- "gitHead": "828bab4f562442db925b74aa1d40b501529afec3"
38
+ "gitHead": "baa23988e9eb59834cafd89bbfd7923dfe1039d9"
39
39
  }
@@ -1,153 +0,0 @@
1
- export var testConfig = {
2
- textColor: {
3
- property: 'color'
4
- },
5
- bg: {
6
- property: 'backgroundColor'
7
- },
8
- borderColor: {
9
- property: 'borderColor'
10
- },
11
- borderColorX: {
12
- property: 'borderColor',
13
- properties: ['borderLeftColor', 'borderRightColor'],
14
- scale: 'colors'
15
- },
16
- borderColorY: {
17
- property: 'borderColor',
18
- properties: ['borderTopColor', 'borderBottomColor'],
19
- scale: 'colors'
20
- },
21
- borderColorLeft: {
22
- property: 'borderLeftColor'
23
- },
24
- borderColorRight: {
25
- property: 'borderRightColor'
26
- },
27
- borderColorTop: {
28
- property: 'borderTopColor'
29
- },
30
- borderColorBottom: {
31
- property: 'borderBottomColor'
32
- },
33
- border: {
34
- property: 'border'
35
- },
36
- borderX: {
37
- property: 'border',
38
- properties: ['borderLeft', 'borderRight']
39
- },
40
- borderY: {
41
- property: 'border',
42
- properties: ['borderTop', 'borderBottom']
43
- },
44
- borderTop: {
45
- property: 'borderTop'
46
- },
47
- borderRight: {
48
- property: 'borderRight'
49
- },
50
- borderBottom: {
51
- property: 'borderBottom'
52
- },
53
- borderLeft: {
54
- property: 'borderLeft'
55
- },
56
- borderWidth: {
57
- property: 'borderWidth'
58
- },
59
- borderWidthX: {
60
- property: 'borderWidth',
61
- properties: ['borderLeftWidth', 'borderRightWidth']
62
- },
63
- borderWidthY: {
64
- property: 'borderWidth',
65
- properties: ['borderTopWidth', 'borderBottomWidth']
66
- },
67
- borderRadius: {
68
- property: 'borderRadius'
69
- },
70
- borderRadiusLeft: {
71
- property: 'borderRadius',
72
- properties: ['borderTopLeftRadius', 'borderBottomLeftRadius']
73
- },
74
- borderRadiusTop: {
75
- property: 'borderRadius',
76
- properties: ['borderTopLeftRadius', 'borderTopRightRadius']
77
- },
78
- borderRadiusBottom: {
79
- property: 'borderRadius',
80
- properties: ['borderBottomLeftRadius', 'borderBottomRightRadius']
81
- },
82
- borderRadiusRight: {
83
- property: 'borderRadius',
84
- properties: ['borderTopRightRadius', 'borderBottomRightRadius']
85
- },
86
- borderStyle: {
87
- property: 'borderStyle'
88
- },
89
- borderStyleX: {
90
- property: 'borderStyle',
91
- properties: ['borderLeftStyle', 'borderRightStyle']
92
- },
93
- borderStyleY: {
94
- property: 'borderStyle',
95
- properties: ['borderTopStyle', 'borderBottomStyle']
96
- },
97
- flex: {
98
- property: 'flex'
99
- },
100
- flexBasis: {
101
- property: 'flexBasis'
102
- },
103
- p: {
104
- property: 'padding'
105
- },
106
- px: {
107
- property: 'padding',
108
- properties: ['paddingLeft', 'paddingRight'],
109
- scale: 'spacing'
110
- },
111
- py: {
112
- property: 'padding',
113
- properties: ['paddingTop', 'paddingBottom'],
114
- scale: 'spacing'
115
- },
116
- pt: {
117
- property: 'paddingTop'
118
- },
119
- pb: {
120
- property: 'paddingBottom'
121
- },
122
- pr: {
123
- property: 'paddingRight'
124
- },
125
- pl: {
126
- property: 'paddingLeft'
127
- },
128
- m: {
129
- property: 'margin'
130
- },
131
- mx: {
132
- property: 'margin',
133
- properties: ['marginLeft', 'marginRight'],
134
- scale: 'spacing'
135
- },
136
- my: {
137
- property: 'margin',
138
- properties: ['marginTop', 'marginBottom'],
139
- scale: 'spacing'
140
- },
141
- mt: {
142
- property: 'marginTop'
143
- },
144
- mb: {
145
- property: 'marginBottom'
146
- },
147
- mr: {
148
- property: 'marginRight'
149
- },
150
- ml: {
151
- property: 'marginLeft'
152
- }
153
- };