File tree 6 files changed +18
-2
lines changed
6 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1
1
# @baseapp-frontend/authentication
2
2
3
+ ## 2.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Export variables from ` services/auth `
8
+
3
9
## 2.1.0
4
10
5
11
### Minor Changes
Original file line number Diff line number Diff line change @@ -3,8 +3,11 @@ export * from './modules/mfa'
3
3
export * from './modules/user'
4
4
5
5
export { default as AuthApi } from './services/auth'
6
+ export * from './services/auth'
7
+
6
8
export { default as MfaApi } from './services/mfa'
7
9
export * from './services/mfa'
10
+
8
11
export { default as UserApi } from './services/user'
9
12
export * from './services/user'
10
13
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @baseapp-frontend/authentication" ,
3
3
"description" : " Authentication modules." ,
4
- "version" : " 2.1.0 " ,
4
+ "version" : " 2.1.1 " ,
5
5
"main" : " ./dist/index.ts" ,
6
6
"module" : " ./dist/index.mjs" ,
7
7
"scripts" : {
Original file line number Diff line number Diff line change 1
1
# @baseapp-frontend/design-system-mui
2
2
3
+ ## 1.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Ignore TS errors, probably caused by the ` compilerOptions ` update made by the ` tsconfig v1.1.5 ` update.
8
+
3
9
## 1.5.0
4
10
5
11
### Minor Changes
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const CheckboxField = <TForm extends FieldValues>({
27
27
FormControlProps,
28
28
} : ICheckboxFieldProps < TForm > ) => {
29
29
const formError = form ?. formState ?. errors ?. [ name ] ?. message
30
+ // @ts -ignore TODO: (BA-1081) investigate react-hook-form types
30
31
const innerShowError = ( formError && form ?. formState ?. touchedFields ?. [ name ] ) as boolean
31
32
32
33
return (
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @baseapp-frontend/design-system-mui" ,
3
3
"description" : " Design System components and configurations." ,
4
- "version" : " 1.5.0 " ,
4
+ "version" : " 1.5.1 " ,
5
5
"main" : " ./dist/index.ts" ,
6
6
"module" : " ./dist/index.mjs" ,
7
7
"scripts" : {
You can’t perform that action at this time.
0 commit comments