@kmkf-fe-packages/services-components 0.7.3-alpha.3 → 0.7.3-alpha.4

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.
@@ -33,6 +33,11 @@ declare class Address implements ComponentInterface {
33
33
  filterComponentType: "Cascader";
34
34
  props: {
35
35
  options: any;
36
+ fieldNames: {
37
+ label: string;
38
+ value: string;
39
+ children: string;
40
+ };
36
41
  };
37
42
  filterFn: (value: string) => (i: Record) => boolean;
38
43
  };
@@ -94,7 +94,12 @@ var Address = /*#__PURE__*/_createClass(function Address(options) {
94
94
  // 过滤组件名称
95
95
  filterComponentType: 'Cascader',
96
96
  props: {
97
- options: _this.addressDateInstance.addressOptions || []
97
+ options: _this.addressDateInstance.addressOptions || [],
98
+ fieldNames: {
99
+ label: 'label',
100
+ value: 'value',
101
+ children: 'children'
102
+ }
98
103
  },
99
104
  filterFn: function filterFn(value) {
100
105
  return function (i) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/services-components",
3
- "version": "0.7.3-alpha.3",
3
+ "version": "0.7.3-alpha.4",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -40,5 +40,5 @@
40
40
  "gitHooks": {
41
41
  "pre-commit": "lint-staged"
42
42
  },
43
- "gitHead": "16fa3cfef3ddf6c5545e3b6d48f42ce92af29816"
43
+ "gitHead": "7821d8be18fbfa0df638ed92dd2a98d76bb17530"
44
44
  }