@kengic/core.react 0.0.1-beta.17 → 0.0.1-beta.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/core.react",
3
- "version": "0.0.1-beta.17",
3
+ "version": "0.0.1-beta.18",
4
4
  "type": "module",
5
5
  "main": "./kengic-core.react.js",
6
6
  "module": "./kengic-core.react.js",
@@ -2,9 +2,9 @@ import React from 'react';
2
2
  /**
3
3
  * 组件通用逻辑.
4
4
  */
5
- export declare function KgProvider({ children, ID }: {
5
+ export declare function KgProvider({ children, id }: {
6
6
  children?: React.ReactNode;
7
- ID: string;
7
+ id: string;
8
8
  }): React.JSX.Element;
9
9
  /**
10
10
  * 获取组件标识.
@@ -48,6 +48,6 @@ export interface IDoKgWorkStation {
48
48
  }
49
49
  /**
50
50
  *
51
- * @param ID 唯一标识.
51
+ * @param id 唯一标识.
52
52
  */
53
- export declare function doKgWorkStation(ID?: string): IDoKgWorkStation;
53
+ export declare function doKgWorkStation(id?: string): IDoKgWorkStation;