@stokelp/ui 2.65.1 → 2.66.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/{styled.d.ts → AppNavigation.d.ts} +3 -0
- package/dist/components/app/navigation/index.d.ts +2 -2
- package/dist/style.css +1 -1
- package/dist/ui.cjs +12 -12
- package/dist/ui.cjs.map +1 -1
- package/dist/ui.js +2080 -1993
- package/dist/ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export declare const ItemContent: StyledComponent<"div", {}>;
|
|
|
13
13
|
export declare const ItemLabel: StyledComponent<"p", {}>;
|
|
14
14
|
export declare const ItemIcon: FC<IconProps>;
|
|
15
15
|
export declare const Footer: StyledComponent<"footer", {}>;
|
|
16
|
+
export declare const MiniaturizeTrigger: StyledComponent<"div", {}>;
|
|
16
17
|
export interface AppNavigationProps extends ComponentProps<typeof Root> {
|
|
17
18
|
}
|
|
18
19
|
export interface AppNavigationHeaderProps extends ComponentProps<typeof Header> {
|
|
@@ -30,3 +31,5 @@ export interface AppNavigationItemIconProps extends ComponentProps<typeof ItemIc
|
|
|
30
31
|
}
|
|
31
32
|
export interface AppNavigationFooterProps extends ComponentProps<typeof Footer> {
|
|
32
33
|
}
|
|
34
|
+
export interface AppNavigationMiniaturizeTriggerProps extends ComponentProps<typeof MiniaturizeTrigger> {
|
|
35
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * as AppNavigation from './
|
|
2
|
-
export type { AppNavigationProps, AppNavigationHeaderProps, AppNavigationBodyProps, AppNavigationItemProps, AppNavigationItemSubItemsProps, AppNavigationItemContentProps, AppNavigationItemLabelProps, AppNavigationItemIconProps, AppNavigationFooterProps, } from './
|
|
1
|
+
export * as AppNavigation from './AppNavigation.tsx';
|
|
2
|
+
export type { AppNavigationProps, AppNavigationHeaderProps, AppNavigationBodyProps, AppNavigationItemProps, AppNavigationItemSubItemsProps, AppNavigationItemContentProps, AppNavigationItemLabelProps, AppNavigationItemIconProps, AppNavigationFooterProps, AppNavigationMiniaturizeTriggerProps, } from './AppNavigation.tsx';
|
|
3
3
|
export * from './language-select';
|