@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.
@@ -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
  }
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { Tabs, TabsProps } from '.';
2
+ import { default as Tabs, TabsProps } from '.';
3
3
  declare const meta: Meta<typeof Tabs>;
4
4
  export default meta;
5
5
  type Story = StoryObj<TabsProps>;
@@ -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
- export declare const Tabs: ((props: RootProps) => import("react/jsx-runtime").JSX.Element) & {
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nation-a/ui",
3
- "version": "0.10.7",
3
+ "version": "0.11.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",