@dative-gpi/foundation-shared-components 1.0.114-refacto-alert-list → 1.0.115
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.
|
@@ -369,9 +369,11 @@
|
|
|
369
369
|
<template
|
|
370
370
|
v-else
|
|
371
371
|
>
|
|
372
|
-
<
|
|
373
|
-
|
|
374
|
-
|
|
372
|
+
<FSRow>
|
|
373
|
+
<FSText>
|
|
374
|
+
{{ $tr("data-table.some-selected", "{0} element(s) selected", $props.modelValue.length.toString()) }}
|
|
375
|
+
</FSText>
|
|
376
|
+
</FSRow>
|
|
375
377
|
</template>
|
|
376
378
|
</template>
|
|
377
379
|
<FSRow
|
|
@@ -542,9 +544,11 @@
|
|
|
542
544
|
<template
|
|
543
545
|
v-else
|
|
544
546
|
>
|
|
545
|
-
<
|
|
546
|
-
|
|
547
|
-
|
|
547
|
+
<FSRow>
|
|
548
|
+
<FSText>
|
|
549
|
+
{{ $tr("data-table.some-selected", "{0} element(s) selected", $props.modelValue.length.toString()) }}
|
|
550
|
+
</FSText>
|
|
551
|
+
</FSRow>
|
|
548
552
|
</template>
|
|
549
553
|
</template>
|
|
550
554
|
<FSRow
|
|
@@ -14,23 +14,23 @@
|
|
|
14
14
|
:icon="$props.icon"
|
|
15
15
|
size="24px"
|
|
16
16
|
/>
|
|
17
|
-
<
|
|
17
|
+
<FSSpan
|
|
18
18
|
:lineClamp="1"
|
|
19
19
|
>
|
|
20
20
|
{{ $props.label }}
|
|
21
|
-
</
|
|
21
|
+
</FSSpan>
|
|
22
22
|
<FSSpan
|
|
23
23
|
font="text-overline"
|
|
24
24
|
:lineClamp="1"
|
|
25
25
|
>
|
|
26
26
|
{{ epochToShortTimeFormat($props.triggerProcessedTimestamp) }}
|
|
27
27
|
</FSSpan>
|
|
28
|
-
<
|
|
28
|
+
<FSSpan
|
|
29
29
|
font="text-overline"
|
|
30
30
|
:lineClamp="1"
|
|
31
31
|
>
|
|
32
32
|
{{ $props.deviceOrganisationLabel }}
|
|
33
|
-
</
|
|
33
|
+
</FSSpan>
|
|
34
34
|
</FSCol>
|
|
35
35
|
</FSTile>
|
|
36
36
|
</template>
|
|
@@ -42,7 +42,6 @@ import type { PropType } from "vue";
|
|
|
42
42
|
import { useDateFormat } from "@dative-gpi/foundation-shared-services/composables";
|
|
43
43
|
import { ColorEnum } from "@dative-gpi/foundation-shared-components/models";
|
|
44
44
|
|
|
45
|
-
import FSText from "../FSText.vue";
|
|
46
45
|
import FSTile from "./FSTile.vue";
|
|
47
46
|
import FSSpan from "../FSSpan.vue";
|
|
48
47
|
import FSIcon from "../FSIcon.vue";
|
|
@@ -52,7 +51,6 @@ import FSCol from "../FSCol.vue";
|
|
|
52
51
|
export default defineComponent({
|
|
53
52
|
name: "FSAlertTileUI",
|
|
54
53
|
components: {
|
|
55
|
-
FSText,
|
|
56
54
|
FSTile,
|
|
57
55
|
FSIcon,
|
|
58
56
|
FSSpan,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.115",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.115",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.115"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"sass": "1.71.1",
|
|
36
36
|
"sass-loader": "13.3.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "0ff354e450d124ae789dcca1d4e08d76b927ed22"
|
|
39
39
|
}
|