@clickhouse/click-ui 0.0.152 → 0.0.154

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.
Files changed (28) hide show
  1. package/dist/click-ui.es.js +64 -55
  2. package/dist/click-ui.umd.js +64 -55
  3. package/dist/components/AutoComplete/OptionContext.d.ts +0 -1
  4. package/dist/components/AutoComplete/useOption.d.ts +2 -2
  5. package/dist/components/CardPrimary/CardPrimaryTopBadge.d.ts +1 -2
  6. package/dist/components/CardSecondary/CardSecondary.d.ts +4 -1
  7. package/dist/components/ContextMenu/ContextMenu.d.ts +0 -1
  8. package/dist/components/GenericMenu.d.ts +2 -3
  9. package/dist/components/Grid/StyledCell.d.ts +1 -1
  10. package/dist/components/Icon/IconCommon.d.ts +0 -1
  11. package/dist/components/Input/InputWrapper.d.ts +3 -3
  12. package/dist/components/Select/common/OptionContext.d.ts +0 -1
  13. package/dist/components/Select/common/SelectStyled.d.ts +2 -3
  14. package/dist/components/Select/common/useOption.d.ts +4 -4
  15. package/dist/components/SidebarNavigationItem/SidebarNavigationItem.d.ts +1 -1
  16. package/dist/components/SidebarNavigationTitle/SidebarNavigationTitle.d.ts +1 -1
  17. package/dist/components/Tabs/Tabs.d.ts +6 -7
  18. package/dist/components/commonElement.d.ts +5 -5
  19. package/dist/components/icons/Flags/GreatBritain.d.ts +1 -2
  20. package/dist/components/icons/Flags/index.d.ts +15 -15
  21. package/dist/components/icons/HorizontalLoading.d.ts +0 -1
  22. package/dist/components/icons/LoadingAnimated.d.ts +0 -1
  23. package/dist/styles/types.d.ts +3 -0
  24. package/dist/styles/variables.classic.json.d.ts +8 -8
  25. package/dist/styles/variables.dark.json.d.ts +21 -21
  26. package/dist/styles/variables.json.d.ts +11 -8
  27. package/dist/styles/variables.light.json.d.ts +7 -7
  28. package/package.json +5 -5
@@ -10114,9 +10114,11 @@ var __publicField = (obj, key, value) => {
10114
10114
  showLabelWithLoading = false,
10115
10115
  ...delegated
10116
10116
  }) => /* @__PURE__ */ jsxRuntimeExports.jsxs(StyledButton, { $styleType: type, $align: align, $fillWidth: fillWidth, disabled: disabled || loading, role: "button", ...delegated, children: [
10117
- iconLeft && /* @__PURE__ */ jsxRuntimeExports.jsx(ButtonIcon, { name: iconLeft, "aria-hidden": true, size: "sm" }),
10118
- label ?? children,
10119
- iconRight && /* @__PURE__ */ jsxRuntimeExports.jsx(ButtonIcon, { name: iconRight, "aria-hidden": true, size: "sm" }),
10117
+ !loading && /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
10118
+ iconLeft && /* @__PURE__ */ jsxRuntimeExports.jsx(ButtonIcon, { name: iconLeft, "aria-hidden": true, size: "sm" }),
10119
+ label ?? children,
10120
+ iconRight && /* @__PURE__ */ jsxRuntimeExports.jsx(ButtonIcon, { name: iconRight, "aria-hidden": true, size: "sm" })
10121
+ ] }),
10120
10122
  loading && /* @__PURE__ */ jsxRuntimeExports.jsxs(LoadingIconWrapper, { "data-testid": "click-ui-loading-icon-wrapper", children: [
10121
10123
  /* @__PURE__ */ jsxRuntimeExports.jsx(SvgImage, { name: "loading-animated", "data-testid": "click-ui-loading-icon", "aria-label": "loading" }),
10122
10124
  showLabelWithLoading ? label ?? children : ""
@@ -10124,7 +10126,7 @@ var __publicField = (obj, key, value) => {
10124
10126
  ] });
10125
10127
  const LoadingIconWrapper = styled.div.withConfig({
10126
10128
  componentId: "sc-1k4tz4c-0"
10127
- })(["position:absolute;background-color:inherit;top:0;left:0;bottom:0;right:0;display:flex;align-content:center;justify-content:center;align-items:center;gap:0.5rem;"]);
10129
+ })(["background-color:inherit;top:0;left:0;bottom:0;right:0;display:flex;align-content:center;justify-content:center;align-items:center;gap:0.5rem;"]);
10128
10130
  const StyledButton = styled(BaseButton).withConfig({
10129
10131
  componentId: "sc-1k4tz4c-1"
10130
10132
  })(["width:", ";color:", ";background-color:", ";border:", " solid ", ";font:", ";position:relative;display:flex;align-items:center;justify-content:", ";white-space:nowrap;&:hover{background-color:", ";border:", " solid ", ";transition:", ";font:", ";}&:active,&:focus{background-color:", ";border:1px solid ", ";font:", ";}&:disabled,&:disabled:hover,&:disabled:active{background-color:", ";color:", ";border:", " solid ", ";font:", ";}"], ({
@@ -10265,10 +10267,12 @@ var __publicField = (obj, key, value) => {
10265
10267
  }) => theme2.click.image.lg.size.width);
10266
10268
  const InfoLink = styled.a.withConfig({
10267
10269
  componentId: "sc-1drx130-4"
10268
- })(["display:flex;align-items:center;color:", ";text-decoration:none;"], ({
10270
+ })(["display:flex;align-items:center;color:", ";gap:", ";text-decoration:none;"], ({
10271
+ theme: theme2
10272
+ }) => theme2.click.card.secondary.color.link.default, ({
10269
10273
  theme: theme2
10270
- }) => theme2.click.card.secondary.color.link.default);
10271
- const ArrowContainer = styled(SvgImage).withConfig({
10274
+ }) => theme2.click.card.secondary.space.link.gap);
10275
+ const LinkIconContainer = styled(SvgImage).withConfig({
10272
10276
  componentId: "sc-1drx130-5"
10273
10277
  })(["color:", ";height:", ";width:", ";"], ({
10274
10278
  theme: theme2
@@ -10280,7 +10284,7 @@ var __publicField = (obj, key, value) => {
10280
10284
  const LinkText = styled(Text).withConfig({
10281
10285
  componentId: "sc-1drx130-6"
10282
10286
  })([""]);
10283
- const LinkArrow = styled(ArrowContainer).withConfig({
10287
+ const LinkIcon = styled(LinkIconContainer).withConfig({
10284
10288
  componentId: "sc-1drx130-7"
10285
10289
  })([""]);
10286
10290
  const Wrapper$a = styled.div.withConfig({
@@ -10300,7 +10304,7 @@ var __publicField = (obj, key, value) => {
10300
10304
  theme: theme2
10301
10305
  }) => $hasShadow ? theme2.shadow[1] : "none", ({
10302
10306
  theme: theme2
10303
- }) => theme2.click.card.secondary.color.background.hover, LinkText, LinkArrow, ({
10307
+ }) => theme2.click.card.secondary.color.background.hover, LinkText, LinkIcon, ({
10304
10308
  theme: theme2
10305
10309
  }) => theme2.click.card.secondary.color.link.hover, ({
10306
10310
  theme: theme2
@@ -10311,7 +10315,7 @@ var __publicField = (obj, key, value) => {
10311
10315
  cursor: not-allowed;
10312
10316
 
10313
10317
  ${LinkText},
10314
- ${LinkArrow} {
10318
+ ${LinkIcon} {
10315
10319
  color: ${theme2.click.card.secondary.color.link.disabled};
10316
10320
  }
10317
10321
  `);
@@ -10326,6 +10330,8 @@ var __publicField = (obj, key, value) => {
10326
10330
  description,
10327
10331
  infoUrl,
10328
10332
  infoText,
10333
+ infoIcon = "chevron-right",
10334
+ infoIconSize = "md",
10329
10335
  ...props
10330
10336
  }) => {
10331
10337
  return /* @__PURE__ */ jsxRuntimeExports.jsxs(Wrapper$a, { "aria-disabled": disabled, tabIndex: 0, $hasShadow: hasShadow, ...props, children: [
@@ -10339,7 +10345,7 @@ var __publicField = (obj, key, value) => {
10339
10345
  /* @__PURE__ */ jsxRuntimeExports.jsx(Content$3, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { color: "muted", children: description }) }),
10340
10346
  (infoUrl || infoText) && /* @__PURE__ */ jsxRuntimeExports.jsxs(InfoLink, { href: disabled ? void 0 : infoUrl, as: disabled || !infoUrl || infoUrl.length === 0 ? "div" : "a", children: [
10341
10347
  /* @__PURE__ */ jsxRuntimeExports.jsx(LinkText, { children: infoText }),
10342
- /* @__PURE__ */ jsxRuntimeExports.jsx(LinkArrow, { name: "chevron-right" })
10348
+ /* @__PURE__ */ jsxRuntimeExports.jsx(LinkIcon, { size: infoIconSize, name: infoIcon })
10343
10349
  ] })
10344
10350
  ] });
10345
10351
  };
@@ -41011,7 +41017,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41011
41017
  background: {
41012
41018
  "default": "#FFC029",
41013
41019
  hover: "lch(89.3 45.8 82.1)",
41014
- active: "lch(82.6 42.4 82.1)"
41020
+ active: "rgb(93.2% 79.3% 49.6%)"
41015
41021
  },
41016
41022
  text: {
41017
41023
  "default": "#151515"
@@ -41019,7 +41025,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41019
41025
  stroke: {
41020
41026
  "default": "#FFC029",
41021
41027
  hover: "lch(89.3 45.8 82.1)",
41022
- active: "lch(82.6 42.4 82.1)"
41028
+ active: "rgb(93.2% 79.3% 49.6%)"
41023
41029
  }
41024
41030
  },
41025
41031
  secondary: {
@@ -41031,7 +41037,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41031
41037
  stroke: {
41032
41038
  "default": "#e6e7e9",
41033
41039
  hover: "#e6e7e9",
41034
- active: "lch(83.8 2.3 258)"
41040
+ active: "rgb(81% 82.1% 83.6%)"
41035
41041
  },
41036
41042
  text: {
41037
41043
  "default": "#161517"
@@ -41105,12 +41111,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41105
41111
  background: {
41106
41112
  "default": "#FFC029",
41107
41113
  hover: "lch(89.3 45.8 82.1)",
41108
- active: "lch(78.5 40.3 82.1)"
41114
+ active: "lch(79.1 40.8 82.1)"
41109
41115
  },
41110
41116
  stroke: {
41111
41117
  "default": "rgba(0,0,0,0)",
41112
41118
  hover: "lch(89.3 45.8 82.1)",
41113
- active: "lch(78.5 40.3 82.1)"
41119
+ active: "lch(79.1 40.8 82.1)"
41114
41120
  },
41115
41121
  text: {
41116
41122
  "default": "#151515",
@@ -41185,13 +41191,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41185
41191
  main: {
41186
41192
  "default": "#FFC029",
41187
41193
  hover: "lch(81.7 41.9 82.1)",
41188
- active: "lch(75.6 38.8 82.1)",
41194
+ active: "lch(76.2 39.3 82.1)",
41189
41195
  disabled: "lch(81.3 0 0)"
41190
41196
  },
41191
41197
  action: {
41192
41198
  "default": "lch(77.8 74.1 79.3)",
41193
41199
  hover: "lch(77.6 39.8 82.1)",
41194
- active: "lch(69.2 35.5 82.1)",
41200
+ active: "lch(69.7 36 82.1)",
41195
41201
  disabled: "lch(74.4 0 0)"
41196
41202
  }
41197
41203
  },
@@ -41210,7 +41216,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41210
41216
  divide: {
41211
41217
  "default": "lch(68.1 64.8 79.3)",
41212
41218
  hover: "lch(71.5 36.7 82.1)",
41213
- active: "lch(66.1 33.9 82.1)",
41219
+ active: "lch(66.7 34.4 82.1)",
41214
41220
  disabled: "lch(71.1 0 0)"
41215
41221
  }
41216
41222
  },
@@ -41994,7 +42000,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
41994
42000
  success: "#004206",
41995
42001
  neutral: "#414141",
41996
42002
  danger: "#610000",
41997
- disabled: "lch(26.2 0 0)",
42003
+ disabled: "rgb(24.2% 24.2% 24.2%)",
41998
42004
  info: "#09255B",
41999
42005
  warning: "#4f2b00"
42000
42006
  }
@@ -42026,8 +42032,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42026
42032
  primary: {
42027
42033
  background: {
42028
42034
  "default": "#FAFF69",
42029
- hover: "lch(98.3 49.3 103)",
42030
- active: "lch(90.2 65.2 103)",
42035
+ hover: "rgb(98.6% 100% 58.8%)",
42036
+ active: "rgb(90.7% 92.5% 38.1%)",
42031
42037
  disabled: "#414141"
42032
42038
  },
42033
42039
  text: {
@@ -42039,7 +42045,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42039
42045
  stroke: {
42040
42046
  "default": "#FAFF69",
42041
42047
  hover: "#FAFF69",
42042
- active: "lch(82.5 59.7 103)",
42048
+ active: "lch(83.3 60.6 103)",
42043
42049
  disabled: "#414141"
42044
42050
  }
42045
42051
  },
@@ -42047,13 +42053,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42047
42053
  background: {
42048
42054
  "default": "#1F1F1C",
42049
42055
  hover: "#282828",
42050
- active: "lch(20.3 0 0)",
42056
+ active: "rgb(19.9% 19.9% 19.9%)",
42051
42057
  disabled: "#414141"
42052
42058
  },
42053
42059
  stroke: {
42054
42060
  "default": "#414141",
42055
42061
  hover: "#53575f",
42056
- active: "lch(23.3 2.63 306)",
42062
+ active: "rgb(22.9% 22.1% 23.6%)",
42057
42063
  disabled: "#414141"
42058
42064
  },
42059
42065
  text: {
@@ -42127,13 +42133,13 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42127
42133
  secondary: {
42128
42134
  background: {
42129
42135
  "default": "#FAFF69",
42130
- hover: "lch(98.3 49.3 103)",
42131
- active: "lch(85.7 61.9 103)"
42136
+ hover: "rgb(98.6% 100% 58.8%)",
42137
+ active: "lch(86.5 62.9 103)"
42132
42138
  },
42133
42139
  stroke: {
42134
42140
  "default": "rgba(0,0,0,0)",
42135
- hover: "lch(98.3 49.3 103)",
42136
- active: "lch(85.7 61.9 103)"
42141
+ hover: "rgb(98.6% 100% 58.8%)",
42142
+ active: "lch(86.5 62.9 103)"
42137
42143
  },
42138
42144
  text: {
42139
42145
  "default": "#1F1F1C",
@@ -42207,14 +42213,14 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42207
42213
  background: {
42208
42214
  main: {
42209
42215
  "default": "#FAFF69",
42210
- hover: "lch(89.9 45.1 103)",
42211
- active: "lch(82.5 59.7 103)",
42216
+ hover: "lch(89.7 46.7 104)",
42217
+ active: "lch(83.3 60.6 103)",
42212
42218
  disabled: "lch(25.2 0 0)"
42213
42219
  },
42214
42220
  action: {
42215
42221
  "default": "lch(87.8 63.4 103)",
42216
- hover: "lch(82.7 41.5 103)",
42217
- active: "lch(72.6 52.5 103)",
42222
+ hover: "lch(82.5 43 104)",
42223
+ active: "lch(73.3 53.3 103)",
42218
42224
  disabled: "lch(22.2 0 0)"
42219
42225
  }
42220
42226
  },
@@ -42232,8 +42238,8 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42232
42238
  },
42233
42239
  divide: {
42234
42240
  "default": "lch(85.4 61.7 103)",
42235
- hover: "lch(78.7 39.5 103)",
42236
- active: "lch(72.2 52.2 103)",
42241
+ hover: "lch(78.5 40.9 104)",
42242
+ active: "lch(72.9 53 103)",
42237
42243
  disabled: "lch(23.1 0 0)"
42238
42244
  }
42239
42245
  },
@@ -42241,20 +42247,20 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42241
42247
  divide: {
42242
42248
  "default": "lch(31.2 0 0)",
42243
42249
  hover: "lch(34.8 0 0)",
42244
- active: "lch(24.1 2.6 306)",
42250
+ active: "lch(24.8 2.56 307)",
42245
42251
  disabled: "lch(23.4 0 0)"
42246
42252
  },
42247
42253
  background: {
42248
42254
  main: {
42249
42255
  "default": "#1F1F1C",
42250
42256
  hover: "#282828",
42251
- active: "lch(20.3 0 0)",
42257
+ active: "rgb(19.9% 19.9% 19.9%)",
42252
42258
  disabled: "#414141"
42253
42259
  },
42254
42260
  action: {
42255
42261
  "default": "#282828",
42256
42262
  hover: "lch(18.2 0 0)",
42257
- active: "lch(21.1 0 0)",
42263
+ active: "lch(21.9 0 0)",
42258
42264
  disabled: "lch(23.9 0 0)"
42259
42265
  }
42260
42266
  },
@@ -42267,7 +42273,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42267
42273
  stroke: {
42268
42274
  "default": "#414141",
42269
42275
  hover: "#414141",
42270
- active: "lch(24.1 2.6 306)",
42276
+ active: "lch(24.8 2.56 307)",
42271
42277
  disabled: "rgba(0,0,0,0)"
42272
42278
  }
42273
42279
  }
@@ -42315,7 +42321,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
42315
42321
  stroke: {
42316
42322
  "default": "#323232",
42317
42323
  hover: "#53575f",
42318
- active: "lch(23.3 2.63 306)"
42324
+ active: "rgb(22.9% 22.1% 23.6%)"
42319
42325
  },
42320
42326
  text: {
42321
42327
  "default": "#ffffff",
@@ -43501,7 +43507,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43501
43507
  background: {
43502
43508
  "default": "#302e32",
43503
43509
  hover: "lch(29.5 4.18 267)",
43504
- active: "lch(6.42 1.33 305)",
43510
+ active: "rgb(7.98% 7.62% 8.34%)",
43505
43511
  disabled: "#dfdfdf"
43506
43512
  },
43507
43513
  text: {
@@ -43513,7 +43519,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43513
43519
  stroke: {
43514
43520
  "default": "#302e32",
43515
43521
  hover: "lch(29.5 4.18 267)",
43516
- active: "lch(6.42 1.33 305)",
43522
+ active: "rgb(7.98% 7.62% 8.34%)",
43517
43523
  disabled: "#dfdfdf"
43518
43524
  }
43519
43525
  },
@@ -43527,7 +43533,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43527
43533
  stroke: {
43528
43534
  "default": "#e6e7e9",
43529
43535
  hover: "#e6e7e9",
43530
- active: "lch(83.8 2.3 258)",
43536
+ active: "rgb(81% 82.1% 83.6%)",
43531
43537
  disabled: "#dfdfdf"
43532
43538
  },
43533
43539
  text: {
@@ -43602,12 +43608,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43602
43608
  background: {
43603
43609
  "default": "#302e32",
43604
43610
  hover: "lch(29.5 4.18 267)",
43605
- active: "lch(6.1 1.26 305)"
43611
+ active: "lch(5.9 1.18 305)"
43606
43612
  },
43607
43613
  stroke: {
43608
43614
  "default": "rgba(0,0,0,0)",
43609
43615
  hover: "lch(29.5 4.18 267)",
43610
- active: "lch(6.1 1.26 305)"
43616
+ active: "lch(5.9 1.18 305)"
43611
43617
  },
43612
43618
  text: {
43613
43619
  "default": "#ffffff",
@@ -43682,7 +43688,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43682
43688
  main: {
43683
43689
  "default": "#302e32",
43684
43690
  hover: "lch(27 3.82 267)",
43685
- active: "lch(5.87 1.22 305)",
43691
+ active: "lch(5.68 1.13 305)",
43686
43692
  disabled: "lch(81.3 0 0)"
43687
43693
  },
43688
43694
  action: {
@@ -43715,7 +43721,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
43715
43721
  divide: {
43716
43722
  "default": "lch(92 1.05 266)",
43717
43723
  hover: "lch(92.4 0.99 266)",
43718
- active: "lch(83.8 2.3 258)",
43724
+ active: "rgb(81% 82.1% 83.6%)",
43719
43725
  disabled: "lch(75.5 0 0)"
43720
43726
  },
43721
43727
  background: {
@@ -45194,7 +45200,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45194
45200
  background: {
45195
45201
  "default": "#302e32",
45196
45202
  hover: "lch(29.5 4.18 267)",
45197
- active: "lch(6.42 1.33 305)",
45203
+ active: "rgb(7.98% 7.62% 8.34%)",
45198
45204
  disabled: "#dfdfdf"
45199
45205
  },
45200
45206
  text: {
@@ -45206,7 +45212,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45206
45212
  stroke: {
45207
45213
  "default": "#302e32",
45208
45214
  hover: "lch(29.5 4.18 267)",
45209
- active: "lch(6.42 1.33 305)",
45215
+ active: "rgb(7.98% 7.62% 8.34%)",
45210
45216
  disabled: "#dfdfdf"
45211
45217
  }
45212
45218
  },
@@ -45220,7 +45226,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45220
45226
  stroke: {
45221
45227
  "default": "#e6e7e9",
45222
45228
  hover: "#e6e7e9",
45223
- active: "lch(83.8 2.3 258)",
45229
+ active: "rgb(81% 82.1% 83.6%)",
45224
45230
  disabled: "#dfdfdf"
45225
45231
  },
45226
45232
  text: {
@@ -45321,12 +45327,12 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45321
45327
  background: {
45322
45328
  "default": "#302e32",
45323
45329
  hover: "lch(29.5 4.18 267)",
45324
- active: "lch(6.1 1.26 305)"
45330
+ active: "lch(5.9 1.18 305)"
45325
45331
  },
45326
45332
  stroke: {
45327
45333
  "default": "rgba(0,0,0,0)",
45328
45334
  hover: "lch(29.5 4.18 267)",
45329
- active: "lch(6.1 1.26 305)"
45335
+ active: "lch(5.9 1.18 305)"
45330
45336
  },
45331
45337
  text: {
45332
45338
  "default": "#ffffff",
@@ -45428,7 +45434,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45428
45434
  main: {
45429
45435
  "default": "#302e32",
45430
45436
  hover: "lch(27 3.82 267)",
45431
- active: "lch(5.87 1.22 305)",
45437
+ active: "lch(5.68 1.13 305)",
45432
45438
  disabled: "lch(81.3 0 0)"
45433
45439
  },
45434
45440
  action: {
@@ -45461,7 +45467,7 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45461
45467
  divide: {
45462
45468
  "default": "lch(92 1.05 266)",
45463
45469
  hover: "lch(92.4 0.99 266)",
45464
- active: "lch(83.8 2.3 258)",
45470
+ active: "rgb(81% 82.1% 83.6%)",
45465
45471
  disabled: "lch(75.5 0 0)"
45466
45472
  },
45467
45473
  background: {
@@ -45617,7 +45623,10 @@ Defaulting to \`${$89eedd556c436f6a$var$DEFAULT_ORIENTATION}\`.`;
45617
45623
  secondary: {
45618
45624
  space: {
45619
45625
  all: "1rem",
45620
- gap: "1rem"
45626
+ gap: "1rem",
45627
+ link: {
45628
+ gap: "0.5rem"
45629
+ }
45621
45630
  },
45622
45631
  radii: {
45623
45632
  all: "0.25rem"
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type OptionContextProps = {
3
2
  search: string;
4
3
  highlighted?: string;
@@ -1,8 +1,8 @@
1
1
  export declare const useOption: () => {
2
2
  search: string;
3
- highlighted?: string | undefined;
3
+ highlighted?: string;
4
4
  updateHighlighted: (value: string) => void;
5
- isHidden: (value?: string | undefined) => boolean;
5
+ isHidden: (value?: string) => boolean;
6
6
  selectedValue: string;
7
7
  onSelect: (value: string) => void;
8
8
  };
@@ -1,5 +1,4 @@
1
- /// <reference types="react" />
2
1
  export declare const TopBadgeWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<any, never> & import('../Container/Container').ContainerProps<import('react').ElementType>, never>> & string & Omit<(<T extends import('react').ElementType = "div">(props: Omit<import('react').ComponentProps<T>, keyof T> & import('../Container/Container').ContainerProps<T>) => import('react').ReactNode), keyof import('react').Component<any, {}, any>>;
3
2
  export declare const CardPrimaryTopBadge: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('../Badge/Badge').DismissibleBadge | import('../Badge/Badge').NonDismissibleBadge, {
4
- $isSelected?: boolean | undefined;
3
+ $isSelected?: boolean;
5
4
  }>> & string & Omit<({ icon, iconDir, text, state, size, dismissible, onClose, ...props }: import('../Badge/Badge').BadgeProps) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
@@ -1,4 +1,5 @@
1
1
  import { IconName } from '..';
2
+ import { IconSize } from '../Icon/types';
2
3
  import { HTMLAttributes, ReactNode } from 'react';
3
4
 
4
5
  export type BadgeState = "default" | "success" | "neutral" | "danger" | "disabled" | "warning" | "info";
@@ -13,5 +14,7 @@ export interface CardSecondaryProps extends HTMLAttributes<HTMLDivElement> {
13
14
  description: ReactNode;
14
15
  infoUrl?: string;
15
16
  infoText?: string;
17
+ infoIcon?: IconName;
18
+ infoIconSize?: IconSize;
16
19
  }
17
- export declare const CardSecondary: ({ title, icon, iconUrl, badgeState, badgeText, hasShadow, disabled, description, infoUrl, infoText, ...props }: CardSecondaryProps) => import("react/jsx-runtime").JSX.Element;
20
+ export declare const CardSecondary: ({ title, icon, iconUrl, badgeState, badgeText, hasShadow, disabled, description, infoUrl, infoText, infoIcon, infoIconSize, ...props }: CardSecondaryProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,4 @@
1
1
  import { HorizontalDirection, IconName } from '..';
2
- /// <reference types="react" />
3
2
  import * as RightMenu from "@radix-ui/react-context-menu";
4
3
  export declare const ContextMenu: {
5
4
  (props: RightMenu.ContextMenuProps): import("react/jsx-runtime").JSX.Element;
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  export declare const GenericMenuPanel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
3
2
  $type: "popover" | "dropdown-menu" | "context-menu";
4
- $showArrow?: boolean | undefined;
3
+ $showArrow?: boolean;
5
4
  }>> & string;
6
5
  export declare const GenericPopoverMenuPanel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
7
6
  $type: "popover" | "hover-card";
8
- $showArrow?: boolean | undefined;
7
+ $showArrow?: boolean;
9
8
  }>> & string;
10
9
  export declare const Arrow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').SVGProps<SVGSVGElement>, never>> & string;
11
10
  export declare const GenericMenuItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -10,6 +10,6 @@ export declare const StyledCell: import('styled-components/dist/types').IStyledC
10
10
  $isFirstRow: boolean;
11
11
  $isFirstColumn: boolean;
12
12
  $height: number;
13
- $type?: "body" | "header" | undefined;
13
+ $type?: "body" | "header";
14
14
  $showBorder: boolean;
15
15
  }>> & string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const ICONS_MAP: {
3
2
  activity: (props: import('react').SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
4
3
  alarm: (props: import('react').SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
@@ -13,13 +13,13 @@ export interface WrapperProps {
13
13
  export declare const InputWrapper: ({ id, label, error, disabled, children, orientation, dir, resize, }: WrapperProps) => import("react/jsx-runtime").JSX.Element;
14
14
  export declare const InputElement: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>> & string;
15
15
  export declare const NumberInputElement: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<Omit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, never>, "ref"> & {
16
- ref?: ((instance: HTMLInputElement | null) => void) | import('react').RefObject<HTMLInputElement> | null | undefined;
16
+ ref?: ((instance: HTMLInputElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLInputElement> | null | undefined;
17
17
  }, {
18
- $hideControls?: boolean | undefined;
18
+ $hideControls?: boolean;
19
19
  }>> & string;
20
20
  export declare const TextAreaElement: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, never>> & string;
21
21
  export declare const TextAreaWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<WrapperProps, never>> & string & Omit<({ id, label, error, disabled, children, orientation, dir, resize, }: WrapperProps) => import("react/jsx-runtime").JSX.Element, keyof import('react').Component<any, {}, any>>;
22
22
  export declare const IconButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
23
- $show?: boolean | undefined;
23
+ $show?: boolean;
24
24
  }>> & string;
25
25
  export declare const IconWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').SVGProps<SVGSVGElement>, never>> & string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type OptionContextProps = {
3
2
  search: string;
4
3
  highlighted?: string;
@@ -1,13 +1,12 @@
1
- /// <reference types="react" />
2
1
  export declare const SelectPopoverRoot: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('@radix-ui/react-popover').PopoverProps, never>> & string & Omit<import('react').FC<import('@radix-ui/react-popover').PopoverProps>, keyof import('react').Component<any, {}, any>>;
3
2
  export declare const SelectValue: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
4
3
  export declare const StyledSelectTrigger: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<Omit<import('@radix-ui/react-popover').PopoverTriggerProps & import('react').RefAttributes<HTMLButtonElement>, "ref"> & {
5
- ref?: ((instance: HTMLButtonElement | null) => void) | import('react').RefObject<HTMLButtonElement> | null | undefined;
4
+ ref?: ((instance: HTMLButtonElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLButtonElement> | null | undefined;
6
5
  }, {
7
6
  $error: boolean;
8
7
  }>> & string & Omit<import('react').ForwardRefExoticComponent<import('@radix-ui/react-popover').PopoverTriggerProps & import('react').RefAttributes<HTMLButtonElement>>, keyof import('react').Component<any, {}, any>>;
9
8
  export declare const SelectPopoverContent: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<import('@radix-ui/react-popover').PopoverContentProps & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
10
- ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
9
+ ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
11
10
  }, never>> & string & Omit<import('react').ForwardRefExoticComponent<import('@radix-ui/react-popover').PopoverContentProps & import('react').RefAttributes<HTMLDivElement>>, keyof import('react').Component<any, {}, any>>;
12
11
  export declare const SearchBarContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
13
12
  $showSearch: boolean;
@@ -1,10 +1,10 @@
1
1
  export declare const useOption: () => {
2
2
  search: string;
3
- highlighted?: string | undefined;
3
+ highlighted?: string;
4
4
  updateHighlighted: (value: string) => void;
5
- isHidden: (value?: string | undefined) => boolean;
6
- selectedValues: string[];
5
+ isHidden: (value?: string) => boolean;
6
+ selectedValues: Array<string>;
7
7
  onSelect: (value: string) => void;
8
- showCheck?: boolean | undefined;
8
+ showCheck?: boolean;
9
9
  };
10
10
  export declare const useSearch: () => string;
@@ -12,7 +12,7 @@ export interface SidebarNavigationItemProps extends HTMLAttributes<HTMLDivElemen
12
12
  }
13
13
  declare const SidebarNavigationItem: import('react').ForwardRefExoticComponent<SidebarNavigationItemProps & import('react').RefAttributes<HTMLDivElement>>;
14
14
  export declare const SidebarItemWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
15
- $collapsible?: boolean | undefined;
15
+ $collapsible?: boolean;
16
16
  $level: number;
17
17
  $type: "main" | "sqlSidebar";
18
18
  }>> & string;
@@ -10,6 +10,6 @@ export interface SidebarNavigationTitleProps extends HTMLAttributes<HTMLButtonEl
10
10
  }
11
11
  export declare const SidebarNavigationTitle: ({ label, icon, iconDir, selected, type, ...props }: SidebarNavigationTitleProps) => import("react/jsx-runtime").JSX.Element;
12
12
  export declare const SidebarTitleWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
13
- $collapsible?: boolean | undefined;
13
+ $collapsible?: boolean;
14
14
  $type: "main" | "sqlSidebar";
15
15
  }>> & string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import * as RadixTabs from "@radix-ui/react-tabs";
3
2
  export interface TabsProps extends RadixTabs.TabsProps {
4
3
  ariaLabel?: string;
@@ -6,25 +5,25 @@ export interface TabsProps extends RadixTabs.TabsProps {
6
5
  declare const Tabs: {
7
6
  ({ defaultValue, children, ariaLabel, onValueChange, ...delegated }: TabsProps): import("react/jsx-runtime").JSX.Element;
8
7
  TriggersList: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<RadixTabs.TabsListProps & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
9
- ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
8
+ ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
10
9
  }, never>> & string & Omit<import('react').ForwardRefExoticComponent<RadixTabs.TabsListProps & import('react').RefAttributes<HTMLDivElement>>, keyof import('react').Component<any, {}, any>>;
11
10
  Trigger: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<RadixTabs.TabsTriggerProps & import('react').RefAttributes<HTMLButtonElement>, "ref"> & {
12
- ref?: ((instance: HTMLButtonElement | null) => void) | import('react').RefObject<HTMLButtonElement> | null | undefined;
11
+ ref?: ((instance: HTMLButtonElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLButtonElement> | null | undefined;
13
12
  }, never>> & string & Omit<import('react').ForwardRefExoticComponent<RadixTabs.TabsTriggerProps & import('react').RefAttributes<HTMLButtonElement>>, keyof import('react').Component<any, {}, any>>;
14
13
  Content: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<RadixTabs.TabsContentProps & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
15
- ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
14
+ ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
16
15
  }, never>> & string & Omit<import('react').ForwardRefExoticComponent<RadixTabs.TabsContentProps & import('react').RefAttributes<HTMLDivElement>>, keyof import('react').Component<any, {}, any>>;
17
16
  };
18
17
  declare const FullWidthTabs: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<TabsProps, never>> & string & Omit<{
19
18
  ({ defaultValue, children, ariaLabel, onValueChange, ...delegated }: TabsProps): import("react/jsx-runtime").JSX.Element;
20
19
  TriggersList: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<RadixTabs.TabsListProps & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
21
- ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
20
+ ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
22
21
  }, never>> & string & Omit<import('react').ForwardRefExoticComponent<RadixTabs.TabsListProps & import('react').RefAttributes<HTMLDivElement>>, keyof import('react').Component<any, {}, any>>;
23
22
  Trigger: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<RadixTabs.TabsTriggerProps & import('react').RefAttributes<HTMLButtonElement>, "ref"> & {
24
- ref?: ((instance: HTMLButtonElement | null) => void) | import('react').RefObject<HTMLButtonElement> | null | undefined;
23
+ ref?: ((instance: HTMLButtonElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLButtonElement> | null | undefined;
25
24
  }, never>> & string & Omit<import('react').ForwardRefExoticComponent<RadixTabs.TabsTriggerProps & import('react').RefAttributes<HTMLButtonElement>>, keyof import('react').Component<any, {}, any>>;
26
25
  Content: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<Omit<RadixTabs.TabsContentProps & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
27
- ref?: ((instance: HTMLDivElement | null) => void) | import('react').RefObject<HTMLDivElement> | null | undefined;
26
+ ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
28
27
  }, never>> & string & Omit<import('react').ForwardRefExoticComponent<RadixTabs.TabsContentProps & import('react').RefAttributes<HTMLDivElement>>, keyof import('react').Component<any, {}, any>>;
29
28
  }, keyof import('react').Component<any, {}, any>>;
30
29
  export { Tabs, FullWidthTabs };