@uniai-fe/uds-templates 0.0.9 → 0.0.10

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.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "UNIAI Design System; UI Templates Package",
5
5
  "type": "module",
6
6
  "private": false,
@@ -72,8 +72,8 @@
72
72
  "eslint": "^9.39.2",
73
73
  "next": "^15.5.9",
74
74
  "prettier": "^3.7.4",
75
- "react-hook-form": "^7.68.0",
76
- "sass": "^1.97.0",
75
+ "react-hook-form": "^7.69.0",
76
+ "sass": "^1.97.1",
77
77
  "typescript": "~5.9.3"
78
78
  }
79
79
  }
@@ -7,3 +7,14 @@ export const Auth = {
7
7
  Container: AuthContainer,
8
8
  Login: AuthLogin,
9
9
  };
10
+
11
+ export type {
12
+ AuthLoginProps,
13
+ AuthLoginFieldOptions,
14
+ AuthLoginFieldConfig,
15
+ AuthLoginFields,
16
+ AuthLoginLinkOptions,
17
+ AuthLoginFormValues,
18
+ UseAuthLoginFormOptions,
19
+ UseAuthLoginFormReturn,
20
+ } from "./login";
@@ -1,6 +1,12 @@
1
1
  import "./index.scss";
2
2
 
3
- export type { AuthLoginProps as AuthLoginTemplateProps } from "./types";
3
+ export type {
4
+ AuthLoginProps,
5
+ AuthLoginFieldOptions,
6
+ AuthLoginFieldConfig,
7
+ AuthLoginFields,
8
+ AuthLoginLinkOptions,
9
+ } from "./types";
4
10
  export * from "./hooks";
5
11
 
6
12
  import AuthLoginContainer from "./markup/Container";