@omnia/runtime 8.0.60-vnext → 8.0.61-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.
@@ -63,8 +63,8 @@
63
63
  padding-inline-end: inherit;
64
64
  }
65
65
  .v-autocomplete--single .v-field--variant-outlined input {
66
- top: calc(50% - var(--v-input-chips-margin-top));
67
- transform: translateY(-50%);
66
+ top: 50%;
67
+ transform: translateY(calc(-50% - (var(--v-input-chips-margin-top) + var(--v-input-chips-margin-bottom)) / 2));
68
68
  }
69
69
  .v-autocomplete--single .v-field--active input {
70
70
  transition: none;
@@ -63,8 +63,8 @@
63
63
  padding-inline-end: inherit;
64
64
  }
65
65
  .v-combobox--single .v-field--variant-outlined input {
66
- top: calc(50% - var(--v-input-chips-margin-top));
67
- transform: translateY(-50%);
66
+ top: 50%;
67
+ transform: translateY(calc(-50% - (var(--v-input-chips-margin-top) + var(--v-input-chips-margin-bottom)) / 2));
68
68
  }
69
69
  .v-combobox--single .v-field--active input {
70
70
  transition: none;
@@ -634,6 +634,9 @@
634
634
  .v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
635
635
  opacity: 0;
636
636
  }
637
+ .v-list-group__header.v-list-item--active:hover .v-list-item__overlay {
638
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
639
+ }
637
640
 
638
641
  .v-menu > .v-overlay__content {
639
642
  display: flex;
@@ -11,6 +11,7 @@
11
11
  width: 100%;
12
12
  transition: none;
13
13
  pointer-events: none;
14
+ caret-color: transparent;
14
15
  }
15
16
  .v-select .v-field--dirty .v-select__selection {
16
17
  margin-inline-end: 2px;
@@ -1333,6 +1333,7 @@
1333
1333
  line-height: 1;
1334
1334
  position: relative;
1335
1335
  text-indent: 0;
1336
+ text-align: center;
1336
1337
  user-select: none;
1337
1338
  vertical-align: middle;
1338
1339
  width: 1em;
@@ -2292,8 +2293,10 @@
2292
2293
  .v-img__gradient,
2293
2294
  .v-img__placeholder,
2294
2295
  .v-img__error {
2295
- grid-row-start: 1;
2296
- grid-column-start: 1;
2296
+ z-index: -1;
2297
+ position: absolute;
2298
+ top: 0;
2299
+ left: 0;
2297
2300
  width: 100%;
2298
2301
  height: 100%;
2299
2302
  }
@@ -2312,9 +2315,7 @@
2312
2315
  background-repeat: no-repeat;
2313
2316
  }
2314
2317
  .v-responsive {
2315
- display: grid;
2316
- grid-template-rows: minmax(100%, 1fr);
2317
- grid-template-columns: 1fr;
2318
+ display: flex;
2318
2319
  flex: 1 0 auto;
2319
2320
  max-height: 100%;
2320
2321
  max-width: 100%;
@@ -2322,7 +2323,7 @@
2322
2323
  position: relative;
2323
2324
  }
2324
2325
  .v-responsive--inline {
2325
- display: inline-grid;
2326
+ display: inline-flex;
2326
2327
  flex: 0 0 auto;
2327
2328
  }
2328
2329
 
@@ -2331,18 +2332,15 @@
2331
2332
  max-width: 100%;
2332
2333
  }
2333
2334
 
2335
+ .v-responsive__sizer ~ .v-responsive__content {
2336
+ margin-inline-start: -100%;
2337
+ }
2338
+
2334
2339
  .v-responsive__sizer {
2335
2340
  flex: 1 0 0px;
2336
2341
  transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
2337
2342
  pointer-events: none;
2338
2343
  }
2339
-
2340
- .v-responsive__sizer,
2341
- .v-responsive__content {
2342
- position: relative;
2343
- grid-row-start: 1;
2344
- grid-column-start: 1;
2345
- }
2346
2344
  .v-item-group {
2347
2345
  flex: 0 1 auto;
2348
2346
  max-width: 100%;
@@ -2447,6 +2445,8 @@
2447
2445
 
2448
2446
  .v-overlay-scroll-blocked {
2449
2447
  padding-inline-end: var(--v-scrollbar-offset);
2448
+ }
2449
+ .v-overlay-scroll-blocked:not(html) {
2450
2450
  overflow-y: hidden !important;
2451
2451
  }
2452
2452
  html.v-overlay-scroll-blocked {
@@ -2751,17 +2751,21 @@ html.v-overlay-scroll-blocked {
2751
2751
  overflow-y: auto;
2752
2752
  }
2753
2753
 
2754
- .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
2755
- border-bottom: 0px !important;
2754
+ .v-table--fixed-header > .v-table__wrapper > table > thead {
2756
2755
  position: sticky;
2757
2756
  top: 0;
2758
2757
  }
2758
+ .v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
2759
+ border-bottom: 0px !important;
2760
+ }
2759
2761
 
2762
+ .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr {
2763
+ position: sticky;
2764
+ bottom: 0;
2765
+ }
2760
2766
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
2761
2767
  .v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
2762
2768
  border-top: 0px !important;
2763
- position: sticky;
2764
- bottom: 0;
2765
2769
  }
2766
2770
  /* region INPUT */
2767
2771
  .v-field {
@@ -2816,47 +2820,17 @@ html.v-overlay-scroll-blocked {
2816
2820
  border-bottom-right-radius: 0;
2817
2821
  }
2818
2822
  .v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-solo-inverted, .v-input--density-default .v-field--variant-solo-filled, .v-input--density-default .v-field--variant-filled {
2819
- --v-input-control-height: 54px;
2820
- --v-field-padding-bottom: 5px;
2821
- }
2822
-
2823
- .v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-solo-inverted, .v-input--density-default .v-field--variant-solo-filled, .v-input--density-default .v-field--variant-filled {
2824
- --v-input-control-height: 52px;
2825
- --v-field-padding-bottom: 5px;
2826
- }
2827
-
2828
- .v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-solo-inverted, .v-input--density-default .v-field--variant-solo-filled, .v-input--density-default .v-field--variant-filled {
2829
- --v-input-control-height: 50px;
2823
+ --v-input-control-height: 56px;
2830
2824
  --v-field-padding-bottom: 5px;
2831
2825
  }
2832
2826
 
2833
2827
  .v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-solo-inverted, .v-input--density-comfortable .v-field--variant-solo-filled, .v-input--density-comfortable .v-field--variant-filled {
2834
- --v-input-control-height: 46px;
2835
- --v-field-padding-bottom: 1px;
2836
- }
2837
-
2838
- .v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-solo-inverted, .v-input--density-comfortable .v-field--variant-solo-filled, .v-input--density-comfortable .v-field--variant-filled {
2839
- --v-input-control-height: 44px;
2840
- --v-field-padding-bottom: 1px;
2841
- }
2842
-
2843
- .v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-solo-inverted, .v-input--density-comfortable .v-field--variant-solo-filled, .v-input--density-comfortable .v-field--variant-filled {
2844
- --v-input-control-height: 42px;
2828
+ --v-input-control-height: 48px;
2845
2829
  --v-field-padding-bottom: 1px;
2846
2830
  }
2847
2831
 
2848
2832
  .v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-solo-inverted, .v-input--density-compact .v-field--variant-solo-filled, .v-input--density-compact .v-field--variant-filled {
2849
- --v-input-control-height: 38px;
2850
- --v-field-padding-bottom: 0px;
2851
- }
2852
-
2853
- .v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-solo-inverted, .v-input--density-compact .v-field--variant-solo-filled, .v-input--density-compact .v-field--variant-filled {
2854
- --v-input-control-height: 36px;
2855
- --v-field-padding-bottom: 0px;
2856
- }
2857
-
2858
- .v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-solo-inverted, .v-input--density-compact .v-field--variant-solo-filled, .v-input--density-compact .v-field--variant-filled {
2859
- --v-input-control-height: 34px;
2833
+ --v-input-control-height: 40px;
2860
2834
  --v-field-padding-bottom: 0px;
2861
2835
  }
2862
2836
 
@@ -2885,53 +2859,20 @@ html.v-overlay-scroll-blocked {
2885
2859
  --v-field-padding-top: var(--v-field-padding-top--plain-underlined, 6px);
2886
2860
  }
2887
2861
  .v-input--density-default .v-field--variant-plain, .v-input--density-default .v-field--variant-underlined {
2888
- --v-input-control-height: 46px;
2889
- --v-field-padding-bottom: 5px;
2890
- }
2891
-
2892
- .v-input--density-default .v-field--variant-plain, .v-input--density-default .v-field--variant-underlined {
2893
- --v-input-control-height: 44px;
2894
- --v-field-padding-bottom: 5px;
2895
- }
2896
-
2897
- .v-input--density-default .v-field--variant-plain, .v-input--density-default .v-field--variant-underlined {
2898
- --v-input-control-height: 42px;
2862
+ --v-input-control-height: 48px;
2899
2863
  --v-field-padding-bottom: 5px;
2900
2864
  }
2901
2865
 
2902
2866
  .v-input--density-comfortable .v-field--variant-plain, .v-input--density-comfortable .v-field--variant-underlined {
2903
- --v-input-control-height: 38px;
2904
- --v-field-padding-bottom: 1px;
2905
- }
2906
-
2907
- .v-input--density-comfortable .v-field--variant-plain, .v-input--density-comfortable .v-field--variant-underlined {
2908
- --v-input-control-height: 36px;
2909
- --v-field-padding-bottom: 1px;
2910
- }
2911
-
2912
- .v-input--density-comfortable .v-field--variant-plain, .v-input--density-comfortable .v-field--variant-underlined {
2913
- --v-input-control-height: 34px;
2867
+ --v-input-control-height: 40px;
2914
2868
  --v-field-padding-bottom: 1px;
2915
2869
  }
2916
2870
 
2917
2871
  .v-input--density-compact .v-field--variant-plain, .v-input--density-compact .v-field--variant-underlined {
2918
- --v-input-control-height: 30px;
2919
- --v-field-padding-bottom: 0px;
2920
- }
2921
-
2922
- .v-input--density-compact .v-field--variant-plain, .v-input--density-compact .v-field--variant-underlined {
2923
- --v-input-control-height: 28px;
2924
- --v-field-padding-bottom: 0px;
2925
- }
2926
-
2927
- .v-input--density-compact .v-field--variant-plain, .v-input--density-compact .v-field--variant-underlined {
2928
- --v-input-control-height: 26px;
2872
+ --v-input-control-height: 32px;
2929
2873
  --v-field-padding-bottom: 0px;
2930
2874
  }
2931
2875
 
2932
- .v-field--variant-outlined {
2933
- --v-input-chips-margin-bottom: 2px;
2934
- }
2935
2876
  .v-field--flat {
2936
2877
  box-shadow: none;
2937
2878
  }
@@ -2953,14 +2894,14 @@ html.v-overlay-scroll-blocked {
2953
2894
  flex-wrap: wrap;
2954
2895
  letter-spacing: 0.009375em;
2955
2896
  opacity: var(--v-high-emphasis-opacity);
2956
- min-height: calc(var(--v-field-input-min-height) + var(--v-input-chips-margin-bottom) + 2px);
2897
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom) + var(--v-input-chips-margin-bottom) + 2px);
2898
+ min-width: 0;
2957
2899
  padding-inline-start: var(--v-field-padding-start);
2958
2900
  padding-inline-end: var(--v-field-padding-end);
2959
2901
  padding-top: var(--v-field-input-padding-top);
2960
2902
  padding-bottom: var(--v-field-input-padding-bottom);
2961
2903
  position: relative;
2962
2904
  width: 100%;
2963
- --v-field-input-min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
2964
2905
  }
2965
2906
  .v-field__input input {
2966
2907
  letter-spacing: inherit;
@@ -3207,10 +3148,16 @@ textarea.v-field__input::placeholder {
3207
3148
  border-inline-start-width: var(--v-field-border-width);
3208
3149
  }
3209
3150
  .v-field--variant-outlined .v-field__outline__start.v-locale--is-ltr, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start {
3210
- border-radius: 4px 0 0 4px;
3151
+ border-top-left-radius: inherit;
3152
+ border-top-right-radius: 0;
3153
+ border-bottom-right-radius: 0;
3154
+ border-bottom-left-radius: inherit;
3211
3155
  }
3212
3156
  .v-field--variant-outlined .v-field__outline__start.v-locale--is-rtl, .v-locale--is-rtl .v-field--variant-outlined .v-field__outline__start {
3213
- border-radius: 0 4px 4px 0;
3157
+ border-top-left-radius: 0;
3158
+ border-top-right-radius: inherit;
3159
+ border-bottom-right-radius: inherit;
3160
+ border-bottom-left-radius: 0;
3214
3161
  }
3215
3162
  .v-field--variant-outlined .v-field__outline__notch {
3216
3163
  flex: none;
@@ -3244,10 +3191,16 @@ textarea.v-field__input::placeholder {
3244
3191
  border-inline-end-width: var(--v-field-border-width);
3245
3192
  }
3246
3193
  .v-field--variant-outlined .v-field__outline__end.v-locale--is-ltr, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__end {
3247
- border-radius: 0 4px 4px 0;
3194
+ border-top-left-radius: 0;
3195
+ border-top-right-radius: inherit;
3196
+ border-bottom-right-radius: inherit;
3197
+ border-bottom-left-radius: 0;
3248
3198
  }
3249
3199
  .v-field--variant-outlined .v-field__outline__end.v-locale--is-rtl, .v-locale--is-rtl .v-field--variant-outlined .v-field__outline__end {
3250
- border-radius: 4px 0 0 4px;
3200
+ border-top-left-radius: inherit;
3201
+ border-top-right-radius: 0;
3202
+ border-bottom-right-radius: 0;
3203
+ border-bottom-left-radius: inherit;
3251
3204
  }
3252
3205
 
3253
3206
  /* endregion */
@@ -19,9 +19,6 @@
19
19
  min-height: 0 !important;
20
20
  pointer-events: none;
21
21
  }
22
- .v-textarea--auto-grow .v-field__input {
23
- overflow: hidden;
24
- }
25
22
  .v-textarea--no-resize .v-field__input {
26
23
  resize: none;
27
24
  }
@@ -47,9 +47,14 @@
47
47
  opacity: 0;
48
48
  transition: inherit;
49
49
  white-space: nowrap;
50
+ min-height: max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom) + var(--v-input-chips-margin-bottom) + 2px);
50
51
  padding-top: calc(var(--v-field-padding-top, 4px) + var(--v-input-padding-top, 0));
51
52
  padding-bottom: var(--v-field-padding-bottom, 6px);
52
53
  }
54
+ .v-text-field__prefix__text, .v-text-field__suffix__text {
55
+ margin-top: var(--v-input-chips-margin-top);
56
+ margin-bottom: var(--v-input-chips-margin-bottom);
57
+ }
53
58
  .v-field--active .v-text-field__prefix, .v-field--active .v-text-field__suffix {
54
59
  opacity: 1;
55
60
  }
@@ -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":"8084b9b42577a42c5c4fee17ce945f8b"},"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":"8f903694eac8e5560584a461ff933cc8"},"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":"55e5893d2f5f0e30173e6a5cc6936d36"},"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":"254bdaf9b3d0df6f2f8c0a3cdcb638eb"},"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":"5c946698422fa5c0c1b0736ad447d2e2"},"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":"596768feb052a4b9075e2abf428672ab"},"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":"710bb8a5edcbd2bd6a88e6fb21b26ed8"},"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":"4c2594763ecc65f6703f617c5b1b2ebc"},"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":"fe03806926aa4ac3b2c0115c4ccabdc1"},"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":"905631065817e1eb9e0d77d74660432b"},"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}}]}