@clickhouse/click-ui 0.0.158 → 0.0.159

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.
@@ -9117,6 +9117,11 @@ const TextWrapper = styled.div.withConfig({
9117
9117
  }) => `
9118
9118
  gap: ${theme2.click.alert[$size].space.gap};
9119
9119
  padding: ${theme2.click.alert[$size].space.y} ${theme2.click.alert[$size].space.x};
9120
+ a {
9121
+ font: inherit;
9122
+ color: inherit;
9123
+ text-decoration: underline;
9124
+ }
9120
9125
  `);
9121
9126
  const Title$4 = styled.h6.withConfig({
9122
9127
  componentId: "sc-1wvczk0-4"
@@ -14907,13 +14912,13 @@ const FlyoutContent = styled($5d3850c4d0b4e6c7$export$b6d9565de1e068cf).withConf
14907
14912
  ${$strategy === "relative" ? `
14908
14913
  position: absolute !important;` : ""}
14909
14914
  overflow: hidden;
14910
- transform: translateX(calc(100% - 50px));
14915
+ transform: ${$align === "start" ? "translateX(calc(50px - 100%))" : "translateX(calc(100% - 50px))"};
14911
14916
  transition: 0.3s ease-in-out;
14912
14917
  &:hover,
14913
14918
  &.active,
14914
14919
  &:focus-within {
14915
14920
  transform: translateX(0);
14916
- left: auto;
14921
+ ${$align === "start" ? "right" : "left"}: auto;
14917
14922
  }
14918
14923
  }
14919
14924
  `);
@@ -9134,6 +9134,11 @@ var __publicField = (obj, key, value) => {
9134
9134
  }) => `
9135
9135
  gap: ${theme2.click.alert[$size].space.gap};
9136
9136
  padding: ${theme2.click.alert[$size].space.y} ${theme2.click.alert[$size].space.x};
9137
+ a {
9138
+ font: inherit;
9139
+ color: inherit;
9140
+ text-decoration: underline;
9141
+ }
9137
9142
  `);
9138
9143
  const Title$4 = styled.h6.withConfig({
9139
9144
  componentId: "sc-1wvczk0-4"
@@ -14924,13 +14929,13 @@ var __publicField = (obj, key, value) => {
14924
14929
  ${$strategy === "relative" ? `
14925
14930
  position: absolute !important;` : ""}
14926
14931
  overflow: hidden;
14927
- transform: translateX(calc(100% - 50px));
14932
+ transform: ${$align === "start" ? "translateX(calc(50px - 100%))" : "translateX(calc(100% - 50px))"};
14928
14933
  transition: 0.3s ease-in-out;
14929
14934
  &:hover,
14930
14935
  &.active,
14931
14936
  &:focus-within {
14932
14937
  transform: translateX(0);
14933
- left: auto;
14938
+ ${$align === "start" ? "right" : "left"}: auto;
14934
14939
  }
14935
14940
  }
14936
14941
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickhouse/click-ui",
3
- "version": "0.0.158",
3
+ "version": "0.0.159",
4
4
  "description": "Official ClickHouse design system react library",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",