@omnia/runtime 8.0.30-vnext → 8.0.31-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.
@@ -50,3 +50,29 @@ img.ProseMirror-separator {
50
50
  margin: 0 !important;
51
51
  }
52
52
 
53
+ .ProseMirror-gapcursor {
54
+ display: none;
55
+ pointer-events: none;
56
+ position: absolute;
57
+ }
58
+
59
+ .ProseMirror-gapcursor:after {
60
+ content: "";
61
+ display: block;
62
+ position: absolute;
63
+ top: -2px;
64
+ width: 20px;
65
+ border-top: 1px solid black;
66
+ animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;
67
+ }
68
+
69
+ @keyframes ProseMirror-cursor-blink {
70
+ to {
71
+ visibility: hidden;
72
+ }
73
+ }
74
+
75
+ .ProseMirror-focused .ProseMirror-gapcursor {
76
+ display: block;
77
+ }
78
+
@@ -3163,117 +3163,6 @@ textarea.v-field__input::placeholder {
3163
3163
  }
3164
3164
 
3165
3165
  /* endregion */
3166
- .v-selection-control {
3167
- align-items: center;
3168
- contain: layout;
3169
- display: flex;
3170
- flex: 1 0;
3171
- grid-area: control;
3172
- position: relative;
3173
- user-select: none;
3174
- }
3175
- .v-selection-control .v-label {
3176
- white-space: normal;
3177
- word-break: break-word;
3178
- height: 100%;
3179
- width: 100%;
3180
- }
3181
- .v-selection-control--disabled {
3182
- opacity: var(--v-disabled-opacity);
3183
- pointer-events: none;
3184
- }
3185
- .v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
3186
- opacity: 1;
3187
- }
3188
- .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
3189
- color: rgb(var(--v-theme-error));
3190
- }
3191
- .v-selection-control--inline {
3192
- display: inline-flex;
3193
- flex: 0 0 auto;
3194
- min-width: 0;
3195
- max-width: 100%;
3196
- }
3197
- .v-selection-control--inline .v-label {
3198
- width: auto;
3199
- }
3200
- .v-selection-control--density-default {
3201
- --v-selection-control-size: 40px;
3202
- }
3203
-
3204
- .v-selection-control--density-comfortable {
3205
- --v-selection-control-size: 36px;
3206
- }
3207
-
3208
- .v-selection-control--density-compact {
3209
- --v-selection-control-size: 28px;
3210
- }
3211
-
3212
- .v-selection-control__wrapper {
3213
- width: var(--v-selection-control-size);
3214
- height: var(--v-selection-control-size);
3215
- display: inline-flex;
3216
- align-items: center;
3217
- position: relative;
3218
- justify-content: center;
3219
- flex: none;
3220
- }
3221
-
3222
- .v-selection-control__input {
3223
- width: var(--v-selection-control-size);
3224
- height: var(--v-selection-control-size);
3225
- align-items: center;
3226
- display: flex;
3227
- flex: none;
3228
- justify-content: center;
3229
- position: relative;
3230
- border-radius: 50%;
3231
- }
3232
- .v-selection-control__input input {
3233
- cursor: pointer;
3234
- position: absolute;
3235
- left: 0;
3236
- top: 0;
3237
- width: 100%;
3238
- height: 100%;
3239
- opacity: 0;
3240
- }
3241
- .v-selection-control__input::before {
3242
- content: "";
3243
- position: absolute;
3244
- top: 0;
3245
- left: 0;
3246
- width: 100%;
3247
- height: 100%;
3248
- border-radius: 100%;
3249
- background-color: currentColor;
3250
- opacity: 0;
3251
- pointer-events: none;
3252
- }
3253
- .v-selection-control__input:hover::before {
3254
- opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
3255
- }
3256
- .v-selection-control__input > .v-icon {
3257
- opacity: var(--v-medium-emphasis-opacity);
3258
- }
3259
- .v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
3260
- opacity: 1;
3261
- }
3262
- .v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
3263
- color: rgb(var(--v-theme-error));
3264
- }
3265
- .v-selection-control--focus-visible .v-selection-control__input::before {
3266
- opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
3267
- }
3268
- .v-selection-control-group {
3269
- grid-area: control;
3270
- display: flex;
3271
- flex-direction: column;
3272
- }
3273
- .v-selection-control-group--inline {
3274
- flex-direction: row;
3275
- flex-wrap: wrap;
3276
- }
3277
3166
  @keyframes v-shake {
3278
3167
  59% {
3279
3168
  margin-left: 0;
@@ -19021,3 +18910,114 @@ html.overflow-y-hidden {
19021
18910
  float: left !important;
19022
18911
  }
19023
18912
  }
18913
+ .v-selection-control {
18914
+ align-items: center;
18915
+ contain: layout;
18916
+ display: flex;
18917
+ flex: 1 0;
18918
+ grid-area: control;
18919
+ position: relative;
18920
+ user-select: none;
18921
+ }
18922
+ .v-selection-control .v-label {
18923
+ white-space: normal;
18924
+ word-break: break-word;
18925
+ height: 100%;
18926
+ width: 100%;
18927
+ }
18928
+ .v-selection-control--disabled {
18929
+ opacity: var(--v-disabled-opacity);
18930
+ pointer-events: none;
18931
+ }
18932
+ .v-selection-control--error .v-label, .v-selection-control--disabled .v-label {
18933
+ opacity: 1;
18934
+ }
18935
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-label {
18936
+ color: rgb(var(--v-theme-error));
18937
+ }
18938
+ .v-selection-control--inline {
18939
+ display: inline-flex;
18940
+ flex: 0 0 auto;
18941
+ min-width: 0;
18942
+ max-width: 100%;
18943
+ }
18944
+ .v-selection-control--inline .v-label {
18945
+ width: auto;
18946
+ }
18947
+ .v-selection-control--density-default {
18948
+ --v-selection-control-size: 40px;
18949
+ }
18950
+
18951
+ .v-selection-control--density-comfortable {
18952
+ --v-selection-control-size: 36px;
18953
+ }
18954
+
18955
+ .v-selection-control--density-compact {
18956
+ --v-selection-control-size: 28px;
18957
+ }
18958
+
18959
+ .v-selection-control__wrapper {
18960
+ width: var(--v-selection-control-size);
18961
+ height: var(--v-selection-control-size);
18962
+ display: inline-flex;
18963
+ align-items: center;
18964
+ position: relative;
18965
+ justify-content: center;
18966
+ flex: none;
18967
+ }
18968
+
18969
+ .v-selection-control__input {
18970
+ width: var(--v-selection-control-size);
18971
+ height: var(--v-selection-control-size);
18972
+ align-items: center;
18973
+ display: flex;
18974
+ flex: none;
18975
+ justify-content: center;
18976
+ position: relative;
18977
+ border-radius: 50%;
18978
+ }
18979
+ .v-selection-control__input input {
18980
+ cursor: pointer;
18981
+ position: absolute;
18982
+ left: 0;
18983
+ top: 0;
18984
+ width: 100%;
18985
+ height: 100%;
18986
+ opacity: 0;
18987
+ }
18988
+ .v-selection-control__input::before {
18989
+ content: "";
18990
+ position: absolute;
18991
+ top: 0;
18992
+ left: 0;
18993
+ width: 100%;
18994
+ height: 100%;
18995
+ border-radius: 100%;
18996
+ background-color: currentColor;
18997
+ opacity: 0;
18998
+ pointer-events: none;
18999
+ }
19000
+ .v-selection-control__input:hover::before {
19001
+ opacity: calc(var(--v-hover-opacity) * var(--v-theme-overlay-multiplier));
19002
+ }
19003
+ .v-selection-control__input > .v-icon {
19004
+ opacity: var(--v-medium-emphasis-opacity);
19005
+ }
19006
+ .v-selection-control--disabled .v-selection-control__input > .v-icon, .v-selection-control--dirty .v-selection-control__input > .v-icon, .v-selection-control--error .v-selection-control__input > .v-icon {
19007
+ opacity: 1;
19008
+ }
19009
+ .v-selection-control--error:not(.v-selection-control--disabled) .v-selection-control__input > .v-icon {
19010
+ color: rgb(var(--v-theme-error));
19011
+ }
19012
+ .v-selection-control--focus-visible .v-selection-control__input::before {
19013
+ opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
19014
+ }
19015
+ .v-selection-control-group {
19016
+ grid-area: control;
19017
+ display: flex;
19018
+ flex-direction: column;
19019
+ }
19020
+ .v-selection-control-group--inline {
19021
+ flex-direction: row;
19022
+ flex-wrap: wrap;
19023
+ }