@modul/mbui 0.0.38-beta-select-b4e8cf2c → 0.0.38-beta-select-df293040

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
3
  declare const chipVariants: (props?: {
4
- variant?: "outline" | "primary" | "secondary" | "ghost" | "success" | "primary-outline";
4
+ variant?: "outline" | "primary" | "secondary" | "success" | "primary-outline" | "ghost";
5
5
  size?: "lg" | "md" | "sm" | "xs" | "xxs";
6
6
  } & import("class-variance-authority/dist/types").ClassProp) => string;
7
7
  export interface IChipProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof chipVariants> {
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { ISelectOption } from '../SelectDrawer';
3
+ declare const SelectSecondaryOption: FC<ISelectOption>;
4
+ export { SelectSecondaryOption };
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { ISelectValue } from '../SelectDrawer';
3
+ declare const SelectPrimaryAccountValue: FC<ISelectValue>;
4
+ export { SelectPrimaryAccountValue };
@@ -4,3 +4,5 @@ export { SelectAsync } from './SelectAsync';
4
4
  export { SelectBase } from './SelectBase';
5
5
  export { Select } from './Select';
6
6
  export { SelectDrawer, type ISelectValue, type ISelectOption } from './SelectDrawer';
7
+ export { SelectSecondaryOption } from './components/SelectBankAccountOption';
8
+ export { SelectPrimaryAccountValue } from './components/SelectPrimaryAccountValue';