nsc-react-component 2.0.2 → 2.0.5

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.
Files changed (88) hide show
  1. package/lib/affix/index.d.ts +5 -0
  2. package/lib/affix/index.js +50 -0
  3. package/lib/alert/index.d.ts +5 -0
  4. package/lib/alert/index.js +50 -0
  5. package/lib/anchor/index.d.ts +6 -0
  6. package/lib/anchor/index.js +54 -0
  7. package/lib/avatar/index.d.ts +6 -0
  8. package/lib/avatar/index.js +54 -0
  9. package/lib/backTop/index.d.ts +5 -0
  10. package/lib/backTop/index.js +50 -0
  11. package/lib/badge/index.d.ts +6 -0
  12. package/lib/badge/index.js +54 -0
  13. package/lib/breadcrumb/index.d.ts +5 -0
  14. package/lib/breadcrumb/index.js +50 -0
  15. package/lib/calendar/index.d.ts +5 -0
  16. package/lib/calendar/index.js +50 -0
  17. package/lib/card/index.d.ts +7 -0
  18. package/lib/card/index.js +56 -0
  19. package/lib/carousel/index.d.ts +5 -0
  20. package/lib/carousel/index.js +50 -0
  21. package/lib/collapse/index.d.ts +6 -0
  22. package/lib/collapse/index.js +54 -0
  23. package/lib/comment/index.d.ts +5 -0
  24. package/lib/comment/index.js +50 -0
  25. package/lib/configProvider/index.d.ts +5 -0
  26. package/lib/configProvider/index.js +54 -0
  27. package/lib/descriptions/index.d.ts +6 -0
  28. package/lib/descriptions/index.js +54 -0
  29. package/lib/divider/index.d.ts +5 -0
  30. package/lib/divider/index.js +50 -0
  31. package/lib/drawer/index.d.ts +5 -0
  32. package/lib/drawer/index.js +50 -0
  33. package/lib/dropdown/index.d.ts +5 -0
  34. package/lib/dropdown/index.js +50 -0
  35. package/lib/grid/Col.d.ts +5 -0
  36. package/lib/grid/Col.js +50 -0
  37. package/lib/grid/Row.d.ts +5 -0
  38. package/lib/grid/Row.js +50 -0
  39. package/lib/grid/index.d.ts +1 -0
  40. package/lib/grid/index.js +2 -0
  41. package/lib/image/index.d.ts +9 -0
  42. package/lib/image/index.js +73 -0
  43. package/lib/index.d.ts +36 -1
  44. package/lib/index.js +36 -1
  45. package/lib/layout/index.d.ts +9 -0
  46. package/lib/layout/index.js +64 -0
  47. package/lib/list/index.d.ts +6 -0
  48. package/lib/list/index.js +54 -0
  49. package/lib/message/index.d.ts +13 -0
  50. package/lib/message/index.js +59 -0
  51. package/lib/modal/index.d.ts +5 -0
  52. package/lib/modal/index.js +13 -3
  53. package/lib/notification/index.d.ts +12 -0
  54. package/lib/notification/index.js +59 -0
  55. package/lib/pageComponents/BasePage/Form.js +14 -14
  56. package/lib/pageComponents/BasePage/index.d.ts +5 -0
  57. package/lib/pageComponents/BasePage/index.js +96 -25
  58. package/lib/pageComponents/BasePage/index.less +39 -33
  59. package/lib/pageHeader/index.d.ts +5 -0
  60. package/lib/pageHeader/index.js +50 -0
  61. package/lib/pagination/index.d.ts +5 -0
  62. package/lib/pagination/index.js +50 -0
  63. package/lib/popconfirm/index.d.ts +5 -0
  64. package/lib/popconfirm/index.js +50 -0
  65. package/lib/popover/index.d.ts +5 -0
  66. package/lib/popover/index.js +50 -0
  67. package/lib/progress/index.d.ts +5 -0
  68. package/lib/progress/index.js +50 -0
  69. package/lib/result/index.d.ts +5 -0
  70. package/lib/result/index.js +50 -0
  71. package/lib/skeleton/index.d.ts +5 -0
  72. package/lib/skeleton/index.js +50 -0
  73. package/lib/space/index.d.ts +5 -0
  74. package/lib/space/index.js +50 -0
  75. package/lib/spin/index.d.ts +5 -0
  76. package/lib/spin/index.js +50 -0
  77. package/lib/statistic/index.d.ts +6 -0
  78. package/lib/statistic/index.js +54 -0
  79. package/lib/steps/index.d.ts +5 -0
  80. package/lib/steps/index.js +50 -0
  81. package/lib/table/index.less +2 -2
  82. package/lib/timeline/index.d.ts +6 -0
  83. package/lib/timeline/index.js +54 -0
  84. package/lib/tooltip/index.d.ts +5 -0
  85. package/lib/tooltip/index.js +50 -0
  86. package/lib/typography/index.d.ts +5 -0
  87. package/lib/typography/index.js +50 -0
  88. package/package.json +1 -1
@@ -1,45 +1,47 @@
1
- @pageHeight: 800px;
1
+ @pageHeight: 1000px;
2
2
  .page {
3
3
  padding: 20px 24px 20px 24px;
4
- .pane {
5
- height: @pageHeight - 130px;
6
- display: flex;
7
- .left {
8
- width: 320px;
9
- padding: 20px;
10
- margin-right: 30px;
11
- }
12
- .right {
13
- // margin-left: 30px;
14
- flex: 1;
15
- background: #fff;
16
- .header {
17
- display: flex;
18
- :global {
19
- .ant-form-inline .ant-form-item {
20
- margin-right: 30px;
21
- }
22
- .ant-select {
23
- width: 180px !important;
24
- }
25
- }
26
- }
27
- .buttons {
28
- display: flex;
29
- margin-top: 15px;
30
- .margin {
31
- margin-left: 27px;
4
+
5
+ height: @pageHeight - 130px;
6
+ display: flex;
7
+ .left {
8
+ width: 320px;
9
+ padding: 20px;
10
+ margin-right: 30px;
11
+ background: #fff;
12
+ }
13
+ .right {
14
+ // margin-left: 30px;
15
+ flex: 1;
16
+ background: #fff;
17
+ padding: 0 20px 20px 20px;
18
+ .header {
19
+ display: flex;
20
+ margin-top: 20px;
21
+ :global {
22
+ .ant-form-inline .ant-form-item {
23
+ margin-right: 30px;
32
24
  }
33
- button {
34
- margin-right: 27px;
25
+ .ant-select {
26
+ width: 180px !important;
35
27
  }
36
28
  }
37
29
  }
38
-
39
- .table {
30
+ .buttons {
31
+ display: flex;
40
32
  margin-top: 20px;
33
+ .margin {
34
+ margin-left: 27px;
35
+ }
36
+ button {
37
+ margin-right: 27px;
38
+ }
41
39
  }
42
40
  }
41
+
42
+ .table {
43
+ margin-top: 20px;
44
+ }
43
45
  }
44
46
 
45
47
  .action {
@@ -54,6 +56,10 @@
54
56
  margin-left: 10px;
55
57
  cursor: pointer;
56
58
  color: #4286ed;
59
+ .icon {
60
+ font-size: 12px;
61
+ // margin-left: -3px;
62
+ }
57
63
  }
58
64
  .content-item {
59
65
  height: 40px;
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { PageHeaderProps } from "antd";
3
+ export default class NscPageHeader extends React.PureComponent<PageHeaderProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/page-header/style/css";
4
+ import _PageHeader from "antd/es/page-header";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscPageHeader = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscPageHeader, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscPageHeader);
32
+
33
+ function NscPageHeader() {
34
+ _classCallCheck(this, NscPageHeader);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscPageHeader, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_PageHeader, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscPageHeader;
47
+ }(React.PureComponent);
48
+
49
+ export { NscPageHeader as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3BhZ2VIZWFkZXIvaW5kZXgudHN4Il0sIm5hbWVzIjpbIlJlYWN0IiwiTnNjUGFnZUhlYWRlciIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLGE7Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLGlDQUFnQixLQUFLQyxLQUFyQixDQUFQO0FBQ0Q7Ozs7RUFOd0NGLEtBQUssQ0FBQ0csYTs7U0FBNUJGLGEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBSZWFjdCBmcm9tIFwicmVhY3RcIjtcclxuaW1wb3J0IHsgUGFnZUhlYWRlciwgUGFnZUhlYWRlclByb3BzIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY1BhZ2VIZWFkZXIgZXh0ZW5kcyBSZWFjdC5QdXJlQ29tcG9uZW50PFxyXG5QYWdlSGVhZGVyUHJvcHMsXHJcbiAgYW55XHJcbj4ge1xyXG4gIHJlbmRlcigpOiBSZWFjdC5SZWFjdE5vZGUge1xyXG4gICAgcmV0dXJuIDxQYWdlSGVhZGVyIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { PaginationProps } from "antd";
3
+ export default class NscPagination extends React.PureComponent<PaginationProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/pagination/style/css";
4
+ import _Pagination from "antd/es/pagination";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscPagination = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscPagination, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscPagination);
32
+
33
+ function NscPagination() {
34
+ _classCallCheck(this, NscPagination);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscPagination, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Pagination, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscPagination;
47
+ }(React.PureComponent);
48
+
49
+ export { NscPagination as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3BhZ2luYXRpb24vaW5kZXgudHN4Il0sIm5hbWVzIjpbIlJlYWN0IiwiTnNjUGFnaW5hdGlvbiIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLGE7Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLGlDQUFnQixLQUFLQyxLQUFyQixDQUFQO0FBQ0Q7Ozs7RUFOd0NGLEtBQUssQ0FBQ0csYTs7U0FBNUJGLGEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBSZWFjdCBmcm9tIFwicmVhY3RcIjtcclxuaW1wb3J0IHsgUGFnaW5hdGlvbiwgUGFnaW5hdGlvblByb3BzIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY1BhZ2luYXRpb24gZXh0ZW5kcyBSZWFjdC5QdXJlQ29tcG9uZW50PFxyXG5QYWdpbmF0aW9uUHJvcHMsXHJcbiAgYW55XHJcbj4ge1xyXG4gIHJlbmRlcigpOiBSZWFjdC5SZWFjdE5vZGUge1xyXG4gICAgcmV0dXJuIDxQYWdpbmF0aW9uIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { PopconfirmProps } from "antd";
3
+ export default class NscPopconfirm extends React.PureComponent<PopconfirmProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/popconfirm/style/css";
4
+ import _Popconfirm from "antd/es/popconfirm";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscPopconfirm = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscPopconfirm, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscPopconfirm);
32
+
33
+ function NscPopconfirm() {
34
+ _classCallCheck(this, NscPopconfirm);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscPopconfirm, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Popconfirm, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscPopconfirm;
47
+ }(React.PureComponent);
48
+
49
+ export { NscPopconfirm as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3BvcGNvbmZpcm0vaW5kZXgudHN4Il0sIm5hbWVzIjpbIlJlYWN0IiwiTnNjUG9wY29uZmlybSIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLGE7Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLGlDQUFnQixLQUFLQyxLQUFyQixDQUFQO0FBQ0Q7Ozs7RUFOd0NGLEtBQUssQ0FBQ0csYTs7U0FBNUJGLGEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBSZWFjdCBmcm9tIFwicmVhY3RcIjtcclxuaW1wb3J0IHsgUG9wY29uZmlybSwgUG9wY29uZmlybVByb3BzIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY1BvcGNvbmZpcm0gZXh0ZW5kcyBSZWFjdC5QdXJlQ29tcG9uZW50PFxyXG5Qb3Bjb25maXJtUHJvcHMsXHJcbiAgYW55XHJcbj4ge1xyXG4gIHJlbmRlcigpOiBSZWFjdC5SZWFjdE5vZGUge1xyXG4gICAgcmV0dXJuIDxQb3Bjb25maXJtIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { PopoverProps } from "antd";
3
+ export default class NscPopover extends React.PureComponent<PopoverProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/popover/style/css";
4
+ import _Popover from "antd/es/popover";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscPopover = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscPopover, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscPopover);
32
+
33
+ function NscPopover() {
34
+ _classCallCheck(this, NscPopover);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscPopover, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Popover, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscPopover;
47
+ }(React.PureComponent);
48
+
49
+ export { NscPopover as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3BvcG92ZXIvaW5kZXgudHN4Il0sIm5hbWVzIjpbIlJlYWN0IiwiTnNjUG9wb3ZlciIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLFU7Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLDhCQUFhLEtBQUtDLEtBQWxCLENBQVA7QUFDRDs7OztFQU5xQ0YsS0FBSyxDQUFDRyxhOztTQUF6QkYsVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIFJlYWN0IGZyb20gXCJyZWFjdFwiO1xyXG5pbXBvcnQgeyBQb3BvdmVyLCBQb3BvdmVyUHJvcHMgfSBmcm9tIFwiYW50ZFwiO1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgTnNjUG9wb3ZlciBleHRlbmRzIFJlYWN0LlB1cmVDb21wb25lbnQ8XHJcbiAgUG9wb3ZlclByb3BzLFxyXG4gIGFueVxyXG4+IHtcclxuICByZW5kZXIoKTogUmVhY3QuUmVhY3ROb2RlIHtcclxuICAgIHJldHVybiA8UG9wb3ZlciB7Li4udGhpcy5wcm9wc30gLz47XHJcbiAgfVxyXG59XHJcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { ProgressProps } from "antd";
3
+ export default class NscProgress extends React.PureComponent<ProgressProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/progress/style/css";
4
+ import _Progress from "antd/es/progress";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscProgress = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscProgress, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscProgress);
32
+
33
+ function NscProgress() {
34
+ _classCallCheck(this, NscProgress);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscProgress, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Progress, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscProgress;
47
+ }(React.PureComponent);
48
+
49
+ export { NscProgress as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3Byb2dyZXNzL2luZGV4LnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY1Byb2dyZXNzIiwicHJvcHMiLCJQdXJlQ29tcG9uZW50Il0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsT0FBTyxLQUFLQSxLQUFaLE1BQXVCLE9BQXZCOztJQUdxQkMsVzs7Ozs7Ozs7Ozs7OztXQUluQixrQkFBMEI7QUFDeEIsMEJBQU8sK0JBQWMsS0FBS0MsS0FBbkIsQ0FBUDtBQUNEOzs7O0VBTnNDRixLQUFLLENBQUNHLGE7O1NBQTFCRixXIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IFByb2dyZXNzLCBQcm9ncmVzc1Byb3BzIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY1Byb2dyZXNzIGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxcclxuUHJvZ3Jlc3NQcm9wcyxcclxuICBhbnlcclxuPiB7XHJcbiAgcmVuZGVyKCk6IFJlYWN0LlJlYWN0Tm9kZSB7XHJcbiAgICByZXR1cm4gPFByb2dyZXNzIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { ResultProps } from "antd";
3
+ export default class NscResult extends React.PureComponent<ResultProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/result/style/css";
4
+ import _Result from "antd/es/result";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscResult = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscResult, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscResult);
32
+
33
+ function NscResult() {
34
+ _classCallCheck(this, NscResult);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscResult, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Result, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscResult;
47
+ }(React.PureComponent);
48
+
49
+ export { NscResult as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3Jlc3VsdC9pbmRleC50c3giXSwibmFtZXMiOlsiUmVhY3QiLCJOc2NSZXN1bHQiLCJwcm9wcyIsIlB1cmVDb21wb25lbnQiXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxPQUFPLEtBQUtBLEtBQVosTUFBdUIsT0FBdkI7O0lBR3FCQyxTOzs7Ozs7Ozs7Ozs7O1dBQ25CLGtCQUEwQjtBQUN4QiwwQkFBTyw2QkFBWSxLQUFLQyxLQUFqQixDQUFQO0FBQ0Q7Ozs7RUFIb0NGLEtBQUssQ0FBQ0csYTs7U0FBeEJGLFMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBSZWFjdCBmcm9tIFwicmVhY3RcIjtcclxuaW1wb3J0IHsgUmVzdWx0LCBSZXN1bHRQcm9wcyB9IGZyb20gXCJhbnRkXCI7XHJcblxyXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBOc2NSZXN1bHQgZXh0ZW5kcyBSZWFjdC5QdXJlQ29tcG9uZW50PFJlc3VsdFByb3BzLCBhbnk+IHtcclxuICByZW5kZXIoKTogUmVhY3QuUmVhY3ROb2RlIHtcclxuICAgIHJldHVybiA8UmVzdWx0IHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { SkeletonProps } from "antd";
3
+ export default class NscSkeleton extends React.PureComponent<SkeletonProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/skeleton/style/css";
4
+ import _Skeleton from "antd/es/skeleton";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscSkeleton = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscSkeleton, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscSkeleton);
32
+
33
+ function NscSkeleton() {
34
+ _classCallCheck(this, NscSkeleton);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscSkeleton, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Skeleton, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscSkeleton;
47
+ }(React.PureComponent);
48
+
49
+ export { NscSkeleton as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3NrZWxldG9uL2luZGV4LnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY1NrZWxldG9uIiwicHJvcHMiLCJQdXJlQ29tcG9uZW50Il0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsT0FBTyxLQUFLQSxLQUFaLE1BQXVCLE9BQXZCOztJQUdxQkMsVzs7Ozs7Ozs7Ozs7OztXQUNuQixrQkFBMEI7QUFDeEIsMEJBQU8sK0JBQWMsS0FBS0MsS0FBbkIsQ0FBUDtBQUNEOzs7O0VBSHNDRixLQUFLLENBQUNHLGE7O1NBQTFCRixXIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IFNrZWxldG9uLCBTa2VsZXRvblByb3BzIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY1NrZWxldG9uIGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxTa2VsZXRvblByb3BzLCBhbnk+IHtcclxuICByZW5kZXIoKTogUmVhY3QuUmVhY3ROb2RlIHtcclxuICAgIHJldHVybiA8U2tlbGV0b24gey4uLnRoaXMucHJvcHN9IC8+O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { SpaceProps } from "antd";
3
+ export default class NscSpace extends React.PureComponent<SpaceProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/space/style/css";
4
+ import _Space from "antd/es/space";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscSpace = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscSpace, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscSpace);
32
+
33
+ function NscSpace() {
34
+ _classCallCheck(this, NscSpace);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscSpace, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Space, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscSpace;
47
+ }(React.PureComponent);
48
+
49
+ export { NscSpace as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3NwYWNlL2luZGV4LnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY1NwYWNlIiwicHJvcHMiLCJQdXJlQ29tcG9uZW50Il0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsT0FBTyxLQUFLQSxLQUFaLE1BQXVCLE9BQXZCOztJQUdxQkMsUTs7Ozs7Ozs7Ozs7OztXQUluQixrQkFBMEI7QUFDeEIsMEJBQU8sNEJBQVcsS0FBS0MsS0FBaEIsQ0FBUDtBQUNEOzs7O0VBTm1DRixLQUFLLENBQUNHLGE7O1NBQXZCRixRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IFNwYWNlLCBTcGFjZVByb3BzIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY1NwYWNlIGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxcclxuU3BhY2VQcm9wcyxcclxuICBhbnlcclxuPiB7XHJcbiAgcmVuZGVyKCk6IFJlYWN0LlJlYWN0Tm9kZSB7XHJcbiAgICByZXR1cm4gPFNwYWNlIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { SpinProps } from "antd";
3
+ export default class NscSpin extends React.PureComponent<SpinProps, any> {
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,50 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2
+
3
+ import "antd/es/spin/style/css";
4
+ import _Spin from "antd/es/spin";
5
+
6
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
7
+
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
11
+
12
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
13
+
14
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
15
+
16
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
17
+
18
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
19
+
20
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
21
+
22
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
23
+
24
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
25
+
26
+ import * as React from "react";
27
+
28
+ var NscSpin = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscSpin, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscSpin);
32
+
33
+ function NscSpin() {
34
+ _classCallCheck(this, NscSpin);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscSpin, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Spin, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscSpin;
47
+ }(React.PureComponent);
48
+
49
+ export { NscSpin as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL3NwaW4vaW5kZXgudHN4Il0sIm5hbWVzIjpbIlJlYWN0IiwiTnNjU3BpbiIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLE87Ozs7Ozs7Ozs7Ozs7V0FDbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLDJCQUFVLEtBQUtDLEtBQWYsQ0FBUDtBQUNEOzs7O0VBSGtDRixLQUFLLENBQUNHLGE7O1NBQXRCRixPIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IFNwaW4sIFNwaW5Qcm9wcyB9IGZyb20gXCJhbnRkXCI7XHJcblxyXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBOc2NTcGluIGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxTcGluUHJvcHMsIGFueT4ge1xyXG4gIHJlbmRlcigpOiBSZWFjdC5SZWFjdE5vZGUge1xyXG4gICAgcmV0dXJuIDxTcGluIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19