@fattureincloud/fic-design-system 0.4.0-rc.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. package/dist/components/avatar/Avatar.d.ts +1 -0
  2. package/dist/components/avatar/avatar.stories.d.ts +1 -0
  3. package/dist/components/badge/Badge.d.ts +1 -0
  4. package/dist/components/badge/badge.stories.d.ts +1 -0
  5. package/dist/components/banner/Banner.d.ts +1 -0
  6. package/dist/components/banner/banner.stories.d.ts +1 -0
  7. package/dist/components/buttons/button/Button.d.ts +1 -0
  8. package/dist/components/buttons/button/styled.d.ts +1 -0
  9. package/dist/components/buttons/iconButton/iconButton.stories.d.ts +1 -0
  10. package/dist/components/chips/components/styledChipWrapper.d.ts +1 -0
  11. package/dist/components/drawer/components/styledDrawerWrapper.d.ts +1 -0
  12. package/dist/components/dropdown/components/Item.d.ts +1 -0
  13. package/dist/components/dropdown/components/Separator.d.ts +1 -0
  14. package/dist/components/dropdown/components/Title.d.ts +1 -0
  15. package/dist/components/dropdown/components/UserListItem.d.ts +1 -0
  16. package/dist/components/dropdown/dropdown.stories.d.ts +1 -0
  17. package/dist/components/floatingBadge/floatingBadge.stories.d.ts +1 -0
  18. package/dist/components/groupedList/components/groupElement.d.ts +1 -0
  19. package/dist/components/groupedList/components/itemElement.d.ts +1 -0
  20. package/dist/components/groupedList/components/titleElement.d.ts +1 -0
  21. package/dist/components/groupedList/groupedList.d.ts +1 -0
  22. package/dist/components/groupedList/groupedList.stories.d.ts +1 -0
  23. package/dist/components/icon/icon.stories.d.ts +1 -0
  24. package/dist/components/inlineMessages/components/styledInlineMessageWrapper.d.ts +1 -0
  25. package/dist/components/inlineMessages/inlineMessages.d.ts +1 -0
  26. package/dist/components/inlineMessages/inlineMessages.stories.d.ts +1 -0
  27. package/dist/components/inlineMessages/types.d.ts +1 -0
  28. package/dist/components/microTag/microtag.stories.d.ts +1 -0
  29. package/dist/components/modals/confirmationModal.d.ts +1 -0
  30. package/dist/components/modals/modals.stories.d.ts +1 -0
  31. package/dist/components/pageEmptySet/pageEmptySet.d.ts +1 -0
  32. package/dist/components/pagination/index.d.ts +1 -0
  33. package/dist/components/pagination/pagination.stories.d.ts +1 -0
  34. package/dist/components/radioButton/radio.stories.d.ts +1 -0
  35. package/dist/components/stepper/stepper.stories.d.ts +1 -0
  36. package/dist/components/table/components/actions/actionsPopUpButton.d.ts +1 -0
  37. package/dist/components/table/components/loadingContent.d.ts +1 -0
  38. package/dist/components/table/table.stories.d.ts +1 -0
  39. package/dist/components/tabs/common/types.d.ts +1 -0
  40. package/dist/components/tabs/tabs.stories.d.ts +1 -0
  41. package/dist/components/tag/Tag.d.ts +1 -0
  42. package/dist/components/tag/styled.d.ts +1 -0
  43. package/dist/components/tag/tag.stories.d.ts +1 -0
  44. package/dist/components/tip/shortcutTip.d.ts +1 -0
  45. package/dist/components/tip/tip.d.ts +1 -0
  46. package/dist/components/tip/tip.stories.d.ts +1 -0
  47. package/dist/components/toast/components/toastContent.d.ts +1 -0
  48. package/dist/components/toast/toast.stories.d.ts +1 -0
  49. package/dist/components/tooltip/tooltip.stories.d.ts +1 -0
  50. package/dist/index.esm.js.map +1 -1
  51. package/dist/index.js.map +1 -1
  52. package/package.json +15 -12
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { AvatarProps } from './types';
2
3
  declare const Avatar: import("styled-components").StyledComponent<(props: AvatarProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
3
4
  export default Avatar;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { AvatarProps } from './types';
3
4
  export declare const Generic: () => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { BadgeProps } from './types';
2
3
  export declare const Badge: (props: BadgeProps) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { BadgeProps } from './types';
3
4
  export declare const Normal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IconProps } from '../icon';
2
3
  export declare type bannerColorType = 'red' | 'blue' | 'yellow' | 'green' | 'grey' | undefined;
3
4
  export interface BannerProps {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { BannerProps } from './Banner';
3
4
  export declare const WithKnobs: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IconProps } from '../../icon';
2
3
  import { WrapperProps } from './types';
3
4
  export interface ButtonProps extends Partial<WrapperProps> {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ButtonProps } from './Button';
2
3
  import { ButtonStyles, WrapperProps } from './types';
3
4
  export declare const LeftIcon: import("styled-components").StyledComponent<({ onClick, isDisabled, ...props }: import("../../icon").IconProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const WithKnobs: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ChipsProps } from '../types';
2
3
  export declare const StyledChipWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ChipsProps, never>;
3
4
  export declare const StyledIcon: import("styled-components").StyledComponent<({ onClick, isDisabled, ...props }: import("../../icon").IconProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { UnstyledDrawerProps } from '../types';
2
3
  export declare const StyledDrawerWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, UnstyledDrawerProps, never>;
3
4
  export declare const StyledIcon: import("styled-components").StyledComponent<({ onClick, isDisabled, ...props }: import("../../icon").IconProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { DropdownItemProps } from '../types';
2
3
  import { DropdownItemStyles } from '../utils';
3
4
  declare const Item: ({ active, className, icon, onClick, shortcut, text, isDisabled, ...rest }: DropdownItemProps) => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  declare const Separator: () => JSX.Element;
2
3
  export default Separator;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TitleProps } from '../types';
2
3
  declare const Title: (props: TitleProps) => JSX.Element;
3
4
  export default Title;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { UserListItemProps } from '../types';
2
3
  export declare const UserListItem: (props: UserListItemProps) => JSX.Element;
3
4
  export declare const UserListWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { DropdownProps } from './types';
3
4
  export declare const Simple: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { WithBadgeProps } from './types';
3
4
  export declare const Normal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { CommonComponentsProps, GroupType } from '../types';
2
3
  interface GroupElementType extends GroupType, CommonComponentsProps {
3
4
  }
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { CommonComponentsProps, ItemType } from '../types';
2
3
  interface ItemElementType extends ItemType, CommonComponentsProps {
3
4
  }
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { GroupType } from '../types';
2
3
  interface Props {
3
4
  title: GroupType['title'];
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { GroupedListProps } from './types';
2
3
  declare const GroupedList: (props: GroupedListProps) => JSX.Element;
3
4
  export default GroupedList;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { GroupedListProps } from './types';
3
4
  export declare const Simple: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { IconProps } from './Icon';
3
4
  export declare const Normal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { InlineMessagesProps, StyledContentProps } from '../types';
2
3
  export declare const StyledIconTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
3
4
  export declare const StyledContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { InlineMessagesProps } from './types';
2
3
  declare const InlineMessage: (props: InlineMessagesProps) => JSX.Element;
3
4
  export default InlineMessage;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { InlineMessagesProps } from './types';
3
4
  export declare const Colors: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IconProps } from '../icon';
2
3
  export declare type MessageType = 'standard' | 'error' | 'info' | 'warning' | 'success';
3
4
  export interface InlineMessagesProps {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { MicroTagProps } from './MicroTag';
3
4
  export declare const Normal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface Props {
2
3
  title: string;
3
4
  type: 'success' | 'error' | 'warning' | 'info';
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { ModalPropsInterface } from './types';
3
4
  export declare const OpenModal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { IconProps } from '../icon';
2
3
  interface Props {
3
4
  icon?: IconProps;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { PaginationProps } from './types';
2
3
  export declare const Pagination: (props: PaginationProps) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { PaginationProps } from './types';
3
4
  export declare const Normal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { RadioButtonInterface } from './typings/radioButton';
3
4
  export declare const WithKnobs: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { StepperProps } from './Stepper';
3
4
  export declare const WithKnobs: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  declare type Props = {
2
3
  rowId: number;
3
4
  handlePopUpVisibility: (rowId: number) => void;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface LoadingContentProps {
2
3
  elmentsNumber: number;
3
4
  propsNumber: number;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { TablePropsInterface } from './typings/main';
3
4
  export declare const WithKnobs: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface TabsProps {
2
3
  className?: string;
3
4
  tabs: TabsItem[];
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { TabsProps } from './common/types';
3
4
  export declare const WithDropdown: () => JSX.Element;
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  import { TagProps } from './types';
2
3
  export declare const Tag: ({ leftIcon, rightIcon, tagStyle, text, type, className }: TagProps) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TagParts } from './tagPalette';
2
3
  import { StyledTagProps } from './types';
3
4
  export declare const LeftIcon: import("styled-components").StyledComponent<({ onClick, isDisabled, ...props }: import("../icon").IconProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { TagProps } from './types';
3
4
  export declare const Normal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ShortcutTipProps } from './types';
2
3
  declare const ShortcutTip: (props: ShortcutTipProps) => JSX.Element;
3
4
  export default ShortcutTip;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TipProps } from './types';
2
3
  declare const Tip: (props: TipProps) => JSX.Element;
3
4
  export default Tip;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { TipProps } from './types';
3
4
  export declare const Normal: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare const StyledIconDiv: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2
3
  export declare const StyledIcon: import("styled-components").StyledComponent<({ onClick, isDisabled, ...props }: import("../../icon").IconProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
3
4
  export declare const StyledTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { ToastProps } from './typings/toast';
3
4
  export declare const WithKnobs: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { Meta } from '@storybook/react';
2
3
  import { TooltipProps } from './Tooltip';
3
4
  export declare const Top: () => JSX.Element;