@atlaskit/section-message 8.5.1 → 8.5.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 +6 -0
- package/dist/types/internal/appearance-icon.d.ts +2 -2
- package/dist/types/section-message-action.d.ts +0 -1
- package/dist/types/section-message.d.ts +0 -1
- package/dist/types-ts4.5/internal/appearance-icon.d.ts +2 -2
- package/dist/types-ts4.5/section-message-action.d.ts +0 -1
- package/dist/types-ts4.5/section-message.d.ts +0 -1
- package/package.json +5 -6
- package/section-message/package.json +1 -1
- package/section-message-action/package.json +1 -1
- package/types/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { type ComponentType } from 'react';
|
|
2
2
|
import type { Appearance, SectionMessageProps } from '../types';
|
|
3
3
|
export declare function getAppearanceIconStyles(appearance: Appearance, icon: SectionMessageProps['icon']): {
|
|
4
4
|
Icon: React.ElementType<any, keyof React.JSX.IntrinsicElements> | (({ size, primaryColor, secondaryColor, }: {
|
|
@@ -8,5 +8,5 @@ export declare function getAppearanceIconStyles(appearance: Appearance, icon: Se
|
|
|
8
8
|
}) => React.JSX.Element);
|
|
9
9
|
backgroundColor: string;
|
|
10
10
|
primaryIconColor: string;
|
|
11
|
-
LegacyFallbackIcon?:
|
|
11
|
+
LegacyFallbackIcon?: ComponentType<any>;
|
|
12
12
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { type ComponentType } from 'react';
|
|
2
2
|
import type { Appearance, SectionMessageProps } from '../types';
|
|
3
3
|
export declare function getAppearanceIconStyles(appearance: Appearance, icon: SectionMessageProps['icon']): {
|
|
4
4
|
Icon: React.ElementType<any, keyof React.JSX.IntrinsicElements> | (({ size, primaryColor, secondaryColor, }: {
|
|
@@ -8,5 +8,5 @@ export declare function getAppearanceIconStyles(appearance: Appearance, icon: Se
|
|
|
8
8
|
}) => React.JSX.Element);
|
|
9
9
|
backgroundColor: string;
|
|
10
10
|
primaryIconColor: string;
|
|
11
|
-
LegacyFallbackIcon?:
|
|
11
|
+
LegacyFallbackIcon?: ComponentType<any>;
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/section-message",
|
|
3
|
-
"version": "8.5.
|
|
3
|
+
"version": "8.5.2",
|
|
4
4
|
"description": "A section message is used to alert users to a particular section of the screen.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
".": "./src/index.tsx"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@atlaskit/button": "^23.
|
|
41
|
+
"@atlaskit/button": "^23.4.0",
|
|
42
42
|
"@atlaskit/codemod-utils": "^4.2.0",
|
|
43
43
|
"@atlaskit/css": "^0.12.0",
|
|
44
44
|
"@atlaskit/heading": "^5.2.0",
|
|
45
|
-
"@atlaskit/icon": "^
|
|
45
|
+
"@atlaskit/icon": "^28.0.0",
|
|
46
46
|
"@atlaskit/link": "^3.2.0",
|
|
47
47
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
48
48
|
"@atlaskit/primitives": "^14.11.0",
|
|
@@ -61,14 +61,13 @@
|
|
|
61
61
|
"@atlaskit/code": "^17.2.0",
|
|
62
62
|
"@atlaskit/docs": "^11.0.0",
|
|
63
63
|
"@atlaskit/ds-lib": "^5.0.0",
|
|
64
|
-
"@atlaskit/form": "^12.
|
|
64
|
+
"@atlaskit/form": "^12.1.0",
|
|
65
65
|
"@atlaskit/range": "^9.2.0",
|
|
66
66
|
"@atlassian/feature-flags-test-utils": "^0.3.0",
|
|
67
67
|
"@atlassian/ssr-tests": "^0.2.0",
|
|
68
68
|
"@testing-library/react": "^13.4.0",
|
|
69
69
|
"@testing-library/user-event": "^14.4.3",
|
|
70
|
-
"react-dom": "^18.2.0"
|
|
71
|
-
"typescript": "~5.4.2"
|
|
70
|
+
"react-dom": "^18.2.0"
|
|
72
71
|
},
|
|
73
72
|
"techstack": {
|
|
74
73
|
"@atlassian/frontend": {
|