@commercetools-uikit/data-table-manager 20.3.0 → 20.3.1
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/column-settings-manager/dist/commercetools-uikit-data-table-manager-column-settings-manager.cjs.dev.js +1 -1
- package/column-settings-manager/dist/commercetools-uikit-data-table-manager-column-settings-manager.cjs.prod.js +1 -1
- package/column-settings-manager/dist/commercetools-uikit-data-table-manager-column-settings-manager.esm.js +1 -1
- package/dist/{column-settings-manager-b1528469.cjs.dev.js → column-settings-manager-07b065fc.cjs.dev.js} +35 -21
- package/dist/{column-settings-manager-7bd586c5.cjs.prod.js → column-settings-manager-8ec9b25f.cjs.prod.js} +35 -21
- package/dist/{column-settings-manager-5e0c28a4.esm.js → column-settings-manager-b4e2fd60.esm.js} +35 -21
- package/dist/commercetools-uikit-data-table-manager.cjs.dev.js +62 -38
- package/dist/commercetools-uikit-data-table-manager.cjs.prod.js +62 -38
- package/dist/commercetools-uikit-data-table-manager.esm.js +63 -39
- package/package.json +24 -24
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var columnSettingsManager = require('../../dist/column-settings-manager-
|
|
5
|
+
var columnSettingsManager = require('../../dist/column-settings-manager-07b065fc.cjs.dev.js');
|
|
6
6
|
require('@babel/runtime-corejs3/helpers/defineProperty');
|
|
7
7
|
require('@babel/runtime-corejs3/helpers/slicedToArray');
|
|
8
8
|
require('@babel/runtime-corejs3/helpers/objectWithoutProperties');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var columnSettingsManager = require('../../dist/column-settings-manager-
|
|
5
|
+
var columnSettingsManager = require('../../dist/column-settings-manager-8ec9b25f.cjs.prod.js');
|
|
6
6
|
require('@babel/runtime-corejs3/helpers/defineProperty');
|
|
7
7
|
require('@babel/runtime-corejs3/helpers/slicedToArray');
|
|
8
8
|
require('@babel/runtime-corejs3/helpers/objectWithoutProperties');
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as ColumnSettingsManager } from '../../dist/column-settings-manager-
|
|
1
|
+
export { C as ColumnSettingsManager } from '../../dist/column-settings-manager-b4e2fd60.esm.js';
|
|
2
2
|
import '@babel/runtime-corejs3/helpers/defineProperty';
|
|
3
3
|
import '@babel/runtime-corejs3/helpers/slicedToArray';
|
|
4
4
|
import '@babel/runtime-corejs3/helpers/objectWithoutProperties';
|
|
@@ -207,9 +207,11 @@ var TagContainerEditable$1 = TagContainerEditable;
|
|
|
207
207
|
|
|
208
208
|
var messages$1 = reactIntl.defineMessages({
|
|
209
209
|
loadMoreAttributesHint: {
|
|
210
|
-
id:
|
|
211
|
-
|
|
212
|
-
|
|
210
|
+
id: "UIKit.DataTableManager.ColumnManager.DroppablePanel.loadMoreAttributesHint",
|
|
211
|
+
defaultMessage: [{
|
|
212
|
+
"type": 0,
|
|
213
|
+
"value": "Load more attributes by using the search input above"
|
|
214
|
+
}]
|
|
213
215
|
}
|
|
214
216
|
});
|
|
215
217
|
|
|
@@ -256,34 +258,46 @@ var DroppablePanel$1 = DroppablePanel;
|
|
|
256
258
|
|
|
257
259
|
var messages = reactIntl.defineMessages({
|
|
258
260
|
title: {
|
|
259
|
-
id:
|
|
260
|
-
|
|
261
|
-
|
|
261
|
+
id: "UIKit.DataTableManager.ColumnManager.title",
|
|
262
|
+
defaultMessage: [{
|
|
263
|
+
"type": 0,
|
|
264
|
+
"value": "Column Manager"
|
|
265
|
+
}]
|
|
262
266
|
},
|
|
263
267
|
visibleColumns: {
|
|
264
|
-
id:
|
|
265
|
-
|
|
266
|
-
|
|
268
|
+
id: "UIKit.DataTableManager.ColumnSelectorGroups.visible",
|
|
269
|
+
defaultMessage: [{
|
|
270
|
+
"type": 0,
|
|
271
|
+
"value": "Visible columns"
|
|
272
|
+
}]
|
|
267
273
|
},
|
|
268
274
|
hiddenColumns: {
|
|
269
|
-
id:
|
|
270
|
-
|
|
271
|
-
|
|
275
|
+
id: "UIKit.DataTableManager.ColumnManager.hiddenColumns",
|
|
276
|
+
defaultMessage: [{
|
|
277
|
+
"type": 0,
|
|
278
|
+
"value": "Hidden columns"
|
|
279
|
+
}]
|
|
272
280
|
},
|
|
273
281
|
noSelectedColumnsToShow: {
|
|
274
|
-
id:
|
|
275
|
-
|
|
276
|
-
|
|
282
|
+
id: "UIKit.DataTableManager.ColumnManager.noSelectedColumnsToShow",
|
|
283
|
+
defaultMessage: [{
|
|
284
|
+
"type": 0,
|
|
285
|
+
"value": "There are no selected columns to show."
|
|
286
|
+
}]
|
|
277
287
|
},
|
|
278
288
|
noHiddenColumnsToShow: {
|
|
279
|
-
id:
|
|
280
|
-
|
|
281
|
-
|
|
289
|
+
id: "UIKit.DataTableManager.ColumnManager.noHiddenColumnsToShow",
|
|
290
|
+
defaultMessage: [{
|
|
291
|
+
"type": 0,
|
|
292
|
+
"value": "There are no hidden columns to show."
|
|
293
|
+
}]
|
|
282
294
|
},
|
|
283
295
|
closeButtonLabel: {
|
|
284
|
-
id:
|
|
285
|
-
|
|
286
|
-
|
|
296
|
+
id: "UIKit.DataTableManager.ColumnManager.closeButtonLabel",
|
|
297
|
+
defaultMessage: [{
|
|
298
|
+
"type": 0,
|
|
299
|
+
"value": "Close"
|
|
300
|
+
}]
|
|
287
301
|
}
|
|
288
302
|
});
|
|
289
303
|
|
|
@@ -179,9 +179,11 @@ var TagContainerEditable$1 = TagContainerEditable;
|
|
|
179
179
|
|
|
180
180
|
var messages$1 = reactIntl.defineMessages({
|
|
181
181
|
loadMoreAttributesHint: {
|
|
182
|
-
id:
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
id: "UIKit.DataTableManager.ColumnManager.DroppablePanel.loadMoreAttributesHint",
|
|
183
|
+
defaultMessage: [{
|
|
184
|
+
"type": 0,
|
|
185
|
+
"value": "Load more attributes by using the search input above"
|
|
186
|
+
}]
|
|
185
187
|
}
|
|
186
188
|
});
|
|
187
189
|
|
|
@@ -228,34 +230,46 @@ var DroppablePanel$1 = DroppablePanel;
|
|
|
228
230
|
|
|
229
231
|
var messages = reactIntl.defineMessages({
|
|
230
232
|
title: {
|
|
231
|
-
id:
|
|
232
|
-
|
|
233
|
-
|
|
233
|
+
id: "UIKit.DataTableManager.ColumnManager.title",
|
|
234
|
+
defaultMessage: [{
|
|
235
|
+
"type": 0,
|
|
236
|
+
"value": "Column Manager"
|
|
237
|
+
}]
|
|
234
238
|
},
|
|
235
239
|
visibleColumns: {
|
|
236
|
-
id:
|
|
237
|
-
|
|
238
|
-
|
|
240
|
+
id: "UIKit.DataTableManager.ColumnSelectorGroups.visible",
|
|
241
|
+
defaultMessage: [{
|
|
242
|
+
"type": 0,
|
|
243
|
+
"value": "Visible columns"
|
|
244
|
+
}]
|
|
239
245
|
},
|
|
240
246
|
hiddenColumns: {
|
|
241
|
-
id:
|
|
242
|
-
|
|
243
|
-
|
|
247
|
+
id: "UIKit.DataTableManager.ColumnManager.hiddenColumns",
|
|
248
|
+
defaultMessage: [{
|
|
249
|
+
"type": 0,
|
|
250
|
+
"value": "Hidden columns"
|
|
251
|
+
}]
|
|
244
252
|
},
|
|
245
253
|
noSelectedColumnsToShow: {
|
|
246
|
-
id:
|
|
247
|
-
|
|
248
|
-
|
|
254
|
+
id: "UIKit.DataTableManager.ColumnManager.noSelectedColumnsToShow",
|
|
255
|
+
defaultMessage: [{
|
|
256
|
+
"type": 0,
|
|
257
|
+
"value": "There are no selected columns to show."
|
|
258
|
+
}]
|
|
249
259
|
},
|
|
250
260
|
noHiddenColumnsToShow: {
|
|
251
|
-
id:
|
|
252
|
-
|
|
253
|
-
|
|
261
|
+
id: "UIKit.DataTableManager.ColumnManager.noHiddenColumnsToShow",
|
|
262
|
+
defaultMessage: [{
|
|
263
|
+
"type": 0,
|
|
264
|
+
"value": "There are no hidden columns to show."
|
|
265
|
+
}]
|
|
254
266
|
},
|
|
255
267
|
closeButtonLabel: {
|
|
256
|
-
id:
|
|
257
|
-
|
|
258
|
-
|
|
268
|
+
id: "UIKit.DataTableManager.ColumnManager.closeButtonLabel",
|
|
269
|
+
defaultMessage: [{
|
|
270
|
+
"type": 0,
|
|
271
|
+
"value": "Close"
|
|
272
|
+
}]
|
|
259
273
|
}
|
|
260
274
|
});
|
|
261
275
|
|
package/dist/{column-settings-manager-5e0c28a4.esm.js → column-settings-manager-b4e2fd60.esm.js}
RENAMED
|
@@ -178,9 +178,11 @@ var TagContainerEditable$1 = TagContainerEditable;
|
|
|
178
178
|
|
|
179
179
|
var messages$1 = defineMessages({
|
|
180
180
|
loadMoreAttributesHint: {
|
|
181
|
-
id:
|
|
182
|
-
|
|
183
|
-
|
|
181
|
+
id: "UIKit.DataTableManager.ColumnManager.DroppablePanel.loadMoreAttributesHint",
|
|
182
|
+
defaultMessage: [{
|
|
183
|
+
"type": 0,
|
|
184
|
+
"value": "Load more attributes by using the search input above"
|
|
185
|
+
}]
|
|
184
186
|
}
|
|
185
187
|
});
|
|
186
188
|
|
|
@@ -227,34 +229,46 @@ var DroppablePanel$1 = DroppablePanel;
|
|
|
227
229
|
|
|
228
230
|
var messages = defineMessages({
|
|
229
231
|
title: {
|
|
230
|
-
id:
|
|
231
|
-
|
|
232
|
-
|
|
232
|
+
id: "UIKit.DataTableManager.ColumnManager.title",
|
|
233
|
+
defaultMessage: [{
|
|
234
|
+
"type": 0,
|
|
235
|
+
"value": "Column Manager"
|
|
236
|
+
}]
|
|
233
237
|
},
|
|
234
238
|
visibleColumns: {
|
|
235
|
-
id:
|
|
236
|
-
|
|
237
|
-
|
|
239
|
+
id: "UIKit.DataTableManager.ColumnSelectorGroups.visible",
|
|
240
|
+
defaultMessage: [{
|
|
241
|
+
"type": 0,
|
|
242
|
+
"value": "Visible columns"
|
|
243
|
+
}]
|
|
238
244
|
},
|
|
239
245
|
hiddenColumns: {
|
|
240
|
-
id:
|
|
241
|
-
|
|
242
|
-
|
|
246
|
+
id: "UIKit.DataTableManager.ColumnManager.hiddenColumns",
|
|
247
|
+
defaultMessage: [{
|
|
248
|
+
"type": 0,
|
|
249
|
+
"value": "Hidden columns"
|
|
250
|
+
}]
|
|
243
251
|
},
|
|
244
252
|
noSelectedColumnsToShow: {
|
|
245
|
-
id:
|
|
246
|
-
|
|
247
|
-
|
|
253
|
+
id: "UIKit.DataTableManager.ColumnManager.noSelectedColumnsToShow",
|
|
254
|
+
defaultMessage: [{
|
|
255
|
+
"type": 0,
|
|
256
|
+
"value": "There are no selected columns to show."
|
|
257
|
+
}]
|
|
248
258
|
},
|
|
249
259
|
noHiddenColumnsToShow: {
|
|
250
|
-
id:
|
|
251
|
-
|
|
252
|
-
|
|
260
|
+
id: "UIKit.DataTableManager.ColumnManager.noHiddenColumnsToShow",
|
|
261
|
+
defaultMessage: [{
|
|
262
|
+
"type": 0,
|
|
263
|
+
"value": "There are no hidden columns to show."
|
|
264
|
+
}]
|
|
253
265
|
},
|
|
254
266
|
closeButtonLabel: {
|
|
255
|
-
id:
|
|
256
|
-
|
|
257
|
-
|
|
267
|
+
id: "UIKit.DataTableManager.ColumnManager.closeButtonLabel",
|
|
268
|
+
defaultMessage: [{
|
|
269
|
+
"type": 0,
|
|
270
|
+
"value": "Close"
|
|
271
|
+
}]
|
|
258
272
|
}
|
|
259
273
|
});
|
|
260
274
|
|
|
@@ -32,7 +32,7 @@ var Grid = require('@commercetools-uikit/grid');
|
|
|
32
32
|
var RadioInput = require('@commercetools-uikit/radio-input');
|
|
33
33
|
var AccessibleHidden = require('@commercetools-uikit/accessible-hidden');
|
|
34
34
|
var designSystem = require('@commercetools-uikit/design-system');
|
|
35
|
-
var columnSettingsManager = require('./column-settings-manager-
|
|
35
|
+
var columnSettingsManager = require('./column-settings-manager-07b065fc.cjs.dev.js');
|
|
36
36
|
var hooks = require('@commercetools-uikit/hooks');
|
|
37
37
|
var dataTableManagerProvider = require('./data-table-manager-provider-fc238633.cjs.dev.js');
|
|
38
38
|
require('@babel/runtime-corejs3/core-js-stable/promise');
|
|
@@ -84,44 +84,60 @@ const DISPLAY_SETTINGS = 'displaySettings';
|
|
|
84
84
|
|
|
85
85
|
var messages$2 = reactIntl.defineMessages({
|
|
86
86
|
title: {
|
|
87
|
-
id:
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
id: "UIKit.DataTableManager.DensityManager.title",
|
|
88
|
+
defaultMessage: [{
|
|
89
|
+
"type": 0,
|
|
90
|
+
"value": "Display settings"
|
|
91
|
+
}]
|
|
90
92
|
},
|
|
91
93
|
textWrappingSubtitle: {
|
|
92
|
-
id:
|
|
93
|
-
|
|
94
|
-
|
|
94
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingSubtitle",
|
|
95
|
+
defaultMessage: [{
|
|
96
|
+
"type": 0,
|
|
97
|
+
"value": "Text wrapping"
|
|
98
|
+
}]
|
|
95
99
|
},
|
|
96
100
|
densityDisplaySubtitle: {
|
|
97
|
-
id:
|
|
98
|
-
|
|
99
|
-
|
|
101
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplaySubtitle",
|
|
102
|
+
defaultMessage: [{
|
|
103
|
+
"type": 0,
|
|
104
|
+
"value": "Density display"
|
|
105
|
+
}]
|
|
100
106
|
},
|
|
101
107
|
textWrappingAllWrapVisibleOption: {
|
|
102
|
-
id:
|
|
103
|
-
|
|
104
|
-
|
|
108
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingAllWrapVisibleOption",
|
|
109
|
+
defaultMessage: [{
|
|
110
|
+
"type": 0,
|
|
111
|
+
"value": "Make all wrapped texts visible"
|
|
112
|
+
}]
|
|
105
113
|
},
|
|
106
114
|
textWrappingShowHideOnDemandOption: {
|
|
107
|
-
id:
|
|
108
|
-
|
|
109
|
-
|
|
115
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingShowHideOnDemandOption",
|
|
116
|
+
defaultMessage: [{
|
|
117
|
+
"type": 0,
|
|
118
|
+
"value": "Show / hide texts by row on demand"
|
|
119
|
+
}]
|
|
110
120
|
},
|
|
111
121
|
densityDisplayComfortableOption: {
|
|
112
|
-
id:
|
|
113
|
-
|
|
114
|
-
|
|
122
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplayComfortableOption",
|
|
123
|
+
defaultMessage: [{
|
|
124
|
+
"type": 0,
|
|
125
|
+
"value": "Comfortable"
|
|
126
|
+
}]
|
|
115
127
|
},
|
|
116
128
|
densityDisplayCompactOption: {
|
|
117
|
-
id:
|
|
118
|
-
|
|
119
|
-
|
|
129
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplayCompactOption",
|
|
130
|
+
defaultMessage: [{
|
|
131
|
+
"type": 0,
|
|
132
|
+
"value": "Compact"
|
|
133
|
+
}]
|
|
120
134
|
},
|
|
121
135
|
closeButtonLabel: {
|
|
122
|
-
id:
|
|
123
|
-
|
|
124
|
-
|
|
136
|
+
id: "UIKit.DataTableManager.DensityManager.closeButtonLabel",
|
|
137
|
+
defaultMessage: [{
|
|
138
|
+
"type": 0,
|
|
139
|
+
"value": "Close"
|
|
140
|
+
}]
|
|
125
141
|
}
|
|
126
142
|
});
|
|
127
143
|
|
|
@@ -214,9 +230,11 @@ var DisplaySettingsManager = DensityManager;
|
|
|
214
230
|
|
|
215
231
|
var messages$1 = reactIntl.defineMessages({
|
|
216
232
|
closeButtonLabel: {
|
|
217
|
-
id:
|
|
218
|
-
|
|
219
|
-
|
|
233
|
+
id: "UIKit.DataTableManager.CustomSettingsManager.closeButtonLabel",
|
|
234
|
+
defaultMessage: [{
|
|
235
|
+
"type": 0,
|
|
236
|
+
"value": "Close"
|
|
237
|
+
}]
|
|
220
238
|
}
|
|
221
239
|
});
|
|
222
240
|
|
|
@@ -236,19 +254,25 @@ var CustomSettingsManager$1 = CustomSettingsManager;
|
|
|
236
254
|
|
|
237
255
|
var messages = reactIntl.defineMessages({
|
|
238
256
|
placeholder: {
|
|
239
|
-
id:
|
|
240
|
-
|
|
241
|
-
|
|
257
|
+
id: "UIKit.DataTableManager.TableSettings.placeholder",
|
|
258
|
+
defaultMessage: [{
|
|
259
|
+
"type": 0,
|
|
260
|
+
"value": "Table settings"
|
|
261
|
+
}]
|
|
242
262
|
},
|
|
243
263
|
displaySettingsOption: {
|
|
244
|
-
id:
|
|
245
|
-
|
|
246
|
-
|
|
264
|
+
id: "UIKit.DataTableManager.TableSettings.displaySettingsOption",
|
|
265
|
+
defaultMessage: [{
|
|
266
|
+
"type": 0,
|
|
267
|
+
"value": "Display settings"
|
|
268
|
+
}]
|
|
247
269
|
},
|
|
248
270
|
columnManagerOption: {
|
|
249
|
-
id:
|
|
250
|
-
|
|
251
|
-
|
|
271
|
+
id: "UIKit.DataTableManager.TableSettings.columnManagerOption",
|
|
272
|
+
defaultMessage: [{
|
|
273
|
+
"type": 0,
|
|
274
|
+
"value": "Column manager"
|
|
275
|
+
}]
|
|
252
276
|
}
|
|
253
277
|
});
|
|
254
278
|
|
|
@@ -484,7 +508,7 @@ DataTableManager.displayName = 'DataTableManager';
|
|
|
484
508
|
var DataTableManager$1 = DataTableManager;
|
|
485
509
|
|
|
486
510
|
// NOTE: This string will be replaced on build time with the package version.
|
|
487
|
-
var version = "20.3.
|
|
511
|
+
var version = "20.3.1";
|
|
488
512
|
|
|
489
513
|
exports.ColumnSettingsManager = columnSettingsManager.ColumnSettingsManager;
|
|
490
514
|
Object.defineProperty(exports, 'useRowSelection', {
|
|
@@ -32,7 +32,7 @@ var Grid = require('@commercetools-uikit/grid');
|
|
|
32
32
|
var RadioInput = require('@commercetools-uikit/radio-input');
|
|
33
33
|
var AccessibleHidden = require('@commercetools-uikit/accessible-hidden');
|
|
34
34
|
var designSystem = require('@commercetools-uikit/design-system');
|
|
35
|
-
var columnSettingsManager = require('./column-settings-manager-
|
|
35
|
+
var columnSettingsManager = require('./column-settings-manager-8ec9b25f.cjs.prod.js');
|
|
36
36
|
var hooks = require('@commercetools-uikit/hooks');
|
|
37
37
|
var dataTableManagerProvider = require('./data-table-manager-provider-c64c81aa.cjs.prod.js');
|
|
38
38
|
require('@babel/runtime-corejs3/core-js-stable/promise');
|
|
@@ -84,44 +84,60 @@ const DISPLAY_SETTINGS = 'displaySettings';
|
|
|
84
84
|
|
|
85
85
|
var messages$2 = reactIntl.defineMessages({
|
|
86
86
|
title: {
|
|
87
|
-
id:
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
id: "UIKit.DataTableManager.DensityManager.title",
|
|
88
|
+
defaultMessage: [{
|
|
89
|
+
"type": 0,
|
|
90
|
+
"value": "Display settings"
|
|
91
|
+
}]
|
|
90
92
|
},
|
|
91
93
|
textWrappingSubtitle: {
|
|
92
|
-
id:
|
|
93
|
-
|
|
94
|
-
|
|
94
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingSubtitle",
|
|
95
|
+
defaultMessage: [{
|
|
96
|
+
"type": 0,
|
|
97
|
+
"value": "Text wrapping"
|
|
98
|
+
}]
|
|
95
99
|
},
|
|
96
100
|
densityDisplaySubtitle: {
|
|
97
|
-
id:
|
|
98
|
-
|
|
99
|
-
|
|
101
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplaySubtitle",
|
|
102
|
+
defaultMessage: [{
|
|
103
|
+
"type": 0,
|
|
104
|
+
"value": "Density display"
|
|
105
|
+
}]
|
|
100
106
|
},
|
|
101
107
|
textWrappingAllWrapVisibleOption: {
|
|
102
|
-
id:
|
|
103
|
-
|
|
104
|
-
|
|
108
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingAllWrapVisibleOption",
|
|
109
|
+
defaultMessage: [{
|
|
110
|
+
"type": 0,
|
|
111
|
+
"value": "Make all wrapped texts visible"
|
|
112
|
+
}]
|
|
105
113
|
},
|
|
106
114
|
textWrappingShowHideOnDemandOption: {
|
|
107
|
-
id:
|
|
108
|
-
|
|
109
|
-
|
|
115
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingShowHideOnDemandOption",
|
|
116
|
+
defaultMessage: [{
|
|
117
|
+
"type": 0,
|
|
118
|
+
"value": "Show / hide texts by row on demand"
|
|
119
|
+
}]
|
|
110
120
|
},
|
|
111
121
|
densityDisplayComfortableOption: {
|
|
112
|
-
id:
|
|
113
|
-
|
|
114
|
-
|
|
122
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplayComfortableOption",
|
|
123
|
+
defaultMessage: [{
|
|
124
|
+
"type": 0,
|
|
125
|
+
"value": "Comfortable"
|
|
126
|
+
}]
|
|
115
127
|
},
|
|
116
128
|
densityDisplayCompactOption: {
|
|
117
|
-
id:
|
|
118
|
-
|
|
119
|
-
|
|
129
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplayCompactOption",
|
|
130
|
+
defaultMessage: [{
|
|
131
|
+
"type": 0,
|
|
132
|
+
"value": "Compact"
|
|
133
|
+
}]
|
|
120
134
|
},
|
|
121
135
|
closeButtonLabel: {
|
|
122
|
-
id:
|
|
123
|
-
|
|
124
|
-
|
|
136
|
+
id: "UIKit.DataTableManager.DensityManager.closeButtonLabel",
|
|
137
|
+
defaultMessage: [{
|
|
138
|
+
"type": 0,
|
|
139
|
+
"value": "Close"
|
|
140
|
+
}]
|
|
125
141
|
}
|
|
126
142
|
});
|
|
127
143
|
|
|
@@ -214,9 +230,11 @@ var DisplaySettingsManager = DensityManager;
|
|
|
214
230
|
|
|
215
231
|
var messages$1 = reactIntl.defineMessages({
|
|
216
232
|
closeButtonLabel: {
|
|
217
|
-
id:
|
|
218
|
-
|
|
219
|
-
|
|
233
|
+
id: "UIKit.DataTableManager.CustomSettingsManager.closeButtonLabel",
|
|
234
|
+
defaultMessage: [{
|
|
235
|
+
"type": 0,
|
|
236
|
+
"value": "Close"
|
|
237
|
+
}]
|
|
220
238
|
}
|
|
221
239
|
});
|
|
222
240
|
|
|
@@ -236,19 +254,25 @@ var CustomSettingsManager$1 = CustomSettingsManager;
|
|
|
236
254
|
|
|
237
255
|
var messages = reactIntl.defineMessages({
|
|
238
256
|
placeholder: {
|
|
239
|
-
id:
|
|
240
|
-
|
|
241
|
-
|
|
257
|
+
id: "UIKit.DataTableManager.TableSettings.placeholder",
|
|
258
|
+
defaultMessage: [{
|
|
259
|
+
"type": 0,
|
|
260
|
+
"value": "Table settings"
|
|
261
|
+
}]
|
|
242
262
|
},
|
|
243
263
|
displaySettingsOption: {
|
|
244
|
-
id:
|
|
245
|
-
|
|
246
|
-
|
|
264
|
+
id: "UIKit.DataTableManager.TableSettings.displaySettingsOption",
|
|
265
|
+
defaultMessage: [{
|
|
266
|
+
"type": 0,
|
|
267
|
+
"value": "Display settings"
|
|
268
|
+
}]
|
|
247
269
|
},
|
|
248
270
|
columnManagerOption: {
|
|
249
|
-
id:
|
|
250
|
-
|
|
251
|
-
|
|
271
|
+
id: "UIKit.DataTableManager.TableSettings.columnManagerOption",
|
|
272
|
+
defaultMessage: [{
|
|
273
|
+
"type": 0,
|
|
274
|
+
"value": "Column manager"
|
|
275
|
+
}]
|
|
252
276
|
}
|
|
253
277
|
});
|
|
254
278
|
|
|
@@ -475,7 +499,7 @@ DataTableManager.displayName = 'DataTableManager';
|
|
|
475
499
|
var DataTableManager$1 = DataTableManager;
|
|
476
500
|
|
|
477
501
|
// NOTE: This string will be replaced on build time with the package version.
|
|
478
|
-
var version = "20.3.
|
|
502
|
+
var version = "20.3.1";
|
|
479
503
|
|
|
480
504
|
exports.ColumnSettingsManager = columnSettingsManager.ColumnSettingsManager;
|
|
481
505
|
Object.defineProperty(exports, 'useRowSelection', {
|
|
@@ -28,8 +28,8 @@ import Grid from '@commercetools-uikit/grid';
|
|
|
28
28
|
import RadioInput from '@commercetools-uikit/radio-input';
|
|
29
29
|
import AccessibleHidden from '@commercetools-uikit/accessible-hidden';
|
|
30
30
|
import { designTokens } from '@commercetools-uikit/design-system';
|
|
31
|
-
import { S as SettingsContainer, C as ColumnSettingsManager } from './column-settings-manager-
|
|
32
|
-
export { C as ColumnSettingsManager } from './column-settings-manager-
|
|
31
|
+
import { S as SettingsContainer, C as ColumnSettingsManager } from './column-settings-manager-b4e2fd60.esm.js';
|
|
32
|
+
export { C as ColumnSettingsManager } from './column-settings-manager-b4e2fd60.esm.js';
|
|
33
33
|
export { useRowSelection, useSorting } from '@commercetools-uikit/hooks';
|
|
34
34
|
export { D as DataTableManagerProvider, u as useDataTableManagerContext } from './data-table-manager-provider-32eb58dd.esm.js';
|
|
35
35
|
import '@babel/runtime-corejs3/core-js-stable/promise';
|
|
@@ -58,44 +58,60 @@ const DISPLAY_SETTINGS = 'displaySettings';
|
|
|
58
58
|
|
|
59
59
|
var messages$2 = defineMessages({
|
|
60
60
|
title: {
|
|
61
|
-
id:
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
id: "UIKit.DataTableManager.DensityManager.title",
|
|
62
|
+
defaultMessage: [{
|
|
63
|
+
"type": 0,
|
|
64
|
+
"value": "Display settings"
|
|
65
|
+
}]
|
|
64
66
|
},
|
|
65
67
|
textWrappingSubtitle: {
|
|
66
|
-
id:
|
|
67
|
-
|
|
68
|
-
|
|
68
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingSubtitle",
|
|
69
|
+
defaultMessage: [{
|
|
70
|
+
"type": 0,
|
|
71
|
+
"value": "Text wrapping"
|
|
72
|
+
}]
|
|
69
73
|
},
|
|
70
74
|
densityDisplaySubtitle: {
|
|
71
|
-
id:
|
|
72
|
-
|
|
73
|
-
|
|
75
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplaySubtitle",
|
|
76
|
+
defaultMessage: [{
|
|
77
|
+
"type": 0,
|
|
78
|
+
"value": "Density display"
|
|
79
|
+
}]
|
|
74
80
|
},
|
|
75
81
|
textWrappingAllWrapVisibleOption: {
|
|
76
|
-
id:
|
|
77
|
-
|
|
78
|
-
|
|
82
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingAllWrapVisibleOption",
|
|
83
|
+
defaultMessage: [{
|
|
84
|
+
"type": 0,
|
|
85
|
+
"value": "Make all wrapped texts visible"
|
|
86
|
+
}]
|
|
79
87
|
},
|
|
80
88
|
textWrappingShowHideOnDemandOption: {
|
|
81
|
-
id:
|
|
82
|
-
|
|
83
|
-
|
|
89
|
+
id: "UIKit.DataTableManager.DensityManager.textWrappingShowHideOnDemandOption",
|
|
90
|
+
defaultMessage: [{
|
|
91
|
+
"type": 0,
|
|
92
|
+
"value": "Show / hide texts by row on demand"
|
|
93
|
+
}]
|
|
84
94
|
},
|
|
85
95
|
densityDisplayComfortableOption: {
|
|
86
|
-
id:
|
|
87
|
-
|
|
88
|
-
|
|
96
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplayComfortableOption",
|
|
97
|
+
defaultMessage: [{
|
|
98
|
+
"type": 0,
|
|
99
|
+
"value": "Comfortable"
|
|
100
|
+
}]
|
|
89
101
|
},
|
|
90
102
|
densityDisplayCompactOption: {
|
|
91
|
-
id:
|
|
92
|
-
|
|
93
|
-
|
|
103
|
+
id: "UIKit.DataTableManager.DensityManager.densityDisplayCompactOption",
|
|
104
|
+
defaultMessage: [{
|
|
105
|
+
"type": 0,
|
|
106
|
+
"value": "Compact"
|
|
107
|
+
}]
|
|
94
108
|
},
|
|
95
109
|
closeButtonLabel: {
|
|
96
|
-
id:
|
|
97
|
-
|
|
98
|
-
|
|
110
|
+
id: "UIKit.DataTableManager.DensityManager.closeButtonLabel",
|
|
111
|
+
defaultMessage: [{
|
|
112
|
+
"type": 0,
|
|
113
|
+
"value": "Close"
|
|
114
|
+
}]
|
|
99
115
|
}
|
|
100
116
|
});
|
|
101
117
|
|
|
@@ -188,9 +204,11 @@ var DisplaySettingsManager = DensityManager;
|
|
|
188
204
|
|
|
189
205
|
var messages$1 = defineMessages({
|
|
190
206
|
closeButtonLabel: {
|
|
191
|
-
id:
|
|
192
|
-
|
|
193
|
-
|
|
207
|
+
id: "UIKit.DataTableManager.CustomSettingsManager.closeButtonLabel",
|
|
208
|
+
defaultMessage: [{
|
|
209
|
+
"type": 0,
|
|
210
|
+
"value": "Close"
|
|
211
|
+
}]
|
|
194
212
|
}
|
|
195
213
|
});
|
|
196
214
|
|
|
@@ -210,19 +228,25 @@ var CustomSettingsManager$1 = CustomSettingsManager;
|
|
|
210
228
|
|
|
211
229
|
var messages = defineMessages({
|
|
212
230
|
placeholder: {
|
|
213
|
-
id:
|
|
214
|
-
|
|
215
|
-
|
|
231
|
+
id: "UIKit.DataTableManager.TableSettings.placeholder",
|
|
232
|
+
defaultMessage: [{
|
|
233
|
+
"type": 0,
|
|
234
|
+
"value": "Table settings"
|
|
235
|
+
}]
|
|
216
236
|
},
|
|
217
237
|
displaySettingsOption: {
|
|
218
|
-
id:
|
|
219
|
-
|
|
220
|
-
|
|
238
|
+
id: "UIKit.DataTableManager.TableSettings.displaySettingsOption",
|
|
239
|
+
defaultMessage: [{
|
|
240
|
+
"type": 0,
|
|
241
|
+
"value": "Display settings"
|
|
242
|
+
}]
|
|
221
243
|
},
|
|
222
244
|
columnManagerOption: {
|
|
223
|
-
id:
|
|
224
|
-
|
|
225
|
-
|
|
245
|
+
id: "UIKit.DataTableManager.TableSettings.columnManagerOption",
|
|
246
|
+
defaultMessage: [{
|
|
247
|
+
"type": 0,
|
|
248
|
+
"value": "Column manager"
|
|
249
|
+
}]
|
|
226
250
|
}
|
|
227
251
|
});
|
|
228
252
|
|
|
@@ -458,6 +482,6 @@ DataTableManager.displayName = 'DataTableManager';
|
|
|
458
482
|
var DataTableManager$1 = DataTableManager;
|
|
459
483
|
|
|
460
484
|
// NOTE: This string will be replaced on build time with the package version.
|
|
461
|
-
var version = "20.3.
|
|
485
|
+
var version = "20.3.1";
|
|
462
486
|
|
|
463
487
|
export { UPDATE_ACTIONS, DataTableManager$1 as default, version };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/data-table-manager",
|
|
3
3
|
"description": "This component enhances the DataTable component and additionally provides a UI and state management to handle configuration of the table such as column manager.",
|
|
4
|
-
"version": "20.3.
|
|
4
|
+
"version": "20.3.1",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -28,34 +28,34 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/runtime": "^7.20.13",
|
|
30
30
|
"@babel/runtime-corejs3": "^7.20.13",
|
|
31
|
-
"@commercetools-uikit/accessible-button": "20.3.
|
|
32
|
-
"@commercetools-uikit/accessible-hidden": "20.3.
|
|
33
|
-
"@commercetools-uikit/async-select-input": "20.3.
|
|
34
|
-
"@commercetools-uikit/card": "20.3.
|
|
35
|
-
"@commercetools-uikit/collapsible-motion": "20.3.
|
|
36
|
-
"@commercetools-uikit/design-system": "20.3.
|
|
37
|
-
"@commercetools-uikit/dropdown-menu": "20.3.
|
|
38
|
-
"@commercetools-uikit/field-label": "20.3.
|
|
39
|
-
"@commercetools-uikit/grid": "20.3.
|
|
40
|
-
"@commercetools-uikit/hooks": "20.3.
|
|
41
|
-
"@commercetools-uikit/icon-button": "20.3.
|
|
42
|
-
"@commercetools-uikit/icons": "20.3.
|
|
43
|
-
"@commercetools-uikit/primary-button": "20.3.
|
|
44
|
-
"@commercetools-uikit/radio-input": "20.3.
|
|
45
|
-
"@commercetools-uikit/secondary-button": "20.3.
|
|
46
|
-
"@commercetools-uikit/secondary-icon-button": "20.3.
|
|
47
|
-
"@commercetools-uikit/select-input": "20.3.
|
|
48
|
-
"@commercetools-uikit/spacings": "20.3.
|
|
49
|
-
"@commercetools-uikit/tag": "20.3.
|
|
50
|
-
"@commercetools-uikit/text": "20.3.
|
|
51
|
-
"@commercetools-uikit/tooltip": "20.3.
|
|
52
|
-
"@commercetools-uikit/utils": "20.3.
|
|
31
|
+
"@commercetools-uikit/accessible-button": "20.3.1",
|
|
32
|
+
"@commercetools-uikit/accessible-hidden": "20.3.1",
|
|
33
|
+
"@commercetools-uikit/async-select-input": "20.3.1",
|
|
34
|
+
"@commercetools-uikit/card": "20.3.1",
|
|
35
|
+
"@commercetools-uikit/collapsible-motion": "20.3.1",
|
|
36
|
+
"@commercetools-uikit/design-system": "20.3.1",
|
|
37
|
+
"@commercetools-uikit/dropdown-menu": "20.3.1",
|
|
38
|
+
"@commercetools-uikit/field-label": "20.3.1",
|
|
39
|
+
"@commercetools-uikit/grid": "20.3.1",
|
|
40
|
+
"@commercetools-uikit/hooks": "20.3.1",
|
|
41
|
+
"@commercetools-uikit/icon-button": "20.3.1",
|
|
42
|
+
"@commercetools-uikit/icons": "20.3.1",
|
|
43
|
+
"@commercetools-uikit/primary-button": "20.3.1",
|
|
44
|
+
"@commercetools-uikit/radio-input": "20.3.1",
|
|
45
|
+
"@commercetools-uikit/secondary-button": "20.3.1",
|
|
46
|
+
"@commercetools-uikit/secondary-icon-button": "20.3.1",
|
|
47
|
+
"@commercetools-uikit/select-input": "20.3.1",
|
|
48
|
+
"@commercetools-uikit/spacings": "20.3.1",
|
|
49
|
+
"@commercetools-uikit/tag": "20.3.1",
|
|
50
|
+
"@commercetools-uikit/text": "20.3.1",
|
|
51
|
+
"@commercetools-uikit/tooltip": "20.3.1",
|
|
52
|
+
"@commercetools-uikit/utils": "20.3.1",
|
|
53
53
|
"@emotion/react": "^11.10.5",
|
|
54
54
|
"@emotion/styled": "^11.10.5",
|
|
55
55
|
"@hello-pangea/dnd": "^18.0.0",
|
|
56
56
|
"@types/debounce-promise": "^3.1.6",
|
|
57
57
|
"debounce-promise": "^3.1.2",
|
|
58
|
-
"lodash": "4.17.
|
|
58
|
+
"lodash": "4.17.23"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"formik": "^2.4.6",
|