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
@@ -1,73 +0,0 @@
1
- @import '../variables';
2
-
3
- @header-height: @one-pixel * 80;
4
-
5
- .@{cloudlink-prefix}-HomeHeader {
6
- > div:first-child {
7
- position: relative;
8
- height: @header-height;
9
- line-height: @header-height - @one-pixel * 6;
10
- text-align: center;
11
- //background: url('/platformHome/head_bg.png') no-repeat;
12
- background-size: 100% 100%;
13
- color: #33EDFC;
14
- font-size: @one-pixel * 32;
15
- font-weight: bold;
16
- margin: 0 280 * @one-pixel;
17
- }
18
-
19
- > div:nth-child(2) {
20
- color: white;
21
- float: left;
22
- margin-top: -@header-height + 20 * @one-pixel;
23
- }
24
-
25
- > div:last-child {
26
- float: right;
27
- margin-top: -@header-height + 20 * @one-pixel;
28
- color: white;
29
-
30
- > div {
31
- display: inline-block;
32
- margin-right: 5 * @one-pixel;
33
- }
34
-
35
- > span > div {
36
- > input {
37
- background-color: transparent;
38
- color: white;
39
- border-color: #33edfc;
40
- width: 100px;
41
- }
42
-
43
- > i {
44
- color: white;
45
- }
46
- }
47
- }
48
-
49
- :global {
50
- .ant-radio-button-wrapper {
51
- background: transparent;
52
- color: white;
53
- border-radius: 0;
54
- border-color: #33EDFC;
55
- transition: none;
56
- }
57
-
58
- .ant-radio-button-wrapper-checked,
59
- .ant-radio-button-wrapper-checked:hover {
60
- background: #33EDFC;
61
- color: #162C55;
62
- border-color: #33EDFC;
63
- }
64
-
65
- .ant-radio-button-wrapper-checked {
66
- box-shadow: none;
67
- }
68
-
69
- .ant-radio-button-wrapper:hover {
70
- border-color: #33EDFC;
71
- }
72
- }
73
- }
@@ -1,6 +0,0 @@
1
- {
2
- "name": "Header",
3
- "version": "0.0.0",
4
- "private": true,
5
- "main": "./Header.js"
6
- }