cekat-ui 1.2.5 → 1.2.6

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.
@@ -17,12 +17,21 @@ export interface TabBrowserProps extends Omit<React.ButtonHTMLAttributes<HTMLBut
17
17
  /** Whether this tab is the currently selected one. */
18
18
  active?: boolean;
19
19
  type?: TabBrowserType;
20
+ /**
21
+ * Removes the browser-tab silhouette and fixed sizing so `className` can fully control
22
+ * padding, dimensions, borders, and hover states.
23
+ */
24
+ unstyled?: boolean;
20
25
  /** Icon rendered before the label. */
21
26
  iconLeft?: React.ReactNode;
22
27
  /** Rendered after the label, e.g. a status Badge. */
23
28
  trailing?: React.ReactNode;
24
29
  /** Shorthand for the native `title`, which wins if both are given. */
25
30
  tooltip?: string;
31
+ /** Classes applied to the tab's inner content element. */
32
+ contentClassName?: string;
33
+ /** Inline styles applied to the tab's inner content element. */
34
+ contentStyle?: React.CSSProperties;
26
35
  children: React.ReactNode;
27
36
  }
28
37
  export interface TabBrowserBarProps {