@prosekit/vue 0.0.0-next-20231120040948 → 0.0.0-next-20240421132240
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/dist/_tsup-dts-rollup.d.ts +298 -101
- package/dist/chunk-64DHEPDA.js +37 -0
- package/dist/chunk-X5DTEZPX.js +15 -0
- package/dist/prosekit-vue-autocomplete.d.ts +4 -0
- package/dist/prosekit-vue-autocomplete.js +26 -0
- package/dist/prosekit-vue-block-handle.d.ts +2 -0
- package/dist/prosekit-vue-block-handle.js +16 -0
- package/dist/prosekit-vue-inline-popover.d.ts +1 -3
- package/dist/prosekit-vue-inline-popover.js +8 -16
- package/dist/prosekit-vue-popover.d.ts +3 -2
- package/dist/prosekit-vue-popover.js +19 -17
- package/dist/prosekit-vue-resizable.d.ts +2 -0
- package/dist/prosekit-vue-resizable.js +16 -0
- package/dist/prosekit-vue-tooltip.d.ts +3 -0
- package/dist/prosekit-vue-tooltip.js +21 -0
- package/dist/prosekit-vue.d.ts +9 -1
- package/dist/prosekit-vue.js +292 -40
- package/package.json +37 -67
- package/dist/prosekit-vue-autocomplete-empty.d.ts +0 -2
- package/dist/prosekit-vue-autocomplete-empty.js +0 -19
- package/dist/prosekit-vue-autocomplete-item.d.ts +0 -2
- package/dist/prosekit-vue-autocomplete-item.js +0 -19
- package/dist/prosekit-vue-autocomplete-list.d.ts +0 -2
- package/dist/prosekit-vue-autocomplete-list.js +0 -19
- package/dist/prosekit-vue-autocomplete-popover.d.ts +0 -3
- package/dist/prosekit-vue-autocomplete-popover.js +0 -19
- package/dist/prosekit-vue-combo-box-input.d.ts +0 -2
- package/dist/prosekit-vue-combo-box-input.js +0 -19
- package/dist/prosekit-vue-combo-box-item.d.ts +0 -2
- package/dist/prosekit-vue-combo-box-item.js +0 -19
- package/dist/prosekit-vue-combo-box-list.d.ts +0 -2
- package/dist/prosekit-vue-combo-box-list.js +0 -19
- package/dist/prosekit-vue-combo-box.d.ts +0 -2
- package/dist/prosekit-vue-combo-box.js +0 -19
- package/src/index.ts +0 -3
@@ -1,19 +0,0 @@
|
|
1
|
-
// src/components/combo-box-input.gen.ts
|
2
|
-
import "@prosekit/lit/combo-box-input";
|
3
|
-
import { propNames } from "@prosekit/lit/combo-box-input";
|
4
|
-
import { defineComponent, h } from "vue";
|
5
|
-
var ComboBoxInput = defineComponent(
|
6
|
-
(props, { slots }) => {
|
7
|
-
return () => {
|
8
|
-
var _a;
|
9
|
-
const webComponentProps = Object.fromEntries(
|
10
|
-
Object.entries(props).filter((entry) => entry[1] !== void 0).map(([key, value]) => [(key === "class" ? "" : ".") + key, value])
|
11
|
-
);
|
12
|
-
return h("prosekit-combo-box-input", webComponentProps, (_a = slots.default) == null ? void 0 : _a.call(slots));
|
13
|
-
};
|
14
|
-
},
|
15
|
-
{ props: ["class", ...propNames] }
|
16
|
-
);
|
17
|
-
export {
|
18
|
-
ComboBoxInput
|
19
|
-
};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
// src/components/combo-box-item.gen.ts
|
2
|
-
import "@prosekit/lit/combo-box-item";
|
3
|
-
import { propNames } from "@prosekit/lit/combo-box-item";
|
4
|
-
import { defineComponent, h } from "vue";
|
5
|
-
var ComboBoxItem = defineComponent(
|
6
|
-
(props, { slots }) => {
|
7
|
-
return () => {
|
8
|
-
var _a;
|
9
|
-
const webComponentProps = Object.fromEntries(
|
10
|
-
Object.entries(props).filter((entry) => entry[1] !== void 0).map(([key, value]) => [(key === "class" ? "" : ".") + key, value])
|
11
|
-
);
|
12
|
-
return h("prosekit-combo-box-item", webComponentProps, (_a = slots.default) == null ? void 0 : _a.call(slots));
|
13
|
-
};
|
14
|
-
},
|
15
|
-
{ props: ["class", ...propNames] }
|
16
|
-
);
|
17
|
-
export {
|
18
|
-
ComboBoxItem
|
19
|
-
};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
// src/components/combo-box-list.gen.ts
|
2
|
-
import "@prosekit/lit/combo-box-list";
|
3
|
-
import { propNames } from "@prosekit/lit/combo-box-list";
|
4
|
-
import { defineComponent, h } from "vue";
|
5
|
-
var ComboBoxList = defineComponent(
|
6
|
-
(props, { slots }) => {
|
7
|
-
return () => {
|
8
|
-
var _a;
|
9
|
-
const webComponentProps = Object.fromEntries(
|
10
|
-
Object.entries(props).filter((entry) => entry[1] !== void 0).map(([key, value]) => [(key === "class" ? "" : ".") + key, value])
|
11
|
-
);
|
12
|
-
return h("prosekit-combo-box-list", webComponentProps, (_a = slots.default) == null ? void 0 : _a.call(slots));
|
13
|
-
};
|
14
|
-
},
|
15
|
-
{ props: ["class", ...propNames] }
|
16
|
-
);
|
17
|
-
export {
|
18
|
-
ComboBoxList
|
19
|
-
};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
// src/components/combo-box.gen.ts
|
2
|
-
import "@prosekit/lit/combo-box";
|
3
|
-
import { propNames } from "@prosekit/lit/combo-box";
|
4
|
-
import { defineComponent, h } from "vue";
|
5
|
-
var ComboBox = defineComponent(
|
6
|
-
(props, { slots }) => {
|
7
|
-
return () => {
|
8
|
-
var _a;
|
9
|
-
const webComponentProps = Object.fromEntries(
|
10
|
-
Object.entries(props).filter((entry) => entry[1] !== void 0).map(([key, value]) => [(key === "class" ? "" : ".") + key, value])
|
11
|
-
);
|
12
|
-
return h("prosekit-combo-box", webComponentProps, (_a = slots.default) == null ? void 0 : _a.call(slots));
|
13
|
-
};
|
14
|
-
},
|
15
|
-
{ props: ["class", ...propNames] }
|
16
|
-
);
|
17
|
-
export {
|
18
|
-
ComboBox
|
19
|
-
};
|
package/src/index.ts
DELETED