Skip to content

Commit ca7ab04

Browse files
BA: export service auth variables (#90)
1 parent fab862e commit ca7ab04

File tree

6 files changed

+18
-2
lines changed

6 files changed

+18
-2
lines changed

packages/authentication/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @baseapp-frontend/authentication
22

3+
## 2.1.1
4+
5+
### Patch Changes
6+
7+
- Export variables from `services/auth`
8+
39
## 2.1.0
410

511
### Minor Changes

packages/authentication/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@ export * from './modules/mfa'
33
export * from './modules/user'
44

55
export { default as AuthApi } from './services/auth'
6+
export * from './services/auth'
7+
68
export { default as MfaApi } from './services/mfa'
79
export * from './services/mfa'
10+
811
export { default as UserApi } from './services/user'
912
export * from './services/user'
1013

packages/authentication/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@baseapp-frontend/authentication",
33
"description": "Authentication modules.",
4-
"version": "2.1.0",
4+
"version": "2.1.1",
55
"main": "./dist/index.ts",
66
"module": "./dist/index.mjs",
77
"scripts": {

packages/design-system-mui/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @baseapp-frontend/design-system-mui
22

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+
39
## 1.5.0
410

511
### Minor Changes

packages/design-system-mui/components/CheckboxField/index.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const CheckboxField = <TForm extends FieldValues>({
2727
FormControlProps,
2828
}: ICheckboxFieldProps<TForm>) => {
2929
const formError = form?.formState?.errors?.[name]?.message
30+
// @ts-ignore TODO: (BA-1081) investigate react-hook-form types
3031
const innerShowError = (formError && form?.formState?.touchedFields?.[name]) as boolean
3132

3233
return (

packages/design-system-mui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@baseapp-frontend/design-system-mui",
33
"description": "Design System components and configurations.",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"main": "./dist/index.ts",
66
"module": "./dist/index.mjs",
77
"scripts": {

0 commit comments

Comments
 (0)