@npm-questionpro/wick-ui-lib 0.20.0 → 0.22.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/src/base/ui/button.d.ts +1 -1
- package/dist/src/components/appHeader/{ui → components/account}/WuAppHeaderAccount.d.ts +1 -1
- package/dist/src/components/appHeader/components/account/WuAppHeaderAccount.test.d.ts +1 -0
- package/dist/src/components/appHeader/components/account/ui/_logoutMenuItem.d.ts +4 -0
- package/dist/src/components/appHeader/components/account/ui/_otherMenuItem.d.ts +5 -0
- package/dist/src/components/appHeader/components/account/ui/_settingsMenuItem.d.ts +5 -0
- package/dist/src/components/appHeader/components/account/ui/_userMenuItem.d.ts +5 -0
- package/dist/src/components/appHeader/{ui → components/breadcrumb}/WuAppHeaderBar.d.ts +1 -1
- package/dist/src/components/appHeader/{ui → components/breadcrumb}/WuAppHeaderBreadcrumb.d.ts +1 -1
- package/dist/src/components/appHeader/{ui → components/help}/WuAppHeaderHelp.d.ts +1 -1
- package/dist/src/components/appHeader/components/help/WuAppHeaderHelp.test.d.ts +1 -0
- package/dist/src/components/appHeader/{ui → components/productSwitcher}/WuAppHeaderMenu.d.ts +2 -3
- package/dist/src/components/appHeader/components/productSwitcher/WuAppHeaderMenu.test.d.ts +1 -0
- package/dist/src/components/appHeader/components/productSwitcher/ui/_categoryDetails.d.ts +8 -0
- package/dist/src/components/appHeader/components/productSwitcher/ui/_menuTrigger.d.ts +12 -0
- package/dist/src/components/appHeader/components/productSwitcher/ui/_productDropdown.d.ts +17 -0
- package/dist/src/components/appHeader/components/productSwitcher/ui/_productItem.d.ts +9 -0
- package/dist/src/components/appHeader/components/productSwitcher/ui/_productList.d.ts +13 -0
- package/dist/src/components/appHeader/components/productSwitcher/ui/_smallScreenMenuTrigger.d.ts +16 -0
- package/dist/src/components/appHeader/components/productSwitcher/ui/_smallScreenToggleMenu.d.ts +10 -0
- package/dist/src/components/appHeader/index.d.ts +6 -6
- package/dist/src/components/appHeader/types/WuAppHeaderAccount.d.ts +15 -12
- package/dist/src/components/appHeader/utils/headerMenuKeyboardHandlers.d.ts +6 -0
- package/dist/src/components/calendar/ui/_trigger.d.ts +3 -0
- package/dist/src/components/combobox/WuCombobox.d.ts +2 -1
- package/dist/src/components/combobox/ui/_tags.d.ts +0 -1
- package/dist/src/components/combobox/ui/_trigger.d.ts +2 -1
- package/dist/src/components/copyToClipboard/WuCopyToClipboard.d.ts +8 -0
- package/dist/src/components/copyToClipboard/WuCopyToClipboard.test.d.ts +1 -0
- package/dist/src/components/copyToClipboard/index.d.ts +2 -0
- package/dist/src/components/input/WuInput.test.d.ts +1 -0
- package/dist/src/components/input/index.d.ts +2 -0
- package/dist/src/components/monthPicker/WuMonthPicker.d.ts +16 -0
- package/dist/src/components/monthPicker/WuMonthPicker.test.d.ts +1 -0
- package/dist/src/components/monthPicker/index.d.ts +2 -0
- package/dist/src/components/select/utils/useOptionDestructure.d.ts +7 -1
- package/dist/src/components/stepper/WuStepper.d.ts +1 -1
- package/dist/src/components/table/utils/data.d.ts +9 -0
- package/dist/src/components/textarea/WuTextarea.test.d.ts +1 -0
- package/dist/src/components/textarea/index.d.ts +2 -0
- package/dist/src/index.d.ts +4 -1
- package/dist/style.css +1 -1
- package/dist/wick-ui-lib/es/index.js +6761 -6361
- package/dist/wick-ui-lib/es/index.js.map +1 -1
- package/dist/wick-ui-lib/umd/index.js +15 -15
- package/dist/wick-ui-lib/umd/index.js.map +1 -1
- package/package.json +3 -3
- package/dist/src/components/formFields/index.d.ts +0 -4
- /package/dist/src/components/appHeader/{ui → components}/WuAppHeaderSearch.d.ts +0 -0
- /package/dist/src/components/{formFields/WuFormFields.test.d.ts → appHeader/components/WuAppHeaderSearch.test.d.ts} +0 -0
- /package/dist/src/components/appHeader/{ui → components}/WuTruncatedLabel.d.ts +0 -0
- /package/dist/src/components/{formFields/WuInput → input}/WuInput.d.ts +0 -0
- /package/dist/src/components/{formFields/WuTextarea → textarea}/WuTextarea.d.ts +0 -0
|
@@ -2,7 +2,7 @@ import { VariantProps } from 'class-variance-authority';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
export declare const buttonVariants: (props?: ({
|
|
4
4
|
size?: "md" | "sm" | "mobile" | null | undefined;
|
|
5
|
-
color?: "
|
|
5
|
+
color?: "error" | "primary" | "upgrade" | null | undefined;
|
|
6
6
|
variant?: "link" | "primary" | "secondary" | "outline" | "rounded" | "iconOnly" | null | undefined;
|
|
7
7
|
} & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
|
|
8
8
|
export interface IButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { IWuAppHeaderAccount } from '
|
|
2
|
+
import { IWuAppHeaderAccount } from '../../types/WuAppHeaderAccount';
|
|
3
3
|
interface IWuAppHeaderAccountProps {
|
|
4
4
|
user?: IWuAppHeaderAccount;
|
|
5
5
|
onLogout?: () => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IWuAppHeaderBreadcrumbItem } from '
|
|
1
|
+
import { IWuAppHeaderBreadcrumbItem } from '../../types/WuAppHeaderBreadcrumbItem';
|
|
2
2
|
export interface IWuAppHeaderBarProps {
|
|
3
3
|
breadcrumbs?: IWuAppHeaderBreadcrumbItem[];
|
|
4
4
|
children?: React.ReactNode;
|
package/dist/src/components/appHeader/{ui → components/breadcrumb}/WuAppHeaderBreadcrumb.d.ts
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IWuAppHeaderBreadcrumbItem } from '
|
|
1
|
+
import { IWuAppHeaderBreadcrumbItem } from '../../types/WuAppHeaderBreadcrumbItem';
|
|
2
2
|
export interface IWuAppHeaderBreadcrumbProps {
|
|
3
3
|
breadcrumbs: IWuAppHeaderBreadcrumbItem[];
|
|
4
4
|
dir?: 'ltr' | 'rtl';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { IWuAppHeaderHelpMenu } from '
|
|
2
|
+
import { IWuAppHeaderHelpMenu } from '../../types/WuAppHeaderHelpMenu';
|
|
3
3
|
export interface IWuAppHeaderHelpProps {
|
|
4
4
|
menuList?: IWuAppHeaderHelpMenu[];
|
|
5
5
|
dir?: 'ltr' | 'rtl';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/src/components/appHeader/{ui → components/productSwitcher}/WuAppHeaderMenu.d.ts
RENAMED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { IWuAppHeaderMenuItem } from '
|
|
2
|
+
import { IWuAppHeaderMenuItem } from '../../types/WuAppHeaderMenuItem';
|
|
3
3
|
interface IWuAppHeaderMenuProps {
|
|
4
4
|
productCategories: IWuAppHeaderMenuItem[];
|
|
5
|
-
activeProductName
|
|
5
|
+
activeProductName: string;
|
|
6
6
|
activeProductColor?: {
|
|
7
7
|
base: string;
|
|
8
8
|
hover: string;
|
|
9
9
|
};
|
|
10
|
-
licenseUpgradeUrl: string;
|
|
11
10
|
dir: 'ltr' | 'rtl';
|
|
12
11
|
homeLink?: string;
|
|
13
12
|
expandAll?: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IWuAppHeaderMenuItem } from '../../../types/WuAppHeaderMenuItem';
|
|
2
|
+
interface ICategoryDetailsProps {
|
|
3
|
+
category: IWuAppHeaderMenuItem;
|
|
4
|
+
dir?: 'ltr' | 'rtl';
|
|
5
|
+
openCategory?: IWuAppHeaderMenuItem | null;
|
|
6
|
+
}
|
|
7
|
+
export declare const CategoryDetails: React.FC<ICategoryDetailsProps>;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as React, RefObject } from 'react';
|
|
2
|
+
interface IMenuTriggerProps {
|
|
3
|
+
buttonRef: RefObject<HTMLButtonElement | null>;
|
|
4
|
+
handleDropdownToggle: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
5
|
+
handleKeyDown: (e: React.KeyboardEvent<HTMLButtonElement>, index: number) => void;
|
|
6
|
+
isDropdownOpen: boolean;
|
|
7
|
+
activeProductName: string;
|
|
8
|
+
dir?: 'ltr' | 'rtl';
|
|
9
|
+
homeLink?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const MenuTrigger: React.FC<IMenuTriggerProps>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IWuAppHeaderMenuItem } from '../../../types/WuAppHeaderMenuItem';
|
|
2
|
+
import { default as React, RefObject } from 'react';
|
|
3
|
+
interface IDropdownMenuProps {
|
|
4
|
+
dropdownRef: RefObject<HTMLUListElement | null>;
|
|
5
|
+
dir: 'ltr' | 'rtl';
|
|
6
|
+
isDropdownOpen: boolean;
|
|
7
|
+
productCategories: IWuAppHeaderMenuItem[];
|
|
8
|
+
openCategory: IWuAppHeaderMenuItem | null;
|
|
9
|
+
setOpenCategory: React.Dispatch<React.SetStateAction<IWuAppHeaderMenuItem | null>>;
|
|
10
|
+
handleKeyDown: (e: React.KeyboardEvent<HTMLLIElement>, index: number) => void;
|
|
11
|
+
expandAll?: boolean;
|
|
12
|
+
activeProductName: string;
|
|
13
|
+
focusItem: string;
|
|
14
|
+
setFocusItem: (item: string) => void;
|
|
15
|
+
}
|
|
16
|
+
export declare const ProductDropdownMenu: React.FC<IDropdownMenuProps>;
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IWuAppHeaderSubMenuItem } from '../../../types/WuAppHeaderMenuItem';
|
|
2
|
+
export declare const ProductItem: React.FC<{
|
|
3
|
+
product: IWuAppHeaderSubMenuItem;
|
|
4
|
+
currentProduct?: string;
|
|
5
|
+
activeProductName: string;
|
|
6
|
+
dir?: 'ltr' | 'rtl';
|
|
7
|
+
focusItem: string;
|
|
8
|
+
setFocusItem: (item: string) => void;
|
|
9
|
+
}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IWuAppHeaderMenuItem } from '../../../types/WuAppHeaderMenuItem';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
interface IProductListProps {
|
|
4
|
+
category: IWuAppHeaderMenuItem;
|
|
5
|
+
currentProduct: string;
|
|
6
|
+
activeProductName: string;
|
|
7
|
+
dir?: 'ltr' | 'rtl';
|
|
8
|
+
focusItem: string;
|
|
9
|
+
setFocusItem: (value: string) => void;
|
|
10
|
+
borderColorLocked?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const ProductList: React.FC<IProductListProps>;
|
|
13
|
+
export {};
|
package/dist/src/components/appHeader/components/productSwitcher/ui/_smallScreenMenuTrigger.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface ISmallScreenMenuTriggerProps {
|
|
3
|
+
isProductButtonShow: boolean;
|
|
4
|
+
isDropdownOpen: boolean;
|
|
5
|
+
activeProductColor: {
|
|
6
|
+
hover: string;
|
|
7
|
+
};
|
|
8
|
+
activeProductBgColor: string;
|
|
9
|
+
activeProductName?: string;
|
|
10
|
+
dir: 'ltr' | 'rtl';
|
|
11
|
+
smallScreenButtonRef: React.RefObject<HTMLButtonElement | null>;
|
|
12
|
+
handleDropdownToggle: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
13
|
+
handleKeyDown: (e: React.KeyboardEvent<HTMLButtonElement>, step: number) => void;
|
|
14
|
+
}
|
|
15
|
+
export declare const SmallScreenMenuTrigger: React.FC<ISmallScreenMenuTriggerProps>;
|
|
16
|
+
export {};
|
package/dist/src/components/appHeader/components/productSwitcher/ui/_smallScreenToggleMenu.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface IMenuToggleProps {
|
|
3
|
+
dir: 'ltr' | 'rtl';
|
|
4
|
+
isProductButtonShow: boolean;
|
|
5
|
+
smallScreenToggleButtonRef: React.RefObject<HTMLButtonElement | null>;
|
|
6
|
+
setIsProductButtonShow: React.Dispatch<React.SetStateAction<boolean>>;
|
|
7
|
+
setDropdownOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
8
|
+
}
|
|
9
|
+
export declare const SmallScreenToggleMenu: React.FC<IMenuToggleProps>;
|
|
10
|
+
export {};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
export { WuAppHeaderAccount } from './components/account/WuAppHeaderAccount';
|
|
2
|
+
export { WuAppHeaderBar } from './components/breadcrumb/WuAppHeaderBar';
|
|
3
|
+
export { WuAppHeaderHelp } from './components/help/WuAppHeaderHelp';
|
|
4
|
+
export { WuAppHeaderMenu } from './components/productSwitcher/WuAppHeaderMenu';
|
|
5
|
+
export { WuAppHeaderSearch } from './components/WuAppHeaderSearch';
|
|
6
|
+
export { WuTruncatedLabel } from './components/WuTruncatedLabel';
|
|
1
7
|
export type { IWuAppHeaderAccount } from './types/WuAppHeaderAccount';
|
|
2
8
|
export type { IWuAppHeaderBreadcrumbItem } from './types/WuAppHeaderBreadcrumbItem';
|
|
3
9
|
export type { IWuAppHeaderHelpMenu } from './types/WuAppHeaderHelpMenu';
|
|
4
10
|
export type { IWuAppHeaderMenuItem } from './types/WuAppHeaderMenuItem';
|
|
5
|
-
export { WuAppHeaderAccount } from './ui/WuAppHeaderAccount';
|
|
6
|
-
export { WuAppHeaderBar } from './ui/WuAppHeaderBar';
|
|
7
|
-
export { WuAppHeaderHelp } from './ui/WuAppHeaderHelp';
|
|
8
|
-
export { WuAppHeaderMenu } from './ui/WuAppHeaderMenu';
|
|
9
|
-
export { WuAppHeaderSearch } from './ui/WuAppHeaderSearch';
|
|
10
|
-
export { WuTruncatedLabel } from './ui/WuTruncatedLabel';
|
|
11
11
|
export { WuAppHeader } from './WuAppHeader';
|
|
12
12
|
export type { IWuAppHeaderProps } from './WuAppHeader';
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
interface IWuUsage {
|
|
2
|
+
collectedResponseCount?: string;
|
|
3
|
+
displayResponseProgressBar?: boolean;
|
|
4
|
+
title?: string;
|
|
5
|
+
url?: string;
|
|
6
|
+
responseCountPercentage?: number;
|
|
7
|
+
}
|
|
8
|
+
interface IWuInvoice {
|
|
9
|
+
size?: number;
|
|
10
|
+
title?: string;
|
|
11
|
+
url?: string;
|
|
12
|
+
}
|
|
1
13
|
export interface IWuAppHeaderAccount {
|
|
2
14
|
profile?: {
|
|
3
15
|
title?: string;
|
|
@@ -28,17 +40,8 @@ export interface IWuAppHeaderAccount {
|
|
|
28
40
|
betaIconHTML?: string;
|
|
29
41
|
url?: string;
|
|
30
42
|
}[];
|
|
31
|
-
usage?:
|
|
32
|
-
|
|
33
|
-
displayResponseProgressBar?: boolean;
|
|
34
|
-
title?: string;
|
|
35
|
-
url?: string;
|
|
36
|
-
responseCountPercentage?: number;
|
|
37
|
-
};
|
|
38
|
-
invoice?: {
|
|
39
|
-
size?: number;
|
|
40
|
-
title?: string;
|
|
41
|
-
url?: string;
|
|
42
|
-
};
|
|
43
|
+
usage?: IWuUsage | null;
|
|
44
|
+
invoice?: IWuInvoice | null;
|
|
43
45
|
issueTrackerCount?: number;
|
|
44
46
|
}
|
|
47
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IWuAppHeaderMenuItem } from '../types/WuAppHeaderMenuItem';
|
|
2
|
+
export declare function createHandleKeyDown({ productCategories, openCategory, setOpenCategory, }: {
|
|
3
|
+
productCategories: IWuAppHeaderMenuItem[];
|
|
4
|
+
openCategory: IWuAppHeaderMenuItem | null;
|
|
5
|
+
setOpenCategory: (category: IWuAppHeaderMenuItem | null) => void;
|
|
6
|
+
}): (event: React.KeyboardEvent, index: number, focusItem: string) => void;
|
|
@@ -27,5 +27,6 @@ export interface IWuComboboxProps<T> {
|
|
|
27
27
|
id?: string;
|
|
28
28
|
disabled?: boolean;
|
|
29
29
|
labelPosition?: 'left' | 'top' | 'right';
|
|
30
|
+
className?: string;
|
|
30
31
|
}
|
|
31
|
-
export declare const WuCombobox: <T>({ data, accessorKey, value, defaultValue, Header, virtualizedThreshold, isEllipse, placeholder, variant, dir, onSelect, label, maxHeight, multiple, hasGroup, selectAll, id, disabled, labelPosition, }: IWuComboboxProps<T>) => React.JSX.Element;
|
|
32
|
+
export declare const WuCombobox: <T>({ data, accessorKey, value, defaultValue, Header, virtualizedThreshold, isEllipse, placeholder, variant, dir, onSelect, label, maxHeight, multiple, hasGroup, selectAll, id, disabled, labelPosition, className, }: IWuComboboxProps<T>) => React.JSX.Element;
|
|
@@ -16,5 +16,6 @@ export interface IWuComboboxTriggerProps<T> {
|
|
|
16
16
|
disabled?: boolean;
|
|
17
17
|
selectAll?: IWuComboboxProps<T>['selectAll'];
|
|
18
18
|
isCheckedAll?: boolean;
|
|
19
|
+
className?: string;
|
|
19
20
|
}
|
|
20
|
-
export declare const WuComboboxTrigger: <T>({ placeholder, isEllipse, selectedOptions, variant, dir, accessorKey, multiple, id, disabled, selectAll, isCheckedAll, }: IWuComboboxTriggerProps<T>) => React.JSX.Element;
|
|
21
|
+
export declare const WuComboboxTrigger: <T>({ placeholder, isEllipse, selectedOptions, variant, dir, accessorKey, multiple, id, disabled, selectAll, isCheckedAll, className, }: IWuComboboxTriggerProps<T>) => React.JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type IWuMonthPickerProps = {
|
|
3
|
+
value?: Date | string;
|
|
4
|
+
onChange?: (value: Date) => void;
|
|
5
|
+
min?: Date | string;
|
|
6
|
+
max?: Date | string;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
className?: string;
|
|
9
|
+
label?: string;
|
|
10
|
+
labelPosition?: 'top' | 'left' | 'right';
|
|
11
|
+
id?: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
readonly?: boolean;
|
|
14
|
+
disabledMonths?: (`${number}-${number}-${number}` | Date)[];
|
|
15
|
+
};
|
|
16
|
+
export declare const WuMonthPicker: React.FC<IWuMonthPickerProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
import { IWuSelectItem, IWuSelectOption } from '../types/IWuSelectOptions';
|
|
2
|
-
export declare const useOptionDestructure: <T>(options: IWuSelectOption<T>[]) =>
|
|
2
|
+
export declare const useOptionDestructure: <T>(options: IWuSelectOption<T>[]) => {
|
|
3
|
+
cleanData: IWuSelectItem<T>[];
|
|
4
|
+
separators: number;
|
|
5
|
+
groups: number;
|
|
6
|
+
totalData: number;
|
|
7
|
+
enabledOptions: IWuSelectItem<T>[];
|
|
8
|
+
};
|
|
@@ -5,7 +5,7 @@ export interface IWuStepperProps extends Omit<React.InputHTMLAttributes<HTMLInpu
|
|
|
5
5
|
resetInvalidValueOnBlur?: boolean;
|
|
6
6
|
invalid?: boolean;
|
|
7
7
|
label?: string;
|
|
8
|
-
defaultValue
|
|
8
|
+
defaultValue?: number;
|
|
9
9
|
dir?: 'ltr' | 'rtl';
|
|
10
10
|
labelPosition?: 'left' | 'top';
|
|
11
11
|
}
|
|
@@ -9,15 +9,24 @@ export declare const MOCK_COLUMNS: ({
|
|
|
9
9
|
accessorKey: string;
|
|
10
10
|
header: string;
|
|
11
11
|
sortable: boolean;
|
|
12
|
+
size: number;
|
|
13
|
+
filterable?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
accessorKey: string;
|
|
16
|
+
header: string;
|
|
17
|
+
sortable: boolean;
|
|
18
|
+
size?: undefined;
|
|
12
19
|
filterable?: undefined;
|
|
13
20
|
} | {
|
|
14
21
|
accessorKey: string;
|
|
15
22
|
header: string;
|
|
16
23
|
sortable?: undefined;
|
|
24
|
+
size?: undefined;
|
|
17
25
|
filterable?: undefined;
|
|
18
26
|
} | {
|
|
19
27
|
accessorKey: string;
|
|
20
28
|
header: string;
|
|
21
29
|
filterable: boolean;
|
|
30
|
+
size: number;
|
|
22
31
|
sortable?: undefined;
|
|
23
32
|
})[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -3,14 +3,16 @@ export * from './components/button';
|
|
|
3
3
|
export * from './components/calendar';
|
|
4
4
|
export * from './components/checkbox';
|
|
5
5
|
export * from './components/combobox';
|
|
6
|
+
export * from './components/copyToClipboard';
|
|
6
7
|
export * from './components/footer';
|
|
7
|
-
export * from './components/formFields';
|
|
8
8
|
export * from './components/formGroup';
|
|
9
9
|
export * from './components/helpButton';
|
|
10
|
+
export * from './components/input';
|
|
10
11
|
export * from './components/loader';
|
|
11
12
|
export * from './components/menu';
|
|
12
13
|
export * from './components/menuIcon';
|
|
13
14
|
export * from './components/modal';
|
|
15
|
+
export * from './components/monthPicker';
|
|
14
16
|
export * from './components/navbar';
|
|
15
17
|
export * from './components/pagination';
|
|
16
18
|
export * from './components/popover';
|
|
@@ -20,6 +22,7 @@ export * from './components/sidebar';
|
|
|
20
22
|
export * from './components/stepper';
|
|
21
23
|
export * from './components/switcher';
|
|
22
24
|
export * from './components/table';
|
|
25
|
+
export * from './components/textarea';
|
|
23
26
|
export * from './components/toast';
|
|
24
27
|
export * from './components/toggle';
|
|
25
28
|
export * from './components/tooltip';
|