@atlaskit/primitives 1.4.1 → 1.4.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/primitives
2
2
 
3
+ ## 1.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`89ce462b216`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89ce462b216) - Fix for margin properties not being mapped to values correctly.
8
+
3
9
  ## 1.4.1
4
10
 
5
11
  ### Patch Changes
@@ -37,9 +37,13 @@ var tokensMap = {
37
37
  marginBlock: _styleMaps.spaceMap,
38
38
  marginBlockEnd: _styleMaps.spaceMap,
39
39
  marginBlockStart: _styleMaps.spaceMap,
40
+ marginBottom: _styleMaps.spaceMap,
40
41
  marginInline: _styleMaps.spaceMap,
41
42
  marginInlineEnd: _styleMaps.spaceMap,
42
43
  marginInlineStart: _styleMaps.spaceMap,
44
+ marginLeft: _styleMaps.spaceMap,
45
+ marginRight: _styleMaps.spaceMap,
46
+ marginTop: _styleMaps.spaceMap,
43
47
  left: _styleMaps.spaceMap,
44
48
  maxBlockSize: _styleMaps.dimensionMap,
45
49
  maxHeight: _styleMaps.dimensionMap,
@@ -25,9 +25,13 @@ const tokensMap = {
25
25
  marginBlock: spaceMap,
26
26
  marginBlockEnd: spaceMap,
27
27
  marginBlockStart: spaceMap,
28
+ marginBottom: spaceMap,
28
29
  marginInline: spaceMap,
29
30
  marginInlineEnd: spaceMap,
30
31
  marginInlineStart: spaceMap,
32
+ marginLeft: spaceMap,
33
+ marginRight: spaceMap,
34
+ marginTop: spaceMap,
31
35
  left: spaceMap,
32
36
  maxBlockSize: dimensionMap,
33
37
  maxHeight: dimensionMap,
@@ -28,9 +28,13 @@ var tokensMap = {
28
28
  marginBlock: spaceMap,
29
29
  marginBlockEnd: spaceMap,
30
30
  marginBlockStart: spaceMap,
31
+ marginBottom: spaceMap,
31
32
  marginInline: spaceMap,
32
33
  marginInlineEnd: spaceMap,
33
34
  marginInlineStart: spaceMap,
35
+ marginLeft: spaceMap,
36
+ marginRight: spaceMap,
37
+ marginTop: spaceMap,
34
38
  left: spaceMap,
35
39
  maxBlockSize: dimensionMap,
36
40
  maxHeight: dimensionMap,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/primitives",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Primitives are token-backed low-level building blocks.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"