@dative-gpi/foundation-core-components 1.0.189-update-fs-card → 1.0.190-feat-time-normalization
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.
|
@@ -41,18 +41,17 @@
|
|
|
41
41
|
<template
|
|
42
42
|
#item.tile="{ index, item }"
|
|
43
43
|
>
|
|
44
|
-
<
|
|
44
|
+
<FSClickable
|
|
45
45
|
:key="index"
|
|
46
46
|
padding="12px"
|
|
47
47
|
height="60px"
|
|
48
48
|
width="233px"
|
|
49
|
-
:
|
|
50
|
-
:color="ColorEnum.Primary"
|
|
49
|
+
:color="isSelected(item.id) ? ColorEnum.Primary : ColorEnum.Dark"
|
|
51
50
|
@click="$emit('update:modelValue', [item.id])"
|
|
52
51
|
v-bind="$attrs"
|
|
53
52
|
>
|
|
54
53
|
<template
|
|
55
|
-
#default
|
|
54
|
+
#default
|
|
56
55
|
>
|
|
57
56
|
<FSRow
|
|
58
57
|
align="center-center"
|
|
@@ -67,11 +66,11 @@
|
|
|
67
66
|
<FSIcon
|
|
68
67
|
:color="item.correlated ? ColorEnum.Primary : ColorEnum.Light"
|
|
69
68
|
:icon="item.correlated ? 'mdi-link' : 'mdi-link-off'"
|
|
70
|
-
|
|
69
|
+
variant="dark"
|
|
71
70
|
/>
|
|
72
71
|
</FSRow>
|
|
73
72
|
</template>
|
|
74
|
-
</
|
|
73
|
+
</FSClickable>
|
|
75
74
|
</template>
|
|
76
75
|
</FSDataTable>
|
|
77
76
|
</FSFadeOut>
|
|
@@ -82,7 +81,7 @@
|
|
|
82
81
|
import { defineComponent, type PropType, ref, watch } from "vue";
|
|
83
82
|
import _ from "lodash";
|
|
84
83
|
|
|
85
|
-
import {
|
|
84
|
+
import {ColorEnum} from "@dative-gpi/foundation-shared-components/models";
|
|
86
85
|
|
|
87
86
|
import { useDataCategories } from "@dative-gpi/foundation-core-services/composables";
|
|
88
87
|
import type { DataCategoryFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
@@ -90,10 +89,10 @@ import type { DataCategoryFilters } from "@dative-gpi/foundation-core-domain/mod
|
|
|
90
89
|
import FSDataTable from "../FSDataTable.vue";
|
|
91
90
|
import FSCol from "@dative-gpi/foundation-shared-components/components/FSCol.vue";
|
|
92
91
|
import FSRow from "@dative-gpi/foundation-shared-components/components/FSRow.vue";
|
|
93
|
-
import FSCard from "@dative-gpi/foundation-shared-components/components/FSCard.vue";
|
|
94
92
|
import FSIcon from "@dative-gpi/foundation-shared-components/components/FSIcon.vue";
|
|
95
93
|
import FSSpan from "@dative-gpi/foundation-shared-components/components/FSSpan.vue";
|
|
96
94
|
import FSFadeOut from "@dative-gpi/foundation-shared-components/components/FSFadeOut.vue";
|
|
95
|
+
import FSClickable from "@dative-gpi/foundation-shared-components/components/FSClickable.vue";
|
|
97
96
|
import FSSearchField from "@dative-gpi/foundation-shared-components/components/fields/FSSearchField.vue";
|
|
98
97
|
import FSButtonCheckbox from "@dative-gpi/foundation-shared-components/components/buttons/FSButtonCheckbox.vue";
|
|
99
98
|
|
|
@@ -103,7 +102,7 @@ export default defineComponent({
|
|
|
103
102
|
FSDataTable,
|
|
104
103
|
FSCol,
|
|
105
104
|
FSFadeOut,
|
|
106
|
-
|
|
105
|
+
FSClickable,
|
|
107
106
|
FSRow,
|
|
108
107
|
FSSpan,
|
|
109
108
|
FSSearchField,
|
|
@@ -147,7 +146,6 @@ export default defineComponent({
|
|
|
147
146
|
return {
|
|
148
147
|
fetchingDataCategories,
|
|
149
148
|
dataCategories,
|
|
150
|
-
CardVariants,
|
|
151
149
|
ColorEnum,
|
|
152
150
|
search,
|
|
153
151
|
correlated,
|
|
@@ -28,18 +28,17 @@
|
|
|
28
28
|
<template
|
|
29
29
|
#item.tile="{ index, item }"
|
|
30
30
|
>
|
|
31
|
-
<
|
|
31
|
+
<FSClickable
|
|
32
32
|
:key="index"
|
|
33
33
|
padding="12px"
|
|
34
34
|
height="60px"
|
|
35
35
|
width="233px"
|
|
36
|
-
:color="ColorEnum.Primary"
|
|
37
|
-
:variant="isSelected(item.id) ? CardVariants.Standard : CardVariants.Background"
|
|
36
|
+
:color="isSelected(item.id) ? ColorEnum.Primary : ColorEnum.Light"
|
|
38
37
|
@click="$emit('update:modelValue', [item.id])"
|
|
39
38
|
v-bind="$attrs"
|
|
40
39
|
>
|
|
41
40
|
<template
|
|
42
|
-
#default
|
|
41
|
+
#default
|
|
43
42
|
>
|
|
44
43
|
<FSRow
|
|
45
44
|
align="center-center"
|
|
@@ -55,12 +54,11 @@
|
|
|
55
54
|
<v-spacer/>
|
|
56
55
|
<FSIcon
|
|
57
56
|
:color="ColorEnum.Primary"
|
|
58
|
-
:variant="contentVariant"
|
|
59
57
|
icon="mdi-link"
|
|
60
58
|
/>
|
|
61
59
|
</FSRow>
|
|
62
60
|
</template>
|
|
63
|
-
</
|
|
61
|
+
</FSClickable>
|
|
64
62
|
</template>
|
|
65
63
|
</FSDataTable>
|
|
66
64
|
</template>
|
|
@@ -69,7 +67,7 @@
|
|
|
69
67
|
import { defineComponent, type PropType, watch } from "vue";
|
|
70
68
|
import _ from "lodash";
|
|
71
69
|
|
|
72
|
-
import {
|
|
70
|
+
import {ColorEnum} from "@dative-gpi/foundation-shared-components/models";
|
|
73
71
|
|
|
74
72
|
import { useDataDefinitions } from "@dative-gpi/foundation-core-services/composables";
|
|
75
73
|
import type { DataDefinitionFilters } from "@dative-gpi/foundation-core-domain/models";
|
|
@@ -78,7 +76,7 @@ import FSDataTable from "../FSDataTable.vue";
|
|
|
78
76
|
import FSRow from "@dative-gpi/foundation-shared-components/components/FSRow.vue";
|
|
79
77
|
import FSSpan from "@dative-gpi/foundation-shared-components/components/FSSpan.vue";
|
|
80
78
|
import FSIcon from "@dative-gpi/foundation-shared-components/components/FSIcon.vue";
|
|
81
|
-
import
|
|
79
|
+
import FSClickable from "@dative-gpi/foundation-shared-components/components/FSClickable.vue";
|
|
82
80
|
import FSButtonCheckbox from "@dative-gpi/foundation-shared-components/components/buttons/FSButtonCheckbox.vue";
|
|
83
81
|
|
|
84
82
|
export default defineComponent({
|
|
@@ -86,7 +84,7 @@ export default defineComponent({
|
|
|
86
84
|
components: {
|
|
87
85
|
FSButtonCheckbox,
|
|
88
86
|
FSDataTable,
|
|
89
|
-
|
|
87
|
+
FSClickable,
|
|
90
88
|
FSSpan,
|
|
91
89
|
FSIcon,
|
|
92
90
|
FSRow,
|
|
@@ -125,7 +123,6 @@ export default defineComponent({
|
|
|
125
123
|
return {
|
|
126
124
|
fetchingDataDefinitions,
|
|
127
125
|
dataDefinitions,
|
|
128
|
-
CardVariants,
|
|
129
126
|
ColorEnum,
|
|
130
127
|
isSelected
|
|
131
128
|
};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"url": "https://github.com/Dative-GPI/foundation-shared-ui.git"
|
|
5
5
|
},
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"version": "1.0.
|
|
7
|
+
"version": "1.0.190-feat-time-normalization",
|
|
8
8
|
"description": "",
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"author": "",
|
|
14
14
|
"license": "ISC",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@dative-gpi/foundation-core-domain": "1.0.
|
|
17
|
-
"@dative-gpi/foundation-core-services": "1.0.
|
|
18
|
-
"@dative-gpi/foundation-shared-components": "1.0.
|
|
19
|
-
"@dative-gpi/foundation-shared-domain": "1.0.
|
|
20
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
16
|
+
"@dative-gpi/foundation-core-domain": "1.0.190-feat-time-normalization",
|
|
17
|
+
"@dative-gpi/foundation-core-services": "1.0.190-feat-time-normalization",
|
|
18
|
+
"@dative-gpi/foundation-shared-components": "1.0.190-feat-time-normalization",
|
|
19
|
+
"@dative-gpi/foundation-shared-domain": "1.0.190-feat-time-normalization",
|
|
20
|
+
"@dative-gpi/foundation-shared-services": "1.0.190-feat-time-normalization"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"sass": "1.71.1",
|
|
30
30
|
"sass-loader": "13.3.2"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "5b6a1e99713533f6c226ea9b02466101980da6c4"
|
|
33
33
|
}
|