@regenbio/regenbio-components-react 1.2.11 → 1.2.13
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/build/components/DragTable/index.d.ts +9 -0
- package/build/components/DragTable/type.d.ts +22 -0
- package/build/components/UserSelector/index.d.ts +8 -0
- package/build/components/UserSelector/locales/en-US.d.ts +5 -0
- package/build/components/UserSelector/locales/zh-CN.d.ts +5 -0
- package/build/components/UserSelector/type.d.ts +60 -0
- package/build/index.d.ts +14 -5
- package/build/index.js +13 -2
- package/build/locales/en-US.d.ts +2 -0
- package/build/locales/zh-CN.d.ts +2 -0
- package/package.json +1 -1
- package/build/components/PageContainer/index.d.ts +0 -10
- package/build/components/PageContainer/type.d.ts +0 -16
- /package/build/{components/DataTable/constant.d.ts → services/constants/dbConstant.d.ts} +0 -0
package/build/locales/en-US.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ declare const _default: {
|
|
|
4
4
|
'components.constants.sex-list.secret': string;
|
|
5
5
|
'components.constants.sex-list.male': string;
|
|
6
6
|
'components.constants.sex-list.female': string;
|
|
7
|
+
'components.user-selector.placeholder': string;
|
|
8
|
+
'components.user-selector.search': string;
|
|
7
9
|
'components.user-card.unknown': string;
|
|
8
10
|
'components.user-card.is-me': string;
|
|
9
11
|
'components.user-card.phone': string;
|
package/build/locales/zh-CN.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ declare const _default: {
|
|
|
4
4
|
'components.constants.sex-list.secret': string;
|
|
5
5
|
'components.constants.sex-list.male': string;
|
|
6
6
|
'components.constants.sex-list.female': string;
|
|
7
|
+
'components.user-selector.placeholder': string;
|
|
8
|
+
'components.user-selector.search': string;
|
|
7
9
|
'components.user-card.unknown': string;
|
|
8
10
|
'components.user-card.is-me': string;
|
|
9
11
|
'components.user-card.phone': string;
|
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { PageContainerProps } from "@ant-design/pro-layout/es/components/PageContainer";
|
|
2
|
-
/**
|
|
3
|
-
* 容器参数
|
|
4
|
-
*/
|
|
5
|
-
export type RbPageContainerProps = {
|
|
6
|
-
/**
|
|
7
|
-
* 宽度改变回调
|
|
8
|
-
*
|
|
9
|
-
* @param width 宽度
|
|
10
|
-
*/
|
|
11
|
-
onResize?: (width: any) => void;
|
|
12
|
-
/**
|
|
13
|
-
* 水印内容
|
|
14
|
-
*/
|
|
15
|
-
watermark?: string | string[];
|
|
16
|
-
} & PageContainerProps;
|
|
File without changes
|