@kdcloudjs/kdesign 1.7.50 → 1.7.52

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/es/grid/row.js CHANGED
@@ -75,10 +75,10 @@ var Row = function Row(props) {
75
75
  }
76
76
  }
77
77
  var rowStyle = {
78
- 'row-gap': "".concat(gap.v, "px"),
78
+ rowGap: "".concat(gap.v, "px"),
79
79
  margin: "0 ".concat(-1 * gap.h / 2, "px")
80
80
  };
81
- if (gap.v && isSogouOrIe) rowStyle['margin-bottom'] = "".concat(-1 * gap.v, "px");
81
+ if (gap.v && isSogouOrIe) rowStyle.marginBottom = "".concat(-1 * gap.v, "px");
82
82
  var toalign = {
83
83
  top: 'flex-start',
84
84
  middle: 'center',
@@ -4,7 +4,7 @@ import React, { useContext } from 'react';
4
4
  import classNames from 'classnames';
5
5
  import ConfigContext from '../config-provider/ConfigContext';
6
6
  import { getCompProps } from '../_utils';
7
- import { QRCodeCanvas, QRCodeSVG } from 'qrcode.react';
7
+ import { QRCodeCanvas, QRCodeSVG } from 'qrcode.react-ie';
8
8
  import Spin from '../spin';
9
9
  import Button from '../button';
10
10
  import Icon from '../icon';
package/lib/grid/row.js CHANGED
@@ -88,10 +88,10 @@ var Row = function Row(props) {
88
88
  }
89
89
  }
90
90
  var rowStyle = {
91
- 'row-gap': "".concat(gap.v, "px"),
91
+ rowGap: "".concat(gap.v, "px"),
92
92
  margin: "0 ".concat(-1 * gap.h / 2, "px")
93
93
  };
94
- if (gap.v && isSogouOrIe) rowStyle['margin-bottom'] = "".concat(-1 * gap.v, "px");
94
+ if (gap.v && isSogouOrIe) rowStyle.marginBottom = "".concat(-1 * gap.v, "px");
95
95
  var toalign = {
96
96
  top: 'flex-start',
97
97
  middle: 'center',
@@ -14,7 +14,7 @@ var _react = _interopRequireWildcard(require("react"));
14
14
  var _classnames = _interopRequireDefault(require("classnames"));
15
15
  var _ConfigContext = _interopRequireDefault(require("../config-provider/ConfigContext"));
16
16
  var _utils = require("../_utils");
17
- var _qrcode = require("qrcode.react");
17
+ var _qrcode = require("qrcode.react-ie");
18
18
  var _spin = _interopRequireDefault(require("../spin"));
19
19
  var _button = _interopRequireDefault(require("../button"));
20
20
  var _icon = _interopRequireDefault(require("../icon"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kdcloudjs/kdesign",
3
- "version": "1.7.50",
3
+ "version": "1.7.52",
4
4
  "description": "KDesign 金蝶前端react 组件库",
5
5
  "title": "kdesign",
6
6
  "keywords": [
@@ -92,7 +92,7 @@
92
92
  "date-fns": "2.28.0",
93
93
  "js-cookie": "^3.0.1",
94
94
  "lodash": "^4.17.20",
95
- "qrcode.react": "^3.1.0",
95
+ "qrcode.react-ie": "^3.1.3",
96
96
  "react-color": "^2.19.3",
97
97
  "react-draggable": "^4.4.3",
98
98
  "react-popper": "^2.2.3",