@apify/ui-library 1.127.0 → 1.127.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/ui-library",
|
|
3
|
-
"version": "1.127.
|
|
3
|
+
"version": "1.127.2",
|
|
4
4
|
"description": "React UI library used by apify.com",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"It's not nice, but helps us to get around the problem of multiple react instances."
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@apify/ui-icons": "^1.29.
|
|
30
|
+
"@apify/ui-icons": "^1.29.1",
|
|
31
31
|
"@floating-ui/react": "^0.26.2",
|
|
32
32
|
"@react-hook/resize-observer": "^2.0.2",
|
|
33
33
|
"clsx": "^2.0.0",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"src",
|
|
67
67
|
"style"
|
|
68
68
|
],
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "adb06b929bf8fe2bfb782570ae11800131861e83"
|
|
70
70
|
}
|
|
@@ -59,6 +59,7 @@ export const TileList: Story = {
|
|
|
59
59
|
content="Favorite Items"
|
|
60
60
|
action={<ChevronRightIcon size="20" />}
|
|
61
61
|
size={TILE_SIZES.SMALL}
|
|
62
|
+
// eslint-disable-next-line no-alert
|
|
62
63
|
onClick={() => alert('Clicked Favorite Items')}
|
|
63
64
|
/>
|
|
64
65
|
<HorizontalTile
|
|
@@ -66,6 +67,7 @@ export const TileList: Story = {
|
|
|
66
67
|
content="Settings"
|
|
67
68
|
action={<ChevronRightIcon size="20" />}
|
|
68
69
|
size={TILE_SIZES.SMALL}
|
|
70
|
+
// eslint-disable-next-line no-alert
|
|
69
71
|
onClick={() => alert('Clicked Settings')}
|
|
70
72
|
/>
|
|
71
73
|
<HorizontalTile
|
|
@@ -73,6 +75,7 @@ export const TileList: Story = {
|
|
|
73
75
|
content="Deleted Items"
|
|
74
76
|
action={<ChevronRightIcon size="20" />}
|
|
75
77
|
size={TILE_SIZES.SMALL}
|
|
78
|
+
// eslint-disable-next-line no-alert
|
|
76
79
|
onClick={() => alert('Clicked Deleted Items')}
|
|
77
80
|
/>
|
|
78
81
|
</StoryWrapper>
|
|
@@ -81,6 +81,7 @@ export const CardStyleGrid: Story = {
|
|
|
81
81
|
</div>
|
|
82
82
|
}
|
|
83
83
|
size={TILE_SIZES.LARGE}
|
|
84
|
+
// eslint-disable-next-line no-alert
|
|
84
85
|
onClick={() => alert('Clicked Web Scraper')}
|
|
85
86
|
/>
|
|
86
87
|
<VerticalTile
|
|
@@ -101,6 +102,7 @@ export const CardStyleGrid: Story = {
|
|
|
101
102
|
</div>
|
|
102
103
|
}
|
|
103
104
|
size={TILE_SIZES.LARGE}
|
|
105
|
+
// eslint-disable-next-line no-alert
|
|
104
106
|
onClick={() => alert('Clicked API Integration')}
|
|
105
107
|
/>
|
|
106
108
|
<VerticalTile
|
|
@@ -121,6 +123,7 @@ export const CardStyleGrid: Story = {
|
|
|
121
123
|
</div>
|
|
122
124
|
}
|
|
123
125
|
size={TILE_SIZES.LARGE}
|
|
126
|
+
// eslint-disable-next-line no-alert
|
|
124
127
|
onClick={() => alert('Clicked Data Processor')}
|
|
125
128
|
/>
|
|
126
129
|
</StoryWrapper>
|