cloud-b2b 1.0.5 → 1.0.8

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 (50) hide show
  1. package/es/Indent/Indent.js +23 -0
  2. package/es/Indent/package.json +6 -0
  3. package/es/SuperForm2/SuperForm.js +732 -0
  4. package/es/SuperForm2/SuperForm.less +52 -0
  5. package/es/SuperForm2/package.json +6 -0
  6. package/es/SuperTab/SuperTab.js +130 -0
  7. package/es/SuperTab/SuperTab.less +43 -0
  8. package/es/SuperTab/package.json +6 -0
  9. package/es/SuperTab2/SuperTab2.js +167 -0
  10. package/es/SuperTab2/SuperTab2.less +18 -0
  11. package/es/SuperTab2/package.json +6 -0
  12. package/es/SuperTable/DragSortRow.less +1 -1
  13. package/es/SuperTable2/SuperTable2.less +16 -0
  14. package/es/SuperTable3/FilterDropDown.js +188 -0
  15. package/es/SuperTable3/FilterDropDown.less +29 -0
  16. package/es/SuperTable3/SuperTable.js +783 -0
  17. package/es/SuperTable3/SuperTable.less +99 -0
  18. package/es/SuperTable3/fixed.js +42 -0
  19. package/es/SuperTable3/package.json +6 -0
  20. package/es/index.js +12 -2
  21. package/es/style.less +13 -3
  22. package/lib/Indent/Indent.js +38 -0
  23. package/lib/Indent/package.json +6 -0
  24. package/lib/SuperForm2/SuperForm.js +742 -0
  25. package/lib/SuperForm2/SuperForm.less +52 -0
  26. package/lib/SuperForm2/package.json +6 -0
  27. package/lib/SuperTab/SuperTab.js +146 -0
  28. package/lib/SuperTab/SuperTab.less +43 -0
  29. package/lib/SuperTab/package.json +6 -0
  30. package/lib/SuperTab2/SuperTab2.js +191 -0
  31. package/lib/SuperTab2/SuperTab2.less +18 -0
  32. package/lib/SuperTab2/package.json +6 -0
  33. package/lib/SuperTable/DragSortRow.less +1 -1
  34. package/lib/SuperTable2/SuperTable2.less +16 -0
  35. package/lib/SuperTable3/FilterDropDown.js +205 -0
  36. package/lib/SuperTable3/FilterDropDown.less +29 -0
  37. package/lib/SuperTable3/SuperTable.js +787 -0
  38. package/lib/SuperTable3/SuperTable.less +99 -0
  39. package/lib/SuperTable3/fixed.js +55 -0
  40. package/lib/SuperTable3/package.json +6 -0
  41. package/lib/index.js +102 -7
  42. package/lib/index.less +5 -1
  43. package/lib/style.less +13 -3
  44. package/package.json +1 -1
  45. package/es/HomeHeader/Header.js +0 -75
  46. package/es/HomeHeader/Header.less +0 -73
  47. package/es/HomeHeader/package.json +0 -6
  48. package/lib/HomeHeader/Header.js +0 -95
  49. package/lib/HomeHeader/Header.less +0 -73
  50. package/lib/HomeHeader/package.json +0 -6
@@ -0,0 +1,23 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/extends";
2
+ import _objectWithoutProperties from "@babel/runtime-corejs3/helpers/objectWithoutProperties";
3
+ var _excluded = ["children", "style"];
4
+ import _Object$assign from "@babel/runtime-corejs3/core-js-stable/object/assign";
5
+ import React from 'react';
6
+
7
+ function Indent(_ref) {
8
+ var children = _ref.children,
9
+ _ref$style = _ref.style,
10
+ style = _ref$style === void 0 ? {} : _ref$style,
11
+ props = _objectWithoutProperties(_ref, _excluded);
12
+
13
+ _Object$assign(style, {
14
+ paddingLeft: 8,
15
+ paddingRight: 8
16
+ });
17
+
18
+ return /*#__PURE__*/React.createElement("div", _extends({
19
+ style: style
20
+ }, props), children);
21
+ }
22
+
23
+ export default Indent;
@@ -0,0 +1,6 @@
1
+ {
2
+ "name": "Indent",
3
+ "version": "0.0.0",
4
+ "private": true,
5
+ "main": "./Indent.js"
6
+ }