@atlaskit/help 9.1.4 → 9.1.6

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.
Files changed (49) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/afm-townsquare/tsconfig.json +87 -0
  3. package/afm-volt/tsconfig.json +87 -0
  4. package/dist/cjs/analytics.js +1 -1
  5. package/dist/cjs/components/Article/ArticleLoadingFail/index.js +1 -1
  6. package/dist/cjs/components/Article/HelpArticle/WasHelpfulForm/WasHelpfulNoButton.js +1 -1
  7. package/dist/cjs/components/Article/HelpArticle/WasHelpfulForm/WasHelpfulYesButton.js +1 -1
  8. package/dist/cjs/components/Article/HelpArticle/WasHelpfulForm/index.js +3 -3
  9. package/dist/cjs/components/Article/HelpArticle/index.js +1 -1
  10. package/dist/cjs/components/Article/WhatsNewArticle/index.js +1 -1
  11. package/dist/cjs/components/ArticlesList/ArticlesList.js +2 -0
  12. package/dist/cjs/components/ArticlesList/ArticlesListItem/index.js +1 -1
  13. package/dist/cjs/components/BackButton/index.js +1 -1
  14. package/dist/cjs/components/HelpContentButton/index.js +1 -1
  15. package/dist/cjs/components/RelatedArticles/index.js +1 -1
  16. package/dist/cjs/components/Search/SearchInput/index.js +3 -3
  17. package/dist/cjs/components/WhatsNew/WhatsNewButton/index.js +1 -1
  18. package/dist/cjs/components/WhatsNew/WhatsNewResults/WhatsNewResultsList/WhatsNewResultItem/index.js +1 -1
  19. package/dist/es2019/analytics.js +1 -1
  20. package/dist/es2019/components/Article/ArticleLoadingFail/index.js +1 -1
  21. package/dist/es2019/components/Article/HelpArticle/WasHelpfulForm/WasHelpfulNoButton.js +1 -1
  22. package/dist/es2019/components/Article/HelpArticle/WasHelpfulForm/WasHelpfulYesButton.js +1 -1
  23. package/dist/es2019/components/Article/HelpArticle/WasHelpfulForm/index.js +2 -2
  24. package/dist/es2019/components/Article/HelpArticle/index.js +1 -1
  25. package/dist/es2019/components/Article/WhatsNewArticle/index.js +1 -1
  26. package/dist/es2019/components/ArticlesList/ArticlesList.js +1 -0
  27. package/dist/es2019/components/ArticlesList/ArticlesListItem/index.js +1 -1
  28. package/dist/es2019/components/BackButton/index.js +1 -1
  29. package/dist/es2019/components/HelpContentButton/index.js +1 -1
  30. package/dist/es2019/components/RelatedArticles/index.js +1 -1
  31. package/dist/es2019/components/Search/SearchInput/index.js +2 -2
  32. package/dist/es2019/components/WhatsNew/WhatsNewButton/index.js +1 -1
  33. package/dist/es2019/components/WhatsNew/WhatsNewResults/WhatsNewResultsList/WhatsNewResultItem/index.js +1 -1
  34. package/dist/esm/analytics.js +1 -1
  35. package/dist/esm/components/Article/ArticleLoadingFail/index.js +1 -1
  36. package/dist/esm/components/Article/HelpArticle/WasHelpfulForm/WasHelpfulNoButton.js +1 -1
  37. package/dist/esm/components/Article/HelpArticle/WasHelpfulForm/WasHelpfulYesButton.js +1 -1
  38. package/dist/esm/components/Article/HelpArticle/WasHelpfulForm/index.js +2 -2
  39. package/dist/esm/components/Article/HelpArticle/index.js +1 -1
  40. package/dist/esm/components/Article/WhatsNewArticle/index.js +1 -1
  41. package/dist/esm/components/ArticlesList/ArticlesList.js +1 -0
  42. package/dist/esm/components/ArticlesList/ArticlesListItem/index.js +1 -1
  43. package/dist/esm/components/BackButton/index.js +1 -1
  44. package/dist/esm/components/HelpContentButton/index.js +1 -1
  45. package/dist/esm/components/RelatedArticles/index.js +1 -1
  46. package/dist/esm/components/Search/SearchInput/index.js +2 -2
  47. package/dist/esm/components/WhatsNew/WhatsNewButton/index.js +1 -1
  48. package/dist/esm/components/WhatsNew/WhatsNewResults/WhatsNewResultsList/WhatsNewResultItem/index.js +1 -1
  49. package/package.json +7 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @atlaskit/help
2
2
 
3
+ ## 9.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#188952](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188952)
8
+ [`1a88e6e2601ae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a88e6e2601ae) -
9
+ Migrated usage of renamed/deprecated icons
10
+ - Updated dependencies
11
+
12
+ ## 9.1.5
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 9.1.4
4
19
 
5
20
  ### Patch Changes
@@ -0,0 +1,87 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.townsquare.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../townsquare/tsDist/@atlaskit__help/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../analytics/analytics-next/afm-townsquare/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../design-system/button/afm-townsquare/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../design-system/checkbox/afm-townsquare/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../design-system/form/afm-townsquare/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/heading/afm-townsquare/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../help-article/afm-townsquare/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../help-layout/afm-townsquare/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../../design-system/icon/afm-townsquare/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../../design-system/legacy-custom-icons/afm-townsquare/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../../notifications/notification-indicator/afm-townsquare/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../notifications/notification-log-client/afm-townsquare/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../platform/feature-flags/afm-townsquare/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../design-system/primitives/afm-townsquare/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../design-system/radio/afm-townsquare/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../../design-system/section-message/afm-townsquare/tsconfig.json"
64
+ },
65
+ {
66
+ "path": "../../../design-system/select/afm-townsquare/tsconfig.json"
67
+ },
68
+ {
69
+ "path": "../../../design-system/spinner/afm-townsquare/tsconfig.json"
70
+ },
71
+ {
72
+ "path": "../../../design-system/textarea/afm-townsquare/tsconfig.json"
73
+ },
74
+ {
75
+ "path": "../../../design-system/textfield/afm-townsquare/tsconfig.json"
76
+ },
77
+ {
78
+ "path": "../../../design-system/theme/afm-townsquare/tsconfig.json"
79
+ },
80
+ {
81
+ "path": "../../../design-system/tokens/afm-townsquare/tsconfig.json"
82
+ },
83
+ {
84
+ "path": "../../../design-system/tooltip/afm-townsquare/tsconfig.json"
85
+ }
86
+ ]
87
+ }
@@ -0,0 +1,87 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.volt.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../volt/tsDist/@atlaskit__help/app",
7
+ "rootDir": "../",
8
+ "composite": true
9
+ },
10
+ "include": [
11
+ "../src/**/*.ts",
12
+ "../src/**/*.tsx"
13
+ ],
14
+ "exclude": [
15
+ "../src/**/__tests__/*",
16
+ "../src/**/*.test.*",
17
+ "../src/**/test.*"
18
+ ],
19
+ "references": [
20
+ {
21
+ "path": "../../../analytics/analytics-next/afm-volt/tsconfig.json"
22
+ },
23
+ {
24
+ "path": "../../../design-system/button/afm-volt/tsconfig.json"
25
+ },
26
+ {
27
+ "path": "../../../design-system/checkbox/afm-volt/tsconfig.json"
28
+ },
29
+ {
30
+ "path": "../../../design-system/form/afm-volt/tsconfig.json"
31
+ },
32
+ {
33
+ "path": "../../../design-system/heading/afm-volt/tsconfig.json"
34
+ },
35
+ {
36
+ "path": "../../help-article/afm-volt/tsconfig.json"
37
+ },
38
+ {
39
+ "path": "../../help-layout/afm-volt/tsconfig.json"
40
+ },
41
+ {
42
+ "path": "../../../design-system/icon/afm-volt/tsconfig.json"
43
+ },
44
+ {
45
+ "path": "../../../design-system/legacy-custom-icons/afm-volt/tsconfig.json"
46
+ },
47
+ {
48
+ "path": "../../../notifications/notification-indicator/afm-volt/tsconfig.json"
49
+ },
50
+ {
51
+ "path": "../../../notifications/notification-log-client/afm-volt/tsconfig.json"
52
+ },
53
+ {
54
+ "path": "../../../platform/feature-flags/afm-volt/tsconfig.json"
55
+ },
56
+ {
57
+ "path": "../../../design-system/primitives/afm-volt/tsconfig.json"
58
+ },
59
+ {
60
+ "path": "../../../design-system/radio/afm-volt/tsconfig.json"
61
+ },
62
+ {
63
+ "path": "../../../design-system/section-message/afm-volt/tsconfig.json"
64
+ },
65
+ {
66
+ "path": "../../../design-system/select/afm-volt/tsconfig.json"
67
+ },
68
+ {
69
+ "path": "../../../design-system/spinner/afm-volt/tsconfig.json"
70
+ },
71
+ {
72
+ "path": "../../../design-system/textarea/afm-volt/tsconfig.json"
73
+ },
74
+ {
75
+ "path": "../../../design-system/textfield/afm-volt/tsconfig.json"
76
+ },
77
+ {
78
+ "path": "../../../design-system/theme/afm-volt/tsconfig.json"
79
+ },
80
+ {
81
+ "path": "../../../design-system/tokens/afm-volt/tsconfig.json"
82
+ },
83
+ {
84
+ "path": "../../../design-system/tooltip/afm-volt/tsconfig.json"
85
+ }
86
+ ]
87
+ }
@@ -13,5 +13,5 @@ var createAndFire = exports.createAndFire = x.createAndFireEvent('atlaskit');
13
13
  var defaultAnalyticsAttributes = exports.defaultAnalyticsAttributes = {
14
14
  componentName: 'help',
15
15
  packageName: "@atlaskit/help",
16
- packageVersion: "9.1.3"
16
+ packageVersion: "9.1.5"
17
17
  };
@@ -17,7 +17,7 @@ var _styled = require("./styled");
17
17
  var ANALYTICS_CONTEXT_DATA = {
18
18
  componentName: 'ArticleLoadingFail',
19
19
  packageName: "@atlaskit/help",
20
- packageVersion: "9.1.3"
20
+ packageVersion: "9.1.5"
21
21
  };
22
22
  var ArticleLoadingFail = exports.ArticleLoadingFail = function ArticleLoadingFail(_ref) {
23
23
  var onTryAgainButtonClick = _ref.onTryAgainButtonClick,
@@ -13,7 +13,7 @@ var _messages = require("../../../../messages");
13
13
  var ANALYTICS_CONTEXT_DATA = {
14
14
  componentName: 'ArticleWasHelpfulNoButton',
15
15
  packageName: "@atlaskit/help",
16
- packageVersion: "9.1.3"
16
+ packageVersion: "9.1.5"
17
17
  };
18
18
  var ArticleWasHelpfulNoButton = exports.ArticleWasHelpfulNoButton = function ArticleWasHelpfulNoButton(_ref) {
19
19
  var _ref$isSelected = _ref.isSelected,
@@ -13,7 +13,7 @@ var _messages = require("../../../../messages");
13
13
  var ANALYTICS_CONTEXT_DATA = {
14
14
  componentName: 'ArticleWasHelpfulYesButton',
15
15
  packageName: "@atlaskit/help",
16
- packageVersion: "9.1.3"
16
+ packageVersion: "9.1.5"
17
17
  };
18
18
  var ArticleWasHelpfulYesButton = exports.ArticleWasHelpfulYesButton = function ArticleWasHelpfulYesButton(_ref) {
19
19
  var _ref$isSelected = _ref.isSelected,
@@ -21,7 +21,7 @@ var _form = _interopRequireWildcard(require("@atlaskit/form"));
21
21
  var _radio = require("@atlaskit/radio");
22
22
  var _checkbox = require("@atlaskit/checkbox");
23
23
  var _textarea = _interopRequireDefault(require("@atlaskit/textarea"));
24
- var _successCheckCircle = _interopRequireDefault(require("@atlaskit/icon/core/migration/success--check-circle"));
24
+ var _statusSuccessCheckCircle = _interopRequireDefault(require("@atlaskit/icon/core/migration/status-success--check-circle"));
25
25
  var _theme = require("@atlaskit/theme");
26
26
  var _compiled = require("@atlaskit/primitives/compiled");
27
27
  var _messages = require("../../../../messages");
@@ -35,7 +35,7 @@ var FEEDBACK_REASON_TEXT_MAX_LENGTH = '16000';
35
35
  var ANALYTICS_CONTEXT_DATA = {
36
36
  componentName: 'ArticleWasHelpfulForm',
37
37
  packageName: "@atlaskit/help",
38
- packageVersion: "9.1.3"
38
+ packageVersion: "9.1.5"
39
39
  };
40
40
  var buttonStyles = null;
41
41
  var ArticleWasHelpfulForm = exports.ArticleWasHelpfulForm = function ArticleWasHelpfulForm(_ref) {
@@ -245,7 +245,7 @@ var ArticleWasHelpfulForm = exports.ArticleWasHelpfulForm = function ArticleWasH
245
245
  },
246
246
  role: "img",
247
247
  "aria-label": "Success"
248
- }, /*#__PURE__*/_react.default.createElement(_successCheckCircle.default, {
248
+ }, /*#__PURE__*/_react.default.createElement(_statusSuccessCheckCircle.default, {
249
249
  spacing: "spacious",
250
250
  color: "var(--ds-icon-success, ".concat(_theme.colors.G400, ")"),
251
251
  label: ""
@@ -64,7 +64,7 @@ var HelpArticle = exports.HelpArticle = function HelpArticle(_ref) {
64
64
  analyticsEvent.payload.attributes = {
65
65
  componentName: 'Article',
66
66
  packageName: "@atlaskit/help",
67
- packageVersion: "9.1.3"
67
+ packageVersion: "9.1.5"
68
68
  };
69
69
  if (onRelatedArticlesShowMoreClick) {
70
70
  onRelatedArticlesShowMoreClick(event, analyticsEvent, isCollapsed);
@@ -21,7 +21,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
21
21
  var analyticsContextData = {
22
22
  componentName: 'ArticlesListItem',
23
23
  packageName: "@atlaskit/help",
24
- packageVersion: "9.1.3"
24
+ packageVersion: "9.1.5"
25
25
  };
26
26
  var WhatsNewArticle = exports.WhatsNewArticle = function WhatsNewArticle(_ref) {
27
27
  var formatMessage = _ref.intl.formatMessage,
@@ -11,6 +11,8 @@ var _reactAnimateHeight = _interopRequireDefault(require("react-animate-height")
11
11
  var _primitives = require("@atlaskit/primitives");
12
12
  var _ArticlesListItem = _interopRequireDefault(require("./ArticlesListItem"));
13
13
  var _constants = require("./constants");
14
+ // eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
15
+
14
16
  var listStyles = (0, _primitives.xcss)({
15
17
  listStyle: 'none'
16
18
  });
@@ -17,7 +17,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
17
17
  var ANALYTICS_CONTEXT_DATA = {
18
18
  componentName: 'ArticlesListItem',
19
19
  packageName: "@atlaskit/help",
20
- packageVersion: "9.1.3"
20
+ packageVersion: "9.1.5"
21
21
  };
22
22
  var highlightText = function highlightText(text) {
23
23
  if (!text) {
@@ -56,7 +56,7 @@ var BackButtonWithContext = function BackButtonWithContext(props) {
56
56
  data: {
57
57
  componentName: 'backButton',
58
58
  packageName: "@atlaskit/help",
59
- packageVersion: "9.1.3"
59
+ packageVersion: "9.1.5"
60
60
  }
61
61
  }, /*#__PURE__*/_react.default.createElement(BackButton, props));
62
62
  };
@@ -16,7 +16,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
16
16
  var analitycsContextData = {
17
17
  componentName: 'HelpContentButton',
18
18
  packageName: "@atlaskit/help",
19
- packageVersion: "9.1.3"
19
+ packageVersion: "9.1.5"
20
20
  };
21
21
  var HelpContentButton = function HelpContentButton(_ref) {
22
22
  var _ref$id = _ref.id,
@@ -28,7 +28,7 @@ var _previous = require("../../util/hooks/previous");
28
28
  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); }
29
29
  /** @jsxFrag */
30
30
  var packageName = "@atlaskit/help";
31
- var packageVersion = "9.1.3";
31
+ var packageVersion = "9.1.5";
32
32
  var buttonStyles = null;
33
33
  var RelatedArticles = exports.RelatedArticles = function RelatedArticles(_ref) {
34
34
  var _ref$style = _ref.style,
@@ -16,7 +16,7 @@ var _customThemeButton = _interopRequireDefault(require("@atlaskit/button/custom
16
16
  var _constants = require("@atlaskit/theme/constants");
17
17
  var _spinner = _interopRequireDefault(require("@atlaskit/spinner"));
18
18
  var _search = _interopRequireDefault(require("@atlaskit/icon/core/migration/search"));
19
- var _closeEditorClose = _interopRequireDefault(require("@atlaskit/icon/core/migration/close--editor-close"));
19
+ var _crossEditorClose = _interopRequireDefault(require("@atlaskit/icon/core/migration/cross--editor-close"));
20
20
  var _reactIntlNext = require("react-intl-next");
21
21
  var _Requests = require("../../../model/Requests");
22
22
  var _searchContext = require("../../contexts/searchContext");
@@ -28,7 +28,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
28
28
  var ANALYTICS_CONTEXT_DATA = {
29
29
  componentName: 'searchInput',
30
30
  packageName: "@atlaskit/help",
31
- packageVersion: "9.1.3"
31
+ packageVersion: "9.1.5"
32
32
  };
33
33
  var buttonStyles = null;
34
34
  var SearchInput = exports.SearchInput = function SearchInput(_ref) {
@@ -109,7 +109,7 @@ var SearchInput = exports.SearchInput = function SearchInput(_ref) {
109
109
  style: {
110
110
  "--_1sdd41g": (0, _runtime.ix)("".concat((0, _constants.gridSize)() * 3, "px"))
111
111
  }
112
- }, /*#__PURE__*/_react.default.createElement(_closeEditorClose.default, {
112
+ }, /*#__PURE__*/_react.default.createElement(_crossEditorClose.default, {
113
113
  color: "currentColor",
114
114
  spacing: "spacious",
115
115
  label: ""
@@ -20,7 +20,7 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
20
20
  var ANALYTICS_CONTEXT_DATA = {
21
21
  componentName: 'WhatsNewButton',
22
22
  packageName: "@atlaskit/help",
23
- packageVersion: "9.1.3"
23
+ packageVersion: "9.1.5"
24
24
  };
25
25
  var WhatsNewButton = exports.WhatsNewButton = function WhatsNewButton(_ref) {
26
26
  var productName = _ref.productName,
@@ -15,7 +15,7 @@ var _styled2 = require("./styled");
15
15
  var ANALYTICS_CONTEXT_DATA = {
16
16
  componentName: 'ArticlesListItem',
17
17
  packageName: "@atlaskit/help",
18
- packageVersion: "9.1.3"
18
+ packageVersion: "9.1.5"
19
19
  };
20
20
  var WhatsNewResultListItem = exports.WhatsNewResultListItem = function WhatsNewResultListItem(_ref) {
21
21
  var formatMessage = _ref.intl.formatMessage,
@@ -5,5 +5,5 @@ export const createAndFire = x.createAndFireEvent('atlaskit');
5
5
  export const defaultAnalyticsAttributes = {
6
6
  componentName: 'help',
7
7
  packageName: "@atlaskit/help",
8
- packageVersion: "9.1.3"
8
+ packageVersion: "9.1.5"
9
9
  };
@@ -10,7 +10,7 @@ import { LoadingErrorMessage, LoadingErrorButtonContainer, LoadingErrorHeading }
10
10
  const ANALYTICS_CONTEXT_DATA = {
11
11
  componentName: 'ArticleLoadingFail',
12
12
  packageName: "@atlaskit/help",
13
- packageVersion: "9.1.3"
13
+ packageVersion: "9.1.5"
14
14
  };
15
15
  export const ArticleLoadingFail = ({
16
16
  onTryAgainButtonClick,
@@ -6,7 +6,7 @@ import { messages } from '../../../../messages';
6
6
  const ANALYTICS_CONTEXT_DATA = {
7
7
  componentName: 'ArticleWasHelpfulNoButton',
8
8
  packageName: "@atlaskit/help",
9
- packageVersion: "9.1.3"
9
+ packageVersion: "9.1.5"
10
10
  };
11
11
  export const ArticleWasHelpfulNoButton = ({
12
12
  isSelected = false,
@@ -6,7 +6,7 @@ import { messages } from '../../../../messages';
6
6
  const ANALYTICS_CONTEXT_DATA = {
7
7
  componentName: 'ArticleWasHelpfulYesButton',
8
8
  packageName: "@atlaskit/help",
9
- packageVersion: "9.1.3"
9
+ packageVersion: "9.1.5"
10
10
  };
11
11
  export const ArticleWasHelpfulYesButton = ({
12
12
  isSelected = false,
@@ -14,7 +14,7 @@ import Form, { Field, CheckboxField, FormFooter } from '@atlaskit/form';
14
14
  import { RadioGroup } from '@atlaskit/radio';
15
15
  import { Checkbox } from '@atlaskit/checkbox';
16
16
  import TextArea from '@atlaskit/textarea';
17
- import CheckCircleIcon from '@atlaskit/icon/core/migration/success--check-circle';
17
+ import CheckCircleIcon from '@atlaskit/icon/core/migration/status-success--check-circle';
18
18
  import { colors } from '@atlaskit/theme';
19
19
  import { Text } from '@atlaskit/primitives/compiled';
20
20
  import { messages } from '../../../../messages';
@@ -26,7 +26,7 @@ const FEEDBACK_REASON_TEXT_MAX_LENGTH = '16000';
26
26
  const ANALYTICS_CONTEXT_DATA = {
27
27
  componentName: 'ArticleWasHelpfulForm',
28
28
  packageName: "@atlaskit/help",
29
- packageVersion: "9.1.3"
29
+ packageVersion: "9.1.5"
30
30
  };
31
31
  const buttonStyles = null;
32
32
  export const ArticleWasHelpfulForm = ({
@@ -60,7 +60,7 @@ export const HelpArticle = ({
60
60
  analyticsEvent.payload.attributes = {
61
61
  componentName: 'Article',
62
62
  packageName: "@atlaskit/help",
63
- packageVersion: "9.1.3"
63
+ packageVersion: "9.1.5"
64
64
  };
65
65
  if (onRelatedArticlesShowMoreClick) {
66
66
  onRelatedArticlesShowMoreClick(event, analyticsEvent, isCollapsed);
@@ -13,7 +13,7 @@ import { WhatsNewTypeTitle, WhatsNewTitleText, WhatsNewIconContainer, RelatedLin
13
13
  const analyticsContextData = {
14
14
  componentName: 'ArticlesListItem',
15
15
  packageName: "@atlaskit/help",
16
- packageVersion: "9.1.3"
16
+ packageVersion: "9.1.5"
17
17
  };
18
18
  export const WhatsNewArticle = ({
19
19
  intl: {
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { N30 } from '@atlaskit/theme/colors';
3
3
  import AnimateHeight from 'react-animate-height';
4
+ // eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
4
5
  import { Box, xcss } from '@atlaskit/primitives';
5
6
  import ArticlesListItem from './ArticlesListItem';
6
7
  import { MIN_ITEMS_TO_DISPLAY, ANIMATE_HEIGHT_TRANSITION_DURATION_MS } from './constants';
@@ -8,7 +8,7 @@ import { ArticlesListItemWrapper, ArticlesListItemContainer, ArticlesListItemTit
8
8
  const ANALYTICS_CONTEXT_DATA = {
9
9
  componentName: 'ArticlesListItem',
10
10
  packageName: "@atlaskit/help",
11
- packageVersion: "9.1.3"
11
+ packageVersion: "9.1.5"
12
12
  };
13
13
  const highlightText = text => {
14
14
  if (!text) {
@@ -50,7 +50,7 @@ const BackButtonWithContext = props => {
50
50
  data: {
51
51
  componentName: 'backButton',
52
52
  packageName: "@atlaskit/help",
53
- packageVersion: "9.1.3"
53
+ packageVersion: "9.1.5"
54
54
  }
55
55
  }, /*#__PURE__*/React.createElement(BackButton, props));
56
56
  };
@@ -7,7 +7,7 @@ import { HelpContentButtonContainer, HelpContentButtonIcon, HelpContentButtonTex
7
7
  const analitycsContextData = {
8
8
  componentName: 'HelpContentButton',
9
9
  packageName: "@atlaskit/help",
10
- packageVersion: "9.1.3"
10
+ packageVersion: "9.1.5"
11
11
  };
12
12
  const HelpContentButton = ({
13
13
  id = '',
@@ -16,7 +16,7 @@ import { RelatedArticlesTitle } from './styled';
16
16
  import useCancellablePromise from '../../util/hooks/cancellablePromise';
17
17
  import { usePrevious } from '../../util/hooks/previous';
18
18
  const packageName = "@atlaskit/help";
19
- const packageVersion = "9.1.3";
19
+ const packageVersion = "9.1.5";
20
20
  const buttonStyles = null;
21
21
  export const RelatedArticles = ({
22
22
  style = 'primary',
@@ -8,7 +8,7 @@ import Button from '@atlaskit/button/custom-theme-button';
8
8
  import { gridSize } from '@atlaskit/theme/constants';
9
9
  import Spinner from '@atlaskit/spinner';
10
10
  import SearchIcon from '@atlaskit/icon/core/migration/search';
11
- import EditorCloseIcon from '@atlaskit/icon/core/migration/close--editor-close';
11
+ import EditorCloseIcon from '@atlaskit/icon/core/migration/cross--editor-close';
12
12
  import { injectIntl } from 'react-intl-next';
13
13
  import { REQUEST_STATE } from '../../../model/Requests';
14
14
  import { useSearchContext } from '../../contexts/searchContext';
@@ -19,7 +19,7 @@ import { useNavigationContext } from '../../contexts/navigationContext';
19
19
  const ANALYTICS_CONTEXT_DATA = {
20
20
  componentName: 'searchInput',
21
21
  packageName: "@atlaskit/help",
22
- packageVersion: "9.1.3"
22
+ packageVersion: "9.1.5"
23
23
  };
24
24
  const buttonStyles = null;
25
25
  export const SearchInput = ({
@@ -11,7 +11,7 @@ import { ARTICLE_TYPE } from '../../../model/Help';
11
11
  const ANALYTICS_CONTEXT_DATA = {
12
12
  componentName: 'WhatsNewButton',
13
13
  packageName: "@atlaskit/help",
14
- packageVersion: "9.1.3"
14
+ packageVersion: "9.1.5"
15
15
  };
16
16
  export const WhatsNewButton = ({
17
17
  productName,
@@ -8,7 +8,7 @@ import { WhatsNewResultListItemWrapper, WhatsNewResultListItemTitleContainer, Wh
8
8
  const ANALYTICS_CONTEXT_DATA = {
9
9
  componentName: 'ArticlesListItem',
10
10
  packageName: "@atlaskit/help",
11
- packageVersion: "9.1.3"
11
+ packageVersion: "9.1.5"
12
12
  };
13
13
  export const WhatsNewResultListItem = ({
14
14
  intl: {
@@ -5,5 +5,5 @@ export var createAndFire = x.createAndFireEvent('atlaskit');
5
5
  export var defaultAnalyticsAttributes = {
6
6
  componentName: 'help',
7
7
  packageName: "@atlaskit/help",
8
- packageVersion: "9.1.3"
8
+ packageVersion: "9.1.5"
9
9
  };
@@ -10,7 +10,7 @@ import { LoadingErrorMessage, LoadingErrorButtonContainer, LoadingErrorHeading }
10
10
  var ANALYTICS_CONTEXT_DATA = {
11
11
  componentName: 'ArticleLoadingFail',
12
12
  packageName: "@atlaskit/help",
13
- packageVersion: "9.1.3"
13
+ packageVersion: "9.1.5"
14
14
  };
15
15
  export var ArticleLoadingFail = function ArticleLoadingFail(_ref) {
16
16
  var onTryAgainButtonClick = _ref.onTryAgainButtonClick,
@@ -6,7 +6,7 @@ import { messages } from '../../../../messages';
6
6
  var ANALYTICS_CONTEXT_DATA = {
7
7
  componentName: 'ArticleWasHelpfulNoButton',
8
8
  packageName: "@atlaskit/help",
9
- packageVersion: "9.1.3"
9
+ packageVersion: "9.1.5"
10
10
  };
11
11
  export var ArticleWasHelpfulNoButton = function ArticleWasHelpfulNoButton(_ref) {
12
12
  var _ref$isSelected = _ref.isSelected,
@@ -6,7 +6,7 @@ import { messages } from '../../../../messages';
6
6
  var ANALYTICS_CONTEXT_DATA = {
7
7
  componentName: 'ArticleWasHelpfulYesButton',
8
8
  packageName: "@atlaskit/help",
9
- packageVersion: "9.1.3"
9
+ packageVersion: "9.1.5"
10
10
  };
11
11
  export var ArticleWasHelpfulYesButton = function ArticleWasHelpfulYesButton(_ref) {
12
12
  var _ref$isSelected = _ref.isSelected,
@@ -15,7 +15,7 @@ import Form, { Field, CheckboxField, FormFooter } from '@atlaskit/form';
15
15
  import { RadioGroup } from '@atlaskit/radio';
16
16
  import { Checkbox } from '@atlaskit/checkbox';
17
17
  import TextArea from '@atlaskit/textarea';
18
- import CheckCircleIcon from '@atlaskit/icon/core/migration/success--check-circle';
18
+ import CheckCircleIcon from '@atlaskit/icon/core/migration/status-success--check-circle';
19
19
  import { colors } from '@atlaskit/theme';
20
20
  import { Text } from '@atlaskit/primitives/compiled';
21
21
  import { messages } from '../../../../messages';
@@ -27,7 +27,7 @@ var FEEDBACK_REASON_TEXT_MAX_LENGTH = '16000';
27
27
  var ANALYTICS_CONTEXT_DATA = {
28
28
  componentName: 'ArticleWasHelpfulForm',
29
29
  packageName: "@atlaskit/help",
30
- packageVersion: "9.1.3"
30
+ packageVersion: "9.1.5"
31
31
  };
32
32
  var buttonStyles = null;
33
33
  export var ArticleWasHelpfulForm = function ArticleWasHelpfulForm(_ref) {
@@ -56,7 +56,7 @@ export var HelpArticle = function HelpArticle(_ref) {
56
56
  analyticsEvent.payload.attributes = {
57
57
  componentName: 'Article',
58
58
  packageName: "@atlaskit/help",
59
- packageVersion: "9.1.3"
59
+ packageVersion: "9.1.5"
60
60
  };
61
61
  if (onRelatedArticlesShowMoreClick) {
62
62
  onRelatedArticlesShowMoreClick(event, analyticsEvent, isCollapsed);
@@ -13,7 +13,7 @@ import { WhatsNewTypeTitle, WhatsNewTitleText, WhatsNewIconContainer, RelatedLin
13
13
  var analyticsContextData = {
14
14
  componentName: 'ArticlesListItem',
15
15
  packageName: "@atlaskit/help",
16
- packageVersion: "9.1.3"
16
+ packageVersion: "9.1.5"
17
17
  };
18
18
  export var WhatsNewArticle = function WhatsNewArticle(_ref) {
19
19
  var formatMessage = _ref.intl.formatMessage,
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { N30 } from '@atlaskit/theme/colors';
3
3
  import AnimateHeight from 'react-animate-height';
4
+ // eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
4
5
  import { Box, xcss } from '@atlaskit/primitives';
5
6
  import ArticlesListItem from './ArticlesListItem';
6
7
  import { MIN_ITEMS_TO_DISPLAY, ANIMATE_HEIGHT_TRANSITION_DURATION_MS } from './constants';
@@ -8,7 +8,7 @@ import { ArticlesListItemWrapper, ArticlesListItemContainer, ArticlesListItemTit
8
8
  var ANALYTICS_CONTEXT_DATA = {
9
9
  componentName: 'ArticlesListItem',
10
10
  packageName: "@atlaskit/help",
11
- packageVersion: "9.1.3"
11
+ packageVersion: "9.1.5"
12
12
  };
13
13
  var highlightText = function highlightText(text) {
14
14
  if (!text) {
@@ -49,7 +49,7 @@ var BackButtonWithContext = function BackButtonWithContext(props) {
49
49
  data: {
50
50
  componentName: 'backButton',
51
51
  packageName: "@atlaskit/help",
52
- packageVersion: "9.1.3"
52
+ packageVersion: "9.1.5"
53
53
  }
54
54
  }, /*#__PURE__*/React.createElement(BackButton, props));
55
55
  };
@@ -7,7 +7,7 @@ import { HelpContentButtonContainer, HelpContentButtonIcon, HelpContentButtonTex
7
7
  var analitycsContextData = {
8
8
  componentName: 'HelpContentButton',
9
9
  packageName: "@atlaskit/help",
10
- packageVersion: "9.1.3"
10
+ packageVersion: "9.1.5"
11
11
  };
12
12
  var HelpContentButton = function HelpContentButton(_ref) {
13
13
  var _ref$id = _ref.id,
@@ -20,7 +20,7 @@ import { RelatedArticlesTitle } from './styled';
20
20
  import useCancellablePromise from '../../util/hooks/cancellablePromise';
21
21
  import { usePrevious } from '../../util/hooks/previous';
22
22
  var packageName = "@atlaskit/help";
23
- var packageVersion = "9.1.3";
23
+ var packageVersion = "9.1.5";
24
24
  var buttonStyles = null;
25
25
  export var RelatedArticles = function RelatedArticles(_ref) {
26
26
  var _ref$style = _ref.style,
@@ -8,7 +8,7 @@ import Button from '@atlaskit/button/custom-theme-button';
8
8
  import { gridSize } from '@atlaskit/theme/constants';
9
9
  import Spinner from '@atlaskit/spinner';
10
10
  import SearchIcon from '@atlaskit/icon/core/migration/search';
11
- import EditorCloseIcon from '@atlaskit/icon/core/migration/close--editor-close';
11
+ import EditorCloseIcon from '@atlaskit/icon/core/migration/cross--editor-close';
12
12
  import { injectIntl } from 'react-intl-next';
13
13
  import { REQUEST_STATE } from '../../../model/Requests';
14
14
  import { useSearchContext } from '../../contexts/searchContext';
@@ -19,7 +19,7 @@ import { useNavigationContext } from '../../contexts/navigationContext';
19
19
  var ANALYTICS_CONTEXT_DATA = {
20
20
  componentName: 'searchInput',
21
21
  packageName: "@atlaskit/help",
22
- packageVersion: "9.1.3"
22
+ packageVersion: "9.1.5"
23
23
  };
24
24
  var buttonStyles = null;
25
25
  export var SearchInput = function SearchInput(_ref) {
@@ -11,7 +11,7 @@ import { ARTICLE_TYPE } from '../../../model/Help';
11
11
  var ANALYTICS_CONTEXT_DATA = {
12
12
  componentName: 'WhatsNewButton',
13
13
  packageName: "@atlaskit/help",
14
- packageVersion: "9.1.3"
14
+ packageVersion: "9.1.5"
15
15
  };
16
16
  export var WhatsNewButton = function WhatsNewButton(_ref) {
17
17
  var productName = _ref.productName,
@@ -8,7 +8,7 @@ import { WhatsNewResultListItemWrapper, WhatsNewResultListItemTitleContainer, Wh
8
8
  var ANALYTICS_CONTEXT_DATA = {
9
9
  componentName: 'ArticlesListItem',
10
10
  packageName: "@atlaskit/help",
11
- packageVersion: "9.1.3"
11
+ packageVersion: "9.1.5"
12
12
  };
13
13
  export var WhatsNewResultListItem = function WhatsNewResultListItem(_ref) {
14
14
  var formatMessage = _ref.intl.formatMessage,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/help",
3
- "version": "9.1.4",
3
+ "version": "9.1.6",
4
4
  "description": "A cross-product help component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -33,8 +33,7 @@
33
33
  "team": "Self-Help Experiences",
34
34
  "website": {
35
35
  "name": "Help"
36
- },
37
- "runReact18": true
36
+ }
38
37
  },
39
38
  "dependencies": {
40
39
  "@atlaskit/analytics-next": "^11.1.0",
@@ -44,20 +43,20 @@
44
43
  "@atlaskit/heading": "^5.2.0",
45
44
  "@atlaskit/help-article": "^6.0.0",
46
45
  "@atlaskit/help-layout": "^6.3.0",
47
- "@atlaskit/icon": "^27.2.0",
46
+ "@atlaskit/icon": "^27.5.0",
48
47
  "@atlaskit/legacy-custom-icons": "^0.22.0",
49
48
  "@atlaskit/notification-indicator": "^10.0.0",
50
49
  "@atlaskit/notification-log-client": "^6.2.0",
51
50
  "@atlaskit/platform-feature-flags": "^1.1.0",
52
- "@atlaskit/primitives": "^14.9.0",
51
+ "@atlaskit/primitives": "^14.10.0",
53
52
  "@atlaskit/radio": "^8.1.0",
54
53
  "@atlaskit/section-message": "^8.2.0",
55
- "@atlaskit/select": "^21.0.0",
54
+ "@atlaskit/select": "^21.2.0",
56
55
  "@atlaskit/spinner": "^18.0.0",
57
56
  "@atlaskit/textarea": "^8.0.0",
58
57
  "@atlaskit/textfield": "^8.0.0",
59
- "@atlaskit/theme": "^18.0.0",
60
- "@atlaskit/tokens": "^5.4.0",
58
+ "@atlaskit/theme": "^19.0.0",
59
+ "@atlaskit/tokens": "^5.6.0",
61
60
  "@atlaskit/tooltip": "^20.3.0",
62
61
  "@babel/runtime": "^7.0.0",
63
62
  "@compiled/react": "^0.18.3",