next-helios-fe 1.8.50 → 1.8.52

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.8.50",
3
+ "version": "1.8.52",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -221,6 +221,10 @@ export const Wizard: WizardComponent = ({
221
221
  });
222
222
  return prev - 1;
223
223
  });
224
+ } else {
225
+ setActiveTab((prev) => {
226
+ return prev - 1;
227
+ });
224
228
  }
225
229
  }}
226
230
  >
@@ -261,6 +265,10 @@ export const Wizard: WizardComponent = ({
261
265
  });
262
266
  return prev + 1;
263
267
  });
268
+ } else {
269
+ setActiveTab((prev) => {
270
+ return prev + 1;
271
+ });
264
272
  }
265
273
  }
266
274
  }}
@@ -157,6 +157,7 @@ export const Date: React.FC<DateProps> = ({
157
157
  type="button"
158
158
  ref={dropdownRef}
159
159
  className={`w-0 my-0.5 ${height}`}
160
+ tabIndex={-1}
160
161
  >
161
162
  1
162
163
  </button>
@@ -214,6 +214,7 @@ export const Time: React.FC<TimeProps> = ({
214
214
  type="button"
215
215
  ref={dropdownRef}
216
216
  className={`w-0 my-0.5 ${height}`}
217
+ tabIndex={-1}
217
218
  >
218
219
  1
219
220
  </button>
@@ -248,6 +248,7 @@ export const MultipleSelect: React.FC<MultipleSelectProps> = ({
248
248
  style={{
249
249
  height: dropdownHeight,
250
250
  }}
251
+ tabIndex={-1}
251
252
  >
252
253
  1
253
254
  </button>
@@ -1602,6 +1602,7 @@ export const PhoneNumber: React.FC<PhoneNumberProps> = ({
1602
1602
  type="button"
1603
1603
  ref={dropdownRef}
1604
1604
  className={`w-0 my-0.5 ${height}`}
1605
+ tabIndex={-1}
1605
1606
  >
1606
1607
  1
1607
1608
  </button>
@@ -145,6 +145,7 @@ export const Select: React.FC<SelectProps> = ({
145
145
  type="button"
146
146
  ref={dropdownRef}
147
147
  className={`w-0 my-0.5 ${height}`}
148
+ tabIndex={-1}
148
149
  >
149
150
  1
150
151
  </button>