aquasis-fe-components 1.5.0 → 1.5.2

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.
@@ -1,6 +1,2 @@
1
- import { FC, ReactNode } from 'react';
2
- interface Props {
3
- children: ReactNode;
4
- }
5
- export declare const Providers: FC<Props>;
6
- export {};
1
+ import { FC, PropsWithChildren } from 'react';
2
+ export declare const Providers: FC<PropsWithChildren>;
@@ -1,4 +1,6 @@
1
- declare const ConnectedHelpdesk: import('react-redux').ConnectedComponent<import('react').FC<import('./index').HelpdeskProps>, {
1
+ import { FC } from 'react';
2
+ import { HelpdeskProps } from './index';
3
+ declare const ConnectedHelpdesk: import('react-redux').ConnectedComponent<FC<HelpdeskProps>, {
2
4
  size?: import('antd/es/button').ButtonSize;
3
5
  context?: import('react').Context<import('react-redux').ReactReduxContextValue<any, import('redux').UnknownAction> | null> | undefined;
4
6
  store?: import('redux').Store | undefined;
@@ -1,6 +1,4 @@
1
- import { default as LanguageSwitcher } from '.';
2
- declare const LanguageSwitcherConnector: import('react-redux').ConnectedComponent<typeof LanguageSwitcher, {
3
- onlyFlag?: boolean | undefined;
1
+ declare const LanguageSwitcherConnector: import('react-redux').ConnectedComponent<() => import("react/jsx-runtime").JSX.Element, {
4
2
  context?: import('react').Context<import('react-redux').ReactReduxContextValue<any, import('redux').UnknownAction> | null> | undefined;
5
3
  store?: import('redux').Store | undefined;
6
4
  }>;
@@ -1,4 +1,5 @@
1
+ import { FC } from 'react';
1
2
  export interface LanguageSwitcherProps {
2
3
  onlyFlag?: boolean;
3
4
  }
4
- export default function LanguageSwitcher({ onlyFlag }: LanguageSwitcherProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare const LanguageSwitcher: FC<LanguageSwitcherProps>;
@@ -1,11 +1,4 @@
1
- declare const ReleaseNotesConnector: import('react-redux').ConnectedComponent<import('react').FC<import('.').ReleaseNoteProps>, {
2
- addBtnLabel?: string | undefined;
3
- addBtnTooltipText?: string | undefined;
4
- release2edit?: import('../..').IReleaseNote | undefined;
5
- beforeOpenModal?: (() => void) | undefined;
6
- beforeCloseModal?: (() => void) | undefined;
7
- afterSubmit?: (() => void) | undefined;
8
- showAddBtn?: boolean | undefined;
1
+ declare const ReleaseNotesConnector: import('react-redux').ConnectedComponent<() => import("react/jsx-runtime").JSX.Element, {
9
2
  context?: import('react').Context<import('react-redux').ReactReduxContextValue<any, import('redux').UnknownAction> | null> | undefined;
10
3
  store?: import('redux').Store | undefined;
11
4
  }>;
@@ -1,4 +1,6 @@
1
- declare const UserModalConnector: import('react-redux').ConnectedComponent<import('react').FC<import('.').UserModalProps>, {
1
+ import { FC } from 'react';
2
+ import { UserModalProps } from '.';
3
+ declare const UserModalConnector: import('react-redux').ConnectedComponent<FC<UserModalProps>, {
2
4
  user: import('../..').IUser;
3
5
  onCancel: () => void;
4
6
  isLoading?: boolean | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aquasis-fe-components",
3
3
  "private": false,
4
- "version": "1.5.0",
4
+ "version": "1.5.2",
5
5
  "type": "module",
6
6
  "license": "ISC",
7
7
  "author": "Ewerton Souza",