@atlaskit/contextual-survey 5.0.19 → 5.1.0
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 +18 -0
- package/dist/cjs/components/SuccessContainer.js +1 -2
- package/dist/cjs/components/SurveyContainer.js +1 -1
- package/dist/es2019/components/SuccessContainer.js +1 -2
- package/dist/es2019/components/SurveyContainer.js +1 -1
- package/dist/esm/components/SuccessContainer.js +1 -2
- package/dist/esm/components/SurveyContainer.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/contextual-survey
|
|
2
2
|
|
|
3
|
+
## 5.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`87b12e64ff750`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/87b12e64ff750) -
|
|
8
|
+
Removed usages of LEGACY icon props
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 5.0.20
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- [`9123fad528082`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9123fad528082) -
|
|
19
|
+
Icon entry point migration update
|
|
20
|
+
|
|
3
21
|
## 5.0.19
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -25,7 +25,6 @@ var _default = exports.default = function _default(_ref) {
|
|
|
25
25
|
spacing: "spacious",
|
|
26
26
|
label: "",
|
|
27
27
|
"aria-hidden": true,
|
|
28
|
-
color: "var(--ds-icon-success, ".concat(_colors.G300, ")")
|
|
29
|
-
LEGACY_margin: "4px 0 0 0"
|
|
28
|
+
color: "var(--ds-icon-success, ".concat(_colors.G300, ")")
|
|
30
29
|
})), children);
|
|
31
30
|
};
|
|
@@ -11,7 +11,7 @@ require("./SurveyContainer.compiled.css");
|
|
|
11
11
|
var React = _interopRequireWildcard(require("react"));
|
|
12
12
|
var _runtime = require("@compiled/react/runtime");
|
|
13
13
|
var _new = require("@atlaskit/button/new");
|
|
14
|
-
var _cross = _interopRequireDefault(require("@atlaskit/icon/core/
|
|
14
|
+
var _cross = _interopRequireDefault(require("@atlaskit/icon/core/cross"));
|
|
15
15
|
var _colors = require("@atlaskit/theme/colors");
|
|
16
16
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
17
17
|
var containerStyles = null;
|
|
@@ -3,7 +3,7 @@ import "./SurveyContainer.compiled.css";
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import { IconButton as Button } from '@atlaskit/button/new';
|
|
6
|
-
import CrossIcon from '@atlaskit/icon/core/
|
|
6
|
+
import CrossIcon from '@atlaskit/icon/core/cross';
|
|
7
7
|
import { N0, N50A, N60A } from '@atlaskit/theme/colors';
|
|
8
8
|
const containerStyles = null;
|
|
9
9
|
const buttonWrapperStyles = null;
|
|
@@ -3,7 +3,7 @@ import "./SurveyContainer.compiled.css";
|
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ax, ix } from "@compiled/react/runtime";
|
|
5
5
|
import { IconButton as Button } from '@atlaskit/button/new';
|
|
6
|
-
import CrossIcon from '@atlaskit/icon/core/
|
|
6
|
+
import CrossIcon from '@atlaskit/icon/core/cross';
|
|
7
7
|
import { N0, N50A, N60A } from '@atlaskit/theme/colors';
|
|
8
8
|
var containerStyles = null;
|
|
9
9
|
var buttonWrapperStyles = null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/contextual-survey",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "A React component used to ask the user for feedback",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@atlaskit/button": "^23.9.0",
|
|
35
|
-
"@atlaskit/checkbox": "^17.
|
|
36
|
-
"@atlaskit/form": "^15.
|
|
35
|
+
"@atlaskit/checkbox": "^17.3.0",
|
|
36
|
+
"@atlaskit/form": "^15.3.0",
|
|
37
37
|
"@atlaskit/heading": "^5.2.0",
|
|
38
|
-
"@atlaskit/icon": "^29.
|
|
39
|
-
"@atlaskit/link": "^3.
|
|
38
|
+
"@atlaskit/icon": "^29.4.0",
|
|
39
|
+
"@atlaskit/link": "^3.3.0",
|
|
40
40
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
41
41
|
"@atlaskit/primitives": "^17.0.0",
|
|
42
42
|
"@atlaskit/textarea": "^8.2.0",
|
|
43
43
|
"@atlaskit/theme": "^21.0.0",
|
|
44
|
-
"@atlaskit/tokens": "^9.
|
|
45
|
-
"@atlaskit/tooltip": "^20.
|
|
44
|
+
"@atlaskit/tokens": "^9.1.0",
|
|
45
|
+
"@atlaskit/tooltip": "^20.12.0",
|
|
46
46
|
"@babel/runtime": "^7.0.0",
|
|
47
47
|
"@compiled/react": "^0.18.6",
|
|
48
48
|
"@emotion/react": "^11.7.1",
|