@atlaskit/icon 22.15.0 → 22.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +241 -1
  2. package/core/bulleted-list.d.ts +14 -0
  3. package/core/bulleted-list.js +32 -0
  4. package/core/collapse.d.ts +14 -0
  5. package/core/collapse.js +32 -0
  6. package/core/expand.d.ts +14 -0
  7. package/core/expand.js +32 -0
  8. package/core/migration/app-switcher--switcher.d.ts +14 -0
  9. package/core/migration/app-switcher--switcher.js +33 -0
  10. package/core/migration/bulleted-list--bullet-list.d.ts +14 -0
  11. package/core/migration/bulleted-list--bullet-list.js +33 -0
  12. package/core/migration/bulleted-list--editor-bullet-list.d.ts +14 -0
  13. package/core/migration/bulleted-list--editor-bullet-list.js +33 -0
  14. package/core/migration/check-circle.d.ts +14 -0
  15. package/core/migration/check-circle.js +33 -0
  16. package/core/migration/collapse--editor-collapse.d.ts +14 -0
  17. package/core/migration/collapse--editor-collapse.js +33 -0
  18. package/core/migration/expand--editor-expand.d.ts +14 -0
  19. package/core/migration/expand--editor-expand.js +33 -0
  20. package/core/migration/expand--editor-image-resize.d.ts +14 -0
  21. package/core/migration/expand--editor-image-resize.js +33 -0
  22. package/core/migration/expand--image-resize.d.ts +14 -0
  23. package/core/migration/expand--image-resize.js +33 -0
  24. package/core/migration/maximize--media-services-actual-size.d.ts +14 -0
  25. package/core/migration/maximize--media-services-actual-size.js +33 -0
  26. package/core/migration/minimize--media-services-fit-to-page.d.ts +14 -0
  27. package/core/migration/minimize--media-services-fit-to-page.js +33 -0
  28. package/core/migration/minimize--vid-full-screen-off.d.ts +14 -0
  29. package/core/migration/minimize--vid-full-screen-off.js +33 -0
  30. package/core/migration/phone--hipchat-dial-out.d.ts +14 -0
  31. package/core/migration/phone--hipchat-dial-out.js +33 -0
  32. package/dist/cjs/components/icon-new.js +6 -2
  33. package/dist/cjs/metadata-core.js +37 -5
  34. package/dist/cjs/metadata-utility.js +2 -2
  35. package/dist/cjs/migration-map.js +60 -0
  36. package/dist/es2019/components/icon-new.js +6 -1
  37. package/dist/es2019/metadata-core.js +37 -5
  38. package/dist/es2019/metadata-utility.js +2 -2
  39. package/dist/es2019/migration-map.js +60 -0
  40. package/dist/esm/components/icon-new.js +6 -2
  41. package/dist/esm/metadata-core.js +37 -5
  42. package/dist/esm/metadata-utility.js +2 -2
  43. package/dist/esm/migration-map.js +60 -0
  44. package/dist/types/metadata-core.d.ts +1 -1
  45. package/dist/types/metadata-utility.d.ts +1 -1
  46. package/dist/types-ts4.5/metadata-core.d.ts +1 -1
  47. package/dist/types-ts4.5/metadata-utility.d.ts +1 -1
  48. package/package.json +9 -8
  49. package/utility/migration/check-circle--editor-success.d.ts +14 -0
  50. package/utility/migration/check-circle--editor-success.js +33 -0
  51. package/utility/migration/check-circle.d.ts +14 -0
  52. package/utility/migration/check-circle.js +33 -0
package/CHANGELOG.md CHANGED
@@ -1,12 +1,252 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 22.15.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#135696](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135696)
8
+ [`81ef1300efc63`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/81ef1300efc63) -
9
+ This release tests changes to the default color value for new icons in `/core` and `/utility`
10
+ entrypoints behind a feature flag. These changes will roll out in an upcoming major release.
11
+
12
+ ## 22.15.1
13
+
14
+ ### Patch Changes
15
+
16
+ - [#135508](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/135508)
17
+ [`7a69ad1e19510`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7a69ad1e19510) -
18
+ Reverts the removal of several icon entrypoints from `@atlaskit/icon/core` and
19
+ `@atlaskit/icon/utility`:
20
+
21
+ ### Core icons (from `@atlaskit/icon/core`):
22
+
23
+ - `bulleted-list`
24
+ - `expand`
25
+ - `collapse`
26
+
27
+ ### Core migration icons (from `@atlaskit/icon/core/migration`):
28
+
29
+ - `app-switcher--switcher`
30
+ - `bulleted-list--bullet-list`
31
+ - `bulleted-list--editor-bullet-list`
32
+ - `collapse`
33
+ - `collapse--editor-collapse`
34
+ - `expand--editor-expand `
35
+ - `expand--editor-image-resize`
36
+ - `expand--image-resize`
37
+ - `maximize--media-services-actual-size`
38
+ - `minimize--media-services-fit-to-page`
39
+ - `minimize--vid-full-screen-off`
40
+ - `phone--hipchat-dial-out`
41
+
42
+ ### Utility migration icons (from `@atlaskit/icon/core/utility/migration`):
43
+
44
+ - `check-circle`
45
+ - `check-circle--editor-success`
46
+
47
+ These restored entrypoints match the designs from the previous release.
48
+
49
+ Core and Utility icons that were re-named in the previous release were not reverted to their
50
+ previous designs to prevent regressions in experiences that have updated to use the new designs.
51
+
3
52
  ## 22.15.0
4
53
 
5
54
  ### Minor Changes
6
55
 
7
56
  - [#133643](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/133643)
8
57
  [`1ab5ca9bddc97`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1ab5ca9bddc97) -
9
- Added a supplementary set of icons to `@atlaskit/icon`
58
+
59
+ ### Warning:
60
+
61
+ **This release erroneously removed a number of entrypoints that should not have been removed in a
62
+ minor release. Please stay on 22.14.2, or roll forward to 22.15.1, which adds back the removed
63
+ entrypoints with the closest equivalent icons from the new set.**
64
+
65
+ ### Summary
66
+
67
+ This release adds a huge new set of icons to `@atlaskit/icon/core` and `@atlaskit/icon/utility`,
68
+ including replacements for legacy Editor, Jira and Media icons.
69
+
70
+ To see how legacy icons from `@atlaskit/icon/glyph` map to these new icons, see the migration map
71
+ in `@atlaskit/icon/migration-map`.
72
+
73
+ ### Added:
74
+
75
+ **`@atlaskit/icon/core`**
76
+
77
+ - `key-result`
78
+ - `people-group`
79
+ - `merge-failure`
80
+ - `merge-success`
81
+ - `text`
82
+ - `sort-descending`
83
+ - `sort-ascending`
84
+ - `minus`
85
+ - `grow-horizontal`
86
+ - `expand-horizontal`
87
+ - `collapse-horizontal`
88
+ - `expand-vertical`
89
+ - `collapse-vertical`
90
+ - `grow-vertical`
91
+ - `shrink-vertical`
92
+ - `refresh`
93
+ - `note`
94
+ - `discovery`
95
+ - `eye-open-strikethrough`
96
+ - `file`
97
+ - `files`
98
+ - `video-pause-overlay`
99
+ - `video-play-overlay`
100
+ - `video-next-overlay`
101
+ - `video-previous-overlay`
102
+ - `notification-muted`
103
+ - `plus-square`
104
+ - `cash`
105
+ - `defect`
106
+ - `devices`
107
+ - `list-checklist`
108
+ - `magic-wand`
109
+ - `pulse`
110
+ - `minus-square`
111
+ - `ticket`
112
+ - `tools`
113
+ - `wallet`
114
+ - `wrench`
115
+ - `on-call`
116
+ - `edit-bulk`
117
+ - `objective`
118
+ - `target`
119
+ - `scales`
120
+ - `data-flow`
121
+ - `theme`
122
+ - `paint-bucket`
123
+ - `paint-roller`
124
+ - `paint-brush`
125
+ - `pen`
126
+ - `projection-screen`
127
+ - `paint-palette`
128
+ - `field`
129
+ - `field-text`
130
+ - `operations`
131
+ - `text-bold`
132
+ - `text-italic`
133
+ - `list-numbered`
134
+ - `text-indent-left`
135
+ - `text-indent-right`
136
+ - `layout-two-columns`
137
+ - `layout-two-columns-sidebar-left`
138
+ - `layout-two-columns-sidebar-right`
139
+ - `layout-three-columns`
140
+ - `layout-three-columns-sidebars`
141
+ - `content-align-left`
142
+ - `content-align-center`
143
+ - `content-align-right`
144
+ - `content-wrap-left`
145
+ - `content-wrap-right`
146
+ - `content-width-narrow`
147
+ - `content-width-wide`
148
+ - `tree`
149
+ - `takeout-food`
150
+ - `basketball`
151
+ - `vehicle-car`
152
+
153
+ **`@atlaskit/icon/utility`**
154
+
155
+ - `success`
156
+ - `arrow-down`
157
+ - `arrow-left`
158
+ - `arrow-right`
159
+ - `arrow-up`
160
+ - `drag-handle`
161
+
162
+ ### Renamed:
163
+
164
+ **`@atlaskit/icon/core`**
165
+
166
+ - `list-bulleted → bulleted list`
167
+ - `shrink-diagonal → minimize`
168
+ - `grow-diagonal → maximize`
169
+ - `shrink-horizontal → collapse`
170
+ - `maximize → expand`
171
+ - `success → check-circle`
172
+
173
+ **`@atlaskit/icon/utility`**
174
+
175
+ - `success → check-circle`
176
+
177
+ ### Updated:
178
+
179
+ **`@atlaskit/icon/core`**
180
+
181
+ - `check-circle`
182
+ - `ai-chat`
183
+ - `comment`
184
+ - `comment-add`
185
+ - `person`
186
+ - `person-add`
187
+ - `person-added`
188
+ - `person-offboard`
189
+ - `lock-locked`
190
+ - `lock-unlocked`
191
+ - `check-mark`
192
+ - `checkbox-checked`
193
+ - `issue`
194
+ - `issues`
195
+ - `scorecard`
196
+ - `task`
197
+ - `tasks`
198
+ - `branch`
199
+ - `pull-request`
200
+ - `add`
201
+ - `minimize`
202
+ - `fullscreen-exit`
203
+ - `commit`
204
+ - `office-building`
205
+ - `department`
206
+ - `text-style`
207
+ - `eye-open`
208
+ - `eye-open-filled`
209
+ - `notification`
210
+ - `arrow-up-right`
211
+
212
+ **`@atlaskit/icon/utility`**
213
+
214
+ - `chevron-right`
215
+ - `chevron-down`
216
+ - `chevron-left`
217
+ - `chevron-up`
218
+ - `lock-locked`
219
+ - `lock-unlocked`
220
+ - `check-circle`
221
+ - `check-mark`
222
+
223
+ ### Removed entrypoints:
224
+
225
+ **`@atlaskit/icon/core`**
226
+
227
+ - `bulleted-list`
228
+ - `expand`
229
+ - `collapse`
230
+
231
+ **`@atlaskit/icon/core/migration`**
232
+
233
+ - `app-switcher--switcher`
234
+ - `bulleted-list--bullet-list`
235
+ - `bulleted-list--editor-bullet-list`
236
+ - `collapse`
237
+ - `collapse--editor-collapse`
238
+ - `expand--editor-expand `
239
+ - `expand--editor-image-resize`
240
+ - `expand--image-resize`
241
+ - `maximize--media-services-actual-size`
242
+ - `minimize--media-services-fit-to-page`
243
+ - `minimize--vid-full-screen-off`
244
+ - `phone--hipchat-dial-out`
245
+
246
+ **`@atlaskit/icon/core/utility/migration`**
247
+
248
+ - `check-circle`
249
+ - `check-circle--editor-success`
10
250
 
11
251
  ## 22.14.2
12
252
 
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::61473545caa378d48bc6262ac2faa0e4>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const BulletedListIcon: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default BulletedListIcon;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::312f483ccb9d34cd021a23d4f774446b>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * @deprecated Use `@atlaskit/icon/core/list-bulleted` instead.
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ * Please reach out in #icon-contributions before using these in production.
19
+ *
20
+ * Icon: "BulletedList".
21
+ * Category: multi-purpose
22
+ * Location: @atlaskit/icon
23
+ * Usage guidance: Multi purpose - Known uses: bulleted lists, view all.
24
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
25
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
26
+ */
27
+ const BulletedListIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
28
+ dangerouslySetGlyph: `<path fill="currentcolor" d="M2.75 2.75a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 5.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0m0 5.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0"/><path stroke="currentcolor" stroke-width="1.5" d="M5 2.75h10M5 8h10M5 13.25h10M2.75 8a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm0 5.25a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Zm0-10.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0Z"/>`
29
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
+ }, props));
31
+ BulletedListIcon.displayName = 'BulletedListIcon';
32
+ var _default = exports.default = BulletedListIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::ef88b015d01e693726e645a687ba58a7>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const CollapseIcon: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default CollapseIcon;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::7779a619cd9cabbd312b6f7d3f67ecd9>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * @deprecated Use `@atlaskit/icon/core/shrink-horizontal` instead.
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ * Please reach out in #icon-contributions before using these in production.
19
+ *
20
+ * Icon: "Collapse".
21
+ * Category: single-purpose
22
+ * Location: @atlaskit/icon
23
+ * Usage guidance: Single purpose - Reserved for contracting or reducing the width of an element.
24
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
25
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
26
+ */
27
+ const CollapseIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
28
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M0 8h6.25m3.5 0H16M2.75 4.5 6.25 8l-3.5 3.5m10.5-7L9.75 8l3.5 3.5"/>`
29
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
+ }, props));
31
+ CollapseIcon.displayName = 'CollapseIcon';
32
+ var _default = exports.default = CollapseIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::1e6a89bb9365d8b46a705450dde3137c>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const ExpandIcon: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type'>): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default ExpandIcon;
package/core/expand.js ADDED
@@ -0,0 +1,32 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::c7120b801b522c97c399faa050af7bdb>>
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 _UNSAFE_baseNew = _interopRequireDefault(require("@atlaskit/icon/UNSAFE_base-new"));
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ /**
16
+ * @deprecated Use `@atlaskit/icon/core/maximize` instead.
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ * Please reach out in #icon-contributions before using these in production.
19
+ *
20
+ * Icon: "Expand".
21
+ * Category: single-purpose
22
+ * Location: @atlaskit/icon
23
+ * Usage guidance: Single purpose - Reserved for resizing screens, panels, modals, or media to its maximum size.
24
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
25
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
26
+ */
27
+ const ExpandIcon = props => /*#__PURE__*/_react.default.createElement(_UNSAFE_baseNew.default, Object.assign({
28
+ dangerouslySetGlyph: `<path stroke="currentcolor" stroke-linejoin="round" stroke-width="1.5" d="M4.75 8V4.75H8m0 6.5h3.25V8M13 14.25H3c-.69 0-1.25-.56-1.25-1.25V3c0-.69.56-1.25 1.25-1.25h10c.69 0 1.25.56 1.25 1.25v10c0 .69-.56 1.25-1.25 1.25Z"/>`
29
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
30
+ }, props));
31
+ ExpandIcon.displayName = 'ExpandIcon';
32
+ var _default = exports.default = ExpandIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::8f1dbb8943a13c42819e38abbb15c271>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const AppSwitcherIconMigration: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default AppSwitcherIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::0c1dbb32cfb4da2def13fad9b53eebdf>>
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 _appSwitcher = _interopRequireDefault(require("@atlaskit/icon/core/app-switcher"));
14
+ var _switcher = _interopRequireDefault(require("@atlaskit/icon/glyph/switcher"));
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for AppSwitcherIcon.
20
+ * This component is AppSwitcherIcon, with `UNSAFE_fallbackIcon` set to "SwitcherIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for app switcher in global product navigation.
25
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
26
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
27
+ */
28
+ const AppSwitcherIcon = props => /*#__PURE__*/_react.default.createElement(_appSwitcher.default, Object.assign({
29
+ LEGACY_fallbackIcon: _switcher.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ AppSwitcherIcon.Name = 'AppSwitcherIconMigration';
33
+ var _default = exports.default = AppSwitcherIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::27e9a593aa982634514aacd10a6c863f>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const BulletedListIconMigration: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default BulletedListIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::64309b56d52a74190907cda7e1cbbf53>>
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 _bulletedList = _interopRequireDefault(require("@atlaskit/icon/core/bulleted-list"));
14
+ var _bulletList = _interopRequireDefault(require("@atlaskit/icon/glyph/bullet-list"));
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for BulletedListIcon.
20
+ * This component is BulletedListIcon, with `UNSAFE_fallbackIcon` set to "BulletListIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: bulleted lists, view all.
25
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
26
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
27
+ */
28
+ const BulletedListIcon = props => /*#__PURE__*/_react.default.createElement(_bulletedList.default, Object.assign({
29
+ LEGACY_fallbackIcon: _bulletList.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ BulletedListIcon.Name = 'BulletedListIconMigration';
33
+ var _default = exports.default = BulletedListIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::27e9a593aa982634514aacd10a6c863f>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const BulletedListIconMigration: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default BulletedListIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::0207389b1807b56b47b118f482e5e88b>>
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 _bulletedList = _interopRequireDefault(require("@atlaskit/icon/core/bulleted-list"));
14
+ var _bulletList = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/bullet-list"));
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for BulletedListIcon.
20
+ * This component is BulletedListIcon, with `UNSAFE_fallbackIcon` set to "EditorBulletListIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: bulleted lists, view all.
25
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
26
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
27
+ */
28
+ const BulletedListIcon = props => /*#__PURE__*/_react.default.createElement(_bulletedList.default, Object.assign({
29
+ LEGACY_fallbackIcon: _bulletList.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ BulletedListIcon.Name = 'BulletedListIconMigration';
33
+ var _default = exports.default = BulletedListIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::92885b66f9dc74f92688c1d840de7989>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const CheckCircleIconMigration: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default CheckCircleIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::181c3ea9b4e728f6711697160ac97312>>
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 _checkCircle = _interopRequireDefault(require("@atlaskit/icon/core/success"));
14
+ var _checkCircle2 = _interopRequireDefault(require("@atlaskit/icon/glyph/check-circle"));
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for CheckCircleIcon.
20
+ * This component is CheckCircleIcon, with `UNSAFE_fallbackIcon` set to "CheckCircleIcon".
21
+ *
22
+ * Category: multi-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Multi purpose - Known uses: completed items, productivity emoji category.
25
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
26
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
27
+ */
28
+ const CheckCircleIcon = props => /*#__PURE__*/_react.default.createElement(_checkCircle.default, Object.assign({
29
+ LEGACY_fallbackIcon: _checkCircle2.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ CheckCircleIcon.Name = 'CheckCircleIconMigration';
33
+ var _default = exports.default = CheckCircleIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::a17d69551b8a5988aef6a706bda8b772>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const CollapseIconMigration: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default CollapseIconMigration;
@@ -0,0 +1,33 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::62ff3f4a372c24f85641692cad4d4252>>
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 _collapse = _interopRequireDefault(require("@atlaskit/icon/core/collapse"));
14
+ var _collapse2 = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/collapse"));
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+ /**
17
+ * ⚠️ EXPERIMENTAL ⚠️ - New icons are in alpha - and subject to change or removal in future minor or patch releases.
18
+ *
19
+ * Migration Icon component for CollapseIcon.
20
+ * This component is CollapseIcon, with `UNSAFE_fallbackIcon` set to "EditorCollapseIcon".
21
+ *
22
+ * Category: single-purpose
23
+ * Location: @atlaskit/icon
24
+ * Usage guidance: Single purpose - Reserved for contracting or reducing the width of an element.
25
+ * - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
26
+ * - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
27
+ */
28
+ const CollapseIcon = props => /*#__PURE__*/_react.default.createElement(_collapse.default, Object.assign({
29
+ LEGACY_fallbackIcon: _collapse2.default
30
+ // eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
31
+ }, props));
32
+ CollapseIcon.Name = 'CollapseIconMigration';
33
+ var _default = exports.default = CollapseIcon;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::e5714a7049b81ef529ef5eddbb83df01>>
4
+ * @codegenCommand yarn build:icon-glyphs
5
+ */
6
+
7
+ import React from 'react';
8
+ import Icon from '@atlaskit/icon/UNSAFE_base-new';
9
+
10
+ declare const ExpandIconMigration: {
11
+ (props: Omit<React.ComponentProps<typeof Icon>, 'dangerouslySetGlyph' | 'type' | 'LEGACY_fallbackIcon'> ): JSX.Element;
12
+ displayName: string;
13
+ };
14
+ export default ExpandIconMigration;