@italia/video 1.0.0-alpha.8 → 1.0.0-alpha.9

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.
@@ -70482,6 +70482,14 @@ class FormControlController {
70482
70482
  case 'it-toggle-group':
70483
70483
  // non settare valori in formData, perchè ogni singola checkbox setta il suo valore
70484
70484
  break;
70485
+ case 'it-upload':
70486
+ // value is File[] — append each File object directly (not as string)
70487
+ if (Array.isArray(value)) {
70488
+ value.forEach((file) => {
70489
+ event.formData.append(name, file);
70490
+ });
70491
+ }
70492
+ break;
70485
70493
  default:
70486
70494
  if (Array.isArray(value)) {
70487
70495
  value.forEach((val) => {
@@ -71121,7 +71129,7 @@ if (typeof window !== 'undefined') {
71121
71129
  window._itAnalytics = window._itAnalytics || {};
71122
71130
  window._itAnalytics = {
71123
71131
  ...window._itAnalytics,
71124
- version: '1.0.0-alpha.8',
71132
+ version: '1.0.0-alpha.9',
71125
71133
  };
71126
71134
  }
71127
71135
 
@@ -74110,9 +74118,9 @@ video::-webkit-media-text-track-display {
74110
74118
  }
74111
74119
  .acceptoverlay {
74112
74120
  --bsi-acceptoverlay-color-background: var(--bsi-color-background-inverse);
74113
- --bsi-acceptoverlay-color-text: var(--bsi-color-text);
74114
- --bsi-acceptoverlay-label-color: var(--bsi-color-text-secondary);
74115
- --bsi-acceptoverlay-label-border-color: var(--bsi-color-border-subtle);
74121
+ --bsi-acceptoverlay-color-text: var(--bsi-color-text-inverse);
74122
+ --bsi-acceptoverlay-label-color: var(--bsi-color-text-inverse);
74123
+ --bsi-acceptoverlay-label-border-color: var(--bsi-color-border-inverse);
74116
74124
  --bsi-acceptoverlay-opacity: 0.9;
74117
74125
  --bsi-acceptoverlay-spacing-inset: var(--bsi-spacing-s);
74118
74126
  --bsi-acceptoverlay-primary-opacity: 0.95;
@@ -74197,12 +74205,12 @@ video::-webkit-media-text-track-display {
74197
74205
  }
74198
74206
  .acceptoverlay .acceptoverlay-buttons {
74199
74207
  display: flex;
74200
- align-items: center;
74201
- gap: 1rem;
74202
74208
  flex-wrap: wrap;
74209
+ align-items: center;
74203
74210
  justify-content: space-between;
74204
74211
  margin-top: var(--bsi-acceptoverlay-buttons-spacing);
74205
74212
  background-color: transparent !important;
74213
+ gap: 1rem;
74206
74214
  }
74207
74215
  .acceptoverlay .acceptoverlay-buttons button {
74208
74216
  width: 100%;