@apify/ui-library 1.145.2-featverifieddeveloperbadge-bd59c6.13 → 1.145.10
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/ui-library",
|
|
3
|
-
"version": "1.145.
|
|
3
|
+
"version": "1.145.10",
|
|
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.43.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.365.0",
|
|
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": "b2320aa30b1e2021ccf99cdb1be8579419875e5f"
|
|
82
82
|
}
|
|
@@ -23,7 +23,7 @@ const TAG_ICON_SIZES = {
|
|
|
23
23
|
} satisfies Record<TagSize, IconSize>;
|
|
24
24
|
|
|
25
25
|
export const TAG_VARIANTS = ['primary', 'secondary', 'subtle', 'accent', 'success', 'warning', 'error'] as const;
|
|
26
|
-
type TagVariant = (typeof TAG_VARIANTS)[number];
|
|
26
|
+
export type TagVariant = (typeof TAG_VARIANTS)[number];
|
|
27
27
|
|
|
28
28
|
type TagNodeType = Extract<React.ElementType, 'a' | 'button'>;
|
|
29
29
|
type TagNodePropsMap = {
|