@eturnity/eturnity_reusable_components 8.13.3-EPDM-14458.0 → 8.13.3-EPDM-14657.0
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/package.json +1 -1
- package/src/DemoCharts.vue +424 -0
- package/src/TestChart.vue +241 -0
- package/src/assets/svgIcons/refresh.svg +3 -0
- package/src/assets/theme.js +16 -0
- package/src/components/barchart/BottomFields.vue +253 -0
- package/src/components/barchart/ChartControls.vue +113 -0
- package/src/components/barchart/SelectionBox.vue +150 -0
- package/src/components/barchart/composables/index.js +5 -0
- package/src/components/barchart/composables/useAxisCalculations.js +104 -0
- package/src/components/barchart/composables/useChartData.js +114 -0
- package/src/components/barchart/composables/useChartScroll.js +61 -0
- package/src/components/barchart/composables/useSelection.js +75 -0
- package/src/components/barchart/composables/useTooltip.js +100 -0
- package/src/components/barchart/index.vue +376 -0
- package/src/components/barchart/styles/bottomFields.js +66 -0
- package/src/components/barchart/styles/chart.js +259 -0
- package/src/components/barchart/styles/chartControls.js +59 -0
- package/src/components/buttons/splitButtons/index.vue +86 -0
- package/src/components/collapsableInfoText/index.vue +2 -2
- package/src/components/inputs/inputNumber/index.vue +14 -2
- package/src/components/modals/modal/index.vue +1 -5
- package/src/helpers/isObjectEqual.js +22 -0
- package/src/main.js +8 -0
- package/src/router/dynamicRoutes.js +12 -0
@@ -0,0 +1,59 @@
|
|
1
|
+
import styled from 'vue3-styled-components'
|
2
|
+
|
3
|
+
export const Container = styled.div`
|
4
|
+
width: 100%;
|
5
|
+
`
|
6
|
+
|
7
|
+
export const LegendAndControlsWrapper = styled('div', { leftMargin: String })`
|
8
|
+
margin-left: ${(props) => props.leftMargin};
|
9
|
+
display: flex;
|
10
|
+
justify-content: space-between;
|
11
|
+
align-items: center;
|
12
|
+
`
|
13
|
+
|
14
|
+
export const LeftSection = styled.div`
|
15
|
+
flex: 1;
|
16
|
+
`
|
17
|
+
|
18
|
+
export const SplitButtonsContainer = styled('div', { position: String })`
|
19
|
+
align-self: ${(props) =>
|
20
|
+
props.position === 'top' ? 'flex-end' : 'flex-start'};
|
21
|
+
`
|
22
|
+
|
23
|
+
export const LegendGroups = styled.div`
|
24
|
+
display: flex;
|
25
|
+
flex-direction: column;
|
26
|
+
gap: 8px;
|
27
|
+
`
|
28
|
+
|
29
|
+
export const LegendRow = styled('div', { rowIndex: Number })`
|
30
|
+
display: flex;
|
31
|
+
gap: 10px;
|
32
|
+
align-items: center;
|
33
|
+
justify-content: ${(props) =>
|
34
|
+
props.rowIndex === 0 ? 'flex-start' : 'flex-end'};
|
35
|
+
`
|
36
|
+
|
37
|
+
export const LegendItem = styled.div`
|
38
|
+
display: flex;
|
39
|
+
align-items: center;
|
40
|
+
gap: 8px;
|
41
|
+
`
|
42
|
+
|
43
|
+
export const LegendColor = styled('div', {
|
44
|
+
gradientFrom: String,
|
45
|
+
gradientTo: String,
|
46
|
+
})`
|
47
|
+
width: 16px;
|
48
|
+
height: 16px;
|
49
|
+
border-radius: 4px;
|
50
|
+
background: ${(props) =>
|
51
|
+
`linear-gradient(180deg, ${props.gradientFrom} 0%, ${props.gradientTo} 100%)`};
|
52
|
+
`
|
53
|
+
|
54
|
+
export const LegendText = styled.span`
|
55
|
+
font-size: 12px;
|
56
|
+
font-weight: 400;
|
57
|
+
color: ${(props) => props.theme.semanticColors.teal[800]};
|
58
|
+
white-space: nowrap;
|
59
|
+
`
|
@@ -0,0 +1,86 @@
|
|
1
|
+
<template>
|
2
|
+
<Container>
|
3
|
+
<SplitButton
|
4
|
+
v-for="(option, index) in options"
|
5
|
+
:data-id-key="`${dataIdKey}_${option.value}`"
|
6
|
+
:key="index"
|
7
|
+
:length="options.length"
|
8
|
+
:position="getButtonPosition(index)"
|
9
|
+
:selected="modelValue === option.value"
|
10
|
+
@click.stop="handleSelect(option.value)"
|
11
|
+
>
|
12
|
+
{{ option.label }}
|
13
|
+
</SplitButton>
|
14
|
+
</Container>
|
15
|
+
</template>
|
16
|
+
|
17
|
+
<script setup>
|
18
|
+
import styled from 'vue3-styled-components'
|
19
|
+
import { computed } from 'vue'
|
20
|
+
|
21
|
+
const Container = styled.div`
|
22
|
+
display: flex;
|
23
|
+
width: fit-content;
|
24
|
+
`
|
25
|
+
const SplitButton = styled('button', {
|
26
|
+
selected: Boolean,
|
27
|
+
position: String,
|
28
|
+
length: Number,
|
29
|
+
})`
|
30
|
+
padding: 8px 16px;
|
31
|
+
border: 1px solid ${(props) => props.theme.semanticColors.teal[100]};
|
32
|
+
${(props) =>
|
33
|
+
props.position === 'middle'
|
34
|
+
? `
|
35
|
+
border-left: none;
|
36
|
+
border-right: none;
|
37
|
+
`
|
38
|
+
: props.length === 2 && props.position === 'first'
|
39
|
+
? 'border-right: none;'
|
40
|
+
: ''}
|
41
|
+
border-radius: ${(props) =>
|
42
|
+
props.position === 'first'
|
43
|
+
? '4px 0 0 4px'
|
44
|
+
: props.position === 'last'
|
45
|
+
? '0 4px 4px 0'
|
46
|
+
: '0'};
|
47
|
+
font-family: ${(props) => props.theme.fonts.mainFont};
|
48
|
+
font-size: 14px;
|
49
|
+
font-weight: 400;
|
50
|
+
line-height: 100%;
|
51
|
+
cursor: pointer;
|
52
|
+
background: ${(props) =>
|
53
|
+
props.selected ? props.theme.semanticColors.purple[50] : 'transparent'};
|
54
|
+
color: ${(props) => props.theme.semanticColors.purple[500]};
|
55
|
+
`
|
56
|
+
|
57
|
+
const props = defineProps({
|
58
|
+
options: {
|
59
|
+
type: Array,
|
60
|
+
required: true,
|
61
|
+
// expects array of {label: string, value: string}
|
62
|
+
},
|
63
|
+
modelValue: {
|
64
|
+
type: String,
|
65
|
+
required: true,
|
66
|
+
},
|
67
|
+
dataIdKey: {
|
68
|
+
type: String,
|
69
|
+
default: '',
|
70
|
+
},
|
71
|
+
})
|
72
|
+
|
73
|
+
const emit = defineEmits(['update:modelValue'])
|
74
|
+
|
75
|
+
const getButtonPosition = computed(() => (index) => {
|
76
|
+
if (index === 0) return 'first'
|
77
|
+
if (index === props.options.length - 1) return 'last'
|
78
|
+
|
79
|
+
return 'middle'
|
80
|
+
})
|
81
|
+
|
82
|
+
const handleSelect = (value) => {
|
83
|
+
emit('update:modelValue', value)
|
84
|
+
emit('click', value)
|
85
|
+
}
|
86
|
+
</script>
|
@@ -33,7 +33,7 @@
|
|
33
33
|
const Text = styled('p', TextAttrs)`
|
34
34
|
display: block;
|
35
35
|
display: -webkit-box;
|
36
|
-
line-height: 1.
|
36
|
+
line-height: 1.5;
|
37
37
|
-webkit-line-clamp: ${(props) => (props.expand ? 'unset' : '4')};
|
38
38
|
-webkit-box-orient: vertical;
|
39
39
|
overflow: hidden;
|
@@ -49,7 +49,7 @@
|
|
49
49
|
const ToggleButton = styled('p', TextAttrs)`
|
50
50
|
font-size: ${(props) => props.fontSize}px;
|
51
51
|
cursor: pointer;
|
52
|
-
color: ${(props) => props.theme.
|
52
|
+
color: ${(props) => props.theme.semanticColors.purple[500]};
|
53
53
|
`
|
54
54
|
|
55
55
|
export default {
|
@@ -56,6 +56,7 @@
|
|
56
56
|
:min-width="minWidth"
|
57
57
|
:no-border="noBorder"
|
58
58
|
:placeholder="displayedPlaceholder"
|
59
|
+
:read-only="isReadOnly"
|
59
60
|
:show-arrow-controls="showArrowControls"
|
60
61
|
:show-linear-unit-name="showLinearUnitName"
|
61
62
|
:slot-size="slotSize"
|
@@ -163,6 +164,7 @@
|
|
163
164
|
// labelInfoAlign="left"
|
164
165
|
// :minNumber="0"
|
165
166
|
// fontColor="blue"
|
167
|
+
// :isReadOnly="true"
|
166
168
|
// colorMode="transparent" // Makes background transparent, border white, and font white
|
167
169
|
// >
|
168
170
|
//<template name=label><img>....</template>
|
@@ -202,6 +204,7 @@
|
|
202
204
|
showLinearUnitName: Boolean,
|
203
205
|
colorMode: String,
|
204
206
|
showArrowControls: Boolean,
|
207
|
+
readOnly: Boolean,
|
205
208
|
}
|
206
209
|
|
207
210
|
const Container = styled('div', inputProps)`
|
@@ -250,7 +253,8 @@
|
|
250
253
|
? '0 4px 4px 0'
|
251
254
|
: '4px'};
|
252
255
|
text-align: ${(props) => props.textAlign};
|
253
|
-
cursor: ${(props) =>
|
256
|
+
cursor: ${(props) =>
|
257
|
+
props.isDisabled || props.readOnly ? 'not-allowed' : 'auto'};
|
254
258
|
font-size: ${(props) => (props.fontSize ? props.fontSize : '13px')};
|
255
259
|
color: ${(props) =>
|
256
260
|
props.isError
|
@@ -263,7 +267,9 @@
|
|
263
267
|
? props.fontColor + ' !important'
|
264
268
|
: props.theme.colors.black};
|
265
269
|
background-color: ${(props) =>
|
266
|
-
props.
|
270
|
+
props.readOnly
|
271
|
+
? props.theme.semanticColors.grey[300]
|
272
|
+
: props.isDisabled
|
267
273
|
? props.colorMode === 'transparent'
|
268
274
|
? 'transparent'
|
269
275
|
: props.theme.colors.grey5
|
@@ -276,6 +282,8 @@
|
|
276
282
|
box-sizing: border-box;
|
277
283
|
opacity: ${(props) =>
|
278
284
|
props.isDisabled && props.colorMode === 'transparent' ? '0.4' : '1'};
|
285
|
+
pointer-events: ${(props) => (props.readOnly ? 'none' : 'auto')};
|
286
|
+
user-select: ${(props) => (props.readOnly ? 'none' : 'auto')};
|
279
287
|
|
280
288
|
&::placeholder {
|
281
289
|
color: ${(props) => props.theme.colors.grey2};
|
@@ -686,6 +694,10 @@
|
|
686
694
|
type: Boolean,
|
687
695
|
default: false,
|
688
696
|
},
|
697
|
+
isReadOnly: {
|
698
|
+
type: Boolean,
|
699
|
+
default: false,
|
700
|
+
},
|
689
701
|
},
|
690
702
|
data() {
|
691
703
|
return {
|
@@ -16,11 +16,7 @@
|
|
16
16
|
<ContentContainer v-if="!isLoading">
|
17
17
|
<slot></slot>
|
18
18
|
</ContentContainer>
|
19
|
-
<CloseButton
|
20
|
-
v-if="!hideClose && !isLoading"
|
21
|
-
class="close"
|
22
|
-
@click="onCloseModal()"
|
23
|
-
/>
|
19
|
+
<CloseButton v-if="!hideClose" class="close" @click="onCloseModal()" />
|
24
20
|
</ModalContainer>
|
25
21
|
</PageWrapper>
|
26
22
|
</template>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { toRaw } from 'vue'
|
2
|
+
|
3
|
+
export default function isObjectEqual(obj1, obj2) {
|
4
|
+
obj1 = toRaw(obj1)
|
5
|
+
obj2 = toRaw(obj2)
|
6
|
+
if (obj1 === obj2) return true
|
7
|
+
if (obj1 === null || obj2 === null) return false
|
8
|
+
if (typeof obj1 !== 'object' || typeof obj2 !== 'object') return false
|
9
|
+
|
10
|
+
const isArray1 = Array.isArray(obj1)
|
11
|
+
const isArray2 = Array.isArray(obj2)
|
12
|
+
if (isArray1 !== isArray2) return false
|
13
|
+
|
14
|
+
const keys1 = Object.keys(obj1)
|
15
|
+
if (keys1.length !== Object.keys(obj2).length) return false
|
16
|
+
|
17
|
+
return keys1.every(
|
18
|
+
(key) =>
|
19
|
+
Object.prototype.hasOwnProperty.call(obj2, key) &&
|
20
|
+
isObjectEqual(obj1[key], obj2[key])
|
21
|
+
)
|
22
|
+
}
|
package/src/main.js
CHANGED
@@ -2,6 +2,14 @@ import App from './App.vue'
|
|
2
2
|
import { createApp } from 'vue'
|
3
3
|
import router from './router/dynamicRoutes'
|
4
4
|
|
5
|
+
const link = document.createElement('link')
|
6
|
+
link.href =
|
7
|
+
'https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap'
|
8
|
+
link.rel = 'stylesheet'
|
9
|
+
document.getElementsByTagName('head')[0].appendChild(link)
|
10
|
+
|
5
11
|
const app = createApp(App)
|
12
|
+
|
13
|
+
app.config.globalProperties.$c = console
|
6
14
|
app.use(router)
|
7
15
|
app.mount('#app')
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { createRouter, createWebHistory } from 'vue-router'
|
2
2
|
import Test from '@/Test.vue'
|
3
3
|
import Toggle from '@/components/inputs/toggle/index.vue'
|
4
|
+
import TestChart from '@/TestChart.vue'
|
5
|
+
import DemoCharts from '@/DemoCharts.vue'
|
4
6
|
|
5
7
|
const routes = [
|
6
8
|
{
|
@@ -13,6 +15,16 @@ const routes = [
|
|
13
15
|
name: 'Toggle',
|
14
16
|
component: Toggle,
|
15
17
|
},
|
18
|
+
{
|
19
|
+
path: '/test-chart',
|
20
|
+
name: 'TestChart',
|
21
|
+
component: TestChart,
|
22
|
+
},
|
23
|
+
{
|
24
|
+
path: '/demo-charts',
|
25
|
+
name: 'DemoCharts',
|
26
|
+
component: DemoCharts,
|
27
|
+
},
|
16
28
|
]
|
17
29
|
|
18
30
|
const router = createRouter({
|