@atlaskit/icon 27.3.0 → 27.4.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 +21 -0
- package/afm-dev-agents/tsconfig.json +27 -0
- package/afm-rovo-extension/tsconfig.json +27 -0
- package/core/migration/status-error--error.d.ts +15 -0
- package/core/migration/status-error--error.js +32 -0
- package/core/migration/status-information--editor-info.d.ts +15 -0
- package/core/migration/status-information--editor-info.js +33 -0
- package/core/migration/status-information--editor-panel.d.ts +15 -0
- package/core/migration/status-information--editor-panel.js +33 -0
- package/core/migration/status-information--info.d.ts +15 -0
- package/core/migration/status-information--info.js +33 -0
- package/core/migration/status-success--check-circle.d.ts +15 -0
- package/core/migration/status-success--check-circle.js +31 -0
- package/core/migration/status-success--editor-success.d.ts +15 -0
- package/core/migration/status-success--editor-success.js +31 -0
- package/core/migration/status-warning--editor-warning.d.ts +15 -0
- package/core/migration/status-warning--editor-warning.js +32 -0
- package/core/migration/status-warning--warning.d.ts +15 -0
- package/core/migration/status-warning--warning.js +32 -0
- package/dist/cjs/deprecated-utility.js +1 -1
- package/dist/cjs/metadata-core.js +5 -1
- package/dist/cjs/migration-map.js +47 -8
- package/dist/es2019/deprecated-utility.js +1 -1
- package/dist/es2019/metadata-core.js +5 -1
- package/dist/es2019/migration-map.js +47 -8
- package/dist/esm/deprecated-utility.js +1 -1
- package/dist/esm/metadata-core.js +5 -1
- package/dist/esm/migration-map.js +47 -8
- package/dist/types/deprecated-utility.d.ts +1 -1
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/deprecated-utility.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/glyph/check-circle.js +2 -2
- package/glyph/editor/info.js +2 -2
- package/glyph/editor/panel.js +2 -2
- package/glyph/editor/success.js +2 -2
- package/glyph/editor/warning.js +2 -2
- package/glyph/error.js +2 -2
- package/glyph/info.js +2 -2
- package/glyph/warning.js +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @atlaskit/icon
|
|
2
2
|
|
|
3
|
+
## 27.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#188287](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/188287)
|
|
8
|
+
[`ecadaec5669f6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ecadaec5669f6) -
|
|
9
|
+
Updated migration mapping for several icon entrypoints.
|
|
10
|
+
|
|
11
|
+
**`@atlaskit/icon/core/migration`**
|
|
12
|
+
|
|
13
|
+
- `close--cross → cross`
|
|
14
|
+
- `close--editor-close → cross--editor-close`
|
|
15
|
+
- `error → status-error--error`
|
|
16
|
+
- `information--editor-info → status-information--editor-info`
|
|
17
|
+
- `information--editor-panel → status-information--editor-panel`
|
|
18
|
+
- `information--info → status-information--info`
|
|
19
|
+
- `success--check-circle → status-success--check-circle`
|
|
20
|
+
- `success--editor-success → status-success--editor-success`
|
|
21
|
+
- `warning--editor-warning → status-warning--editor-warning`
|
|
22
|
+
- `warning → status-warning--warning`
|
|
23
|
+
|
|
3
24
|
## 27.3.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.dev-agents.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../dev-agents/tsDist/@atlaskit__icon/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../platform/feature-flags/afm-dev-agents/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../tokens/afm-dev-agents/tsconfig.json"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.rovo-extension.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../rovo-extension/tsDist/@atlaskit__icon/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*"
|
|
18
|
+
],
|
|
19
|
+
"references": [
|
|
20
|
+
{
|
|
21
|
+
"path": "../../../platform/feature-flags/afm-rovo-extension/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"path": "../../tokens/afm-rovo-extension/tsconfig.json"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c33f15421259c2a054db8d8057b5c9eb>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusErrorIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusErrorIconMigration;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::8687bcf05df783ceffe46d3fd0178463>>
|
|
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 _statusError = _interopRequireDefault(require("@atlaskit/icon/core/status-error"));
|
|
14
|
+
var _error = _interopRequireDefault(require("@atlaskit/icon/glyph/error"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusErrorIcon.
|
|
18
|
+
* This component is StatusErrorIcon, with `UNSAFE_fallbackIcon` set to "ErrorIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for error statuses and messaging.
|
|
23
|
+
Filled status icons provide higher visual contrast to draw attention to important information.
|
|
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 StatusErrorIcon = props => /*#__PURE__*/_react.default.createElement(_statusError.default, Object.assign({
|
|
28
|
+
LEGACY_fallbackIcon: _error.default
|
|
29
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
30
|
+
}, props));
|
|
31
|
+
StatusErrorIcon.Name = 'StatusErrorIconMigration';
|
|
32
|
+
var _default = exports.default = StatusErrorIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::fec9b78c39677aefd61686edd59a3d44>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusInformationIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusInformationIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::65c0b39bd1a1282c23e57cf02e78c0e0>>
|
|
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 _statusInformation = _interopRequireDefault(require("@atlaskit/icon/core/status-information"));
|
|
14
|
+
var _info = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/info"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusInformationIcon.
|
|
18
|
+
* This component is StatusInformationIcon, with `UNSAFE_fallbackIcon` set to "EditorInfoIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for information statuses and messaging.
|
|
23
|
+
Filled status icons provide higher visual contrast to draw attention to important information.
|
|
24
|
+
For information tooltips, use the unfilled 'information circle' icon.
|
|
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 StatusInformationIcon = props => /*#__PURE__*/_react.default.createElement(_statusInformation.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _info.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
StatusInformationIcon.Name = 'StatusInformationIconMigration';
|
|
33
|
+
var _default = exports.default = StatusInformationIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::fec9b78c39677aefd61686edd59a3d44>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusInformationIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusInformationIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d4c08fce34755bd27ddd6baac981b869>>
|
|
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 _statusInformation = _interopRequireDefault(require("@atlaskit/icon/core/status-information"));
|
|
14
|
+
var _panel = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/panel"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusInformationIcon.
|
|
18
|
+
* This component is StatusInformationIcon, with `UNSAFE_fallbackIcon` set to "EditorPanelIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for information statuses and messaging.
|
|
23
|
+
Filled status icons provide higher visual contrast to draw attention to important information.
|
|
24
|
+
For information tooltips, use the unfilled 'information circle' icon.
|
|
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 StatusInformationIcon = props => /*#__PURE__*/_react.default.createElement(_statusInformation.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _panel.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
StatusInformationIcon.Name = 'StatusInformationIconMigration';
|
|
33
|
+
var _default = exports.default = StatusInformationIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::fec9b78c39677aefd61686edd59a3d44>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusInformationIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusInformationIconMigration;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::6e3974ad0608437b58ea5a455fd9f640>>
|
|
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 _statusInformation = _interopRequireDefault(require("@atlaskit/icon/core/status-information"));
|
|
14
|
+
var _info = _interopRequireDefault(require("@atlaskit/icon/glyph/info"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusInformationIcon.
|
|
18
|
+
* This component is StatusInformationIcon, with `UNSAFE_fallbackIcon` set to "InfoIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for information statuses and messaging.
|
|
23
|
+
Filled status icons provide higher visual contrast to draw attention to important information.
|
|
24
|
+
For information tooltips, use the unfilled 'information circle' icon.
|
|
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 StatusInformationIcon = props => /*#__PURE__*/_react.default.createElement(_statusInformation.default, Object.assign({
|
|
29
|
+
LEGACY_fallbackIcon: _info.default
|
|
30
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
31
|
+
}, props));
|
|
32
|
+
StatusInformationIcon.Name = 'StatusInformationIconMigration';
|
|
33
|
+
var _default = exports.default = StatusInformationIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2bce5be503f9f351bf14884f7b663d14>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusSuccessIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusSuccessIconMigration;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::79d87fd54ca549401aa2a870cdd2f3b2>>
|
|
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 _statusSuccess = _interopRequireDefault(require("@atlaskit/icon/core/status-success"));
|
|
14
|
+
var _checkCircle = _interopRequireDefault(require("@atlaskit/icon/glyph/check-circle"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusSuccessIcon.
|
|
18
|
+
* This component is StatusSuccessIcon, with `UNSAFE_fallbackIcon` set to "CheckCircleIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for success statuses and messaging. Filled status icons provide higher visual contrast to draw attention to important information.
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const StatusSuccessIcon = props => /*#__PURE__*/_react.default.createElement(_statusSuccess.default, Object.assign({
|
|
27
|
+
LEGACY_fallbackIcon: _checkCircle.default
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
StatusSuccessIcon.Name = 'StatusSuccessIconMigration';
|
|
31
|
+
var _default = exports.default = StatusSuccessIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::2bce5be503f9f351bf14884f7b663d14>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusSuccessIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusSuccessIconMigration;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::d11500fc79ac0e5637954a63f0212549>>
|
|
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 _statusSuccess = _interopRequireDefault(require("@atlaskit/icon/core/status-success"));
|
|
14
|
+
var _success = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/success"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusSuccessIcon.
|
|
18
|
+
* This component is StatusSuccessIcon, with `UNSAFE_fallbackIcon` set to "EditorSuccessIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for success statuses and messaging. Filled status icons provide higher visual contrast to draw attention to important information.
|
|
23
|
+
* - [Examples](https://atlaskit.atlassian.com/packages/design-system/icon)
|
|
24
|
+
* - [Code](https://atlaskit.atlassian.com/packages/design-system/icon/docs/custom-icons)
|
|
25
|
+
*/
|
|
26
|
+
const StatusSuccessIcon = props => /*#__PURE__*/_react.default.createElement(_statusSuccess.default, Object.assign({
|
|
27
|
+
LEGACY_fallbackIcon: _success.default
|
|
28
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
29
|
+
}, props));
|
|
30
|
+
StatusSuccessIcon.Name = 'StatusSuccessIconMigration';
|
|
31
|
+
var _default = exports.default = StatusSuccessIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::979b38a2a50bc5d2659c4d1052d1f889>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusWarningIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusWarningIconMigration;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::468397db8b621d0b872ec4fdf86e27df>>
|
|
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 _statusWarning = _interopRequireDefault(require("@atlaskit/icon/core/status-warning"));
|
|
14
|
+
var _warning = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/warning"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusWarningIcon.
|
|
18
|
+
* This component is StatusWarningIcon, with `UNSAFE_fallbackIcon` set to "EditorWarningIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for warning statuses.
|
|
23
|
+
Filled status icons provide higher visual contrast to draw attention to important information.
|
|
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 StatusWarningIcon = props => /*#__PURE__*/_react.default.createElement(_statusWarning.default, Object.assign({
|
|
28
|
+
LEGACY_fallbackIcon: _warning.default
|
|
29
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
30
|
+
}, props));
|
|
31
|
+
StatusWarningIcon.Name = 'StatusWarningIconMigration';
|
|
32
|
+
var _default = exports.default = StatusWarningIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::979b38a2a50bc5d2659c4d1052d1f889>>
|
|
4
|
+
* @codegenCommand yarn build:icon-glyphs
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { NewCoreIconProps } from '@atlaskit/icon/base-new';
|
|
9
|
+
import Icon from '@atlaskit/icon/base-new';
|
|
10
|
+
|
|
11
|
+
declare const StatusWarningIconMigration: {
|
|
12
|
+
(props: Omit<NewCoreIconProps, | 'LEGACY_fallbackIcon'> ): JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export default StatusWarningIconMigration;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::1c4f87fa6bbdffcdd6698ec12cc5fa12>>
|
|
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 _statusWarning = _interopRequireDefault(require("@atlaskit/icon/core/status-warning"));
|
|
14
|
+
var _warning = _interopRequireDefault(require("@atlaskit/icon/glyph/warning"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
|
+
/**
|
|
17
|
+
* Migration Icon component for StatusWarningIcon.
|
|
18
|
+
* This component is StatusWarningIcon, with `UNSAFE_fallbackIcon` set to "WarningIcon".
|
|
19
|
+
*
|
|
20
|
+
* Category: single-purpose
|
|
21
|
+
* Location: @atlaskit/icon
|
|
22
|
+
* Usage guidance: Reserved for warning statuses.
|
|
23
|
+
Filled status icons provide higher visual contrast to draw attention to important information.
|
|
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 StatusWarningIcon = props => /*#__PURE__*/_react.default.createElement(_statusWarning.default, Object.assign({
|
|
28
|
+
LEGACY_fallbackIcon: _warning.default
|
|
29
|
+
// eslint-disable-next-line @repo/internal/react/no-unsafe-spread-props
|
|
30
|
+
}, props));
|
|
31
|
+
StatusWarningIcon.Name = 'StatusWarningIconMigration';
|
|
32
|
+
var _default = exports.default = StatusWarningIcon;
|
|
@@ -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::56892aca4678057bf1259d468dd867f8>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
var deprecatedIcons = {
|
|
@@ -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::c6d9be28510316b22f4e800a2753aae8>>
|
|
13
13
|
* @codegenCommand yarn build:icon-glyphs
|
|
14
14
|
*/
|
|
15
15
|
|
|
@@ -3000,6 +3000,7 @@ var metadata = {
|
|
|
3000
3000
|
keywords: ['status-error', 'statuserror', 'icon', 'core', 'filled', 'status', 'danger', 'exclamation', '!', 'error'],
|
|
3001
3001
|
componentName: 'StatusErrorIcon',
|
|
3002
3002
|
package: '@atlaskit/icon/core/status-error',
|
|
3003
|
+
oldName: ['error'],
|
|
3003
3004
|
type: 'core',
|
|
3004
3005
|
categorization: 'single-purpose',
|
|
3005
3006
|
usage: 'Reserved for error statuses and messaging. Filled status icons provide higher visual contrast to draw attention to important information.',
|
|
@@ -3010,6 +3011,7 @@ var metadata = {
|
|
|
3010
3011
|
keywords: ['status-information', 'statusinformation', 'icon', 'core', 'info', 'filled', 'status', 'information'],
|
|
3011
3012
|
componentName: 'StatusInformationIcon',
|
|
3012
3013
|
package: '@atlaskit/icon/core/status-information',
|
|
3014
|
+
oldName: ['editor/info', 'editor/panel', 'info'],
|
|
3013
3015
|
type: 'core',
|
|
3014
3016
|
categorization: 'single-purpose',
|
|
3015
3017
|
usage: "Reserved for information statuses and messaging. Filled status icons provide higher visual contrast to draw attention to important information. For information tooltips, use the unfilled 'information circle' icon.",
|
|
@@ -3020,6 +3022,7 @@ var metadata = {
|
|
|
3020
3022
|
keywords: ['status-success', 'statussuccess', 'icon', 'core', 'tick', 'completed', 'success', 'filled', 'check mark', 'status'],
|
|
3021
3023
|
componentName: 'StatusSuccessIcon',
|
|
3022
3024
|
package: '@atlaskit/icon/core/status-success',
|
|
3025
|
+
oldName: ['check-circle', 'editor/success'],
|
|
3023
3026
|
type: 'core',
|
|
3024
3027
|
categorization: 'single-purpose',
|
|
3025
3028
|
usage: 'Reserved for success statuses and messaging. Filled status icons provide higher visual contrast to draw attention to important information.',
|
|
@@ -3040,6 +3043,7 @@ var metadata = {
|
|
|
3040
3043
|
keywords: ['status-warning', 'statuswarning', 'icon', 'core', 'alert', 'filled', 'exclamation', '!', 'warning', 'status'],
|
|
3041
3044
|
componentName: 'StatusWarningIcon',
|
|
3042
3045
|
package: '@atlaskit/icon/core/status-warning',
|
|
3046
|
+
oldName: ['editor/warning', 'warning'],
|
|
3043
3047
|
type: 'core',
|
|
3044
3048
|
categorization: 'single-purpose',
|
|
3045
3049
|
usage: 'Reserved for warning statuses. Filled status icons provide higher visual contrast to draw attention to important information.',
|