xmlui 0.9.14 → 0.9.15

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.
@@ -594,6 +594,7 @@ function generateBaseTonesForColor(varName, theme, options = { distributeEven: f
594
594
  return {};
595
595
  }
596
596
  const baseColor = (0, color_1.default)(color);
597
+ let color0;
597
598
  let color50;
598
599
  let color100;
599
600
  let color200;
@@ -605,7 +606,9 @@ function generateBaseTonesForColor(varName, theme, options = { distributeEven: f
605
606
  let color800;
606
607
  let color900;
607
608
  let color950;
609
+ let color1000;
608
610
  if (distributeEven) {
611
+ color0 = baseColor.lightness(100);
609
612
  color50 = baseColor.lightness(98);
610
613
  color100 = baseColor.lightness(95);
611
614
  color200 = baseColor.lightness(83);
@@ -617,11 +620,13 @@ function generateBaseTonesForColor(varName, theme, options = { distributeEven: f
617
620
  color800 = baseColor.lightness(27);
618
621
  color900 = baseColor.lightness(16);
619
622
  color950 = baseColor.lightness(13);
623
+ color1000 = baseColor.lightness(9);
620
624
  }
621
625
  else {
622
626
  const baseL = baseColor.hsl().l();
623
627
  const darkStep = baseL / 5;
624
628
  const lightStep = (100 - baseL) / 5;
629
+ color0 = baseColor.lightness(100);
625
630
  color50 = baseColor.lightness(baseL + lightStep * 4.5);
626
631
  color100 = baseColor.lightness(baseL + lightStep * 4);
627
632
  color200 = baseColor.lightness(baseL + lightStep * 3);
@@ -633,8 +638,10 @@ function generateBaseTonesForColor(varName, theme, options = { distributeEven: f
633
638
  color800 = baseColor.lightness(baseL - darkStep * 3);
634
639
  color900 = baseColor.lightness(baseL - darkStep * 4);
635
640
  color950 = baseColor.lightness(baseL - darkStep * 4.5);
641
+ color1000 = baseColor.lightness(baseL - darkStep * 5);
636
642
  }
637
643
  return {
644
+ [`const-${varName}-0`]: color0.toString(),
638
645
  [`const-${varName}-50`]: color50.toString(),
639
646
  [`const-${varName}-100`]: color100.toString(),
640
647
  [`const-${varName}-200`]: color200.toString(),
@@ -646,6 +653,7 @@ function generateBaseTonesForColor(varName, theme, options = { distributeEven: f
646
653
  [`const-${varName}-800`]: color800.toString(),
647
654
  [`const-${varName}-900`]: color900.toString(),
648
655
  [`const-${varName}-950`]: color950.toString(),
656
+ [`const-${varName}-1000`]: color1000.toString(),
649
657
  };
650
658
  }
651
659
  catch (e) {
package/dist/style.css CHANGED
@@ -6692,76 +6692,86 @@ li .htmlOl {
6692
6692
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
6693
6693
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
6694
6694
  */
6695
- ._tabs_1mgc2_13 {
6695
+ ._tabs_1ggvi_13 {
6696
6696
  display: flex;
6697
- flex: 1 1 auto;
6698
6697
  width: 100%;
6699
6698
  background-color: var(--xmlui-backgroundColor-Tabs);
6700
6699
  overflow: hidden;
6701
6700
  }
6702
- ._tabs_1mgc2_13[data-orientation=horizontal] {
6701
+ ._tabs_1ggvi_13[data-orientation=vertical] {
6703
6702
  flex-direction: row;
6704
6703
  }
6705
- ._tabs_1mgc2_13[data-orientation=vertical] {
6704
+ ._tabs_1ggvi_13[data-orientation=horizontal] {
6706
6705
  flex-direction: column;
6707
6706
  }
6708
6707
 
6709
- ._filler_1mgc2_27 {
6708
+ ._filler_1ggvi_26 {
6710
6709
  flex: 1 1 auto;
6711
6710
  }
6712
- ._filler_1mgc2_27[data-orientation=horizontal] {
6711
+ ._filler_1ggvi_26[data-orientation=vertical] {
6713
6712
  border-right-width: var(--xmlui-borderWidth-Tabs);
6714
6713
  border-right-style: solid;
6715
6714
  border-right-color: var(--xmlui-borderColor-Tabs);
6716
6715
  }
6717
- ._filler_1mgc2_27[data-orientation=vertical] {
6716
+ ._filler_1ggvi_26[data-orientation=horizontal] {
6718
6717
  border-bottom-width: var(--xmlui-borderWidth-Tabs);
6719
6718
  border-bottom-style: solid;
6720
6719
  border-bottom-color: var(--xmlui-borderColor-Tabs);
6721
6720
  }
6722
6721
 
6723
- ._tabTrigger_1mgc2_41 {
6724
- font-family: inherit;
6722
+ ._tabTrigger_1ggvi_40 {
6723
+ padding: var(--xmlui-padding-trigger-Tabs);
6724
+ padding-left: var(--xmlui-paddingLeft-trigger-Tabs, var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)));
6725
+ padding-right: var(--xmlui-paddingRight-trigger-Tabs, var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)));
6726
+ padding-top: var(--xmlui-paddingTop-trigger-Tabs, var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)));
6727
+ padding-bottom: var(--xmlui-paddingBottom-trigger-Tabs, var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)));
6725
6728
  color: var(--xmlui-textColor-trigger-Tabs);
6726
6729
  background-color: var(--xmlui-backgroundColor-trigger-Tabs);
6727
- padding: var(--xmlui-space-4);
6730
+ border-radius: var(--xmlui-borderRadius-trigger-Tabs);
6728
6731
  display: flex;
6729
6732
  align-items: center;
6730
6733
  justify-content: center;
6731
- font-size: 15px;
6734
+ font-size: var(--xmlui-fontSize-normal);
6732
6735
  line-height: 1;
6733
6736
  user-select: none;
6734
- border-color: transparent;
6737
+ border: var(--xmlui-border-trigger-Tabs);
6738
+ }
6739
+ ._tabTrigger_1ggvi_40._distributeEvenly_1ggvi_57 {
6740
+ flex: 1 1 auto;
6735
6741
  }
6736
- ._tabTrigger_1mgc2_41:hover {
6742
+ ._tabTrigger_1ggvi_40:hover {
6737
6743
  background-color: var(--xmlui-backgroundColor-trigger-Tabs--hover);
6738
6744
  }
6739
- ._tabTrigger_1mgc2_41[data-orientation=horizontal] {
6745
+ ._tabTrigger_1ggvi_40[data-orientation=vertical] {
6740
6746
  border-right-width: var(--xmlui-borderWidth-Tabs);
6741
6747
  border-right-style: solid;
6742
6748
  border-right-color: var(--xmlui-borderColor-Tabs);
6743
6749
  }
6744
- ._tabTrigger_1mgc2_41[data-orientation=horizontal][data-state=active] {
6750
+ ._tabTrigger_1ggvi_40[data-orientation=vertical][data-state=active] {
6745
6751
  border-right-width: var(--xmlui-borderWidth-Tabs);
6746
6752
  border-right-style: solid;
6747
6753
  border-right-color: var(--xmlui-borderColor-active-Tabs);
6754
+ background-color: var(--xmlui-backgroundColor-trigger-Tabs--active);
6748
6755
  }
6749
- ._tabTrigger_1mgc2_41[data-orientation=vertical] {
6756
+ ._tabTrigger_1ggvi_40[data-orientation=horizontal] {
6750
6757
  border-bottom-width: var(--xmlui-borderWidth-Tabs);
6751
6758
  border-bottom-style: solid;
6752
6759
  border-bottom-color: var(--xmlui-borderColor-Tabs);
6753
6760
  }
6754
- ._tabTrigger_1mgc2_41[data-orientation=vertical][data-state=active] {
6761
+ ._tabTrigger_1ggvi_40[data-orientation=horizontal][data-state=active] {
6755
6762
  border-bottom-width: var(--xmlui-borderWidth-Tabs);
6756
6763
  border-bottom-style: solid;
6757
6764
  border-bottom-color: var(--xmlui-borderColor-active-Tabs);
6765
+ background-color: var(--xmlui-backgroundColor-trigger-Tabs--active);
6758
6766
  }
6759
- ._tabTrigger_1mgc2_41:hover {
6767
+ ._tabTrigger_1ggvi_40:hover {
6760
6768
  cursor: pointer;
6761
6769
  }
6762
6770
 
6763
- ._tabsList_1mgc2_81 {
6771
+ ._tabsList_1ggvi_89 {
6764
6772
  background-color: var(--xmlui-backgroundColor-list-Tabs);
6773
+ border-radius: var(--xmlui-borderRadius-list-Tabs);
6774
+ border: var(--xmlui-border-list-Tabs);
6765
6775
  position: relative;
6766
6776
  z-index: 99;
6767
6777
  overflow: hidden;
@@ -6769,18 +6779,18 @@ li .htmlOl {
6769
6779
  flex-shrink: 0;
6770
6780
  scrollbar-width: thin;
6771
6781
  }
6772
- ._tabsList_1mgc2_81[data-orientation=horizontal] {
6782
+ ._tabsList_1ggvi_89[data-orientation=vertical] {
6773
6783
  flex-direction: column;
6774
6784
  }
6775
- ._tabsList_1mgc2_81[data-orientation=vertical] {
6785
+ ._tabsList_1ggvi_89[data-orientation=horizontal] {
6776
6786
  flex-direction: row;
6777
6787
  }
6778
6788
 
6779
- ._tabsList_1mgc2_81:hover {
6789
+ ._tabsList_1ggvi_89:hover {
6780
6790
  overflow: auto;
6781
6791
  }
6782
6792
 
6783
- ._tabsContent_1mgc2_101 {
6793
+ ._tabsContent_1ggvi_111 {
6784
6794
  flex-grow: 1;
6785
6795
  outline: none;
6786
6796
  }/*
@@ -2024,6 +2024,7 @@ const RootThemeDefinition = {
2024
2024
  "const-color-surface-800": "hsl(204, 30.3%, 27%)",
2025
2025
  "const-color-surface-900": "hsl(204, 30.3%, 16%)",
2026
2026
  "const-color-surface-950": "hsl(204, 30.3%, 13%)",
2027
+ "const-color-surface-1000": "hsl(204, 30.3%, 9%)",
2027
2028
  "const-color-surface": "$const-color-surface-500",
2028
2029
  // --- Primary color shades (bluish)
2029
2030
  "const-color-primary-50": "hsl(212,71.9%,94.5%)",
@@ -2232,6 +2233,7 @@ const RootThemeDefinition = {
2232
2233
  "color-surface-800": "$const-color-surface-800",
2233
2234
  "color-surface-900": "$const-color-surface-900",
2234
2235
  "color-surface-950": "$const-color-surface-950",
2236
+ "color-surface-1000": "$const-color-surface-1000",
2235
2237
  "color-surface": "$const-color-surface-500",
2236
2238
  "color-surface-base": "$color-surface-0",
2237
2239
  "color-surface-lower": "$color-surface-100",
@@ -2320,7 +2322,7 @@ const RootThemeDefinition = {
2320
2322
  dark: {
2321
2323
  themeVars: {
2322
2324
  // --- Default surface color shades (form white to black)
2323
- "color-surface-0": "$const-color-surface-950",
2325
+ "color-surface-0": "$const-color-surface-1000",
2324
2326
  "color-surface-50": "$const-color-surface-950",
2325
2327
  "color-surface-100": "$const-color-surface-900",
2326
2328
  "color-surface-200": "$const-color-surface-800",
@@ -2332,6 +2334,7 @@ const RootThemeDefinition = {
2332
2334
  "color-surface-800": "$const-color-surface-200",
2333
2335
  "color-surface-900": "$const-color-surface-100",
2334
2336
  "color-surface-950": "$const-color-surface-50",
2337
+ "color-surface-1000": "$const-color-surface-0",
2335
2338
  "color-surface": "$const-color-surface-500",
2336
2339
  "color-surface-base": "$color-surface-0",
2337
2340
  "color-surface-lower": "$color-surface-0",
@@ -15321,7 +15324,12 @@ const ListMd = createMetadata({
15321
15324
  )
15322
15325
  },
15323
15326
  contextVars: {
15324
- $item: d(`This property represents the value of an item in the data list.`)
15327
+ $item: d(`This property represents the value of an item in the data list.`),
15328
+ $itemIndex: dComponent(
15329
+ "This integer value represents the current row index (zero-based) while rendering children."
15330
+ ),
15331
+ $isFirst: dComponent("This boolean value indicates if the component renders its first item."),
15332
+ $isLast: dComponent("This boolean value indicates if the component renders its last item.")
15325
15333
  },
15326
15334
  themeVars: parseScssVar(styles$h.themeVars)
15327
15335
  });
@@ -17671,7 +17679,7 @@ const TableOfContentsMd = createMetadata({
17671
17679
  [`color-${COMP$k}Item--active`]: "$color-primary-500"
17672
17680
  }
17673
17681
  });
17674
- const themeVars$5 = `'{"backgroundColor-Tabs": "var(--xmlui-backgroundColor-Tabs)", "borderColor-Tabs": "var(--xmlui-borderColor-Tabs)", "borderWidth-Tabs": "var(--xmlui-borderWidth-Tabs)", "borderColor-active-Tabs": "var(--xmlui-borderColor-active-Tabs)", "backgroundColor-trigger-Tabs": "var(--xmlui-backgroundColor-trigger-Tabs)", "textColor-trigger-Tabs": "var(--xmlui-textColor-trigger-Tabs)", "backgroundColor-trigger-Tabs--hover": "var(--xmlui-backgroundColor-trigger-Tabs--hover)", "backgroundColor-list-Tabs": "var(--xmlui-backgroundColor-list-Tabs)"}'`;
17682
+ const themeVars$5 = `'{"padding-trigger-Tabs": "var(--xmlui-padding-trigger-Tabs)", "paddingHorizontal-trigger-Tabs": "var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs))", "paddingVertical-trigger-Tabs": "var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs))", "paddingLeft-trigger-Tabs": "var(--xmlui-paddingLeft-trigger-Tabs, var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "paddingRight-trigger-Tabs": "var(--xmlui-paddingRight-trigger-Tabs, var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "paddingTop-trigger-Tabs": "var(--xmlui-paddingTop-trigger-Tabs, var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "paddingBottom-trigger-Tabs": "var(--xmlui-paddingBottom-trigger-Tabs, var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "backgroundColor-Tabs": "var(--xmlui-backgroundColor-Tabs)", "borderColor-Tabs": "var(--xmlui-borderColor-Tabs)", "borderWidth-Tabs": "var(--xmlui-borderWidth-Tabs)", "borderColor-active-Tabs": "var(--xmlui-borderColor-active-Tabs)", "backgroundColor-trigger-Tabs": "var(--xmlui-backgroundColor-trigger-Tabs)", "borderRadius-trigger-Tabs": "var(--xmlui-borderRadius-trigger-Tabs)", "border-trigger-Tabs": "var(--xmlui-border-trigger-Tabs)", "textColor-trigger-Tabs": "var(--xmlui-textColor-trigger-Tabs)", "backgroundColor-trigger-Tabs--hover": "var(--xmlui-backgroundColor-trigger-Tabs--hover)", "backgroundColor-trigger-Tabs--active": "var(--xmlui-backgroundColor-trigger-Tabs--active)", "backgroundColor-list-Tabs": "var(--xmlui-backgroundColor-list-Tabs)", "borderRadius-list-Tabs": "var(--xmlui-borderRadius-list-Tabs)", "border-list-Tabs": "var(--xmlui-border-list-Tabs)"}'`;
17675
17683
  const styles$5 = {
17676
17684
  themeVars: themeVars$5
17677
17685
  };
@@ -17696,15 +17704,16 @@ const TabsMd = createMetadata({
17696
17704
  },
17697
17705
  themeVars: parseScssVar(styles$5.themeVars),
17698
17706
  defaultThemeVars: {
17699
- [`backgroundColor-${COMP$j}`]: "$backgroundColor-primary",
17707
+ // [`backgroundColor-${COMP}`]: "transparent",
17700
17708
  [`borderStyle-${COMP$j}`]: "solid",
17701
17709
  [`borderColor-${COMP$j}`]: "$borderColor",
17702
17710
  [`borderColor-active-${COMP$j}`]: "$color-primary",
17703
17711
  [`borderWidth-${COMP$j}`]: "2px",
17704
- [`backgroundColor-trigger-${COMP$j}`]: "$backgroundColor-primary",
17705
- [`backgroundColor-trigger-${COMP$j}--hover`]: "$color-primary-50",
17706
- [`backgroundColor-list-${COMP$j}`]: "$color-primary-50",
17707
- [`textColor-trigger-${COMP$j}`]: "$color-primary-100"
17712
+ // [`backgroundColor-trigger-${COMP}`]: "transparent",
17713
+ [`backgroundColor-trigger-${COMP$j}--hover`]: "$color-surface-100",
17714
+ [`padding-trigger-${COMP$j}`]: "$space-4"
17715
+ // [`backgroundColor-list-${COMP}`]: "$color-primary-50",
17716
+ // [`textColor-trigger-${COMP}`]: "$color-primary-100",
17708
17717
  }
17709
17718
  });
17710
17719
  const COMP$i = "Text";
@@ -2021,6 +2021,7 @@
2021
2021
  "const-color-surface-800": "hsl(204, 30.3%, 27%)",
2022
2022
  "const-color-surface-900": "hsl(204, 30.3%, 16%)",
2023
2023
  "const-color-surface-950": "hsl(204, 30.3%, 13%)",
2024
+ "const-color-surface-1000": "hsl(204, 30.3%, 9%)",
2024
2025
  "const-color-surface": "$const-color-surface-500",
2025
2026
  // --- Primary color shades (bluish)
2026
2027
  "const-color-primary-50": "hsl(212,71.9%,94.5%)",
@@ -2229,6 +2230,7 @@
2229
2230
  "color-surface-800": "$const-color-surface-800",
2230
2231
  "color-surface-900": "$const-color-surface-900",
2231
2232
  "color-surface-950": "$const-color-surface-950",
2233
+ "color-surface-1000": "$const-color-surface-1000",
2232
2234
  "color-surface": "$const-color-surface-500",
2233
2235
  "color-surface-base": "$color-surface-0",
2234
2236
  "color-surface-lower": "$color-surface-100",
@@ -2317,7 +2319,7 @@
2317
2319
  dark: {
2318
2320
  themeVars: {
2319
2321
  // --- Default surface color shades (form white to black)
2320
- "color-surface-0": "$const-color-surface-950",
2322
+ "color-surface-0": "$const-color-surface-1000",
2321
2323
  "color-surface-50": "$const-color-surface-950",
2322
2324
  "color-surface-100": "$const-color-surface-900",
2323
2325
  "color-surface-200": "$const-color-surface-800",
@@ -2329,6 +2331,7 @@
2329
2331
  "color-surface-800": "$const-color-surface-200",
2330
2332
  "color-surface-900": "$const-color-surface-100",
2331
2333
  "color-surface-950": "$const-color-surface-50",
2334
+ "color-surface-1000": "$const-color-surface-0",
2332
2335
  "color-surface": "$const-color-surface-500",
2333
2336
  "color-surface-base": "$color-surface-0",
2334
2337
  "color-surface-lower": "$color-surface-0",
@@ -15318,7 +15321,12 @@
15318
15321
  )
15319
15322
  },
15320
15323
  contextVars: {
15321
- $item: d(`This property represents the value of an item in the data list.`)
15324
+ $item: d(`This property represents the value of an item in the data list.`),
15325
+ $itemIndex: dComponent(
15326
+ "This integer value represents the current row index (zero-based) while rendering children."
15327
+ ),
15328
+ $isFirst: dComponent("This boolean value indicates if the component renders its first item."),
15329
+ $isLast: dComponent("This boolean value indicates if the component renders its last item.")
15322
15330
  },
15323
15331
  themeVars: parseScssVar(styles$h.themeVars)
15324
15332
  });
@@ -17668,7 +17676,7 @@
17668
17676
  [`color-${COMP$k}Item--active`]: "$color-primary-500"
17669
17677
  }
17670
17678
  });
17671
- const themeVars$5 = `'{"backgroundColor-Tabs": "var(--xmlui-backgroundColor-Tabs)", "borderColor-Tabs": "var(--xmlui-borderColor-Tabs)", "borderWidth-Tabs": "var(--xmlui-borderWidth-Tabs)", "borderColor-active-Tabs": "var(--xmlui-borderColor-active-Tabs)", "backgroundColor-trigger-Tabs": "var(--xmlui-backgroundColor-trigger-Tabs)", "textColor-trigger-Tabs": "var(--xmlui-textColor-trigger-Tabs)", "backgroundColor-trigger-Tabs--hover": "var(--xmlui-backgroundColor-trigger-Tabs--hover)", "backgroundColor-list-Tabs": "var(--xmlui-backgroundColor-list-Tabs)"}'`;
17679
+ const themeVars$5 = `'{"padding-trigger-Tabs": "var(--xmlui-padding-trigger-Tabs)", "paddingHorizontal-trigger-Tabs": "var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs))", "paddingVertical-trigger-Tabs": "var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs))", "paddingLeft-trigger-Tabs": "var(--xmlui-paddingLeft-trigger-Tabs, var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "paddingRight-trigger-Tabs": "var(--xmlui-paddingRight-trigger-Tabs, var(--xmlui-paddingHorizontal-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "paddingTop-trigger-Tabs": "var(--xmlui-paddingTop-trigger-Tabs, var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "paddingBottom-trigger-Tabs": "var(--xmlui-paddingBottom-trigger-Tabs, var(--xmlui-paddingVertical-trigger-Tabs, var(--xmlui-padding-trigger-Tabs)))", "backgroundColor-Tabs": "var(--xmlui-backgroundColor-Tabs)", "borderColor-Tabs": "var(--xmlui-borderColor-Tabs)", "borderWidth-Tabs": "var(--xmlui-borderWidth-Tabs)", "borderColor-active-Tabs": "var(--xmlui-borderColor-active-Tabs)", "backgroundColor-trigger-Tabs": "var(--xmlui-backgroundColor-trigger-Tabs)", "borderRadius-trigger-Tabs": "var(--xmlui-borderRadius-trigger-Tabs)", "border-trigger-Tabs": "var(--xmlui-border-trigger-Tabs)", "textColor-trigger-Tabs": "var(--xmlui-textColor-trigger-Tabs)", "backgroundColor-trigger-Tabs--hover": "var(--xmlui-backgroundColor-trigger-Tabs--hover)", "backgroundColor-trigger-Tabs--active": "var(--xmlui-backgroundColor-trigger-Tabs--active)", "backgroundColor-list-Tabs": "var(--xmlui-backgroundColor-list-Tabs)", "borderRadius-list-Tabs": "var(--xmlui-borderRadius-list-Tabs)", "border-list-Tabs": "var(--xmlui-border-list-Tabs)"}'`;
17672
17680
  const styles$5 = {
17673
17681
  themeVars: themeVars$5
17674
17682
  };
@@ -17693,15 +17701,16 @@
17693
17701
  },
17694
17702
  themeVars: parseScssVar(styles$5.themeVars),
17695
17703
  defaultThemeVars: {
17696
- [`backgroundColor-${COMP$j}`]: "$backgroundColor-primary",
17704
+ // [`backgroundColor-${COMP}`]: "transparent",
17697
17705
  [`borderStyle-${COMP$j}`]: "solid",
17698
17706
  [`borderColor-${COMP$j}`]: "$borderColor",
17699
17707
  [`borderColor-active-${COMP$j}`]: "$color-primary",
17700
17708
  [`borderWidth-${COMP$j}`]: "2px",
17701
- [`backgroundColor-trigger-${COMP$j}`]: "$backgroundColor-primary",
17702
- [`backgroundColor-trigger-${COMP$j}--hover`]: "$color-primary-50",
17703
- [`backgroundColor-list-${COMP$j}`]: "$color-primary-50",
17704
- [`textColor-trigger-${COMP$j}`]: "$color-primary-100"
17709
+ // [`backgroundColor-trigger-${COMP}`]: "transparent",
17710
+ [`backgroundColor-trigger-${COMP$j}--hover`]: "$color-surface-100",
17711
+ [`padding-trigger-${COMP$j}`]: "$space-4"
17712
+ // [`backgroundColor-list-${COMP}`]: "$color-primary-50",
17713
+ // [`textColor-trigger-${COMP}`]: "$color-primary-100",
17705
17714
  }
17706
17715
  });
17707
17716
  const COMP$i = "Text";