elab_components 0.9.42 → 0.9.52

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.
@@ -1,5 +1,5 @@
1
1
  declare const props: () => {
2
- activeRangeEnd: "start" | "end";
2
+ activeRangeEnd: "end" | "start";
3
3
  allowReverse: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
4
4
  bottomView: "month" | "year" | "decade" | "century";
5
5
  defaultActiveView: "month" | "year" | "decade" | "century";
package/dist/index.esm.js CHANGED
@@ -32454,8 +32454,8 @@ function Filters(_a) {
32454
32454
  });
32455
32455
  }, themeColor: 'primary', key: index, type: "button" },
32456
32456
  React__default.createElement("span", { className: "button-content" },
32457
- (item === null || item === void 0 ? void 0 : item.functionName)
32458
- ? iconMapping[item.functionName]
32457
+ (item === null || item === void 0 ? void 0 : item.icon) || (item === null || item === void 0 ? void 0 : item.function)
32458
+ ? iconMapping[(item === null || item === void 0 ? void 0 : item.icon) || (item === null || item === void 0 ? void 0 : item.function)]
32459
32459
  : null,
32460
32460
  React__default.createElement("span", { className: "text" }, item.title)),
32461
32461
  ' ')))));
@@ -32965,7 +32965,7 @@ var OkGrid = function (_a) {
32965
32965
  (((_g = cellProps.dataItem) === null || _g === void 0 ? void 0 : _g.formulaOff) && cellProps.field === 'newSD') ||
32966
32966
  (((_h = cellProps.dataItem) === null || _h === void 0 ? void 0 : _h.formulaOff) && cellProps.field === 'newMean');
32967
32967
  return (React__default.createElement("td", __assign({}, cellProps.tdProps),
32968
- React__default.createElement(Input$2, { value: value, type: (_j = col === null || col === void 0 ? void 0 : col.type) !== null && _j !== void 0 ? _j : 'text', onChange: function (e) { return GridDataInputChange(e, cellProps); }, disabled: disabledCondition > 0 ? true : false })));
32968
+ React__default.createElement(Input$2, { value: value, type: (_j = col === null || col === void 0 ? void 0 : col.type) !== null && _j !== void 0 ? _j : 'text', onChange: function (e) { return GridDataInputChange(e, cellProps); }, disabled: disabledCondition > 0 ? true : false, min: col === null || col === void 0 ? void 0 : col.min, max: col === null || col === void 0 ? void 0 : col.max })));
32969
32969
  };
32970
32970
  var GridDataCellDatePicker = function (cellProps, col) {
32971
32971
  var _a, _b, _c, _d, _e, _f, _g, _h;
package/dist/index.js CHANGED
@@ -32482,8 +32482,8 @@ function Filters(_a) {
32482
32482
  });
32483
32483
  }, themeColor: 'primary', key: index, type: "button" },
32484
32484
  React__default["default"].createElement("span", { className: "button-content" },
32485
- (item === null || item === void 0 ? void 0 : item.functionName)
32486
- ? iconMapping[item.functionName]
32485
+ (item === null || item === void 0 ? void 0 : item.icon) || (item === null || item === void 0 ? void 0 : item.function)
32486
+ ? iconMapping[(item === null || item === void 0 ? void 0 : item.icon) || (item === null || item === void 0 ? void 0 : item.function)]
32487
32487
  : null,
32488
32488
  React__default["default"].createElement("span", { className: "text" }, item.title)),
32489
32489
  ' ')))));
@@ -32993,7 +32993,7 @@ var OkGrid = function (_a) {
32993
32993
  (((_g = cellProps.dataItem) === null || _g === void 0 ? void 0 : _g.formulaOff) && cellProps.field === 'newSD') ||
32994
32994
  (((_h = cellProps.dataItem) === null || _h === void 0 ? void 0 : _h.formulaOff) && cellProps.field === 'newMean');
32995
32995
  return (React__default["default"].createElement("td", __assign({}, cellProps.tdProps),
32996
- React__default["default"].createElement(kendoReactInputs.Input, { value: value, type: (_j = col === null || col === void 0 ? void 0 : col.type) !== null && _j !== void 0 ? _j : 'text', onChange: function (e) { return GridDataInputChange(e, cellProps); }, disabled: disabledCondition > 0 ? true : false })));
32996
+ React__default["default"].createElement(kendoReactInputs.Input, { value: value, type: (_j = col === null || col === void 0 ? void 0 : col.type) !== null && _j !== void 0 ? _j : 'text', onChange: function (e) { return GridDataInputChange(e, cellProps); }, disabled: disabledCondition > 0 ? true : false, min: col === null || col === void 0 ? void 0 : col.min, max: col === null || col === void 0 ? void 0 : col.max })));
32997
32997
  };
32998
32998
  var GridDataCellDatePicker = function (cellProps, col) {
32999
32999
  var _a, _b, _c, _d, _e, _f, _g, _h;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elab_components",
3
- "version": "0.9.42",
3
+ "version": "0.9.52",
4
4
  "private": false,
5
5
  "author": "Amar",
6
6
  "main": "dist/index.js",