@milaboratories/graph-maker 1.1.181 → 1.1.183
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/components/AesSettings/AesDataMappingDiscrete.vue.d.ts +1 -3
- package/dist/components/AesSettings/AesDataMappingDiscrete.vue.js +7 -323
- package/dist/components/AesSettings/AesDataMappingDiscrete.vue.js.map +1 -1
- package/dist/components/AesSettings/AesDataMappingDiscrete.vue2.js +215 -2
- package/dist/components/AesSettings/AesDataMappingDiscrete.vue2.js.map +1 -1
- package/dist/components/AesSettings/AesDataMappingDiscrete.vue3.js +11 -0
- package/dist/components/AesSettings/AesDataMappingDiscrete.vue3.js.map +1 -0
- package/dist/components/AesSettings/DiscreteRow.vue.d.ts +27 -0
- package/dist/components/AesSettings/DiscreteRow.vue.js +10 -0
- package/dist/components/AesSettings/DiscreteRow.vue.js.map +1 -0
- package/dist/components/AesSettings/DiscreteRow.vue2.js +159 -0
- package/dist/components/AesSettings/DiscreteRow.vue2.js.map +1 -0
- package/dist/components/AesSettings/DiscreteRow.vue3.js +19 -0
- package/dist/components/AesSettings/DiscreteRow.vue3.js.map +1 -0
- package/dist/components/Chart.vue.js +165 -148
- package/dist/components/Chart.vue.js.map +1 -1
- package/dist/components/ReorderForm.vue.d.ts +1 -3
- package/dist/components/ReorderForm.vue.js +7 -43
- package/dist/components/ReorderForm.vue.js.map +1 -1
- package/dist/components/ReorderForm.vue2.js +50 -2
- package/dist/components/ReorderForm.vue2.js.map +1 -1
- package/dist/components/ReorderForm.vue3.js +11 -0
- package/dist/components/ReorderForm.vue3.js.map +1 -0
- package/dist/forms/AxesSettingsForm/DiscreteAxesSettingsForm.vue.js +20 -20
- package/dist/forms/AxesSettingsForm/ScatterplotAxesSettingsForm.vue.js +53 -53
- package/dist/forms/LayersForm/AesSelector.vue.js +29 -29
- package/dist/utils/createChartSettingsForRender/composeChartSettings.js +35 -35
- package/dist/utils/createChartSettingsForRender/composeChartSettings.js.map +1 -1
- package/dist/utils/createChartSettingsForRender/getLayersDataFromForms.js +49 -52
- package/dist/utils/createChartSettingsForRender/getLayersDataFromForms.js.map +1 -1
- package/package.json +2 -2
- package/dist/icons/Reorder.vue.d.ts +0 -2
- package/dist/icons/Reorder.vue.js +0 -19
- package/dist/icons/Reorder.vue.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AesDataMappingDiscrete.vue3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Palette, DotShape, LineType } from './types';
|
|
2
|
+
import { AesType } from '../../constantsCommon';
|
|
3
|
+
type EditableAesType = 'color' | 'dotShape' | 'lineType';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
item: {
|
|
6
|
+
text: string;
|
|
7
|
+
value: string;
|
|
8
|
+
dotShape?: DotShape;
|
|
9
|
+
color?: string;
|
|
10
|
+
lineType?: LineType;
|
|
11
|
+
};
|
|
12
|
+
activeValue: string | null;
|
|
13
|
+
activeAesType: EditableAesType | null;
|
|
14
|
+
usedAesInMapping: Record<AesType, boolean>;
|
|
15
|
+
palette: Palette;
|
|
16
|
+
allowReordering: boolean;
|
|
17
|
+
allowHiding: boolean;
|
|
18
|
+
hidden: boolean;
|
|
19
|
+
isCategorical: boolean;
|
|
20
|
+
onAesValueUpdate: (field: string, value: string | DotShape | LineType) => void;
|
|
21
|
+
onSwitchVisibility: () => void;
|
|
22
|
+
onActiveValueChange: (value: string | null) => void;
|
|
23
|
+
onActiveAesTypeChange: (value: EditableAesType | null) => void;
|
|
24
|
+
onCloseForm: () => void;
|
|
25
|
+
};
|
|
26
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import s from "./DiscreteRow.vue2.js";
|
|
2
|
+
import o from "./DiscreteRow.vue3.js";
|
|
3
|
+
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const e = {
|
|
5
|
+
$style: o
|
|
6
|
+
}, f = /* @__PURE__ */ t(s, [["__cssModules", e]]);
|
|
7
|
+
export {
|
|
8
|
+
f as default
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=DiscreteRow.vue.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DiscreteRow.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import { defineComponent as $, computed as T, reactive as S, createElementBlock as m, openBlock as o, normalizeClass as a, createElementVNode as s, toDisplayString as k, createBlock as d, createCommentVNode as u, unref as V, withCtx as r, withModifiers as y, createVNode as C, normalizeStyle as p } from "vue";
|
|
2
|
+
import { PALETTE_MAP as h, FIXED_LINE_TYPES as w, FIXES_DOT_SHAPES as F } from "../../constantsAesthetic.js";
|
|
3
|
+
import { getPopupHeightForFixedAesList as E } from "../../utils/getPopupHeightForFixedAesList.js";
|
|
4
|
+
import { PlTooltip as I, PlIcon24 as P } from "@platforma-sdk/ui-vue";
|
|
5
|
+
import B from "../Popup.vue.js";
|
|
6
|
+
import M from "./FixedLineTypeList.vue.js";
|
|
7
|
+
import U from "./FixedDotShapeList.vue.js";
|
|
8
|
+
import R from "./FixedColorsList.vue.js";
|
|
9
|
+
const G = /* @__PURE__ */ $({
|
|
10
|
+
__name: "DiscreteRow",
|
|
11
|
+
props: {
|
|
12
|
+
item: {},
|
|
13
|
+
activeValue: {},
|
|
14
|
+
activeAesType: {},
|
|
15
|
+
usedAesInMapping: {},
|
|
16
|
+
palette: {},
|
|
17
|
+
allowReordering: { type: Boolean },
|
|
18
|
+
allowHiding: { type: Boolean },
|
|
19
|
+
hidden: { type: Boolean },
|
|
20
|
+
isCategorical: { type: Boolean },
|
|
21
|
+
onAesValueUpdate: { type: Function },
|
|
22
|
+
onSwitchVisibility: { type: Function },
|
|
23
|
+
onActiveValueChange: { type: Function },
|
|
24
|
+
onActiveAesTypeChange: { type: Function },
|
|
25
|
+
onCloseForm: { type: Function }
|
|
26
|
+
},
|
|
27
|
+
setup(e) {
|
|
28
|
+
const n = e;
|
|
29
|
+
function v(i, t) {
|
|
30
|
+
const l = n.activeValue === i.value && n.activeAesType === t;
|
|
31
|
+
n.onActiveValueChange(l ? null : i.value), n.onActiveAesTypeChange(l ? null : t);
|
|
32
|
+
}
|
|
33
|
+
const A = T(
|
|
34
|
+
() => h[n.palette].colors.map((i) => ({ color: i, name: i }))
|
|
35
|
+
), g = T(() => n.activeAesType ? E(
|
|
36
|
+
n.activeAesType === "lineType" ? w.length : n.activeAesType === "dotShape" ? F.length : A.value.length,
|
|
37
|
+
n.activeAesType
|
|
38
|
+
) : 0), f = S({
|
|
39
|
+
color: {},
|
|
40
|
+
dotShape: {},
|
|
41
|
+
lineType: {}
|
|
42
|
+
});
|
|
43
|
+
function c(i, t, l) {
|
|
44
|
+
l && (f[i][t.value] = l);
|
|
45
|
+
}
|
|
46
|
+
return (i, t) => (o(), m("div", {
|
|
47
|
+
class: a(i.$style.columnValue)
|
|
48
|
+
}, [
|
|
49
|
+
s("div", {
|
|
50
|
+
class: a(i.$style.title)
|
|
51
|
+
}, k(e.item.text), 3),
|
|
52
|
+
s("div", {
|
|
53
|
+
class: a(i.$style.aesGroup)
|
|
54
|
+
}, [
|
|
55
|
+
e.allowHiding ? (o(), d(V(I), {
|
|
56
|
+
key: 0,
|
|
57
|
+
"open-delay": 100,
|
|
58
|
+
"close-delay": 100
|
|
59
|
+
}, {
|
|
60
|
+
tooltip: r(() => [...t[10] || (t[10] = [
|
|
61
|
+
s("span", null, " Show / hide ", -1)
|
|
62
|
+
])]),
|
|
63
|
+
default: r(() => [
|
|
64
|
+
s("div", {
|
|
65
|
+
style: { cursor: "pointer" },
|
|
66
|
+
class: a(i.$style.aes),
|
|
67
|
+
onClick: t[0] || (t[0] = y((l) => e.onSwitchVisibility(), ["stop"]))
|
|
68
|
+
}, [
|
|
69
|
+
C(V(P), {
|
|
70
|
+
name: e.hidden ? "view-hide" : "view-show"
|
|
71
|
+
}, null, 8, ["name"])
|
|
72
|
+
], 2)
|
|
73
|
+
]),
|
|
74
|
+
_: 1
|
|
75
|
+
})) : u("", !0),
|
|
76
|
+
e.usedAesInMapping.lineType ? (o(), m("div", {
|
|
77
|
+
key: 1,
|
|
78
|
+
ref: (l) => c("lineType", e.item, l),
|
|
79
|
+
class: a([i.$style.aes, {
|
|
80
|
+
[i.$style.selected]: e.activeValue === e.item.value && e.activeAesType === "lineType"
|
|
81
|
+
}]),
|
|
82
|
+
onClick: t[1] || (t[1] = y((l) => v(e.item, "lineType"), ["stop"]))
|
|
83
|
+
}, [
|
|
84
|
+
s("div", {
|
|
85
|
+
class: a(["icon__line line", { [`line__${e.item.lineType}`]: !0 }])
|
|
86
|
+
}, null, 2)
|
|
87
|
+
], 2)) : u("", !0),
|
|
88
|
+
e.usedAesInMapping.dotShape ? (o(), m("div", {
|
|
89
|
+
key: 2,
|
|
90
|
+
ref: (l) => c("dotShape", e.item, l),
|
|
91
|
+
class: a([i.$style.aes, {
|
|
92
|
+
[i.$style.selected]: e.activeValue === e.item.value && e.activeAesType === "dotShape"
|
|
93
|
+
}]),
|
|
94
|
+
onClick: t[2] || (t[2] = y((l) => v(e.item, "dotShape"), ["stop"]))
|
|
95
|
+
}, [
|
|
96
|
+
s("div", {
|
|
97
|
+
class: a(["dot", { [`dot__${e.item.dotShape}`]: !0 }])
|
|
98
|
+
}, null, 2)
|
|
99
|
+
], 2)) : u("", !0),
|
|
100
|
+
e.usedAesInMapping.fill || e.usedAesInMapping.stroke ? (o(), m("div", {
|
|
101
|
+
key: 3,
|
|
102
|
+
ref: (l) => c("color", e.item, l),
|
|
103
|
+
class: a([i.$style.aes, {
|
|
104
|
+
[i.$style.selected]: e.activeValue === e.item.value && e.activeAesType === "color"
|
|
105
|
+
}]),
|
|
106
|
+
onClick: t[3] || (t[3] = y((l) => v(e.item, "color"), ["stop"]))
|
|
107
|
+
}, [
|
|
108
|
+
s("div", {
|
|
109
|
+
class: a(i.$style.color),
|
|
110
|
+
style: p({ background: e.item.color })
|
|
111
|
+
}, null, 6)
|
|
112
|
+
], 2)) : u("", !0),
|
|
113
|
+
(e.activeAesType !== "color" || e.isCategorical) && e.activeAesType !== null && e.activeValue === e.item.value ? (o(), d(B, {
|
|
114
|
+
key: `${e.activeAesType}_${e.activeValue}`,
|
|
115
|
+
targetRef: f[e.activeAesType][e.activeValue],
|
|
116
|
+
height: g.value,
|
|
117
|
+
"onPopup:close": e.onCloseForm
|
|
118
|
+
}, {
|
|
119
|
+
default: r(() => [
|
|
120
|
+
s("div", {
|
|
121
|
+
class: a(["fixed-aes-list", { "fixed-aes-list__rows": !1 }])
|
|
122
|
+
}, [
|
|
123
|
+
e.activeAesType === "lineType" ? (o(), d(M, {
|
|
124
|
+
key: 0,
|
|
125
|
+
modelValue: e.item.lineType,
|
|
126
|
+
"onUpdate:modelValue": [
|
|
127
|
+
t[4] || (t[4] = (l) => e.item.lineType = l),
|
|
128
|
+
t[5] || (t[5] = (l) => n.onAesValueUpdate("lineShape", l))
|
|
129
|
+
]
|
|
130
|
+
}, null, 8, ["modelValue"])) : u("", !0),
|
|
131
|
+
e.activeAesType === "dotShape" ? (o(), d(U, {
|
|
132
|
+
key: 1,
|
|
133
|
+
modelValue: e.item.dotShape,
|
|
134
|
+
"onUpdate:modelValue": [
|
|
135
|
+
t[6] || (t[6] = (l) => e.item.dotShape = l),
|
|
136
|
+
t[7] || (t[7] = (l) => n.onAesValueUpdate("dotShape", l))
|
|
137
|
+
]
|
|
138
|
+
}, null, 8, ["modelValue"])) : u("", !0),
|
|
139
|
+
e.activeAesType === "color" ? (o(), d(R, {
|
|
140
|
+
key: 2,
|
|
141
|
+
modelValue: e.item.color,
|
|
142
|
+
"onUpdate:modelValue": [
|
|
143
|
+
t[8] || (t[8] = (l) => e.item.color = l),
|
|
144
|
+
t[9] || (t[9] = (l) => n.onAesValueUpdate("color", l))
|
|
145
|
+
],
|
|
146
|
+
"colors-list": A.value
|
|
147
|
+
}, null, 8, ["modelValue", "colors-list"])) : u("", !0)
|
|
148
|
+
])
|
|
149
|
+
]),
|
|
150
|
+
_: 1
|
|
151
|
+
}, 8, ["targetRef", "height", "onPopup:close"])) : u("", !0)
|
|
152
|
+
], 2)
|
|
153
|
+
], 2));
|
|
154
|
+
}
|
|
155
|
+
});
|
|
156
|
+
export {
|
|
157
|
+
G as default
|
|
158
|
+
};
|
|
159
|
+
//# sourceMappingURL=DiscreteRow.vue2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DiscreteRow.vue2.js","sources":["../../../src/components/AesSettings/DiscreteRow.vue"],"sourcesContent":["<script lang=\"ts\" setup>\nimport { type ComponentPublicInstance, computed, reactive } from 'vue';\nimport { FIXED_LINE_TYPES, FIXES_DOT_SHAPES, PALETTE_MAP } from '../../constantsAesthetic';\nimport { getPopupHeightForFixedAesList } from '../../utils/getPopupHeightForFixedAesList';\nimport type { Palette, DotShape, LineType } from './types';\nimport type { AesType } from '../../constantsCommon';\nimport { PlIcon24, PlTooltip } from '@platforma-sdk/ui-vue';\nimport Popup from '../Popup.vue';\nimport FixedLineTypeList from './FixedLineTypeList.vue';\nimport FixedDotShapeList from './FixedDotShapeList.vue';\nimport FixedColorsList from './FixedColorsList.vue';\n\ntype EditableAesType = 'color' | 'dotShape' | 'lineType';\n\nconst props = defineProps<{\n item: {\n text: string;\n value: string;\n dotShape?: DotShape;\n color?: string;\n lineType?: LineType;\n };\n activeValue: string | null;\n activeAesType: EditableAesType | null;\n usedAesInMapping: Record<AesType, boolean>;\n palette: Palette;\n allowReordering: boolean;\n allowHiding: boolean;\n hidden: boolean;\n isCategorical: boolean;\n onAesValueUpdate: (field: string, value: string | DotShape | LineType) => void;\n onSwitchVisibility: () => void;\n onActiveValueChange: (value: string | null) => void;\n onActiveAesTypeChange: (value: EditableAesType | null) => void;\n onCloseForm: () => void;\n}>();\n\nfunction toggleForm(\n item: typeof props.item,\n valueType: EditableAesType,\n) {\n const isThisFormOpen = props.activeValue === item.value && props.activeAesType === valueType;\n props.onActiveValueChange(isThisFormOpen ? null : item.value);\n props.onActiveAesTypeChange(isThisFormOpen ? null : valueType);\n}\n\nconst selectedColorsList = computed(() =>\n PALETTE_MAP[props.palette].colors.map((color: string) => ({ color, name: color })),\n);\nconst popupHeight = computed(() => {\n if (!props.activeAesType) {\n return 0;\n }\n return getPopupHeightForFixedAesList(\n props.activeAesType === 'lineType' ? FIXED_LINE_TYPES.length : props.activeAesType === 'dotShape' ? FIXES_DOT_SHAPES.length : selectedColorsList.value.length,\n props.activeAesType,\n );\n});\n\nconst itemRefs = reactive<\n Record<EditableAesType, Record<string, ComponentPublicInstance | Element>>\n>({\n color: {},\n dotShape: {},\n lineType: {},\n});\nfunction setRef(\n type: EditableAesType,\n item: typeof props.item,\n el: ComponentPublicInstance | null | Element,\n) {\n if (el) {\n itemRefs[type][item.value] = el;\n }\n}\n</script>\n<template>\n <div :class=\"$style.columnValue\">\n <div :class=\"$style.title\">{{ item.text }}</div>\n <div :class=\"$style.aesGroup\">\n <PlTooltip v-if=\"allowHiding\" :open-delay=\"100\" :close-delay=\"100\">\n <div :style=\"{ cursor: 'pointer' }\" :class=\"$style.aes\" @click.stop=\"onSwitchVisibility()\">\n <PlIcon24 :name=\"hidden ? 'view-hide' : 'view-show'\" />\n </div>\n <template #tooltip>\n <span> Show / hide </span>\n </template>\n </PlTooltip>\n <div\n v-if=\"usedAesInMapping.lineType\" :ref=\"(v) => setRef('lineType', item, v)\" :class=\"[$style.aes, {\n [$style.selected]:\n activeValue === item.value &&\n activeAesType === 'lineType'\n }]\" @click.stop=\"toggleForm(item, 'lineType')\"\n >\n <div class=\"icon__line line\" :class=\"{ [`line__${item.lineType}`]: true }\" />\n </div>\n <div\n v-if=\"usedAesInMapping.dotShape\" :ref=\"(v) => setRef('dotShape', item, v)\" :class=\"[$style.aes, {\n [$style.selected]: activeValue === item.value && activeAesType === 'dotShape'\n }]\" @click.stop=\"toggleForm(item, 'dotShape')\"\n >\n <div class=\"dot\" :class=\"{ [`dot__${item.dotShape}`]: true }\" />\n </div>\n <div\n v-if=\"usedAesInMapping.fill || usedAesInMapping.stroke\" :ref=\"(v) => setRef('color', item, v)\"\n :class=\"[$style.aes, {\n [$style.selected]: activeValue === item.value && activeAesType === 'color'\n }]\" @click.stop=\"toggleForm(item, 'color')\"\n >\n <div :class=\"$style.color\" :style=\"{ background: item.color }\" />\n </div>\n <Popup\n v-if=\"\n (activeAesType !== 'color' || isCategorical) &&\n activeAesType !== null &&\n activeValue === item.value\n \" :key=\"`${activeAesType}_${activeValue}`\" :targetRef=\"itemRefs[activeAesType][activeValue] as HTMLElement\"\n :height=\"popupHeight\" @popup:close=\"onCloseForm\"\n >\n <div class=\"fixed-aes-list\" :class=\"{ 'fixed-aes-list__rows': false }\">\n <FixedLineTypeList\n v-if=\"activeAesType === 'lineType'\" v-model=\"item.lineType as LineType\" @update:modelValue=\"\n (v: LineType) => props.onAesValueUpdate('lineShape', v)\n \"\n />\n <FixedDotShapeList\n v-if=\"activeAesType === 'dotShape'\" v-model=\"item.dotShape as DotShape\" @update:modelValue=\"\n (v: DotShape) => props.onAesValueUpdate('dotShape', v)\n \"\n />\n <FixedColorsList\n v-if=\"activeAesType === 'color'\" v-model=\"item.color as string\"\n :colors-list=\"selectedColorsList\" @update:modelValue=\"\n (v: string) => props.onAesValueUpdate('color', v)\n \"\n />\n </div>\n </Popup>\n </div>\n </div>\n</template>\n\n<style module>\n.columnValue {\n display: flex;\n align-items: center;\n padding-left: 12px;\n padding-right: 2px;\n margin-bottom: 6px;\n background-color: var(--color-ic-00);\n width: 100%;\n}\n\n.columnValue:last-child {\n margin-bottom: 0;\n}\n\n.title {\n overflow: hidden;\n text-overflow: ellipsis;\n margin-right: 8px;\n line-height: 24px;\n}\n\n.color {\n width: 18px;\n height: 18px;\n border-radius: 3px;\n}\n\n.aesGroup {\n margin-left: auto;\n flex-shrink: 0;\n display: flex;\n align-items: center;\n}\n\n.aes {\n width: 40px;\n height: 40px;\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n background: var(--color-ic-00);\n border-radius: var(--border-radius-control);\n}\n\n.aes.selected {\n border: var(--contour-border-width) solid var(--contour-color);\n box-shadow: var(--contour-box-shadow);\n z-index: 1;\n}\n</style>\n"],"names":["props","__props","toggleForm","item","valueType","isThisFormOpen","selectedColorsList","computed","PALETTE_MAP","color","popupHeight","getPopupHeightForFixedAesList","FIXED_LINE_TYPES","FIXES_DOT_SHAPES","itemRefs","reactive","setRef","type","el","_createElementBlock","_normalizeClass","$style","_createElementVNode","_toDisplayString","_createBlock","_unref","PlTooltip","_cache","_createVNode","PlIcon24","v","_withModifiers","$event","_normalizeStyle","Popup","FixedLineTypeList","FixedDotShapeList","FixedColorsList"],"mappings":"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"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
(function(){"use strict";try{if(typeof document<"u"){var e=document.createElement("style");e.appendChild(document.createTextNode("._columnValue_7xzg0_2{display:flex;align-items:center;padding-left:12px;padding-right:2px;margin-bottom:6px;background-color:var(--color-ic-00);width:100%}._columnValue_7xzg0_2:last-child{margin-bottom:0}._title_7xzg0_16{overflow:hidden;text-overflow:ellipsis;margin-right:8px;line-height:24px}._color_7xzg0_23{width:18px;height:18px;border-radius:3px}._aesGroup_7xzg0_29{margin-left:auto;flex-shrink:0;display:flex;align-items:center}._aes_7xzg0_29{width:40px;height:40px;display:flex;justify-content:center;align-items:center;cursor:pointer;background:var(--color-ic-00);border-radius:var(--border-radius-control)}._aes_7xzg0_29._selected_7xzg0_47{border:var(--contour-border-width) solid var(--contour-color);box-shadow:var(--contour-box-shadow);z-index:1}")),document.head.appendChild(e)}}catch(o){console.error("vite-plugin-css-injected-by-js",o)}})();
|
|
2
|
+
const e = "_columnValue_7xzg0_2", o = "_title_7xzg0_16", t = "_color_7xzg0_23", s = "_aesGroup_7xzg0_29", _ = "_aes_7xzg0_29", l = "_selected_7xzg0_47", c = {
|
|
3
|
+
columnValue: e,
|
|
4
|
+
title: o,
|
|
5
|
+
color: t,
|
|
6
|
+
aesGroup: s,
|
|
7
|
+
aes: _,
|
|
8
|
+
selected: l
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
_ as aes,
|
|
12
|
+
s as aesGroup,
|
|
13
|
+
t as color,
|
|
14
|
+
e as columnValue,
|
|
15
|
+
c as default,
|
|
16
|
+
l as selected,
|
|
17
|
+
o as title
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=DiscreteRow.vue3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DiscreteRow.vue3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
|