@madie/madie-design-system 1.0.60 → 1.2.1
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/components/DateField/DateField.jsx +1 -2
- package/components/DateTimeField/DateTimeField.jsx +1 -2
- package/components/Search/index.js +1 -0
- package/components/Select/index.jsx +2 -1
- package/components/TextArea/index.jsx +1 -0
- package/components/TextField/index.jsx +2 -2
- package/components/TimeField/TimeField.jsx +1 -2
- package/dist/browser.js +1 -1
- package/dist/index.js +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/index.js.map +1 -1
- package/package.json +8 -7
- package/storybook-static/173.0b985e58.iframe.bundle.js +103 -0
- package/storybook-static/{246.355480c9.iframe.bundle.js.map → 173.0b985e58.iframe.bundle.js.map} +1 -1
- package/storybook-static/721.b2cb1bef.iframe.bundle.js +2 -0
- package/storybook-static/768.a56f8dc5.iframe.bundle.js +1 -0
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.d03a93ad.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/{runtime~main.73716313.iframe.bundle.js → runtime~main.57b908d8.iframe.bundle.js} +1 -1
- package/storybook-static/static/media/arrow-both.a0959e13.svg +3 -0
- package/styles/qppds/components/_button.scss +4 -4
- package/storybook-static/246.355480c9.iframe.bundle.js +0 -103
- package/storybook-static/273.bdf29c3c.iframe.bundle.js +0 -2
- package/storybook-static/701.44ff60d4.iframe.bundle.js +0 -1
- package/storybook-static/main.22ba0ecb.iframe.bundle.js +0 -1
- package/storybook-static/static/media/add.516c6a2c.svg +0 -1
- package/storybook-static/static/media/arrow-both.98a55d09.svg +0 -1
- package/storybook-static/static/media/arrow-down.1224e180.svg +0 -1
- package/storybook-static/static/media/arrow-up.024ed1e2.svg +0 -1
- package/storybook-static/static/media/checkmark-green.e95f40d3.svg +0 -1
- package/storybook-static/static/media/close--primary-darker.1598e38f.svg +0 -1
- package/storybook-static/static/media/close--primary.c6fbc529.svg +0 -1
- package/storybook-static/static/media/close-alt.cbe9bdfa.svg +0 -1
- package/storybook-static/static/media/close.b029c732.svg +0 -1
- package/storybook-static/static/media/download.ac1ebfe3.svg +0 -1
- package/storybook-static/static/media/error.e4c6e2ea.svg +0 -1
- package/storybook-static/static/media/image.e055c497.svg +0 -1
- package/storybook-static/static/media/information-new-hover.d169a37f.svg +0 -1
- package/storybook-static/static/media/information-new.eca52b6e.svg +0 -1
- package/storybook-static/static/media/information.5e48eb82.svg +0 -1
- package/storybook-static/static/media/next.a0daa26b.svg +0 -1
- package/storybook-static/static/media/pdf.5f5442b3.svg +0 -1
- package/storybook-static/static/media/remove.4daa5f40.svg +0 -1
- package/storybook-static/static/media/star-filled.7d90fd71.svg +0 -1
- package/storybook-static/static/media/star.b034e696.svg +0 -1
- package/storybook-static/static/media/success-fill.033f2cf9.svg +0 -1
- package/storybook-static/static/media/success.4c56e56c.svg +0 -1
- package/storybook-static/static/media/warning.2ca99405.svg +0 -1
- /package/storybook-static/{246.355480c9.iframe.bundle.js.LICENSE.txt → 173.0b985e58.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{273.bdf29c3c.iframe.bundle.js.LICENSE.txt → 721.b2cb1bef.iframe.bundle.js.LICENSE.txt} +0 -0
|
@@ -12,11 +12,10 @@ dayjs.extend(utc)
|
|
|
12
12
|
dayjs.utc();
|
|
13
13
|
export const dateTextFieldStyle = {
|
|
14
14
|
width: "170px",
|
|
15
|
-
borderRadius: "3px",
|
|
16
15
|
height: 40,
|
|
17
|
-
border: "1px solid #B0B0B0",
|
|
18
16
|
marginTop: "8px",
|
|
19
17
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
18
|
+
border: "1px solid #8C8C8C",
|
|
20
19
|
borderRadius: "3px",
|
|
21
20
|
"& legend": {
|
|
22
21
|
width: 0,
|
|
@@ -14,11 +14,10 @@ dayjs.extend(utc)
|
|
|
14
14
|
dayjs.utc();
|
|
15
15
|
export const dateTimeTextFieldStyle = {
|
|
16
16
|
width: "240px",
|
|
17
|
-
borderRadius: "3px",
|
|
18
17
|
height: 40,
|
|
19
|
-
border: "1px solid #B0B0B0",
|
|
20
18
|
marginTop: "8px",
|
|
21
19
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
20
|
+
border: "1px solid #8C8C8C",
|
|
22
21
|
borderRadius: "3px",
|
|
23
22
|
"& legend": {
|
|
24
23
|
width: 0,
|
|
@@ -106,11 +106,12 @@ const Select = ({
|
|
|
106
106
|
<MUISelect
|
|
107
107
|
sx={[
|
|
108
108
|
{
|
|
109
|
+
border: "none",
|
|
109
110
|
borderRadius: "3px",
|
|
110
111
|
height: 40,
|
|
111
|
-
border: "1px solid #DDDDDD",
|
|
112
112
|
marginTop: "8px",
|
|
113
113
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
114
|
+
borderColor: "#8C8C8C",
|
|
114
115
|
borderRadius: "3px",
|
|
115
116
|
"& legend": {
|
|
116
117
|
width: 0,
|
|
@@ -94,11 +94,11 @@ const TextField = ({
|
|
|
94
94
|
{
|
|
95
95
|
borderRadius: "3px",
|
|
96
96
|
height: 40, //there's a .13 coming from somewhere.
|
|
97
|
-
border: "
|
|
97
|
+
border: "none",
|
|
98
98
|
marginTop: "8px",
|
|
99
|
-
// remove weird line break from legend
|
|
100
99
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
101
100
|
borderRadius: "3px",
|
|
101
|
+
borderColor: "#8C8C8C",
|
|
102
102
|
"& legend": {
|
|
103
103
|
width: 0,
|
|
104
104
|
},
|
|
@@ -8,12 +8,11 @@ import PropTypes from "prop-types";
|
|
|
8
8
|
|
|
9
9
|
const timeFieldStyle = {
|
|
10
10
|
width: "134px",
|
|
11
|
-
borderRadius: "3px",
|
|
12
11
|
height: 40,
|
|
13
|
-
border: "1px solid #B0B0B0",
|
|
14
12
|
marginTop: "8px",
|
|
15
13
|
"& .MuiOutlinedInput-notchedOutline": {
|
|
16
14
|
borderRadius: "3px",
|
|
15
|
+
borderColor: "#8C8C8C",
|
|
17
16
|
"& legend": {
|
|
18
17
|
width: 0,
|
|
19
18
|
},
|