decap-cms-core 3.3.1 → 3.3.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.
@@ -54,8 +54,8 @@ function buildIssueTemplate({
54
54
  let version = '';
55
55
  if (typeof DECAP_CMS_VERSION === 'string') {
56
56
  version = `decap-cms@${DECAP_CMS_VERSION}`;
57
- } else if (typeof "3.1.1" === 'string') {
58
- version = `decap-cms-app@${"3.1.1"}`;
57
+ } else if (typeof "3.1.2" === 'string') {
58
+ version = `decap-cms-app@${"3.1.2"}`;
59
59
  }
60
60
  const template = getIssueTemplate({
61
61
  version,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "decap-cms-core",
3
3
  "description": "Decap CMS core application, see decap-cms package for the main distribution.",
4
- "version": "3.3.1",
4
+ "version": "3.3.2",
5
5
  "repository": "https://github.com/decaporg/decap-cms/tree/master/packages/decap-cms-core",
6
6
  "bugs": "https://github.com/decaporg/decap-cms/issues",
7
7
  "module": "dist/esm/index.js",
@@ -96,5 +96,5 @@
96
96
  "@types/url-join": "^4.0.0",
97
97
  "redux-mock-store": "^1.5.3"
98
98
  },
99
- "gitHead": "28e2b78d98c117804aa4efc567ca468cdc554868"
99
+ "gitHead": "3715ca74a21de3aed1a5b96627c6745bc1b5b490"
100
100
  }
@@ -47,24 +47,29 @@ function ReactSplitPaneGlobalStyles() {
47
47
  <Global
48
48
  styles={css`
49
49
  .Resizer.vertical {
50
- width: 21px;
50
+ width: 2px;
51
51
  cursor: col-resize;
52
52
  position: relative;
53
- transition: background-color ${transitions.main};
53
+ background: none;
54
54
 
55
55
  &:before {
56
56
  content: '';
57
57
  width: 2px;
58
58
  height: 100%;
59
59
  position: relative;
60
- left: 10px;
61
60
  background-color: ${colors.textFieldBorder};
62
61
  display: block;
62
+ z-index: 10;
63
+ transition: background-color ${transitions.main};
63
64
  }
64
65
 
65
66
  &:hover,
66
67
  &:active {
67
- background-color: ${colorsRaw.GrayLight};
68
+ &:before {
69
+ width: 4px;
70
+ left: -1px;
71
+ background-color: ${colorsRaw.blue};
72
+ }
68
73
  }
69
74
  }
70
75
  `}