akeyless-client-commons 1.1.6 → 1.1.7
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.
|
@@ -374,9 +374,9 @@ declare const Version: ({ version, className }: {
|
|
|
374
374
|
version: string;
|
|
375
375
|
className?: string;
|
|
376
376
|
}) => react_jsx_runtime.JSX.Element;
|
|
377
|
-
declare const LeftToRightDiv: ({ direction, className,
|
|
377
|
+
declare const LeftToRightDiv: ({ direction, className, children }: {
|
|
378
378
|
direction: Direction;
|
|
379
|
-
|
|
379
|
+
children: ReactNode;
|
|
380
380
|
className?: string;
|
|
381
381
|
}) => react_jsx_runtime.JSX.Element;
|
|
382
382
|
|
|
@@ -374,9 +374,9 @@ declare const Version: ({ version, className }: {
|
|
|
374
374
|
version: string;
|
|
375
375
|
className?: string;
|
|
376
376
|
}) => react_jsx_runtime.JSX.Element;
|
|
377
|
-
declare const LeftToRightDiv: ({ direction, className,
|
|
377
|
+
declare const LeftToRightDiv: ({ direction, className, children }: {
|
|
378
378
|
direction: Direction;
|
|
379
|
-
|
|
379
|
+
children: ReactNode;
|
|
380
380
|
className?: string;
|
|
381
381
|
}) => react_jsx_runtime.JSX.Element;
|
|
382
382
|
|
package/dist/components/index.js
CHANGED
|
@@ -1339,13 +1339,13 @@ var Version = function(param) {
|
|
|
1339
1339
|
});
|
|
1340
1340
|
};
|
|
1341
1341
|
var LeftToRightDiv = function(param) {
|
|
1342
|
-
var direction = param.direction, className = param.className,
|
|
1342
|
+
var direction = param.direction, className = param.className, children = param.children;
|
|
1343
1343
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", {
|
|
1344
1344
|
style: {
|
|
1345
1345
|
direction: "ltr"
|
|
1346
1346
|
},
|
|
1347
1347
|
className: cn("_ellipsis ".concat(direction === "rtl" ? "text-right" : "text-left"), className),
|
|
1348
|
-
children:
|
|
1348
|
+
children: children
|
|
1349
1349
|
});
|
|
1350
1350
|
};
|
|
1351
1351
|
// src/components/utils/LoginWithGoogle.tsx
|
|
@@ -1117,13 +1117,13 @@ var Version = function(param) {
|
|
|
1117
1117
|
});
|
|
1118
1118
|
};
|
|
1119
1119
|
var LeftToRightDiv = function(param) {
|
|
1120
|
-
var direction = param.direction, className = param.className,
|
|
1120
|
+
var direction = param.direction, className = param.className, children = param.children;
|
|
1121
1121
|
return /* @__PURE__ */ jsx4("div", {
|
|
1122
1122
|
style: {
|
|
1123
1123
|
direction: "ltr"
|
|
1124
1124
|
},
|
|
1125
1125
|
className: cn("_ellipsis ".concat(direction === "rtl" ? "text-right" : "text-left"), className),
|
|
1126
|
-
children:
|
|
1126
|
+
children: children
|
|
1127
1127
|
});
|
|
1128
1128
|
};
|
|
1129
1129
|
// src/components/utils/LoginWithGoogle.tsx
|