@hi-ui/schema-editable-table 4.0.0-experimental.2 → 4.0.0-experimental.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @hi-ui/schema-editable-table
2
2
 
3
+ ## 4.0.0-experimental.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 3e5e409c5: 补充多处 package.json 中缺少的 exports.types 字段
8
+ - Updated dependencies [3e5e409c5]
9
+ - @hi-ui/schema-action-trigger@4.0.0-experimental.3
10
+ - @hi-ui/schema-core@4.0.0-experimental.6
11
+ - @hi-ui/schema-form@4.0.0-experimental.3
12
+ - @hi-ui/schema-hooks@4.0.0-experimental.2
13
+ - @hi-ui/schema-table-extensions@4.0.0-experimental.2
14
+ - @hi-ui/schema-utils@4.0.0-experimental.4
15
+ - @hi-ui/use-subscription@4.0.0-experimental.2
16
+
17
+ ## 4.0.0-experimental.3
18
+
19
+ ### Patch Changes
20
+
21
+ - 00945d217: 更新@hi-ui/schema-group
22
+ - Updated dependencies [00945d217]
23
+ - Updated dependencies [ffaaeeeb1]
24
+ - Updated dependencies [80f7c3bc7]
25
+ - @hi-ui/schema-form@4.0.0-experimental.2
26
+ - @hi-ui/schema-fields@4.0.0-experimental.5
27
+ - @hi-ui/schema-action-trigger@4.0.0-experimental.2
28
+
3
29
  ## 4.0.0-experimental.2
4
30
 
5
31
  ### Patch Changes
@@ -59,7 +59,7 @@ export declare function getNormalizedProps<T extends AnyObject>(props: EditableS
59
59
  } | undefined;
60
60
  grouping: {} | undefined;
61
61
  expanding: {} | undefined;
62
- fieldMap?: Partial<import("packages/schema/schema-fields/lib/types").ProFieldMapType>;
62
+ fieldMap?: Partial<import("packages/schema/schema-fields/lib").ProFieldMapType>;
63
63
  value?: T[] | undefined;
64
64
  defaultValue?: T[] | undefined;
65
65
  onChange?: ((val: T[]) => void) | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hi-ui/schema-editable-table",
3
- "version": "4.0.0-experimental.2",
3
+ "version": "4.0.0-experimental.4",
4
4
  "description": "A sub-package for @hi-ui/schema.",
5
5
  "keywords": [],
6
6
  "author": "HiUI <mi-hiui@xiaomi.com>",
@@ -20,10 +20,11 @@
20
20
  "typings": "lib/types/index.d.ts",
21
21
  "exports": {
22
22
  ".": {
23
+ "types": "./lib/types/index.d.ts",
23
24
  "require": "./lib/cjs/index.js",
24
25
  "default": "./lib/esm/index.js"
25
26
  },
26
- "type": {
27
+ "./type": {
27
28
  "types": "./type.d.ts"
28
29
  }
29
30
  },
@@ -47,14 +48,14 @@
47
48
  "url": "https://github.com/XiaoMi/hiui/issues"
48
49
  },
49
50
  "dependencies": {
50
- "@hi-ui/schema-action-trigger": ">=4.0.0-experimental.1",
51
- "@hi-ui/schema-core": ">=4.0.0-experimental.4",
52
- "@hi-ui/schema-fields": ">=4.0.0-experimental.1",
53
- "@hi-ui/schema-form": ">=4.0.0-experimental.1",
54
- "@hi-ui/schema-hooks": ">=4.0.0-experimental.1",
55
- "@hi-ui/schema-utils": ">=4.0.0-experimental.1",
56
- "@hi-ui/schema-table-extensions": ">=4.0.0-experimental.1",
57
- "@hi-ui/use-subscription": ">=4.0.0-experimental.1",
51
+ "@hi-ui/schema-action-trigger": ">=4.0.0-experimental.3",
52
+ "@hi-ui/schema-core": ">=4.0.0-experimental.6",
53
+ "@hi-ui/schema-fields": ">=4.0.0-experimental.5",
54
+ "@hi-ui/schema-form": ">=4.0.0-experimental.3",
55
+ "@hi-ui/schema-hooks": ">=4.0.0-experimental.2",
56
+ "@hi-ui/schema-utils": ">=4.0.0-experimental.4",
57
+ "@hi-ui/schema-table-extensions": ">=4.0.0-experimental.2",
58
+ "@hi-ui/use-subscription": ">=4.0.0-experimental.2",
58
59
  "immer": "^11.1.3",
59
60
  "lodash-es": "^4.17.23"
60
61
  },