@prosekit/lit 0.2.5 → 0.2.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.
@@ -69,7 +69,14 @@ var ComboBoxInput = class extends LightElement {
69
69
  */
70
70
  render() {
71
71
  var _a, _b;
72
- return html`<input placeholder="${this.placeholder}" @keydown="${(event) => this.handleKeydown(event)}" @input="${(event) => this.handleInput(event)}" .value="${(_b = (_a = this.comboBoxContext.value) == null ? void 0 : _a.inputValue) != null ? _b : ""}">`;
72
+ return html`
73
+ <input
74
+ placeholder=${this.placeholder}
75
+ @keydown=${(event) => this.handleKeydown(event)}
76
+ @input=${(event) => this.handleInput(event)}
77
+ .value=${(_b = (_a = this.comboBoxContext.value) == null ? void 0 : _a.inputValue) != null ? _b : ""}
78
+ ></input>
79
+ `;
73
80
  }
74
81
  };
75
82
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@prosekit/lit",
3
3
  "type": "module",
4
- "version": "0.2.5",
4
+ "version": "0.2.7",
5
5
  "private": false,
6
6
  "author": {
7
7
  "name": "ocavue",
@@ -107,8 +107,8 @@
107
107
  "dependencies": {
108
108
  "@floating-ui/dom": "^1.6.3",
109
109
  "@lit/context": "^1.1.0",
110
- "@prosekit/core": "^0.3.1",
111
- "@prosekit/extensions": "^0.3.1",
110
+ "@prosekit/core": "^0.4.0",
111
+ "@prosekit/extensions": "^0.4.0",
112
112
  "@prosekit/pm": "^0.1.1",
113
113
  "@superhuman/command-score": "^0.5.0",
114
114
  "@zag-js/dismissable": "^0.35.0",
@@ -118,7 +118,6 @@
118
118
  },
119
119
  "devDependencies": {
120
120
  "@prosekit/dev": "*",
121
- "minify-literals": "^1.0.8",
122
121
  "tsup": "^8.0.2",
123
122
  "typescript": "^5.3.3",
124
123
  "vitest": "^1.2.2"