@aksara-ui/core
Advanced tools
Comparing version 1.0.0-canary.25 to 1.0.0-canary.26
import * as React from 'react'; | ||
export interface DropdownMenuProps { | ||
import { BoxProps } from '../../../../foundations'; | ||
export interface DropdownMenuProps extends BoxProps { | ||
className?: string; | ||
tipOffset?: number; | ||
width?: number; | ||
children?: React.ReactNode; | ||
} | ||
declare const DropdownMenu: React.FC<DropdownMenuProps>; | ||
export default DropdownMenu; | ||
declare const _default: React.ForwardRefExoticComponent<DropdownMenuProps & React.RefAttributes<HTMLDivElement>>; | ||
export default _default; |
@@ -1,3 +0,2 @@ | ||
export declare const Base: import("styled-components").StyledComponent<"div", any, {}, never>; | ||
export declare const Arrow: import("styled-components").StyledComponent<"div", any, {}, never>; | ||
export declare const MenuCard: import("styled-components").StyledComponent<"div", any, import("../../../../foundations").CardProps, never>; |
@@ -5,4 +5,5 @@ import * as React from 'react'; | ||
style?: React.CSSProperties; | ||
children?: React.ReactNode; | ||
} | ||
declare const DropdownMenuHeader: React.FC<DropdownMenuHeaderProps>; | ||
export default DropdownMenuHeader; | ||
declare const _default: React.ForwardRefExoticComponent<DropdownMenuHeaderProps & React.RefAttributes<HTMLDivElement>>; | ||
export default _default; |
@@ -6,4 +6,5 @@ import * as React from 'react'; | ||
isActive?: boolean; | ||
children?: React.ReactNode; | ||
} | ||
declare const DropdownMenuItem: React.FC<DropdownMenuItemProps>; | ||
export default DropdownMenuItem; | ||
declare const _default: React.ForwardRefExoticComponent<DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>>; | ||
export default _default; |
@@ -0,7 +1,14 @@ | ||
import { Story } from '@storybook/react'; | ||
import * as React from 'react'; | ||
import { DropdownMenuProps } from './components/DropdownMenu'; | ||
declare const _default: { | ||
title: string; | ||
component: (React.FC<import("./components/DropdownMenu").DropdownMenuProps> | import("styled-components").StyledComponent<"hr", any, {}, never> | React.FC<import("./components/DropdownMenuItem/DropdownMenuHeader").DropdownMenuHeaderProps>)[]; | ||
component: React.ForwardRefExoticComponent<import("./components/DropdownMenuItem/DropdownMenuHeader").DropdownMenuHeaderProps & React.RefAttributes<HTMLDivElement>>[]; | ||
argTypes: { | ||
block: { | ||
control: string; | ||
}; | ||
}; | ||
}; | ||
export default _default; | ||
export declare const Example: () => JSX.Element; | ||
export declare const Example: Story<DropdownMenuProps>; |
import * as React from 'react'; | ||
import { Story } from '@storybook/react'; | ||
import { FormLabelProps } from '../FormLabel'; | ||
import { InputTextProps } from './InputText'; | ||
declare const _default: { | ||
title: string; | ||
component: React.ForwardRefExoticComponent<import("./InputText").InputTextProps & React.RefAttributes<HTMLInputElement>>; | ||
component: React.ForwardRefExoticComponent<InputTextProps & React.RefAttributes<HTMLInputElement>>; | ||
argTypes: { | ||
addon: { | ||
control: null; | ||
}; | ||
children: { | ||
control: string; | ||
name: string; | ||
}; | ||
}; | ||
}; | ||
export default _default; | ||
export declare const Example: () => JSX.Element; | ||
export declare const Example: Story<InputTextProps & FormLabelProps>; |
import * as React from 'react'; | ||
import { MessageProps } from './Message'; | ||
declare const _default: { | ||
title: string; | ||
component: React.FC<import("./Message").MessageProps>; | ||
component: React.FC<MessageProps>; | ||
argTypes: { | ||
style: { | ||
control: null; | ||
}; | ||
}; | ||
}; | ||
export default _default; | ||
export declare const BasicExample: () => JSX.Element; | ||
export declare const SectionLevel: () => JSX.Element; | ||
export declare const Closable: () => JSX.Element; | ||
export declare const BasicExample: any; | ||
export declare const SectionLevel: any; | ||
export declare const Closable: { | ||
(): JSX.Element; | ||
parameters: { | ||
controls: { | ||
hideNoControlsWarning: boolean; | ||
}; | ||
}; | ||
}; |
@@ -8,1 +8,2 @@ import * as React from 'react'; | ||
export declare const BasicExample: () => JSX.Element; | ||
export declare const WithDropdownMenu: () => JSX.Element; |
import * as React from 'react'; | ||
import { Story } from '@storybook/react'; | ||
import { SkeletonProps } from './Skeleton'; | ||
declare const _default: { | ||
title: string; | ||
component: React.FC<import("./Skeleton").SkeletonProps>; | ||
component: React.FC<SkeletonProps>; | ||
argTypes: { | ||
style: { | ||
control: null; | ||
}; | ||
className: { | ||
control: null; | ||
}; | ||
}; | ||
}; | ||
export default _default; | ||
export declare const Example: () => JSX.Element; | ||
export declare const Example: Story<SkeletonProps>; |
import * as React from 'react'; | ||
import { Story } from '@storybook/react'; | ||
import { SkeletonBoxProps } from './SkeletonBox'; | ||
declare const _default: { | ||
title: string; | ||
component: React.FC<import("./SkeletonBox").SkeletonBoxProps>; | ||
component: React.FC<SkeletonBoxProps>; | ||
}; | ||
export default _default; | ||
export declare const Example: () => JSX.Element; | ||
export declare const Example: Story<SkeletonBoxProps>; |
import * as React from 'react'; | ||
import { Story } from '@storybook/react'; | ||
import { TooltipProps } from './Tooltip'; | ||
declare const _default: { | ||
title: string; | ||
component: React.FC<import("./Tooltip").TooltipProps>; | ||
component: React.FC<TooltipProps>; | ||
parameters: { | ||
@@ -10,4 +12,15 @@ notes: { | ||
}; | ||
argTypes: { | ||
children: { | ||
control: null; | ||
}; | ||
className: { | ||
control: null; | ||
}; | ||
style: { | ||
control: null; | ||
}; | ||
}; | ||
}; | ||
export default _default; | ||
export declare const BasicExample: () => JSX.Element; | ||
export declare const BasicExample: Story<TooltipProps>; |
{ | ||
"name": "@aksara-ui/core", | ||
"version": "1.0.0-canary.25", | ||
"version": "1.0.0-canary.26", | ||
"description": "Aksara UI Core. The component library powering Kata Platform.", | ||
@@ -83,3 +83,3 @@ "main": "./lib/index.js", | ||
}, | ||
"gitHead": "c4497487f732fc79fa84373afe02713624a1473b" | ||
"gitHead": "91a1bf35c461b93c57d31e20d173e037dd150763" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
902460
11010