element-book 6.0.0 → 6.0.2

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.
@@ -46,7 +46,7 @@ function createControlInput(value, controlType, valueChange) {
46
46
  return html `
47
47
  <input
48
48
  type="text"
49
- .value=${value}
49
+ .value=${value || ''}
50
50
  ${listen('input', (event) => {
51
51
  const inputElement = event.currentTarget;
52
52
  if (!(inputElement instanceof HTMLInputElement)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "element-book",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
4
4
  "keywords": [
5
5
  "book",
6
6
  "design system",
@@ -38,16 +38,16 @@
38
38
  "test:types": "tsc --noEmit"
39
39
  },
40
40
  "dependencies": {
41
- "@augment-vir/common": "^14.2.0",
41
+ "@augment-vir/common": "^14.2.2",
42
42
  "@electrovir/icon-element": "^1.0.0",
43
- "colorjs.io": "^0.4.3",
44
- "element-vir": "^13.0.0",
45
- "lit-css-vars": "^2.0.2",
43
+ "colorjs.io": "0.4.3",
44
+ "element-vir": "^13.0.1",
45
+ "lit-css-vars": "^2.0.3",
46
46
  "spa-router-vir": "^2.1.0",
47
- "typed-event-target": "^1.2.0"
47
+ "typed-event-target": "^1.2.1"
48
48
  },
49
49
  "devDependencies": {
50
- "@augment-vir/browser-testing": "^14.2.0",
50
+ "@augment-vir/browser-testing": "^14.2.2",
51
51
  "@open-wc/testing": "^3.1.8",
52
52
  "@types/mocha": "^10.0.1",
53
53
  "@web/dev-server-esbuild": "^0.4.1",
@@ -55,8 +55,8 @@
55
55
  "@web/test-runner-commands": "^0.7.0",
56
56
  "@web/test-runner-playwright": "^0.10.0",
57
57
  "@web/test-runner-visual-regression": "^0.8.0",
58
- "istanbul-smart-text-reporter": "^1.1.1",
59
- "type-fest": "^3.11.0",
58
+ "istanbul-smart-text-reporter": "^1.1.2",
59
+ "type-fest": "^3.11.1",
60
60
  "typescript": "^5.0.4"
61
61
  }
62
62
  }