akeyless-client-commons 1.1.63 → 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 {
|
package/dist/components/index.js
CHANGED
|
@@ -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");
|
|
@@ -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";
|