@omnia/runtime 8.0.102-vnext → 8.0.103-vnext

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.
@@ -1307,6 +1307,7 @@
1307
1307
  }
1308
1308
  .v-tab.v-tab {
1309
1309
  --v-btn-height: var(--v-tabs-height);
1310
+ border-radius: 0;
1310
1311
  min-width: 90px;
1311
1312
  }
1312
1313
  .v-slide-group--horizontal .v-tab {
@@ -121,7 +121,7 @@
121
121
  display: none;
122
122
  }
123
123
  .v-date-picker-years {
124
- height: 308px;
124
+ height: 320px;
125
125
  overflow-y: scroll;
126
126
  }
127
127
 
@@ -1352,6 +1352,7 @@
1352
1352
  user-select: none;
1353
1353
  vertical-align: middle;
1354
1354
  width: 1em;
1355
+ min-width: 1em;
1355
1356
  }
1356
1357
  .v-icon--clickable {
1357
1358
  cursor: pointer;
@@ -1869,8 +1870,19 @@
1869
1870
  .v-snackbar-actions .v-btn {
1870
1871
  padding: 0 8px;
1871
1872
  }
1872
- .v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
1873
- opacity: var(--v-activated-opacity);
1873
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
1874
+ opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
1875
+ }
1876
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
1877
+ opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
1878
+ }
1879
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
1880
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
1881
+ }
1882
+ @supports not selector(:focus-visible) {
1883
+ .v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
1884
+ opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
1885
+ }
1874
1886
  }
1875
1887
  /** if false, disabled buttons will be greyed out */
1876
1888
  .v-btn-group {
@@ -2371,6 +2383,7 @@
2371
2383
  }
2372
2384
  .v-label {
2373
2385
  align-items: center;
2386
+ color: inherit;
2374
2387
  display: inline-flex;
2375
2388
  font-size: 1rem;
2376
2389
  letter-spacing: 0.009375em;
@@ -2661,6 +2674,9 @@ html.v-overlay-scroll-blocked {
2661
2674
  .v-table {
2662
2675
  background: rgb(var(--v-theme-surface));
2663
2676
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
2677
+ transition-duration: 0.28s;
2678
+ transition-property: box-shadow, opacity, background;
2679
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2664
2680
  }
2665
2681
  .v-table .v-table-divider {
2666
2682
  border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
@@ -3019,6 +3035,7 @@ textarea.v-field__input::placeholder {
3019
3035
  .v-field__clearable {
3020
3036
  cursor: pointer;
3021
3037
  opacity: 0;
3038
+ overflow: hidden;
3022
3039
  margin-inline-start: 4px;
3023
3040
  margin-inline-end: 4px;
3024
3041
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
@@ -3074,7 +3091,7 @@ textarea.v-field__input::placeholder {
3074
3091
  transform: none;
3075
3092
  }
3076
3093
  .v-field.v-field--active .v-label.v-field-label--floating {
3077
- visibility: visible;
3094
+ visibility: unset;
3078
3095
  }
3079
3096
  .v-input--density-default .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-solo-inverted .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-filled .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-solo-filled .v-label.v-field-label--floating {
3080
3097
  top: 7px;
@@ -3168,20 +3185,15 @@ textarea.v-field__input::placeholder {
3168
3185
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
3169
3186
  }
3170
3187
  .v-field--variant-outlined .v-field__outline__start {
3188
+ flex: 0 0 12px;
3171
3189
  border-top-width: var(--v-field-border-width);
3172
3190
  border-bottom-width: var(--v-field-border-width);
3173
3191
  border-inline-start-width: var(--v-field-border-width);
3174
3192
  }
3175
- .v-input--density-default .v-field--variant-outlined .v-field__outline__start {
3176
- flex: 0 0 29px;
3177
- }
3178
-
3179
- .v-input--density-comfortable .v-field--variant-outlined .v-field__outline__start {
3180
- flex: 0 0 25px;
3181
- }
3182
-
3183
- .v-input--density-compact .v-field--variant-outlined .v-field__outline__start {
3184
- flex: 0 0 21px;
3193
+ .v-field--rounded.v-field--variant-outlined .v-field__outline__start,
3194
+ [class^=rounded-].v-field--variant-outlined .v-field__outline__start,
3195
+ [class*=" rounded-"].v-field--variant-outlined .v-field__outline__start {
3196
+ flex-basis: calc(var(--v-input-control-height) / 2 + 2px);
3185
3197
  }
3186
3198
 
3187
3199
  .v-locale--is-ltr.v-field--variant-outlined .v-field__outline__start, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start {
@@ -3246,11 +3258,19 @@ textarea.v-field__input::placeholder {
3246
3258
  /* endregion */
3247
3259
  /* region LOADER */
3248
3260
  .v-field__loader {
3249
- bottom: 0;
3261
+ top: calc(100% - 2px);
3250
3262
  left: 0;
3251
3263
  position: absolute;
3252
3264
  right: 0;
3253
3265
  width: 100%;
3266
+ border-top-left-radius: 0;
3267
+ border-top-right-radius: 0;
3268
+ border-bottom-left-radius: inherit;
3269
+ border-bottom-right-radius: inherit;
3270
+ overflow: hidden;
3271
+ }
3272
+ .v-field--variant-outlined .v-field__loader {
3273
+ top: calc(100% - 3px);
3254
3274
  }
3255
3275
 
3256
3276
  /* endregion */
@@ -19248,7 +19268,7 @@ html.overflow-y-hidden {
19248
19268
  white-space: normal;
19249
19269
  word-break: break-word;
19250
19270
  height: 100%;
19251
- width: 100%;
19271
+ width: max-content;
19252
19272
  }
19253
19273
  .v-selection-control--disabled {
19254
19274
  opacity: var(--v-disabled-opacity);
@@ -1,6 +1,10 @@
1
1
  .v-switch .v-label {
2
2
  padding-inline-start: 10px;
3
3
  }
4
+ .v-switch .v-switch__thumb {
5
+ background-color: rgb(var(--v-theme-surface-bright));
6
+ color: rgb(var(--v-theme-on-surface-bright));
7
+ }
4
8
 
5
9
  .v-switch__loader {
6
10
  display: flex;
@@ -20,13 +24,13 @@
20
24
  }
21
25
 
22
26
  .v-switch__track {
23
- background-color: currentColor;
27
+ background-color: rgb(var(--v-theme-surface-variant));
24
28
  border-radius: 9999px;
25
29
  height: 14px;
26
30
  opacity: 0.6;
27
31
  width: 36px;
28
32
  cursor: pointer;
29
- transition: 0.2s color cubic-bezier(0.4, 0, 0.2, 1);
33
+ transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
30
34
  }
31
35
  .v-switch--inset .v-switch__track {
32
36
  border-radius: 9999px;
@@ -37,14 +41,12 @@
37
41
  .v-switch__thumb {
38
42
  align-items: center;
39
43
  border-radius: 50%;
40
- background: rgb(var(--v-theme-surface));
41
- color: rgb(var(--v-theme-on-surface));
42
44
  display: flex;
43
45
  height: 20px;
44
46
  justify-content: center;
45
47
  width: 20px;
46
48
  pointer-events: none;
47
- transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
49
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
48
50
  position: relative;
49
51
  overflow: hidden;
50
52
  box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
@@ -1 +1 @@
1
- {"target":2,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"738c21ca-805e-4eaa-818d-3b3ab25c27b6","resourceName":"omfx.admin.apis.registration","version":{"js":"8ff3832aa4b723d37ea44fc7524ed087"},"availableBundleTargetTypes":["js"],"api":["fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"0b3a0a86a2dfe967773e2c0f12338573"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
1
+ {"target":2,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"738c21ca-805e-4eaa-818d-3b3ab25c27b6","resourceName":"omfx.admin.apis.registration","version":{"js":"8ff3832aa4b723d37ea44fc7524ed087"},"availableBundleTargetTypes":["js"],"api":["fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"477e496516e7248bc6c6944742822836"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
@@ -1 +1 @@
1
- {"target":8,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"1ca62642-45d8-47fd-b6d8-818463a8b348","resourceName":"omnia.fx.docs.api","version":{"js":"ccc4e3cf5f5ab4316e0472c0f78e3b12"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.docs.registrations"]},{"manifestType":"resource","resourceId":"4b44029a-a988-4175-b503-be151c5ccc6e","resourceName":"omnia.fx.docs.components.registraions","version":{"js":"41952fcaecd36a39a39a651483adc542"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
1
+ {"target":8,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"1ca62642-45d8-47fd-b6d8-818463a8b348","resourceName":"omnia.fx.docs.api","version":{"js":"ccc4e3cf5f5ab4316e0472c0f78e3b12"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.docs.registrations"]},{"manifestType":"resource","resourceId":"4b44029a-a988-4175-b503-be151c5ccc6e","resourceName":"omnia.fx.docs.components.registraions","version":{"js":"5f28dc0448b79fac572e6ba6e167d999"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
@@ -1 +1 @@
1
- {"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-options-block-current","manifestType":"webcomponent","resourceId":"e57d5f3e-25e9-42a0-8ed9-7f69d608ab92","resourceName":"omfx.ux.options.block.current","version":{"js":"be51993c99baa4caf7e4db420450a2c5"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"9a04acc8-ffcb-437f-8903-a0fa41f65ab1"},{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"definition":{"icon":{"faClass":"fas fa-user-astronaut","iconType":"IFontAwesomeIcon"},"title":"Options Block Current","showInOmniaBlock":true}}]}
1
+ {"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-options-block-current","manifestType":"webcomponent","resourceId":"e57d5f3e-25e9-42a0-8ed9-7f69d608ab92","resourceName":"omfx.ux.options.block.current","version":{"js":"8fbf884f34c4338106954f5ab9e42129"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"9a04acc8-ffcb-437f-8903-a0fa41f65ab1"},{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"definition":{"icon":{"faClass":"fas fa-user-astronaut","iconType":"IFontAwesomeIcon"},"title":"Options Block Current","showInOmniaBlock":true}}]}