Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump axios from 1.7.7 to 1.8.2 in /apps/demo-renderer-app #1122

Open
wants to merge 1 commit into
base: alpha
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump axios from 1.7.7 to 1.8.2 in /apps/demo-renderer-app
Bumps [axios](https://github.com/axios/axios) from 1.7.7 to 1.8.2.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.7...v1.8.2)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
dependabot[bot] authored Mar 11, 2025
commit 2cd3ea6741a0617a4d6d2bda5380e540e5760df1
9 changes: 5 additions & 4 deletions apps/demo-renderer-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/demo-renderer-app/package.json
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@tanstack/react-query": "^4.36.1",
"axios": "^1.7.7",
"axios": "^1.8.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lforms": "^36.3.3",

Unchanged files with check annotations Beta

}
if (activeTab === 'nlm') {
// @ts-ignore

Check warning on line 76 in apps/demo-renderer-app/src/components/FormViewer.tsx

GitHub Actions / Lint

Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free
result.resource = LForms.Util.getFormFHIRData(
'QuestionnaireResponse',
'R4',
formId: string,
options: object
): Promise<void>;
function setFHIRContext(fhirContext: any, fhirContextVars: any): void;

Check warning on line 29 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type

Check warning on line 29 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
function getFormFHIRData(
resourceType: 'QuestionnaireResponse', //
fhirVersion: string,
formId: string,
options?: object
): QuestionnaireResponse;
function convertFHIRQuestionnaireToLForms(questionnaire: Questionnaire, fhirVersion: string): any;

Check warning on line 36 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
function mergeFHIRDataIntoLForms(
resourceType: 'QuestionnaireResponse',
response: QuestionnaireResponse | undefined,
lhcQ: any,

Check warning on line 40 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
fhirVersion: string
): any;

Check warning on line 42 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
}
declare global {
interface Window {
LForms: any;

Check warning on line 47 in apps/demo-renderer-app/src/components/LhcFormsRenderer.tsx

GitHub Actions / Lint

Unexpected any. Specify a different type
}
}
return response.json();
}
export function questionnaireIsValid(questionnaire: any): questionnaire is Questionnaire {

Check warning on line 45 in apps/demo-renderer-app/src/utils/fetchResource.ts

GitHub Actions / Lint

Unexpected any. Specify a different type
return questionnaire.resourceType === 'Questionnaire' && questionnaire.item;
}
export function patientIsValid(patient: any): patient is Patient {

Check warning on line 49 in apps/demo-renderer-app/src/utils/fetchResource.ts

GitHub Actions / Lint

Unexpected any. Specify a different type
return patient.resourceType === 'Patient' && patient.id && patient.name;
}
export function practitionerIsValid(practitioner: any): practitioner is Practitioner {

Check warning on line 53 in apps/demo-renderer-app/src/utils/fetchResource.ts

GitHub Actions / Lint

Unexpected any. Specify a different type
return practitioner.resourceType === 'Practitioner' && practitioner.id && practitioner.name;
}