@stokelp/ui 2.75.0 → 2.77.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/components/app/navigation/AppNavigation.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/ui.cjs +8 -8
- package/dist/ui.cjs.map +1 -1
- package/dist/ui.js +661 -647
- package/dist/ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ComponentProps, FC } from 'react';
|
|
1
|
+
import { ComponentProps, FC, ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
2
2
|
import { ComponentVariants } from '../../../utils/slots';
|
|
3
3
|
import { StyledComponent } from '@stokelp/styled-system/types';
|
|
4
4
|
import { AppNavigationRecipe } from '@stokelp/styled-system/recipes';
|
|
5
|
-
import { IconProps } from '
|
|
5
|
+
import { IconProps, TagProps } from '../..';
|
|
6
6
|
|
|
7
7
|
export declare const Root: ComponentVariants<StyledComponent<"nav", {}>, AppNavigationRecipe>;
|
|
8
8
|
export declare const Header: StyledComponent<"header", {}>;
|
|
@@ -12,6 +12,7 @@ export declare const ItemSubItems: StyledComponent<"div", {}>;
|
|
|
12
12
|
export declare const ItemContent: StyledComponent<"div", {}>;
|
|
13
13
|
export declare const ItemLabel: StyledComponent<"p", {}>;
|
|
14
14
|
export declare const ItemIcon: FC<IconProps>;
|
|
15
|
+
export declare const ItemAlpha: ForwardRefExoticComponent< TagProps & RefAttributes<HTMLDivElement>>;
|
|
15
16
|
export declare const Footer: StyledComponent<"footer", {}>;
|
|
16
17
|
export declare const MiniaturizeTrigger: StyledComponent<"div", {}>;
|
|
17
18
|
export interface AppNavigationProps extends ComponentProps<typeof Root> {
|