@milaboratories/graph-maker 1.1.33 → 1.1.35
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/DragAndDrop/DnDRangeChip.vue.d.ts +0 -3
- package/dist/GraphMaker/components/DragAndDrop/types.d.ts +1 -2
- package/dist/GraphMaker/constant.d.ts +2 -0
- package/dist/GraphMaker/store.d.ts +6 -0
- package/dist/graph-maker.js +14122 -14071
- package/dist/graph-maker.umd.cjs +614 -614
- package/package.json +4 -4
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { ChipInfo } from './types.ts';
|
|
2
2
|
import { ValueType } from '@platforma-sdk/model';
|
|
3
|
-
import { NumberRange } from '../../constant.ts';
|
|
4
3
|
|
|
5
4
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
5
|
id: ChipInfo["id"];
|
|
7
6
|
title: string;
|
|
8
7
|
type: ValueType;
|
|
9
|
-
range: NumberRange;
|
|
10
8
|
modelValue: unknown;
|
|
11
9
|
error: boolean;
|
|
12
10
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -16,7 +14,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
16
14
|
id: ChipInfo["id"];
|
|
17
15
|
title: string;
|
|
18
16
|
type: ValueType;
|
|
19
|
-
range: NumberRange;
|
|
20
17
|
modelValue: unknown;
|
|
21
18
|
error: boolean;
|
|
22
19
|
}>>> & Readonly<{
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import { ValueType } from '@platforma-sdk/model';
|
|
3
|
-
import { NumberRange } from '../../constant.ts';
|
|
4
3
|
|
|
5
4
|
export type ChipInfo = {
|
|
6
5
|
id: string;
|
|
@@ -8,9 +7,9 @@ export type ChipInfo = {
|
|
|
8
7
|
type: ValueType;
|
|
9
8
|
nonHomogenous: boolean;
|
|
10
9
|
isSubsetFilter: boolean;
|
|
10
|
+
isDiscreteFilter: boolean;
|
|
11
11
|
availableBasketIds: Set<string>;
|
|
12
12
|
uniqueValues: string[];
|
|
13
|
-
range: NumberRange | null;
|
|
14
13
|
};
|
|
15
14
|
export type DndBasketProps<T = any> = {
|
|
16
15
|
id: T;
|
|
@@ -40,6 +40,8 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
|
|
|
40
40
|
heatmapClustered: {
|
|
41
41
|
dendrogramX: boolean;
|
|
42
42
|
dendrogramY: boolean;
|
|
43
|
+
disableClusteringX: boolean;
|
|
44
|
+
disableClusteringY: boolean;
|
|
43
45
|
};
|
|
44
46
|
dots: {
|
|
45
47
|
dotFill: string | {
|
|
@@ -326,6 +328,8 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
326
328
|
heatmapClustered: {
|
|
327
329
|
dendrogramX: boolean;
|
|
328
330
|
dendrogramY: boolean;
|
|
331
|
+
disableClusteringX: boolean;
|
|
332
|
+
disableClusteringY: boolean;
|
|
329
333
|
};
|
|
330
334
|
dots: {
|
|
331
335
|
dotFill: string | {
|
|
@@ -640,6 +644,8 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
640
644
|
heatmapClustered: {
|
|
641
645
|
dendrogramX: boolean;
|
|
642
646
|
dendrogramY: boolean;
|
|
647
|
+
disableClusteringX: boolean;
|
|
648
|
+
disableClusteringY: boolean;
|
|
643
649
|
};
|
|
644
650
|
dots: {
|
|
645
651
|
dotFill: string | {
|