akeyless-client-commons 1.1.62 → 1.1.64

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.
@@ -376,10 +376,12 @@ declare const Version: ({ version, className }: {
376
376
  version: string;
377
377
  className?: string;
378
378
  }) => react_jsx_runtime.JSX.Element;
379
- declare const LeftToRightDiv: ({ direction, className, children }: {
379
+ declare const LeftToRightDiv: ({ direction, className, children, props, title, }: {
380
380
  direction: Direction;
381
381
  children: ReactNode;
382
382
  className?: string;
383
+ props: ComponentProps<"div">;
384
+ title?: string;
383
385
  }) => react_jsx_runtime.JSX.Element;
384
386
 
385
387
  interface GoogleSvgProps {
@@ -376,10 +376,12 @@ declare const Version: ({ version, className }: {
376
376
  version: string;
377
377
  className?: string;
378
378
  }) => react_jsx_runtime.JSX.Element;
379
- declare const LeftToRightDiv: ({ direction, className, children }: {
379
+ declare const LeftToRightDiv: ({ direction, className, children, props, title, }: {
380
380
  direction: Direction;
381
381
  children: ReactNode;
382
382
  className?: string;
383
+ props: ComponentProps<"div">;
384
+ title?: string;
383
385
  }) => react_jsx_runtime.JSX.Element;
384
386
 
385
387
  interface GoogleSvgProps {
@@ -1703,14 +1703,16 @@ var Version = function(param) {
1703
1703
  });
1704
1704
  };
1705
1705
  var LeftToRightDiv = function(param) {
1706
- var direction = param.direction, className = param.className, children = param.children;
1707
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", {
1706
+ var direction = param.direction, className = param.className, children = param.children, props = param.props, title = param.title;
1707
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", _object_spread_props(_object_spread({
1708
+ title: title,
1708
1709
  style: {
1709
1710
  direction: "ltr"
1710
1711
  },
1711
- className: cn("_ellipsis ".concat(direction === "rtl" ? "text-right" : "text-left"), className),
1712
+ className: cn("_ellipsis ".concat(direction === "rtl" ? "text-right" : "text-left"), className)
1713
+ }, props), {
1712
1714
  children: children
1713
- });
1715
+ }));
1714
1716
  };
1715
1717
  // src/components/utils/LoginWithGoogle.tsx
1716
1718
  var import_react4 = require("react");
@@ -5471,10 +5473,11 @@ var Filter = (0, import_react11.memo)(function(param) {
5471
5473
  children: filterLabel + " " + filterableColumn.header
5472
5474
  }),
5473
5475
  /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", {
5476
+ className: "flex gap-1",
5474
5477
  children: [
5475
5478
  ((_filters_filterableColumn_dataKey = filters[filterableColumn.dataKey]) === null || _filters_filterableColumn_dataKey === void 0 ? void 0 : _filters_filterableColumn_dataKey.length) > 0 && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", {
5476
5479
  onClick: clearFilter,
5477
- children: slashFilterSvg(false, "#000")
5480
+ children: slashFilterSvg(false, "gray")
5478
5481
  }),
5479
5482
  /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("button", {
5480
5483
  onClick: closeFilterWindow,
@@ -1481,14 +1481,16 @@ var Version = function(param) {
1481
1481
  });
1482
1482
  };
1483
1483
  var LeftToRightDiv = function(param) {
1484
- var direction = param.direction, className = param.className, children = param.children;
1485
- return /* @__PURE__ */ jsx4("div", {
1484
+ var direction = param.direction, className = param.className, children = param.children, props = param.props, title = param.title;
1485
+ return /* @__PURE__ */ jsx4("div", _object_spread_props(_object_spread({
1486
+ title: title,
1486
1487
  style: {
1487
1488
  direction: "ltr"
1488
1489
  },
1489
- className: cn("_ellipsis ".concat(direction === "rtl" ? "text-right" : "text-left"), className),
1490
+ className: cn("_ellipsis ".concat(direction === "rtl" ? "text-right" : "text-left"), className)
1491
+ }, props), {
1490
1492
  children: children
1491
- });
1493
+ }));
1492
1494
  };
1493
1495
  // src/components/utils/LoginWithGoogle.tsx
1494
1496
  import { useState as useState2 } from "react";
@@ -5249,10 +5251,11 @@ var Filter = memo(function(param) {
5249
5251
  children: filterLabel + " " + filterableColumn.header
5250
5252
  }),
5251
5253
  /* @__PURE__ */ jsxs12("div", {
5254
+ className: "flex gap-1",
5252
5255
  children: [
5253
5256
  ((_filters_filterableColumn_dataKey = filters[filterableColumn.dataKey]) === null || _filters_filterableColumn_dataKey === void 0 ? void 0 : _filters_filterableColumn_dataKey.length) > 0 && /* @__PURE__ */ jsx18("button", {
5254
5257
  onClick: clearFilter,
5255
- children: slashFilterSvg(false, "#000")
5258
+ children: slashFilterSvg(false, "gray")
5256
5259
  }),
5257
5260
  /* @__PURE__ */ jsx18("button", {
5258
5261
  onClick: closeFilterWindow,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.1.62",
3
+ "version": "1.1.64",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",