@7shifts/sous-chef 3.48.0-beta.0 → 3.48.0-beta.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/dist/index.css +1 -4
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -188,6 +188,7 @@ body {
|
|
|
188
188
|
font-size: var(--font-size-200);
|
|
189
189
|
line-height: var(--font-line-height-200);
|
|
190
190
|
font-weight: var(--p-font-weight-normal);
|
|
191
|
+
color: var(--color-grey-500);
|
|
191
192
|
}
|
|
192
193
|
._OINV1 {
|
|
193
194
|
display: flex;
|
|
@@ -1733,8 +1734,6 @@ h5._32amZ {
|
|
|
1733
1734
|
._3cjo0 {
|
|
1734
1735
|
display: flex;
|
|
1735
1736
|
justify-content: space-around;
|
|
1736
|
-
color: var(--color-grey-500);
|
|
1737
|
-
font-family: var(--font-family-body);
|
|
1738
1737
|
}
|
|
1739
1738
|
._WwXRR {
|
|
1740
1739
|
background: var(--color-grey-100);
|
|
@@ -3253,12 +3252,10 @@ input:disabled + ._1aaPx::after {
|
|
|
3253
3252
|
}
|
|
3254
3253
|
._1XvvK {
|
|
3255
3254
|
color: var(--color-grey-200);
|
|
3256
|
-
font-family: var(--font-family-body);
|
|
3257
3255
|
}
|
|
3258
3256
|
|
|
3259
3257
|
._1cNVk {
|
|
3260
3258
|
color: var(--color-grey-400);
|
|
3261
|
-
font-family: var(--font-family-body);
|
|
3262
3259
|
}
|
|
3263
3260
|
._12jq3 {
|
|
3264
3261
|
font-family: var(--font-family-body);
|
package/dist/index.js
CHANGED
|
@@ -7728,7 +7728,7 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
7728
7728
|
})), steps && steps.length > 0 && React__default.createElement("div", {
|
|
7729
7729
|
className: styles$x['progress-bar__steps']
|
|
7730
7730
|
}, steps.map(function (step) {
|
|
7731
|
-
return React__default.createElement(
|
|
7731
|
+
return React__default.createElement(Text, {
|
|
7732
7732
|
key: step
|
|
7733
7733
|
}, step);
|
|
7734
7734
|
})));
|
|
@@ -10556,7 +10556,9 @@ var PasswordCriteria = function PasswordCriteria(_ref) {
|
|
|
10556
10556
|
}, met ? React__default.createElement(IconCheck, {
|
|
10557
10557
|
size: "small",
|
|
10558
10558
|
color: "grey-200"
|
|
10559
|
-
}) : "\u25CF",
|
|
10559
|
+
}) : "\u25CF", React__default.createElement(Text, {
|
|
10560
|
+
color: met ? 'grey-200' : 'grey-400'
|
|
10561
|
+
}, children)));
|
|
10560
10562
|
};
|
|
10561
10563
|
|
|
10562
10564
|
var usePasswordCriteria = function usePasswordCriteria(criterias) {
|