nsc-react-component 2.0.4 → 2.0.7

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 (89) 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 +11 -12
  56. package/lib/pageComponents/BasePage/index.d.ts +5 -0
  57. package/lib/pageComponents/BasePage/index.js +93 -31
  58. package/lib/pageComponents/BasePage/index.less +13 -4
  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 +1 -1
  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/lib/utils.js +4 -2
  89. package/package.json +1 -1
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ import { CollapseProps } from "antd";
3
+ export default class NscCollapse extends React.PureComponent<CollapseProps, any> {
4
+ static Panel: React.FC<import("antd").CollapsePanelProps>;
5
+ render(): React.ReactNode;
6
+ }
@@ -0,0 +1,54 @@
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/collapse/style/css";
4
+ import _Collapse from "antd/es/collapse";
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
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
27
+
28
+ import * as React from "react";
29
+
30
+ var NscCollapse = /*#__PURE__*/function (_React$PureComponent) {
31
+ _inherits(NscCollapse, _React$PureComponent);
32
+
33
+ var _super = _createSuper(NscCollapse);
34
+
35
+ function NscCollapse() {
36
+ _classCallCheck(this, NscCollapse);
37
+
38
+ return _super.apply(this, arguments);
39
+ }
40
+
41
+ _createClass(NscCollapse, [{
42
+ key: "render",
43
+ value: function render() {
44
+ return /*#__PURE__*/React.createElement(_Collapse, this.props);
45
+ }
46
+ }]);
47
+
48
+ return NscCollapse;
49
+ }(React.PureComponent);
50
+
51
+ _defineProperty(NscCollapse, "Panel", _Collapse.Panel);
52
+
53
+ export { NscCollapse as default };
54
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2NvbGxhcHNlL2luZGV4LnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY0NvbGxhcHNlIiwicHJvcHMiLCJQdXJlQ29tcG9uZW50IiwiUGFuZWwiXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLFc7Ozs7Ozs7Ozs7Ozs7V0FLbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLCtCQUFjLEtBQUtDLEtBQW5CLENBQVA7QUFDRDs7OztFQVBzQ0YsS0FBSyxDQUFDRyxhOztnQkFBMUJGLFcsV0FJSixVQUFTRyxLOztTQUpMSCxXIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IENvbGxhcHNlLCBDb2xsYXBzZVByb3BzIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY0NvbGxhcHNlIGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxcclxuICBDb2xsYXBzZVByb3BzLFxyXG4gIGFueVxyXG4+IHtcclxuICBzdGF0aWMgUGFuZWwgPSBDb2xsYXBzZS5QYW5lbDtcclxuICByZW5kZXIoKTogUmVhY3QuUmVhY3ROb2RlIHtcclxuICAgIHJldHVybiA8Q29sbGFwc2Ugey4uLnRoaXMucHJvcHN9IC8+O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { CommentProps } from "antd";
3
+ export default class NscComment extends React.PureComponent<CommentProps, 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/comment/style/css";
4
+ import _Comment from "antd/es/comment";
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 NscComment = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscComment, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscComment);
32
+
33
+ function NscComment() {
34
+ _classCallCheck(this, NscComment);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscComment, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Comment, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscComment;
47
+ }(React.PureComponent);
48
+
49
+ export { NscComment as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2NvbW1lbnQvaW5kZXgudHN4Il0sIm5hbWVzIjpbIlJlYWN0IiwiTnNjQ29tbWVudCIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLFU7Ozs7Ozs7Ozs7Ozs7V0FDbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLDhCQUFhLEtBQUtDLEtBQWxCLENBQVA7QUFDRDs7OztFQUhxQ0YsS0FBSyxDQUFDRyxhOztTQUF6QkYsVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIFJlYWN0IGZyb20gXCJyZWFjdFwiO1xyXG5pbXBvcnQgeyBDb21tZW50LCBDb21tZW50UHJvcHMgfSBmcm9tIFwiYW50ZFwiO1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgTnNjQ29tbWVudCBleHRlbmRzIFJlYWN0LlB1cmVDb21wb25lbnQ8Q29tbWVudFByb3BzLCBhbnk+IHtcclxuICByZW5kZXIoKTogUmVhY3QuUmVhY3ROb2RlIHtcclxuICAgIHJldHVybiA8Q29tbWVudCB7Li4udGhpcy5wcm9wc30gLz47XHJcbiAgfVxyXG59XHJcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ export default class NscConfigProvider extends React.PureComponent<any, any> {
3
+ static config: (params: Pick<import("antd/lib/config-provider").ConfigProviderProps, "prefixCls">) => void;
4
+ render(): React.ReactNode;
5
+ }
@@ -0,0 +1,54 @@
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/config-provider/style/css";
4
+ import _ConfigProvider from "antd/es/config-provider";
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
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
27
+
28
+ import * as React from "react";
29
+
30
+ var NscConfigProvider = /*#__PURE__*/function (_React$PureComponent) {
31
+ _inherits(NscConfigProvider, _React$PureComponent);
32
+
33
+ var _super = _createSuper(NscConfigProvider);
34
+
35
+ function NscConfigProvider() {
36
+ _classCallCheck(this, NscConfigProvider);
37
+
38
+ return _super.apply(this, arguments);
39
+ }
40
+
41
+ _createClass(NscConfigProvider, [{
42
+ key: "render",
43
+ value: function render() {
44
+ return /*#__PURE__*/React.createElement(_ConfigProvider, this.props);
45
+ }
46
+ }]);
47
+
48
+ return NscConfigProvider;
49
+ }(React.PureComponent);
50
+
51
+ _defineProperty(NscConfigProvider, "config", _ConfigProvider.config);
52
+
53
+ export { NscConfigProvider as default };
54
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2NvbmZpZ1Byb3ZpZGVyL2luZGV4LnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY0NvbmZpZ1Byb3ZpZGVyIiwicHJvcHMiLCJQdXJlQ29tcG9uZW50IiwiY29uZmlnIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxPQUFPLEtBQUtBLEtBQVosTUFBdUIsT0FBdkI7O0lBR3FCQyxpQjs7Ozs7Ozs7Ozs7OztXQUVuQixrQkFBMEI7QUFDeEIsMEJBQU8scUNBQW9CLEtBQUtDLEtBQXpCLENBQVA7QUFDRDs7OztFQUo0Q0YsS0FBSyxDQUFDRyxhOztnQkFBaENGLGlCLFlBQ0gsZ0JBQWVHLE07O1NBRFpILGlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IENvbmZpZ1Byb3ZpZGVyIH0gZnJvbSBcImFudGRcIjtcclxuXHJcbmV4cG9ydCBkZWZhdWx0IGNsYXNzIE5zY0NvbmZpZ1Byb3ZpZGVyIGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxhbnksIGFueT4ge1xyXG4gIHN0YXRpYyBjb25maWcgPSBDb25maWdQcm92aWRlci5jb25maWc7XHJcbiAgcmVuZGVyKCk6IFJlYWN0LlJlYWN0Tm9kZSB7XHJcbiAgICByZXR1cm4gPENvbmZpZ1Byb3ZpZGVyIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ import { DescriptionsProps } from "antd";
3
+ export default class NscDescriptions extends React.PureComponent<DescriptionsProps, any> {
4
+ static Item: React.FC<import("antd/lib/descriptions/Item").DescriptionsItemProps>;
5
+ render(): React.ReactNode;
6
+ }
@@ -0,0 +1,54 @@
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/descriptions/style/css";
4
+ import _Descriptions from "antd/es/descriptions";
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
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
27
+
28
+ import * as React from "react";
29
+
30
+ var NscDescriptions = /*#__PURE__*/function (_React$PureComponent) {
31
+ _inherits(NscDescriptions, _React$PureComponent);
32
+
33
+ var _super = _createSuper(NscDescriptions);
34
+
35
+ function NscDescriptions() {
36
+ _classCallCheck(this, NscDescriptions);
37
+
38
+ return _super.apply(this, arguments);
39
+ }
40
+
41
+ _createClass(NscDescriptions, [{
42
+ key: "render",
43
+ value: function render() {
44
+ return /*#__PURE__*/React.createElement(_Descriptions, this.props);
45
+ }
46
+ }]);
47
+
48
+ return NscDescriptions;
49
+ }(React.PureComponent);
50
+
51
+ _defineProperty(NscDescriptions, "Item", _Descriptions.Item);
52
+
53
+ export { NscDescriptions as default };
54
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2Rlc2NyaXB0aW9ucy9pbmRleC50c3giXSwibmFtZXMiOlsiUmVhY3QiLCJOc2NEZXNjcmlwdGlvbnMiLCJwcm9wcyIsIlB1cmVDb21wb25lbnQiLCJJdGVtIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxPQUFPLEtBQUtBLEtBQVosTUFBdUIsT0FBdkI7O0lBR3FCQyxlOzs7Ozs7Ozs7Ozs7O1dBS25CLGtCQUEwQjtBQUN4QiwwQkFBTyxtQ0FBa0IsS0FBS0MsS0FBdkIsQ0FBUDtBQUNEOzs7O0VBUDBDRixLQUFLLENBQUNHLGE7O2dCQUE5QkYsZSxVQUlMLGNBQWFHLEk7O1NBSlJILGUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBSZWFjdCBmcm9tIFwicmVhY3RcIjtcclxuaW1wb3J0IHsgRGVzY3JpcHRpb25zLCBEZXNjcmlwdGlvbnNQcm9wcyB9IGZyb20gXCJhbnRkXCI7XHJcblxyXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBOc2NEZXNjcmlwdGlvbnMgZXh0ZW5kcyBSZWFjdC5QdXJlQ29tcG9uZW50PFxyXG4gIERlc2NyaXB0aW9uc1Byb3BzLFxyXG4gIGFueVxyXG4+IHtcclxuICBzdGF0aWMgSXRlbSA9IERlc2NyaXB0aW9ucy5JdGVtO1xyXG4gIHJlbmRlcigpOiBSZWFjdC5SZWFjdE5vZGUge1xyXG4gICAgcmV0dXJuIDxEZXNjcmlwdGlvbnMgey4uLnRoaXMucHJvcHN9IC8+O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { DividerProps } from "antd";
3
+ export default class NscDivider extends React.PureComponent<DividerProps, 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/divider/style/css";
4
+ import _Divider from "antd/es/divider";
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 NscDivider = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscDivider, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscDivider);
32
+
33
+ function NscDivider() {
34
+ _classCallCheck(this, NscDivider);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscDivider, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Divider, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscDivider;
47
+ }(React.PureComponent);
48
+
49
+ export { NscDivider as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2RpdmlkZXIvaW5kZXgudHN4Il0sIm5hbWVzIjpbIlJlYWN0IiwiTnNjRGl2aWRlciIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLFU7Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLDhCQUFhLEtBQUtDLEtBQWxCLENBQVA7QUFDRDs7OztFQU5xQ0YsS0FBSyxDQUFDRyxhOztTQUF6QkYsVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIFJlYWN0IGZyb20gXCJyZWFjdFwiO1xyXG5pbXBvcnQgeyBEaXZpZGVyLCBEaXZpZGVyUHJvcHMgfSBmcm9tIFwiYW50ZFwiO1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgTnNjRGl2aWRlciBleHRlbmRzIFJlYWN0LlB1cmVDb21wb25lbnQ8XHJcbkRpdmlkZXJQcm9wcyxcclxuICBhbnlcclxuPiB7XHJcbiAgcmVuZGVyKCk6IFJlYWN0LlJlYWN0Tm9kZSB7XHJcbiAgICByZXR1cm4gPERpdmlkZXIgey4uLnRoaXMucHJvcHN9IC8+O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { DrawerProps } from "antd";
3
+ export default class NscDrawer extends React.PureComponent<DrawerProps, 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/drawer/style/css";
4
+ import _Drawer from "antd/es/drawer";
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 NscDrawer = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscDrawer, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscDrawer);
32
+
33
+ function NscDrawer() {
34
+ _classCallCheck(this, NscDrawer);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscDrawer, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Drawer, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscDrawer;
47
+ }(React.PureComponent);
48
+
49
+ export { NscDrawer as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2RyYXdlci9pbmRleC50c3giXSwibmFtZXMiOlsiUmVhY3QiLCJOc2NEcmF3ZXIiLCJwcm9wcyIsIlB1cmVDb21wb25lbnQiXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxPQUFPLEtBQUtBLEtBQVosTUFBdUIsT0FBdkI7O0lBR3FCQyxTOzs7Ozs7Ozs7Ozs7O1dBQ25CLGtCQUEwQjtBQUN4QiwwQkFBTyw2QkFBWSxLQUFLQyxLQUFqQixDQUFQO0FBQ0Q7Ozs7RUFIb0NGLEtBQUssQ0FBQ0csYTs7U0FBeEJGLFMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgKiBhcyBSZWFjdCBmcm9tIFwicmVhY3RcIjtcclxuaW1wb3J0IHsgRHJhd2VyLCBEcmF3ZXJQcm9wcyB9IGZyb20gXCJhbnRkXCI7XHJcblxyXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBOc2NEcmF3ZXIgZXh0ZW5kcyBSZWFjdC5QdXJlQ29tcG9uZW50PERyYXdlclByb3BzLCBhbnk+IHtcclxuICByZW5kZXIoKTogUmVhY3QuUmVhY3ROb2RlIHtcclxuICAgIHJldHVybiA8RHJhd2VyIHsuLi50aGlzLnByb3BzfSAvPjtcclxuICB9XHJcbn1cclxuIl19
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { DropDownProps } from "antd";
3
+ export default class NscRow extends React.PureComponent<DropDownProps, 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/dropdown/style/css";
4
+ import _Dropdown from "antd/es/dropdown";
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 NscRow = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscRow, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscRow);
32
+
33
+ function NscRow() {
34
+ _classCallCheck(this, NscRow);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscRow, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Dropdown, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscRow;
47
+ }(React.PureComponent);
48
+
49
+ export { NscRow as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2Ryb3Bkb3duL2luZGV4LnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY1JvdyIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLE07Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLCtCQUFjLEtBQUtDLEtBQW5CLENBQVA7QUFDRDs7OztFQU5pQ0YsS0FBSyxDQUFDRyxhOztTQUFyQkYsTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCAqIGFzIFJlYWN0IGZyb20gXCJyZWFjdFwiO1xyXG5pbXBvcnQgeyBEcm9wZG93biwgRHJvcERvd25Qcm9wcyB9IGZyb20gXCJhbnRkXCI7XHJcblxyXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBOc2NSb3cgZXh0ZW5kcyBSZWFjdC5QdXJlQ29tcG9uZW50PFxyXG5Ecm9wRG93blByb3BzLFxyXG4gIGFueVxyXG4+IHtcclxuICByZW5kZXIoKTogUmVhY3QuUmVhY3ROb2RlIHtcclxuICAgIHJldHVybiA8RHJvcGRvd24gey4uLnRoaXMucHJvcHN9IC8+O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { ColProps } from "antd";
3
+ export default class NscCol extends React.PureComponent<ColProps, 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/col/style/css";
4
+ import _Col from "antd/es/col";
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 NscCol = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscCol, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscCol);
32
+
33
+ function NscCol() {
34
+ _classCallCheck(this, NscCol);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscCol, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Col, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscCol;
47
+ }(React.PureComponent);
48
+
49
+ export { NscCol as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2dyaWQvQ29sLnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY0NvbCIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLE07Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLDBCQUFTLEtBQUtDLEtBQWQsQ0FBUDtBQUNEOzs7O0VBTmlDRixLQUFLLENBQUNHLGE7O1NBQXJCRixNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IENvbCwgQ29sUHJvcHMgfSBmcm9tIFwiYW50ZFwiO1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgTnNjQ29sIGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxcclxuQ29sUHJvcHMsXHJcbiAgYW55XHJcbj4ge1xyXG4gIHJlbmRlcigpOiBSZWFjdC5SZWFjdE5vZGUge1xyXG4gICAgcmV0dXJuIDxDb2wgey4uLnRoaXMucHJvcHN9IC8+O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import { RowProps } from "antd";
3
+ export default class NscRow extends React.PureComponent<RowProps, 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/row/style/css";
4
+ import _Row from "antd/es/row";
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 NscRow = /*#__PURE__*/function (_React$PureComponent) {
29
+ _inherits(NscRow, _React$PureComponent);
30
+
31
+ var _super = _createSuper(NscRow);
32
+
33
+ function NscRow() {
34
+ _classCallCheck(this, NscRow);
35
+
36
+ return _super.apply(this, arguments);
37
+ }
38
+
39
+ _createClass(NscRow, [{
40
+ key: "render",
41
+ value: function render() {
42
+ return /*#__PURE__*/React.createElement(_Row, this.props);
43
+ }
44
+ }]);
45
+
46
+ return NscRow;
47
+ }(React.PureComponent);
48
+
49
+ export { NscRow as default };
50
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb21wb25lbnRzL2dyaWQvUm93LnRzeCJdLCJuYW1lcyI6WyJSZWFjdCIsIk5zY1JvdyIsInByb3BzIiwiUHVyZUNvbXBvbmVudCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sS0FBS0EsS0FBWixNQUF1QixPQUF2Qjs7SUFHcUJDLE07Ozs7Ozs7Ozs7Ozs7V0FJbkIsa0JBQTBCO0FBQ3hCLDBCQUFPLDBCQUFTLEtBQUtDLEtBQWQsQ0FBUDtBQUNEOzs7O0VBTmlDRixLQUFLLENBQUNHLGE7O1NBQXJCRixNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0ICogYXMgUmVhY3QgZnJvbSBcInJlYWN0XCI7XHJcbmltcG9ydCB7IFJvdywgUm93UHJvcHMgfSBmcm9tIFwiYW50ZFwiO1xyXG5cclxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgTnNjUm93IGV4dGVuZHMgUmVhY3QuUHVyZUNvbXBvbmVudDxcclxuUm93UHJvcHMsXHJcbiAgYW55XHJcbj4ge1xyXG4gIHJlbmRlcigpOiBSZWFjdC5SZWFjdE5vZGUge1xyXG4gICAgcmV0dXJuIDxSb3cgey4uLnRoaXMucHJvcHN9IC8+O1xyXG4gIH1cclxufVxyXG4iXX0=
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbXX0=
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ import { ImageProps } from "antd";
3
+ interface IImageProps extends ImageProps {
4
+ fileId?: string;
5
+ }
6
+ export default class NscImage extends React.PureComponent<IImageProps, any> {
7
+ render(): React.ReactNode;
8
+ }
9
+ export {};