@apify/ui-library 1.109.3-featurereact19upgrade-8b5553.233 → 1.109.3-featurereact19upgrade-8b5553.237

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.109.3-featurereact19upgrade-8b5553.233+c98832a8fec",
3
+ "version": "1.109.3-featurereact19upgrade-8b5553.237+b4ed81008fe",
4
4
  "description": "React UI library used by apify.com",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -26,7 +26,7 @@
26
26
  "It's not nice, but helps us to get around the problem of multiple react instances."
27
27
  ],
28
28
  "dependencies": {
29
- "@apify/ui-icons": "^1.23.1-featurereact19upgrade-8b5553.267+c98832a8fec",
29
+ "@apify/ui-icons": "^1.23.1-featurereact19upgrade-8b5553.271+b4ed81008fe",
30
30
  "@floating-ui/react": "^0.26.2",
31
31
  "@react-hook/resize-observer": "^2.0.2",
32
32
  "clsx": "^2.0.0",
@@ -64,5 +64,5 @@
64
64
  "src",
65
65
  "style"
66
66
  ],
67
- "gitHead": "c98832a8fec8420d87925f7aed4ec294ef8777a9"
67
+ "gitHead": "b4ed81008fef7540e14df625c677c56d656b802f"
68
68
  }
@@ -179,9 +179,13 @@ const smallMarkdownSizeComponents: Components = {
179
179
  type MarkdownSize = 'regular' | 'small';
180
180
 
181
181
  export type SimpleMarkdownProps = Omit<ReactMarkdownOptions, 'urlTransform' | 'children'> & {
182
- // @deprecated use urlTransform instead
182
+ /**
183
+ * @deprecated use urlTransform instead
184
+ */
183
185
  transformLinkUri?: UrlTransform,
184
- // @deprecated use urlTransform instead
186
+ /**
187
+ * @deprecated use urlTransform instead
188
+ */
185
189
  transformImageUri?: UrlTransform,
186
190
  size?: MarkdownSize,
187
191
  children: string,