mirror of https://github.com/status-im/consul.git
Merge pull request #9021 from hashicorp/pruett.alertbanner-exp
Expose `expirationDate` prop in <AlertBanner/>
This commit is contained in:
parent
6cbc41d5b5
commit
b3ec64c23f
|
@ -6,4 +6,7 @@ export default {
|
|||
url: 'https://www.hashicorp.com/blog/consul-service-on-azure-production-tier',
|
||||
text: 'HashiCorp Consul Service on Azure Production SKU',
|
||||
linkText: 'Learn more',
|
||||
// Set the `expirationDate prop with a datetime string (e.g. `2020-01-31T12:00:00-07:00`)
|
||||
// if you'd like the component to stop showing at or after a certain date
|
||||
expirationDate: null,
|
||||
}
|
||||
|
|
|
@ -3542,11 +3542,10 @@
|
|||
"integrity": "sha512-03qWTvECGrG2Z0cm/w71J/KmSBJrUem1QTdRuGFHLTPGgAdIgI90xWpYWmUjGw7gXrxJ/q1yY2JwbfpHwRrpPg=="
|
||||
},
|
||||
"@hashicorp/react-alert-banner": {
|
||||
"version": "3.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@hashicorp/react-alert-banner/-/react-alert-banner-3.2.1.tgz",
|
||||
"integrity": "sha512-Gg1rr5UkhCvpUFCuv8RddHCBqPvlYL/YfkwuD28fq/ig+walMOqsJrZw1ExnbzHVJwHHC3Uis3jBuDxI/48MYQ==",
|
||||
"version": "4.2.0",
|
||||
"resolved": "https://registry.npmjs.org/@hashicorp/react-alert-banner/-/react-alert-banner-4.2.0.tgz",
|
||||
"integrity": "sha512-mLi5caKU41L6ZMqQ/mQN9jrgPESzxIqxoKchmB0TpJqwHnUG46UPokWbQovXgtPnAUrXDyLYU0Sp3gaIsDuI9Q==",
|
||||
"requires": {
|
||||
"@hashicorp/react-global-styles": "^4.4.2",
|
||||
"js-cookie": "2.2.0",
|
||||
"slugify": "1.3.4"
|
||||
},
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"dependencies": {
|
||||
"@hashicorp/nextjs-scripts": "11.1.1",
|
||||
"@hashicorp/react-alert": "2.0.3",
|
||||
"@hashicorp/react-alert-banner": "3.2.1",
|
||||
"@hashicorp/react-alert-banner": "4.2.0",
|
||||
"@hashicorp/react-button": "2.2.4",
|
||||
"@hashicorp/react-call-to-action": "0.2.4",
|
||||
"@hashicorp/react-case-study-slider": "2.1.4",
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
--highlight-color: var(--consul);
|
||||
}
|
||||
|
||||
@import '~@hashicorp/react-alert-banner/dist/style.css';
|
||||
@import '~@hashicorp/react-alert-banner/style.css';
|
||||
@import '~@hashicorp/react-alert/dist/style.css';
|
||||
@import '~@hashicorp/react-button/dist/style.css';
|
||||
@import '~@hashicorp/react-call-to-action/dist/style.css';
|
||||
|
|
Loading…
Reference in New Issue