@clickhouse/click-ui 0.0.168 → 0.0.169

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.
@@ -8992,7 +8992,7 @@ const Item = forwardRef(({
8992
8992
  /* @__PURE__ */ jsx(IconWrapper$3, { icon, iconDir, children: label ?? children }),
8993
8993
  /* @__PURE__ */ jsx(CheckIcon$2, { as: SvgImage, name: "check", size: "sm", $showCheck: isChecked })
8994
8994
  ] }),
8995
- separator && /* @__PURE__ */ jsx(Separator$1, { size: "sm" })
8995
+ separator && /* @__PURE__ */ jsx(Separator, { size: "sm" })
8996
8996
  ] });
8997
8997
  });
8998
8998
  Item.displayName = "AutoComplete.Item";
@@ -10092,6 +10092,7 @@ const Wrapper$5 = styled(FormRoot).withConfig({
10092
10092
  const Checkbox = ({
10093
10093
  id,
10094
10094
  label,
10095
+ variant,
10095
10096
  disabled,
10096
10097
  orientation,
10097
10098
  dir,
@@ -10099,28 +10100,29 @@ const Checkbox = ({
10099
10100
  }) => {
10100
10101
  const defaultId = useId();
10101
10102
  return /* @__PURE__ */ jsxs(Wrapper$5, { $orientation: orientation ?? "horizontal", $dir: dir ?? "end", children: [
10102
- /* @__PURE__ */ jsx(CheckInput, { id: id ?? defaultId, "data-testid": "checkbox", disabled, "aria-label": `${label}`, ...delegated, children: /* @__PURE__ */ jsx(CheckIconWrapper, { children: /* @__PURE__ */ jsx(SvgImage, { name: "check", size: "sm" }) }) }),
10103
+ /* @__PURE__ */ jsx(CheckInput, { id: id ?? defaultId, "data-testid": "checkbox", variant: variant ?? "default", disabled, "aria-label": `${label}`, ...delegated, children: /* @__PURE__ */ jsx(CheckIconWrapper, { children: /* @__PURE__ */ jsx(SvgImage, { name: "check", size: "sm" }) }) }),
10103
10104
  label && /* @__PURE__ */ jsx(GenericLabel, { htmlFor: id ?? defaultId, disabled, children: label })
10104
10105
  ] });
10105
10106
  };
10106
10107
  const CheckInput = styled($e698a72e93240346$export$be92b6f5f03c0fe9).withConfig({
10107
10108
  componentId: "sc-1sck1ja-1"
10108
10109
  })(["display:flex;align-items:center;justify-content:center;", ";"], ({
10109
- theme: theme2
10110
+ theme: theme2,
10111
+ variant = "default"
10110
10112
  }) => `
10111
10113
  border-radius: ${theme2.click.checkbox.radii.all};
10112
10114
  width: ${theme2.click.checkbox.size.all};
10113
10115
  height: ${theme2.click.checkbox.size.all};
10114
- background: ${theme2.click.checkbox.color.background.default};
10115
- border: 1px solid ${theme2.click.checkbox.color.stroke.default};
10116
+ background: ${theme2.click.checkbox.color.variations[variant].background.default};
10117
+ border: 1px solid ${theme2.click.checkbox.color.variations[variant].stroke.default};
10116
10118
  cursor: pointer;
10117
10119
 
10118
10120
  &:hover {
10119
- background: ${theme2.click.checkbox.color.background.hover};
10121
+ background: ${theme2.click.checkbox.color.variations[variant].background.hover};
10120
10122
  }
10121
10123
  &[data-state="checked"] {
10122
- border-color: ${theme2.click.checkbox.color.stroke.active};
10123
- background: ${theme2.click.checkbox.color.background.active};
10124
+ border-color: ${theme2.click.checkbox.color.variations[variant].stroke.active};
10125
+ background: ${theme2.click.checkbox.color.variations[variant].background.active};
10124
10126
  }
10125
10127
  &[data-disabled] {
10126
10128
  background: ${theme2.click.checkbox.color.background.disabled};
@@ -14064,7 +14066,7 @@ const ConfirmationDialog = ({
14064
14066
  !open22 && onCancel && onCancel();
14065
14067
  }, children: /* @__PURE__ */ jsxs(DialogContent, { as: Dialog.Content, title, showClose, ...props, children: [
14066
14068
  /* @__PURE__ */ jsx(Container, { overflow: "auto", grow: "1", orientation: "vertical", children: children ? children : /* @__PURE__ */ jsx(Text, { children: message }) }),
14067
- /* @__PURE__ */ jsx(Separator$1, { size: "xl" }),
14069
+ /* @__PURE__ */ jsx(Separator, { size: "xl" }),
14068
14070
  /* @__PURE__ */ jsxs(ActionsWrapper, { children: [
14069
14071
  /* @__PURE__ */ jsx(Dialog.Close, { label: secondaryActionLabel, "data-testid": "cancel-action-button" }),
14070
14072
  /* @__PURE__ */ jsx(Dialog.Close, { loading: !!loading, disabled: !!disabled || !!loading, type: primaryActionType, label: primaryActionLabel, onClick: () => {
@@ -14225,7 +14227,7 @@ const Header$1 = ({
14225
14227
  /* @__PURE__ */ jsx(Container, { padding: "none", gap: "none", orientation: "vertical", grow: "1", children }),
14226
14228
  showClose && /* @__PURE__ */ jsx($5d3850c4d0b4e6c7$export$fba2fb7cd781b7ac, { asChild: true, children: /* @__PURE__ */ jsx(CrossButton, { "data-testid": "flyout-header-close-btn", children: /* @__PURE__ */ jsx(SvgImage, { name: "cross", size: type === "inline" ? "md" : "lg" }) }) })
14227
14229
  ] }),
14228
- showSeparator && /* @__PURE__ */ jsx(Separator$1, { "data-testid": "flyout-header-separator", size: "lg" })
14230
+ showSeparator && /* @__PURE__ */ jsx(Separator, { "data-testid": "flyout-header-separator", size: "lg" })
14229
14231
  ] });
14230
14232
  }
14231
14233
  return /* @__PURE__ */ jsxs(FlyoutContainer, { children: [
@@ -14236,7 +14238,7 @@ const Header$1 = ({
14236
14238
  ] }),
14237
14239
  showClose && /* @__PURE__ */ jsx($5d3850c4d0b4e6c7$export$fba2fb7cd781b7ac, { asChild: true, children: /* @__PURE__ */ jsx(CrossButton, { "data-testid": "flyout-header-close-btn", children: /* @__PURE__ */ jsx(SvgImage, { name: "cross", size: type === "inline" ? "md" : "lg" }) }) })
14238
14240
  ] }),
14239
- showSeparator && /* @__PURE__ */ jsx(Separator$1, { "data-testid": "flyout-header-separator", size: "lg" })
14241
+ showSeparator && /* @__PURE__ */ jsx(Separator, { "data-testid": "flyout-header-separator", size: "lg" })
14240
14242
  ] });
14241
14243
  };
14242
14244
  Header$1.displayName = "Flyout.Header";
@@ -14275,7 +14277,7 @@ const FooterContainer = styled(Container).withConfig({
14275
14277
  })(["width:var(--flyout-width);max-width:100%;"]);
14276
14278
  const Footer = (props) => {
14277
14279
  return /* @__PURE__ */ jsxs(FooterContainer, { gap: "none", orientation: "vertical", alignItems: "end", children: [
14278
- /* @__PURE__ */ jsx(Separator$1, { size: "xs" }),
14280
+ /* @__PURE__ */ jsx(Separator, { size: "xs" }),
14279
14281
  /* @__PURE__ */ jsx(FlyoutFooter, { justifyContent: "end", gap: "none", padding: "none", isResponsive: false, wrap: "wrap", ...props })
14280
14282
  ] });
14281
14283
  };
@@ -36388,7 +36390,7 @@ const SelectItem = forwardRef(({
36388
36390
  /* @__PURE__ */ jsx(IconWrapper$3, { icon, iconDir, children: label ?? children }),
36389
36391
  /* @__PURE__ */ jsx(CheckIcon$1, { as: SvgImage, name: "check", size: "sm", $showCheck: isChecked })
36390
36392
  ] }),
36391
- separator && /* @__PURE__ */ jsx(Separator$1, { size: "sm" })
36393
+ separator && /* @__PURE__ */ jsx(Separator, { size: "sm" })
36392
36394
  ] });
36393
36395
  });
36394
36396
  SelectItem.displayName = "Select.Item";
@@ -36452,7 +36454,7 @@ const MultiSelectCheckboxItem = forwardRef(({
36452
36454
  icon && iconDir === "end" && /* @__PURE__ */ jsx(IconWrapper$3, { icon, iconDir: "end", children: /* @__PURE__ */ jsx(Checkbox, { checked: isChecked, "data-testid": "multi-select-checkbox", disabled, label: label ?? children, onClick: onChange }) }),
36453
36455
  !icon && /* @__PURE__ */ jsx(Checkbox, { checked: isChecked, "data-testid": "multi-select-checkbox", disabled, label: label ?? children, onClick: onChange })
36454
36456
  ] }),
36455
- separator && /* @__PURE__ */ jsx(Separator$1, { size: "sm" })
36457
+ separator && /* @__PURE__ */ jsx(Separator, { size: "sm" })
36456
36458
  ] });
36457
36459
  });
36458
36460
  MultiSelectCheckboxItem.displayName = "Select.Item";
@@ -36656,7 +36658,6 @@ const Separator = ({
36656
36658
  orientation = "horizontal",
36657
36659
  ...props
36658
36660
  }) => /* @__PURE__ */ jsx(CUISeparator, { orientation, ...props });
36659
- const Separator$1 = Separator;
36660
36661
  const LabelContainer = styled.span.withConfig({
36661
36662
  componentId: "sc-1cu1l45-0"
36662
36663
  })(["display:flex;align-items:center;justify-content:flex-start;width:100%;width:-webkit-fill-available;width:fill-available;width:stretch;flex:1;gap:", ";overflow:hidden;"], ({
@@ -41786,6 +41787,154 @@ const click$2 = {
41786
41787
  },
41787
41788
  checkbox: {
41788
41789
  color: {
41790
+ variations: {
41791
+ "default": {
41792
+ background: {
41793
+ "default": "rgb(17.8% 17.8% 17.8%)",
41794
+ hover: "rgb(17.8% 17.8% 17.8%)",
41795
+ active: "#FAFF69",
41796
+ disabled: "#414141"
41797
+ },
41798
+ stroke: {
41799
+ "default": "#414141",
41800
+ hover: "#414141",
41801
+ active: "#FAFF69",
41802
+ disabled: "#606060"
41803
+ },
41804
+ check: {
41805
+ "default": "#ffffff",
41806
+ hover: "#ffffff",
41807
+ active: "#151515",
41808
+ disabled: "#808080"
41809
+ },
41810
+ label: {
41811
+ "default": "#ffffff",
41812
+ hover: "#ffffff",
41813
+ active: "#ffffff",
41814
+ disabled: "#606060"
41815
+ }
41816
+ },
41817
+ var1: {
41818
+ background: {
41819
+ "default": "rgb(17.8% 17.8% 17.8%)",
41820
+ hover: "rgb(17.8% 17.8% 17.8%)",
41821
+ active: "#66FF73",
41822
+ disabled: "rgb(17.8% 17.8% 17.8%)"
41823
+ },
41824
+ stroke: {
41825
+ "default": "#00CC11",
41826
+ hover: "#66FF73",
41827
+ active: "#66FF73",
41828
+ disabled: "#606060"
41829
+ },
41830
+ check: {
41831
+ "default": "#ffffff",
41832
+ hover: "#ffffff",
41833
+ active: "#ffffff",
41834
+ disabled: "#a0a0a0"
41835
+ }
41836
+ },
41837
+ var2: {
41838
+ background: {
41839
+ "default": "rgb(17.8% 17.8% 17.8%)",
41840
+ hover: "rgb(17.8% 17.8% 17.8%)",
41841
+ active: "#6c9af3",
41842
+ disabled: "rgb(17.8% 17.8% 17.8%)"
41843
+ },
41844
+ stroke: {
41845
+ "default": "#6c9af3",
41846
+ hover: "#91b3f6",
41847
+ active: "#91b3f6",
41848
+ disabled: "#606060"
41849
+ },
41850
+ check: {
41851
+ "default": "#ffffff",
41852
+ hover: "#ffffff",
41853
+ active: "#ffffff",
41854
+ disabled: "#a0a0a0"
41855
+ }
41856
+ },
41857
+ var3: {
41858
+ background: {
41859
+ "default": "rgb(17.8% 17.8% 17.8%)",
41860
+ hover: "rgb(17.8% 17.8% 17.8%)",
41861
+ active: "#FB64D6",
41862
+ disabled: "rgb(17.8% 17.8% 17.8%)"
41863
+ },
41864
+ stroke: {
41865
+ "default": "#FB64D6",
41866
+ hover: "#FB64D6",
41867
+ active: "#FB64D6",
41868
+ disabled: "#606060"
41869
+ },
41870
+ check: {
41871
+ "default": "#ffffff",
41872
+ hover: "#ffffff",
41873
+ active: "#ffffff",
41874
+ disabled: "#a0a0a0"
41875
+ }
41876
+ },
41877
+ var4: {
41878
+ background: {
41879
+ "default": "rgb(17.8% 17.8% 17.8%)",
41880
+ hover: "rgb(17.8% 17.8% 17.8%)",
41881
+ active: "#FAFF69",
41882
+ disabled: "rgb(17.8% 17.8% 17.8%)"
41883
+ },
41884
+ stroke: {
41885
+ "default": "#FAFF69",
41886
+ hover: "#fdffa3",
41887
+ active: "#fdffa3",
41888
+ disabled: "#606060"
41889
+ },
41890
+ check: {
41891
+ "default": "#ffffff",
41892
+ hover: "#ffffff",
41893
+ active: "#ffffff",
41894
+ disabled: "#a0a0a0"
41895
+ }
41896
+ },
41897
+ var5: {
41898
+ background: {
41899
+ "default": "rgb(17.8% 17.8% 17.8%)",
41900
+ hover: "rgb(17.8% 17.8% 17.8%)",
41901
+ active: "#66FFE5",
41902
+ disabled: "rgb(17.8% 17.8% 17.8%)"
41903
+ },
41904
+ stroke: {
41905
+ "default": "#66FFE5",
41906
+ hover: "#99FFEE",
41907
+ active: "#99FFEE",
41908
+ disabled: "#606060"
41909
+ },
41910
+ check: {
41911
+ "default": "#ffffff",
41912
+ hover: "#ffffff",
41913
+ active: "#ffffff",
41914
+ disabled: "#a0a0a0"
41915
+ }
41916
+ },
41917
+ var6: {
41918
+ background: {
41919
+ "default": "rgb(17.8% 17.8% 17.8%)",
41920
+ hover: "rgb(17.8% 17.8% 17.8%)",
41921
+ active: "#BB33FF",
41922
+ disabled: "rgb(17.8% 17.8% 17.8%)"
41923
+ },
41924
+ stroke: {
41925
+ "default": "#CC66FF",
41926
+ hover: "#CC66FF",
41927
+ active: "#CC66FF",
41928
+ disabled: "#606060"
41929
+ },
41930
+ check: {
41931
+ "default": "#ffffff",
41932
+ hover: "#ffffff",
41933
+ active: "#ffffff",
41934
+ disabled: "#a0a0a0"
41935
+ }
41936
+ }
41937
+ },
41789
41938
  background: {
41790
41939
  "default": "rgb(17.8% 17.8% 17.8%)",
41791
41940
  hover: "rgb(17.8% 17.8% 17.8%)",
@@ -42691,7 +42840,7 @@ const global$3 = {
42691
42840
  }
42692
42841
  },
42693
42842
  icon: {
42694
- background: "linear-gradient(132deg, #FAFF69 7.59%, #292929 30.01%);"
42843
+ background: "linear-gradient(132deg, #FAFF69 8%, #292929 30%);"
42695
42844
  }
42696
42845
  }
42697
42846
  };
@@ -43291,6 +43440,148 @@ const click$1 = {
43291
43440
  },
43292
43441
  checkbox: {
43293
43442
  color: {
43443
+ variations: {
43444
+ "default": {
43445
+ background: {
43446
+ "default": "#f6f7fa",
43447
+ hover: "#f6f7fa",
43448
+ active: "#161517",
43449
+ disabled: "#dfdfdf"
43450
+ },
43451
+ stroke: {
43452
+ "default": "#b3b6bd",
43453
+ hover: "#b3b6bd",
43454
+ active: "#161517",
43455
+ disabled: "#c0c0c0"
43456
+ },
43457
+ check: {
43458
+ "default": "#ffffff",
43459
+ hover: "#ffffff",
43460
+ active: "#ffffff",
43461
+ disabled: "#a0a0a0"
43462
+ }
43463
+ },
43464
+ var1: {
43465
+ background: {
43466
+ "default": "#f6f7fa",
43467
+ hover: "#f6f7fa",
43468
+ active: "#62de85",
43469
+ disabled: "#dfdfdf"
43470
+ },
43471
+ stroke: {
43472
+ "default": "#62de85",
43473
+ hover: "#66FF73",
43474
+ active: "#66FF73",
43475
+ disabled: "#c0c0c0"
43476
+ },
43477
+ check: {
43478
+ "default": "#ffffff",
43479
+ hover: "#ffffff",
43480
+ active: "#ffffff",
43481
+ disabled: "#a0a0a0"
43482
+ }
43483
+ },
43484
+ var2: {
43485
+ background: {
43486
+ "default": "#f6f7fa",
43487
+ hover: "#f6f7fa",
43488
+ active: "#6c9af3",
43489
+ disabled: "#dfdfdf"
43490
+ },
43491
+ stroke: {
43492
+ "default": "#6c9af3",
43493
+ hover: "#6c9af3",
43494
+ active: "#6c9af3",
43495
+ disabled: "#c0c0c0"
43496
+ },
43497
+ check: {
43498
+ "default": "#ffffff",
43499
+ hover: "#ffffff",
43500
+ active: "#ffffff",
43501
+ disabled: "#a0a0a0"
43502
+ }
43503
+ },
43504
+ var3: {
43505
+ background: {
43506
+ "default": "#f6f7fa",
43507
+ hover: "#f6f7fa",
43508
+ active: "#FB64D6",
43509
+ disabled: "#dfdfdf"
43510
+ },
43511
+ stroke: {
43512
+ "default": "#FB64D6",
43513
+ hover: "#FB64D6",
43514
+ active: "#FB64D6",
43515
+ disabled: "#c0c0c0"
43516
+ },
43517
+ check: {
43518
+ "default": "#ffffff",
43519
+ hover: "#ffffff",
43520
+ active: "#ffffff",
43521
+ disabled: "#a0a0a0"
43522
+ }
43523
+ },
43524
+ var4: {
43525
+ background: {
43526
+ "default": "#f6f7fa",
43527
+ hover: "#f6f7fa",
43528
+ active: "#ffb864",
43529
+ disabled: "#dfdfdf"
43530
+ },
43531
+ stroke: {
43532
+ "default": "#ffb864",
43533
+ hover: "#ffb864",
43534
+ active: "#ffb864",
43535
+ disabled: "#c0c0c0"
43536
+ },
43537
+ check: {
43538
+ "default": "#ffffff",
43539
+ hover: "#ffffff",
43540
+ active: "#ffffff",
43541
+ disabled: "#a0a0a0"
43542
+ }
43543
+ },
43544
+ var5: {
43545
+ background: {
43546
+ "default": "#f6f7fa",
43547
+ hover: "#f6f7fa",
43548
+ active: "#00CCAA",
43549
+ disabled: "#dfdfdf"
43550
+ },
43551
+ stroke: {
43552
+ "default": "#00CCAA",
43553
+ hover: "#00CCAA",
43554
+ active: "#00CCAA",
43555
+ disabled: "#c0c0c0"
43556
+ },
43557
+ check: {
43558
+ "default": "#ffffff",
43559
+ hover: "#ffffff",
43560
+ active: "#ffffff",
43561
+ disabled: "#a0a0a0"
43562
+ }
43563
+ },
43564
+ var6: {
43565
+ background: {
43566
+ "default": "#f6f7fa",
43567
+ hover: "#f6f7fa",
43568
+ active: "#CC66FF",
43569
+ disabled: "#dfdfdf"
43570
+ },
43571
+ stroke: {
43572
+ "default": "#CC66FF",
43573
+ hover: "#BB33FF",
43574
+ active: "#BB33FF",
43575
+ disabled: "#c0c0c0"
43576
+ },
43577
+ check: {
43578
+ "default": "#ffffff",
43579
+ hover: "#ffffff",
43580
+ active: "#ffffff",
43581
+ disabled: "#a0a0a0"
43582
+ }
43583
+ }
43584
+ },
43294
43585
  background: {
43295
43586
  "default": "#f6f7fa",
43296
43587
  hover: "#f6f7fa",
@@ -44107,7 +44398,7 @@ const click$1 = {
44107
44398
  chart: {
44108
44399
  bars: {
44109
44400
  color: {
44110
- green: "#00FF15",
44401
+ green: "#62de85",
44111
44402
  blue: "#6c9af3",
44112
44403
  fuchsia: "#FB64D6",
44113
44404
  orange: "#ffb864",
@@ -44175,7 +44466,7 @@ const global$2 = {
44175
44466
  },
44176
44467
  chart: {
44177
44468
  bars: {
44178
- green: "#00FF15",
44469
+ green: "#62de85",
44179
44470
  blue: "#6c9af3",
44180
44471
  fuchsia: "#FB64D6",
44181
44472
  orange: "#ffb864",
@@ -44190,7 +44481,7 @@ const global$2 = {
44190
44481
  }
44191
44482
  },
44192
44483
  icon: {
44193
- background: "linear-gradient(132deg, #FFFFFF 7.59%, #292929 30.01%);"
44484
+ background: "linear-gradient(132deg, #FFFFFF 8%, #292929 30%);"
44194
44485
  }
44195
44486
  }
44196
44487
  };
@@ -45263,6 +45554,154 @@ const click = {
45263
45554
  }
45264
45555
  },
45265
45556
  color: {
45557
+ variations: {
45558
+ "default": {
45559
+ background: {
45560
+ "default": "#f6f7fa",
45561
+ hover: "#f6f7fa",
45562
+ active: "#161517",
45563
+ disabled: "#dfdfdf"
45564
+ },
45565
+ stroke: {
45566
+ "default": "#b3b6bd",
45567
+ hover: "#b3b6bd",
45568
+ active: "#161517",
45569
+ disabled: "#c0c0c0"
45570
+ },
45571
+ check: {
45572
+ "default": "#ffffff",
45573
+ hover: "#ffffff",
45574
+ active: "#ffffff",
45575
+ disabled: "#a0a0a0"
45576
+ },
45577
+ label: {
45578
+ "default": "#161517",
45579
+ hover: "#161517",
45580
+ active: "#161517",
45581
+ disabled: "#a0a0a0"
45582
+ }
45583
+ },
45584
+ var1: {
45585
+ background: {
45586
+ "default": "#f6f7fa",
45587
+ hover: "#f6f7fa",
45588
+ active: "#62de85",
45589
+ disabled: "#dfdfdf"
45590
+ },
45591
+ stroke: {
45592
+ "default": "#62de85",
45593
+ hover: "#66FF73",
45594
+ active: "#66FF73",
45595
+ disabled: "#c0c0c0"
45596
+ },
45597
+ check: {
45598
+ "default": "#ffffff",
45599
+ hover: "#ffffff",
45600
+ active: "#ffffff",
45601
+ disabled: "#a0a0a0"
45602
+ }
45603
+ },
45604
+ var2: {
45605
+ background: {
45606
+ "default": "#f6f7fa",
45607
+ hover: "#f6f7fa",
45608
+ active: "#6c9af3",
45609
+ disabled: "#dfdfdf"
45610
+ },
45611
+ stroke: {
45612
+ "default": "#6c9af3",
45613
+ hover: "#6c9af3",
45614
+ active: "#6c9af3",
45615
+ disabled: "#c0c0c0"
45616
+ },
45617
+ check: {
45618
+ "default": "#ffffff",
45619
+ hover: "#ffffff",
45620
+ active: "#ffffff",
45621
+ disabled: "#a0a0a0"
45622
+ }
45623
+ },
45624
+ var3: {
45625
+ background: {
45626
+ "default": "#f6f7fa",
45627
+ hover: "#f6f7fa",
45628
+ active: "#FB64D6",
45629
+ disabled: "#dfdfdf"
45630
+ },
45631
+ stroke: {
45632
+ "default": "#FB64D6",
45633
+ hover: "#FB64D6",
45634
+ active: "#FB64D6",
45635
+ disabled: "#c0c0c0"
45636
+ },
45637
+ check: {
45638
+ "default": "#ffffff",
45639
+ hover: "#ffffff",
45640
+ active: "#ffffff",
45641
+ disabled: "#a0a0a0"
45642
+ }
45643
+ },
45644
+ var4: {
45645
+ background: {
45646
+ "default": "#f6f7fa",
45647
+ hover: "#f6f7fa",
45648
+ active: "#ffb864",
45649
+ disabled: "#dfdfdf"
45650
+ },
45651
+ stroke: {
45652
+ "default": "#ffb864",
45653
+ hover: "#ffb864",
45654
+ active: "#ffb864",
45655
+ disabled: "#c0c0c0"
45656
+ },
45657
+ check: {
45658
+ "default": "#ffffff",
45659
+ hover: "#ffffff",
45660
+ active: "#ffffff",
45661
+ disabled: "#a0a0a0"
45662
+ }
45663
+ },
45664
+ var5: {
45665
+ background: {
45666
+ "default": "#f6f7fa",
45667
+ hover: "#f6f7fa",
45668
+ active: "#00CCAA",
45669
+ disabled: "#dfdfdf"
45670
+ },
45671
+ stroke: {
45672
+ "default": "#00CCAA",
45673
+ hover: "#00CCAA",
45674
+ active: "#00CCAA",
45675
+ disabled: "#c0c0c0"
45676
+ },
45677
+ check: {
45678
+ "default": "#ffffff",
45679
+ hover: "#ffffff",
45680
+ active: "#ffffff",
45681
+ disabled: "#a0a0a0"
45682
+ }
45683
+ },
45684
+ var6: {
45685
+ background: {
45686
+ "default": "#f6f7fa",
45687
+ hover: "#f6f7fa",
45688
+ active: "#CC66FF",
45689
+ disabled: "#dfdfdf"
45690
+ },
45691
+ stroke: {
45692
+ "default": "#CC66FF",
45693
+ hover: "#BB33FF",
45694
+ active: "#BB33FF",
45695
+ disabled: "#c0c0c0"
45696
+ },
45697
+ check: {
45698
+ "default": "#ffffff",
45699
+ hover: "#ffffff",
45700
+ active: "#ffffff",
45701
+ disabled: "#a0a0a0"
45702
+ }
45703
+ }
45704
+ },
45266
45705
  background: {
45267
45706
  "default": "#f6f7fa",
45268
45707
  hover: "#f6f7fa",
@@ -46974,7 +47413,7 @@ const click = {
46974
47413
  chart: {
46975
47414
  bars: {
46976
47415
  color: {
46977
- green: "#00FF15",
47416
+ green: "#62de85",
46978
47417
  blue: "#6c9af3",
46979
47418
  fuchsia: "#FB64D6",
46980
47419
  orange: "#ffb864",
@@ -47080,7 +47519,7 @@ const global$1 = {
47080
47519
  },
47081
47520
  chart: {
47082
47521
  bars: {
47083
- green: "#00FF15",
47522
+ green: "#62de85",
47084
47523
  blue: "#6c9af3",
47085
47524
  fuchsia: "#FB64D6",
47086
47525
  orange: "#ffb864",
@@ -47095,7 +47534,11 @@ const global$1 = {
47095
47534
  }
47096
47535
  },
47097
47536
  icon: {
47098
- background: "linear-gradient(132deg, #FFFFFF 7.59%, #292929 30.01%);"
47537
+ background: "linear-gradient(132deg, #FFFFFF 8%, #292929 30%);"
47538
+ },
47539
+ gradients: {
47540
+ yellowToBlack: "linear-gradient(132deg, #faff69 8%, #292929 30%)",
47541
+ whiteToBlack: "linear-gradient(132deg, #ffffff 8%, #292929 30%)"
47099
47542
  }
47100
47543
  }
47101
47544
  };
@@ -47213,8 +47656,8 @@ const palette = {
47213
47656
  },
47214
47657
  gradients: {
47215
47658
  base: "linear-gradient(229.65deg, #292924 15.78%, #0F0F0F 88.39%)",
47216
- yellowToblack: "linear-gradient(132deg, #FAFF69 7.59%, #292929 30.01%);",
47217
- whiteToblack: "linear-gradient(132deg, #FFFFFF 7.59%, #292929 30.01%);",
47659
+ yellowToblack: "linear-gradient(132deg, #FAFF69 8%, #292929 30%);",
47660
+ whiteToblack: "linear-gradient(132deg, #FFFFFF 8%, #292929 30%);",
47218
47661
  transparent: "rgba(0,0,0,0)"
47219
47662
  },
47220
47663
  utility: {
@@ -47809,7 +48252,7 @@ export {
47809
48252
  RadioGroup,
47810
48253
  SearchField,
47811
48254
  Select,
47812
- Separator$1 as Separator,
48255
+ Separator,
47813
48256
  SidebarCollapsibleItem,
47814
48257
  SidebarCollapsibleTitle,
47815
48258
  SidebarNavigationItem,