@nutui/nutui-react 1.2.3-beta.3 → 1.2.3-beta.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/dist/style.es.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @nutui/nutui-react v1.2.3-beta.3 Wed Aug 17 2022 10:06:28 GMT+0800 (China Standard Time)
2
+ * @nutui/nutui-react v1.2.3-beta.4 Fri Aug 19 2022 09:34:42 GMT+0800 (China Standard Time)
3
3
  * (c) 2021 @jdf2e.
4
4
  * Released under the MIT License.
5
5
  */
@@ -495,7 +495,6 @@ $divider-vertical-top: 2px !default;
495
495
  $divider-vertical-border-left: rgba(0, 0, 0, 0.06) !default;
496
496
  $divider-vertical-margin: 0 8px !default;
497
497
 
498
-
499
498
  // swiper
500
499
  $swiper-pagination-item-background-color: #ddd !default;
501
500
 
@@ -0,0 +1 @@
1
+ import '@testing-library/jest-dom';
@@ -11,11 +11,11 @@ export interface ShortPasswordProps {
11
11
  length: string | number;
12
12
  className: string;
13
13
  style?: CSSProperties;
14
- change: (value: string | number) => void;
14
+ onChange: (value: string | number) => void;
15
15
  onOk: (value: string | number) => void;
16
16
  onCancel: () => void;
17
17
  onClose: () => void;
18
18
  onTips: () => void;
19
- complete: (value: string | number) => void;
19
+ onComplete: (value: string | number) => void;
20
20
  }
21
- export declare const ShortPassword: FunctionComponent<Partial<ShortPasswordProps> & React.HTMLAttributes<HTMLDivElement>>;
21
+ export declare const ShortPassword: FunctionComponent<Partial<ShortPasswordProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nutui/nutui-react",
3
- "version": "1.2.3-beta.3",
3
+ "version": "1.2.3-beta.4",
4
4
  "style": "dist/style.css",
5
5
  "main": "dist/nutui.react.umd.js",
6
6
  "module": "dist/esm/nutui-react.es.js",