@atlaskit/icon 27.8.1 → 27.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,22 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 27.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#194121](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/194121)
8
+ [`7ae4095151c9a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7ae4095151c9a) -
9
+ This release adds icons in `@atlaskit/icon`.
10
+
11
+ ### Added:
12
+
13
+ **`@atlaskit/icon/core`**
14
+
15
+ - `chart-bubble`
16
+ - `chart-trend-down`
17
+ - `chart-trend-up`
18
+ - `table`
19
+
3
20
  ## 27.8.1
4
21
 
5
22
  ### Patch Changes
package/core/chart-bar.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::938052aeb81071adc088ccde54cc9808>>
3
+ * @codegen <<SignedSource::5fdc09fb56192876e616de8bbe7cbefc>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -16,7 +16,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
16
16
  * Icon: "ChartBar".
17
17
  * Category: multi-purpose
18
18
  * Location: @atlaskit/icon
19
- * Usage guidance: Multi purpose - Known uses: Reports in JSM, Space Analytics in Confluence, and other graph charts.
19
+ * Usage guidance: Known uses: Bar charts; Reports in JSM, Space Analytics in Confluence
20
20
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::10cc4b95d4fae99e952f09320d9d14c4>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ChartBubbleIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ChartBubbleIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::a3a8c88470e968ec08c5aa075e8f42b3>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "ChartBubble".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon
19
+ * Usage guidance: Known uses: Bubble and matrix charts; Matrix view in in JPD
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const ChartBubbleIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M11.27 9.01a1.38 1.38 0 1 1-1.51 1.51l-.01-.14.01-.14A1.38 1.38 0 0 1 11.13 9zM5.75 6.5a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5m4.75-5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ ChartBubbleIcon.displayName = 'ChartBubbleIcon';
28
+ var _default = exports.default = ChartBubbleIcon;
package/core/chart-pie.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::8096ab3afa55147abbaed70d63c1ae23>>
3
+ * @codegen <<SignedSource::94c5d2c9bdcdecc62580042a534c4168>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -16,7 +16,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
16
16
  * Icon: "ChartPie".
17
17
  * Category: multi-purpose
18
18
  * Location: @atlaskit/icon
19
- * Usage guidance: Multi purpose - Known uses: pie charts.
19
+ * Usage guidance: Known uses: Pie and segment charts
20
20
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
21
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
22
  */
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::988616485cfd28d105e9c5ad8da876e9>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ChartTrendDownIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ChartTrendDownIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::4e0c3ce23ab3c5ec486c8f132973137d>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "ChartTrendDown".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon
19
+ * Usage guidance: Known uses: Downward trending data; Trend charts
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const ChartTrendDownIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M15 6h-1.5v1.94L9.78 4.22a.75.75 0 0 0-1.06 0L7.25 5.69 5.03 3.47 3.97 4.53l2.75 2.75.056.052A.75.75 0 0 0 7.78 7.28l1.47-1.47L12.44 9H10.5v1.5h3.75a.75.75 0 0 0 .75-.75z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ ChartTrendDownIcon.displayName = 'ChartTrendDownIcon';
28
+ var _default = exports.default = ChartTrendDownIcon;
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::6b652d6b211dc4e799eadf43e6431d59>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const ChartTrendUpIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default ChartTrendUpIcon;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::2fb18bc89cea9c558386c877fcbee03e>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "ChartTrendUp".
17
+ * Category: multi-purpose
18
+ * Location: @atlaskit/icon
19
+ * Usage guidance: Known uses: Upward trending data; Trend charts; Reports in Jira; Sprint insights.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const ChartTrendUpIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M15 7.5h-1.5V5.56L9.78 9.28a.75.75 0 0 1-1.06 0L7.25 7.81l-2.22 2.22-1.06-1.06 2.75-2.75.056-.052a.75.75 0 0 1 1.004.052l1.47 1.47 3.19-3.19H10.5V3h3.75a.75.75 0 0 1 .75.75z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ ChartTrendUpIcon.displayName = 'ChartTrendUpIcon';
28
+ var _default = exports.default = ChartTrendUpIcon;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::11aab62d49f71f052487ab6cf09d42c7>>
3
+ * @codegen <<SignedSource::fff8e858b88f39703cca2a4fd0775183>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
19
19
  *
20
20
  * Category: multi-purpose
21
21
  * Location: @atlaskit/icon
22
- * Usage guidance: Multi purpose - Known uses: Reports in JSM, Space Analytics in Confluence, and other graph charts.
22
+ * Usage guidance: Known uses: Bar charts; Reports in JSM, Space Analytics in Confluence
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::856a9abd2f2917165082d78a9be3e71c>>
3
+ * @codegen <<SignedSource::11204c142696015661e1343ded7c4922>>
4
4
  * @codegenCommand yarn build:icon-glyphs
5
5
  */
6
6
  "use strict";
@@ -19,7 +19,7 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
19
19
  *
20
20
  * Category: multi-purpose
21
21
  * Location: @atlaskit/icon
22
- * Usage guidance: Multi purpose - Known uses: Reports in JSM, Space Analytics in Confluence, and other graph charts.
22
+ * Usage guidance: Known uses: Bar charts; Reports in JSM, Space Analytics in Confluence
23
23
  * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
24
24
  * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
25
25
  */
@@ -0,0 +1,13 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::bbb9b5a679027ef2c8c367e3e5fd5eed>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
8
+
9
+ declare const TableIcon: {
10
+ (props: NewCoreIconProps): JSX.Element;
11
+ displayName: string;
12
+ };
13
+ export default TableIcon;
package/core/table.js ADDED
@@ -0,0 +1,28 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::068663bc7237a4f6d91e480dd5b2499a>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+ "use strict";
7
+
8
+ Object.defineProperty(exports, "__esModule", {
9
+ value: true
10
+ });
11
+ exports.default = void 0;
12
+ var _react = _interopRequireDefault(require("react"));
13
+ var _baseNew = _interopRequireDefault(require("@atlaskit/icon/base-new"));
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ /**
16
+ * Icon: "Table".
17
+ * Category: single-purpose
18
+ * Location: @atlaskit/icon
19
+ * Usage guidance: Reserved for tables, tabular data, and spreadsheets.
20
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
21
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
22
+ */
23
+ const TableIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
24
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 8.75h-8v3.75H14a.5.5 0 0 0 .5-.5zM1.5 12a.5.5 0 0 0 .5.5h3V8.75H1.5zm13-8a.5.5 0 0 0-.5-.5H6.5v3.75h8zm-13 3.25H5V3.5H2a.5.5 0 0 0-.5.5zM16 12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"/>`
25
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
26
+ }, props));
27
+ TableIcon.displayName = 'TableIcon';
28
+ var _default = exports.default = TableIcon;
@@ -9,7 +9,7 @@ exports.default = void 0;
9
9
  *
10
10
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
11
11
  *
12
- * @codegen <<SignedSource::2137cfdbae9d58a93fc12e3f0d877fc3>>
12
+ * @codegen <<SignedSource::15b854768abcf194b826ca06ac6831d7>>
13
13
  * @codegenCommand yarn build:icon-glyphs
14
14
  */
15
15
 
@@ -532,13 +532,23 @@ var metadata = {
532
532
  status: 'published'
533
533
  },
534
534
  'chart-bar': {
535
- keywords: ['chart-bar', 'chartbar', 'icon', 'core', 'graph', 'bar', 'analytics', 'report'],
535
+ keywords: ['chart-bar', 'chartbar', 'icon', 'core', 'graph', 'bar', 'analytics', 'report', 'column chart'],
536
536
  componentName: 'ChartBarIcon',
537
537
  package: '@atlaskit/icon/core/chart-bar',
538
538
  oldName: ['graph-bar', 'media-services/presentation'],
539
539
  type: 'core',
540
540
  categorization: 'multi-purpose',
541
- usage: 'Multi purpose - Known uses: Reports in JSM, Space Analytics in Confluence, and other graph charts.',
541
+ usage: 'Known uses: Bar charts; Reports in JSM, Space Analytics in Confluence',
542
+ team: 'Design System Team',
543
+ status: 'published'
544
+ },
545
+ 'chart-bubble': {
546
+ keywords: ['chart-bubble', 'chartbubble', 'icon', 'core', 'graph', 'matrix', 'bubble', 'plot'],
547
+ componentName: 'ChartBubbleIcon',
548
+ package: '@atlaskit/icon/core/chart-bubble',
549
+ type: 'core',
550
+ categorization: 'multi-purpose',
551
+ usage: 'Known uses: Bubble and matrix charts; Matrix view in in JPD',
542
552
  team: 'Design System Team',
543
553
  status: 'published'
544
554
  },
@@ -558,7 +568,7 @@ var metadata = {
558
568
  package: '@atlaskit/icon/core/chart-pie',
559
569
  type: 'core',
560
570
  categorization: 'multi-purpose',
561
- usage: 'Multi purpose - Known uses: pie charts.',
571
+ usage: 'Known uses: Pie and segment charts',
562
572
  team: 'Design System Team',
563
573
  status: 'published'
564
574
  },
@@ -573,6 +583,26 @@ var metadata = {
573
583
  team: 'Design System Team',
574
584
  status: 'published'
575
585
  },
586
+ 'chart-trend-down': {
587
+ keywords: ['chart-trend-down', 'charttrenddown', 'icon', 'core', 'reports', 'graph', 'impact', 'effort', 'downward trend'],
588
+ componentName: 'ChartTrendDownIcon',
589
+ package: '@atlaskit/icon/core/chart-trend-down',
590
+ type: 'core',
591
+ categorization: 'multi-purpose',
592
+ usage: 'Known uses: Downward trending data; Trend charts',
593
+ team: 'Design System Team',
594
+ status: 'published'
595
+ },
596
+ 'chart-trend-up': {
597
+ keywords: ['chart-trend-up', 'charttrendup', 'icon', 'core', 'reports', 'graph', 'impact', 'effort', 'upward trend'],
598
+ componentName: 'ChartTrendUpIcon',
599
+ package: '@atlaskit/icon/core/chart-trend-up',
600
+ type: 'core',
601
+ categorization: 'multi-purpose',
602
+ usage: 'Known uses: Upward trending data; Trend charts; Reports in Jira; Sprint insights.',
603
+ team: 'Design System Team',
604
+ status: 'published'
605
+ },
576
606
  'chat-widget': {
577
607
  keywords: ['chat-widget', 'chatwidget', 'icon', 'core', 'chat', 'widget', 'virtual service agent', 'vsa'],
578
608
  componentName: 'ChatWidgetIcon',
@@ -3159,6 +3189,16 @@ var metadata = {
3159
3189
  team: 'Design System Team',
3160
3190
  status: 'published'
3161
3191
  },
3192
+ table: {
3193
+ keywords: ['table', 'grid', 'icon', 'core', 'table', 'cells', 'tabular data', 'data table', 'spreadsheet'],
3194
+ componentName: 'TableIcon',
3195
+ package: '@atlaskit/icon/core/table',
3196
+ type: 'core',
3197
+ categorization: 'single-purpose',
3198
+ usage: 'Reserved for tables, tabular data, and spreadsheets.',
3199
+ team: 'Design System Team',
3200
+ status: 'published'
3201
+ },
3162
3202
  'table-cell-clear': {
3163
3203
  keywords: ['table-cell-clear', 'tablecellclear', 'icon', 'core', 'table', 'cell', 'clear', 'empty'],
3164
3204
  componentName: 'TableCellClearIcon',
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2137cfdbae9d58a93fc12e3f0d877fc3>>
6
+ * @codegen <<SignedSource::15b854768abcf194b826ca06ac6831d7>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
 
@@ -526,13 +526,23 @@ const metadata = {
526
526
  status: 'published'
527
527
  },
528
528
  'chart-bar': {
529
- keywords: ['chart-bar', 'chartbar', 'icon', 'core', 'graph', 'bar', 'analytics', 'report'],
529
+ keywords: ['chart-bar', 'chartbar', 'icon', 'core', 'graph', 'bar', 'analytics', 'report', 'column chart'],
530
530
  componentName: 'ChartBarIcon',
531
531
  package: '@atlaskit/icon/core/chart-bar',
532
532
  oldName: ['graph-bar', 'media-services/presentation'],
533
533
  type: 'core',
534
534
  categorization: 'multi-purpose',
535
- usage: 'Multi purpose - Known uses: Reports in JSM, Space Analytics in Confluence, and other graph charts.',
535
+ usage: 'Known uses: Bar charts; Reports in JSM, Space Analytics in Confluence',
536
+ team: 'Design System Team',
537
+ status: 'published'
538
+ },
539
+ 'chart-bubble': {
540
+ keywords: ['chart-bubble', 'chartbubble', 'icon', 'core', 'graph', 'matrix', 'bubble', 'plot'],
541
+ componentName: 'ChartBubbleIcon',
542
+ package: '@atlaskit/icon/core/chart-bubble',
543
+ type: 'core',
544
+ categorization: 'multi-purpose',
545
+ usage: 'Known uses: Bubble and matrix charts; Matrix view in in JPD',
536
546
  team: 'Design System Team',
537
547
  status: 'published'
538
548
  },
@@ -552,7 +562,7 @@ const metadata = {
552
562
  package: '@atlaskit/icon/core/chart-pie',
553
563
  type: 'core',
554
564
  categorization: 'multi-purpose',
555
- usage: 'Multi purpose - Known uses: pie charts.',
565
+ usage: 'Known uses: Pie and segment charts',
556
566
  team: 'Design System Team',
557
567
  status: 'published'
558
568
  },
@@ -567,6 +577,26 @@ const metadata = {
567
577
  team: 'Design System Team',
568
578
  status: 'published'
569
579
  },
580
+ 'chart-trend-down': {
581
+ keywords: ['chart-trend-down', 'charttrenddown', 'icon', 'core', 'reports', 'graph', 'impact', 'effort', 'downward trend'],
582
+ componentName: 'ChartTrendDownIcon',
583
+ package: '@atlaskit/icon/core/chart-trend-down',
584
+ type: 'core',
585
+ categorization: 'multi-purpose',
586
+ usage: 'Known uses: Downward trending data; Trend charts',
587
+ team: 'Design System Team',
588
+ status: 'published'
589
+ },
590
+ 'chart-trend-up': {
591
+ keywords: ['chart-trend-up', 'charttrendup', 'icon', 'core', 'reports', 'graph', 'impact', 'effort', 'upward trend'],
592
+ componentName: 'ChartTrendUpIcon',
593
+ package: '@atlaskit/icon/core/chart-trend-up',
594
+ type: 'core',
595
+ categorization: 'multi-purpose',
596
+ usage: 'Known uses: Upward trending data; Trend charts; Reports in Jira; Sprint insights.',
597
+ team: 'Design System Team',
598
+ status: 'published'
599
+ },
570
600
  'chat-widget': {
571
601
  keywords: ['chat-widget', 'chatwidget', 'icon', 'core', 'chat', 'widget', 'virtual service agent', 'vsa'],
572
602
  componentName: 'ChatWidgetIcon',
@@ -3153,6 +3183,16 @@ const metadata = {
3153
3183
  team: 'Design System Team',
3154
3184
  status: 'published'
3155
3185
  },
3186
+ table: {
3187
+ keywords: ['table', 'grid', 'icon', 'core', 'table', 'cells', 'tabular data', 'data table', 'spreadsheet'],
3188
+ componentName: 'TableIcon',
3189
+ package: '@atlaskit/icon/core/table',
3190
+ type: 'core',
3191
+ categorization: 'single-purpose',
3192
+ usage: 'Reserved for tables, tabular data, and spreadsheets.',
3193
+ team: 'Design System Team',
3194
+ status: 'published'
3195
+ },
3156
3196
  'table-cell-clear': {
3157
3197
  keywords: ['table-cell-clear', 'tablecellclear', 'icon', 'core', 'table', 'cell', 'clear', 'empty'],
3158
3198
  componentName: 'TableCellClearIcon',
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2137cfdbae9d58a93fc12e3f0d877fc3>>
6
+ * @codegen <<SignedSource::15b854768abcf194b826ca06ac6831d7>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
 
@@ -526,13 +526,23 @@ var metadata = {
526
526
  status: 'published'
527
527
  },
528
528
  'chart-bar': {
529
- keywords: ['chart-bar', 'chartbar', 'icon', 'core', 'graph', 'bar', 'analytics', 'report'],
529
+ keywords: ['chart-bar', 'chartbar', 'icon', 'core', 'graph', 'bar', 'analytics', 'report', 'column chart'],
530
530
  componentName: 'ChartBarIcon',
531
531
  package: '@atlaskit/icon/core/chart-bar',
532
532
  oldName: ['graph-bar', 'media-services/presentation'],
533
533
  type: 'core',
534
534
  categorization: 'multi-purpose',
535
- usage: 'Multi purpose - Known uses: Reports in JSM, Space Analytics in Confluence, and other graph charts.',
535
+ usage: 'Known uses: Bar charts; Reports in JSM, Space Analytics in Confluence',
536
+ team: 'Design System Team',
537
+ status: 'published'
538
+ },
539
+ 'chart-bubble': {
540
+ keywords: ['chart-bubble', 'chartbubble', 'icon', 'core', 'graph', 'matrix', 'bubble', 'plot'],
541
+ componentName: 'ChartBubbleIcon',
542
+ package: '@atlaskit/icon/core/chart-bubble',
543
+ type: 'core',
544
+ categorization: 'multi-purpose',
545
+ usage: 'Known uses: Bubble and matrix charts; Matrix view in in JPD',
536
546
  team: 'Design System Team',
537
547
  status: 'published'
538
548
  },
@@ -552,7 +562,7 @@ var metadata = {
552
562
  package: '@atlaskit/icon/core/chart-pie',
553
563
  type: 'core',
554
564
  categorization: 'multi-purpose',
555
- usage: 'Multi purpose - Known uses: pie charts.',
565
+ usage: 'Known uses: Pie and segment charts',
556
566
  team: 'Design System Team',
557
567
  status: 'published'
558
568
  },
@@ -567,6 +577,26 @@ var metadata = {
567
577
  team: 'Design System Team',
568
578
  status: 'published'
569
579
  },
580
+ 'chart-trend-down': {
581
+ keywords: ['chart-trend-down', 'charttrenddown', 'icon', 'core', 'reports', 'graph', 'impact', 'effort', 'downward trend'],
582
+ componentName: 'ChartTrendDownIcon',
583
+ package: '@atlaskit/icon/core/chart-trend-down',
584
+ type: 'core',
585
+ categorization: 'multi-purpose',
586
+ usage: 'Known uses: Downward trending data; Trend charts',
587
+ team: 'Design System Team',
588
+ status: 'published'
589
+ },
590
+ 'chart-trend-up': {
591
+ keywords: ['chart-trend-up', 'charttrendup', 'icon', 'core', 'reports', 'graph', 'impact', 'effort', 'upward trend'],
592
+ componentName: 'ChartTrendUpIcon',
593
+ package: '@atlaskit/icon/core/chart-trend-up',
594
+ type: 'core',
595
+ categorization: 'multi-purpose',
596
+ usage: 'Known uses: Upward trending data; Trend charts; Reports in Jira; Sprint insights.',
597
+ team: 'Design System Team',
598
+ status: 'published'
599
+ },
570
600
  'chat-widget': {
571
601
  keywords: ['chat-widget', 'chatwidget', 'icon', 'core', 'chat', 'widget', 'virtual service agent', 'vsa'],
572
602
  componentName: 'ChatWidgetIcon',
@@ -3153,6 +3183,16 @@ var metadata = {
3153
3183
  team: 'Design System Team',
3154
3184
  status: 'published'
3155
3185
  },
3186
+ table: {
3187
+ keywords: ['table', 'grid', 'icon', 'core', 'table', 'cells', 'tabular data', 'data table', 'spreadsheet'],
3188
+ componentName: 'TableIcon',
3189
+ package: '@atlaskit/icon/core/table',
3190
+ type: 'core',
3191
+ categorization: 'single-purpose',
3192
+ usage: 'Reserved for tables, tabular data, and spreadsheets.',
3193
+ team: 'Design System Team',
3194
+ status: 'published'
3195
+ },
3156
3196
  'table-cell-clear': {
3157
3197
  keywords: ['table-cell-clear', 'tablecellclear', 'icon', 'core', 'table', 'cell', 'clear', 'empty'],
3158
3198
  componentName: 'TableCellClearIcon',
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2137cfdbae9d58a93fc12e3f0d877fc3>>
6
+ * @codegen <<SignedSource::15b854768abcf194b826ca06ac6831d7>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  interface metadata {
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * To change the format of this file, modify `createIconDocsNew` in icon-build-process/src/create-icon-docs.tsx.
5
5
  *
6
- * @codegen <<SignedSource::2137cfdbae9d58a93fc12e3f0d877fc3>>
6
+ * @codegen <<SignedSource::15b854768abcf194b826ca06ac6831d7>>
7
7
  * @codegenCommand yarn build:icon-glyphs
8
8
  */
9
9
  interface metadata {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon",
3
- "version": "27.8.1",
3
+ "version": "27.9.0",
4
4
  "description": "An icon is a symbol representing a command, device, directory, or common action.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M11.27 9.01a1.38 1.38 0 1 1-1.51 1.51l-.01-.14.01-.14A1.38 1.38 0 0 1 11.13 9zM5.75 6.5a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5m4.75-5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M15 6h-1.5v1.94L9.78 4.22a.75.75 0 0 0-1.06 0L7.25 5.69 5.03 3.47 3.97 4.53l2.75 2.75.056.052A.75.75 0 0 0 7.78 7.28l1.47-1.47L12.44 9H10.5v1.5h3.75a.75.75 0 0 0 .75-.75z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M1 13V1h1.5v12a.5.5 0 0 0 .5.5h12V15H3a2 2 0 0 1-2-2"/><path fill="currentcolor" d="M15 7.5h-1.5V5.56L9.78 9.28a.75.75 0 0 1-1.06 0L7.25 7.81l-2.22 2.22-1.06-1.06 2.75-2.75.056-.052a.75.75 0 0 1 1.004.052l1.47 1.47 3.19-3.19H10.5V3h3.75a.75.75 0 0 1 .75.75z"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M14.5 8.75h-8v3.75H14a.5.5 0 0 0 .5-.5zM1.5 12a.5.5 0 0 0 .5.5h3V8.75H1.5zm13-8a.5.5 0 0 0-.5-.5H6.5v3.75h8zm-13 3.25H5V3.5H2a.5.5 0 0 0-.5.5zM16 12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"/></svg>