@faasjs/ant-design 0.0.2-beta.354 → 0.0.2-beta.355

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/index.d.ts CHANGED
@@ -80,6 +80,7 @@ declare type FaasDataWrapperProps<T = any> = {
80
80
  render?: FaasDataRender<T>;
81
81
  fallback?: JSX.Element;
82
82
  };
83
+ declare function FaasDataWrapper<T = any>({ dataSource, faasData, render, fallback, }: FaasDataWrapperProps<T>): JSX.Element;
83
84
 
84
85
  declare type ExtendDescriptionTypeProps = {
85
86
  children?: JSX.Element | null;
@@ -200,4 +201,4 @@ declare type TitleProps = {
200
201
  };
201
202
  declare function Title(props: TitleProps): JSX.Element;
202
203
 
203
- export { BaseItemProps, BaseOption, Blank, BlankProps, Config, Description, DescriptionItemProps, DescriptionProps, DrawerProps, ExtendDescriptionItemProps, ExtendDescriptionTypeProps, ExtendFormItemProps, ExtendFormTypeProps, ExtendTableItemProps, ExtendTableTypeProps, FaasItemProps, FaasItemType, FaasItemTypeValue, FaasState, Form, FormItem, FormItemProps, FormProps, Routes, RoutesProps, Table, TableItemProps, TableProps, Title, TitleProps, transferOptions, useDrawer, useFaasState };
204
+ export { BaseItemProps, BaseOption, Blank, BlankProps, Config, Description, DescriptionItemProps, DescriptionProps, DrawerProps, ExtendDescriptionItemProps, ExtendDescriptionTypeProps, ExtendFormItemProps, ExtendFormTypeProps, ExtendTableItemProps, ExtendTableTypeProps, FaasDataProps, FaasDataRender, FaasDataWrapper, FaasDataWrapperProps, FaasItemProps, FaasItemType, FaasItemTypeValue, FaasState, Form, FormItem, FormItemProps, FormProps, Routes, RoutesProps, Table, TableItemProps, TableProps, Title, TitleProps, transferOptions, useDrawer, useFaasState };
package/dist/index.js CHANGED
@@ -50,6 +50,7 @@ __export(src_exports, {
50
50
  Config: () => Config,
51
51
  Description: () => Description,
52
52
  Drawer: () => import_antd3.Drawer,
53
+ FaasDataWrapper: () => FaasDataWrapper,
53
54
  Form: () => Form,
54
55
  FormItem: () => FormItem,
55
56
  Routes: () => Routes,
@@ -620,6 +621,7 @@ module.exports = __toCommonJS(src_exports);
620
621
  Config,
621
622
  Description,
622
623
  Drawer,
624
+ FaasDataWrapper,
623
625
  Form,
624
626
  FormItem,
625
627
  Routes,
package/dist/index.mjs CHANGED
@@ -607,6 +607,7 @@ export {
607
607
  Config,
608
608
  Description,
609
609
  Drawer,
610
+ FaasDataWrapper,
610
611
  Form,
611
612
  FormItem,
612
613
  Routes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faasjs/ant-design",
3
- "version": "0.0.2-beta.354",
3
+ "version": "0.0.2-beta.355",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,7 +27,7 @@
27
27
  "lodash": "*",
28
28
  "react": "*",
29
29
  "react-dom": "*",
30
- "@faasjs/react": "^0.0.2-beta.354",
30
+ "@faasjs/react": "^0.0.2-beta.355",
31
31
  "react-use": "*",
32
32
  "react-router-dom": "*"
33
33
  },