Path | old fsr | combined | enhanced |
---|---|---|---|
/veteran-information | true | true | true |
/available-debts | true | false | true |
/all-available-debts | false | true | false |
/contact-information | true | true | false |
/current-contact-information | false | false | true |
/edit-mobile-phone | false | false | true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { DrupalClient } from 'next-drupal' | |
import crossFetch from 'cross-fetch' | |
import { SocksProxyAgent } from 'socks-proxy-agent' | |
import { addCAs } from 'syswide-cas' | |
import * as fs from 'fs' | |
const https = require('https') | |
interface TLSSecretData { | |
cert: string | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"id": "", | |
"type": "users_scaffolds", | |
"attributes": { | |
"services": [ | |
"facilities", | |
"hca", | |
"edu-benefits", | |
"form-save-in-progress", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import styled from 'styled-components'; | |
const CurrencyInputWrapper = styled.div` | |
position: relative; | |
display: inline-block; | |
`; | |
const CurrencySymbol = styled.span` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect, useRef } from 'react'; | |
import { VaNumberInput } from '@department-of-veterans-affairs/component-library/dist/react-bindings'; | |
const CurrencyInput = (props) => { | |
const inputRef = useRef(null); | |
useEffect(() => { | |
if (inputRef.current) { | |
console.log('Shadow root:', inputRef.current.shadowRoot); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Link } from 'react-router-dom'; | |
import { MiniSummaryCard } from './shared/MiniSummaryCard'; | |
import { setJobIndex } from '../utils/session'; | |
const EmploymentHistorySummaryCard = ({formData, setFormData, isSpouse }) => { | |
const employmentHistory = formData?.employmentHistory || { | |
spouse: { employmentRecords: [] }, | |
veteran: { employmentRecords: [] }, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"additionalData": { | |
"bankruptcy": { | |
"dateDischarged": "2021-01-01", | |
"courtLocation": "san diego", | |
"docketNumber": "234553" | |
}, | |
"additionalComments": "I need help" | |
}, | |
"questions": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"personalIdentification": { | |
"ssn": "1234", | |
"fileNumber": "5678", | |
"fsrReason": "Compromise, Waiver" | |
}, | |
"personalData": { | |
"veteranFullName": { | |
"first": "Greg", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Presubmit Object ACCEPTED - this uses efsr-maximal, I only toggled the chapters but did not modify the data in any way. | |
{ | |
"questions": { | |
"hasRecreationalVehicle": false, | |
"hasVehicle": false, | |
"hasRealEstate": false, | |
"hasDependents": "0", | |
"spouseHasBenefits": false, | |
"isMarried": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"view:combinedFinancialStatusReport": true, | |
"view:enhancedFinancialStatusReport": true, | |
"otherExpenses": [ | |
{ | |
"name": "Clothing", | |
"amount": "10" | |
}, | |
{ | |
"name": "Food", |
OlderNewer