@stokelp/ui 2.15.0 → 2.16.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.
@@ -1,2 +1,3 @@
1
1
  export * as AppNavigation from './styled';
2
2
  export type { AppNavigationProps, AppNavigationHeaderProps, AppNavigationBodyProps, AppNavigationItemProps, AppNavigationItemSubItemsProps, AppNavigationItemContentProps, AppNavigationItemLabelProps, AppNavigationItemIconProps, AppNavigationFooterProps, } from './styled';
3
+ export * from './language-select';
@@ -0,0 +1,16 @@
1
+ import { SelectRootProps } from '@ark-ui/react';
2
+ import { FC, ReactNode } from 'react';
3
+ import { appNavigationLanguageSelect } from '@stokelp/styled-system/recipes';
4
+ import { HTMLStyledProps, RecipeVariantProps } from '@stokelp/styled-system/types';
5
+
6
+ type SelectItem = {
7
+ value: string | number;
8
+ label: string;
9
+ disabled?: boolean;
10
+ flag: ReactNode;
11
+ };
12
+ export type AppNavigationLanguageSelectProps = Omit<SelectRootProps<SelectItem>, 'collection' | 'multiple'> & {
13
+ usePortal?: boolean;
14
+ } & HTMLStyledProps<'div'> & RecipeVariantProps<typeof appNavigationLanguageSelect>;
15
+ export declare const AppNavigationLanguageSelect: FC<AppNavigationLanguageSelectProps>;
16
+ export {};
@@ -0,0 +1 @@
1
+ export * from './AppNavigationLanguageSelect';