@carbon/ibm-products 1.19.0 → 1.20.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/css/components/Datagrid/styles/datagrid.css +20 -1
- package/css/components/Datagrid/styles/datagrid.css.map +1 -1
- package/css/components/Datagrid/styles/draggableElement.css +57 -0
- package/css/components/Datagrid/styles/draggableElement.css.map +1 -0
- package/css/components/Datagrid/styles/index.css +100 -1
- package/css/components/Datagrid/styles/index.css.map +1 -1
- package/css/index-full-carbon.css +108 -2
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +2 -2
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +241 -0
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +7 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +108 -2
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +2 -2
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +108 -2
- package/css/index.css.map +1 -1
- package/css/index.min.css +2 -2
- package/css/index.min.css.map +1 -1
- package/es/components/AddSelect/AddSelect.js +34 -3
- package/es/components/AddSelect/AddSelectList.js +33 -9
- package/es/components/AddSelect/AddSelectSidebar.js +16 -9
- package/es/components/ComboButton/ComboButton.js +3 -5
- package/es/components/CreateSidePanel/CreateSidePanel.js +4 -10
- package/es/components/Datagrid/Datagrid/DraggableElement.js +9 -12
- package/es/components/EditSidePanel/EditSidePanel.js +3 -9
- package/es/components/SidePanel/SidePanel.js +2 -2
- package/es/components/index.js +1 -1
- package/es/global/js/package-settings.js +1 -1
- package/lib/components/AddSelect/AddSelect.js +34 -3
- package/lib/components/AddSelect/AddSelectList.js +32 -9
- package/lib/components/AddSelect/AddSelectSidebar.js +16 -9
- package/lib/components/ComboButton/ComboButton.js +5 -8
- package/lib/components/CreateSidePanel/CreateSidePanel.js +3 -10
- package/lib/components/Datagrid/Datagrid/DraggableElement.js +11 -12
- package/lib/components/EditSidePanel/EditSidePanel.js +3 -10
- package/lib/components/SidePanel/SidePanel.js +2 -2
- package/lib/components/index.js +84 -0
- package/lib/global/js/package-settings.js +1 -1
- package/package.json +2 -2
- package/scss/components/ComboButton/_combo-button.scss +2 -1
- package/scss/components/Datagrid/_datagrid.scss +1 -10
- package/scss/components/Datagrid/styles/datagrid.scss +17 -1
- package/scss/components/Datagrid/styles/draggableElement.scss +58 -0
- package/scss/components/Datagrid/styles/index.scss +2 -1
- package/scss/components/_index-released-only.scss +1 -0
@@ -9,6 +9,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
});
|
10
10
|
exports.default = void 0;
|
11
11
|
|
12
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
13
|
+
|
12
14
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
13
15
|
|
14
16
|
var React = _interopRequireWildcard(require("react"));
|
@@ -21,6 +23,8 @@ var _reactDnd = require("react-dnd");
|
|
21
23
|
|
22
24
|
var _classnames = _interopRequireDefault(require("classnames"));
|
23
25
|
|
26
|
+
var _settings = require("../../../settings");
|
27
|
+
|
24
28
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
25
29
|
|
26
30
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
@@ -37,7 +41,8 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
37
41
|
var useEffect = React.useEffect,
|
38
42
|
useRef = React.useRef,
|
39
43
|
useState = React.useState;
|
40
|
-
var
|
44
|
+
var blockClass = "".concat(_settings.pkg.prefix, "--datagrid");
|
45
|
+
var DRAG_TYPE = "".concat(blockClass, "__shared-ui-draggable-element");
|
41
46
|
|
42
47
|
var DraggableElement = function DraggableElement(_ref) {
|
43
48
|
var id = _ref.id,
|
@@ -134,14 +139,10 @@ var DraggableElement = function DraggableElement(_ref) {
|
|
134
139
|
var content = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
135
140
|
className: (0, _classnames.default)({
|
136
141
|
disabled: disabled
|
137
|
-
},
|
142
|
+
}, "".concat(blockClass, "__draggable-handleStyle"))
|
138
143
|
}, /*#__PURE__*/React.createElement(_iconsReact.Draggable16, null)), children);
|
139
144
|
return /*#__PURE__*/React.createElement("li", {
|
140
|
-
className: (0, _classnames.default)({
|
141
|
-
'wkc-draggable-handleHolder-isOver': isOver && !disabled
|
142
|
-
}, {
|
143
|
-
'wkc-draggable-handleHolder--grabbed': isGrabbed
|
144
|
-
}, 'wkc-draggable-handleHolder'),
|
145
|
+
className: (0, _classnames.default)((0, _defineProperty2.default)({}, "".concat(blockClass, "__draggable-handleHolder-isOver"), isOver && !disabled), (0, _defineProperty2.default)({}, "".concat(blockClass, "__wkc-draggable-handleHolder--grabbed"), isGrabbed), "".concat(blockClass, "__draggable-handleHolder")),
|
145
146
|
ref: ref,
|
146
147
|
"aria-selected": isFocused,
|
147
148
|
role: "option",
|
@@ -169,17 +170,15 @@ var DraggableElement = function DraggableElement(_ref) {
|
|
169
170
|
setIsFocusedOnItem(e.currentTarget === e.target);
|
170
171
|
}
|
171
172
|
}, /*#__PURE__*/React.createElement("span", {
|
172
|
-
className: "
|
173
|
+
className: "".concat(blockClass, "__shared-ui--assistive-text")
|
173
174
|
}, ariaLabel), isDragging && !isOver ? /*#__PURE__*/React.createElement("div", {
|
174
175
|
ref: preview,
|
175
|
-
className: "
|
176
|
+
className: "${blockClass}__draggable-handleHolder-droppable"
|
176
177
|
}, content) : /*#__PURE__*/React.createElement("div", {
|
177
178
|
ref: drag,
|
178
179
|
"aria-hidden": isFocused && isFocusedOnItem // if focus on li, hide the children from aria
|
179
180
|
,
|
180
|
-
className: (0, _classnames.default)({
|
181
|
-
'wkc-draggable-handleStyle': !disabled
|
182
|
-
}, 'wkc-draggable-handleHolder-droppable')
|
181
|
+
className: (0, _classnames.default)((0, _defineProperty2.default)({}, "".concat(blockClass, "__draggable-handleStyle"), !disabled), ["".concat(blockClass, "__draggable-handleHolder-droppable")])
|
183
182
|
}, (!isOver || disabled) && content));
|
184
183
|
};
|
185
184
|
|
@@ -27,8 +27,6 @@ var _carbonComponentsReact = require("carbon-components-react");
|
|
27
27
|
|
28
28
|
var _SidePanel = require("../SidePanel");
|
29
29
|
|
30
|
-
var _ActionSet = require("../ActionSet");
|
31
|
-
|
32
30
|
require("../../global/js/utils/props-helper");
|
33
31
|
|
34
32
|
var _excluded = ["children", "className", "disableSubmit", "formTitle", "formDescription", "onRequestClose", "onRequestSubmit", "open", "placement", "primaryButtonText", "secondaryButtonText", "selectorPrimaryFocus", "selectorPageContent", "size", "slideIn", "subtitle", "title"];
|
@@ -39,7 +37,6 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
|
|
39
37
|
|
40
38
|
// The block part of our conventional BEM class names (blockClass__E--M).
|
41
39
|
var blockClass = "".concat(_settings.pkg.prefix, "--edit-side-panel");
|
42
|
-
var sidePanelBlockClass = "".concat(_settings.pkg.prefix, "--side-panel");
|
43
40
|
var componentName = 'EditSidePanel'; // NOTE: the component SCSS is not imported here: it is rolled up separately.
|
44
41
|
// Default values for props
|
45
42
|
|
@@ -86,7 +83,6 @@ var EditSidePanel = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref)
|
|
86
83
|
onClick: onRequestClose,
|
87
84
|
kind: 'secondary'
|
88
85
|
}];
|
89
|
-
var actionContainerClassNames = (0, _classnames.default)(["".concat(blockClass, "__actions-container"), "".concat(sidePanelBlockClass, "__actions-container")]);
|
90
86
|
return /*#__PURE__*/_react.default.createElement(_SidePanel.SidePanel, (0, _extends2.default)({}, rest, _objectSpread({
|
91
87
|
open: open,
|
92
88
|
ref: ref,
|
@@ -101,18 +97,15 @@ var EditSidePanel = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref)
|
|
101
97
|
animateTitle: false,
|
102
98
|
className: (0, _classnames.default)(blockClass, className),
|
103
99
|
size: size,
|
104
|
-
preventCloseOnClickOutside: true
|
100
|
+
preventCloseOnClickOutside: true,
|
101
|
+
actions: actions
|
105
102
|
}), formTitle && /*#__PURE__*/_react.default.createElement("h3", {
|
106
103
|
className: "".concat(blockClass, "__form-title-text ").concat(blockClass, "__content-text")
|
107
104
|
}, formTitle), formDescription && /*#__PURE__*/_react.default.createElement("p", {
|
108
105
|
className: "".concat(blockClass, "__form-description-text ").concat(blockClass, "__content-text")
|
109
106
|
}, formDescription), /*#__PURE__*/_react.default.createElement(_carbonComponentsReact.Form, {
|
110
107
|
className: "".concat(blockClass, "__form")
|
111
|
-
}, children
|
112
|
-
actions: actions,
|
113
|
-
className: actionContainerClassNames,
|
114
|
-
size: size
|
115
|
-
})));
|
108
|
+
}, children));
|
116
109
|
}); // Return a placeholder if not released and not enabled by feature flag
|
117
110
|
|
118
111
|
|
@@ -73,7 +73,7 @@ var defaults = {
|
|
73
73
|
*/
|
74
74
|
|
75
75
|
var SidePanel = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
|
76
|
-
var _ref4, _cx4;
|
76
|
+
var _window, _ref4, _cx4;
|
77
77
|
|
78
78
|
var actionToolbarButtons = _ref.actionToolbarButtons,
|
79
79
|
actions = _ref.actions,
|
@@ -131,7 +131,7 @@ var SidePanel = /*#__PURE__*/_react.default.forwardRef(function (_ref, ref) {
|
|
131
131
|
size: size,
|
132
132
|
open: open
|
133
133
|
});
|
134
|
-
var reducedMotion = window && window.matchMedia ? window.matchMedia('(prefers-reduced-motion: reduce)') : {
|
134
|
+
var reducedMotion = typeof window !== 'undefined' && (_window = window) !== null && _window !== void 0 && _window.matchMedia ? window.matchMedia('(prefers-reduced-motion: reduce)') : {
|
135
135
|
matches: true
|
136
136
|
}; // scroll panel to top going between steps
|
137
137
|
|
package/lib/components/index.js
CHANGED
@@ -303,6 +303,90 @@ Object.defineProperty(exports, "WebTerminalContentWrapper", {
|
|
303
303
|
return _WebTerminal.WebTerminalContentWrapper;
|
304
304
|
}
|
305
305
|
});
|
306
|
+
Object.defineProperty(exports, "useActionsColumn", {
|
307
|
+
enumerable: true,
|
308
|
+
get: function get() {
|
309
|
+
return _Datagrid.useActionsColumn;
|
310
|
+
}
|
311
|
+
});
|
312
|
+
Object.defineProperty(exports, "useColumnRightAlign", {
|
313
|
+
enumerable: true,
|
314
|
+
get: function get() {
|
315
|
+
return _Datagrid.useColumnRightAlign;
|
316
|
+
}
|
317
|
+
});
|
318
|
+
Object.defineProperty(exports, "useCustomizeColumns", {
|
319
|
+
enumerable: true,
|
320
|
+
get: function get() {
|
321
|
+
return _Datagrid.useCustomizeColumns;
|
322
|
+
}
|
323
|
+
});
|
324
|
+
Object.defineProperty(exports, "useDatagrid", {
|
325
|
+
enumerable: true,
|
326
|
+
get: function get() {
|
327
|
+
return _Datagrid.useDatagrid;
|
328
|
+
}
|
329
|
+
});
|
330
|
+
Object.defineProperty(exports, "useDisableSelectRows", {
|
331
|
+
enumerable: true,
|
332
|
+
get: function get() {
|
333
|
+
return _Datagrid.useDisableSelectRows;
|
334
|
+
}
|
335
|
+
});
|
336
|
+
Object.defineProperty(exports, "useExpandedRow", {
|
337
|
+
enumerable: true,
|
338
|
+
get: function get() {
|
339
|
+
return _Datagrid.useExpandedRow;
|
340
|
+
}
|
341
|
+
});
|
342
|
+
Object.defineProperty(exports, "useInfiniteScroll", {
|
343
|
+
enumerable: true,
|
344
|
+
get: function get() {
|
345
|
+
return _Datagrid.useInfiniteScroll;
|
346
|
+
}
|
347
|
+
});
|
348
|
+
Object.defineProperty(exports, "useNestedRows", {
|
349
|
+
enumerable: true,
|
350
|
+
get: function get() {
|
351
|
+
return _Datagrid.useNestedRows;
|
352
|
+
}
|
353
|
+
});
|
354
|
+
Object.defineProperty(exports, "useOnRowClick", {
|
355
|
+
enumerable: true,
|
356
|
+
get: function get() {
|
357
|
+
return _Datagrid.useOnRowClick;
|
358
|
+
}
|
359
|
+
});
|
360
|
+
Object.defineProperty(exports, "useRowIsMouseOver", {
|
361
|
+
enumerable: true,
|
362
|
+
get: function get() {
|
363
|
+
return _Datagrid.useRowIsMouseOver;
|
364
|
+
}
|
365
|
+
});
|
366
|
+
Object.defineProperty(exports, "useSelectAllWithToggle", {
|
367
|
+
enumerable: true,
|
368
|
+
get: function get() {
|
369
|
+
return _Datagrid.useSelectAllWithToggle;
|
370
|
+
}
|
371
|
+
});
|
372
|
+
Object.defineProperty(exports, "useSelectRows", {
|
373
|
+
enumerable: true,
|
374
|
+
get: function get() {
|
375
|
+
return _Datagrid.useSelectRows;
|
376
|
+
}
|
377
|
+
});
|
378
|
+
Object.defineProperty(exports, "useSortableColumns", {
|
379
|
+
enumerable: true,
|
380
|
+
get: function get() {
|
381
|
+
return _Datagrid.useSortableColumns;
|
382
|
+
}
|
383
|
+
});
|
384
|
+
Object.defineProperty(exports, "useStickyColumn", {
|
385
|
+
enumerable: true,
|
386
|
+
get: function get() {
|
387
|
+
return _Datagrid.useStickyColumn;
|
388
|
+
}
|
389
|
+
});
|
306
390
|
|
307
391
|
var _AboutModal = require("./AboutModal");
|
308
392
|
|
@@ -39,6 +39,7 @@ var defaults = {
|
|
39
39
|
HTTPError404: true,
|
40
40
|
HTTPErrorOther: true,
|
41
41
|
ImportModal: true,
|
42
|
+
InlineEdit: true,
|
42
43
|
NotificationsPanel: true,
|
43
44
|
NoDataEmptyState: true,
|
44
45
|
NoTagsEmptyState: true,
|
@@ -67,7 +68,6 @@ var defaults = {
|
|
67
68
|
WebTerminalContentWrapper: false,
|
68
69
|
EditSidePanel: false,
|
69
70
|
CancelableTextEdit: false,
|
70
|
-
InlineEdit: false,
|
71
71
|
DataSpreadsheet: false,
|
72
72
|
Datagrid: false
|
73
73
|
/* new component flags here - comment used by generate CLI */
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@carbon/ibm-products",
|
3
3
|
"description": "Carbon for IBM Products",
|
4
|
-
"version": "1.
|
4
|
+
"version": "1.20.1",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"main": "lib/index.js",
|
7
7
|
"module": "es/index.js",
|
@@ -93,5 +93,5 @@
|
|
93
93
|
"react": "^16.8.6 || ^17.0.1",
|
94
94
|
"react-dom": "^16.8.6 || ^17.0.1"
|
95
95
|
},
|
96
|
-
"gitHead": "
|
96
|
+
"gitHead": "66afdf73400e366e86129784abf42909d36ff058"
|
97
97
|
}
|
@@ -25,7 +25,8 @@
|
|
25
25
|
@include text-overflow;
|
26
26
|
}
|
27
27
|
|
28
|
-
.#{$security--prefix}--combo-
|
28
|
+
.#{$security--prefix}--combo-button
|
29
|
+
.#{$security--prefix}--combo-button__overflow-menu {
|
29
30
|
width: carbon--mini-units($count: 6);
|
30
31
|
height: auto;
|
31
32
|
border-left: carbon--rem($px: 1px) solid $ui-03;
|
@@ -9,16 +9,7 @@
|
|
9
9
|
@import '../../global/styles/project-settings';
|
10
10
|
@import '../../global/styles/mixins';
|
11
11
|
|
12
|
-
@import './styles/
|
13
|
-
@import './styles/useNestedRows';
|
14
|
-
//@import './styles/useNestedTable';
|
15
|
-
@import './styles/useSortableColumns';
|
16
|
-
@import './styles/useColumnRightAlign';
|
17
|
-
@import './styles/useStickyColumn';
|
18
|
-
@import './styles/useActionsColumn';
|
19
|
-
@import './styles/addons/CustomizeColumnsModal';
|
20
|
-
@import './styles/addons/RowSizeDropdown';
|
21
|
-
@import './styles/useSelectAllToggle';
|
12
|
+
@import './styles/index';
|
22
13
|
|
23
14
|
// Other Carbon settings.
|
24
15
|
// TODO: @import 'carbon-components/scss/globals/grid/grid'; if needed
|
@@ -134,7 +134,14 @@
|
|
134
134
|
}
|
135
135
|
}
|
136
136
|
}
|
137
|
+
.#{$block-class}__grid-container::-webkit-scrollbar-thumb {
|
138
|
+
background-color: $text-03;
|
139
|
+
}
|
137
140
|
|
141
|
+
.#{$block-class}__grid-container::-webkit-scrollbar {
|
142
|
+
width: 6px;
|
143
|
+
background-color: $ui-background;
|
144
|
+
}
|
138
145
|
.#{$block-class}__grid-container {
|
139
146
|
display: block;
|
140
147
|
overflow: auto;
|
@@ -150,7 +157,7 @@
|
|
150
157
|
|
151
158
|
.#{$block-class}__table-simple {
|
152
159
|
display: flex;
|
153
|
-
overflow:
|
160
|
+
overflow: auto;
|
154
161
|
max-height: 100%;
|
155
162
|
flex-direction: column;
|
156
163
|
}
|
@@ -302,6 +309,7 @@
|
|
302
309
|
|
303
310
|
.#{$block-class}__simple-body {
|
304
311
|
position: relative;
|
312
|
+
display: table;
|
305
313
|
overflow-x: hidden;
|
306
314
|
overflow-y: auto;
|
307
315
|
//makes thin scrollbar in chrome and firefox
|
@@ -322,6 +330,14 @@
|
|
322
330
|
min-width: 0 !important;
|
323
331
|
}
|
324
332
|
|
333
|
+
.#{$block-class}__table-simple::-webkit-scrollbar {
|
334
|
+
width: 6px;
|
335
|
+
background-color: $ui-background;
|
336
|
+
}
|
337
|
+
|
338
|
+
.#{$block-class}__table-simple::-webkit-scrollbar-thumb {
|
339
|
+
background-color: $text-03;
|
340
|
+
}
|
325
341
|
.#{$block-class}__sticky.#{$block-class}__simple-body {
|
326
342
|
overflow: auto;
|
327
343
|
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
/*
|
2
|
+
* Licensed Materials - Property of IBM
|
3
|
+
* 5724-Q36
|
4
|
+
* (c) Copyright IBM Corp. 2021
|
5
|
+
* US Government Users Restricted Rights - Use, duplication or disclosure
|
6
|
+
* restricted by GSA ADP Schedule Contract with IBM Corp.
|
7
|
+
*/
|
8
|
+
@import './variables';
|
9
|
+
|
10
|
+
.#{$block-class}__draggable-handleStyle {
|
11
|
+
display: flex;
|
12
|
+
align-items: center;
|
13
|
+
margin-right: $spacing-03;
|
14
|
+
cursor: grab;
|
15
|
+
}
|
16
|
+
|
17
|
+
.#{$block-class}__draggable-handleStyle.disabled {
|
18
|
+
pointer-events: none;
|
19
|
+
}
|
20
|
+
|
21
|
+
svg.#{$block-class}__draggable-handleStyle.disable {
|
22
|
+
fill: $disabled-02;
|
23
|
+
}
|
24
|
+
|
25
|
+
.#{$block-class}__draggable-handleHolder {
|
26
|
+
display: flex;
|
27
|
+
height: $spacing-07;
|
28
|
+
padding-left: $spacing-02;
|
29
|
+
margin-bottom: $spacing-03;
|
30
|
+
background: $ui-02;
|
31
|
+
&.#{$block-class}__draggable-handleHolder-isOver {
|
32
|
+
border: 2px dashed $focus;
|
33
|
+
background-color: $highlight;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.#{$block-class}__draggable-handleHolder-droppable {
|
38
|
+
display: flex;
|
39
|
+
width: 100%;
|
40
|
+
}
|
41
|
+
|
42
|
+
.#{$block-class}__draggable-handleHolder--grabbed {
|
43
|
+
background-color: $highlight;
|
44
|
+
color: $text-01;
|
45
|
+
}
|
46
|
+
|
47
|
+
.#{$block-class}__shared-ui--assistive-text {
|
48
|
+
// hide the assistive text. can not use display: none which will also hide from ARIA
|
49
|
+
position: absolute;
|
50
|
+
overflow: hidden;
|
51
|
+
width: 0;
|
52
|
+
height: 0;
|
53
|
+
padding: 0;
|
54
|
+
border: 0;
|
55
|
+
clip: rect(0 0 0 0);
|
56
|
+
text-transform: none;
|
57
|
+
white-space: nowrap;
|
58
|
+
}
|
@@ -7,7 +7,7 @@
|
|
7
7
|
*/
|
8
8
|
@import './datagrid';
|
9
9
|
@import './useNestedRows';
|
10
|
-
|
10
|
+
@import './useNestedTable';
|
11
11
|
@import './useSortableColumns';
|
12
12
|
@import './useColumnRightAlign';
|
13
13
|
@import './useStickyColumn';
|
@@ -15,3 +15,4 @@
|
|
15
15
|
@import './addons/CustomizeColumnsModal';
|
16
16
|
@import './addons/RowSizeDropdown';
|
17
17
|
@import './useSelectAllToggle';
|
18
|
+
@import './draggableElement';
|