@morghulis/core 1.0.22 → 1.0.24

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.
@@ -42,7 +42,11 @@ declare const __VLS_base: import("vue").DefineComponent<DTreeProps, {
42
42
  getSelection: () => import("@morghulis/lib").TreeItem[] | undefined;
43
43
  getOptions: () => import("@morghulis/lib").TreeItem[];
44
44
  getMapping: () => import("@morghulis/lib").TreeMapping;
45
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DTreeProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
45
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
46
+ change: (...args: any[]) => void;
47
+ }, string, import("vue").PublicProps, Readonly<DTreeProps> & Readonly<{
48
+ onChange?: ((...args: any[]) => any) | undefined;
49
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
46
50
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
47
51
  declare const _default: typeof __VLS_export;
48
52
  export default _default;
@@ -0,0 +1,14 @@
1
+ import type { DataItem, DataItemId, MetaView, TreeItem, TreeMapping } from "@morghulis/lib";
2
+ type __VLS_Props = {
3
+ mapping: TreeMapping;
4
+ root?: DataItemId;
5
+ labelKey?: string;
6
+ view: MetaView;
7
+ node: TreeItem;
8
+ includes?: DataItem;
9
+ excludes?: DataItem;
10
+ disabled?: boolean;
11
+ };
12
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
@@ -0,0 +1,4 @@
1
+ import type { PluginColumnProps } from "../../../data";
2
+ declare const __VLS_export: import("vue").DefineComponent<PluginColumnProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PluginColumnProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ declare const _default: typeof __VLS_export;
4
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morghulis/core",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"