@teamix/pro 1.5.42 → 1.5.43
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/dist/pro.js +425 -385
- package/dist/pro.min.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/table/components/ToolBar/FilterColumnIcon.js +2 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/table/components/ToolBar/FilterColumnIcon.js +2 -1
- package/package.json +1 -1
package/es/index.d.ts
CHANGED
@@ -30,5 +30,5 @@ export * from './sidebar';
|
|
30
30
|
export * from './utils';
|
31
31
|
export * from './timeline';
|
32
32
|
export * from './image';
|
33
|
-
declare const version = "1.5.
|
33
|
+
declare const version = "1.5.43";
|
34
34
|
export { version, ProAction, ProCard, ProField, ProForm, ProInfo, ProPageContainer, ProPageHeader, ProSkeleton, ProTable, ProSidebar, ProTimeline, TeamixIcon, ProImage, hooks, nocode, templates, utils, };
|
package/es/index.js
CHANGED
@@ -124,11 +124,12 @@ var FilterColumnIcon = function FilterColumnIcon(props) {
|
|
124
124
|
// 重置
|
125
125
|
var restColumns = function restColumns(e) {
|
126
126
|
e.stopPropagation();
|
127
|
-
var
|
127
|
+
var selectColumns = columns.map(function (item) {
|
128
128
|
return _objectSpread(_objectSpread({}, item), {}, {
|
129
129
|
columnFilters: (item === null || item === void 0 ? void 0 : item.columnFilters) === undefined ? true : item === null || item === void 0 ? void 0 : item.columnFilters
|
130
130
|
});
|
131
131
|
});
|
132
|
+
var keyNewColumns = processColumns(columns, selectColumns);
|
132
133
|
notifyTableRender(keyNewColumns);
|
133
134
|
};
|
134
135
|
// 修改
|
package/lib/index.d.ts
CHANGED
@@ -30,5 +30,5 @@ export * from './sidebar';
|
|
30
30
|
export * from './utils';
|
31
31
|
export * from './timeline';
|
32
32
|
export * from './image';
|
33
|
-
declare const version = "1.5.
|
33
|
+
declare const version = "1.5.43";
|
34
34
|
export { version, ProAction, ProCard, ProField, ProForm, ProInfo, ProPageContainer, ProPageHeader, ProSkeleton, ProTable, ProSidebar, ProTimeline, TeamixIcon, ProImage, hooks, nocode, templates, utils, };
|
package/lib/index.js
CHANGED
@@ -299,7 +299,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
299
299
|
if (!((_window = window) === null || _window === void 0 ? void 0 : _window.TEAMIXPRO_WITHOUT_ICON)) {
|
300
300
|
_icon.default.setConfig(_utils.default.getTeamixIconConfig());
|
301
301
|
}
|
302
|
-
var version = '1.5.
|
302
|
+
var version = '1.5.43';
|
303
303
|
// By TeamixTest
|
304
304
|
exports.version = version;
|
305
305
|
window.postMessage({
|
@@ -131,11 +131,12 @@ var FilterColumnIcon = function FilterColumnIcon(props) {
|
|
131
131
|
// 重置
|
132
132
|
var restColumns = function restColumns(e) {
|
133
133
|
e.stopPropagation();
|
134
|
-
var
|
134
|
+
var selectColumns = columns.map(function (item) {
|
135
135
|
return _objectSpread(_objectSpread({}, item), {}, {
|
136
136
|
columnFilters: (item === null || item === void 0 ? void 0 : item.columnFilters) === undefined ? true : item === null || item === void 0 ? void 0 : item.columnFilters
|
137
137
|
});
|
138
138
|
});
|
139
|
+
var keyNewColumns = processColumns(columns, selectColumns);
|
139
140
|
notifyTableRender(keyNewColumns);
|
140
141
|
};
|
141
142
|
// 修改
|