stratosphere-ui 1.1.1 → 1.2.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/common/types.d.ts +1 -0
- package/dist/src/components/Alert/Alert.d.ts +1 -1
- package/dist/src/components/AlertMessages/AlertMessages.d.ts +1 -1
- package/dist/src/components/AlertMessages/AlertMessagesProvider.d.ts +1 -1
- package/dist/src/components/AlertMessages/constants.d.ts +4 -4
- package/dist/src/components/Avatar/Avatar.d.ts +1 -1
- package/dist/src/components/Avatar/AvatarGroup.d.ts +1 -1
- package/dist/src/components/Badge/Badge.d.ts +1 -1
- package/dist/src/components/ButtonArray/ButtonArray.d.ts +22 -0
- package/dist/src/components/ButtonArray/ButtonArray.stories.d.ts +7 -0
- package/dist/src/components/ButtonArray/constants.d.ts +3 -0
- package/dist/src/components/ButtonArray/index.d.ts +1 -0
- package/dist/src/components/Card/Card.d.ts +1 -1
- package/dist/src/components/Card/CardActions.d.ts +1 -1
- package/dist/src/components/Card/CardBody.d.ts +1 -1
- package/dist/src/components/Card/CardTitle.d.ts +1 -1
- package/dist/src/components/Form/Form.d.ts +1 -1
- package/dist/src/components/Form/FormCheckbox.d.ts +1 -1
- package/dist/src/components/Form/FormComboboxMulti.d.ts +1 -1
- package/dist/src/components/Form/FormComboboxSingle.d.ts +1 -1
- package/dist/src/components/Form/FormControl.d.ts +1 -1
- package/dist/src/components/Form/FormFileInput.d.ts +1 -1
- package/dist/src/components/Form/FormRadio.d.ts +1 -1
- package/dist/src/components/Form/FormRadioGroup.d.ts +1 -1
- package/dist/src/components/Form/FormRadioGroupOption.d.ts +1 -1
- package/dist/src/components/Form/FormSelectMulti.d.ts +1 -1
- package/dist/src/components/Form/FormSelectSingle.d.ts +1 -1
- package/dist/src/components/Form/FormTextarea.d.ts +1 -1
- package/dist/src/components/Form/FormToggleSwitch.d.ts +1 -1
- package/dist/src/components/Form/__tests__/FormProvider.d.ts +1 -1
- package/dist/src/components/FullScreenLoader/FullScreenLoader.d.ts +1 -1
- package/dist/src/components/Icons.d.ts +14 -13
- package/dist/src/components/Link/Link.d.ts +1 -1
- package/dist/src/components/Loading/Loading.d.ts +1 -1
- package/dist/src/components/LoadingCard/LoadingCard.d.ts +1 -1
- package/dist/src/components/Pagination/Pagination.d.ts +1 -1
- package/dist/src/components/PasswordInput/PasswordInput.d.ts +1 -1
- package/dist/src/components/Progress/Progress.d.ts +1 -1
- package/dist/src/components/Progress/RadialProgress.d.ts +1 -1
- package/dist/src/components/Select/Select.d.ts +1 -1
- package/dist/src/components/Stat/Stat.d.ts +1 -1
- package/dist/src/components/Stat/StatActions.d.ts +1 -1
- package/dist/src/components/Stat/StatDesc.d.ts +1 -1
- package/dist/src/components/Stat/StatFigure.d.ts +1 -1
- package/dist/src/components/Stat/StatTitle.d.ts +1 -1
- package/dist/src/components/Stat/StatValue.d.ts +1 -1
- package/dist/src/components/Stat/Stats.d.ts +1 -1
- package/dist/src/components/Steps/Step.d.ts +1 -1
- package/dist/src/components/Steps/Steps.d.ts +1 -1
- package/dist/src/components/Table/HeaderSortIcon.d.ts +1 -1
- package/dist/src/components/Table/Table.d.ts +1 -1
- package/dist/src/components/Tabs/TabContent.d.ts +1 -1
- package/dist/src/components/Tabs/Tabs.d.ts +1 -1
- package/dist/src/components/Tooltip/Tooltip.d.ts +1 -1
- package/dist/src/components/TypeaheadSelect/TypeaheadSelect.d.ts +1 -1
- package/dist/src/components/index.d.ts +1 -0
- package/dist/stratosphere-ui.js +9904 -9778
- package/dist/style.css +1 -1
- package/dist/vite.config.d.ts +1 -1
- package/dist/vitest/setup.d.ts +0 -1
- package/package.json +25 -25
|
@@ -11,4 +11,4 @@ export interface AlertProps extends Omit<HTMLAttributes<HTMLDivElement>, 'childr
|
|
|
11
11
|
icon: FC<ComponentProps<'svg'>>;
|
|
12
12
|
title: string;
|
|
13
13
|
}
|
|
14
|
-
export declare const Alert: ({ actionButtons, className, color, description, icon: Icon, title, ...props }: AlertProps) => JSX.Element;
|
|
14
|
+
export declare const Alert: ({ actionButtons, className, color, description, icon: Icon, title, ...props }: AlertProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,4 +2,4 @@ export interface AlertMessagesProps {
|
|
|
2
2
|
alertClassName?: string;
|
|
3
3
|
maxMessages?: number;
|
|
4
4
|
}
|
|
5
|
-
export declare const AlertMessages: ({ alertClassName, maxMessages, }: AlertMessagesProps) => JSX.Element;
|
|
5
|
+
export declare const AlertMessages: ({ alertClassName, maxMessages, }: AlertMessagesProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,4 +16,4 @@ export interface AlertMessagesProviderProps {
|
|
|
16
16
|
initialData?: AlertMessage[];
|
|
17
17
|
}
|
|
18
18
|
export declare const useAlertMessages: () => AlertMessagesContextData;
|
|
19
|
-
export declare const AlertMessagesProvider: ({ children, initialData, }: AlertMessagesProviderProps) => JSX.Element;
|
|
19
|
+
export declare const AlertMessagesProvider: ({ children, initialData, }: AlertMessagesProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const statusToIconMap: {
|
|
3
|
-
info: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
4
|
-
success: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
5
|
-
warning: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
6
|
-
error: (props: import("react").SVGProps<SVGSVGElement>) => JSX.Element;
|
|
3
|
+
info: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
success: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
warning: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
error: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
};
|
|
@@ -5,4 +5,4 @@ export interface AvatarProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
5
5
|
isPlaceholder?: boolean;
|
|
6
6
|
shapeClassName?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare const Avatar: ({ children, className, isOffline, isOnline, isPlaceholder, shapeClassName, ...props }: AvatarProps) => JSX.Element;
|
|
8
|
+
export declare const Avatar: ({ children, className, isOffline, isOnline, isPlaceholder, shapeClassName, ...props }: AvatarProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type AvatarGroupProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const AvatarGroup: ({ className, ...props }: AvatarGroupProps) => JSX.Element;
|
|
3
|
+
export declare const AvatarGroup: ({ className, ...props }: AvatarGroupProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -11,4 +11,4 @@ export interface BadgeProps extends Omit<HTMLProps<HTMLDivElement>, 'size'> {
|
|
|
11
11
|
outline?: boolean;
|
|
12
12
|
size?: BadgeSize;
|
|
13
13
|
}
|
|
14
|
-
export declare const Badge: ({ children, className, color, dismissable, icon: Icon, onDismiss, outline, size, ...props }: BadgeProps) => JSX.Element;
|
|
14
|
+
export declare const Badge: ({ children, className, color, dismissable, icon: Icon, onDismiss, outline, size, ...props }: BadgeProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type Key, type ComponentProps, type FC, HTMLProps, ReactNode } from 'react';
|
|
2
|
+
import { Breakpoint } from '../../common';
|
|
3
|
+
import { ButtonProps } from '../Button';
|
|
4
|
+
import { DropdownMenuProps } from '../DropdownMenu';
|
|
5
|
+
export type ButtonOptions = Omit<ButtonProps, 'onClick'> & {
|
|
6
|
+
icon: FC<ComponentProps<'svg'>>;
|
|
7
|
+
key: Key;
|
|
8
|
+
menuText?: string;
|
|
9
|
+
onClick: () => void;
|
|
10
|
+
tooltipText?: string;
|
|
11
|
+
};
|
|
12
|
+
export interface ButtonArrayProps extends Omit<HTMLProps<HTMLDivElement>, 'children'> {
|
|
13
|
+
buttonOptions: ButtonOptions[];
|
|
14
|
+
collapseAt?: Breakpoint;
|
|
15
|
+
dropdownMenuProps?: Omit<DropdownMenuProps, 'items'>;
|
|
16
|
+
withTooltips?: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface ButtonWrapperProps {
|
|
19
|
+
children: ReactNode;
|
|
20
|
+
tooltipText?: string;
|
|
21
|
+
}
|
|
22
|
+
export declare const ButtonArray: ({ buttonOptions, collapseAt, dropdownMenuProps: { buttonProps: dropdownButtonProps, ...dropdownMenuProps }, withTooltips, ...props }: ButtonArrayProps) => JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Story, Meta } from '@storybook/react';
|
|
2
|
+
import { ButtonArrayProps } from './ButtonArray';
|
|
3
|
+
declare const _default: Meta;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const Default: Story<ButtonArrayProps>;
|
|
6
|
+
export declare const WithTooltips: Story<ButtonArrayProps>;
|
|
7
|
+
export declare const Collapsable: Story<ButtonArrayProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ButtonArray';
|
|
@@ -6,4 +6,4 @@ export interface CardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
6
6
|
normal?: boolean;
|
|
7
7
|
side?: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare const Card: ({ bordered, className, compact, imageFull, normal, side, ...props }: CardProps) => JSX.Element;
|
|
9
|
+
export declare const Card: ({ bordered, className, compact, imageFull, normal, side, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type CardActionsProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const CardActions: ({ className, ...props }: CardActionsProps) => JSX.Element;
|
|
3
|
+
export declare const CardActions: ({ className, ...props }: CardActionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type CardBodyProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const CardBody: ({ className, ...props }: CardBodyProps) => JSX.Element;
|
|
3
|
+
export declare const CardBody: ({ className, ...props }: CardBodyProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type CardTitleProps = HTMLAttributes<HTMLHeadingElement>;
|
|
3
|
-
export declare const CardTitle: ({ className, ...props }: CardTitleProps) => JSX.Element;
|
|
3
|
+
export declare const CardTitle: ({ className, ...props }: CardTitleProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,4 +6,4 @@ export interface FormProps<Values extends FieldValues> extends Omit<HTMLProps<HT
|
|
|
6
6
|
methods: UseFormReturn<Values>;
|
|
7
7
|
onFormSubmit?: SubmitHandler<Values>;
|
|
8
8
|
}
|
|
9
|
-
export declare const Form: <Values extends FieldValues>({ children, formRef, methods, onFormSubmit, ...props }: FormProps<Values>) => JSX.Element;
|
|
9
|
+
export declare const Form: <Values extends FieldValues>({ children, formRef, methods, onFormSubmit, ...props }: FormProps<Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,4 +10,4 @@ export interface FormCheckboxProps<Values extends FieldValues> extends Omit<Form
|
|
|
10
10
|
inputClassName?: string;
|
|
11
11
|
size?: CheckboxSize;
|
|
12
12
|
}
|
|
13
|
-
export declare const FormCheckbox: <Values extends FieldValues>({ children, className, color, controllerProps, inputClassName, isRequired, labelText, name, showDirty, size, ...props }: FormCheckboxProps<Values>) => JSX.Element;
|
|
13
|
+
export declare const FormCheckbox: <Values extends FieldValues>({ children, className, color, controllerProps, inputClassName, isRequired, labelText, name, showDirty, size, ...props }: FormCheckboxProps<Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FieldValues } from 'react-hook-form';
|
|
2
2
|
import { GenericDataType } from '../../common';
|
|
3
3
|
import { ComboboxProps } from './types';
|
|
4
|
-
export declare const ComboboxMulti: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ComboboxProps<DataItem, Values>) => JSX.Element;
|
|
4
|
+
export declare const ComboboxMulti: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ComboboxProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FieldValues } from 'react-hook-form';
|
|
2
2
|
import { GenericDataType } from '../../common';
|
|
3
3
|
import { ComboboxProps } from './types';
|
|
4
|
-
export declare const ComboboxSingle: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ComboboxProps<DataItem, Values>) => JSX.Element;
|
|
4
|
+
export declare const ComboboxSingle: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ComboboxProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,4 +16,4 @@ export interface FormControlProps<Values extends FieldValues, TOutput> extends F
|
|
|
16
16
|
size?: InputSize;
|
|
17
17
|
transform?: Transform<TOutput>;
|
|
18
18
|
}
|
|
19
|
-
export declare const FormControl: <Values extends FieldValues, TOutput>({ bordered, className, color, controllerProps, elementLeft, elementRight, hideErrorMessage, inputClassName, isRequired, labelText, name, showDirty, size, transform, ...props }: FormControlProps<Values, TOutput>) => JSX.Element;
|
|
19
|
+
export declare const FormControl: <Values extends FieldValues, TOutput>({ bordered, className, color, controllerProps, elementLeft, elementRight, hideErrorMessage, inputClassName, isRequired, labelText, name, showDirty, size, transform, ...props }: FormControlProps<Values, TOutput>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -12,4 +12,4 @@ export interface FormFileInputProps<Values extends FieldValues> extends FormFiel
|
|
|
12
12
|
inputClassName?: string;
|
|
13
13
|
size?: FileInputSize;
|
|
14
14
|
}
|
|
15
|
-
export declare const FormFileInput: <Values extends FieldValues>({ bordered, className, color, controllerProps, hideErrorMessage, inputClassName, isRequired, labelText, name, showDirty, size, ...props }: FormFileInputProps<Values>) => JSX.Element;
|
|
15
|
+
export declare const FormFileInput: <Values extends FieldValues>({ bordered, className, color, controllerProps, hideErrorMessage, inputClassName, isRequired, labelText, name, showDirty, size, ...props }: FormFileInputProps<Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,4 +16,4 @@ export interface FormRadioProps<Values extends FieldValues> extends Omit<FormFie
|
|
|
16
16
|
options: RadioOption[];
|
|
17
17
|
size?: RadioSize;
|
|
18
18
|
}
|
|
19
|
-
export declare const FormRadio: <Values extends FieldValues>({ className, color, controllerProps, inputClassName, isRequired, labelText, name, options, showDirty, size, ...props }: FormRadioProps<Values>) => JSX.Element;
|
|
19
|
+
export declare const FormRadio: <Values extends FieldValues>({ className, color, controllerProps, inputClassName, isRequired, labelText, name, options, showDirty, size, ...props }: FormRadioProps<Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,4 +6,4 @@ export interface FormRadioGroupProps<Values extends FieldValues> extends Omit<Fo
|
|
|
6
6
|
children: ReactNode;
|
|
7
7
|
className?: string;
|
|
8
8
|
}
|
|
9
|
-
export declare const FormRadioGroup: <Values extends FieldValues>({ children, className, controllerProps, isRequired, labelText, name, ...props }: FormRadioGroupProps<Values>) => JSX.Element;
|
|
9
|
+
export declare const FormRadioGroup: <Values extends FieldValues>({ children, className, controllerProps, isRequired, labelText, name, ...props }: FormRadioGroupProps<Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,4 +2,4 @@ import { ButtonProps } from '../Button';
|
|
|
2
2
|
export interface FormRadioGroupOptionProps extends ButtonProps {
|
|
3
3
|
value: string;
|
|
4
4
|
}
|
|
5
|
-
export declare const FormRadioGroupOption: ({ children, className, disabled, value, ...props }: FormRadioGroupOptionProps) => JSX.Element;
|
|
5
|
+
export declare const FormRadioGroupOption: ({ children, className, disabled, value, ...props }: FormRadioGroupOptionProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FieldValues } from 'react-hook-form';
|
|
2
2
|
import { GenericDataType } from '../../common';
|
|
3
3
|
import { ListboxProps } from './types';
|
|
4
|
-
export declare const FormSelectMulti: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ListboxProps<DataItem, Values>) => JSX.Element;
|
|
4
|
+
export declare const FormSelectMulti: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ListboxProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FieldValues } from 'react-hook-form';
|
|
2
2
|
import { GenericDataType } from '../../common';
|
|
3
3
|
import { ListboxProps } from './types';
|
|
4
|
-
export declare const FormSelectSingle: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ListboxProps<DataItem, Values>) => JSX.Element;
|
|
4
|
+
export declare const FormSelectSingle: <DataItem extends GenericDataType, Values extends FieldValues>({ children, className, disabled, name, selectedItems, setSelectedItems, }: ListboxProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -14,4 +14,4 @@ export interface FormTextareaProps<Values extends FieldValues, TOutput> extends
|
|
|
14
14
|
size?: TextareaSize;
|
|
15
15
|
transform?: Transform<TOutput>;
|
|
16
16
|
}
|
|
17
|
-
export declare const FormTextarea: <Values extends FieldValues, TOutput>({ bordered, className, color, controllerProps, hideErrorMessage, inputClassName, isRequired, labelText, name, showDirty, size, transform, ...props }: FormTextareaProps<Values, TOutput>) => JSX.Element;
|
|
17
|
+
export declare const FormTextarea: <Values extends FieldValues, TOutput>({ bordered, className, color, controllerProps, hideErrorMessage, inputClassName, isRequired, labelText, name, showDirty, size, transform, ...props }: FormTextareaProps<Values, TOutput>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,4 +10,4 @@ export interface FormToggleSwitchProps<Values extends FieldValues> extends Omit<
|
|
|
10
10
|
inputClassName?: string;
|
|
11
11
|
size?: ToggleSize;
|
|
12
12
|
}
|
|
13
|
-
export declare const FormToggleSwitch: <Values extends FieldValues>({ children, className, color, controllerProps, inputClassName, isRequired, labelText, name, showDirty, size, ...props }: FormToggleSwitchProps<Values>) => JSX.Element;
|
|
13
|
+
export declare const FormToggleSwitch: <Values extends FieldValues>({ children, className, color, controllerProps, inputClassName, isRequired, labelText, name, showDirty, size, ...props }: FormToggleSwitchProps<Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,5 +3,5 @@ import { FieldValues, UseFormProps } from 'react-hook-form';
|
|
|
3
3
|
export interface FormProviderProps<Values extends FieldValues> extends UseFormProps<Values> {
|
|
4
4
|
children: ReactNode;
|
|
5
5
|
}
|
|
6
|
-
export declare const FormProvider: <Values extends FieldValues>({ children, ...rest }: FormProviderProps<Values>) => JSX.Element;
|
|
6
|
+
export declare const FormProvider: <Values extends FieldValues>({ children, ...rest }: FormProviderProps<Values>) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default FormProvider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const FullScreenLoader: () => JSX.Element;
|
|
1
|
+
export declare const FullScreenLoader: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { SVGProps } from 'react';
|
|
2
|
-
export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
3
|
-
export declare const ChevronDownIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
4
|
-
export declare const ChevronUpIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
5
|
-
export declare const CloseIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
2
|
+
export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const ChevronDownIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const ChevronUpIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const CloseIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const EllipsisVerticalIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
7
|
+
export declare const ErrorIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const EyeIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const EyeSlashIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const InfoIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const SortAscendingIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const SortDescendingIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare const SortIcon: () => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const SuccessIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export declare const WarningIcon: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export interface LinkProps extends HTMLProps<HTMLAnchorElement> {
|
|
|
5
5
|
color?: LinkColor;
|
|
6
6
|
hover?: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare const Link: ({ className, color, hover, ...props }: LinkProps) => JSX.Element;
|
|
8
|
+
export declare const Link: ({ className, color, hover, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,4 +7,4 @@ export interface LoadingProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
7
7
|
shape?: LoadingShape;
|
|
8
8
|
size?: LoadingSize;
|
|
9
9
|
}
|
|
10
|
-
export declare const Loading: ({ className, shape, size, ...props }: LoadingProps) => JSX.Element;
|
|
10
|
+
export declare const Loading: ({ className, shape, size, ...props }: LoadingProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,4 +2,4 @@ import { HTMLProps } from 'react';
|
|
|
2
2
|
export interface LoadingCardProps extends HTMLProps<HTMLDivElement> {
|
|
3
3
|
isLoading?: boolean;
|
|
4
4
|
}
|
|
5
|
-
export declare const LoadingCard: ({ children, className, isLoading, ...props }: LoadingCardProps) => JSX.Element;
|
|
5
|
+
export declare const LoadingCard: ({ children, className, isLoading, ...props }: LoadingCardProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,4 +6,4 @@ export interface PaginationProps extends Omit<HTMLProps<HTMLDivElement>, 'size'>
|
|
|
6
6
|
onPaginationChange: (page: number) => void;
|
|
7
7
|
size?: ButtonProps['size'];
|
|
8
8
|
}
|
|
9
|
-
export declare const Pagination: ({ className, metadata, onPaginationChange, size, ...props }: PaginationProps) => JSX.Element | null;
|
|
9
|
+
export declare const Pagination: ({ className, metadata, onPaginationChange, size, ...props }: PaginationProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -5,4 +5,4 @@ export interface PasswordInputProps<Values extends FieldValues, TOutput> extends
|
|
|
5
5
|
iconShow?: ReactNode;
|
|
6
6
|
iconHide?: ReactNode;
|
|
7
7
|
}
|
|
8
|
-
export declare const PasswordInput: <Values extends FieldValues, TOutput>({ iconHide, iconShow, inputClassName, ...props }: PasswordInputProps<Values, TOutput>) => JSX.Element;
|
|
8
|
+
export declare const PasswordInput: <Values extends FieldValues, TOutput>({ iconHide, iconShow, inputClassName, ...props }: PasswordInputProps<Values, TOutput>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export type ProgressColor = (typeof PROGRESS_COLORS)[number];
|
|
|
4
4
|
export interface ProgressProps extends HTMLAttributes<HTMLProgressElement> {
|
|
5
5
|
color?: ProgressColor;
|
|
6
6
|
}
|
|
7
|
-
export declare const Progress: ({ className, color, ...props }: ProgressProps) => JSX.Element;
|
|
7
|
+
export declare const Progress: ({ className, color, ...props }: ProgressProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export interface RadialProgressProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
4
4
|
thickness?: string;
|
|
5
5
|
value: number;
|
|
6
6
|
}
|
|
7
|
-
export declare const RadialProgress: ({ className, size, style, thickness, value, ...props }: RadialProgressProps) => JSX.Element;
|
|
7
|
+
export declare const RadialProgress: ({ className, size, style, thickness, value, ...props }: RadialProgressProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -19,4 +19,4 @@ export interface SelectProps<DataItem extends GenericDataType, Values extends Fi
|
|
|
19
19
|
options?: DataItem[];
|
|
20
20
|
showDirty?: boolean;
|
|
21
21
|
}
|
|
22
|
-
export declare const Select: <DataItem extends GenericDataType, Values extends FieldValues>({ buttonColor, buttonProps: { className: buttonClassName, color: buttonPropsColor, ...buttonProps }, className, disabled, dropdownIcon, formValueMode, getItemText, hideDropdownIcon, isRequired, labelText, menuClassName, menuSize, multi, name, options: optionsArray, showDirty, }: SelectProps<DataItem, Values>) => JSX.Element;
|
|
22
|
+
export declare const Select: <DataItem extends GenericDataType, Values extends FieldValues>({ buttonColor, buttonProps: { className: buttonClassName, color: buttonPropsColor, ...buttonProps }, className, disabled, dropdownIcon, formValueMode, getItemText, hideDropdownIcon, isRequired, labelText, menuClassName, menuSize, multi, name, options: optionsArray, showDirty, }: SelectProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type StatProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const Stat: ({ className, ...props }: StatProps) => JSX.Element;
|
|
3
|
+
export declare const Stat: ({ className, ...props }: StatProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type StatActionsProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const StatActions: ({ className, ...props }: StatActionsProps) => JSX.Element;
|
|
3
|
+
export declare const StatActions: ({ className, ...props }: StatActionsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type StatDescProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const StatDesc: ({ className, ...props }: StatDescProps) => JSX.Element;
|
|
3
|
+
export declare const StatDesc: ({ className, ...props }: StatDescProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type StatFigureProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const StatFigure: ({ className, ...props }: StatFigureProps) => JSX.Element;
|
|
3
|
+
export declare const StatFigure: ({ className, ...props }: StatFigureProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type StatTitleProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const StatTitle: ({ className, ...props }: StatTitleProps) => JSX.Element;
|
|
3
|
+
export declare const StatTitle: ({ className, ...props }: StatTitleProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
export type StatValueProps = HTMLAttributes<HTMLDivElement>;
|
|
3
|
-
export declare const StatValue: ({ className, ...props }: StatValueProps) => JSX.Element;
|
|
3
|
+
export declare const StatValue: ({ className, ...props }: StatValueProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export type StatsLayout = (typeof STATS_LAYOUTS)[number];
|
|
|
4
4
|
export interface StatsProps extends HTMLAttributes<HTMLDivElement> {
|
|
5
5
|
layout?: StatsLayout;
|
|
6
6
|
}
|
|
7
|
-
export declare const Stats: ({ className, layout, ...props }: StatsProps) => JSX.Element;
|
|
7
|
+
export declare const Stats: ({ className, layout, ...props }: StatsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export type StepColor = (typeof STEP_COLORS)[number];
|
|
|
4
4
|
export interface StepProps extends HTMLAttributes<HTMLLIElement> {
|
|
5
5
|
color?: StepColor;
|
|
6
6
|
}
|
|
7
|
-
export declare const Step: ({ className, color, ...props }: StepProps) => JSX.Element;
|
|
7
|
+
export declare const Step: ({ className, color, ...props }: StepProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export type StepsDirection = (typeof STEPS_DIRECTIONS)[number];
|
|
|
4
4
|
export interface StepsProps extends HTMLAttributes<HTMLUListElement> {
|
|
5
5
|
direction?: StepsDirection;
|
|
6
6
|
}
|
|
7
|
-
export declare const Steps: ({ className, direction, ...props }: StepsProps) => JSX.Element;
|
|
7
|
+
export declare const Steps: ({ className, direction, ...props }: StepsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -3,5 +3,5 @@ import { GenericDataType } from '../../common';
|
|
|
3
3
|
export interface HeaderSortIconProps<DataType extends GenericDataType> {
|
|
4
4
|
column: Column<DataType, unknown>;
|
|
5
5
|
}
|
|
6
|
-
export declare const HeaderSortIcon: <DataType extends GenericDataType>({ column, }: HeaderSortIconProps<DataType>) => JSX.Element | null;
|
|
6
|
+
export declare const HeaderSortIcon: <DataType extends GenericDataType>({ column, }: HeaderSortIconProps<DataType>) => import("react/jsx-runtime").JSX.Element | null;
|
|
7
7
|
export default HeaderSortIcon;
|
|
@@ -16,4 +16,4 @@ export interface TableProps<DataType extends GenericDataType> extends Omit<Table
|
|
|
16
16
|
pinRows?: boolean;
|
|
17
17
|
size?: TableSize;
|
|
18
18
|
}
|
|
19
|
-
export declare const Table: <DataType extends GenericDataType>({ cellClassNames, className, enableGlobalFilter, enableRowHover, enableRowSelection, enableSelectAll, enableZebra, highlightWhenSelected, initialState, isLoading, metadata, pinCols, pinRows, size, ...props }: TableProps<DataType>) => JSX.Element;
|
|
19
|
+
export declare const Table: <DataType extends GenericDataType>({ cellClassNames, className, enableGlobalFilter, enableRowHover, enableRowSelection, enableSelectAll, enableZebra, highlightWhenSelected, initialState, isLoading, metadata, pinCols, pinRows, size, ...props }: TableProps<DataType>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { HTMLProps } from 'react';
|
|
2
2
|
export type TabContentProps = Omit<HTMLProps<HTMLDivElement>, 'as' | 'ref'>;
|
|
3
|
-
export declare const TabContent: (props: TabContentProps) => JSX.Element;
|
|
3
|
+
export declare const TabContent: (props: TabContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -21,4 +21,4 @@ export interface TabsProps extends Omit<HTMLProps<HTMLDivElement>, 'as' | 'onCha
|
|
|
21
21
|
tabs: TabData[];
|
|
22
22
|
vertical?: boolean;
|
|
23
23
|
}
|
|
24
|
-
export declare const Tabs: ({ bordered, boxed, children, className, manual, lifted, onChange, pathname, selectedTabId, size, tabs, vertical, ...props }: TabsProps) => JSX.Element;
|
|
24
|
+
export declare const Tabs: ({ bordered, boxed, children, className, manual, lifted, onChange, pathname, selectedTabId, size, tabs, vertical, ...props }: TabsProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -9,4 +9,4 @@ export interface TooltipProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
9
9
|
position?: TooltipPosition;
|
|
10
10
|
text: string;
|
|
11
11
|
}
|
|
12
|
-
export declare const Tooltip: ({ className, color, open, position, text, ...props }: TooltipProps) => JSX.Element;
|
|
12
|
+
export declare const Tooltip: ({ className, color, open, position, text, ...props }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -24,4 +24,4 @@ export interface TypeaheadSelectProps<DataItem extends GenericDataType, Values e
|
|
|
24
24
|
onKeyDown?: KeyboardEventHandler<HTMLInputElement>;
|
|
25
25
|
size?: InputSize;
|
|
26
26
|
}
|
|
27
|
-
export declare const TypeaheadSelect: <DataItem extends GenericDataType, Values extends FieldValues>({ badgeColor, bordered, className, color, controllerProps, debounceTime, disabled, disableSingleSelectBadge, dropdownInputClassName, formValueMode, getBadgeText, getItemText, inputClassName, inputPlaceholder, isRequired, labelText, menuClassName, menuSize, multi, name, onDebouncedChange, onKeyDown, options: optionsArray, placeholder, showDirty, size, }: TypeaheadSelectProps<DataItem, Values>) => JSX.Element;
|
|
27
|
+
export declare const TypeaheadSelect: <DataItem extends GenericDataType, Values extends FieldValues>({ badgeColor, bordered, className, color, controllerProps, debounceTime, disabled, disableSingleSelectBadge, dropdownInputClassName, formValueMode, getBadgeText, getItemText, inputClassName, inputPlaceholder, isRequired, labelText, menuClassName, menuSize, multi, name, onDebouncedChange, onKeyDown, options: optionsArray, placeholder, showDirty, size, }: TypeaheadSelectProps<DataItem, Values>) => import("react/jsx-runtime").JSX.Element;
|