@blockscout/ui-toolkit 2.8.0-alpha.0 → 2.8.0-alpha.1

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.
@@ -11,10 +11,11 @@ export interface BaseProps {
11
11
  isSticky: boolean;
12
12
  activeTab: string;
13
13
  }) => HTMLChakraProps<'div'>);
14
- listItemProps?: TabsTriggerProps | (({ index, isActive }: {
14
+ listItemProps?: Partial<TabsTriggerProps> | (({ index, isActive, value }: {
15
15
  index: number;
16
16
  isActive: boolean;
17
- }) => TabsTriggerProps);
17
+ value: string;
18
+ }) => Partial<TabsTriggerProps> | undefined);
18
19
  rightSlot?: React.ReactNode;
19
20
  rightSlotProps?: SlotProps;
20
21
  leftSlot?: React.ReactNode;
package/dist/index.js CHANGED
@@ -7210,6 +7210,7 @@ const Xh = fe({
7210
7210
  "&::-webkit-date-and-time-value": {
7211
7211
  textAlign: "left"
7212
7212
  },
7213
+ textOverflow: "ellipsis",
7213
7214
  textAlign: "start",
7214
7215
  borderRadius: "base",
7215
7216
  height: "var(--input-height)",
@@ -10770,7 +10771,7 @@ const rn = {
10770
10771
  scrollSnapAlign: "start",
10771
10772
  flexShrink: 0,
10772
10773
  ...og(H, E, d),
10773
- ...typeof o == "function" ? o({ index: H, isActive: U === H }) : o,
10774
+ ...typeof o == "function" ? o({ index: H, isActive: U === H, value: s }) : o,
10774
10775
  children: [
10775
10776
  typeof F.title == "function" ? F.title() : F.title,
10776
10777
  /* @__PURE__ */ h(lo, { count: F.count })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/ui-toolkit",
3
- "version": "2.8.0-alpha.0",
3
+ "version": "2.8.0-alpha.1",
4
4
  "description": "A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",