@nation-a/ui 0.10.7 → 0.11.0
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.cjs +224 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +224 -23
- package/dist/index.js.map +1 -1
- package/dist/styled-system/styles.css +0 -4
- package/dist/types/components/Tabs/Tabs.stories.d.ts +1 -1
- package/dist/types/components/Tabs/index.d.ts +2 -2
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1536,10 +1536,6 @@ html:not(#\#),body:not(#\#) {
|
|
|
1536
1536
|
background: var(--colors-content-neutral-bold);
|
|
1537
1537
|
}
|
|
1538
1538
|
|
|
1539
|
-
.z_-1:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1540
|
-
z-index: -1;
|
|
1541
|
-
}
|
|
1542
|
-
|
|
1543
1539
|
.d_none:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
|
|
1544
1540
|
display: none;
|
|
1545
1541
|
}
|
|
@@ -15,7 +15,7 @@ export type TabsListProps = Assign<React.HTMLAttributes<HTMLDivElement>, ArkTabs
|
|
|
15
15
|
export type TabsTriggerProps = Assign<React.HTMLAttributes<HTMLButtonElement>, ArkTabs.TriggerBaseProps>;
|
|
16
16
|
export type TabsContentProps = Assign<React.HTMLAttributes<HTMLDivElement>, ArkTabs.ContentBaseProps>;
|
|
17
17
|
export type TabsIndicatorProps = Assign<React.HTMLAttributes<HTMLDivElement>, ArkTabs.IndicatorBaseProps>;
|
|
18
|
-
|
|
18
|
+
declare const Tabs: ((props: RootProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
19
19
|
Root: (props: RootProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
20
|
List: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement>, "asChild"> & ArkTabs.ListBaseProps & React.RefAttributes<HTMLDivElement>>;
|
|
21
21
|
Trigger: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLButtonElement>, keyof ArkTabs.TriggerBaseProps> & ArkTabs.TriggerBaseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -23,4 +23,4 @@ export declare const Tabs: ((props: RootProps) => import("react/jsx-runtime").JS
|
|
|
23
23
|
Indicator: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement>, "asChild"> & ArkTabs.IndicatorBaseProps & React.RefAttributes<HTMLDivElement>>;
|
|
24
24
|
};
|
|
25
25
|
export declare const TabsContext: (props: ArkTabs.ContextProps) => React.ReactNode;
|
|
26
|
-
export
|
|
26
|
+
export default Tabs;
|
|
@@ -9,4 +9,5 @@ export { default as Tag, type TagProps } from './Tag';
|
|
|
9
9
|
export { Portal, type PortalProps } from '@ark-ui/react';
|
|
10
10
|
export { default as Input, type InputProps } from './Input';
|
|
11
11
|
export { default as TextArea, type TextAreaProps } from './TextArea';
|
|
12
|
+
export { default as Tabs, type TabsProps } from './Tabs';
|
|
12
13
|
export * from './Layout';
|