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.
- package/dist/aquasis-fe-components.js +10397 -10405
- package/dist/aquasis-fe-components.umd.cjs +126 -126
- package/dist/components/Providers/index.d.ts +2 -6
- package/dist/lib/Helpdesk/HelpdeskConnector.d.ts +3 -1
- package/dist/lib/LanguageSwitcher/LanguageSwitcherConnector.d.ts +1 -3
- package/dist/lib/LanguageSwitcher/index.d.ts +2 -1
- package/dist/lib/ReleaseNote/ReleaseNoteConnector.d.ts +1 -8
- package/dist/lib/UserModal/UserModalConnector.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
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
|
-
|
|
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
|
|
5
|
+
export declare const LanguageSwitcher: FC<LanguageSwitcherProps>;
|
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
declare const ReleaseNotesConnector: import('react-redux').ConnectedComponent<import(
|
|
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
|
-
|
|
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;
|