@vaadin/list-box 23.0.8 → 23.0.11

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": "23.0.8",
3
+ "version": "23.0.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,17 +34,17 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/component-base": "^23.0.8",
38
- "@vaadin/item": "^23.0.8",
39
- "@vaadin/vaadin-list-mixin": "^23.0.8",
40
- "@vaadin/vaadin-lumo-styles": "^23.0.8",
41
- "@vaadin/vaadin-material-styles": "^23.0.8",
42
- "@vaadin/vaadin-themable-mixin": "^23.0.8"
37
+ "@vaadin/component-base": "^23.0.11",
38
+ "@vaadin/item": "^23.0.11",
39
+ "@vaadin/vaadin-list-mixin": "^23.0.11",
40
+ "@vaadin/vaadin-lumo-styles": "^23.0.11",
41
+ "@vaadin/vaadin-material-styles": "^23.0.11",
42
+ "@vaadin/vaadin-themable-mixin": "^23.0.11"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@esm-bundle/chai": "^4.3.4",
46
46
  "@vaadin/testing-helpers": "^0.3.2",
47
47
  "sinon": "^9.2.1"
48
48
  },
49
- "gitHead": "43fe9d95c8cd745adc7bef214c0097c47f4f83ed"
49
+ "gitHead": "10838304fe6f5c98b838ec3a90bdcf49cbf4650b"
50
50
  }
@@ -65,13 +65,13 @@ declare class ListBox extends MultiSelectListMixin(ThemableMixin(ElementMixin(Co
65
65
  addEventListener<K extends keyof ListBoxEventMap>(
66
66
  type: K,
67
67
  listener: (this: ListBox, ev: ListBoxEventMap[K]) => void,
68
- options?: boolean | AddEventListenerOptions
68
+ options?: boolean | AddEventListenerOptions,
69
69
  ): void;
70
70
 
71
71
  removeEventListener<K extends keyof ListBoxEventMap>(
72
72
  type: K,
73
73
  listener: (this: ListBox, ev: ListBoxEventMap[K]) => void,
74
- options?: boolean | EventListenerOptions
74
+ options?: boolean | EventListenerOptions,
75
75
  ): void;
76
76
  }
77
77
 
@@ -76,8 +76,8 @@ class ListBox extends ElementMixin(MultiSelectListMixin(ThemableMixin(Controller
76
76
  // but we don't want it to be modified, or be shown in the API docs.
77
77
  /** @private */
78
78
  orientation: {
79
- readOnly: true
80
- }
79
+ readOnly: true,
80
+ },
81
81
  };
82
82
  }
83
83
 
@@ -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
  );