assui 3.1.89 → 3.1.91

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.
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { NumberFormatProps as ReactNumberFormatProps } from 'react-number-format';
2
+ import type { NumberFormatBaseProps as ReactNumberFormatProps } from 'react-number-format';
3
3
  export type NumberFormatInputProps = ReactNumberFormatProps;
4
4
  declare const NumberFormatInput: React.FC<NumberFormatInputProps>;
5
5
  export default NumberFormatInput;
@@ -17,12 +17,13 @@ var __rest = this && this.__rest || function (s, e) {
17
17
  return t;
18
18
  };
19
19
  import React from 'react';
20
- import ReactNumberFormat from 'react-number-format';
20
+ import { NumberFormatBase } from 'react-number-format';
21
21
  import classNames from 'classnames';
22
+ // TODO react-number-format 分别封装导出
22
23
  var NumberFormatInput = function NumberFormatInput(_a) {
23
24
  var className = _a.className,
24
25
  restProps = __rest(_a, ["className"]);
25
- return /*#__PURE__*/React.createElement(ReactNumberFormat, __assign({}, restProps, {
26
+ return /*#__PURE__*/React.createElement(NumberFormatBase, __assign({}, restProps, {
26
27
  className: classNames('rc-number-format-input', className)
27
28
  }));
28
29
  };
@@ -1262,7 +1262,6 @@ html {
1262
1262
  }
1263
1263
  .as-img-upload-content {
1264
1264
  position: relative;
1265
- z-index: 10;
1266
1265
  width: 100%;
1267
1266
  height: 100%;
1268
1267
  overflow: hidden;
@@ -35,7 +35,6 @@
35
35
 
36
36
  &-content {
37
37
  position: relative;
38
- z-index: 10;
39
38
  width: 100%;
40
39
  height: 100%;
41
40
  overflow: hidden;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { NumberFormatProps as ReactNumberFormatProps } from 'react-number-format';
2
+ import type { NumberFormatBaseProps as ReactNumberFormatProps } from 'react-number-format';
3
3
  export type NumberFormatInputProps = ReactNumberFormatProps;
4
4
  declare const NumberFormatInput: React.FC<NumberFormatInputProps>;
5
5
  export default NumberFormatInput;
@@ -27,12 +27,13 @@ Object.defineProperty(exports, "__esModule", {
27
27
  value: true
28
28
  });
29
29
  var react_1 = __importDefault(require("react"));
30
- var react_number_format_1 = __importDefault(require("react-number-format"));
30
+ var react_number_format_1 = require("react-number-format");
31
31
  var classnames_1 = __importDefault(require("classnames"));
32
+ // TODO react-number-format 分别封装导出
32
33
  var NumberFormatInput = function NumberFormatInput(_a) {
33
34
  var className = _a.className,
34
35
  restProps = __rest(_a, ["className"]);
35
- return react_1["default"].createElement(react_number_format_1["default"], __assign({}, restProps, {
36
+ return react_1["default"].createElement(react_number_format_1.NumberFormatBase, __assign({}, restProps, {
36
37
  className: (0, classnames_1["default"])('rc-number-format-input', className)
37
38
  }));
38
39
  };
@@ -1262,7 +1262,6 @@ html {
1262
1262
  }
1263
1263
  .as-img-upload-content {
1264
1264
  position: relative;
1265
- z-index: 10;
1266
1265
  width: 100%;
1267
1266
  height: 100%;
1268
1267
  overflow: hidden;
@@ -35,7 +35,6 @@
35
35
 
36
36
  &-content {
37
37
  position: relative;
38
- z-index: 10;
39
38
  width: 100%;
40
39
  height: 100%;
41
40
  overflow: hidden;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assui",
3
- "version": "3.1.89",
3
+ "version": "3.1.91",
4
4
  "description": "react ui library",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -35,7 +35,7 @@
35
35
  "@types/react-beautiful-dnd": "^13.1.2",
36
36
  "@types/react-color": "^3.0.6",
37
37
  "@types/react-resizable": "^3.0.0",
38
- "a-icons": "^1.1.74",
38
+ "a-icons": "^1.1.75",
39
39
  "aa-utils": "^2.1.26",
40
40
  "ahooks": "^3.0.8",
41
41
  "bignumber.js": "^9.0.1",
@@ -82,5 +82,5 @@
82
82
  "node": ">=10.0.0"
83
83
  },
84
84
  "license": "MIT",
85
- "gitHead": "f18c5017ed9be4adf866a729f0c5044d6c435fc6"
85
+ "gitHead": "25e6a881072df2bce97a7c69885020ad18685bdf"
86
86
  }