@apify/ui-library 1.127.1 → 1.127.3
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/to_consolidate/markdown.js +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/components/tile/horizontal_tile.stories.tsx +3 -0
- package/src/components/tile/vertical_tile.stories.tsx +3 -0
- package/src/components/to_consolidate/markdown.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/ui-library",
|
|
3
|
-
"version": "1.127.
|
|
3
|
+
"version": "1.127.3",
|
|
4
4
|
"description": "React UI library used by apify.com",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"src",
|
|
67
67
|
"style"
|
|
68
68
|
],
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "d5192b5966509f0f334f4b0578bd964e603dfb11"
|
|
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>
|
|
@@ -124,7 +124,7 @@ const StyledMarkdownWrapper = styled(Box)<StyledReadmeProps>`
|
|
|
124
124
|
${theme.typography.content.desktop.paragraph}
|
|
125
125
|
}
|
|
126
126
|
a {
|
|
127
|
-
overflow-wrap:
|
|
127
|
+
overflow-wrap: anywhere;
|
|
128
128
|
text-decoration: none;
|
|
129
129
|
&:hover {
|
|
130
130
|
text-decoration: underline;
|