@nnc-digital/nnc-design-system 0.4.35 → 0.4.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.esm.js +8 -5
- package/build/index.esm.js.map +1 -1
- package/build/index.js +8 -5
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.esm.js
CHANGED
|
@@ -23817,11 +23817,11 @@ const Container$E = styled.div`
|
|
|
23817
23817
|
padding: ${(props) => props.theme.theme_vars.spacingSizes.medium} 0;
|
|
23818
23818
|
background: ${(props) =>
|
|
23819
23819
|
props.alertType === 'alert'
|
|
23820
|
-
? props.theme.theme_vars.colours.
|
|
23820
|
+
? props.theme.theme_vars.colours.alert_background
|
|
23821
23821
|
: props.alertType === 'warning'
|
|
23822
|
-
? props.theme.theme_vars.colours.
|
|
23822
|
+
? props.theme.theme_vars.colours.warning_background
|
|
23823
23823
|
: props.alertType === 'positive'
|
|
23824
|
-
? props.theme.theme_vars.colours.
|
|
23824
|
+
? props.theme.theme_vars.colours.positive_background
|
|
23825
23825
|
: props.alertType === 'london_bridge'
|
|
23826
23826
|
? props.theme.theme_vars.colours.black
|
|
23827
23827
|
: props.theme.theme_vars.colours.negative};
|
|
@@ -23853,7 +23853,7 @@ const Container$E = styled.div`
|
|
|
23853
23853
|
background: ${(props) =>
|
|
23854
23854
|
props.alertType === 'warning'
|
|
23855
23855
|
? props.theme.theme_vars.colours.action
|
|
23856
|
-
: props.theme.theme_vars.colours.
|
|
23856
|
+
: props.theme.theme_vars.colours.warning_background} !important;
|
|
23857
23857
|
}
|
|
23858
23858
|
&:active {
|
|
23859
23859
|
${(props) => props.theme.linkStylesActive}
|
|
@@ -23912,7 +23912,7 @@ const HideLink = styled.button`
|
|
|
23912
23912
|
background: ${(props) =>
|
|
23913
23913
|
props.alertType === 'warning'
|
|
23914
23914
|
? props.theme.theme_vars.colours.action
|
|
23915
|
-
: props.theme.theme_vars.colours.
|
|
23915
|
+
: props.theme.theme_vars.colours.warning_background} !important;
|
|
23916
23916
|
border-bottom: 3px solid ${(props) => props.theme.theme_vars.colours.black};
|
|
23917
23917
|
|
|
23918
23918
|
svg {
|
|
@@ -28393,6 +28393,9 @@ const north_vars = {
|
|
|
28393
28393
|
placeholder: '#585656',
|
|
28394
28394
|
|
|
28395
28395
|
secondary: '#1A9DD9',
|
|
28396
|
+
alert_background: '#B20613',
|
|
28397
|
+
warning_background: '#F69F14',
|
|
28398
|
+
positive_background: '#1C41BA'
|
|
28396
28399
|
},
|
|
28397
28400
|
fontstack: 'Arial, Helvetica, sans-serif',
|
|
28398
28401
|
fontSizes: {
|