This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 | |
} |
NewerOlder