@uniai-fe/uds-templates 0.1.15 → 0.1.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniai-fe/uds-templates",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -1,6 +1,10 @@
1
1
  import "./login/index.scss";
2
2
 
3
- import { AuthContainer } from "./common/container";
3
+ import {
4
+ AuthContainer,
5
+ AuthStageHeader,
6
+ type AuthContainerProps,
7
+ } from "./common/container";
4
8
  import AuthCompleteTemplate from "./common/complete/Template";
5
9
  import AuthPasswordSetField from "./common/password/markup/PasswordSetField";
6
10
  import { AuthLogin } from "./login";
@@ -11,8 +15,10 @@ import { FindPassword } from "./find-password";
11
15
 
12
16
  export const Auth = {
13
17
  Container: AuthContainer,
18
+ StageHeader: AuthStageHeader,
14
19
  Common: {
15
20
  Container: AuthContainer,
21
+ StageHeader: AuthStageHeader,
16
22
  Complete: AuthCompleteTemplate,
17
23
  PasswordSetField: AuthPasswordSetField,
18
24
  },
@@ -29,6 +35,7 @@ export {
29
35
  useSignupAccountForm,
30
36
  } from "./signup";
31
37
 
38
+ export type { AuthContainerProps };
32
39
  export { useCheckPassword } from "./common/password/hooks/useCheckPassword";
33
40
  export { DEFAULT_PASSWORD_RULES } from "./common/password/constants";
34
41
  export { FindAccount, useFindAccountForm } from "./find-account";