@apify/ui-library 1.100.3 → 1.100.5
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/button.js +3 -3
- package/dist/src/components/icon_button.js +2 -2
- package/dist/src/components/icon_button.js.map +1 -1
- package/dist/src/components/simple_markdown/simple_markdown.d.ts.map +1 -1
- package/dist/src/components/simple_markdown/simple_markdown.js +4 -0
- package/dist/src/components/simple_markdown/simple_markdown.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/components/button.tsx +3 -3
- package/src/components/icon_button.tsx +2 -2
- package/src/components/simple_markdown/simple_markdown.tsx +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/ui-library",
|
|
3
|
-
"version": "1.100.
|
|
3
|
+
"version": "1.100.5",
|
|
4
4
|
"description": "React UI library used by apify.com",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"src",
|
|
65
65
|
"style"
|
|
66
66
|
],
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "c7ba8d76e4bc533cc77c3f7a4059d1c9cf608284"
|
|
68
68
|
}
|
|
@@ -172,10 +172,10 @@ export const BUTTON_SIZE_VARIANTS_CSS: ButtonSizeCombinations = {
|
|
|
172
172
|
size: 32,
|
|
173
173
|
horizontalPadding: 12,
|
|
174
174
|
borderRadius: theme.radius.radius6,
|
|
175
|
-
iconSize: '
|
|
175
|
+
iconSize: '20',
|
|
176
176
|
},
|
|
177
177
|
small: {
|
|
178
|
-
typography: theme.typography.shared.mobile.
|
|
178
|
+
typography: theme.typography.shared.mobile.bodySMedium,
|
|
179
179
|
size: 28,
|
|
180
180
|
horizontalPadding: 8,
|
|
181
181
|
borderRadius: theme.radius.radius6,
|
|
@@ -186,7 +186,7 @@ export const BUTTON_SIZE_VARIANTS_CSS: ButtonSizeCombinations = {
|
|
|
186
186
|
size: 24,
|
|
187
187
|
horizontalPadding: 6,
|
|
188
188
|
borderRadius: theme.radius.radius6,
|
|
189
|
-
iconSize: '
|
|
189
|
+
iconSize: '16',
|
|
190
190
|
},
|
|
191
191
|
};
|
|
192
192
|
|
|
@@ -64,6 +64,10 @@ export const defaultAllowedElements = [
|
|
|
64
64
|
const StyledMarkdown = styled(ReactMarkdown)`
|
|
65
65
|
scroll-margin-top: 10px;
|
|
66
66
|
|
|
67
|
+
overflow: auto;
|
|
68
|
+
word-break: break-word;
|
|
69
|
+
white-space: pre-wrap;
|
|
70
|
+
|
|
67
71
|
@font-face {
|
|
68
72
|
font-family: "ellipsis-font";
|
|
69
73
|
src: local("Courier");
|