@it-enterprise/forcebpm-ui-kit 1.0.2-beta.30 → 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.30",
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,3 +1,6 @@
1
1
  <svg width="10" height="12" viewBox="0 0 10 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0.320068 9.40088L1.82007 10.6509M1.82007 10.6509L3.32007 9.40088M1.82007 10.6509V0.650879M8.82007 1.90088L7.32007 0.650879M7.32007 0.650879L5.82007 1.90088M7.32007 0.650879V10.6509" stroke="#888EA4"/>
2
+ <path d="M1 9.75L2.5 11L4 9.75" stroke="#3B3B47"/>
3
+ <path d="M2.5 1L2.5 11" stroke="#3B3B47"/>
4
+ <path d="M9.5 2.25L8 1L6.5 2.25" stroke="#3B3B47"/>
5
+ <path d="M8 11L8 1" stroke="#3B3B47"/>
3
6
  </svg>
@@ -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
 
@@ -190,6 +190,22 @@
190
190
  }
191
191
  }
192
192
 
193
+ // Select
194
+ .f-input.v-select {
195
+ &.v-select--active-menu {
196
+ .v-select__menu-icon {
197
+ transform: rotate(180deg);
198
+ }
199
+ }
200
+ .v-field {
201
+ .v-field__input {
202
+ padding-inline: 12px 8px;
203
+ font-size: 0.85em;
204
+ min-height: 45px;
205
+ }
206
+ }
207
+ }
208
+
193
209
  // Autocomplete
194
210
  .f-input.v-autocomplete {
195
211
  &.v-autocomplete--active-menu {
@@ -298,6 +314,7 @@
298
314
  }
299
315
  .v-label {
300
316
  margin-left: 4px;
317
+ font-size: 0.85em;
301
318
  }
302
319
  }
303
320