linear-react-components-ui 0.4.76-beta.30 → 0.4.76-beta.33

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.
@@ -257,23 +257,5 @@ describe('Treeview', function () {
257
257
 
258
258
  expect(container.querySelector('ul')).toHaveStyle('background-color: #000');
259
259
  });
260
- it('should apply idsInLoading', function () {
261
- var _render13 = (0, _react.render)(treeviewRenderMock({
262
- idsInLoading: [1]
263
- })),
264
- container = _render13.container;
265
-
266
- var li = container.querySelector('li').firstChild;
267
- expect(li.firstChild).toHaveClass('spinnerloading');
268
- });
269
- it('should apply selectedNodeId', function () {
270
- var _render14 = (0, _react.render)(treeviewRenderMock({
271
- selectedNodeId: 1
272
- })),
273
- container = _render14.container;
274
-
275
- var filhosLi = container.querySelector('li').children;
276
- expect(filhosLi[1]).toHaveStyle('background-color: rgb(209, 209, 209)');
277
- });
278
260
  });
279
261
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linear-react-components-ui",
3
- "version": "0.4.76-beta.30",
3
+ "version": "0.4.76-beta.33",
4
4
  "description": "Linear Sistemas ReactJs Components",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -1,16 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
-
8
- var getCalendarDropdownStyle = function getCalendarDropdownStyle(_ref) {
9
- var topPosition = _ref.topPosition,
10
- leftPosition = _ref.leftPosition,
11
- width = _ref.width;
12
- return "top: ".concat(topPosition, "px;\n left: ").concat(leftPosition, "px;\n width:").concat(width, "px");
13
- };
14
-
15
- var _default = getCalendarDropdownStyle;
16
- exports["default"] = _default;