@dative-gpi/foundation-shared-components 1.0.128-fix-mobile-3 → 1.0.128-fix-mobile-5

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.
@@ -9,7 +9,7 @@
9
9
  #title="{ item }"
10
10
  >
11
11
  <FSSpan
12
- :class="classes(item)"
12
+ class="fs-breadcrumbs-label"
13
13
  >
14
14
  {{ item.title }}
15
15
  </FSSpan>
@@ -76,18 +76,9 @@ export default defineComponent({
76
76
  return props.items;
77
77
  });
78
78
 
79
- const classes = (item: FSBreadcrumbItem): string[] => {
80
- const classNames = ["fs-breadcrumbs-label"];
81
- if (item.disabled) {
82
- classNames.push("fs-breadcrumbs-label-disabled");
83
- }
84
- return classNames;
85
- };
86
-
87
79
  return {
88
80
  items,
89
- style,
90
- classes
81
+ style
91
82
  };
92
83
  }
93
84
  });
@@ -21,7 +21,7 @@
21
21
  mdi-alert-outline
22
22
  </FSIcon>
23
23
  <FSRow
24
- gap="2px"
24
+ gap="4px"
25
25
  >
26
26
  <FSSpan>
27
27
  {{ $tr("dialog-remove.body-regular", "This action is") }}
@@ -46,7 +46,7 @@
46
46
  align="center-left"
47
47
  >
48
48
  <FSColor
49
- width="24px"
49
+ padding="0 8px"
50
50
  height="24px"
51
51
  :color="ColorEnum.Light"
52
52
  :border="false"
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.128-fix-mobile-3",
4
+ "version": "1.0.128-fix-mobile-5",
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.128-fix-mobile-3",
14
- "@dative-gpi/foundation-shared-services": "1.0.128-fix-mobile-3"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.128-fix-mobile-5",
14
+ "@dative-gpi/foundation-shared-services": "1.0.128-fix-mobile-5"
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": "900221b1b1a38a793a1cc7b98f9a00a300557d10"
38
+ "gitHead": "3561f3ed887b467d9dd2f1a3d946926368f7cbeb"
39
39
  }
@@ -1,32 +1,16 @@
1
- .fs-breadcrumbs-label {
2
- cursor: pointer;
3
- user-select: none;
4
- color: var(--fs-breadcrumbs-color);
5
-
6
- &-disabled {
7
- color: var(--fs-breadcrumbs-disabled-color) !important;
8
- }
9
-
10
- @include clickscreen {
11
- &:hover {
12
- text-decoration: underline;
13
- }
14
- }
15
-
16
- &:active {
17
- color: var(--fs-breadcrumbs-active-color) !important;
18
- }
19
- }
20
-
21
- .fs-breadcrumbs.v-breadcrumbs {
1
+ .fs-breadcrumbs {
22
2
  height: var(--fs-breadcrumbs-height) !important;
23
- display: flex !important;
24
3
  padding: 0 !important;
25
- gap: 8px !important;
4
+ gap: 0 !important;
5
+
6
+ max-width: 100%;
26
7
  }
27
8
 
28
- .v-breadcrumbs-item {
9
+ .v-breadcrumbs-item,
10
+ .v-breadcrumbs-item--link {
29
11
  padding: 0 !important;
12
+ user-select: none;
13
+ cursor: pointer;
30
14
 
31
15
  align-self: stretch;
32
16
  display: flex;
@@ -39,15 +23,14 @@
39
23
  opacity: 1 !important;
40
24
  color: var(--fs-breadcrumbs-disabled-color) !important;
41
25
  }
26
+ }
42
27
 
43
- &:last-child > .fs-breadcrumbs-label-disabled {
44
- @extend .text-button;
28
+ .v-breadcrumbs-item:last-child > .fs-breadcrumbs-label {
29
+ @extend .text-button;
45
30
 
46
- color: var(--fs-breadcrumbs-active-color) !important;
47
- }
31
+ color: var(--fs-breadcrumbs-active-color) !important;
48
32
  }
49
33
 
50
34
  .v-breadcrumbs-divider {
51
- padding: 0 !important;
52
35
  color: var(--fs-breadcrumbs-color) !important;
53
36
  }
@@ -1,9 +1,7 @@
1
1
  .fs-span {
2
- align-self: stretch;
3
2
  display: flex;
4
- flex: 1 0 0;
5
3
 
6
- max-width: fit-content;
4
+ max-width: 100%;
7
5
  min-width: 0;
8
6
  }
9
7