@omnia/runtime 8.0.31-vnext → 8.0.32-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.
- package/dist/bundles/omnia.fx.ux.autocomplete_5d79340e-c1ce-4006-b88b-ad101d2e031e.css +24 -13
- package/dist/bundles/omnia.fx.ux.vuetify.chip_6c32c2f0-cce6-4c71-b376-9fb68d0d508e.css +9 -0
- package/dist/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +16 -10
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +24 -1
- package/dist/bundles/omnia.fx.ux.vuetify.datatable_188aee53-149a-4bc0-9039-59ffd918df2c.css +1 -0
- package/dist/bundles/omnia.fx.ux.vuetify.rating_98f2c51f-7725-4a0e-91f5-f2631149737c.css +0 -4
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +15 -9
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +292 -41
- package/dist/bundles/omnia.fx.ux.vuetify.slider_969bbd01-9190-41fe-8af8-60cf35045f84.css +5 -4
- package/dist/bundles/omnia.fx.ux.vuetify.switch_81d8f551-1b9f-4f75-90c3-2fe5f25e4015.css +3 -3
- package/dist/bundles/omnia.fx.ux.vuetify.textinput_181ff5d3-896f-4471-b516-3a347fe9e35d.css +9 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_editor_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -1
- package/package.json +5 -5
- /package/dist/localizations/{bb000000-0000-bbbb-0000-0000000000bb_localized.loc.en-us.json → bb000000-0000-bbbb-0000-0000000000bb_localized.loc.public.en-us.json} +0 -0
|
@@ -2292,10 +2292,8 @@
|
|
|
2292
2292
|
.v-img__gradient,
|
|
2293
2293
|
.v-img__placeholder,
|
|
2294
2294
|
.v-img__error {
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
top: 0;
|
|
2298
|
-
left: 0;
|
|
2295
|
+
grid-row-start: 1;
|
|
2296
|
+
grid-column-start: 1;
|
|
2299
2297
|
width: 100%;
|
|
2300
2298
|
height: 100%;
|
|
2301
2299
|
}
|
|
@@ -2314,28 +2312,37 @@
|
|
|
2314
2312
|
background-repeat: no-repeat;
|
|
2315
2313
|
}
|
|
2316
2314
|
.v-responsive {
|
|
2317
|
-
display:
|
|
2315
|
+
display: grid;
|
|
2316
|
+
grid-template-rows: minmax(100%, 1fr);
|
|
2317
|
+
grid-template-columns: 1fr;
|
|
2318
2318
|
flex: 1 0 auto;
|
|
2319
2319
|
max-height: 100%;
|
|
2320
2320
|
max-width: 100%;
|
|
2321
2321
|
overflow: hidden;
|
|
2322
2322
|
position: relative;
|
|
2323
2323
|
}
|
|
2324
|
+
.v-responsive--inline {
|
|
2325
|
+
display: inline-grid;
|
|
2326
|
+
flex: 0 0 auto;
|
|
2327
|
+
}
|
|
2324
2328
|
|
|
2325
2329
|
.v-responsive__content {
|
|
2326
2330
|
flex: 1 0 0px;
|
|
2327
2331
|
max-width: 100%;
|
|
2328
2332
|
}
|
|
2329
2333
|
|
|
2330
|
-
.v-responsive__sizer ~ .v-responsive__content {
|
|
2331
|
-
margin-inline-start: -100%;
|
|
2332
|
-
}
|
|
2333
|
-
|
|
2334
2334
|
.v-responsive__sizer {
|
|
2335
2335
|
flex: 1 0 0px;
|
|
2336
2336
|
transition: padding-bottom 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2337
2337
|
pointer-events: none;
|
|
2338
2338
|
}
|
|
2339
|
+
|
|
2340
|
+
.v-responsive__sizer,
|
|
2341
|
+
.v-responsive__content {
|
|
2342
|
+
position: relative;
|
|
2343
|
+
grid-row-start: 1;
|
|
2344
|
+
grid-column-start: 1;
|
|
2345
|
+
}
|
|
2339
2346
|
.v-item-group {
|
|
2340
2347
|
flex: 0 1 auto;
|
|
2341
2348
|
max-width: 100%;
|
|
@@ -2377,6 +2384,12 @@
|
|
|
2377
2384
|
.v-sheet--fixed {
|
|
2378
2385
|
position: fixed;
|
|
2379
2386
|
}
|
|
2387
|
+
.v-sheet--relative {
|
|
2388
|
+
position: relative;
|
|
2389
|
+
}
|
|
2390
|
+
.v-sheet--sticky {
|
|
2391
|
+
position: sticky;
|
|
2392
|
+
}
|
|
2380
2393
|
.v-sheet--rounded {
|
|
2381
2394
|
border-radius: 4px;
|
|
2382
2395
|
}
|
|
@@ -2490,24 +2503,24 @@ html.v-overlay-scroll-blocked {
|
|
|
2490
2503
|
flex: 1 1 auto;
|
|
2491
2504
|
font-size: 1rem;
|
|
2492
2505
|
font-weight: 400;
|
|
2493
|
-
line-height: 1.
|
|
2506
|
+
line-height: 1.625;
|
|
2494
2507
|
}
|
|
2495
2508
|
.v-input--disabled {
|
|
2496
2509
|
pointer-events: none;
|
|
2497
2510
|
}
|
|
2498
2511
|
.v-input--density-default {
|
|
2499
2512
|
--v-input-control-height: 56px;
|
|
2500
|
-
--v-input-padding-top:
|
|
2513
|
+
--v-input-padding-top: 15px;
|
|
2501
2514
|
}
|
|
2502
2515
|
|
|
2503
2516
|
.v-input--density-comfortable {
|
|
2504
2517
|
--v-input-control-height: 48px;
|
|
2505
|
-
--v-input-padding-top:
|
|
2518
|
+
--v-input-padding-top: 11px;
|
|
2506
2519
|
}
|
|
2507
2520
|
|
|
2508
2521
|
.v-input--density-compact {
|
|
2509
2522
|
--v-input-control-height: 40px;
|
|
2510
|
-
--v-input-padding-top:
|
|
2523
|
+
--v-input-padding-top: 7px;
|
|
2511
2524
|
}
|
|
2512
2525
|
|
|
2513
2526
|
.v-input--vertical {
|
|
@@ -2583,8 +2596,14 @@ html.v-overlay-scroll-blocked {
|
|
|
2583
2596
|
.v-input__prepend,
|
|
2584
2597
|
.v-input__append {
|
|
2585
2598
|
display: flex;
|
|
2599
|
+
align-items: flex-start;
|
|
2586
2600
|
padding-top: var(--v-input-padding-top);
|
|
2587
2601
|
}
|
|
2602
|
+
.v-input--center-affix .v-input__prepend,
|
|
2603
|
+
.v-input--center-affix .v-input__append {
|
|
2604
|
+
align-items: center;
|
|
2605
|
+
padding-top: 0;
|
|
2606
|
+
}
|
|
2588
2607
|
|
|
2589
2608
|
.v-input__prepend {
|
|
2590
2609
|
grid-area: prepend;
|
|
@@ -2747,7 +2766,9 @@ html.v-overlay-scroll-blocked {
|
|
|
2747
2766
|
--v-field-padding-start: 16px;
|
|
2748
2767
|
--v-field-padding-end: 16px;
|
|
2749
2768
|
--v-field-padding-top: 10px;
|
|
2750
|
-
--v-field-padding-bottom:
|
|
2769
|
+
--v-field-padding-bottom: 5px;
|
|
2770
|
+
--v-field-input-padding-top: calc(var(--v-field-padding-top, 10px) + var(--v-input-padding-top, 0));
|
|
2771
|
+
--v-field-input-padding-bottom: var(--v-field-padding-bottom, 5px);
|
|
2751
2772
|
}
|
|
2752
2773
|
.v-field--disabled {
|
|
2753
2774
|
opacity: var(--v-disabled-opacity);
|
|
@@ -2762,44 +2783,53 @@ html.v-overlay-scroll-blocked {
|
|
|
2762
2783
|
.v-field--appended {
|
|
2763
2784
|
padding-inline-end: 12px;
|
|
2764
2785
|
}
|
|
2765
|
-
.v-field--variant-solo {
|
|
2786
|
+
.v-field--variant-solo, .v-field--variant-solo-filled {
|
|
2787
|
+
background: rgb(var(--v-theme-surface));
|
|
2788
|
+
border-color: transparent;
|
|
2789
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2790
|
+
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
2791
|
+
}
|
|
2792
|
+
.v-field--variant-solo-inverted {
|
|
2766
2793
|
background: rgb(var(--v-theme-surface));
|
|
2767
2794
|
border-color: transparent;
|
|
2768
2795
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
2769
2796
|
box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
2770
2797
|
}
|
|
2798
|
+
.v-field--variant-solo-inverted.v-field--focused {
|
|
2799
|
+
color: rgb(var(--v-theme-on-surface-variant));
|
|
2800
|
+
}
|
|
2771
2801
|
.v-field--variant-filled {
|
|
2772
2802
|
border-bottom-left-radius: 0;
|
|
2773
2803
|
border-bottom-right-radius: 0;
|
|
2774
2804
|
}
|
|
2775
|
-
.v-input--density-default .v-field--variant-solo, .v-input--density-default .v-field--variant-filled {
|
|
2805
|
+
.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 {
|
|
2776
2806
|
--v-input-control-height: 56px;
|
|
2777
|
-
--v-field-padding-bottom:
|
|
2807
|
+
--v-field-padding-bottom: 5px;
|
|
2778
2808
|
}
|
|
2779
2809
|
|
|
2780
|
-
.v-input--density-comfortable .v-field--variant-solo, .v-input--density-comfortable .v-field--variant-filled {
|
|
2810
|
+
.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 {
|
|
2781
2811
|
--v-input-control-height: 48px;
|
|
2782
|
-
--v-field-padding-bottom:
|
|
2812
|
+
--v-field-padding-bottom: 1px;
|
|
2783
2813
|
}
|
|
2784
2814
|
|
|
2785
|
-
.v-input--density-compact .v-field--variant-solo, .v-input--density-compact .v-field--variant-filled {
|
|
2815
|
+
.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 {
|
|
2786
2816
|
--v-input-control-height: 40px;
|
|
2787
|
-
--v-field-padding-bottom:
|
|
2817
|
+
--v-field-padding-bottom: 0px;
|
|
2788
2818
|
}
|
|
2789
2819
|
|
|
2790
2820
|
.v-field--variant-outlined, .v-field--single-line, .v-field--no-label {
|
|
2791
2821
|
--v-field-padding-top: 0px;
|
|
2792
2822
|
}
|
|
2793
2823
|
.v-input--density-default .v-field--variant-outlined, .v-input--density-default .v-field--single-line, .v-input--density-default .v-field--no-label {
|
|
2794
|
-
--v-field-padding-bottom:
|
|
2824
|
+
--v-field-padding-bottom: 15px;
|
|
2795
2825
|
}
|
|
2796
2826
|
|
|
2797
2827
|
.v-input--density-comfortable .v-field--variant-outlined, .v-input--density-comfortable .v-field--single-line, .v-input--density-comfortable .v-field--no-label {
|
|
2798
|
-
--v-field-padding-bottom:
|
|
2828
|
+
--v-field-padding-bottom: 11px;
|
|
2799
2829
|
}
|
|
2800
2830
|
|
|
2801
2831
|
.v-input--density-compact .v-field--variant-outlined, .v-input--density-compact .v-field--single-line, .v-input--density-compact .v-field--no-label {
|
|
2802
|
-
--v-field-padding-bottom:
|
|
2832
|
+
--v-field-padding-bottom: 7px;
|
|
2803
2833
|
}
|
|
2804
2834
|
|
|
2805
2835
|
.v-field--variant-plain, .v-field--variant-underlined {
|
|
@@ -2809,21 +2839,29 @@ html.v-overlay-scroll-blocked {
|
|
|
2809
2839
|
.v-field--variant-plain.v-field, .v-field--variant-underlined.v-field {
|
|
2810
2840
|
--v-field-padding-start: 0px;
|
|
2811
2841
|
--v-field-padding-end: 0px;
|
|
2812
|
-
--v-field-padding-top: 6px;
|
|
2813
|
-
--v-field-padding-bottom: 2px;
|
|
2842
|
+
--v-field-padding-top: var(--v-field-padding-top--plain-underlined, 6px);
|
|
2814
2843
|
}
|
|
2815
2844
|
.v-input--density-default .v-field--variant-plain, .v-input--density-default .v-field--variant-underlined {
|
|
2816
2845
|
--v-input-control-height: 48px;
|
|
2846
|
+
--v-field-padding-bottom: 5px;
|
|
2817
2847
|
}
|
|
2818
2848
|
|
|
2819
2849
|
.v-input--density-comfortable .v-field--variant-plain, .v-input--density-comfortable .v-field--variant-underlined {
|
|
2820
2850
|
--v-input-control-height: 40px;
|
|
2851
|
+
--v-field-padding-bottom: 1px;
|
|
2821
2852
|
}
|
|
2822
2853
|
|
|
2823
2854
|
.v-input--density-compact .v-field--variant-plain, .v-input--density-compact .v-field--variant-underlined {
|
|
2824
2855
|
--v-input-control-height: 32px;
|
|
2856
|
+
--v-field-padding-bottom: 0px;
|
|
2825
2857
|
}
|
|
2826
2858
|
|
|
2859
|
+
.v-field--flat {
|
|
2860
|
+
box-shadow: none;
|
|
2861
|
+
}
|
|
2862
|
+
.v-field--rounded {
|
|
2863
|
+
border-radius: 9999px;
|
|
2864
|
+
}
|
|
2827
2865
|
.v-field.v-field--prepended {
|
|
2828
2866
|
--v-field-padding-start: 6px;
|
|
2829
2867
|
}
|
|
@@ -2839,12 +2877,13 @@ html.v-overlay-scroll-blocked {
|
|
|
2839
2877
|
flex-wrap: wrap;
|
|
2840
2878
|
letter-spacing: 0.009375em;
|
|
2841
2879
|
opacity: var(--v-high-emphasis-opacity);
|
|
2842
|
-
min-height: var(--v-input-
|
|
2880
|
+
min-height: var(--v-field-input-min-height);
|
|
2843
2881
|
padding-inline-start: var(--v-field-padding-start);
|
|
2844
2882
|
padding-inline-end: var(--v-field-padding-end);
|
|
2845
|
-
padding-top:
|
|
2846
|
-
padding-bottom: var(--v-field-padding-bottom
|
|
2883
|
+
padding-top: var(--v-field-input-padding-top);
|
|
2884
|
+
padding-bottom: var(--v-field-input-padding-bottom);
|
|
2847
2885
|
width: 100%;
|
|
2886
|
+
--v-field-input-min-height: max(var(--v-input-control-height, 56px), 1.625rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom));
|
|
2848
2887
|
}
|
|
2849
2888
|
.v-field__input input {
|
|
2850
2889
|
letter-spacing: inherit;
|
|
@@ -2887,13 +2926,30 @@ textarea.v-field__input::placeholder {
|
|
|
2887
2926
|
padding-inline-start: var(--v-field-padding-after);
|
|
2888
2927
|
}
|
|
2889
2928
|
|
|
2890
|
-
.v-field__prepend-inner,
|
|
2891
2929
|
.v-field__append-inner,
|
|
2892
|
-
.v-field__clearable
|
|
2893
|
-
|
|
2930
|
+
.v-field__clearable,
|
|
2931
|
+
.v-field__prepend-inner {
|
|
2894
2932
|
display: flex;
|
|
2933
|
+
align-items: flex-start;
|
|
2895
2934
|
padding-top: var(--v-input-padding-top, 10px);
|
|
2896
2935
|
}
|
|
2936
|
+
.v-field--center-affix .v-field__append-inner,
|
|
2937
|
+
.v-field--center-affix .v-field__clearable,
|
|
2938
|
+
.v-field--center-affix .v-field__prepend-inner {
|
|
2939
|
+
align-items: center;
|
|
2940
|
+
padding-top: 0;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
.v-field.v-field--variant-underlined .v-field__append-inner,
|
|
2944
|
+
.v-field.v-field--variant-underlined .v-field__clearable,
|
|
2945
|
+
.v-field.v-field--variant-underlined .v-field__prepend-inner,
|
|
2946
|
+
.v-field.v-field--variant-plain .v-field__append-inner,
|
|
2947
|
+
.v-field.v-field--variant-plain .v-field__clearable,
|
|
2948
|
+
.v-field.v-field--variant-plain .v-field__prepend-inner {
|
|
2949
|
+
align-items: flex-start;
|
|
2950
|
+
padding-top: calc(var(--v-field-padding-top, 10px) + var(--v-input-padding-top, 0));
|
|
2951
|
+
padding-bottom: var(--v-field-padding-bottom, 5px);
|
|
2952
|
+
}
|
|
2897
2953
|
|
|
2898
2954
|
.v-field--focused .v-field__prepend-inner,
|
|
2899
2955
|
.v-field--focused .v-field__append-inner {
|
|
@@ -2944,11 +3000,18 @@ textarea.v-field__input::placeholder {
|
|
|
2944
3000
|
max-width: calc(100% - var(--v-field-padding-start) - var(--v-field-padding-end));
|
|
2945
3001
|
pointer-events: none;
|
|
2946
3002
|
position: absolute;
|
|
2947
|
-
top: var(--v-input-padding-top
|
|
3003
|
+
top: var(--v-input-padding-top);
|
|
2948
3004
|
transform-origin: left center;
|
|
2949
3005
|
transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
2950
3006
|
transition-property: opacity, transform;
|
|
2951
3007
|
}
|
|
3008
|
+
.v-field--variant-underlined .v-label.v-field-label, .v-field--variant-plain .v-label.v-field-label {
|
|
3009
|
+
top: calc(var(--v-input-padding-top) + var(--v-field-padding-top));
|
|
3010
|
+
}
|
|
3011
|
+
.v-field--center-affix .v-label.v-field-label {
|
|
3012
|
+
top: 50%;
|
|
3013
|
+
transform: translateY(-50%);
|
|
3014
|
+
}
|
|
2952
3015
|
.v-field--active .v-label.v-field-label {
|
|
2953
3016
|
visibility: hidden;
|
|
2954
3017
|
}
|
|
@@ -2964,24 +3027,28 @@ textarea.v-field__input::placeholder {
|
|
|
2964
3027
|
visibility: hidden;
|
|
2965
3028
|
max-width: 100%;
|
|
2966
3029
|
}
|
|
3030
|
+
.v-field--center-affix .v-label.v-field-label--floating {
|
|
3031
|
+
transform: none;
|
|
3032
|
+
}
|
|
2967
3033
|
.v-field.v-field--active .v-label.v-field-label--floating {
|
|
2968
3034
|
visibility: visible;
|
|
2969
3035
|
}
|
|
2970
|
-
.v-input--density-default .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-default .v-field--variant-filled .v-label.v-field-label--floating {
|
|
3036
|
+
.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 {
|
|
2971
3037
|
top: 7px;
|
|
2972
3038
|
}
|
|
2973
3039
|
|
|
2974
|
-
.v-input--density-comfortable .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-filled .v-label.v-field-label--floating {
|
|
3040
|
+
.v-input--density-comfortable .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-solo-inverted .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-filled .v-label.v-field-label--floating, .v-input--density-comfortable .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
2975
3041
|
top: 5px;
|
|
2976
3042
|
}
|
|
2977
3043
|
|
|
2978
|
-
.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating {
|
|
3044
|
+
.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating, .v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
2979
3045
|
top: 3px;
|
|
2980
3046
|
}
|
|
2981
3047
|
|
|
2982
3048
|
.v-field--variant-plain .v-label.v-field-label--floating, .v-field--variant-underlined .v-label.v-field-label--floating {
|
|
2983
3049
|
transform: translateY(-16px);
|
|
2984
3050
|
margin: 0;
|
|
3051
|
+
top: var(--v-input-padding-top);
|
|
2985
3052
|
}
|
|
2986
3053
|
.v-field--variant-outlined .v-label.v-field-label--floating {
|
|
2987
3054
|
transform: translateY(-50%);
|
|
@@ -3071,7 +3138,6 @@ textarea.v-field__input::placeholder {
|
|
|
3071
3138
|
.v-field--variant-outlined .v-field__outline__notch {
|
|
3072
3139
|
flex: none;
|
|
3073
3140
|
position: relative;
|
|
3074
|
-
border-width: 0 0 var(--v-field-border-width);
|
|
3075
3141
|
}
|
|
3076
3142
|
.v-field--variant-outlined .v-field__outline__notch::before, .v-field--variant-outlined .v-field__outline__notch::after {
|
|
3077
3143
|
opacity: var(--v-field-border-opacity);
|
|
@@ -3119,18 +3185,21 @@ textarea.v-field__input::placeholder {
|
|
|
3119
3185
|
|
|
3120
3186
|
/* endregion */
|
|
3121
3187
|
/* region OVERLAY */
|
|
3122
|
-
.v-
|
|
3123
|
-
background-color: currentColor;
|
|
3188
|
+
.v-field__overlay {
|
|
3124
3189
|
border-radius: inherit;
|
|
3125
|
-
opacity: 0.04;
|
|
3126
3190
|
pointer-events: none;
|
|
3127
|
-
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3128
3191
|
position: absolute;
|
|
3129
3192
|
top: 0;
|
|
3130
3193
|
left: 0;
|
|
3131
3194
|
width: 100%;
|
|
3132
3195
|
height: 100%;
|
|
3133
3196
|
}
|
|
3197
|
+
|
|
3198
|
+
.v-field--variant-filled .v-field__overlay {
|
|
3199
|
+
background-color: currentColor;
|
|
3200
|
+
opacity: 0.04;
|
|
3201
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3202
|
+
}
|
|
3134
3203
|
.v-field--variant-filled.v-field--has-background .v-field__overlay {
|
|
3135
3204
|
opacity: 0;
|
|
3136
3205
|
}
|
|
@@ -3143,6 +3212,36 @@ textarea.v-field__input::placeholder {
|
|
|
3143
3212
|
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3144
3213
|
}
|
|
3145
3214
|
|
|
3215
|
+
.v-field--variant-solo-filled .v-field__overlay {
|
|
3216
|
+
background-color: currentColor;
|
|
3217
|
+
opacity: 0.04;
|
|
3218
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3219
|
+
}
|
|
3220
|
+
@media (hover: hover) {
|
|
3221
|
+
.v-field--variant-solo-filled:hover .v-field__overlay {
|
|
3222
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
.v-field--variant-solo-filled.v-field--focused .v-field__overlay {
|
|
3226
|
+
opacity: calc((0.04 + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
.v-field--variant-solo-inverted .v-field__overlay {
|
|
3230
|
+
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
3231
|
+
}
|
|
3232
|
+
.v-field--variant-solo-inverted.v-field--has-background .v-field__overlay {
|
|
3233
|
+
opacity: 0;
|
|
3234
|
+
}
|
|
3235
|
+
@media (hover: hover) {
|
|
3236
|
+
.v-field--variant-solo-inverted:hover .v-field__overlay {
|
|
3237
|
+
opacity: calc((0.04 + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
3238
|
+
}
|
|
3239
|
+
}
|
|
3240
|
+
.v-field--variant-solo-inverted.v-field--focused .v-field__overlay {
|
|
3241
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
3242
|
+
opacity: 1;
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3146
3245
|
/* endregion */
|
|
3147
3246
|
/* region MODIFIERS */
|
|
3148
3247
|
.v-field--reverse .v-field__input.v-locale--is-ltr, .v-locale--is-ltr .v-field--reverse .v-field__input {
|
|
@@ -6614,6 +6713,38 @@ html.overflow-y-hidden {
|
|
|
6614
6713
|
flex: 1 1 auto !important;
|
|
6615
6714
|
}
|
|
6616
6715
|
|
|
6716
|
+
.flex-1-1 {
|
|
6717
|
+
flex: 1 1 auto !important;
|
|
6718
|
+
}
|
|
6719
|
+
|
|
6720
|
+
.flex-1-0 {
|
|
6721
|
+
flex: 1 0 auto !important;
|
|
6722
|
+
}
|
|
6723
|
+
|
|
6724
|
+
.flex-0-1 {
|
|
6725
|
+
flex: 0 1 auto !important;
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
.flex-0-0 {
|
|
6729
|
+
flex: 0 0 auto !important;
|
|
6730
|
+
}
|
|
6731
|
+
|
|
6732
|
+
.flex-1-1-100 {
|
|
6733
|
+
flex: 1 1 100% !important;
|
|
6734
|
+
}
|
|
6735
|
+
|
|
6736
|
+
.flex-1-0-100 {
|
|
6737
|
+
flex: 1 0 100% !important;
|
|
6738
|
+
}
|
|
6739
|
+
|
|
6740
|
+
.flex-0-1-100 {
|
|
6741
|
+
flex: 0 1 100% !important;
|
|
6742
|
+
}
|
|
6743
|
+
|
|
6744
|
+
.flex-0-0-100 {
|
|
6745
|
+
flex: 0 0 100% !important;
|
|
6746
|
+
}
|
|
6747
|
+
|
|
6617
6748
|
.flex-row {
|
|
6618
6749
|
flex-direction: row !important;
|
|
6619
6750
|
}
|
|
@@ -9892,6 +10023,30 @@ html.overflow-y-hidden {
|
|
|
9892
10023
|
.flex-sm-fill {
|
|
9893
10024
|
flex: 1 1 auto !important;
|
|
9894
10025
|
}
|
|
10026
|
+
.flex-sm-1-1 {
|
|
10027
|
+
flex: 1 1 auto !important;
|
|
10028
|
+
}
|
|
10029
|
+
.flex-sm-1-0 {
|
|
10030
|
+
flex: 1 0 auto !important;
|
|
10031
|
+
}
|
|
10032
|
+
.flex-sm-0-1 {
|
|
10033
|
+
flex: 0 1 auto !important;
|
|
10034
|
+
}
|
|
10035
|
+
.flex-sm-0-0 {
|
|
10036
|
+
flex: 0 0 auto !important;
|
|
10037
|
+
}
|
|
10038
|
+
.flex-sm-1-1-100 {
|
|
10039
|
+
flex: 1 1 100% !important;
|
|
10040
|
+
}
|
|
10041
|
+
.flex-sm-1-0-100 {
|
|
10042
|
+
flex: 1 0 100% !important;
|
|
10043
|
+
}
|
|
10044
|
+
.flex-sm-0-1-100 {
|
|
10045
|
+
flex: 0 1 100% !important;
|
|
10046
|
+
}
|
|
10047
|
+
.flex-sm-0-0-100 {
|
|
10048
|
+
flex: 0 0 100% !important;
|
|
10049
|
+
}
|
|
9895
10050
|
.flex-sm-row {
|
|
9896
10051
|
flex-direction: row !important;
|
|
9897
10052
|
}
|
|
@@ -11696,6 +11851,30 @@ html.overflow-y-hidden {
|
|
|
11696
11851
|
.flex-md-fill {
|
|
11697
11852
|
flex: 1 1 auto !important;
|
|
11698
11853
|
}
|
|
11854
|
+
.flex-md-1-1 {
|
|
11855
|
+
flex: 1 1 auto !important;
|
|
11856
|
+
}
|
|
11857
|
+
.flex-md-1-0 {
|
|
11858
|
+
flex: 1 0 auto !important;
|
|
11859
|
+
}
|
|
11860
|
+
.flex-md-0-1 {
|
|
11861
|
+
flex: 0 1 auto !important;
|
|
11862
|
+
}
|
|
11863
|
+
.flex-md-0-0 {
|
|
11864
|
+
flex: 0 0 auto !important;
|
|
11865
|
+
}
|
|
11866
|
+
.flex-md-1-1-100 {
|
|
11867
|
+
flex: 1 1 100% !important;
|
|
11868
|
+
}
|
|
11869
|
+
.flex-md-1-0-100 {
|
|
11870
|
+
flex: 1 0 100% !important;
|
|
11871
|
+
}
|
|
11872
|
+
.flex-md-0-1-100 {
|
|
11873
|
+
flex: 0 1 100% !important;
|
|
11874
|
+
}
|
|
11875
|
+
.flex-md-0-0-100 {
|
|
11876
|
+
flex: 0 0 100% !important;
|
|
11877
|
+
}
|
|
11699
11878
|
.flex-md-row {
|
|
11700
11879
|
flex-direction: row !important;
|
|
11701
11880
|
}
|
|
@@ -13500,6 +13679,30 @@ html.overflow-y-hidden {
|
|
|
13500
13679
|
.flex-lg-fill {
|
|
13501
13680
|
flex: 1 1 auto !important;
|
|
13502
13681
|
}
|
|
13682
|
+
.flex-lg-1-1 {
|
|
13683
|
+
flex: 1 1 auto !important;
|
|
13684
|
+
}
|
|
13685
|
+
.flex-lg-1-0 {
|
|
13686
|
+
flex: 1 0 auto !important;
|
|
13687
|
+
}
|
|
13688
|
+
.flex-lg-0-1 {
|
|
13689
|
+
flex: 0 1 auto !important;
|
|
13690
|
+
}
|
|
13691
|
+
.flex-lg-0-0 {
|
|
13692
|
+
flex: 0 0 auto !important;
|
|
13693
|
+
}
|
|
13694
|
+
.flex-lg-1-1-100 {
|
|
13695
|
+
flex: 1 1 100% !important;
|
|
13696
|
+
}
|
|
13697
|
+
.flex-lg-1-0-100 {
|
|
13698
|
+
flex: 1 0 100% !important;
|
|
13699
|
+
}
|
|
13700
|
+
.flex-lg-0-1-100 {
|
|
13701
|
+
flex: 0 1 100% !important;
|
|
13702
|
+
}
|
|
13703
|
+
.flex-lg-0-0-100 {
|
|
13704
|
+
flex: 0 0 100% !important;
|
|
13705
|
+
}
|
|
13503
13706
|
.flex-lg-row {
|
|
13504
13707
|
flex-direction: row !important;
|
|
13505
13708
|
}
|
|
@@ -15304,6 +15507,30 @@ html.overflow-y-hidden {
|
|
|
15304
15507
|
.flex-xl-fill {
|
|
15305
15508
|
flex: 1 1 auto !important;
|
|
15306
15509
|
}
|
|
15510
|
+
.flex-xl-1-1 {
|
|
15511
|
+
flex: 1 1 auto !important;
|
|
15512
|
+
}
|
|
15513
|
+
.flex-xl-1-0 {
|
|
15514
|
+
flex: 1 0 auto !important;
|
|
15515
|
+
}
|
|
15516
|
+
.flex-xl-0-1 {
|
|
15517
|
+
flex: 0 1 auto !important;
|
|
15518
|
+
}
|
|
15519
|
+
.flex-xl-0-0 {
|
|
15520
|
+
flex: 0 0 auto !important;
|
|
15521
|
+
}
|
|
15522
|
+
.flex-xl-1-1-100 {
|
|
15523
|
+
flex: 1 1 100% !important;
|
|
15524
|
+
}
|
|
15525
|
+
.flex-xl-1-0-100 {
|
|
15526
|
+
flex: 1 0 100% !important;
|
|
15527
|
+
}
|
|
15528
|
+
.flex-xl-0-1-100 {
|
|
15529
|
+
flex: 0 1 100% !important;
|
|
15530
|
+
}
|
|
15531
|
+
.flex-xl-0-0-100 {
|
|
15532
|
+
flex: 0 0 100% !important;
|
|
15533
|
+
}
|
|
15307
15534
|
.flex-xl-row {
|
|
15308
15535
|
flex-direction: row !important;
|
|
15309
15536
|
}
|
|
@@ -17108,6 +17335,30 @@ html.overflow-y-hidden {
|
|
|
17108
17335
|
.flex-xxl-fill {
|
|
17109
17336
|
flex: 1 1 auto !important;
|
|
17110
17337
|
}
|
|
17338
|
+
.flex-xxl-1-1 {
|
|
17339
|
+
flex: 1 1 auto !important;
|
|
17340
|
+
}
|
|
17341
|
+
.flex-xxl-1-0 {
|
|
17342
|
+
flex: 1 0 auto !important;
|
|
17343
|
+
}
|
|
17344
|
+
.flex-xxl-0-1 {
|
|
17345
|
+
flex: 0 1 auto !important;
|
|
17346
|
+
}
|
|
17347
|
+
.flex-xxl-0-0 {
|
|
17348
|
+
flex: 0 0 auto !important;
|
|
17349
|
+
}
|
|
17350
|
+
.flex-xxl-1-1-100 {
|
|
17351
|
+
flex: 1 1 100% !important;
|
|
17352
|
+
}
|
|
17353
|
+
.flex-xxl-1-0-100 {
|
|
17354
|
+
flex: 1 0 100% !important;
|
|
17355
|
+
}
|
|
17356
|
+
.flex-xxl-0-1-100 {
|
|
17357
|
+
flex: 0 1 100% !important;
|
|
17358
|
+
}
|
|
17359
|
+
.flex-xxl-0-0-100 {
|
|
17360
|
+
flex: 0 0 100% !important;
|
|
17361
|
+
}
|
|
17111
17362
|
.flex-xxl-row {
|
|
17112
17363
|
flex-direction: row !important;
|
|
17113
17364
|
}
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
width: 100%;
|
|
5
5
|
display: none;
|
|
6
6
|
}
|
|
7
|
-
.v-slider .v-input__append,
|
|
7
|
+
.v-slider > .v-input__append,
|
|
8
|
+
.v-slider > .v-input__prepend {
|
|
8
9
|
padding: 0;
|
|
9
10
|
}
|
|
10
11
|
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
margin-inline-start: 8px;
|
|
31
32
|
margin-inline-end: 8px;
|
|
32
33
|
}
|
|
33
|
-
.v-slider.v-input--horizontal .v-input__control {
|
|
34
|
+
.v-slider.v-input--horizontal > .v-input__control {
|
|
34
35
|
min-height: 32px;
|
|
35
36
|
display: flex;
|
|
36
37
|
align-items: center;
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
margin-top: 12px;
|
|
42
43
|
margin-bottom: 12px;
|
|
43
44
|
}
|
|
44
|
-
.v-slider.v-input--vertical .v-input__control {
|
|
45
|
+
.v-slider.v-input--vertical > .v-input__control {
|
|
45
46
|
min-height: 300px;
|
|
46
47
|
}
|
|
47
48
|
|
|
@@ -49,7 +50,7 @@
|
|
|
49
50
|
pointer-events: none;
|
|
50
51
|
}
|
|
51
52
|
|
|
52
|
-
.v-slider--has-labels .v-input__control {
|
|
53
|
+
.v-slider--has-labels > .v-input__control {
|
|
53
54
|
margin-bottom: 4px;
|
|
54
55
|
}
|
|
55
56
|
|
|
@@ -59,9 +59,6 @@
|
|
|
59
59
|
.v-switch .v-selection-control {
|
|
60
60
|
min-height: var(--v-input-control-height);
|
|
61
61
|
}
|
|
62
|
-
.v-switch .v-selection-control__wrapper {
|
|
63
|
-
width: auto;
|
|
64
|
-
}
|
|
65
62
|
.v-switch .v-selection-control__input {
|
|
66
63
|
border-radius: 50%;
|
|
67
64
|
transition: 0.15s transform cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -78,4 +75,7 @@
|
|
|
78
75
|
transform: scale(0.75);
|
|
79
76
|
box-shadow: none;
|
|
80
77
|
}
|
|
78
|
+
.v-switch.v-switch--inset .v-selection-control__wrapper {
|
|
79
|
+
width: auto;
|
|
80
|
+
}
|
|
81
81
|
|
|
@@ -63,9 +63,17 @@
|
|
|
63
63
|
|
|
64
64
|
/* endregion */
|
|
65
65
|
/* region MODIFIERS */
|
|
66
|
-
.v-text-field--
|
|
66
|
+
.v-text-field--plain-underlined {
|
|
67
|
+
--v-field-padding-top--plain-underlined: 6px;
|
|
68
|
+
}
|
|
69
|
+
.v-text-field--plain-underlined .v-input__details {
|
|
67
70
|
padding: 0;
|
|
68
71
|
}
|
|
72
|
+
.v-text-field--plain-underlined .v-input__prepend,
|
|
73
|
+
.v-text-field--plain-underlined .v-input__append {
|
|
74
|
+
align-items: flex-start;
|
|
75
|
+
padding-top: calc(var(--v-field-padding-top--plain-underlined) + var(--v-input-padding-top));
|
|
76
|
+
}
|
|
69
77
|
|
|
70
78
|
/* endregion */
|
|
71
79
|
|
|
@@ -0,0 +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":"fd4a249eab6f8746ae849e467c20be04"},"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":"533c0e1b269953281495e3acd2da985b"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
|
|
@@ -0,0 +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":"00dcd8e08bac9544384782b50632f12d"},"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":"ba68dc993be34192b364ae18262fe467"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"target":
|
|
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":"0c986021a76e27d74eb7778e319d1d81"},"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}}]}
|