akeyless-client-commons 1.0.148 → 1.0.149

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.
@@ -489,8 +489,9 @@ interface TimesUIProps {
489
489
  tz?: string;
490
490
  direction?: Direction;
491
491
  className?: string;
492
+ defaultReturnedValue?: string;
492
493
  }
493
- declare const TimesUI: ({ timestamp, format, tz, direction, fromFormat, className }: TimesUIProps) => react_jsx_runtime.JSX.Element;
494
+ declare const TimesUI: ({ timestamp, format, tz, direction, fromFormat, className, defaultReturnedValue }: TimesUIProps) => react_jsx_runtime.JSX.Element;
494
495
  interface TableButtonProps {
495
496
  onClick: () => void;
496
497
  title?: string;
@@ -489,8 +489,9 @@ interface TimesUIProps {
489
489
  tz?: string;
490
490
  direction?: Direction;
491
491
  className?: string;
492
+ defaultReturnedValue?: string;
492
493
  }
493
- declare const TimesUI: ({ timestamp, format, tz, direction, fromFormat, className }: TimesUIProps) => react_jsx_runtime.JSX.Element;
494
+ declare const TimesUI: ({ timestamp, format, tz, direction, fromFormat, className, defaultReturnedValue }: TimesUIProps) => react_jsx_runtime.JSX.Element;
494
495
  interface TableButtonProps {
495
496
  onClick: () => void;
496
497
  title?: string;
@@ -5319,11 +5319,12 @@ var Summary = (0, import_react11.memo)(function() {
5319
5319
  });
5320
5320
  }, renderOnce);
5321
5321
  var TimesUI = function(param) {
5322
- var timestamp = param.timestamp, format = param.format, tz = param.tz, direction = param.direction, fromFormat = param.fromFormat, _param_className = param.className, className = _param_className === void 0 ? "" : _param_className;
5322
+ var timestamp = param.timestamp, format = param.format, tz = param.tz, direction = param.direction, fromFormat = param.fromFormat, _param_className = param.className, className = _param_className === void 0 ? "" : _param_className, defaultReturnedValue = param.defaultReturnedValue;
5323
5323
  var time = timestamp_to_string(timestamp, {
5324
5324
  format: format,
5325
5325
  fromFormat: fromFormat,
5326
- tz: tz
5326
+ tz: tz,
5327
+ defaultReturnedValue: defaultReturnedValue
5327
5328
  });
5328
5329
  return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", {
5329
5330
  style: {
@@ -5106,11 +5106,12 @@ var Summary = memo(function() {
5106
5106
  });
5107
5107
  }, renderOnce);
5108
5108
  var TimesUI = function(param) {
5109
- var timestamp = param.timestamp, format = param.format, tz = param.tz, direction = param.direction, fromFormat = param.fromFormat, _param_className = param.className, className = _param_className === void 0 ? "" : _param_className;
5109
+ var timestamp = param.timestamp, format = param.format, tz = param.tz, direction = param.direction, fromFormat = param.fromFormat, _param_className = param.className, className = _param_className === void 0 ? "" : _param_className, defaultReturnedValue = param.defaultReturnedValue;
5110
5110
  var time = timestamp_to_string(timestamp, {
5111
5111
  format: format,
5112
5112
  fromFormat: fromFormat,
5113
- tz: tz
5113
+ tz: tz,
5114
+ defaultReturnedValue: defaultReturnedValue
5114
5115
  });
5115
5116
  return /* @__PURE__ */ jsx17("div", {
5116
5117
  style: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.148",
3
+ "version": "1.0.149",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",