@visma-swno/customer-onboarding-wizard 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/dist/index.js +11 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2268,19 +2268,22 @@ let I = class extends E {
2268
2268
  const e = this.translations;
2269
2269
  return n`
2270
2270
  <div class="step-content">
2271
- <h2 tabindex="-1">${e.complete.title}</h2>
2272
- <p>${e.complete.message1}</p>
2273
- <p>${e.complete.message2}</p>
2274
-
2275
- <button type="button" class="btn-primary primary-action" @click=${this.handleGoToAdmin}>
2276
- ${e.complete.goToAdminButton}
2277
- </button>
2271
+ <div class="complete-content">
2272
+ <h2 tabindex="-1">${e.complete.title}</h2>
2273
+ <div class="complete-body">
2274
+ <p>${e.complete.message1}</p>
2275
+ <p>${e.complete.message2}</p>
2276
+ </div>
2277
+ </div>
2278
2278
  </div>
2279
2279
 
2280
2280
  <div class="wizard-actions">
2281
2281
  <button type="button" class="btn-secondary" @click=${this.handleClose}>
2282
2282
  ${e.common.close}
2283
2283
  </button>
2284
+ <button type="button" class="btn-primary" @click=${this.handleGoToAdmin}>
2285
+ ${e.complete.goToAdminButton}
2286
+ </button>
2284
2287
  </div>
2285
2288
  `;
2286
2289
  }
@@ -2289,7 +2292,7 @@ I.styles = [
2289
2292
  N,
2290
2293
  j,
2291
2294
  P,
2292
- L`.step-content h2{font-weight:var(--ga-font-weight-semibold);margin:0 0 var(--ga-size-spacing-06);}.step-content p{font-size:var(--ga-text-md-size);line-height:var(--ga-text-md-line-height);color:var(--ga-color-text-body);margin:0 0 var(--ga-size-spacing-04);}.primary-action{margin-top:var(--ga-size-spacing-06);}h2[tabindex="-1"]:focus{outline:none;}`
2295
+ L`.complete-content{display:flex;flex-direction:column;gap:var(--ga-size-spacing-06);margin:0 auto;width:100%;max-width:var(--ga-size-content-sm);min-height:270px;}.complete-content h2{margin:0;}.complete-body p{font-size:var(--ga-text-md-size);line-height:var(--ga-text-md-line-height);letter-spacing:var(--ga-text-md-tracking);color:var(--ga-color-text-body);margin:0 0 var(--ga-size-spacing-05);}.complete-body p:last-child{margin-bottom:0;}.wizard-actions{border-top:none;}h2[tabindex="-1"]:focus{outline:none;}`
2293
2296
  ];
2294
2297
  F([
2295
2298
  g({ type: Object })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visma-swno/customer-onboarding-wizard",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",