@faasjs/ant-design 0.0.2-beta.383 → 0.0.2-beta.384

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
@@ -229,7 +229,7 @@ declare type FormItemProps<T = any> = {
229
229
  extendTypes?: {
230
230
  [type: string]: ExtendFormTypeProps;
231
231
  };
232
- } & FormItemInputProps & FaasItemProps & FormItemProps$1<T>;
232
+ } & FormItemInputProps & FaasItemProps & Omit<FormItemProps$1<T>, 'children'>;
233
233
  /**
234
234
  * FormItem, can be used without Form.
235
235
  *
package/dist/index.js CHANGED
@@ -691,7 +691,7 @@ function Table(props) {
691
691
  color: "#ff4d4f"
692
692
  }
693
693
  });
694
- if (!item.filterDropdown)
694
+ if (item.filterDropdown !== false)
695
695
  item.filterDropdown = ({
696
696
  setSelectedKeys,
697
697
  selectedKeys,
package/dist/index.mjs CHANGED
@@ -676,7 +676,7 @@ function Table(props) {
676
676
  color: "#ff4d4f"
677
677
  }
678
678
  });
679
- if (!item.filterDropdown)
679
+ if (item.filterDropdown !== false)
680
680
  item.filterDropdown = ({
681
681
  setSelectedKeys,
682
682
  selectedKeys,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faasjs/ant-design",
3
- "version": "0.0.2-beta.383",
3
+ "version": "0.0.2-beta.384",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -28,7 +28,7 @@
28
28
  "lodash": "*",
29
29
  "react": "*",
30
30
  "react-dom": "*",
31
- "@faasjs/react": "^0.0.2-beta.383",
31
+ "@faasjs/react": "^0.0.2-beta.384",
32
32
  "react-use": "*",
33
33
  "react-router-dom": "*",
34
34
  "dayjs": "*"