allaw-ui 2.8.1 → 2.8.3

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.
@@ -99,6 +99,10 @@
99
99
  background: #c14040;
100
100
  }
101
101
 
102
+ .primary-button-disabled .primary-button-icon {
103
+ color: #9b9b9b;
104
+ }
105
+
102
106
  @keyframes pulse-background {
103
107
  0% {
104
108
  background-color: #171e25;
@@ -8,8 +8,9 @@ var ProgressBar = function (_a) {
8
8
  var progressWidth = constrainedCurrentStep === 0 ? 0 : (constrainedCurrentStep / steps) * 100;
9
9
  var noIconsMargin = !startIcon && !endIcon ? "0px" : "0 10px";
10
10
  return (React.createElement("div", { className: "progress-bar-container" },
11
- isWrapperProgressBar && (React.createElement("div", { className: "progress-bar-icon-container" }, startIcon && (React.createElement("button", { className: "progress-bar-chevron", onClick: onStartIconClick },
12
- React.createElement("i", { className: "allaw-icon-chevron-left" }))))),
11
+ isWrapperProgressBar && startIcon && (React.createElement("div", { className: "progress-bar-icon-container" },
12
+ React.createElement("button", { className: "progress-bar-chevron", onClick: onStartIconClick },
13
+ React.createElement("i", { className: "allaw-icon-chevron-left" })))),
13
14
  React.createElement("div", { className: "progress-bar-background ".concat(showProgressBar ? "" : "hidden-content"), style: {
14
15
  height: isWrapperProgressBar ? "6px" : "8px",
15
16
  width: startIcon ? "calc(100% - 32px)" : "100%",
@@ -117,6 +117,12 @@ body.stepper-open {
117
117
  height: 100%;
118
118
  }
119
119
 
120
+ @media (max-width: 1000px) {
121
+ .stepper-container {
122
+ z-index: 5001;
123
+ }
124
+ }
125
+
120
126
  @media (max-width: 800px) {
121
127
  .stepper-container {
122
128
  height: 96dvh;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allaw-ui",
3
- "version": "2.8.1",
3
+ "version": "2.8.3",
4
4
  "description": "Composants UI pour l'application Allaw",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",