@progressive-development/pd-wizard 0.0.51 → 0.0.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/PdWizard.js +2 -1
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "order",
15
15
  "steps"
16
16
  ],
17
- "version": "0.0.51",
17
+ "version": "0.0.52",
18
18
  "main": "index.js",
19
19
  "module": "index.js",
20
20
  "scripts": {
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@lit/localize": "^0.11.2",
34
- "@progressive-development/pd-forms": "0.0.58",
34
+ "@progressive-development/pd-forms": "0.0.59",
35
35
  "lit": "^2.0.2"
36
36
  },
37
37
  "devDependencies": {
package/src/PdWizard.js CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  import { LitElement, html, css } from 'lit';
7
- import { msg } from '@lit/localize';
7
+ import { msg, updateWhenLocaleChanges } from '@lit/localize';
8
8
 
9
9
  import '@progressive-development/pd-forms/pd-button.js';
10
10
  import './PdSteps.js';
@@ -187,6 +187,7 @@ export class PdWizard extends LitElement {
187
187
 
188
188
  constructor() {
189
189
  super();
190
+ updateWhenLocaleChanges(this);
190
191
  this.currentNumber = -99;
191
192
  this.wizardSteps = [];
192
193
  this.roundedFullContent = false;