@luscii-healthtech/web-ui 54.2.0 → 54.3.0

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.
@@ -3949,6 +3949,8 @@ const Divider = (props) => {
3949
3949
  return jsxRuntime.jsx(VerticalFlowDivider, Object.assign({}, props));
3950
3950
  case "horizontal-flow":
3951
3951
  return jsxRuntime.jsx(HorizontalFlowDivider, Object.assign({}, props));
3952
+ case "vertical":
3953
+ return jsxRuntime.jsx(VerticalDivider, Object.assign({}, props));
3952
3954
  default:
3953
3955
  return jsxRuntime.jsx(HrDivider, Object.assign({}, props));
3954
3956
  }
@@ -3969,6 +3971,21 @@ const HrDivider = (props) => {
3969
3971
  "ui:border-neutral-border-low-contrast": color === "low-contrast"
3970
3972
  }, className) });
3971
3973
  };
3974
+ const VerticalDivider = (props) => {
3975
+ const {
3976
+ className,
3977
+ color = "border",
3978
+ // Strip discriminant props so they don't land on the DOM element.
3979
+ version: _version,
3980
+ variant: _variant
3981
+ } = props, rest = __rest(props, ["className", "color", "version", "variant"]);
3982
+ return jsxRuntime.jsx("div", Object.assign({ role: "separator", "aria-orientation": "vertical", className: classNames__default.default("ui:self-stretch ui:w-0 ui:border-l ui:border-solid", {
3983
+ "ui:border-color-divider": color === "divider",
3984
+ "ui:border-color-border": color === "border",
3985
+ "ui:border-neutral-border-high-contrast": color === "high-contrast",
3986
+ "ui:border-neutral-border-low-contrast": color === "low-contrast"
3987
+ }, className) }, rest));
3988
+ };
3972
3989
  const VerticalFlowDivider = (props) => {
3973
3990
  return jsxRuntime.jsx(Stack, Object.assign({ width: "full", align: "center", role: "separator", pb: "xxxxs" }, props, { children: jsxRuntime.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 29, fill: "none", children: [jsxRuntime.jsx("path", { fill: "#94A3B8", d: "M7.293 28.707a1 1 0 0 0 1.414 0l6.364-6.364a1 1 0 0 0-1.414-1.414L8 26.586l-5.657-5.657A1 1 0 0 0 .93 22.343l6.364 6.364ZM7 0v28h2V0H7Z" }), jsxRuntime.jsx("circle", { cx: 8, cy: 3, r: 2.5, fill: "#CBD5E1", stroke: "#64748B" })] }) }));
3974
3991
  };