@kengic/core.react 0.0.2-beta.41 → 0.0.2-beta.43

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.2-beta.41",
3
+ "version": "0.0.2-beta.43",
4
4
  "type": "module",
5
5
  "main": "./kengic-core.react.js",
6
6
  "module": "./kengic-core.react.js",
@@ -1,7 +1,7 @@
1
1
  import { PayloadAction, Slice, SliceSelectors } from '@reduxjs/toolkit';
2
2
  import { type IState } from '../../index.store';
3
3
  export interface IKgOption {
4
- /** SQL 客户端. */
4
+ /** 数据库客户端. */
5
5
  KgSqlClient?: {
6
6
  /**
7
7
  * 是否启用功能.
@@ -7,6 +7,6 @@ export interface KgSqlClientEditorRef {
7
7
  getSqlTextForExecute: () => string;
8
8
  }
9
9
  /**
10
- * SQL 客户端:编辑器.
10
+ * 数据库客户端:编辑器.
11
11
  */
12
12
  export declare const KgSqlClientEditor: React.ForwardRefExoticComponent<React.RefAttributes<KgSqlClientEditorRef>>;
@@ -12,6 +12,6 @@ export interface KgSqlClientResultTabProps {
12
12
  index: number;
13
13
  }
14
14
  /**
15
- * SQL 客户端 | 执行结果的标签页.
15
+ * 数据库客户端:执行结果的标签页.
16
16
  */
17
17
  export declare function KgSqlClientResultTab({ executeResult, index }: KgSqlClientResultTabProps): React.JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import './KgSqlClient.css';
3
3
  /**
4
- * SQL 客户端.
4
+ * 数据库客户端.
5
5
  */
6
6
  export declare function KgSqlClient(): React.JSX.Element | null;
@@ -0,0 +1,2 @@
1
+ /** 序号列的宽度. */
2
+ export declare const KG_TABLE_TD_INDEX_WIDTH = 55;