@it-enterprise/forcebpm-ui-kit 1.0.2-beta.31 → 1.0.2-beta.32

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@it-enterprise/forcebpm-ui-kit",
4
- "version": "1.0.2-beta.31",
4
+ "version": "1.0.2-beta.32",
5
5
  "description": "FBPM UI Kit",
6
6
  "author": "it-enterprise",
7
7
  "license": "MIT",
package/src/FDialog.vue CHANGED
@@ -90,8 +90,6 @@ watch(modelValue, val => {
90
90
  if (!val) {
91
91
  search.value = null
92
92
  emit('close')
93
- } else {
94
- emit('open')
95
93
  }
96
94
  })
97
95
  </script>
@@ -619,6 +619,7 @@ watch(state, newState => {
619
619
  color: rgb(var(--f-user-group-chip-color));
620
620
  background: rgba(var(--f-user-group-chip-color), 0.2);
621
621
  border: 1px solid transparent;
622
+ font-size: 0.9em;
622
623
  &.active {
623
624
  border-color: rgb(var(--f-user-group-chip-color));
624
625
  }
@@ -1,6 +1,9 @@
1
1
  .f-card.v-card {
2
2
  &.v-card--hover:hover {
3
3
  box-shadow: var(--f-box-shadow);
4
+ .v-card__overlay {
5
+ opacity: 0;
6
+ }
4
7
  }
5
8
  }
6
9