cloud-b2b 1.0.4 → 1.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.
- package/es/Indent/Indent.js +23 -0
- package/es/Indent/package.json +6 -0
- package/es/LayoutLink/LayoutLink.js +2 -2
- package/es/Sidebar2/Sidebar.js +1 -1
- package/es/SuperForm/SuperForm.js +2 -2
- package/es/SuperForm2/SuperForm.js +732 -0
- package/es/SuperForm2/SuperForm.less +52 -0
- package/es/SuperForm2/package.json +6 -0
- package/es/SuperTab/SuperTab.js +130 -0
- package/es/SuperTab/SuperTab.less +43 -0
- package/es/SuperTab/package.json +6 -0
- package/es/SuperTab2/SuperTab2.js +167 -0
- package/es/SuperTab2/SuperTab2.less +18 -0
- package/es/SuperTab2/package.json +6 -0
- package/es/SuperTable/DragSortRow.less +17 -17
- package/es/SuperTable/FilterDropDown.less +30 -30
- package/es/SuperTable/SuperTable.js +38 -38
- package/es/SuperTable/SuperTable.less +132 -135
- package/es/SuperTable/package.json +6 -6
- package/es/SuperTable2/SuperTable2.js +22 -22
- package/es/SuperTable2/SuperTable2.less +100 -116
- package/es/SuperTable2/package.json +6 -6
- package/es/SuperTable3/FilterDropDown.js +188 -0
- package/es/SuperTable3/FilterDropDown.less +29 -0
- package/es/SuperTable3/SuperTable.js +783 -0
- package/es/SuperTable3/SuperTable.less +99 -0
- package/es/SuperTable3/fixed.js +42 -0
- package/es/SuperTable3/package.json +6 -0
- package/es/Title/Title.less +35 -35
- package/es/Title/package.json +6 -6
- package/es/Viewer/Viewer.js +1 -1
- package/es/adjust.less +89 -89
- package/es/index.js +12 -2
- package/es/style.less +12 -2
- package/lib/Indent/Indent.js +38 -0
- package/lib/Indent/package.json +6 -0
- package/lib/LayoutLink/LayoutLink.js +2 -2
- package/lib/Sidebar2/Sidebar.js +1 -1
- package/lib/SuperForm/SuperForm.js +2 -2
- package/lib/SuperForm2/SuperForm.js +742 -0
- package/lib/SuperForm2/SuperForm.less +52 -0
- package/lib/SuperForm2/package.json +6 -0
- package/lib/SuperTab/SuperTab.js +146 -0
- package/lib/SuperTab/SuperTab.less +43 -0
- package/lib/SuperTab/package.json +6 -0
- package/lib/SuperTab2/SuperTab2.js +191 -0
- package/lib/SuperTab2/SuperTab2.less +18 -0
- package/lib/SuperTab2/package.json +6 -0
- package/lib/SuperTable/DragSortRow.less +17 -17
- package/lib/SuperTable/FilterDropDown.less +30 -30
- package/lib/SuperTable/SuperTable.js +38 -38
- package/lib/SuperTable/SuperTable.less +132 -135
- package/lib/SuperTable/package.json +6 -6
- package/lib/SuperTable2/SuperTable2.js +22 -22
- package/lib/SuperTable2/SuperTable2.less +100 -116
- package/lib/SuperTable2/package.json +6 -6
- package/lib/SuperTable3/FilterDropDown.js +205 -0
- package/lib/SuperTable3/FilterDropDown.less +29 -0
- package/lib/SuperTable3/SuperTable.js +787 -0
- package/lib/SuperTable3/SuperTable.less +99 -0
- package/lib/SuperTable3/fixed.js +55 -0
- package/lib/SuperTable3/package.json +6 -0
- package/lib/Title/Title.less +35 -35
- package/lib/Title/package.json +6 -6
- package/lib/Viewer/Viewer.js +1 -1
- package/lib/adjust.less +89 -89
- package/lib/index.js +102 -7
- package/lib/index.less +5 -1
- package/lib/style.less +12 -2
- package/package.json +1 -1
- package/es/HomeHeader/Header.js +0 -75
- package/es/HomeHeader/Header.less +0 -73
- package/es/HomeHeader/package.json +0 -6
- package/lib/HomeHeader/Header.js +0 -95
- package/lib/HomeHeader/Header.less +0 -73
- package/lib/HomeHeader/package.json +0 -6
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
@import '../variables.less';
|
|
2
|
+
|
|
3
|
+
.root {
|
|
4
|
+
border-spacing: 0;
|
|
5
|
+
cursor: default;
|
|
6
|
+
|
|
7
|
+
table {
|
|
8
|
+
white-space: pre;
|
|
9
|
+
|
|
10
|
+
:global(.ant-checkbox-input) {
|
|
11
|
+
z-index: -1;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:global(.ant-table-placeholder) {
|
|
16
|
+
padding: 0;
|
|
17
|
+
|
|
18
|
+
> div {
|
|
19
|
+
margin: 0;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.select {
|
|
24
|
+
background-color: @primary-1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.center {
|
|
28
|
+
text-align: center !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.left {
|
|
32
|
+
text-align: left !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.right {
|
|
36
|
+
text-align: right !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.noWrap{
|
|
40
|
+
white-space: nowrap;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.totalRow {
|
|
44
|
+
color: #222!important;
|
|
45
|
+
background-color: #f0f0f0!important;
|
|
46
|
+
transition: all 0s!important;
|
|
47
|
+
td {
|
|
48
|
+
border-top: 1px solid #ddd!important;
|
|
49
|
+
background-color: #f0f0f0!important;
|
|
50
|
+
border-bottom: 0!important;
|
|
51
|
+
transition: all 0s!important;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
:global(.ant-table-footer) {
|
|
56
|
+
padding: 0!important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.footer {
|
|
60
|
+
vertical-align: middle;
|
|
61
|
+
overflow: auto;
|
|
62
|
+
scrollbar-width: none;
|
|
63
|
+
-ms-overflow-style: none;
|
|
64
|
+
scrollbar-color: transparent transparent;
|
|
65
|
+
scrollbar-track-color: transparent;
|
|
66
|
+
-ms-scrollbar-track-color: transparent;
|
|
67
|
+
.footerItem {
|
|
68
|
+
white-space: pre;
|
|
69
|
+
> span {
|
|
70
|
+
display: inline-block;
|
|
71
|
+
color: #222;
|
|
72
|
+
position: relative;
|
|
73
|
+
vertical-align: middle;
|
|
74
|
+
border-top: 1px solid #dedede;
|
|
75
|
+
display: inline-block;
|
|
76
|
+
box-sizing: border-box;
|
|
77
|
+
height: 35px;
|
|
78
|
+
padding: 8px 8px 7px !important;
|
|
79
|
+
border-right: 1px solid transparent;
|
|
80
|
+
}
|
|
81
|
+
.ghost {
|
|
82
|
+
opacity: 0;
|
|
83
|
+
filter: alpha(opacity=0);
|
|
84
|
+
}
|
|
85
|
+
.content {
|
|
86
|
+
position: absolute;
|
|
87
|
+
left: 0;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.footer::-webkit-scrollbar {
|
|
93
|
+
display: none;
|
|
94
|
+
width: 0!important;
|
|
95
|
+
height: 0!important;
|
|
96
|
+
opacity: 0;
|
|
97
|
+
filter: alpha(opacity=0);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
|
4
|
+
|
|
5
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
6
|
+
|
|
7
|
+
_Object$defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
exports["default"] = void 0;
|
|
12
|
+
|
|
13
|
+
var _indexOf = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/index-of"));
|
|
14
|
+
|
|
15
|
+
var isFirefox = function isFirefox() {
|
|
16
|
+
var _context;
|
|
17
|
+
|
|
18
|
+
return (0, _indexOf["default"])(_context = navigator.userAgent).call(_context, 'Firefox') > 0;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
var getComputedStyle = function getComputedStyle(element) {
|
|
22
|
+
return window.getComputedStyle ? window.getComputedStyle(element, null) : element.currentStyle;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
var fixed = function fixed(container, header, maxHeight) {
|
|
26
|
+
var totalFooter = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
|
|
27
|
+
container.style.overflowY = 'auto';
|
|
28
|
+
container.style.maxHeight = maxHeight;
|
|
29
|
+
|
|
30
|
+
if (isFirefox()) {
|
|
31
|
+
container.style.position = 'relative';
|
|
32
|
+
header.style.top = '0';
|
|
33
|
+
header.style.position = 'sticky';
|
|
34
|
+
header.style.zIndex = '1';
|
|
35
|
+
} else {
|
|
36
|
+
header.parentNode.appendChild(header);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
var containerHeight = Number(getComputedStyle(container).height.replace('px', ''));
|
|
40
|
+
var translateHeight = containerHeight - 10 - container.scrollHeight;
|
|
41
|
+
var pageTotalElement = totalFooter.pageTotalElement,
|
|
42
|
+
searchTotalElement = totalFooter.searchTotalElement;
|
|
43
|
+
pageTotalElement && (pageTotalElement.style.transform = "translateY(".concat(translateHeight + container.scrollTop, "px)"));
|
|
44
|
+
searchTotalElement && (searchTotalElement.style.transform = "translateY(".concat(translateHeight + container.scrollTop, "px)"));
|
|
45
|
+
|
|
46
|
+
container.onscroll = function () {
|
|
47
|
+
if (container.scrollTop + containerHeight - 10 > container.scrollHeight) return;
|
|
48
|
+
!isFirefox() && (header.style.transform = "translateY(".concat(container.scrollTop, "px)"));
|
|
49
|
+
pageTotalElement && (pageTotalElement.style.transform = "translateY(".concat(translateHeight + container.scrollTop, "px)"));
|
|
50
|
+
searchTotalElement && (searchTotalElement.style.transform = "translateY(".concat(translateHeight + container.scrollTop, "px)"));
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
var _default = fixed;
|
|
55
|
+
exports["default"] = _default;
|
package/lib/Title/Title.less
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
@import '../variables';
|
|
2
|
-
|
|
3
|
-
.@{cloudlink-prefix}-title {
|
|
4
|
-
> *:first-child {
|
|
5
|
-
display: inline-block;
|
|
6
|
-
color: @brand-primary;
|
|
7
|
-
line-height: 1.2;
|
|
8
|
-
|
|
9
|
-
&[data-border='true'] {
|
|
10
|
-
padding: 0 5px;
|
|
11
|
-
border-left: @brand-primary solid 3px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&[data-fold='true'] {
|
|
15
|
-
cursor: pointer;
|
|
16
|
-
margin: 8px 0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
&[data-required='true'] {
|
|
20
|
-
&::after {
|
|
21
|
-
display: inline-block;
|
|
22
|
-
margin-left: 4px;
|
|
23
|
-
color: #f5222d;
|
|
24
|
-
font-size: 12px;
|
|
25
|
-
font-family: SimSun, sans-serif;
|
|
26
|
-
line-height: 1;
|
|
27
|
-
content: '*';
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
> [role = 'toolbar'] {
|
|
33
|
-
display: inline-block;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
1
|
+
@import '../variables';
|
|
2
|
+
|
|
3
|
+
.@{cloudlink-prefix}-title {
|
|
4
|
+
> *:first-child {
|
|
5
|
+
display: inline-block;
|
|
6
|
+
color: @brand-primary;
|
|
7
|
+
line-height: 1.2;
|
|
8
|
+
|
|
9
|
+
&[data-border='true'] {
|
|
10
|
+
padding: 0 5px;
|
|
11
|
+
border-left: @brand-primary solid 3px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&[data-fold='true'] {
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
margin: 8px 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&[data-required='true'] {
|
|
20
|
+
&::after {
|
|
21
|
+
display: inline-block;
|
|
22
|
+
margin-left: 4px;
|
|
23
|
+
color: #f5222d;
|
|
24
|
+
font-size: 12px;
|
|
25
|
+
font-family: SimSun, sans-serif;
|
|
26
|
+
line-height: 1;
|
|
27
|
+
content: '*';
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
> [role = 'toolbar'] {
|
|
33
|
+
display: inline-block;
|
|
34
|
+
}
|
|
35
|
+
}
|
package/lib/Title/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Title",
|
|
3
|
-
"version": "0.0.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"main": "./Title.js"
|
|
6
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Title",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"main": "./Title.js"
|
|
6
|
+
}
|
package/lib/Viewer/Viewer.js
CHANGED
|
@@ -131,7 +131,7 @@ var Viewers = /*#__PURE__*/function (_React$Component) {
|
|
|
131
131
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
132
132
|
key: index,
|
|
133
133
|
onClick: (0, _bind["default"])(_context = _this2._onSelect).call(_context, _this2, index),
|
|
134
|
-
className: index === imageIndex ?
|
|
134
|
+
className: index === imageIndex ? (0, _variables["default"])('Viewers').selectTitle : ''
|
|
135
135
|
}, item);
|
|
136
136
|
})), /*#__PURE__*/_react["default"].createElement(_ImageViews["default"], {
|
|
137
137
|
image: images[imageIndex],
|
package/lib/adjust.less
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
|
|
2
|
-
.ant-table-small {
|
|
3
|
-
.ant-table-thead {
|
|
4
|
-
background-color: @table-header-bg;
|
|
5
|
-
|
|
6
|
-
> tr > th {
|
|
7
|
-
padding: 12px 8px 11px !important;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.ant-table-tbody > tr > td {
|
|
12
|
-
padding: 8px 8px 7px !important;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.ant-table-tbody > tr.ant-table-row-selected td {
|
|
16
|
-
background-color: @primary-1 !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
|
|
20
|
-
background-color: @table-header-bg !important;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.ant-table-selection-column {
|
|
24
|
-
min-width: 62px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
table {
|
|
28
|
-
border-collapse: separate;
|
|
29
|
-
border-spacing: 0;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.ant-modal {
|
|
34
|
-
top: 50px;
|
|
35
|
-
padding-bottom: 0;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.ant-form-item {
|
|
39
|
-
margin-bottom: 6px;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.ant-select-sm .ant-select-selection--single {
|
|
43
|
-
height: @input-height-sm !important;
|
|
44
|
-
overflow: hidden;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.ant-form-vertical .ant-form-item {
|
|
48
|
-
padding-bottom: 0;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.ant-form-item-control {
|
|
52
|
-
line-height: @input-height-sm;
|
|
53
|
-
|
|
54
|
-
> .ant-form-explain-holder[aria-hidden='true'] {
|
|
55
|
-
display: none;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.ant-form-vertical .ant-form-item-label {
|
|
60
|
-
padding: 0;
|
|
61
|
-
line-height: 1.2;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.ant-input-lg {
|
|
65
|
-
font-size: 12px;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.ant-btn-lg {
|
|
69
|
-
height: @input-height-lg;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.ant-menu-inline .ant-menu-item {
|
|
73
|
-
margin-top: 0;
|
|
74
|
-
margin-bottom: 0 !important;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.ant-modal-header {
|
|
78
|
-
padding: 13px 16px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.ant-modal-body {
|
|
82
|
-
padding: 16px;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.ant-btn-primary:focus {
|
|
86
|
-
background-color: white;
|
|
87
|
-
color: @primary-color;
|
|
88
|
-
text-shadow: none;
|
|
89
|
-
}
|
|
1
|
+
|
|
2
|
+
.ant-table-small {
|
|
3
|
+
.ant-table-thead {
|
|
4
|
+
background-color: @table-header-bg;
|
|
5
|
+
|
|
6
|
+
> tr > th {
|
|
7
|
+
padding: 12px 8px 11px !important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ant-table-tbody > tr > td {
|
|
12
|
+
padding: 8px 8px 7px !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ant-table-tbody > tr.ant-table-row-selected td {
|
|
16
|
+
background-color: @primary-1 !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row) > td {
|
|
20
|
+
background-color: @table-header-bg !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ant-table-selection-column {
|
|
24
|
+
min-width: 62px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
table {
|
|
28
|
+
border-collapse: separate;
|
|
29
|
+
border-spacing: 0;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ant-modal {
|
|
34
|
+
top: 50px;
|
|
35
|
+
padding-bottom: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.ant-form-item {
|
|
39
|
+
margin-bottom: 6px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ant-select-sm .ant-select-selection--single {
|
|
43
|
+
height: @input-height-sm !important;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.ant-form-vertical .ant-form-item {
|
|
48
|
+
padding-bottom: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.ant-form-item-control {
|
|
52
|
+
line-height: @input-height-sm;
|
|
53
|
+
|
|
54
|
+
> .ant-form-explain-holder[aria-hidden='true'] {
|
|
55
|
+
display: none;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ant-form-vertical .ant-form-item-label {
|
|
60
|
+
padding: 0;
|
|
61
|
+
line-height: 1.2;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.ant-input-lg {
|
|
65
|
+
font-size: 12px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.ant-btn-lg {
|
|
69
|
+
height: @input-height-lg;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.ant-menu-inline .ant-menu-item {
|
|
73
|
+
margin-top: 0;
|
|
74
|
+
margin-bottom: 0 !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.ant-modal-header {
|
|
78
|
+
padding: 13px 16px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.ant-modal-body {
|
|
82
|
+
padding: 16px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.ant-btn-primary:focus {
|
|
86
|
+
background-color: white;
|
|
87
|
+
color: @primary-color;
|
|
88
|
+
text-shadow: none;
|
|
89
|
+
}
|
package/lib/index.js
CHANGED
|
@@ -29,10 +29,24 @@ _Object$defineProperty(exports, "Control", {
|
|
|
29
29
|
}
|
|
30
30
|
});
|
|
31
31
|
|
|
32
|
-
_Object$defineProperty(exports, "
|
|
32
|
+
_Object$defineProperty(exports, "EnhanceDialogs", {
|
|
33
33
|
enumerable: true,
|
|
34
34
|
get: function get() {
|
|
35
|
-
return _Enhance
|
|
35
|
+
return _Enhance.EnhanceDialogs;
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
_Object$defineProperty(exports, "EnhanceEditDialog", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function get() {
|
|
42
|
+
return _Enhance.EnhanceEditDialog;
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
_Object$defineProperty(exports, "EnhanceLoading", {
|
|
47
|
+
enumerable: true,
|
|
48
|
+
get: function get() {
|
|
49
|
+
return _Enhance.EnhanceLoading;
|
|
36
50
|
}
|
|
37
51
|
});
|
|
38
52
|
|
|
@@ -50,6 +64,13 @@ _Object$defineProperty(exports, "ImageView", {
|
|
|
50
64
|
}
|
|
51
65
|
});
|
|
52
66
|
|
|
67
|
+
_Object$defineProperty(exports, "Indent", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function get() {
|
|
70
|
+
return _Indent["default"];
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
|
|
53
74
|
_Object$defineProperty(exports, "InpurCascader", {
|
|
54
75
|
enumerable: true,
|
|
55
76
|
get: function get() {
|
|
@@ -57,6 +78,13 @@ _Object$defineProperty(exports, "InpurCascader", {
|
|
|
57
78
|
}
|
|
58
79
|
});
|
|
59
80
|
|
|
81
|
+
_Object$defineProperty(exports, "InputEditor", {
|
|
82
|
+
enumerable: true,
|
|
83
|
+
get: function get() {
|
|
84
|
+
return _InputEditor["default"];
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
|
|
60
88
|
_Object$defineProperty(exports, "InputSearch", {
|
|
61
89
|
enumerable: true,
|
|
62
90
|
get: function get() {
|
|
@@ -106,6 +134,13 @@ _Object$defineProperty(exports, "Loading", {
|
|
|
106
134
|
}
|
|
107
135
|
});
|
|
108
136
|
|
|
137
|
+
_Object$defineProperty(exports, "Loading2", {
|
|
138
|
+
enumerable: true,
|
|
139
|
+
get: function get() {
|
|
140
|
+
return _Loading2["default"];
|
|
141
|
+
}
|
|
142
|
+
});
|
|
143
|
+
|
|
109
144
|
_Object$defineProperty(exports, "ModalWithDrag", {
|
|
110
145
|
enumerable: true,
|
|
111
146
|
get: function get() {
|
|
@@ -134,6 +169,13 @@ _Object$defineProperty(exports, "Sidebar", {
|
|
|
134
169
|
}
|
|
135
170
|
});
|
|
136
171
|
|
|
172
|
+
_Object$defineProperty(exports, "Sidebar2", {
|
|
173
|
+
enumerable: true,
|
|
174
|
+
get: function get() {
|
|
175
|
+
return _Sidebar2["default"];
|
|
176
|
+
}
|
|
177
|
+
});
|
|
178
|
+
|
|
137
179
|
_Object$defineProperty(exports, "SuperForm", {
|
|
138
180
|
enumerable: true,
|
|
139
181
|
get: function get() {
|
|
@@ -141,6 +183,13 @@ _Object$defineProperty(exports, "SuperForm", {
|
|
|
141
183
|
}
|
|
142
184
|
});
|
|
143
185
|
|
|
186
|
+
_Object$defineProperty(exports, "SuperForm2", {
|
|
187
|
+
enumerable: true,
|
|
188
|
+
get: function get() {
|
|
189
|
+
return _SuperForm2["default"];
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
|
|
144
193
|
_Object$defineProperty(exports, "SuperIcon", {
|
|
145
194
|
enumerable: true,
|
|
146
195
|
get: function get() {
|
|
@@ -148,14 +197,42 @@ _Object$defineProperty(exports, "SuperIcon", {
|
|
|
148
197
|
}
|
|
149
198
|
});
|
|
150
199
|
|
|
200
|
+
_Object$defineProperty(exports, "SuperPagination", {
|
|
201
|
+
enumerable: true,
|
|
202
|
+
get: function get() {
|
|
203
|
+
return _SuperPagination["default"];
|
|
204
|
+
}
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
_Object$defineProperty(exports, "SuperTab", {
|
|
208
|
+
enumerable: true,
|
|
209
|
+
get: function get() {
|
|
210
|
+
return _SuperTab["default"];
|
|
211
|
+
}
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
_Object$defineProperty(exports, "SuperTab2", {
|
|
215
|
+
enumerable: true,
|
|
216
|
+
get: function get() {
|
|
217
|
+
return _SuperTab2["default"];
|
|
218
|
+
}
|
|
219
|
+
});
|
|
220
|
+
|
|
151
221
|
_Object$defineProperty(exports, "SuperTable", {
|
|
152
222
|
enumerable: true,
|
|
153
223
|
get: function get() {
|
|
154
|
-
return
|
|
224
|
+
return _SuperTable3["default"];
|
|
155
225
|
}
|
|
156
226
|
});
|
|
157
227
|
|
|
158
228
|
_Object$defineProperty(exports, "SuperTable2", {
|
|
229
|
+
enumerable: true,
|
|
230
|
+
get: function get() {
|
|
231
|
+
return _SuperTable2["default"];
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
|
|
235
|
+
_Object$defineProperty(exports, "SuperTable3", {
|
|
159
236
|
enumerable: true,
|
|
160
237
|
get: function get() {
|
|
161
238
|
return _SuperTable["default"];
|
|
@@ -197,14 +274,14 @@ _Object$defineProperty(exports, "WingBlank", {
|
|
|
197
274
|
}
|
|
198
275
|
});
|
|
199
276
|
|
|
277
|
+
var _Enhance = require("./Enhance");
|
|
278
|
+
|
|
200
279
|
var _Title = _interopRequireDefault(require("./Title"));
|
|
201
280
|
|
|
202
281
|
var _Card = _interopRequireDefault(require("./Card"));
|
|
203
282
|
|
|
204
283
|
var _Control = _interopRequireDefault(require("./Control"));
|
|
205
284
|
|
|
206
|
-
var _Enhance = _interopRequireDefault(require("./Enhance"));
|
|
207
|
-
|
|
208
285
|
var _Header = _interopRequireDefault(require("./Header"));
|
|
209
286
|
|
|
210
287
|
var _ImageView = _interopRequireDefault(require("./ImageView"));
|
|
@@ -215,6 +292,8 @@ var _InputSearch = _interopRequireDefault(require("./InputSearch"));
|
|
|
215
292
|
|
|
216
293
|
var _InputSelect = _interopRequireDefault(require("./InputSelect"));
|
|
217
294
|
|
|
295
|
+
var _InputEditor = _interopRequireDefault(require("./InputEditor"));
|
|
296
|
+
|
|
218
297
|
var _InputWriting = _interopRequireDefault(require("./InputWriting"));
|
|
219
298
|
|
|
220
299
|
var _Layout = _interopRequireDefault(require("./Layout"));
|
|
@@ -225,6 +304,8 @@ var _Link = _interopRequireDefault(require("./Link"));
|
|
|
225
304
|
|
|
226
305
|
var _Loading = _interopRequireDefault(require("./Loading"));
|
|
227
306
|
|
|
307
|
+
var _Loading2 = _interopRequireDefault(require("./Loading2"));
|
|
308
|
+
|
|
228
309
|
var _ModalWithDrag = _interopRequireDefault(require("./ModalWithDrag"));
|
|
229
310
|
|
|
230
311
|
var _NumberInput = _interopRequireDefault(require("./NumberInput"));
|
|
@@ -233,8 +314,12 @@ var _Search = _interopRequireDefault(require("./Search"));
|
|
|
233
314
|
|
|
234
315
|
var _Sidebar = _interopRequireDefault(require("./Sidebar"));
|
|
235
316
|
|
|
317
|
+
var _Sidebar2 = _interopRequireDefault(require("./Sidebar2"));
|
|
318
|
+
|
|
236
319
|
var _SuperForm = _interopRequireDefault(require("./SuperForm"));
|
|
237
320
|
|
|
321
|
+
var _SuperForm2 = _interopRequireDefault(require("./SuperForm2"));
|
|
322
|
+
|
|
238
323
|
var _SuperIcon = _interopRequireDefault(require("./SuperIcon"));
|
|
239
324
|
|
|
240
325
|
var _SuperToolbar = _interopRequireDefault(require("./SuperToolbar"));
|
|
@@ -247,6 +332,16 @@ var _WingBlank = _interopRequireDefault(require("./WingBlank"));
|
|
|
247
332
|
|
|
248
333
|
var _Area = _interopRequireDefault(require("./Area"));
|
|
249
334
|
|
|
250
|
-
var _SuperTable = _interopRequireDefault(require("./
|
|
335
|
+
var _SuperTable = _interopRequireDefault(require("./SuperTable3"));
|
|
336
|
+
|
|
337
|
+
var _SuperTable2 = _interopRequireDefault(require("./SuperTable2"));
|
|
338
|
+
|
|
339
|
+
var _SuperTable3 = _interopRequireDefault(require("./SuperTable"));
|
|
340
|
+
|
|
341
|
+
var _SuperPagination = _interopRequireDefault(require("./SuperPagination"));
|
|
342
|
+
|
|
343
|
+
var _SuperTab = _interopRequireDefault(require("./SuperTab"));
|
|
344
|
+
|
|
345
|
+
var _SuperTab2 = _interopRequireDefault(require("./SuperTab2"));
|
|
251
346
|
|
|
252
|
-
var
|
|
347
|
+
var _Indent = _interopRequireDefault(require("./Indent"));
|
package/lib/index.less
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
@import "./adjust.less";
|
|
2
2
|
@import "./Header/Header.less";
|
|
3
3
|
@import "./Header/Vertical.less";
|
|
4
|
-
@import "./HomeHeader/Header.less";
|
|
5
4
|
@import "./ImageView/ImageView.less";
|
|
6
5
|
@import "./InputEditor/inputEditor.less";
|
|
7
6
|
@import "./Layout/Layout.less";
|
|
@@ -14,10 +13,15 @@
|
|
|
14
13
|
@import "./Sidebar2/Sidebar.less";
|
|
15
14
|
@import "./style.less";
|
|
16
15
|
@import "./SuperForm/SuperForm.less";
|
|
16
|
+
@import "./SuperForm2/SuperForm.less";
|
|
17
|
+
@import "./SuperTab/SuperTab.less";
|
|
18
|
+
@import "./SuperTab2/SuperTab2.less";
|
|
17
19
|
@import "./SuperTable/DragSortRow.less";
|
|
18
20
|
@import "./SuperTable/FilterDropDown.less";
|
|
19
21
|
@import "./SuperTable/SuperTable.less";
|
|
20
22
|
@import "./SuperTable2/SuperTable2.less";
|
|
23
|
+
@import "./SuperTable3/FilterDropDown.less";
|
|
24
|
+
@import "./SuperTable3/SuperTable.less";
|
|
21
25
|
@import "./SuperToolbar/SuperToolbar.less";
|
|
22
26
|
@import "./SuperUpload/SuperUpload.less";
|
|
23
27
|
@import "./Title/Title.less";
|
package/lib/style.less
CHANGED
|
@@ -2,10 +2,15 @@
|
|
|
2
2
|
@import "./Title/Title.less";
|
|
3
3
|
@import "./Search/Search.less";
|
|
4
4
|
@import "./SuperForm/SuperForm.less";
|
|
5
|
+
@import "./SuperForm2/SuperForm.less";
|
|
5
6
|
@import "./SuperTable/SuperTable.less";
|
|
7
|
+
@import "./SuperTable/DragSortRow.less";
|
|
8
|
+
@import "./SuperTable/FilterDropDown.less";
|
|
6
9
|
@import "./SuperTable2/SuperTable2.less";
|
|
10
|
+
@import "./SuperTable3/SuperTable.less";
|
|
11
|
+
@import "./SuperTable3/FilterDropDown.less";
|
|
7
12
|
@import "./Header/Header.less";
|
|
8
|
-
@import "./
|
|
13
|
+
@import "./Header/Vertical.less";
|
|
9
14
|
@import "./InputEditor/InputEditor.less";
|
|
10
15
|
@import "./Layout/Layout.less";
|
|
11
16
|
@import "./LayoutLink/LayoutLink.less";
|
|
@@ -17,4 +22,9 @@
|
|
|
17
22
|
@import "./Sidebar2/Sidebar.less";
|
|
18
23
|
@import "./SuperToolbar/SuperToolbar.less";
|
|
19
24
|
@import "./SuperUpload/SuperUpload.less";
|
|
20
|
-
@import "./Viewer/Viewer.less";
|
|
25
|
+
@import "./Viewer/Viewer.less";
|
|
26
|
+
@import "./Viewer/imgView.less";
|
|
27
|
+
@import "./SuperTab/SuperTab.less";
|
|
28
|
+
@import "./SuperTab2/SuperTab2.less";
|
|
29
|
+
@import "./ImageView/ImageView.less";
|
|
30
|
+
@import "./WingBlank/WingBlank.less";
|