@atlaskit/logo 13.8.2 → 13.9.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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @atlaskit/logo
2
2
 
3
+ ## 13.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`76eadca8ef3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76eadca8ef3) - Adds Jira Align logo, icon and wordmark.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
3
13
  ## 13.8.2
4
14
 
5
15
  ### Patch Changes
package/dist/cjs/index.js CHANGED
@@ -117,6 +117,24 @@ Object.defineProperty(exports, "HipchatWordmark", {
117
117
  return _hipchatLogo.HipchatWordmark;
118
118
  }
119
119
  });
120
+ Object.defineProperty(exports, "JiraAlignIcon", {
121
+ enumerable: true,
122
+ get: function get() {
123
+ return _jiraAlignLogo.JiraAlignIcon;
124
+ }
125
+ });
126
+ Object.defineProperty(exports, "JiraAlignLogo", {
127
+ enumerable: true,
128
+ get: function get() {
129
+ return _jiraAlignLogo.JiraAlignLogo;
130
+ }
131
+ });
132
+ Object.defineProperty(exports, "JiraAlignWordmark", {
133
+ enumerable: true,
134
+ get: function get() {
135
+ return _jiraAlignLogo.JiraAlignWordmark;
136
+ }
137
+ });
120
138
  Object.defineProperty(exports, "JiraCoreIcon", {
121
139
  enumerable: true,
122
140
  get: function get() {
@@ -330,6 +348,8 @@ var _halpLogo = require("./halp-logo");
330
348
 
331
349
  var _hipchatLogo = require("./hipchat-logo");
332
350
 
351
+ var _jiraAlignLogo = require("./jira-align-logo");
352
+
333
353
  var _jiraCoreLogo = require("./jira-core-logo");
334
354
 
335
355
  var _jiraLogo = require("./jira-logo");
@@ -0,0 +1,91 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.JiraAlignIcon = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _reactUid = require("react-uid");
13
+
14
+ var _constants = require("../constants");
15
+
16
+ var _utils = require("../utils");
17
+
18
+ var _wrapper = _interopRequireDefault(require("../wrapper"));
19
+
20
+ /* eslint-disable max-len */
21
+ var svg = function svg(_ref) {
22
+ var appearance = _ref.appearance,
23
+ size = _ref.size,
24
+ iconGradientStart = _ref.iconGradientStart,
25
+ iconGradientStop = _ref.iconGradientStop,
26
+ iconColor = _ref.iconColor;
27
+ var colors = {
28
+ iconGradientStart: iconGradientStart,
29
+ iconGradientStop: iconGradientStop,
30
+ iconColor: iconColor
31
+ }; // Will be fixed upon removal of deprecated iconGradientStart and
32
+ // iconGradientStop props, or with React 18's useId() hook when we update.
33
+ // eslint-disable-next-line @repo/internal/react/disallow-unstable-values
34
+
35
+ var id = (0, _reactUid.uid)({
36
+ iconGradientStart: iconGradientStop
37
+ });
38
+
39
+ if (appearance) {
40
+ colors = (0, _utils.getColorsFromAppearance)(appearance);
41
+ id = "jiraIcon-".concat(appearance);
42
+ }
43
+
44
+ return "\n <svg height=\"32\" viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\" focusable=\"false\" aria-hidden=\"true\">\n <defs>\n <linearGradient id=\"".concat(id, "-1\" x1=\"15.1552\" y1=\"20.5458\" x2=\"16.7055\" y2=\"12.6394\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n <linearGradient id=\"").concat(id, "-2\" x1=\"18.3249\" y1=\"10.8472\" x2=\"16.7745\" y2=\"18.7536\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n </defs>\n <path fill=\"url(#").concat(id, "-1)\" d=\"M6.93411 5.78784C6.93411 9.51693 9.94886 12.5581 13.6455 12.5581H19.8545V18.8578H26.5659V6.91019C26.5659 6.33091 26.0993 5.82405 25.5251 5.82405L6.93411 5.78784Z\" />\n <path fill=\"url(#").concat(id, "-2)\" d=\"M26.53 25.5918C26.53 21.8627 23.5152 18.8577 19.8186 18.8577H13.6455V12.5581H6.93411V24.5057C6.93411 25.085 7.40068 25.5918 7.97492 25.5918H26.53Z\" />\n </svg>");
45
+ };
46
+ /**
47
+ * __Jira Align icon__
48
+ *
49
+ * The Jira Align icon without an accompanying wordmark.
50
+ *
51
+ * - [Examples](https://atlassian.design/components/logo/examples)
52
+ * - [Code](https://atlassian.design/components/logo/code)
53
+ * - [Usage](https://atlassian.design/components/logo/usage)
54
+ */
55
+
56
+
57
+ var JiraAlignIcon = function JiraAlignIcon(_ref2) {
58
+ var appearance = _ref2.appearance,
59
+ _ref2$label = _ref2.label,
60
+ label = _ref2$label === void 0 ? 'Jira Align' : _ref2$label,
61
+ _ref2$size = _ref2.size,
62
+ size = _ref2$size === void 0 ? _constants.defaultLogoParams.size : _ref2$size,
63
+ testId = _ref2.testId,
64
+ _ref2$textColor = _ref2.textColor,
65
+ textColor = _ref2$textColor === void 0 ? _constants.defaultLogoParams.textColor : _ref2$textColor,
66
+ _ref2$iconColor = _ref2.iconColor,
67
+ iconColor = _ref2$iconColor === void 0 ? _constants.defaultLogoParams.iconColor : _ref2$iconColor,
68
+ _ref2$iconGradientSta = _ref2.iconGradientStart,
69
+ iconGradientStart = _ref2$iconGradientSta === void 0 ? _constants.defaultLogoParams.iconGradientStart : _ref2$iconGradientSta,
70
+ _ref2$iconGradientSto = _ref2.iconGradientStop,
71
+ iconGradientStop = _ref2$iconGradientSto === void 0 ? _constants.defaultLogoParams.iconGradientStop : _ref2$iconGradientSto;
72
+ return /*#__PURE__*/_react.default.createElement(_wrapper.default, {
73
+ appearance: appearance,
74
+ label: label,
75
+ svg: svg({
76
+ appearance: appearance,
77
+ iconGradientStart: iconGradientStart,
78
+ iconGradientStop: iconGradientStop,
79
+ iconColor: iconColor,
80
+ size: size
81
+ }),
82
+ iconColor: iconColor,
83
+ iconGradientStart: iconGradientStart,
84
+ iconGradientStop: iconGradientStop,
85
+ size: size,
86
+ testId: testId,
87
+ textColor: textColor
88
+ });
89
+ };
90
+
91
+ exports.JiraAlignIcon = JiraAlignIcon;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "JiraAlignIcon", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _icon.JiraAlignIcon;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "JiraAlignLogo", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _logo.JiraAlignLogo;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "JiraAlignWordmark", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _wordmark.JiraAlignWordmark;
22
+ }
23
+ });
24
+
25
+ var _icon = require("./icon");
26
+
27
+ var _logo = require("./logo");
28
+
29
+ var _wordmark = require("./wordmark");
@@ -0,0 +1,94 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.JiraAlignLogo = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _reactUid = require("react-uid");
13
+
14
+ var _constants = require("../constants");
15
+
16
+ var _utils = require("../utils");
17
+
18
+ var _wrapper = _interopRequireDefault(require("../wrapper"));
19
+
20
+ /* eslint-disable max-len */
21
+ var svg = function svg(_ref) {
22
+ var appearance = _ref.appearance,
23
+ iconGradientStart = _ref.iconGradientStart,
24
+ iconGradientStop = _ref.iconGradientStop,
25
+ iconColor = _ref.iconColor,
26
+ textColor = _ref.textColor;
27
+ var colors = {
28
+ iconGradientStart: iconGradientStart,
29
+ iconGradientStop: iconGradientStop,
30
+ iconColor: iconColor,
31
+ textColor: textColor
32
+ }; // Will be fixed upon removal of deprecated iconGradientStart and
33
+ // iconGradientStop props, or with React 18's useId() hook when we update.
34
+ // eslint-disable-next-line @repo/internal/react/disallow-unstable-values
35
+
36
+ var id = (0, _reactUid.uid)({
37
+ iconGradientStart: iconGradientStop
38
+ });
39
+
40
+ if (appearance) {
41
+ colors = (0, _utils.getColorsFromAppearance)(appearance);
42
+ id = "JiraAlignLogo-".concat(appearance);
43
+ }
44
+
45
+ return "\n <svg height=\"32\" viewBox=\"0 0 147 32\" xmlns=\"http://www.w3.org/2000/svg\" focusable=\"false\" aria-hidden=\"true\">\n <defs>\n <linearGradient id=\"".concat(id, "-1\" x1=\"8.97104\" y1=\"20.5458\" x2=\"10.5214\" y2=\"12.6394\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n <linearGradient id=\"").concat(id, "-2\" x1=\"12.1408\" y1=\"10.8472\" x2=\"10.5904\" y2=\"18.7536\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n </defs>\n <g fill=\"").concat(colors.textColor, "\">\n <path d=\"M36.6401 4.60829H39.4754V18.6632C39.4754 22.3692 37.7886 24.9565 33.8766 24.9565C32.4051 24.9565 31.2566 24.7117 30.467 24.432V21.7399C31.3284 22.0895 32.3692 22.2644 33.41 22.2644C35.8146 22.2644 36.6401 20.8658 36.6401 18.838V4.60829Z\" />\n <path d=\"M44.6076 3.52444C45.7202 3.52444 46.5097 4.18873 46.5097 5.37745C46.5097 6.53121 45.7202 7.23046 44.6076 7.23046C43.495 7.23046 42.7054 6.56618 42.7054 5.37745C42.7054 4.18873 43.495 3.52444 44.6076 3.52444ZM43.2438 9.4331H45.9714V24.8166H43.2438V9.4331Z\" />\n <path d=\"M52.7545 24.8166H50.0987V9.43309H52.7545V12.1252C53.6877 10.3072 55.2668 9.01354 58.3534 9.18835V11.7756C54.872 11.426 52.7545 12.4399 52.7545 15.7263V24.8166Z\" />\n <path d=\"M71.0943 22.0546C70.0894 24.0824 68.1872 25.1313 65.7467 25.1313C61.5476 25.1313 59.4301 21.67 59.4301 17.1249C59.4301 12.7895 61.6552 9.11844 66.0697 9.11844C68.3666 9.11844 70.1611 10.1324 71.0943 12.1252V9.4331H73.8219V24.8166H71.0943V22.0546ZM66.4645 22.6489C68.905 22.6489 71.0584 21.1455 71.0584 17.7192V16.4955C71.0584 13.0692 69.0844 11.5658 66.7516 11.5658C63.701 11.5658 62.1218 13.5237 62.1218 17.0899C62.1577 20.8309 63.6651 22.6489 66.4645 22.6489Z\" />\n <path d=\"M83.9431 20.2715L82.2204 24.8166H79.0262L87.209 4.60829H90.798L98.9809 24.8166H95.7867L94.064 20.2365C92.1977 20.6211 90.5827 20.7959 88.9318 20.7959C87.3167 20.7959 85.7017 20.5862 83.9431 20.2715ZM93.2027 17.929L89.0035 6.84589L84.8044 17.964C86.3477 18.2087 87.6397 18.3486 88.8959 18.3486C90.2238 18.3136 91.5876 18.1737 93.2027 17.929Z\" />\n <path d=\"M105.082 24.9215C102.498 24.9215 100.847 23.7328 100.847 20.9008V3H103.575V20.5512C103.575 21.9497 104.508 22.4391 105.692 22.4391C105.979 22.4391 106.159 22.4391 106.482 22.4042V24.7816C106.266 24.8516 105.8 24.9215 105.082 24.9215Z\" />\n <path d=\"M110.501 3.52444C111.614 3.52444 112.404 4.18873 112.404 5.37745C112.404 6.53121 111.614 7.23046 110.501 7.23046C109.389 7.23046 108.599 6.56618 108.599 5.37745C108.599 4.18873 109.389 3.52444 110.501 3.52444ZM109.102 9.4331H111.829V24.8166H109.102V9.4331Z\" />\n <path d=\"M126.58 22.0546C125.575 24.0824 123.673 25.1313 121.233 25.1313C117.069 25.1313 114.988 21.67 114.988 17.1249C114.988 12.7895 117.177 9.11844 121.556 9.11844C123.852 9.11844 125.647 10.1324 126.58 12.1252V9.4331H129.236V23.4181C129.236 27.9283 127.047 30.97 121.412 30.97C118.756 30.97 117.321 30.6204 115.777 30.1309V27.5437C117.5 28.1031 119.33 28.4527 121.268 28.4527C125.216 28.4527 126.58 26.3899 126.58 23.523V22.0546ZM121.95 22.6489C124.391 22.6489 126.544 21.1455 126.544 17.7192V16.4955C126.544 13.0692 124.57 11.5658 122.237 11.5658C119.187 11.5658 117.608 13.5237 117.608 17.0899C117.644 20.8309 119.151 22.6489 121.95 22.6489Z\" />\n <path d=\"M146.75 24.8166H144.023V15.5166C144.023 12.7545 142.874 11.5309 140.29 11.5309C137.778 11.5309 136.019 13.1741 136.019 16.2858V24.8516H133.292V9.46807H136.019V11.9854C137.024 10.1673 138.89 9.15341 141.008 9.15341C144.633 9.15341 146.714 11.6008 146.714 15.8312V24.8166H146.75Z\" />\n <path fill=\"url(#").concat(id, "-1)\" d=\"M0.75 5.78784C0.75 9.51693 3.76475 12.5581 7.46141 12.5581H13.6704V18.8578H20.3818V6.91019C20.3818 6.33091 19.9152 5.82405 19.341 5.82405L0.75 5.78784Z\" />\n <path fill=\"url(#").concat(id, "-2)\" d=\"M20.3459 25.5918C20.3459 21.8627 17.3311 18.8577 13.6345 18.8577H7.46141V12.5581H0.75V24.5057C0.75 25.085 1.21657 25.5918 1.79081 25.5918H20.3459Z\" />\n </g>\n </svg>\n ");
46
+ };
47
+ /**
48
+ * __Jira Align logo__
49
+ *
50
+ * The Jira Align logo with both the wordmark and the icon combined.
51
+ *
52
+ * - [Examples](https://atlassian.design/components/logo/examples)
53
+ * - [Code](https://atlassian.design/components/logo/code)
54
+ * - [Usage](https://atlassian.design/components/logo/usage)
55
+ */
56
+
57
+
58
+ var JiraAlignLogo = function JiraAlignLogo(_ref2) {
59
+ var appearance = _ref2.appearance,
60
+ _ref2$label = _ref2.label,
61
+ label = _ref2$label === void 0 ? 'Jira Align' : _ref2$label,
62
+ _ref2$size = _ref2.size,
63
+ size = _ref2$size === void 0 ? _constants.defaultLogoParams.size : _ref2$size,
64
+ testId = _ref2.testId,
65
+ _ref2$iconColor = _ref2.iconColor,
66
+ iconColor = _ref2$iconColor === void 0 ? _constants.defaultLogoParams.iconColor : _ref2$iconColor,
67
+ _ref2$iconGradientSta = _ref2.iconGradientStart,
68
+ iconGradientStart = _ref2$iconGradientSta === void 0 ? _constants.defaultLogoParams.iconGradientStart : _ref2$iconGradientSta,
69
+ _ref2$iconGradientSto = _ref2.iconGradientStop,
70
+ iconGradientStop = _ref2$iconGradientSto === void 0 ? _constants.defaultLogoParams.iconGradientStop : _ref2$iconGradientSto,
71
+ _ref2$textColor = _ref2.textColor,
72
+ textColor = _ref2$textColor === void 0 ? _constants.defaultLogoParams.textColor : _ref2$textColor;
73
+ return /*#__PURE__*/_react.default.createElement(_wrapper.default, {
74
+ appearance: appearance,
75
+ label: label,
76
+ iconColor: iconColor,
77
+ iconGradientStart: iconGradientStart,
78
+ iconGradientStop: iconGradientStop,
79
+ size: size,
80
+ svg: svg({
81
+ appearance: appearance,
82
+ iconGradientStart: iconGradientStart,
83
+ iconGradientStop: iconGradientStop,
84
+ iconColor: iconColor,
85
+ textColor: textColor,
86
+ size: size,
87
+ label: label
88
+ }),
89
+ testId: testId,
90
+ textColor: textColor
91
+ });
92
+ };
93
+
94
+ exports.JiraAlignLogo = JiraAlignLogo;
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.JiraAlignWordmark = void 0;
9
+
10
+ var _react = _interopRequireDefault(require("react"));
11
+
12
+ var _constants = require("../constants");
13
+
14
+ var _utils = require("../utils");
15
+
16
+ var _wrapper = _interopRequireDefault(require("../wrapper"));
17
+
18
+ /* eslint-disable max-len */
19
+ var svg = function svg(_ref) {
20
+ var appearance = _ref.appearance,
21
+ textColor = _ref.textColor;
22
+ var colors = {
23
+ textColor: textColor
24
+ };
25
+
26
+ if (appearance) {
27
+ colors = (0, _utils.getColorsFromAppearance)(appearance);
28
+ }
29
+
30
+ return "\n <svg height=\"32\" viewBox=\"0 0 117 32\" xmlns=\"http://www.w3.org/2000/svg\" focusable=\"false\" aria-hidden=\"true\">\n <g fill=\"".concat(colors.textColor, "\">\n <path d=\"M6.60677 4.66543H9.44207V19.2197C9.44207 23.0574 7.75525 25.7366 3.84325 25.7366C2.37177 25.7366 1.22329 25.4832 0.433716 25.1935V22.4058C1.29507 22.7678 2.33588 22.9488 3.37668 22.9488C5.7813 22.9488 6.60677 21.5006 6.60677 19.4008V4.66543Z\" />\n <path d=\"M14.5743 3.54307C15.6868 3.54307 16.4764 4.23096 16.4764 5.46192C16.4764 6.65668 15.6868 7.38078 14.5743 7.38078C13.4617 7.38078 12.6721 6.69289 12.6721 5.46192C12.6721 4.23096 13.4617 3.54307 14.5743 3.54307ZM13.2104 9.66167H15.9381V25.5918H13.2104V9.66167Z\" />\n <path d=\"M22.7212 25.5918H20.0654V9.66166H22.7212V12.4494C23.6543 10.5668 25.2335 9.22721 28.32 9.40823V12.0874C24.8387 11.7253 22.7212 12.7753 22.7212 16.1785V25.5918Z\" />\n <path d=\"M41.061 22.7316C40.056 24.8315 38.1539 25.9176 35.7134 25.9176C31.5142 25.9176 29.3967 22.3333 29.3967 17.6267C29.3967 13.1373 31.6219 9.33583 36.0364 9.33583C38.3333 9.33583 40.1278 10.3858 41.061 12.4494V9.66167H43.7886V25.5918H41.061V22.7316ZM36.4312 23.3471C38.8717 23.3471 41.0251 21.7903 41.0251 18.2422V16.975C41.0251 13.427 39.0511 11.8702 36.7183 11.8702C33.6676 11.8702 32.0885 13.8976 32.0885 17.5905C32.1244 21.4644 33.6317 23.3471 36.4312 23.3471Z\" />\n <path d=\"M53.9098 20.8852L52.187 25.5918H48.9928L57.1757 4.66543H60.7647L68.9476 25.5918H65.7534L64.0307 20.849C62.1644 21.2472 60.5494 21.4282 58.8984 21.4282C57.2834 21.4282 55.6684 21.211 53.9098 20.8852ZM63.1693 18.4594L58.9702 6.98254L54.7711 18.4956C56.3144 18.7491 57.6064 18.8939 58.8626 18.8939C60.1905 18.8577 61.5543 18.7129 63.1693 18.4594Z\" />\n <path d=\"M75.0487 25.7004C72.4646 25.7004 70.8137 24.4694 70.8137 21.5368V3H73.5413V21.1748C73.5413 22.623 74.4745 23.1298 75.6588 23.1298C75.9459 23.1298 76.1254 23.1298 76.4484 23.0936V25.5556C76.2331 25.628 75.7665 25.7004 75.0487 25.7004Z\" />\n <path d=\"M80.468 3.54307C81.5806 3.54307 82.3702 4.23096 82.3702 5.46192C82.3702 6.65668 81.5806 7.38078 80.468 7.38078C79.3554 7.38078 78.5659 6.69289 78.5659 5.46192C78.5659 4.23096 79.3554 3.54307 80.468 3.54307ZM79.0683 9.66167H81.7959V25.5918H79.0683V9.66167Z\" />\n <path d=\"M96.5468 22.7316C95.5419 24.8315 93.6397 25.9176 91.1992 25.9176C87.036 25.9176 84.9544 22.3333 84.9544 17.6267C84.9544 13.1373 87.1437 9.33583 91.5222 9.33583C93.8192 9.33583 95.6137 10.3858 96.5468 12.4494V9.66167H99.2026V24.1436C99.2026 28.814 97.0134 31.9638 91.3787 31.9638C88.7228 31.9638 87.2872 31.6018 85.7439 31.0949V28.4157C87.4667 28.995 89.297 29.3571 91.2351 29.3571C95.183 29.3571 96.5468 27.221 96.5468 24.2522V22.7316ZM91.917 23.3471C94.3575 23.3471 96.5109 21.7903 96.5109 18.2422V16.975C96.5109 13.427 94.537 11.8702 92.2041 11.8702C89.1535 11.8702 87.5743 13.8976 87.5743 17.5905C87.6102 21.4644 89.1176 23.3471 91.917 23.3471Z\" />\n <path d=\"M116.717 25.5918H113.989V15.9613C113.989 13.1011 112.841 11.834 110.257 11.834C107.744 11.834 105.986 13.5356 105.986 16.7578V25.628H103.258V9.69789H105.986V12.3046C106.991 10.422 108.857 9.37205 110.975 9.37205C114.599 9.37205 116.681 11.9064 116.681 16.2872V25.5918H116.717Z\" />\n </g>\n </svg> \n ");
31
+ };
32
+ /**
33
+ * __Jira Align wordmark__
34
+ *
35
+ * The Jira Align brand/product name styled as a logo, without an accompanying icon.
36
+ *
37
+ * - [Examples](https://atlassian.design/components/logo/examples)
38
+ * - [Code](https://atlassian.design/components/logo/code)
39
+ * - [Usage](https://atlassian.design/components/logo/usage)
40
+ */
41
+
42
+
43
+ var JiraAlignWordmark = function JiraAlignWordmark(_ref2) {
44
+ var appearance = _ref2.appearance,
45
+ _ref2$label = _ref2.label,
46
+ label = _ref2$label === void 0 ? 'Jira Align' : _ref2$label,
47
+ _ref2$size = _ref2.size,
48
+ size = _ref2$size === void 0 ? _constants.defaultLogoParams.size : _ref2$size,
49
+ testId = _ref2.testId,
50
+ _ref2$textColor = _ref2.textColor,
51
+ textColor = _ref2$textColor === void 0 ? _constants.defaultLogoParams.textColor : _ref2$textColor;
52
+ return /*#__PURE__*/_react.default.createElement(_wrapper.default, {
53
+ appearance: appearance,
54
+ label: label,
55
+ size: size,
56
+ svg: svg({
57
+ appearance: appearance,
58
+ textColor: textColor
59
+ }),
60
+ testId: testId,
61
+ textColor: textColor
62
+ });
63
+ };
64
+
65
+ exports.JiraAlignWordmark = JiraAlignWordmark;
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.8.2",
3
+ "version": "13.9.0",
4
4
  "sideEffects": false
5
5
  }
@@ -5,6 +5,7 @@ export { CompassIcon, CompassLogo, CompassWordmark } from './compass-logo';
5
5
  export { ConfluenceIcon, ConfluenceLogo, ConfluenceWordmark } from './confluence-logo';
6
6
  export { HalpIcon, HalpLogo, HalpWordmark } from './halp-logo';
7
7
  export { HipchatIcon, HipchatLogo, HipchatWordmark } from './hipchat-logo';
8
+ export { JiraAlignIcon, JiraAlignLogo, JiraAlignWordmark } from './jira-align-logo';
8
9
  export { JiraCoreIcon, JiraCoreLogo, JiraCoreWordmark } from './jira-core-logo';
9
10
  export { JiraIcon, JiraLogo, JiraWordmark } from './jira-logo';
10
11
  export { JiraServiceDeskIcon, JiraServiceDeskLogo, JiraServiceDeskWordmark } from './jira-service-desk-logo';
@@ -0,0 +1,86 @@
1
+ /* eslint-disable max-len */
2
+ import React from 'react';
3
+ import { uid } from 'react-uid';
4
+ import { defaultLogoParams } from '../constants';
5
+ import { getColorsFromAppearance } from '../utils';
6
+ import Wrapper from '../wrapper';
7
+
8
+ const svg = ({
9
+ appearance,
10
+ size,
11
+ iconGradientStart,
12
+ iconGradientStop,
13
+ iconColor
14
+ }) => {
15
+ let colors = {
16
+ iconGradientStart,
17
+ iconGradientStop,
18
+ iconColor
19
+ }; // Will be fixed upon removal of deprecated iconGradientStart and
20
+ // iconGradientStop props, or with React 18's useId() hook when we update.
21
+ // eslint-disable-next-line @repo/internal/react/disallow-unstable-values
22
+
23
+ let id = uid({
24
+ iconGradientStart: iconGradientStop
25
+ });
26
+
27
+ if (appearance) {
28
+ colors = getColorsFromAppearance(appearance);
29
+ id = `jiraIcon-${appearance}`;
30
+ }
31
+
32
+ return `
33
+ <svg height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" focusable="false" aria-hidden="true">
34
+ <defs>
35
+ <linearGradient id="${id}-1" x1="15.1552" y1="20.5458" x2="16.7055" y2="12.6394" gradientUnits="userSpaceOnUse">
36
+ <stop offset="0.15" stop-color="${colors.iconGradientStart}" ${colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : ''} />
37
+ <stop stop-color="${colors.iconGradientStop}" offset="100%"></stop>
38
+ </linearGradient>
39
+ <linearGradient id="${id}-2" x1="18.3249" y1="10.8472" x2="16.7745" y2="18.7536" gradientUnits="userSpaceOnUse">
40
+ <stop offset="0.15" stop-color="${colors.iconGradientStart}" ${colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : ''} />
41
+ <stop stop-color="${colors.iconGradientStop}" offset="100%"></stop>
42
+ </linearGradient>
43
+ </defs>
44
+ <path fill="url(#${id}-1)" d="M6.93411 5.78784C6.93411 9.51693 9.94886 12.5581 13.6455 12.5581H19.8545V18.8578H26.5659V6.91019C26.5659 6.33091 26.0993 5.82405 25.5251 5.82405L6.93411 5.78784Z" />
45
+ <path fill="url(#${id}-2)" d="M26.53 25.5918C26.53 21.8627 23.5152 18.8577 19.8186 18.8577H13.6455V12.5581H6.93411V24.5057C6.93411 25.085 7.40068 25.5918 7.97492 25.5918H26.53Z" />
46
+ </svg>`;
47
+ };
48
+ /**
49
+ * __Jira Align icon__
50
+ *
51
+ * The Jira Align icon without an accompanying wordmark.
52
+ *
53
+ * - [Examples](https://atlassian.design/components/logo/examples)
54
+ * - [Code](https://atlassian.design/components/logo/code)
55
+ * - [Usage](https://atlassian.design/components/logo/usage)
56
+ */
57
+
58
+
59
+ export const JiraAlignIcon = ({
60
+ appearance,
61
+ label = 'Jira Align',
62
+ size = defaultLogoParams.size,
63
+ testId,
64
+ textColor = defaultLogoParams.textColor,
65
+ iconColor = defaultLogoParams.iconColor,
66
+ iconGradientStart = defaultLogoParams.iconGradientStart,
67
+ iconGradientStop = defaultLogoParams.iconGradientStop
68
+ }) => {
69
+ return /*#__PURE__*/React.createElement(Wrapper, {
70
+ appearance: appearance,
71
+ label: label,
72
+ svg: svg({
73
+ appearance,
74
+ iconGradientStart,
75
+ iconGradientStop,
76
+ iconColor,
77
+ size
78
+ }),
79
+ iconColor: iconColor,
80
+ iconGradientStart: iconGradientStart,
81
+ iconGradientStop: iconGradientStop,
82
+ size: size,
83
+ testId: testId,
84
+ textColor: textColor
85
+ });
86
+ };
@@ -0,0 +1,3 @@
1
+ export { JiraAlignIcon } from './icon';
2
+ export { JiraAlignLogo } from './logo';
3
+ export { JiraAlignWordmark } from './wordmark';
@@ -0,0 +1,101 @@
1
+ /* eslint-disable max-len */
2
+ import React from 'react';
3
+ import { uid } from 'react-uid';
4
+ import { defaultLogoParams } from '../constants';
5
+ import { getColorsFromAppearance } from '../utils';
6
+ import Wrapper from '../wrapper';
7
+
8
+ const svg = ({
9
+ appearance,
10
+ iconGradientStart,
11
+ iconGradientStop,
12
+ iconColor,
13
+ textColor
14
+ }) => {
15
+ let colors = {
16
+ iconGradientStart,
17
+ iconGradientStop,
18
+ iconColor,
19
+ textColor
20
+ }; // Will be fixed upon removal of deprecated iconGradientStart and
21
+ // iconGradientStop props, or with React 18's useId() hook when we update.
22
+ // eslint-disable-next-line @repo/internal/react/disallow-unstable-values
23
+
24
+ let id = uid({
25
+ iconGradientStart: iconGradientStop
26
+ });
27
+
28
+ if (appearance) {
29
+ colors = getColorsFromAppearance(appearance);
30
+ id = `JiraAlignLogo-${appearance}`;
31
+ }
32
+
33
+ return `
34
+ <svg height="32" viewBox="0 0 147 32" xmlns="http://www.w3.org/2000/svg" focusable="false" aria-hidden="true">
35
+ <defs>
36
+ <linearGradient id="${id}-1" x1="8.97104" y1="20.5458" x2="10.5214" y2="12.6394" gradientUnits="userSpaceOnUse">
37
+ <stop offset="0.15" stop-color="${colors.iconGradientStart}" ${colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : ''} />
38
+ <stop stop-color="${colors.iconGradientStop}" offset="100%"></stop>
39
+ </linearGradient>
40
+ <linearGradient id="${id}-2" x1="12.1408" y1="10.8472" x2="10.5904" y2="18.7536" gradientUnits="userSpaceOnUse">
41
+ <stop offset="0.15" stop-color="${colors.iconGradientStart}" ${colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : ''} />
42
+ <stop stop-color="${colors.iconGradientStop}" offset="100%"></stop>
43
+ </linearGradient>
44
+ </defs>
45
+ <g fill="${colors.textColor}">
46
+ <path d="M36.6401 4.60829H39.4754V18.6632C39.4754 22.3692 37.7886 24.9565 33.8766 24.9565C32.4051 24.9565 31.2566 24.7117 30.467 24.432V21.7399C31.3284 22.0895 32.3692 22.2644 33.41 22.2644C35.8146 22.2644 36.6401 20.8658 36.6401 18.838V4.60829Z" />
47
+ <path d="M44.6076 3.52444C45.7202 3.52444 46.5097 4.18873 46.5097 5.37745C46.5097 6.53121 45.7202 7.23046 44.6076 7.23046C43.495 7.23046 42.7054 6.56618 42.7054 5.37745C42.7054 4.18873 43.495 3.52444 44.6076 3.52444ZM43.2438 9.4331H45.9714V24.8166H43.2438V9.4331Z" />
48
+ <path d="M52.7545 24.8166H50.0987V9.43309H52.7545V12.1252C53.6877 10.3072 55.2668 9.01354 58.3534 9.18835V11.7756C54.872 11.426 52.7545 12.4399 52.7545 15.7263V24.8166Z" />
49
+ <path d="M71.0943 22.0546C70.0894 24.0824 68.1872 25.1313 65.7467 25.1313C61.5476 25.1313 59.4301 21.67 59.4301 17.1249C59.4301 12.7895 61.6552 9.11844 66.0697 9.11844C68.3666 9.11844 70.1611 10.1324 71.0943 12.1252V9.4331H73.8219V24.8166H71.0943V22.0546ZM66.4645 22.6489C68.905 22.6489 71.0584 21.1455 71.0584 17.7192V16.4955C71.0584 13.0692 69.0844 11.5658 66.7516 11.5658C63.701 11.5658 62.1218 13.5237 62.1218 17.0899C62.1577 20.8309 63.6651 22.6489 66.4645 22.6489Z" />
50
+ <path d="M83.9431 20.2715L82.2204 24.8166H79.0262L87.209 4.60829H90.798L98.9809 24.8166H95.7867L94.064 20.2365C92.1977 20.6211 90.5827 20.7959 88.9318 20.7959C87.3167 20.7959 85.7017 20.5862 83.9431 20.2715ZM93.2027 17.929L89.0035 6.84589L84.8044 17.964C86.3477 18.2087 87.6397 18.3486 88.8959 18.3486C90.2238 18.3136 91.5876 18.1737 93.2027 17.929Z" />
51
+ <path d="M105.082 24.9215C102.498 24.9215 100.847 23.7328 100.847 20.9008V3H103.575V20.5512C103.575 21.9497 104.508 22.4391 105.692 22.4391C105.979 22.4391 106.159 22.4391 106.482 22.4042V24.7816C106.266 24.8516 105.8 24.9215 105.082 24.9215Z" />
52
+ <path d="M110.501 3.52444C111.614 3.52444 112.404 4.18873 112.404 5.37745C112.404 6.53121 111.614 7.23046 110.501 7.23046C109.389 7.23046 108.599 6.56618 108.599 5.37745C108.599 4.18873 109.389 3.52444 110.501 3.52444ZM109.102 9.4331H111.829V24.8166H109.102V9.4331Z" />
53
+ <path d="M126.58 22.0546C125.575 24.0824 123.673 25.1313 121.233 25.1313C117.069 25.1313 114.988 21.67 114.988 17.1249C114.988 12.7895 117.177 9.11844 121.556 9.11844C123.852 9.11844 125.647 10.1324 126.58 12.1252V9.4331H129.236V23.4181C129.236 27.9283 127.047 30.97 121.412 30.97C118.756 30.97 117.321 30.6204 115.777 30.1309V27.5437C117.5 28.1031 119.33 28.4527 121.268 28.4527C125.216 28.4527 126.58 26.3899 126.58 23.523V22.0546ZM121.95 22.6489C124.391 22.6489 126.544 21.1455 126.544 17.7192V16.4955C126.544 13.0692 124.57 11.5658 122.237 11.5658C119.187 11.5658 117.608 13.5237 117.608 17.0899C117.644 20.8309 119.151 22.6489 121.95 22.6489Z" />
54
+ <path d="M146.75 24.8166H144.023V15.5166C144.023 12.7545 142.874 11.5309 140.29 11.5309C137.778 11.5309 136.019 13.1741 136.019 16.2858V24.8516H133.292V9.46807H136.019V11.9854C137.024 10.1673 138.89 9.15341 141.008 9.15341C144.633 9.15341 146.714 11.6008 146.714 15.8312V24.8166H146.75Z" />
55
+ <path fill="url(#${id}-1)" d="M0.75 5.78784C0.75 9.51693 3.76475 12.5581 7.46141 12.5581H13.6704V18.8578H20.3818V6.91019C20.3818 6.33091 19.9152 5.82405 19.341 5.82405L0.75 5.78784Z" />
56
+ <path fill="url(#${id}-2)" d="M20.3459 25.5918C20.3459 21.8627 17.3311 18.8577 13.6345 18.8577H7.46141V12.5581H0.75V24.5057C0.75 25.085 1.21657 25.5918 1.79081 25.5918H20.3459Z" />
57
+ </g>
58
+ </svg>
59
+ `;
60
+ };
61
+ /**
62
+ * __Jira Align logo__
63
+ *
64
+ * The Jira Align logo with both the wordmark and the icon combined.
65
+ *
66
+ * - [Examples](https://atlassian.design/components/logo/examples)
67
+ * - [Code](https://atlassian.design/components/logo/code)
68
+ * - [Usage](https://atlassian.design/components/logo/usage)
69
+ */
70
+
71
+
72
+ export const JiraAlignLogo = ({
73
+ appearance,
74
+ label = 'Jira Align',
75
+ size = defaultLogoParams.size,
76
+ testId,
77
+ iconColor = defaultLogoParams.iconColor,
78
+ iconGradientStart = defaultLogoParams.iconGradientStart,
79
+ iconGradientStop = defaultLogoParams.iconGradientStop,
80
+ textColor = defaultLogoParams.textColor
81
+ }) => {
82
+ return /*#__PURE__*/React.createElement(Wrapper, {
83
+ appearance: appearance,
84
+ label: label,
85
+ iconColor: iconColor,
86
+ iconGradientStart: iconGradientStart,
87
+ iconGradientStop: iconGradientStop,
88
+ size: size,
89
+ svg: svg({
90
+ appearance,
91
+ iconGradientStart,
92
+ iconGradientStop,
93
+ iconColor,
94
+ textColor,
95
+ size,
96
+ label
97
+ }),
98
+ testId: testId,
99
+ textColor: textColor
100
+ });
101
+ };
@@ -0,0 +1,64 @@
1
+ /* eslint-disable max-len */
2
+ import React from 'react';
3
+ import { defaultLogoParams } from '../constants';
4
+ import { getColorsFromAppearance } from '../utils';
5
+ import Wrapper from '../wrapper';
6
+
7
+ const svg = ({
8
+ appearance,
9
+ textColor
10
+ }) => {
11
+ let colors = {
12
+ textColor
13
+ };
14
+
15
+ if (appearance) {
16
+ colors = getColorsFromAppearance(appearance);
17
+ }
18
+
19
+ return `
20
+ <svg height="32" viewBox="0 0 117 32" xmlns="http://www.w3.org/2000/svg" focusable="false" aria-hidden="true">
21
+ <g fill="${colors.textColor}">
22
+ <path d="M6.60677 4.66543H9.44207V19.2197C9.44207 23.0574 7.75525 25.7366 3.84325 25.7366C2.37177 25.7366 1.22329 25.4832 0.433716 25.1935V22.4058C1.29507 22.7678 2.33588 22.9488 3.37668 22.9488C5.7813 22.9488 6.60677 21.5006 6.60677 19.4008V4.66543Z" />
23
+ <path d="M14.5743 3.54307C15.6868 3.54307 16.4764 4.23096 16.4764 5.46192C16.4764 6.65668 15.6868 7.38078 14.5743 7.38078C13.4617 7.38078 12.6721 6.69289 12.6721 5.46192C12.6721 4.23096 13.4617 3.54307 14.5743 3.54307ZM13.2104 9.66167H15.9381V25.5918H13.2104V9.66167Z" />
24
+ <path d="M22.7212 25.5918H20.0654V9.66166H22.7212V12.4494C23.6543 10.5668 25.2335 9.22721 28.32 9.40823V12.0874C24.8387 11.7253 22.7212 12.7753 22.7212 16.1785V25.5918Z" />
25
+ <path d="M41.061 22.7316C40.056 24.8315 38.1539 25.9176 35.7134 25.9176C31.5142 25.9176 29.3967 22.3333 29.3967 17.6267C29.3967 13.1373 31.6219 9.33583 36.0364 9.33583C38.3333 9.33583 40.1278 10.3858 41.061 12.4494V9.66167H43.7886V25.5918H41.061V22.7316ZM36.4312 23.3471C38.8717 23.3471 41.0251 21.7903 41.0251 18.2422V16.975C41.0251 13.427 39.0511 11.8702 36.7183 11.8702C33.6676 11.8702 32.0885 13.8976 32.0885 17.5905C32.1244 21.4644 33.6317 23.3471 36.4312 23.3471Z" />
26
+ <path d="M53.9098 20.8852L52.187 25.5918H48.9928L57.1757 4.66543H60.7647L68.9476 25.5918H65.7534L64.0307 20.849C62.1644 21.2472 60.5494 21.4282 58.8984 21.4282C57.2834 21.4282 55.6684 21.211 53.9098 20.8852ZM63.1693 18.4594L58.9702 6.98254L54.7711 18.4956C56.3144 18.7491 57.6064 18.8939 58.8626 18.8939C60.1905 18.8577 61.5543 18.7129 63.1693 18.4594Z" />
27
+ <path d="M75.0487 25.7004C72.4646 25.7004 70.8137 24.4694 70.8137 21.5368V3H73.5413V21.1748C73.5413 22.623 74.4745 23.1298 75.6588 23.1298C75.9459 23.1298 76.1254 23.1298 76.4484 23.0936V25.5556C76.2331 25.628 75.7665 25.7004 75.0487 25.7004Z" />
28
+ <path d="M80.468 3.54307C81.5806 3.54307 82.3702 4.23096 82.3702 5.46192C82.3702 6.65668 81.5806 7.38078 80.468 7.38078C79.3554 7.38078 78.5659 6.69289 78.5659 5.46192C78.5659 4.23096 79.3554 3.54307 80.468 3.54307ZM79.0683 9.66167H81.7959V25.5918H79.0683V9.66167Z" />
29
+ <path d="M96.5468 22.7316C95.5419 24.8315 93.6397 25.9176 91.1992 25.9176C87.036 25.9176 84.9544 22.3333 84.9544 17.6267C84.9544 13.1373 87.1437 9.33583 91.5222 9.33583C93.8192 9.33583 95.6137 10.3858 96.5468 12.4494V9.66167H99.2026V24.1436C99.2026 28.814 97.0134 31.9638 91.3787 31.9638C88.7228 31.9638 87.2872 31.6018 85.7439 31.0949V28.4157C87.4667 28.995 89.297 29.3571 91.2351 29.3571C95.183 29.3571 96.5468 27.221 96.5468 24.2522V22.7316ZM91.917 23.3471C94.3575 23.3471 96.5109 21.7903 96.5109 18.2422V16.975C96.5109 13.427 94.537 11.8702 92.2041 11.8702C89.1535 11.8702 87.5743 13.8976 87.5743 17.5905C87.6102 21.4644 89.1176 23.3471 91.917 23.3471Z" />
30
+ <path d="M116.717 25.5918H113.989V15.9613C113.989 13.1011 112.841 11.834 110.257 11.834C107.744 11.834 105.986 13.5356 105.986 16.7578V25.628H103.258V9.69789H105.986V12.3046C106.991 10.422 108.857 9.37205 110.975 9.37205C114.599 9.37205 116.681 11.9064 116.681 16.2872V25.5918H116.717Z" />
31
+ </g>
32
+ </svg>
33
+ `;
34
+ };
35
+ /**
36
+ * __Jira Align wordmark__
37
+ *
38
+ * The Jira Align brand/product name styled as a logo, without an accompanying icon.
39
+ *
40
+ * - [Examples](https://atlassian.design/components/logo/examples)
41
+ * - [Code](https://atlassian.design/components/logo/code)
42
+ * - [Usage](https://atlassian.design/components/logo/usage)
43
+ */
44
+
45
+
46
+ export const JiraAlignWordmark = ({
47
+ appearance,
48
+ label = 'Jira Align',
49
+ size = defaultLogoParams.size,
50
+ testId,
51
+ textColor = defaultLogoParams.textColor
52
+ }) => {
53
+ return /*#__PURE__*/React.createElement(Wrapper, {
54
+ appearance: appearance,
55
+ label: label,
56
+ size: size,
57
+ svg: svg({
58
+ appearance,
59
+ textColor
60
+ }),
61
+ testId: testId,
62
+ textColor: textColor
63
+ });
64
+ };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.8.2",
3
+ "version": "13.9.0",
4
4
  "sideEffects": false
5
5
  }
package/dist/esm/index.js CHANGED
@@ -5,6 +5,7 @@ export { CompassIcon, CompassLogo, CompassWordmark } from './compass-logo';
5
5
  export { ConfluenceIcon, ConfluenceLogo, ConfluenceWordmark } from './confluence-logo';
6
6
  export { HalpIcon, HalpLogo, HalpWordmark } from './halp-logo';
7
7
  export { HipchatIcon, HipchatLogo, HipchatWordmark } from './hipchat-logo';
8
+ export { JiraAlignIcon, JiraAlignLogo, JiraAlignWordmark } from './jira-align-logo';
8
9
  export { JiraCoreIcon, JiraCoreLogo, JiraCoreWordmark } from './jira-core-logo';
9
10
  export { JiraIcon, JiraLogo, JiraWordmark } from './jira-logo';
10
11
  export { JiraServiceDeskIcon, JiraServiceDeskLogo, JiraServiceDeskWordmark } from './jira-service-desk-logo';
@@ -0,0 +1,76 @@
1
+ /* eslint-disable max-len */
2
+ import React from 'react';
3
+ import { uid } from 'react-uid';
4
+ import { defaultLogoParams } from '../constants';
5
+ import { getColorsFromAppearance } from '../utils';
6
+ import Wrapper from '../wrapper';
7
+
8
+ var svg = function svg(_ref) {
9
+ var appearance = _ref.appearance,
10
+ size = _ref.size,
11
+ iconGradientStart = _ref.iconGradientStart,
12
+ iconGradientStop = _ref.iconGradientStop,
13
+ iconColor = _ref.iconColor;
14
+ var colors = {
15
+ iconGradientStart: iconGradientStart,
16
+ iconGradientStop: iconGradientStop,
17
+ iconColor: iconColor
18
+ }; // Will be fixed upon removal of deprecated iconGradientStart and
19
+ // iconGradientStop props, or with React 18's useId() hook when we update.
20
+ // eslint-disable-next-line @repo/internal/react/disallow-unstable-values
21
+
22
+ var id = uid({
23
+ iconGradientStart: iconGradientStop
24
+ });
25
+
26
+ if (appearance) {
27
+ colors = getColorsFromAppearance(appearance);
28
+ id = "jiraIcon-".concat(appearance);
29
+ }
30
+
31
+ return "\n <svg height=\"32\" viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\" focusable=\"false\" aria-hidden=\"true\">\n <defs>\n <linearGradient id=\"".concat(id, "-1\" x1=\"15.1552\" y1=\"20.5458\" x2=\"16.7055\" y2=\"12.6394\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n <linearGradient id=\"").concat(id, "-2\" x1=\"18.3249\" y1=\"10.8472\" x2=\"16.7745\" y2=\"18.7536\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n </defs>\n <path fill=\"url(#").concat(id, "-1)\" d=\"M6.93411 5.78784C6.93411 9.51693 9.94886 12.5581 13.6455 12.5581H19.8545V18.8578H26.5659V6.91019C26.5659 6.33091 26.0993 5.82405 25.5251 5.82405L6.93411 5.78784Z\" />\n <path fill=\"url(#").concat(id, "-2)\" d=\"M26.53 25.5918C26.53 21.8627 23.5152 18.8577 19.8186 18.8577H13.6455V12.5581H6.93411V24.5057C6.93411 25.085 7.40068 25.5918 7.97492 25.5918H26.53Z\" />\n </svg>");
32
+ };
33
+ /**
34
+ * __Jira Align icon__
35
+ *
36
+ * The Jira Align icon without an accompanying wordmark.
37
+ *
38
+ * - [Examples](https://atlassian.design/components/logo/examples)
39
+ * - [Code](https://atlassian.design/components/logo/code)
40
+ * - [Usage](https://atlassian.design/components/logo/usage)
41
+ */
42
+
43
+
44
+ export var JiraAlignIcon = function JiraAlignIcon(_ref2) {
45
+ var appearance = _ref2.appearance,
46
+ _ref2$label = _ref2.label,
47
+ label = _ref2$label === void 0 ? 'Jira Align' : _ref2$label,
48
+ _ref2$size = _ref2.size,
49
+ size = _ref2$size === void 0 ? defaultLogoParams.size : _ref2$size,
50
+ testId = _ref2.testId,
51
+ _ref2$textColor = _ref2.textColor,
52
+ textColor = _ref2$textColor === void 0 ? defaultLogoParams.textColor : _ref2$textColor,
53
+ _ref2$iconColor = _ref2.iconColor,
54
+ iconColor = _ref2$iconColor === void 0 ? defaultLogoParams.iconColor : _ref2$iconColor,
55
+ _ref2$iconGradientSta = _ref2.iconGradientStart,
56
+ iconGradientStart = _ref2$iconGradientSta === void 0 ? defaultLogoParams.iconGradientStart : _ref2$iconGradientSta,
57
+ _ref2$iconGradientSto = _ref2.iconGradientStop,
58
+ iconGradientStop = _ref2$iconGradientSto === void 0 ? defaultLogoParams.iconGradientStop : _ref2$iconGradientSto;
59
+ return /*#__PURE__*/React.createElement(Wrapper, {
60
+ appearance: appearance,
61
+ label: label,
62
+ svg: svg({
63
+ appearance: appearance,
64
+ iconGradientStart: iconGradientStart,
65
+ iconGradientStop: iconGradientStop,
66
+ iconColor: iconColor,
67
+ size: size
68
+ }),
69
+ iconColor: iconColor,
70
+ iconGradientStart: iconGradientStart,
71
+ iconGradientStop: iconGradientStop,
72
+ size: size,
73
+ testId: testId,
74
+ textColor: textColor
75
+ });
76
+ };
@@ -0,0 +1,3 @@
1
+ export { JiraAlignIcon } from './icon';
2
+ export { JiraAlignLogo } from './logo';
3
+ export { JiraAlignWordmark } from './wordmark';
@@ -0,0 +1,79 @@
1
+ /* eslint-disable max-len */
2
+ import React from 'react';
3
+ import { uid } from 'react-uid';
4
+ import { defaultLogoParams } from '../constants';
5
+ import { getColorsFromAppearance } from '../utils';
6
+ import Wrapper from '../wrapper';
7
+
8
+ var svg = function svg(_ref) {
9
+ var appearance = _ref.appearance,
10
+ iconGradientStart = _ref.iconGradientStart,
11
+ iconGradientStop = _ref.iconGradientStop,
12
+ iconColor = _ref.iconColor,
13
+ textColor = _ref.textColor;
14
+ var colors = {
15
+ iconGradientStart: iconGradientStart,
16
+ iconGradientStop: iconGradientStop,
17
+ iconColor: iconColor,
18
+ textColor: textColor
19
+ }; // Will be fixed upon removal of deprecated iconGradientStart and
20
+ // iconGradientStop props, or with React 18's useId() hook when we update.
21
+ // eslint-disable-next-line @repo/internal/react/disallow-unstable-values
22
+
23
+ var id = uid({
24
+ iconGradientStart: iconGradientStop
25
+ });
26
+
27
+ if (appearance) {
28
+ colors = getColorsFromAppearance(appearance);
29
+ id = "JiraAlignLogo-".concat(appearance);
30
+ }
31
+
32
+ return "\n <svg height=\"32\" viewBox=\"0 0 147 32\" xmlns=\"http://www.w3.org/2000/svg\" focusable=\"false\" aria-hidden=\"true\">\n <defs>\n <linearGradient id=\"".concat(id, "-1\" x1=\"8.97104\" y1=\"20.5458\" x2=\"10.5214\" y2=\"12.6394\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n <linearGradient id=\"").concat(id, "-2\" x1=\"12.1408\" y1=\"10.8472\" x2=\"10.5904\" y2=\"18.7536\" gradientUnits=\"userSpaceOnUse\">\n <stop offset=\"0.15\" stop-color=\"").concat(colors.iconGradientStart, "\" ").concat(colors.iconGradientStart === 'inherit' ? 'stop-opacity="0.4"' : '', " />\n <stop stop-color=\"").concat(colors.iconGradientStop, "\" offset=\"100%\"></stop>\n </linearGradient>\n </defs>\n <g fill=\"").concat(colors.textColor, "\">\n <path d=\"M36.6401 4.60829H39.4754V18.6632C39.4754 22.3692 37.7886 24.9565 33.8766 24.9565C32.4051 24.9565 31.2566 24.7117 30.467 24.432V21.7399C31.3284 22.0895 32.3692 22.2644 33.41 22.2644C35.8146 22.2644 36.6401 20.8658 36.6401 18.838V4.60829Z\" />\n <path d=\"M44.6076 3.52444C45.7202 3.52444 46.5097 4.18873 46.5097 5.37745C46.5097 6.53121 45.7202 7.23046 44.6076 7.23046C43.495 7.23046 42.7054 6.56618 42.7054 5.37745C42.7054 4.18873 43.495 3.52444 44.6076 3.52444ZM43.2438 9.4331H45.9714V24.8166H43.2438V9.4331Z\" />\n <path d=\"M52.7545 24.8166H50.0987V9.43309H52.7545V12.1252C53.6877 10.3072 55.2668 9.01354 58.3534 9.18835V11.7756C54.872 11.426 52.7545 12.4399 52.7545 15.7263V24.8166Z\" />\n <path d=\"M71.0943 22.0546C70.0894 24.0824 68.1872 25.1313 65.7467 25.1313C61.5476 25.1313 59.4301 21.67 59.4301 17.1249C59.4301 12.7895 61.6552 9.11844 66.0697 9.11844C68.3666 9.11844 70.1611 10.1324 71.0943 12.1252V9.4331H73.8219V24.8166H71.0943V22.0546ZM66.4645 22.6489C68.905 22.6489 71.0584 21.1455 71.0584 17.7192V16.4955C71.0584 13.0692 69.0844 11.5658 66.7516 11.5658C63.701 11.5658 62.1218 13.5237 62.1218 17.0899C62.1577 20.8309 63.6651 22.6489 66.4645 22.6489Z\" />\n <path d=\"M83.9431 20.2715L82.2204 24.8166H79.0262L87.209 4.60829H90.798L98.9809 24.8166H95.7867L94.064 20.2365C92.1977 20.6211 90.5827 20.7959 88.9318 20.7959C87.3167 20.7959 85.7017 20.5862 83.9431 20.2715ZM93.2027 17.929L89.0035 6.84589L84.8044 17.964C86.3477 18.2087 87.6397 18.3486 88.8959 18.3486C90.2238 18.3136 91.5876 18.1737 93.2027 17.929Z\" />\n <path d=\"M105.082 24.9215C102.498 24.9215 100.847 23.7328 100.847 20.9008V3H103.575V20.5512C103.575 21.9497 104.508 22.4391 105.692 22.4391C105.979 22.4391 106.159 22.4391 106.482 22.4042V24.7816C106.266 24.8516 105.8 24.9215 105.082 24.9215Z\" />\n <path d=\"M110.501 3.52444C111.614 3.52444 112.404 4.18873 112.404 5.37745C112.404 6.53121 111.614 7.23046 110.501 7.23046C109.389 7.23046 108.599 6.56618 108.599 5.37745C108.599 4.18873 109.389 3.52444 110.501 3.52444ZM109.102 9.4331H111.829V24.8166H109.102V9.4331Z\" />\n <path d=\"M126.58 22.0546C125.575 24.0824 123.673 25.1313 121.233 25.1313C117.069 25.1313 114.988 21.67 114.988 17.1249C114.988 12.7895 117.177 9.11844 121.556 9.11844C123.852 9.11844 125.647 10.1324 126.58 12.1252V9.4331H129.236V23.4181C129.236 27.9283 127.047 30.97 121.412 30.97C118.756 30.97 117.321 30.6204 115.777 30.1309V27.5437C117.5 28.1031 119.33 28.4527 121.268 28.4527C125.216 28.4527 126.58 26.3899 126.58 23.523V22.0546ZM121.95 22.6489C124.391 22.6489 126.544 21.1455 126.544 17.7192V16.4955C126.544 13.0692 124.57 11.5658 122.237 11.5658C119.187 11.5658 117.608 13.5237 117.608 17.0899C117.644 20.8309 119.151 22.6489 121.95 22.6489Z\" />\n <path d=\"M146.75 24.8166H144.023V15.5166C144.023 12.7545 142.874 11.5309 140.29 11.5309C137.778 11.5309 136.019 13.1741 136.019 16.2858V24.8516H133.292V9.46807H136.019V11.9854C137.024 10.1673 138.89 9.15341 141.008 9.15341C144.633 9.15341 146.714 11.6008 146.714 15.8312V24.8166H146.75Z\" />\n <path fill=\"url(#").concat(id, "-1)\" d=\"M0.75 5.78784C0.75 9.51693 3.76475 12.5581 7.46141 12.5581H13.6704V18.8578H20.3818V6.91019C20.3818 6.33091 19.9152 5.82405 19.341 5.82405L0.75 5.78784Z\" />\n <path fill=\"url(#").concat(id, "-2)\" d=\"M20.3459 25.5918C20.3459 21.8627 17.3311 18.8577 13.6345 18.8577H7.46141V12.5581H0.75V24.5057C0.75 25.085 1.21657 25.5918 1.79081 25.5918H20.3459Z\" />\n </g>\n </svg>\n ");
33
+ };
34
+ /**
35
+ * __Jira Align logo__
36
+ *
37
+ * The Jira Align logo with both the wordmark and the icon combined.
38
+ *
39
+ * - [Examples](https://atlassian.design/components/logo/examples)
40
+ * - [Code](https://atlassian.design/components/logo/code)
41
+ * - [Usage](https://atlassian.design/components/logo/usage)
42
+ */
43
+
44
+
45
+ export var JiraAlignLogo = function JiraAlignLogo(_ref2) {
46
+ var appearance = _ref2.appearance,
47
+ _ref2$label = _ref2.label,
48
+ label = _ref2$label === void 0 ? 'Jira Align' : _ref2$label,
49
+ _ref2$size = _ref2.size,
50
+ size = _ref2$size === void 0 ? defaultLogoParams.size : _ref2$size,
51
+ testId = _ref2.testId,
52
+ _ref2$iconColor = _ref2.iconColor,
53
+ iconColor = _ref2$iconColor === void 0 ? defaultLogoParams.iconColor : _ref2$iconColor,
54
+ _ref2$iconGradientSta = _ref2.iconGradientStart,
55
+ iconGradientStart = _ref2$iconGradientSta === void 0 ? defaultLogoParams.iconGradientStart : _ref2$iconGradientSta,
56
+ _ref2$iconGradientSto = _ref2.iconGradientStop,
57
+ iconGradientStop = _ref2$iconGradientSto === void 0 ? defaultLogoParams.iconGradientStop : _ref2$iconGradientSto,
58
+ _ref2$textColor = _ref2.textColor,
59
+ textColor = _ref2$textColor === void 0 ? defaultLogoParams.textColor : _ref2$textColor;
60
+ return /*#__PURE__*/React.createElement(Wrapper, {
61
+ appearance: appearance,
62
+ label: label,
63
+ iconColor: iconColor,
64
+ iconGradientStart: iconGradientStart,
65
+ iconGradientStop: iconGradientStop,
66
+ size: size,
67
+ svg: svg({
68
+ appearance: appearance,
69
+ iconGradientStart: iconGradientStart,
70
+ iconGradientStop: iconGradientStop,
71
+ iconColor: iconColor,
72
+ textColor: textColor,
73
+ size: size,
74
+ label: label
75
+ }),
76
+ testId: testId,
77
+ textColor: textColor
78
+ });
79
+ };
@@ -0,0 +1,51 @@
1
+ /* eslint-disable max-len */
2
+ import React from 'react';
3
+ import { defaultLogoParams } from '../constants';
4
+ import { getColorsFromAppearance } from '../utils';
5
+ import Wrapper from '../wrapper';
6
+
7
+ var svg = function svg(_ref) {
8
+ var appearance = _ref.appearance,
9
+ textColor = _ref.textColor;
10
+ var colors = {
11
+ textColor: textColor
12
+ };
13
+
14
+ if (appearance) {
15
+ colors = getColorsFromAppearance(appearance);
16
+ }
17
+
18
+ return "\n <svg height=\"32\" viewBox=\"0 0 117 32\" xmlns=\"http://www.w3.org/2000/svg\" focusable=\"false\" aria-hidden=\"true\">\n <g fill=\"".concat(colors.textColor, "\">\n <path d=\"M6.60677 4.66543H9.44207V19.2197C9.44207 23.0574 7.75525 25.7366 3.84325 25.7366C2.37177 25.7366 1.22329 25.4832 0.433716 25.1935V22.4058C1.29507 22.7678 2.33588 22.9488 3.37668 22.9488C5.7813 22.9488 6.60677 21.5006 6.60677 19.4008V4.66543Z\" />\n <path d=\"M14.5743 3.54307C15.6868 3.54307 16.4764 4.23096 16.4764 5.46192C16.4764 6.65668 15.6868 7.38078 14.5743 7.38078C13.4617 7.38078 12.6721 6.69289 12.6721 5.46192C12.6721 4.23096 13.4617 3.54307 14.5743 3.54307ZM13.2104 9.66167H15.9381V25.5918H13.2104V9.66167Z\" />\n <path d=\"M22.7212 25.5918H20.0654V9.66166H22.7212V12.4494C23.6543 10.5668 25.2335 9.22721 28.32 9.40823V12.0874C24.8387 11.7253 22.7212 12.7753 22.7212 16.1785V25.5918Z\" />\n <path d=\"M41.061 22.7316C40.056 24.8315 38.1539 25.9176 35.7134 25.9176C31.5142 25.9176 29.3967 22.3333 29.3967 17.6267C29.3967 13.1373 31.6219 9.33583 36.0364 9.33583C38.3333 9.33583 40.1278 10.3858 41.061 12.4494V9.66167H43.7886V25.5918H41.061V22.7316ZM36.4312 23.3471C38.8717 23.3471 41.0251 21.7903 41.0251 18.2422V16.975C41.0251 13.427 39.0511 11.8702 36.7183 11.8702C33.6676 11.8702 32.0885 13.8976 32.0885 17.5905C32.1244 21.4644 33.6317 23.3471 36.4312 23.3471Z\" />\n <path d=\"M53.9098 20.8852L52.187 25.5918H48.9928L57.1757 4.66543H60.7647L68.9476 25.5918H65.7534L64.0307 20.849C62.1644 21.2472 60.5494 21.4282 58.8984 21.4282C57.2834 21.4282 55.6684 21.211 53.9098 20.8852ZM63.1693 18.4594L58.9702 6.98254L54.7711 18.4956C56.3144 18.7491 57.6064 18.8939 58.8626 18.8939C60.1905 18.8577 61.5543 18.7129 63.1693 18.4594Z\" />\n <path d=\"M75.0487 25.7004C72.4646 25.7004 70.8137 24.4694 70.8137 21.5368V3H73.5413V21.1748C73.5413 22.623 74.4745 23.1298 75.6588 23.1298C75.9459 23.1298 76.1254 23.1298 76.4484 23.0936V25.5556C76.2331 25.628 75.7665 25.7004 75.0487 25.7004Z\" />\n <path d=\"M80.468 3.54307C81.5806 3.54307 82.3702 4.23096 82.3702 5.46192C82.3702 6.65668 81.5806 7.38078 80.468 7.38078C79.3554 7.38078 78.5659 6.69289 78.5659 5.46192C78.5659 4.23096 79.3554 3.54307 80.468 3.54307ZM79.0683 9.66167H81.7959V25.5918H79.0683V9.66167Z\" />\n <path d=\"M96.5468 22.7316C95.5419 24.8315 93.6397 25.9176 91.1992 25.9176C87.036 25.9176 84.9544 22.3333 84.9544 17.6267C84.9544 13.1373 87.1437 9.33583 91.5222 9.33583C93.8192 9.33583 95.6137 10.3858 96.5468 12.4494V9.66167H99.2026V24.1436C99.2026 28.814 97.0134 31.9638 91.3787 31.9638C88.7228 31.9638 87.2872 31.6018 85.7439 31.0949V28.4157C87.4667 28.995 89.297 29.3571 91.2351 29.3571C95.183 29.3571 96.5468 27.221 96.5468 24.2522V22.7316ZM91.917 23.3471C94.3575 23.3471 96.5109 21.7903 96.5109 18.2422V16.975C96.5109 13.427 94.537 11.8702 92.2041 11.8702C89.1535 11.8702 87.5743 13.8976 87.5743 17.5905C87.6102 21.4644 89.1176 23.3471 91.917 23.3471Z\" />\n <path d=\"M116.717 25.5918H113.989V15.9613C113.989 13.1011 112.841 11.834 110.257 11.834C107.744 11.834 105.986 13.5356 105.986 16.7578V25.628H103.258V9.69789H105.986V12.3046C106.991 10.422 108.857 9.37205 110.975 9.37205C114.599 9.37205 116.681 11.9064 116.681 16.2872V25.5918H116.717Z\" />\n </g>\n </svg> \n ");
19
+ };
20
+ /**
21
+ * __Jira Align wordmark__
22
+ *
23
+ * The Jira Align brand/product name styled as a logo, without an accompanying icon.
24
+ *
25
+ * - [Examples](https://atlassian.design/components/logo/examples)
26
+ * - [Code](https://atlassian.design/components/logo/code)
27
+ * - [Usage](https://atlassian.design/components/logo/usage)
28
+ */
29
+
30
+
31
+ export var JiraAlignWordmark = function JiraAlignWordmark(_ref2) {
32
+ var appearance = _ref2.appearance,
33
+ _ref2$label = _ref2.label,
34
+ label = _ref2$label === void 0 ? 'Jira Align' : _ref2$label,
35
+ _ref2$size = _ref2.size,
36
+ size = _ref2$size === void 0 ? defaultLogoParams.size : _ref2$size,
37
+ testId = _ref2.testId,
38
+ _ref2$textColor = _ref2.textColor,
39
+ textColor = _ref2$textColor === void 0 ? defaultLogoParams.textColor : _ref2$textColor;
40
+ return /*#__PURE__*/React.createElement(Wrapper, {
41
+ appearance: appearance,
42
+ label: label,
43
+ size: size,
44
+ svg: svg({
45
+ appearance: appearance,
46
+ textColor: textColor
47
+ }),
48
+ testId: testId,
49
+ textColor: textColor
50
+ });
51
+ };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.8.2",
3
+ "version": "13.9.0",
4
4
  "sideEffects": false
5
5
  }
@@ -6,6 +6,7 @@ export { ConfluenceIcon, ConfluenceLogo, ConfluenceWordmark, } from './confluenc
6
6
  export type { LogoProps } from './types';
7
7
  export { HalpIcon, HalpLogo, HalpWordmark } from './halp-logo';
8
8
  export { HipchatIcon, HipchatLogo, HipchatWordmark } from './hipchat-logo';
9
+ export { JiraAlignIcon, JiraAlignLogo, JiraAlignWordmark, } from './jira-align-logo';
9
10
  export { JiraCoreIcon, JiraCoreLogo, JiraCoreWordmark } from './jira-core-logo';
10
11
  export { JiraIcon, JiraLogo, JiraWordmark } from './jira-logo';
11
12
  export { JiraServiceDeskIcon, JiraServiceDeskLogo, JiraServiceDeskWordmark, } from './jira-service-desk-logo';
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { LogoProps } from '../types';
3
+ /**
4
+ * __Jira Align icon__
5
+ *
6
+ * The Jira Align icon without an accompanying wordmark.
7
+ *
8
+ * - [Examples](https://atlassian.design/components/logo/examples)
9
+ * - [Code](https://atlassian.design/components/logo/code)
10
+ * - [Usage](https://atlassian.design/components/logo/usage)
11
+ */
12
+ export declare const JiraAlignIcon: ({ appearance, label, size, testId, textColor, iconColor, iconGradientStart, iconGradientStop, }: LogoProps) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ export { JiraAlignIcon } from './icon';
2
+ export { JiraAlignLogo } from './logo';
3
+ export { JiraAlignWordmark } from './wordmark';
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { LogoProps } from '../types';
3
+ /**
4
+ * __Jira Align logo__
5
+ *
6
+ * The Jira Align logo with both the wordmark and the icon combined.
7
+ *
8
+ * - [Examples](https://atlassian.design/components/logo/examples)
9
+ * - [Code](https://atlassian.design/components/logo/code)
10
+ * - [Usage](https://atlassian.design/components/logo/usage)
11
+ */
12
+ export declare const JiraAlignLogo: ({ appearance, label, size, testId, iconColor, iconGradientStart, iconGradientStop, textColor, }: LogoProps) => JSX.Element;
@@ -0,0 +1,12 @@
1
+ /// <reference types="react" />
2
+ import { LogoProps } from '../types';
3
+ /**
4
+ * __Jira Align wordmark__
5
+ *
6
+ * The Jira Align brand/product name styled as a logo, without an accompanying icon.
7
+ *
8
+ * - [Examples](https://atlassian.design/components/logo/examples)
9
+ * - [Code](https://atlassian.design/components/logo/code)
10
+ * - [Usage](https://atlassian.design/components/logo/usage)
11
+ */
12
+ export declare const JiraAlignWordmark: ({ appearance, label, size, testId, textColor, }: LogoProps) => JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/logo",
3
- "version": "13.8.2",
3
+ "version": "13.9.0",
4
4
  "description": "A logo is a visual representation of a brand or product. It can be a word or an image, or a combination of both.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@atlaskit/ds-lib": "^2.1.0",
46
- "@atlaskit/theme": "^12.1.0",
46
+ "@atlaskit/theme": "^12.2.0",
47
47
  "@atlaskit/tokens": "^0.10.0",
48
48
  "@babel/runtime": "^7.0.0",
49
49
  "@emotion/core": "^10.0.9",
@@ -57,9 +57,9 @@
57
57
  "@atlaskit/button": "^16.3.0",
58
58
  "@atlaskit/code": "^14.3.0",
59
59
  "@atlaskit/docs": "*",
60
- "@atlaskit/radio": "^5.3.2",
61
- "@atlaskit/section-message": "^6.1.0",
62
- "@atlaskit/select": "^15.6.0",
60
+ "@atlaskit/radio": "^5.4.0",
61
+ "@atlaskit/section-message": "^6.2.0",
62
+ "@atlaskit/select": "^15.7.0",
63
63
  "@atlaskit/ssr": "*",
64
64
  "@atlaskit/visual-regression": "*",
65
65
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",