@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/glyph/warning.js
CHANGED
|
@@ -6,12 +6,12 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var _react = _interopRequireDefault(require("react"));
|
|
8
8
|
var _base = require("@atlaskit/icon/base");
|
|
9
|
-
var
|
|
9
|
+
var _statusWarning = _interopRequireDefault(require("@atlaskit/icon/core/status-warning"));
|
|
10
10
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
11
|
const WarningIcon = props => /*#__PURE__*/_react.default.createElement(_base.IconFacade, Object.assign({
|
|
12
12
|
dangerouslySetGlyph: `<svg width="24" height="24" viewBox="0 0 24 24" role="presentation"><g fill-rule="evenodd"><path fill="currentcolor" d="M12.938 4.967c-.518-.978-1.36-.974-1.876 0L3.938 18.425c-.518.978-.045 1.771 1.057 1.771h14.01c1.102 0 1.573-.797 1.057-1.771z"/><path fill="inherit" d="M12 15a1 1 0 0 1-1-1V9a1 1 0 0 1 2 0v5a1 1 0 0 1-1 1m0 3a1 1 0 0 1 0-2 1 1 0 0 1 0 2"/></g></svg>`
|
|
13
13
|
}, props, {
|
|
14
|
-
newIcon:
|
|
14
|
+
newIcon: _statusWarning.default
|
|
15
15
|
}));
|
|
16
16
|
WarningIcon.displayName = 'WarningIcon';
|
|
17
17
|
var _default = exports.default = WarningIcon;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/icon",
|
|
3
|
-
"version": "27.
|
|
3
|
+
"version": "27.4.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/"
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
97
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
98
|
-
"@atlaskit/tokens": "^5.
|
|
98
|
+
"@atlaskit/tokens": "^5.5.0",
|
|
99
99
|
"@babel/register": "^7.25.9",
|
|
100
100
|
"@babel/runtime": "^7.0.0",
|
|
101
101
|
"@compiled/react": "^0.18.3"
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"@atlaskit/code": "^17.2.0",
|
|
113
113
|
"@atlaskit/css": "^0.12.0",
|
|
114
114
|
"@atlaskit/docs": "^11.0.0",
|
|
115
|
-
"@atlaskit/ds-lib": "^4.
|
|
115
|
+
"@atlaskit/ds-lib": "^4.1.0",
|
|
116
116
|
"@atlaskit/form": "^12.0.0",
|
|
117
117
|
"@atlaskit/heading": "^5.2.0",
|
|
118
118
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"@atlaskit/primitives": "^14.10.0",
|
|
125
125
|
"@atlaskit/section-message": "^8.2.0",
|
|
126
126
|
"@atlaskit/textfield": "^8.0.0",
|
|
127
|
-
"@atlaskit/theme": "^
|
|
127
|
+
"@atlaskit/theme": "^19.0.0",
|
|
128
128
|
"@atlaskit/toggle": "^15.0.0",
|
|
129
129
|
"@atlaskit/tooltip": "^20.3.0",
|
|
130
130
|
"@atlaskit/visual-regression": "workspace:^",
|