@modul/mbui 1.1.0-beta-dev-8e6814b1 → 1.1.0-beta-dev-67d48584

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modul/mbui",
3
- "version": "1.1.0-beta-dev-8e6814b1",
3
+ "version": "1.1.0-beta-dev-67d48584",
4
4
  "packageManager": "yarn@3.5.1",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- export interface ISelectOption {
3
- className?: string | undefined;
4
- leftIcon?: React.ReactElement;
5
- leftIconCSS?: string | undefined;
6
- label: string;
7
- labelCSS?: string | undefined;
8
- rightLabel?: React.ReactNode;
9
- secondLabel?: React.ReactNode;
10
- secondLabelCSS?: string | undefined;
11
- value: string;
12
- [key: string]: any;
13
- }
14
- interface IOptionWrapperProps {
15
- component: React.FC<ISelectOption>;
16
- optionWrapperCSS?: string;
17
- option: ISelectOption;
18
- isChecked?: boolean;
19
- onSelect: (option: ISelectOption) => void;
20
- multiple?: boolean;
21
- }
22
- export declare const Option: React.FC<ISelectOption>;
23
- export declare const OptionWrapper: React.FC<IOptionWrapperProps>;
24
- export {};
@@ -1,15 +0,0 @@
1
- import { FC, MouseEvent } from 'react';
2
- import { ISelectOption } from './SelectDrawer';
3
- export interface ISelectValue {
4
- isClearable?: boolean;
5
- onClear: (evt: MouseEvent<HTMLButtonElement>) => void;
6
- multiple?: boolean;
7
- selected: ISelectOption[];
8
- placeholder?: string | undefined;
9
- }
10
- interface IValueWrapper {
11
- valueProps: ISelectValue;
12
- valueComponent?: FC<ISelectValue>;
13
- }
14
- export declare const ValueWrapper: FC<IValueWrapper>;
15
- export {};
@@ -1,4 +0,0 @@
1
- import { FC } from 'react';
2
- import { ISelectOption } from '../SelectDrawer/SelectDrawer';
3
- declare const SelectBankAccountBalanceOption: FC<ISelectOption>;
4
- export { SelectBankAccountBalanceOption };
@@ -1,4 +0,0 @@
1
- import { FC } from 'react';
2
- import { ISelectValue } from '../SelectDrawer/SelectDrawer';
3
- declare const SelectPrimaryAccountValue: FC<ISelectValue>;
4
- export { SelectPrimaryAccountValue };