@milaboratories/graph-maker 1.0.17 → 1.0.18
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/GraphMaker/components/Loading.vue.d.ts +44 -0
- package/dist/GraphMaker/store.d.ts +12 -0
- package/dist/graph-maker.js +13066 -13028
- package/dist/graph-maker.umd.cjs +924 -924
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
top?: number;
|
|
3
|
+
left?: number;
|
|
4
|
+
right?: number;
|
|
5
|
+
bottom?: number;
|
|
6
|
+
}>, {
|
|
7
|
+
top: number;
|
|
8
|
+
left: number;
|
|
9
|
+
right: number;
|
|
10
|
+
bottom: number;
|
|
11
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
top?: number;
|
|
13
|
+
left?: number;
|
|
14
|
+
right?: number;
|
|
15
|
+
bottom?: number;
|
|
16
|
+
}>, {
|
|
17
|
+
top: number;
|
|
18
|
+
left: number;
|
|
19
|
+
right: number;
|
|
20
|
+
bottom: number;
|
|
21
|
+
}>>> & Readonly<{}>, {
|
|
22
|
+
left: number;
|
|
23
|
+
right: number;
|
|
24
|
+
bottom: number;
|
|
25
|
+
top: number;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
30
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
31
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
32
|
+
} : {
|
|
33
|
+
type: import('vue').PropType<T[K]>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
type __VLS_WithDefaults<P, D> = {
|
|
38
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
39
|
+
default: D[K];
|
|
40
|
+
}> : P[K];
|
|
41
|
+
};
|
|
42
|
+
type __VLS_Prettify<T> = {
|
|
43
|
+
[K in keyof T]: T[K];
|
|
44
|
+
} & {};
|
|
@@ -542,6 +542,12 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
542
542
|
} | null;
|
|
543
543
|
dendroSelectedNodeId: null | number;
|
|
544
544
|
};
|
|
545
|
+
loading: {
|
|
546
|
+
initialInputGuide: boolean;
|
|
547
|
+
inputGuide: boolean;
|
|
548
|
+
chartData: boolean;
|
|
549
|
+
dendroTableData: boolean;
|
|
550
|
+
};
|
|
545
551
|
commonHelpersData: {
|
|
546
552
|
primaryGroups: ComputedRef<string[]>;
|
|
547
553
|
secondaryGroups: ComputedRef<string[]>;
|
|
@@ -830,6 +836,12 @@ export declare function provideStore(settings: GraphMakerSettings, dataStoreRef:
|
|
|
830
836
|
} | null;
|
|
831
837
|
dendroSelectedNodeId: null | number;
|
|
832
838
|
};
|
|
839
|
+
loading: {
|
|
840
|
+
initialInputGuide: boolean;
|
|
841
|
+
inputGuide: boolean;
|
|
842
|
+
chartData: boolean;
|
|
843
|
+
dendroTableData: boolean;
|
|
844
|
+
};
|
|
833
845
|
commonHelpersData: {
|
|
834
846
|
primaryGroups: ComputedRef<string[]>;
|
|
835
847
|
secondaryGroups: ComputedRef<string[]>;
|