@atlaskit/icon 26.2.0 → 26.3.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 +15 -0
- package/core/panel-left.d.ts +13 -0
- package/core/panel-left.js +28 -0
- package/core/panel-right.d.ts +13 -0
- package/core/panel-right.js +28 -0
- package/core/sidebar-left.d.ts +2 -2
- package/core/sidebar-right.d.ts +2 -2
- package/dist/cjs/deprecated-core.js +3 -3
- package/dist/cjs/metadata-core.js +23 -3
- package/dist/es2019/deprecated-core.js +3 -3
- package/dist/es2019/metadata-core.js +23 -3
- package/dist/esm/deprecated-core.js +3 -3
- package/dist/esm/metadata-core.js +23 -3
- package/dist/types/deprecated-core.d.ts +1 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/deprecated-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/package.json +1 -1
- package/svgs/core/panel-left.svg +1 -0
- package/svgs/core/panel-right.svg +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 26.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#160927](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/160927)
|
|
8
|
+
[`70494296070b5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/70494296070b5) -
|
|
9
|
+
This release adds icons in `@atlaskit/icon`.
|
|
10
|
+
|
|
11
|
+
### Added:
|
|
12
|
+
|
|
13
|
+
**`@atlaskit/icon/core`**
|
|
14
|
+
|
|
15
|
+
- `panel-left`
|
|
16
|
+
- `panel-right`
|
|
17
|
+
|
|
3
18
|
## 26.2.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ba08d94cacf51afba1b1b73b97f7baf6>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const PanelLeftIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default PanelLeftIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::022a93d8181f11b751c8d1c27d34dcb8>>
|
|
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: "PanelLeft".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for opening a preview panel to the left of the viewport edge. Use for right-to-left languages which invert the navigational chrome.
|
|
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 PanelLeftIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 3a.5.5 0 0 0-.5-.5H8v11h6a.5.5 0 0 0 .5-.5zM5 10v1.5H3V10zm0-3v1.5H3V7zm0-3v1.5H3V4zm-3.5 9a.5.5 0 0 0 .5.5h4.5v-11H2a.5.5 0 0 0-.5.5zM16 13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 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
|
+
PanelLeftIcon.displayName = 'PanelLeftIcon';
|
|
28
|
+
var _default = exports.default = PanelLeftIcon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::80ad40c5cc61ff972c7d44982e9c64db>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
|
+
|
|
9
|
+
declare const PanelRightIcon: {
|
|
10
|
+
(props: NewCoreIconProps): JSX.Element;
|
|
11
|
+
displayName: string;
|
|
12
|
+
};
|
|
13
|
+
export default PanelRightIcon;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::8b10c2aaa76d32294bc7ed1c0a1888df>>
|
|
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: "PanelRight".
|
|
17
|
+
* Category: single-purpose
|
|
18
|
+
* Location: @atlaskit/icon
|
|
19
|
+
* Usage guidance: Reserved for opening a preview panel to the right of the viewport edge. Use only for left-to-right languages.
|
|
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 PanelRightIcon = props => /*#__PURE__*/_react.default.createElement(_baseNew.default, Object.assign({
|
|
24
|
+
dangerouslySetGlyph: `<path fill="currentcolor" d="M14.5 3a.5.5 0 0 0-.5-.5H9.5v11H14a.5.5 0 0 0 .5-.5zM13 10v1.5h-2V10zm0-3v1.5h-2V7zm0-3v1.5h-2V4zM1.5 13a.5.5 0 0 0 .5.5h6v-11H2a.5.5 0 0 0-.5.5zM16 13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 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
|
+
PanelRightIcon.displayName = 'PanelRightIcon';
|
|
28
|
+
var _default = exports.default = PanelRightIcon;
|
package/core/sidebar-left.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::92832e7bb082159eab67198c65433053>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
|
-
* @deprecated The icon "sidebar-left" is deprecated in favour of "
|
|
10
|
+
* @deprecated The icon "sidebar-left" is deprecated in favour of "panel-left" from “@atlaskit/icon/core”
|
|
11
11
|
*/
|
|
12
12
|
declare const SidebarLeftIcon: {
|
|
13
13
|
(props: NewCoreIconProps): JSX.Element;
|
package/core/sidebar-right.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::46402e2d2d758d9f400b93e074b1d3e8>>
|
|
4
4
|
* @codegenCommand yarn build:icon-glyphs
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
|
-
* @deprecated The icon "sidebar-right" is deprecated in favour of "
|
|
10
|
+
* @deprecated The icon "sidebar-right" is deprecated in favour of "panel-right" from “@atlaskit/icon/core”
|
|
11
11
|
*/
|
|
12
12
|
declare const SidebarRightIcon: {
|
|
13
13
|
(props: NewCoreIconProps): JSX.Element;
|
|
@@ -9,7 +9,7 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::7c22ff7738ef2148e1812d19e3326ba2>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
var deprecatedIcons = {
|
|
@@ -50,10 +50,10 @@ var deprecatedIcons = {
|
|
|
50
50
|
message: 'The icon "issues" is deprecated in favour of "work-items" from “@atlaskit/icon/core”'
|
|
51
51
|
},
|
|
52
52
|
'@atlaskit/icon/core/sidebar-left': {
|
|
53
|
-
message: 'The icon "sidebar-left" is deprecated in favour of "
|
|
53
|
+
message: 'The icon "sidebar-left" is deprecated in favour of "panel-left" from “@atlaskit/icon/core”'
|
|
54
54
|
},
|
|
55
55
|
'@atlaskit/icon/core/sidebar-right': {
|
|
56
|
-
message: 'The icon "sidebar-right" is deprecated in favour of "
|
|
56
|
+
message: 'The icon "sidebar-right" is deprecated in favour of "panel-right" from “@atlaskit/icon/core”'
|
|
57
57
|
},
|
|
58
58
|
'@atlaskit/icon/core/migration/align-center--editor-align-center': {
|
|
59
59
|
message: 'The icon "align-center--editor-align-center" is deprecated in favour of "align-text-center--editor-align-center" from “@atlaskit/icon/core/migration”'
|
|
@@ -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::
|
|
12
|
+
* @codegen <<SignedSource::205e7286912020521b2f575b3086483f>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -2376,6 +2376,26 @@ var metadata = {
|
|
|
2376
2376
|
team: 'Design System Team',
|
|
2377
2377
|
status: 'published'
|
|
2378
2378
|
},
|
|
2379
|
+
'panel-left': {
|
|
2380
|
+
keywords: ['panel-left', 'panelleft', 'icon', 'core', 'detail view', 'left rail', 'drawer', 'preview panel', 'sidebar'],
|
|
2381
|
+
componentName: 'PanelLeftIcon',
|
|
2382
|
+
package: '@atlaskit/icon/core/panel-left',
|
|
2383
|
+
type: 'core',
|
|
2384
|
+
categorization: 'single-purpose',
|
|
2385
|
+
usage: 'Reserved for opening a preview panel to the left of the viewport edge. Use for right-to-left languages which invert the navigational chrome.',
|
|
2386
|
+
team: 'Design System Team',
|
|
2387
|
+
status: 'published'
|
|
2388
|
+
},
|
|
2389
|
+
'panel-right': {
|
|
2390
|
+
keywords: ['panel-right', 'panelright', 'icon', 'core', 'detail view', 'right rail', 'drawer', 'preview panel', 'sidebar'],
|
|
2391
|
+
componentName: 'PanelRightIcon',
|
|
2392
|
+
package: '@atlaskit/icon/core/panel-right',
|
|
2393
|
+
type: 'core',
|
|
2394
|
+
categorization: 'single-purpose',
|
|
2395
|
+
usage: 'Reserved for opening a preview panel to the right of the viewport edge. Use only for left-to-right languages.',
|
|
2396
|
+
team: 'Design System Team',
|
|
2397
|
+
status: 'published'
|
|
2398
|
+
},
|
|
2379
2399
|
pen: {
|
|
2380
2400
|
keywords: ['pen', 'icon', 'core', 'pen tool', 'nib', 'fountain pen', 'design', 'work type'],
|
|
2381
2401
|
componentName: 'PenIcon',
|
|
@@ -3021,7 +3041,7 @@ var metadata = {
|
|
|
3021
3041
|
package: '@atlaskit/icon/core/sidebar-left',
|
|
3022
3042
|
type: 'core',
|
|
3023
3043
|
replacement: {
|
|
3024
|
-
name: '
|
|
3044
|
+
name: 'panel-left',
|
|
3025
3045
|
type: 'core',
|
|
3026
3046
|
location: '@atlaskit/icon'
|
|
3027
3047
|
},
|
|
@@ -3037,7 +3057,7 @@ var metadata = {
|
|
|
3037
3057
|
oldName: ['detail-view', 'room-menu'],
|
|
3038
3058
|
type: 'core',
|
|
3039
3059
|
replacement: {
|
|
3040
|
-
name: '
|
|
3060
|
+
name: 'panel-right',
|
|
3041
3061
|
type: 'core',
|
|
3042
3062
|
location: '@atlaskit/icon'
|
|
3043
3063
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::7c22ff7738ef2148e1812d19e3326ba2>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
const deprecatedIcons = {
|
|
@@ -44,10 +44,10 @@ const deprecatedIcons = {
|
|
|
44
44
|
message: 'The icon "issues" is deprecated in favour of "work-items" from “@atlaskit/icon/core”'
|
|
45
45
|
},
|
|
46
46
|
'@atlaskit/icon/core/sidebar-left': {
|
|
47
|
-
message: 'The icon "sidebar-left" is deprecated in favour of "
|
|
47
|
+
message: 'The icon "sidebar-left" is deprecated in favour of "panel-left" from “@atlaskit/icon/core”'
|
|
48
48
|
},
|
|
49
49
|
'@atlaskit/icon/core/sidebar-right': {
|
|
50
|
-
message: 'The icon "sidebar-right" is deprecated in favour of "
|
|
50
|
+
message: 'The icon "sidebar-right" is deprecated in favour of "panel-right" from “@atlaskit/icon/core”'
|
|
51
51
|
},
|
|
52
52
|
'@atlaskit/icon/core/migration/align-center--editor-align-center': {
|
|
53
53
|
message: 'The icon "align-center--editor-align-center" is deprecated in favour of "align-text-center--editor-align-center" from “@atlaskit/icon/core/migration”'
|
|
@@ -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::
|
|
6
|
+
* @codegen <<SignedSource::205e7286912020521b2f575b3086483f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -2370,6 +2370,26 @@ const metadata = {
|
|
|
2370
2370
|
team: 'Design System Team',
|
|
2371
2371
|
status: 'published'
|
|
2372
2372
|
},
|
|
2373
|
+
'panel-left': {
|
|
2374
|
+
keywords: ['panel-left', 'panelleft', 'icon', 'core', 'detail view', 'left rail', 'drawer', 'preview panel', 'sidebar'],
|
|
2375
|
+
componentName: 'PanelLeftIcon',
|
|
2376
|
+
package: '@atlaskit/icon/core/panel-left',
|
|
2377
|
+
type: 'core',
|
|
2378
|
+
categorization: 'single-purpose',
|
|
2379
|
+
usage: 'Reserved for opening a preview panel to the left of the viewport edge. Use for right-to-left languages which invert the navigational chrome.',
|
|
2380
|
+
team: 'Design System Team',
|
|
2381
|
+
status: 'published'
|
|
2382
|
+
},
|
|
2383
|
+
'panel-right': {
|
|
2384
|
+
keywords: ['panel-right', 'panelright', 'icon', 'core', 'detail view', 'right rail', 'drawer', 'preview panel', 'sidebar'],
|
|
2385
|
+
componentName: 'PanelRightIcon',
|
|
2386
|
+
package: '@atlaskit/icon/core/panel-right',
|
|
2387
|
+
type: 'core',
|
|
2388
|
+
categorization: 'single-purpose',
|
|
2389
|
+
usage: 'Reserved for opening a preview panel to the right of the viewport edge. Use only for left-to-right languages.',
|
|
2390
|
+
team: 'Design System Team',
|
|
2391
|
+
status: 'published'
|
|
2392
|
+
},
|
|
2373
2393
|
pen: {
|
|
2374
2394
|
keywords: ['pen', 'icon', 'core', 'pen tool', 'nib', 'fountain pen', 'design', 'work type'],
|
|
2375
2395
|
componentName: 'PenIcon',
|
|
@@ -3015,7 +3035,7 @@ const metadata = {
|
|
|
3015
3035
|
package: '@atlaskit/icon/core/sidebar-left',
|
|
3016
3036
|
type: 'core',
|
|
3017
3037
|
replacement: {
|
|
3018
|
-
name: '
|
|
3038
|
+
name: 'panel-left',
|
|
3019
3039
|
type: 'core',
|
|
3020
3040
|
location: '@atlaskit/icon'
|
|
3021
3041
|
},
|
|
@@ -3031,7 +3051,7 @@ const metadata = {
|
|
|
3031
3051
|
oldName: ['detail-view', 'room-menu'],
|
|
3032
3052
|
type: 'core',
|
|
3033
3053
|
replacement: {
|
|
3034
|
-
name: '
|
|
3054
|
+
name: 'panel-right',
|
|
3035
3055
|
type: 'core',
|
|
3036
3056
|
location: '@atlaskit/icon'
|
|
3037
3057
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::7c22ff7738ef2148e1812d19e3326ba2>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
var deprecatedIcons = {
|
|
@@ -44,10 +44,10 @@ var deprecatedIcons = {
|
|
|
44
44
|
message: 'The icon "issues" is deprecated in favour of "work-items" from “@atlaskit/icon/core”'
|
|
45
45
|
},
|
|
46
46
|
'@atlaskit/icon/core/sidebar-left': {
|
|
47
|
-
message: 'The icon "sidebar-left" is deprecated in favour of "
|
|
47
|
+
message: 'The icon "sidebar-left" is deprecated in favour of "panel-left" from “@atlaskit/icon/core”'
|
|
48
48
|
},
|
|
49
49
|
'@atlaskit/icon/core/sidebar-right': {
|
|
50
|
-
message: 'The icon "sidebar-right" is deprecated in favour of "
|
|
50
|
+
message: 'The icon "sidebar-right" is deprecated in favour of "panel-right" from “@atlaskit/icon/core”'
|
|
51
51
|
},
|
|
52
52
|
'@atlaskit/icon/core/migration/align-center--editor-align-center': {
|
|
53
53
|
message: 'The icon "align-center--editor-align-center" is deprecated in favour of "align-text-center--editor-align-center" from “@atlaskit/icon/core/migration”'
|
|
@@ -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::
|
|
6
|
+
* @codegen <<SignedSource::205e7286912020521b2f575b3086483f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
|
|
@@ -2370,6 +2370,26 @@ var metadata = {
|
|
|
2370
2370
|
team: 'Design System Team',
|
|
2371
2371
|
status: 'published'
|
|
2372
2372
|
},
|
|
2373
|
+
'panel-left': {
|
|
2374
|
+
keywords: ['panel-left', 'panelleft', 'icon', 'core', 'detail view', 'left rail', 'drawer', 'preview panel', 'sidebar'],
|
|
2375
|
+
componentName: 'PanelLeftIcon',
|
|
2376
|
+
package: '@atlaskit/icon/core/panel-left',
|
|
2377
|
+
type: 'core',
|
|
2378
|
+
categorization: 'single-purpose',
|
|
2379
|
+
usage: 'Reserved for opening a preview panel to the left of the viewport edge. Use for right-to-left languages which invert the navigational chrome.',
|
|
2380
|
+
team: 'Design System Team',
|
|
2381
|
+
status: 'published'
|
|
2382
|
+
},
|
|
2383
|
+
'panel-right': {
|
|
2384
|
+
keywords: ['panel-right', 'panelright', 'icon', 'core', 'detail view', 'right rail', 'drawer', 'preview panel', 'sidebar'],
|
|
2385
|
+
componentName: 'PanelRightIcon',
|
|
2386
|
+
package: '@atlaskit/icon/core/panel-right',
|
|
2387
|
+
type: 'core',
|
|
2388
|
+
categorization: 'single-purpose',
|
|
2389
|
+
usage: 'Reserved for opening a preview panel to the right of the viewport edge. Use only for left-to-right languages.',
|
|
2390
|
+
team: 'Design System Team',
|
|
2391
|
+
status: 'published'
|
|
2392
|
+
},
|
|
2373
2393
|
pen: {
|
|
2374
2394
|
keywords: ['pen', 'icon', 'core', 'pen tool', 'nib', 'fountain pen', 'design', 'work type'],
|
|
2375
2395
|
componentName: 'PenIcon',
|
|
@@ -3015,7 +3035,7 @@ var metadata = {
|
|
|
3015
3035
|
package: '@atlaskit/icon/core/sidebar-left',
|
|
3016
3036
|
type: 'core',
|
|
3017
3037
|
replacement: {
|
|
3018
|
-
name: '
|
|
3038
|
+
name: 'panel-left',
|
|
3019
3039
|
type: 'core',
|
|
3020
3040
|
location: '@atlaskit/icon'
|
|
3021
3041
|
},
|
|
@@ -3031,7 +3051,7 @@ var metadata = {
|
|
|
3031
3051
|
oldName: ['detail-view', 'room-menu'],
|
|
3032
3052
|
type: 'core',
|
|
3033
3053
|
replacement: {
|
|
3034
|
-
name: '
|
|
3054
|
+
name: 'panel-right',
|
|
3035
3055
|
type: 'core',
|
|
3036
3056
|
location: '@atlaskit/icon'
|
|
3037
3057
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* To change the format of this file, modify `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::7c22ff7738ef2148e1812d19e3326ba2>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
declare const deprecatedIcons: Record<string, {
|
|
@@ -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::
|
|
6
|
+
* @codegen <<SignedSource::205e7286912020521b2f575b3086483f>>
|
|
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 `createDeprecatedIconDocs` in icon-build-process/src/create-deprecated-icon-docs.tsx.
|
|
5
5
|
*
|
|
6
|
-
* @codegen <<SignedSource::
|
|
6
|
+
* @codegen <<SignedSource::7c22ff7738ef2148e1812d19e3326ba2>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
declare const deprecatedIcons: Record<string, {
|
|
@@ -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::
|
|
6
|
+
* @codegen <<SignedSource::205e7286912020521b2f575b3086483f>>
|
|
7
7
|
* @codegenCommand yarn build:icon-glyphs
|
|
8
8
|
*/
|
|
9
9
|
interface metadata {
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M14.5 3a.5.5 0 0 0-.5-.5H8v11h6a.5.5 0 0 0 .5-.5zM5 10v1.5H3V10zm0-3v1.5H3V7zm0-3v1.5H3V4zm-3.5 9a.5.5 0 0 0 .5.5h4.5v-11H2a.5.5 0 0 0-.5.5zM16 13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="currentcolor" d="M14.5 3a.5.5 0 0 0-.5-.5H9.5v11H14a.5.5 0 0 0 .5-.5zM13 10v1.5h-2V10zm0-3v1.5h-2V7zm0-3v1.5h-2V4zM1.5 13a.5.5 0 0 0 .5.5h6v-11H2a.5.5 0 0 0-.5.5zM16 13a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"/></svg>
|