@dimasbaguspm/versaur 0.0.58 → 0.0.59

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.
@@ -1,25 +0,0 @@
1
- import { AppBarLeadingProps, AppBarHeadlineProps, AppBarSubtitleProps, AppBarTrailingProps, AppBarCenterProps, AppBarBottomProps } from './types';
2
- /**
3
- * Bottom section (flexible area for additional content, e.g. tabs)
4
- */
5
- export declare const AppBarBottom: import('react').ForwardRefExoticComponent<AppBarBottomProps & import('react').RefAttributes<HTMLDivElement>>;
6
- /**
7
- * Leading section (logo, nav icon)
8
- */
9
- export declare const AppBarLeading: import('react').ForwardRefExoticComponent<AppBarLeadingProps & import('react').RefAttributes<HTMLDivElement>>;
10
- /**
11
- * Headline section (main title)
12
- */
13
- export declare const AppBarHeadline: import('react').ForwardRefExoticComponent<AppBarHeadlineProps & import('react').RefAttributes<HTMLParagraphElement>>;
14
- /**
15
- * Subtitle section (secondary text)
16
- */
17
- export declare const AppBarSubtitle: import('react').ForwardRefExoticComponent<AppBarSubtitleProps & import('react').RefAttributes<HTMLParagraphElement>>;
18
- /**
19
- * Trailing section (actions, avatar, etc.)
20
- */
21
- export declare const AppBarTrailing: import('react').ForwardRefExoticComponent<AppBarTrailingProps & import('react').RefAttributes<HTMLDivElement>>;
22
- /**
23
- * Center section (vertical stack of headline/subtitle)
24
- */
25
- export declare const AppBarCenter: import('react').ForwardRefExoticComponent<AppBarCenterProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -1,9 +0,0 @@
1
- import { AppBarProps } from './types';
2
- export declare const AppBar: (({ children, className, variant, }: AppBarProps) => import("react/jsx-runtime").JSX.Element) & {
3
- Leading: import('react').ForwardRefExoticComponent<import('./types').AppBarLeadingProps & import('react').RefAttributes<HTMLDivElement>>;
4
- Headline: import('react').ForwardRefExoticComponent<import('./types').AppBarHeadlineProps & import('react').RefAttributes<HTMLParagraphElement>>;
5
- Subtitle: import('react').ForwardRefExoticComponent<import('./types').AppBarSubtitleProps & import('react').RefAttributes<HTMLParagraphElement>>;
6
- Trailing: import('react').ForwardRefExoticComponent<import('./types').AppBarTrailingProps & import('react').RefAttributes<HTMLDivElement>>;
7
- Center: import('react').ForwardRefExoticComponent<import('./types').AppBarCenterProps & import('react').RefAttributes<HTMLDivElement>>;
8
- Bottom: import('react').ForwardRefExoticComponent<import('./types').AppBarBottomProps & import('react').RefAttributes<HTMLDivElement>>;
9
- };
@@ -1,2 +0,0 @@
1
- export { AppBar } from './app-bar';
2
- export * from './types';
@@ -1,46 +0,0 @@
1
- import { TextProps } from '../../primitive';
2
- import { ReactNode, HTMLAttributes } from 'react';
3
- /**
4
- * Props for AppBarLeading
5
- */
6
- export interface AppBarLeadingProps extends HTMLAttributes<HTMLDivElement> {
7
- children: ReactNode;
8
- }
9
- /**
10
- * Props for AppBarHeadline
11
- */
12
- export interface AppBarHeadlineProps extends TextProps {
13
- children: ReactNode;
14
- }
15
- /**
16
- * Props for AppBarSubtitle
17
- */
18
- export interface AppBarSubtitleProps extends TextProps {
19
- children: ReactNode;
20
- }
21
- /**
22
- * Props for AppBarTrailing
23
- */
24
- export interface AppBarTrailingProps extends HTMLAttributes<HTMLDivElement> {
25
- children: ReactNode;
26
- }
27
- /**
28
- * Props for AppBarCenter (vertical stack of headline/subtitle)
29
- */
30
- export interface AppBarCenterProps extends HTMLAttributes<HTMLDivElement> {
31
- children: ReactNode;
32
- placement?: 'start' | 'center' | 'end';
33
- }
34
- /**
35
- * AppBarProps for the main AppBar container
36
- */
37
- export interface AppBarProps extends HTMLAttributes<HTMLDivElement> {
38
- children: React.ReactNode;
39
- variant?: 'primary' | 'secondary' | 'tertiary' | 'ghost' | 'neutral';
40
- }
41
- /**
42
- * Props for AppBarBottom (bottom area for additional content)
43
- */
44
- export interface AppBarBottomProps extends HTMLAttributes<HTMLDivElement> {
45
- children: ReactNode;
46
- }