@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.
- package/CHANGELOG.md +241 -1
- package/core/bulleted-list.d.ts +14 -0
- package/core/bulleted-list.js +32 -0
- package/core/collapse.d.ts +14 -0
- package/core/collapse.js +32 -0
- package/core/expand.d.ts +14 -0
- package/core/expand.js +32 -0
- package/core/migration/app-switcher--switcher.d.ts +14 -0
- package/core/migration/app-switcher--switcher.js +33 -0
- package/core/migration/bulleted-list--bullet-list.d.ts +14 -0
- package/core/migration/bulleted-list--bullet-list.js +33 -0
- package/core/migration/bulleted-list--editor-bullet-list.d.ts +14 -0
- package/core/migration/bulleted-list--editor-bullet-list.js +33 -0
- package/core/migration/check-circle.d.ts +14 -0
- package/core/migration/check-circle.js +33 -0
- package/core/migration/collapse--editor-collapse.d.ts +14 -0
- package/core/migration/collapse--editor-collapse.js +33 -0
- package/core/migration/expand--editor-expand.d.ts +14 -0
- package/core/migration/expand--editor-expand.js +33 -0
- package/core/migration/expand--editor-image-resize.d.ts +14 -0
- package/core/migration/expand--editor-image-resize.js +33 -0
- package/core/migration/expand--image-resize.d.ts +14 -0
- package/core/migration/expand--image-resize.js +33 -0
- package/core/migration/maximize--media-services-actual-size.d.ts +14 -0
- package/core/migration/maximize--media-services-actual-size.js +33 -0
- package/core/migration/minimize--media-services-fit-to-page.d.ts +14 -0
- package/core/migration/minimize--media-services-fit-to-page.js +33 -0
- package/core/migration/minimize--vid-full-screen-off.d.ts +14 -0
- package/core/migration/minimize--vid-full-screen-off.js +33 -0
- package/core/migration/phone--hipchat-dial-out.d.ts +14 -0
- package/core/migration/phone--hipchat-dial-out.js +33 -0
- package/dist/cjs/components/icon-new.js +6 -2
- package/dist/cjs/metadata-core.js +37 -5
- package/dist/cjs/metadata-utility.js +2 -2
- package/dist/cjs/migration-map.js +60 -0
- package/dist/es2019/components/icon-new.js +6 -1
- package/dist/es2019/metadata-core.js +37 -5
- package/dist/es2019/metadata-utility.js +2 -2
- package/dist/es2019/migration-map.js +60 -0
- package/dist/esm/components/icon-new.js +6 -2
- package/dist/esm/metadata-core.js +37 -5
- package/dist/esm/metadata-utility.js +2 -2
- package/dist/esm/migration-map.js +60 -0
- package/dist/types/metadata-core.d.ts +1 -1
- package/dist/types/metadata-utility.d.ts +1 -1
- package/dist/types-ts4.5/metadata-core.d.ts +1 -1
- package/dist/types-ts4.5/metadata-utility.d.ts +1 -1
- package/package.json +9 -8
- package/utility/migration/check-circle--editor-success.d.ts +14 -0
- package/utility/migration/check-circle--editor-success.js +33 -0
- package/utility/migration/check-circle.d.ts +14 -0
- package/utility/migration/check-circle.js +33 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::ae7634ba50e8a6a72e5bc74b90147243>>
|
|
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/utility/success"));
|
|
14
|
+
var _checkCircleOutline = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/success"));
|
|
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 "EditorSuccess".
|
|
21
|
+
*
|
|
22
|
+
* Category: utility
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: 📦 @atlaskit/icon/utility/check-circle
|
|
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: _checkCircleOutline.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::d5e4cf5c2bd45cf5a9f71975606d2d7d>>
|
|
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' | 'spacing' | '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::1f695a8d3308afb3e0058270861dbc03>>
|
|
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/utility/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: utility
|
|
23
|
+
* Location: @atlaskit/icon
|
|
24
|
+
* Usage guidance: 📦 @atlaskit/icon/utility/check-circle
|
|
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;
|