@pimcore/studio-ui-bundle 1.0.0-canary.20251125-103907-8966a97 → 1.0.0-canary.20251125-120326-34127bf
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/build/types/src/core/app/router/router.d.ts +2 -0
- package/dist/build/types/src/core/components/password-reset/password-reset.d.ts +11 -0
- package/dist/build/types/src/core/modules/auth/components/forgot-password-form/forgot-password-form.d.ts +15 -0
- package/dist/build/types/src/core/{components/login-form/login-form.d.ts → modules/auth/components/login-form/login-form-container.d.ts} +1 -1
- package/dist/build/types/src/core/modules/auth/components/login-form/login-form.d.ts +21 -0
- package/dist/build/types/src/core/modules/auth/hooks/use-authentication.d.ts +15 -0
- package/dist/build/types/src/core/modules/auth/profile/profile-container.d.ts +4 -1
- package/dist/build/types/src/core/modules/auth/profile/profile-detail.d.ts +2 -1
- package/dist/build/types/src/sdk/components/index.d.ts +1 -1
- package/package.json +1 -1
- /package/dist/build/types/src/core/{components → modules/auth/components}/login-form/login-form-style.d.ts +0 -0
- /package/dist/build/types/src/core/{components → modules/auth/components}/login-form/login-form.stories.d.ts +0 -0
|
@@ -10,9 +10,11 @@
|
|
|
10
10
|
export declare const baseUrl: string;
|
|
11
11
|
export declare const LOGIN_URL: string;
|
|
12
12
|
export declare const DEEP_LINK_URL: string;
|
|
13
|
+
export declare const PASSWORD_RESET_URL: string;
|
|
13
14
|
export declare const routes: {
|
|
14
15
|
root: string;
|
|
15
16
|
login: string;
|
|
16
17
|
deeplinkAsset: string;
|
|
18
|
+
passwordReset: string;
|
|
17
19
|
};
|
|
18
20
|
export declare const router: import("@remix-run/router").Router;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This source file is available under the terms of the
|
|
3
|
+
* Pimcore Open Core License (POCL)
|
|
4
|
+
* Full copyright and license information is available in
|
|
5
|
+
* LICENSE.md which is distributed with this source code.
|
|
6
|
+
*
|
|
7
|
+
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
|
|
8
|
+
* @license Pimcore Open Core License (POCL)
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
export declare const PasswordReset: () => React.JSX.Element;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This source file is available under the terms of the
|
|
3
|
+
* Pimcore Open Core License (POCL)
|
|
4
|
+
* Full copyright and license information is available in
|
|
5
|
+
* LICENSE.md which is distributed with this source code.
|
|
6
|
+
*
|
|
7
|
+
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
|
|
8
|
+
* @license Pimcore Open Core License (POCL)
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
interface ForgotPasswordFormProps {
|
|
12
|
+
onGetBack: () => void;
|
|
13
|
+
}
|
|
14
|
+
export declare const ForgotPasswordForm: ({ onGetBack }: ForgotPasswordFormProps) => React.JSX.Element;
|
|
15
|
+
export {};
|
|
@@ -16,5 +16,5 @@ export interface IAdditionalLogins {
|
|
|
16
16
|
interface ILoginFormProps {
|
|
17
17
|
additionalLogins?: IAdditionalLogins[];
|
|
18
18
|
}
|
|
19
|
-
export declare const
|
|
19
|
+
export declare const LoginFormContainer: ({ additionalLogins }: ILoginFormProps) => React.JSX.Element;
|
|
20
20
|
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This source file is available under the terms of the
|
|
3
|
+
* Pimcore Open Core License (POCL)
|
|
4
|
+
* Full copyright and license information is available in
|
|
5
|
+
* LICENSE.md which is distributed with this source code.
|
|
6
|
+
*
|
|
7
|
+
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
|
|
8
|
+
* @license Pimcore Open Core License (POCL)
|
|
9
|
+
*/
|
|
10
|
+
import React from 'react';
|
|
11
|
+
export interface IAdditionalLogins {
|
|
12
|
+
key: string;
|
|
13
|
+
name: string;
|
|
14
|
+
link: string;
|
|
15
|
+
}
|
|
16
|
+
interface ILoginFormProps {
|
|
17
|
+
additionalLogins?: IAdditionalLogins[];
|
|
18
|
+
onPasswordForgotten?: () => void;
|
|
19
|
+
}
|
|
20
|
+
export declare const LoginForm: ({ additionalLogins, onPasswordForgotten }: ILoginFormProps) => React.JSX.Element;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This source file is available under the terms of the
|
|
3
|
+
* Pimcore Open Core License (POCL)
|
|
4
|
+
* Full copyright and license information is available in
|
|
5
|
+
* LICENSE.md which is distributed with this source code.
|
|
6
|
+
*
|
|
7
|
+
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
|
|
8
|
+
* @license Pimcore Open Core License (POCL)
|
|
9
|
+
*/
|
|
10
|
+
interface UseAuthenticationReturn {
|
|
11
|
+
resetPassword: (username: string, onFinish?: () => void, onSuccess?: () => void) => Promise<void>;
|
|
12
|
+
loginWithToken: (token: string, onSuccess?: () => void, onError?: () => void) => Promise<void>;
|
|
13
|
+
}
|
|
14
|
+
export declare const useAuthentication: () => UseAuthenticationReturn;
|
|
15
|
+
export {};
|
|
@@ -10,5 +10,8 @@
|
|
|
10
10
|
import React from 'react';
|
|
11
11
|
import type { WidgetManagerTabConfig } from '../../../modules/widget-manager/widget-manager-slice';
|
|
12
12
|
export declare const USERPROFILE: WidgetManagerTabConfig;
|
|
13
|
-
|
|
13
|
+
interface ProfileContainerProps {
|
|
14
|
+
resetPassword?: boolean;
|
|
15
|
+
}
|
|
16
|
+
declare const ProfileContainer: ({ resetPassword }: ProfileContainerProps) => React.JSX.Element;
|
|
14
17
|
export { ProfileContainer };
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
import React from 'react';
|
|
11
11
|
interface IProfileDetail {
|
|
12
12
|
id: number;
|
|
13
|
+
resetPassword?: boolean;
|
|
13
14
|
}
|
|
14
|
-
declare const ProfileDetail: ({ id }: IProfileDetail) => React.JSX.Element;
|
|
15
|
+
declare const ProfileDetail: ({ id, resetPassword }: IProfileDetail) => React.JSX.Element;
|
|
15
16
|
export { ProfileDetail };
|
|
@@ -172,7 +172,7 @@ export * from '../../core/components/pimcore-image/pimcore-image';
|
|
|
172
172
|
export * from '../../core/components/pimcore-video/pimcore-video';
|
|
173
173
|
export * from '../../core/components/modal/useModal/index';
|
|
174
174
|
export * from '../../core/components/modal/file-list/file-list';
|
|
175
|
-
export * from '../../core/components/login-form/login-form';
|
|
175
|
+
export * from '../../core/modules/auth/components/login-form/login-form-container';
|
|
176
176
|
export * from '../../core/components/data-object-preview/data-object-preview';
|
|
177
177
|
export * from '../../core/components/creatable-select/creatable-select';
|
|
178
178
|
export * from '../../core/components/dynamic-filter/provider/use-dynamic-filter';
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|