@groupeactual/ui-kit 1.7.0 → 1.7.1-beta.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/cjs/index.js +9 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/index.d.ts +1 -2
- package/dist/es/index.js +8 -8
- package/dist/es/index.js.map +1 -1
- package/dist/es/src/components/EmbbededNotification/EmbeddedNotification.d.ts +1 -1
- package/package.json +7 -9
- package/src/components/EmbbededNotification/EmbeddedNotification.tsx +1 -2
- package/src/components/Form/TimePicker/TimePicker.tsx +0 -1
package/dist/es/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React, { ReactNode, FocusEventHandler, BaseSyntheticEvent, MouseEventHandler, MouseEvent, PropsWithChildren } from 'react';
|
|
2
2
|
import { TypographyProps, LinkProps, ButtonProps, TextFieldProps, SelectProps, CheckboxProps, RadioGroupProps, AccordionProps, BreadcrumbsProps, BoxProps, ChipProps, TooltipProps, AutocompleteProps, MenuItemProps, AlertProps, SxProps, Theme as Theme$1, CardProps, SwitchProps, IconButtonProps } from '@mui/material';
|
|
3
3
|
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
4
|
-
import { BoxProps as BoxProps$1 } from '@mui/system';
|
|
5
4
|
import { CustomContentProps } from 'notistack';
|
|
6
5
|
import { ModalProps as ModalProps$1 } from '@mui/material/Modal';
|
|
7
6
|
import { DatePickerProps } from '@mui/x-date-pickers-pro';
|
|
@@ -188,7 +187,7 @@ interface Props$e extends Omit<ChipProps, 'suffix' | 'prefix' | 'onDelete' | 'on
|
|
|
188
187
|
}
|
|
189
188
|
declare const Chip: ({ variant, label, prefixIcon, suffixIcon, suffixTooltip, suffixAction, tooltip, maxWidth, ...props }: Props$e) => React.JSX.Element;
|
|
190
189
|
|
|
191
|
-
interface Props$d extends BoxProps
|
|
190
|
+
interface Props$d extends BoxProps {
|
|
192
191
|
variant: 'warning' | 'error' | 'success' | 'infos';
|
|
193
192
|
title: string;
|
|
194
193
|
text?: ReactNode;
|