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

Rebase 2351 #2362

Merged
merged 6 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions src/applications/registry-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"rootUrl": {
"type": "string"
},
"useLocalStylesAndComponents": {
"type": "boolean"
},
"template": {
"type": "object",
"properties": {
Expand Down
58 changes: 19 additions & 39 deletions src/applications/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,8 @@
"title": "Track Claims",
"layout": "page-react.html",
"description": "Track the status of your VA claims and appeals."
}
},
"useLocalStylesAndComponents": true
},
{
"appName": "Letters",
Expand Down Expand Up @@ -506,32 +507,6 @@
]
}
},
{
"appName": "Opt Out of Sharing VA Education Benefits Information",
"entryName": "0993-edu-benefits",
"rootUrl": "/education/opt-out-information-sharing/opt-out-form-0993",
"template": {
"title": "Opt Out Of Sharing VA Education Benefits Information",
"heading": "Opt out of sharing VA education benefits information",
"layout": "page-react.html",
"description": "Use your VA education benefits to pay for college or training programs. Find out which documents you’ll need to apply for benefits, and start your online application today.",
"includeBreadcrumbs": true,
"breadcrumbs_override": [
{
"path": "education/",
"name": "Education and training"
},
{
"path": "education/opt-out-information-sharing/",
"name": "Opt out of information sharing"
},
{
"path": "education/opt-out-information-sharing/opt-out-form-0993",
"name": "Opt out of sharing your information with schools"
}
]
}
},
{
"appName": "GI Bill School Feedback Tool",
"entryName": "feedback-tool",
Expand Down Expand Up @@ -1055,7 +1030,7 @@
}
},
{
"appName": "Mock Form AE Design Patterns",
"appName": "Authenticated Experience Design Patterns",
"entryFile": "./app-entry.jsx",
"entryName": "mock-form-ae-design-patterns",
"rootUrl": "/mock-form-ae-design-patterns",
Expand Down Expand Up @@ -1702,16 +1677,6 @@
"layout": "page-react.html"
}
},
{
"appName": "Form Renderer",
"entryName": "form-renderer",
"rootUrl": "/digital-form",
"productId": "8e41524c-d835-476c-ba0f-040037380911",
"template": {
"vagovprod": false,
"layout": "page-react.html"
}
},
{
"appName": "22-10215 Statement of Assurance of Compliance with 85 Percent Enrollment Ratios",
"entryName": "10215-edu-benefits",
Expand Down Expand Up @@ -1794,7 +1759,22 @@
"productId": "c1a00d88-ead0-46d4-94ab-e72baba100c6",
"template": {
"vagovprod": false,
"layout": "page-react.html"
"layout": "page-react.html",
"includeBreadcrumbs": true,
"breadcrumbs_override": [
{
"path": "",
"name": "Va.gov home"
},
{
"path": "my-va",
"name": "My VA"
},
{
"path": "welcome-va-setup/review-information/contact-information",
"name": "Add your contact information"
}
]
}
}
]
8 changes: 1 addition & 7 deletions src/site/includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,7 @@
<link rel="preload" href="/generated/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin>

<!-- CSS -->
{% comment %}
Apps that opt out of the site-wide stylesheet must include a smaller subset of styles
in their application bundle
{% endcomment %}
{% unless useLocalStylesAndComponents %}
<link rel="stylesheet" data-entry-name="style.css">
{% endunless %}
<link rel="stylesheet" data-entry-name="style.css">
<link rel="stylesheet" data-entry-content="content-build.css">
<link rel="stylesheet" data-entry-name="{{ entryname | default: 'static-pages' }}.css">

Expand Down
Loading