@apify/ui-library 1.147.0 → 1.147.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/dist/src/components/browser_window/browser_window.d.ts.map +1 -1
- package/dist/src/components/browser_window/browser_window.js +1 -1
- package/dist/src/components/browser_window/browser_window.js.map +1 -1
- package/dist/src/components/message/message.d.ts +0 -2
- package/dist/src/components/message/message.d.ts.map +1 -1
- package/dist/src/components/message/message.js +0 -2
- package/dist/src/components/message/message.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/components/browser_window/browser_window.tsx +6 -1
- package/src/components/message/message.stories.jsx +1 -2
- package/src/components/message/message.tsx +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/ui-library",
|
|
3
|
-
"version": "1.147.
|
|
3
|
+
"version": "1.147.2",
|
|
4
4
|
"description": "React UI library used by apify.com",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"It's not nice, but helps us to get around the problem of multiple react instances."
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@apify/ui-icons": "^1.
|
|
31
|
+
"@apify/ui-icons": "^1.45.0",
|
|
32
32
|
"@floating-ui/react": "^0.27.19",
|
|
33
33
|
"@floating-ui/react-dom": "^2.1.8",
|
|
34
34
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"styled-components": "^6.1.19"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@apify-packages/types": "^3.
|
|
64
|
+
"@apify-packages/types": "^3.377.1",
|
|
65
65
|
"@storybook/react-vite": "^10.3.5",
|
|
66
66
|
"@testing-library/react": "^16.3.2",
|
|
67
67
|
"@types/hast": "^3.0.4",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"src",
|
|
79
79
|
"style"
|
|
80
80
|
],
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "2fc581b8f223ce4461ffb450d1a5d613c4066d37"
|
|
82
82
|
}
|
|
@@ -89,7 +89,12 @@ export const BrowserWindow = ({ title, url, children, className }: Props) => {
|
|
|
89
89
|
<span className={classNames.DOT} />
|
|
90
90
|
<span className={classNames.DOT} />
|
|
91
91
|
</div>
|
|
92
|
-
<Badge
|
|
92
|
+
<Badge
|
|
93
|
+
size="extra_small"
|
|
94
|
+
variant="neutral_subtle"
|
|
95
|
+
className={classNames.URL}
|
|
96
|
+
data-visual-test="transparent"
|
|
97
|
+
>
|
|
93
98
|
{url}
|
|
94
99
|
</Badge>
|
|
95
100
|
</>
|
|
@@ -11,8 +11,7 @@ const handleDismissClick = () => {};
|
|
|
11
11
|
const MESSAGE_TYPES = ['info', 'warning', 'danger', 'success'];
|
|
12
12
|
|
|
13
13
|
export default {
|
|
14
|
-
title: 'UI-Library/Message
|
|
15
|
-
tags: ['deprecated'],
|
|
14
|
+
title: 'UI-Library/Message',
|
|
16
15
|
component: Message,
|
|
17
16
|
argTypes: {
|
|
18
17
|
type: {
|
|
@@ -158,8 +158,6 @@ type MessageProps = BoxProps & {
|
|
|
158
158
|
|
|
159
159
|
/**
|
|
160
160
|
* Component used to display larger messages that are part of the content of the application.
|
|
161
|
-
* @deprecated Use `Alert` instead once it is available.
|
|
162
|
-
* @see https://www.notion.so/apify/Design-system-roadmap-2026-326f39950a2280d4b81bec00ebc9cf44
|
|
163
161
|
*/
|
|
164
162
|
export const Message: React.FC<MessageProps> = ({
|
|
165
163
|
className,
|