@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.
@@ -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;
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@regenbio/regenbio-components-react",
3
- "version": "1.2.11",
3
+ "version": "1.2.13",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- import { RbPageContainerProps } from "./type";
3
- /**
4
- * RB 页面容器
5
- *
6
- * @param props 配置参数
7
- * @constructor
8
- */
9
- declare const RbPageContainer: React.FC<RbPageContainerProps>;
10
- export default RbPageContainer;
@@ -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;