@steroidsjs/core 2.2.40 → 2.2.41

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": "@steroidsjs/core",
3
- "version": "2.2.40",
3
+ "version": "2.2.41",
4
4
  "description": "",
5
5
  "author": "Vladimir Kozhin <hello@kozhindev.com>",
6
6
  "repository": {
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ /// <reference types="react" />
2
2
  import { IListConfig, IListOutput } from '../../../hooks/useList';
3
3
  /**
4
4
  * List
@@ -18,7 +18,7 @@ export interface IListProps extends IListConfig {
18
18
  * Переопределение view React компонента для кастомизации отображения
19
19
  * @example MyCustomView
20
20
  */
21
- view?: React.ComponentType;
21
+ view?: CustomView;
22
22
  /**
23
23
  * Дополнительный CSS-класс для элемента отображения
24
24
  */