lucent-ui 0.9.1 → 0.9.2

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.
package/dist/index.d.ts CHANGED
@@ -130,6 +130,13 @@ export declare type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'danger'
130
130
 
131
131
  export declare function Card({ header, footer, children, padding, shadow, radius, style, }: CardProps): JSX_2.Element;
132
132
 
133
+ export declare function CardBleed({ children, style }: CardBleedProps): JSX_2.Element;
134
+
135
+ export declare interface CardBleedProps {
136
+ children: ReactNode;
137
+ style?: CSSProperties;
138
+ }
139
+
133
140
  export declare const CardManifest: ComponentManifest;
134
141
 
135
142
  export declare type CardPadding = 'none' | 'sm' | 'md' | 'lg';
@@ -990,16 +997,19 @@ export declare interface TableProps extends HTMLAttributes<HTMLTableElement> {
990
997
  striped?: boolean;
991
998
  }
992
999
 
993
- export declare function Tabs({ tabs, defaultValue, value, onChange, style }: TabsProps): JSX_2.Element;
1000
+ export declare function Tabs({ tabs, defaultValue, value, onChange, variant, style }: TabsProps): JSX_2.Element;
994
1001
 
995
1002
  export declare interface TabsProps {
996
1003
  tabs: TabItem[];
997
1004
  defaultValue?: string;
998
1005
  value?: string;
999
1006
  onChange?: (value: string) => void;
1007
+ variant?: TabsVariant;
1000
1008
  style?: CSSProperties;
1001
1009
  }
1002
1010
 
1011
+ export declare type TabsVariant = 'underline' | 'pills';
1012
+
1003
1013
  export declare function Tag({ children, variant, size, onDismiss, disabled }: TagProps): JSX_2.Element;
1004
1014
 
1005
1015
  export declare const TagManifest: ComponentManifest;