@vaadin/list-box 22.0.14 → 22.0.15

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": "@vaadin/list-box",
3
- "version": "22.0.14",
3
+ "version": "22.0.15",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,17 +33,17 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@polymer/polymer": "^3.0.0",
36
- "@vaadin/component-base": "^22.0.14",
37
- "@vaadin/item": "^22.0.14",
38
- "@vaadin/vaadin-list-mixin": "^22.0.14",
39
- "@vaadin/vaadin-lumo-styles": "^22.0.14",
40
- "@vaadin/vaadin-material-styles": "^22.0.14",
41
- "@vaadin/vaadin-themable-mixin": "^22.0.14"
36
+ "@vaadin/component-base": "^22.0.15",
37
+ "@vaadin/item": "^22.0.15",
38
+ "@vaadin/vaadin-list-mixin": "^22.0.15",
39
+ "@vaadin/vaadin-lumo-styles": "^22.0.15",
40
+ "@vaadin/vaadin-material-styles": "^22.0.15",
41
+ "@vaadin/vaadin-themable-mixin": "^22.0.15"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
45
  "@vaadin/testing-helpers": "^0.3.2",
46
46
  "sinon": "^9.2.1"
47
47
  },
48
- "gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6"
48
+ "gitHead": "bba021b56ba45da93d2bb980242956ad929ecfe2"
49
49
  }
@@ -64,13 +64,13 @@ declare class ListBox extends MultiSelectListMixin(ThemableMixin(ElementMixin(HT
64
64
  addEventListener<K extends keyof ListBoxEventMap>(
65
65
  type: K,
66
66
  listener: (this: ListBox, ev: ListBoxEventMap[K]) => void,
67
- options?: boolean | AddEventListenerOptions
67
+ options?: boolean | AddEventListenerOptions,
68
68
  ): void;
69
69
 
70
70
  removeEventListener<K extends keyof ListBoxEventMap>(
71
71
  type: K,
72
72
  listener: (this: ListBox, ev: ListBoxEventMap[K]) => void,
73
- options?: boolean | EventListenerOptions
73
+ options?: boolean | EventListenerOptions,
74
74
  ): void;
75
75
  }
76
76
 
@@ -74,8 +74,8 @@ class ListBox extends ElementMixin(MultiSelectListMixin(ThemableMixin(PolymerEle
74
74
  // but we don't want it to be modified, or be shown in the API docs.
75
75
  /** @private */
76
76
  orientation: {
77
- readOnly: true
78
- }
77
+ readOnly: true,
78
+ },
79
79
  };
80
80
  }
81
81
 
@@ -20,5 +20,5 @@ registerStyles(
20
20
  background-color: var(--lumo-contrast-10pct);
21
21
  }
22
22
  `,
23
- { moduleId: 'lumo-list-box' }
23
+ { moduleId: 'lumo-list-box' },
24
24
  );
@@ -23,5 +23,5 @@ registerStyles(
23
23
  background-color: var(--material-divider-color);
24
24
  }
25
25
  `,
26
- { moduleId: 'material-list-box' }
26
+ { moduleId: 'material-list-box' },
27
27
  );