@kmkf-fe-packages/services-components 0.5.2-alpha.5 → 0.5.2-alpha.6

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.
@@ -20,5 +20,10 @@ declare class BasicPicture implements ComponentInterface {
20
20
  * @returns 图片类型的导出需要在导出时单独处理
21
21
  */
22
22
  renderExport: () => null;
23
+ /**
24
+ *
25
+ * @returns 图片不支持过滤
26
+ */
27
+ filterConfig: () => never[];
23
28
  }
24
29
  export default BasicPicture;
@@ -92,6 +92,9 @@ var BasicPicture = /*#__PURE__*/_createClass(function BasicPicture(options) {
92
92
  _defineProperty(this, "renderExport", function () {
93
93
  return null;
94
94
  });
95
+ _defineProperty(this, "filterConfig", function () {
96
+ return [];
97
+ });
95
98
  this.name = options.name;
96
99
  this.id = options.id;
97
100
  this.type = options.type;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/services-components",
3
- "version": "0.5.2-alpha.5",
3
+ "version": "0.5.2-alpha.6",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -35,5 +35,5 @@
35
35
  "gitHooks": {
36
36
  "pre-commit": "lint-staged"
37
37
  },
38
- "gitHead": "6d47d0543401386a9ca66fcb35add3db7aa7b6de"
38
+ "gitHead": "5e0a44ab66c7dfbe27e5ec6729bf73e74eee1bcd"
39
39
  }