@faasjs/ant-design 0.0.3-beta.107 → 0.0.3-beta.109
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.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +359 -380
- package/dist/index.mjs +359 -380
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -157,7 +157,7 @@ declare const ConfigContext: react.Context<ConfigProviderProps>;
|
|
|
157
157
|
* </ConfigProvider>
|
|
158
158
|
* ```
|
|
159
159
|
*/
|
|
160
|
-
declare function ConfigProvider({ config, children }: {
|
|
160
|
+
declare function ConfigProvider({ config, children, }: {
|
|
161
161
|
config: ConfigProviderProps;
|
|
162
162
|
children: React.ReactNode;
|
|
163
163
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -267,7 +267,7 @@ interface DescriptionItemProps<T = any> extends FaasItemProps {
|
|
|
267
267
|
}
|
|
268
268
|
interface DescriptionProps<T = any, ExtendItemProps = any> extends Omit<DescriptionsProps, 'items'> {
|
|
269
269
|
renderTitle?(values: T): ReactNode;
|
|
270
|
-
items: (
|
|
270
|
+
items: (DescriptionItemProps | ExtendItemProps)[];
|
|
271
271
|
extendTypes?: {
|
|
272
272
|
[key: string]: ExtendDescriptionTypeProps;
|
|
273
273
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ declare const ConfigContext: react.Context<ConfigProviderProps>;
|
|
|
157
157
|
* </ConfigProvider>
|
|
158
158
|
* ```
|
|
159
159
|
*/
|
|
160
|
-
declare function ConfigProvider({ config, children }: {
|
|
160
|
+
declare function ConfigProvider({ config, children, }: {
|
|
161
161
|
config: ConfigProviderProps;
|
|
162
162
|
children: React.ReactNode;
|
|
163
163
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -267,7 +267,7 @@ interface DescriptionItemProps<T = any> extends FaasItemProps {
|
|
|
267
267
|
}
|
|
268
268
|
interface DescriptionProps<T = any, ExtendItemProps = any> extends Omit<DescriptionsProps, 'items'> {
|
|
269
269
|
renderTitle?(values: T): ReactNode;
|
|
270
|
-
items: (
|
|
270
|
+
items: (DescriptionItemProps | ExtendItemProps)[];
|
|
271
271
|
extendTypes?: {
|
|
272
272
|
[key: string]: ExtendDescriptionTypeProps;
|
|
273
273
|
};
|