@innovaccer/design-system 2.28.3 → 2.29.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/CHANGELOG.md +41 -0
- package/css/dist/index.css +245 -0
- package/css/dist/index.css.map +1 -1
- package/css/src/components/avatarSelection.css +111 -0
- package/css/src/components/select.css +127 -0
- package/dist/.lib/tsconfig.type.tsbuildinfo +669 -22
- package/dist/core/common.type.d.ts +7 -0
- package/dist/core/components/atoms/avatar/Avatar.d.ts +1 -0
- package/dist/core/components/atoms/avatar/avatarIcon/AvatarIcon.d.ts +0 -4
- package/dist/core/components/atoms/avatarSelection/AvatarSelection.d.ts +59 -0
- package/dist/core/components/atoms/avatarSelection/AvatarSelectionContext.d.ts +19 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionEmptyState.d.ts +8 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionInput.d.ts +3 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionList.d.ts +20 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionOption.d.ts +15 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/AvatarSelectionPopover.d.ts +15 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/index.d.ts +5 -0
- package/dist/core/components/atoms/avatarSelection/avatarPopover/utils.d.ts +3 -0
- package/dist/core/components/atoms/avatarSelection/avatarsSelection/AvatarSelectionCount.d.ts +13 -0
- package/dist/core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatar.d.ts +15 -0
- package/dist/core/components/atoms/avatarSelection/avatarsSelection/SelectionAvatarsWrapper.d.ts +15 -0
- package/dist/core/components/atoms/avatarSelection/avatarsSelection/index.d.ts +2 -0
- package/dist/core/components/atoms/avatarSelection/avatarsSelection/utils.d.ts +3 -0
- package/dist/core/components/atoms/avatarSelection/index.d.ts +2 -0
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +19 -19
- package/dist/core/components/molecules/popover/Popover.d.ts +1 -1
- package/dist/core/components/molecules/tooltip/Tooltip.d.ts +2 -0
- package/dist/core/components/organisms/combobox/Combobox.d.ts +45 -0
- package/dist/core/components/organisms/combobox/ComboboxContext.d.ts +23 -0
- package/dist/core/components/organisms/combobox/ComboboxList.d.ts +20 -0
- package/dist/core/components/organisms/combobox/ComboboxOption.d.ts +18 -0
- package/dist/core/components/organisms/combobox/index.d.ts +2 -0
- package/dist/core/components/organisms/combobox/trigger/ChipInputBox.d.ts +3 -0
- package/dist/core/components/organisms/combobox/trigger/ComboboxTrigger.d.ts +20 -0
- package/dist/core/components/organisms/combobox/trigger/InputBox.d.ts +3 -0
- package/dist/core/components/organisms/combobox/trigger/MultiselectTrigger.d.ts +40 -0
- package/dist/core/components/organisms/combobox/trigger/index.d.ts +1 -0
- package/dist/core/components/organisms/combobox/trigger/utils.d.ts +3 -0
- package/dist/core/components/organisms/combobox/utils.d.ts +2 -0
- package/dist/core/components/organisms/listbox/Listbox.d.ts +2 -2
- package/dist/core/components/organisms/listbox/listboxItem/ListboxItem.d.ts +2 -1
- package/dist/core/components/organisms/select/SearchInput.d.ts +8 -0
- package/dist/core/components/organisms/select/Select.d.ts +35 -0
- package/dist/core/components/organisms/select/SelectContext.d.ts +24 -0
- package/dist/core/components/organisms/select/SelectEmptyTemplate.d.ts +9 -0
- package/dist/core/components/organisms/select/SelectFooter.d.ts +7 -0
- package/dist/core/components/organisms/select/SelectList.d.ts +20 -0
- package/dist/core/components/organisms/select/SelectOption.d.ts +19 -0
- package/dist/core/components/organisms/select/SelectTrigger.d.ts +24 -0
- package/dist/core/components/organisms/select/__test__/Select.test.d.ts +1 -0
- package/dist/core/components/organisms/select/__test__/utils.test.d.ts +1 -0
- package/dist/core/components/organisms/select/index.d.ts +2 -0
- package/dist/core/components/organisms/select/utils.d.ts +12 -0
- package/dist/core/index.d.ts +3 -0
- package/dist/core/index.type.d.ts +5 -0
- package/dist/index.esm.js +2146 -107
- package/dist/index.js +2010 -16
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ComboboxInputSize } from "../Combobox";
|
|
3
|
+
import { OptionType, IconType } from "../../../../common.type";
|
|
4
|
+
interface ComboboxTriggerProps {
|
|
5
|
+
multiSelect?: boolean;
|
|
6
|
+
value?: OptionType;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
error?: boolean;
|
|
10
|
+
onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
11
|
+
onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
12
|
+
onClear?: (event: React.MouseEvent<HTMLElement, MouseEvent> | React.KeyboardEvent<HTMLElement>) => void;
|
|
13
|
+
icon?: string;
|
|
14
|
+
iconType?: IconType;
|
|
15
|
+
size?: ComboboxInputSize;
|
|
16
|
+
chipValue?: OptionType[];
|
|
17
|
+
clearButton?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare const ComboboxTrigger: (props: ComboboxTriggerProps) => JSX.Element;
|
|
20
|
+
export default ComboboxTrigger;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ChipProps } from "../../../../index.type";
|
|
3
|
+
import { BaseProps } from "../../../../utils/types";
|
|
4
|
+
import { OptionType } from "../../../../common.type";
|
|
5
|
+
declare type ChipOptions = {
|
|
6
|
+
icon?: ChipProps['icon'];
|
|
7
|
+
type?: ChipProps['type'];
|
|
8
|
+
iconType?: ChipProps['iconType'];
|
|
9
|
+
clearButton?: ChipProps['clearButton'];
|
|
10
|
+
onClick?: (value: OptionType, index: number) => void;
|
|
11
|
+
};
|
|
12
|
+
export interface MultiSelectTriggerProps extends BaseProps {
|
|
13
|
+
allowDuplicates?: boolean;
|
|
14
|
+
chipOptions: ChipOptions;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
error?: boolean;
|
|
17
|
+
placeholder?: string;
|
|
18
|
+
value?: OptionType[];
|
|
19
|
+
defaultValue: OptionType[];
|
|
20
|
+
autoFocus?: boolean;
|
|
21
|
+
onChange?: (chips: OptionType[]) => void;
|
|
22
|
+
onKeyDown?: (e: React.KeyboardEvent) => void;
|
|
23
|
+
onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
24
|
+
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
25
|
+
onInputChange?: (e?: React.ChangeEvent<HTMLInputElement>) => void;
|
|
26
|
+
tabIndex?: number;
|
|
27
|
+
forwardedRef?: React.Ref<HTMLInputElement>;
|
|
28
|
+
role?: React.AriaRole;
|
|
29
|
+
}
|
|
30
|
+
export declare const MultiSelectTrigger: {
|
|
31
|
+
(props: MultiSelectTriggerProps): JSX.Element;
|
|
32
|
+
displayName: string;
|
|
33
|
+
defaultProps: {
|
|
34
|
+
chipOptions: {};
|
|
35
|
+
defaultValue: never[];
|
|
36
|
+
allowDuplicates: boolean;
|
|
37
|
+
autoFocus: boolean;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
export default MultiSelectTrigger;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./ComboboxTrigger";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const handleKeyDown: (event: React.KeyboardEvent, setOpenPopover?: React.Dispatch<React.SetStateAction<boolean>> | undefined, setHighlightFirstItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined, setHighlightLastItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined) => void;
|
|
3
|
+
export declare const focusListItem: (position: string, setFocusedOption?: React.Dispatch<React.SetStateAction<HTMLElement | undefined>> | undefined, listRef?: any) => void;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const handleKeyDown: (event: React.KeyboardEvent, focusedOption: Element | undefined, setFocusedOption?: React.Dispatch<React.SetStateAction<HTMLElement | undefined>> | undefined, setOpenPopover?: React.Dispatch<React.SetStateAction<boolean>> | undefined, inputTriggerRef?: any, setHighlightFirstItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined, setHighlightLastItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined, multiSelect?: boolean | undefined, listRef?: any) => void;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { BaseProps, BaseHtmlProps } from "../../../utils/types";
|
|
3
|
+
import { TListboxSize } from "../../../common.type";
|
|
3
4
|
declare type ListboxType = 'option' | 'description' | 'resource';
|
|
4
|
-
declare type ListboxSize = 'standard' | 'compressed' | 'tight';
|
|
5
5
|
export declare type TagType = 'ul' | 'ol' | 'div' | 'nav';
|
|
6
6
|
export interface ListboxProps extends BaseProps, BaseHtmlProps<HTMLUListElement | HTMLDivElement> {
|
|
7
7
|
children: React.ReactNode;
|
|
8
|
-
size:
|
|
8
|
+
size: TListboxSize;
|
|
9
9
|
type: ListboxType;
|
|
10
10
|
draggable?: boolean;
|
|
11
11
|
tagName: TagType;
|
|
@@ -9,9 +9,10 @@ export interface ListboxItemProps extends BaseProps, BaseHtmlProps<HTMLLIElement
|
|
|
9
9
|
selected?: boolean;
|
|
10
10
|
activated?: boolean;
|
|
11
11
|
id?: string;
|
|
12
|
-
value?:
|
|
12
|
+
value?: any;
|
|
13
13
|
tagName: ItemTagType;
|
|
14
14
|
onClick?: (e: React.MouseEvent, id?: string, value?: string) => void;
|
|
15
|
+
tabIndex?: number;
|
|
15
16
|
}
|
|
16
17
|
export declare const ListboxItem: {
|
|
17
18
|
(props: ListboxItemProps): JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { BaseProps } from "../../../utils/types";
|
|
3
|
+
export interface SelectInputProps extends BaseProps {
|
|
4
|
+
onClear?: (e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>) => void;
|
|
5
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare const SearchInput: (props: SelectInputProps) => JSX.Element;
|
|
8
|
+
export default SearchInput;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { OptionType } from "../../../common.type";
|
|
3
|
+
import SelectList from "./SelectList";
|
|
4
|
+
import SelectOption from "./SelectOption";
|
|
5
|
+
import { SelectTriggerProps } from "./SelectTrigger";
|
|
6
|
+
import SearchInput from "./SearchInput";
|
|
7
|
+
import SelectEmptyTemplate from "./SelectEmptyTemplate";
|
|
8
|
+
import SelectFooter from "./SelectFooter";
|
|
9
|
+
import { BaseProps } from "../../../utils/types";
|
|
10
|
+
export interface SelectProps extends BaseProps {
|
|
11
|
+
multiSelect?: boolean;
|
|
12
|
+
onSelect: (option?: OptionType | OptionType[]) => void;
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
width?: number;
|
|
15
|
+
popoverWidth?: number;
|
|
16
|
+
maxHeight?: number;
|
|
17
|
+
minHeight?: number;
|
|
18
|
+
value?: OptionType | OptionType[];
|
|
19
|
+
onOutsideClick?: () => void;
|
|
20
|
+
triggerOptions?: SelectTriggerProps;
|
|
21
|
+
}
|
|
22
|
+
export interface SelectMethods {
|
|
23
|
+
setOpen: (open: boolean) => void;
|
|
24
|
+
setFocusFirstItem: () => void;
|
|
25
|
+
setFocusLastItem: () => void;
|
|
26
|
+
}
|
|
27
|
+
export interface SelectComponent extends React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<SelectMethods>> {
|
|
28
|
+
Option: typeof SelectOption;
|
|
29
|
+
List: typeof SelectList;
|
|
30
|
+
SearchInput: typeof SearchInput;
|
|
31
|
+
EmptyTemplate: typeof SelectEmptyTemplate;
|
|
32
|
+
Footer: typeof SelectFooter;
|
|
33
|
+
}
|
|
34
|
+
export declare const Select: SelectComponent;
|
|
35
|
+
export default Select;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { OptionType } from "../../../common.type";
|
|
3
|
+
export declare type ContextProps = {
|
|
4
|
+
openPopover?: boolean;
|
|
5
|
+
setOpenPopover?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
6
|
+
selectValue?: OptionType | OptionType[];
|
|
7
|
+
setSelectValue?: React.Dispatch<React.SetStateAction<OptionType | OptionType[]>>;
|
|
8
|
+
isOptionSelected?: boolean;
|
|
9
|
+
setIsOptionSelected?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
10
|
+
onOptionClick?: (option: OptionType | OptionType[]) => void;
|
|
11
|
+
maxHeight?: number;
|
|
12
|
+
minHeight?: number;
|
|
13
|
+
withSearch?: boolean;
|
|
14
|
+
setWithSearch?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
15
|
+
multiSelect?: boolean;
|
|
16
|
+
listRef?: React.RefObject<HTMLDivElement>;
|
|
17
|
+
triggerRef?: React.RefObject<HTMLButtonElement>;
|
|
18
|
+
focusedOption?: HTMLElement;
|
|
19
|
+
setFocusedOption?: React.Dispatch<React.SetStateAction<HTMLElement | undefined>>;
|
|
20
|
+
setHighlightFirstItem?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
21
|
+
setHighlightLastItem?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
22
|
+
};
|
|
23
|
+
export declare const SelectContext: React.Context<ContextProps>;
|
|
24
|
+
export default SelectContext;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { BaseProps } from "../../../utils/types";
|
|
3
|
+
interface SelectEmptyTemplateProps extends BaseProps {
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
export declare const SelectEmptyTemplate: (props: SelectEmptyTemplateProps) => JSX.Element;
|
|
9
|
+
export default SelectEmptyTemplate;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseProps } from "../../../utils/types";
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
interface SelectFooterProps extends BaseProps {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
}
|
|
6
|
+
export declare const SelectFooter: (props: SelectFooterProps) => JSX.Element;
|
|
7
|
+
export default SelectFooter;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { TListboxSize } from "../../../common.type";
|
|
3
|
+
import { BaseProps } from "../../../utils/types";
|
|
4
|
+
declare type TagType = 'ul' | 'ol' | 'div' | 'nav';
|
|
5
|
+
export interface SelectListProps extends BaseProps {
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
size: TListboxSize;
|
|
8
|
+
tagName: TagType;
|
|
9
|
+
showDivider: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const SelectList: {
|
|
12
|
+
(props: SelectListProps): JSX.Element;
|
|
13
|
+
defaultProps: {
|
|
14
|
+
type: string;
|
|
15
|
+
showDivider: boolean;
|
|
16
|
+
size: string;
|
|
17
|
+
tagName: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export default SelectList;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { OptionType } from "../../../common.type";
|
|
3
|
+
import { BaseProps } from "../../../utils/types";
|
|
4
|
+
declare type checkedType = 'checked' | 'unchecked' | 'indeterminate';
|
|
5
|
+
export interface SelectOptionProps extends BaseProps {
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
option: OptionType;
|
|
8
|
+
onClick?: (option: OptionType) => void;
|
|
9
|
+
checkedState?: checkedType;
|
|
10
|
+
withCheckbox?: boolean;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export declare const SelectOption: {
|
|
14
|
+
(props: SelectOptionProps): JSX.Element;
|
|
15
|
+
defaultProps: {
|
|
16
|
+
withCheckbox: boolean;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export default SelectOption;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { IconType } from "../../../common.type";
|
|
3
|
+
import { BaseProps } from "../../../utils/types";
|
|
4
|
+
export declare type SelectTriggerSize = 'small' | 'regular';
|
|
5
|
+
export interface SelectTriggerProps extends BaseProps {
|
|
6
|
+
triggerSize?: SelectTriggerSize;
|
|
7
|
+
icon?: string;
|
|
8
|
+
iconType?: IconType;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
inlineLabel?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
withClearButton?: boolean;
|
|
13
|
+
onClear?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
14
|
+
setLabel?: (count: number) => string | undefined;
|
|
15
|
+
}
|
|
16
|
+
declare const SelectTrigger: {
|
|
17
|
+
(props: SelectTriggerProps): JSX.Element;
|
|
18
|
+
defaultProps: {
|
|
19
|
+
triggerSize: string;
|
|
20
|
+
placeholder: string;
|
|
21
|
+
withClearButton: boolean;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export default SelectTrigger;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { OptionType } from "../../../common.type";
|
|
3
|
+
export declare const mapInitialValue: (multiSelect: boolean, selectedValue: OptionType | OptionType[] | undefined) => OptionType | OptionType[];
|
|
4
|
+
export declare const elementExist: (targetObject: OptionType, mainList: OptionType | OptionType[] | undefined) => number;
|
|
5
|
+
export declare const removeOrAddToList: (targetObject: OptionType, prevList: OptionType[]) => OptionType[];
|
|
6
|
+
export declare const computeValue: (multiSelect: boolean | undefined, selectValue: any, setLabel?: ((count: number) => string | undefined) | undefined) => any;
|
|
7
|
+
export declare const handleKeyDownTrigger: (event: React.KeyboardEvent, setOpenPopover?: React.Dispatch<React.SetStateAction<boolean>> | undefined, setHighlightFirstItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined, setHighlightLastItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined) => void;
|
|
8
|
+
export declare const focusListItem: (position: string, setFocusedOption?: React.Dispatch<React.SetStateAction<HTMLElement | undefined>> | undefined, listRef?: any) => void;
|
|
9
|
+
export declare const handleKeyDown: (event: React.KeyboardEvent, focusedOption: Element | undefined, setFocusedOption?: React.Dispatch<React.SetStateAction<HTMLElement | undefined>> | undefined, setHighlightFirstItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined, setHighlightLastItem?: React.Dispatch<React.SetStateAction<boolean>> | undefined, listRef?: any, withSearch?: boolean | undefined, setOpenPopover?: React.Dispatch<React.SetStateAction<boolean>> | undefined, triggerRef?: any) => void;
|
|
10
|
+
export declare const handleEnterKey: (focusedOption: Element | undefined) => void;
|
|
11
|
+
export declare const navigateOptions: (direction: string, focusedOption: Element | undefined, setFocusedOption?: React.Dispatch<React.SetStateAction<HTMLElement | undefined>> | undefined, listRef?: any, withSearch?: boolean | undefined) => void;
|
|
12
|
+
export declare const handleInputKeyDown: (event: React.KeyboardEvent, listRef: any, setFocusedOption?: React.Dispatch<React.SetStateAction<HTMLElement | undefined>> | undefined, setOpenPopover?: React.Dispatch<React.SetStateAction<boolean>> | undefined, triggerRef?: any) => void;
|
package/dist/core/index.d.ts
CHANGED
|
@@ -88,4 +88,7 @@ export { ActionCard } from "./components/atoms/actionCard";
|
|
|
88
88
|
export { SelectionCard } from "./components/atoms/selectionCard";
|
|
89
89
|
export { Listbox } from "./components/organisms/listbox";
|
|
90
90
|
export { TextField } from "./components/organisms/textField";
|
|
91
|
+
export { AvatarSelection } from "./components/atoms/avatarSelection";
|
|
92
|
+
export { Combobox } from "./components/organisms/combobox";
|
|
93
|
+
export { Select } from "./components/organisms/select";
|
|
91
94
|
export { version } from "../package.json";
|
|
@@ -86,3 +86,8 @@ export { ActionCardProps } from "./components/atoms/actionCard";
|
|
|
86
86
|
export { SelectionCardProps } from "./components/atoms/selectionCard";
|
|
87
87
|
export { ListboxProps, ListboxItemProps } from "./components/organisms/listbox";
|
|
88
88
|
export { TextFieldProps } from "./components/organisms/textField";
|
|
89
|
+
export { AvatarImageProps } from "./components/atoms/avatar/avatarImage";
|
|
90
|
+
export { AvatarIconProps } from "./components/atoms/avatar/avatarIcon";
|
|
91
|
+
export { AvatarSelectionProps } from "./components/atoms/avatarSelection";
|
|
92
|
+
export { ComboboxProps } from "./components/organisms/combobox";
|
|
93
|
+
export { SelectProps } from "./components/organisms/select";
|