@omnia/runtime 8.0.44-vnext → 8.0.45-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 +12 -4
- package/dist/bundles/omnia.fx.ux.vuetify.breadcrumbs_e485693c-04ad-4085-a38a-1dd720269ed4.css +4 -0
- package/dist/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +12 -4
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +4 -3
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +1 -1
- package/dist/bundles/omnia.fx.ux.vuetify.textinput_181ff5d3-896f-4471-b516-3a347fe9e35d.css +2 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -1
- 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
|
@@ -7,13 +7,16 @@
|
|
|
7
7
|
align-self: flex-start;
|
|
8
8
|
flex: 1 1;
|
|
9
9
|
}
|
|
10
|
+
.v-autocomplete .v-field input {
|
|
11
|
+
min-width: 64px;
|
|
12
|
+
}
|
|
10
13
|
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
11
14
|
min-width: 0;
|
|
12
15
|
}
|
|
13
16
|
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
14
17
|
margin-inline-end: 2px;
|
|
15
18
|
}
|
|
16
|
-
.v-autocomplete .v-
|
|
19
|
+
.v-autocomplete .v-autocomplete__selection-text {
|
|
17
20
|
overflow: hidden;
|
|
18
21
|
text-overflow: ellipsis;
|
|
19
22
|
white-space: nowrap;
|
|
@@ -29,15 +32,16 @@
|
|
|
29
32
|
}
|
|
30
33
|
.v-autocomplete__selection {
|
|
31
34
|
display: inline-flex;
|
|
35
|
+
align-items: center;
|
|
32
36
|
letter-spacing: inherit;
|
|
33
37
|
line-height: inherit;
|
|
34
|
-
max-width:
|
|
38
|
+
max-width: 90%;
|
|
35
39
|
}
|
|
36
|
-
.v-
|
|
40
|
+
.v-autocomplete__selection {
|
|
37
41
|
margin-top: var(--v-input-chips-margin-top);
|
|
38
42
|
margin-bottom: var(--v-input-chips-margin-bottom);
|
|
39
43
|
}
|
|
40
|
-
.v-
|
|
44
|
+
.v-autocomplete__selection:first-child {
|
|
41
45
|
margin-inline-start: 0;
|
|
42
46
|
}
|
|
43
47
|
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
@@ -58,6 +62,10 @@
|
|
|
58
62
|
padding-inline-start: inherit;
|
|
59
63
|
padding-inline-end: inherit;
|
|
60
64
|
}
|
|
65
|
+
.v-autocomplete--single .v-field--variant-outlined input {
|
|
66
|
+
top: calc(50% - var(--v-input-chips-margin-top));
|
|
67
|
+
transform: translateY(-50%);
|
|
68
|
+
}
|
|
61
69
|
.v-autocomplete--single .v-field--active input {
|
|
62
70
|
transition: none;
|
|
63
71
|
}
|
|
@@ -7,13 +7,16 @@
|
|
|
7
7
|
align-self: flex-start;
|
|
8
8
|
flex: 1 1;
|
|
9
9
|
}
|
|
10
|
+
.v-combobox .v-field input {
|
|
11
|
+
min-width: 64px;
|
|
12
|
+
}
|
|
10
13
|
.v-combobox .v-field:not(.v-field--focused) input {
|
|
11
14
|
min-width: 0;
|
|
12
15
|
}
|
|
13
16
|
.v-combobox .v-field--dirty .v-combobox__selection {
|
|
14
17
|
margin-inline-end: 2px;
|
|
15
18
|
}
|
|
16
|
-
.v-combobox .v-
|
|
19
|
+
.v-combobox .v-combobox__selection-text {
|
|
17
20
|
overflow: hidden;
|
|
18
21
|
text-overflow: ellipsis;
|
|
19
22
|
white-space: nowrap;
|
|
@@ -29,15 +32,16 @@
|
|
|
29
32
|
}
|
|
30
33
|
.v-combobox__selection {
|
|
31
34
|
display: inline-flex;
|
|
35
|
+
align-items: center;
|
|
32
36
|
letter-spacing: inherit;
|
|
33
37
|
line-height: inherit;
|
|
34
|
-
max-width:
|
|
38
|
+
max-width: 90%;
|
|
35
39
|
}
|
|
36
|
-
.v-
|
|
40
|
+
.v-combobox__selection {
|
|
37
41
|
margin-top: var(--v-input-chips-margin-top);
|
|
38
42
|
margin-bottom: var(--v-input-chips-margin-bottom);
|
|
39
43
|
}
|
|
40
|
-
.v-
|
|
44
|
+
.v-combobox__selection:first-child {
|
|
41
45
|
margin-inline-start: 0;
|
|
42
46
|
}
|
|
43
47
|
.v-combobox--selecting-index .v-combobox__selection {
|
|
@@ -58,6 +62,10 @@
|
|
|
58
62
|
padding-inline-start: inherit;
|
|
59
63
|
padding-inline-end: inherit;
|
|
60
64
|
}
|
|
65
|
+
.v-combobox--single .v-field--variant-outlined input {
|
|
66
|
+
top: calc(50% - var(--v-input-chips-margin-top));
|
|
67
|
+
transform: translateY(-50%);
|
|
68
|
+
}
|
|
61
69
|
.v-combobox--single .v-field--active input {
|
|
62
70
|
transition: none;
|
|
63
71
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
.v-select .v-field--dirty .v-select__selection {
|
|
16
16
|
margin-inline-end: 2px;
|
|
17
17
|
}
|
|
18
|
-
.v-select .v-
|
|
18
|
+
.v-select .v-select__selection-text {
|
|
19
19
|
overflow: hidden;
|
|
20
20
|
text-overflow: ellipsis;
|
|
21
21
|
white-space: nowrap;
|
|
@@ -27,15 +27,16 @@
|
|
|
27
27
|
}
|
|
28
28
|
.v-select__selection {
|
|
29
29
|
display: inline-flex;
|
|
30
|
+
align-items: center;
|
|
30
31
|
letter-spacing: inherit;
|
|
31
32
|
line-height: inherit;
|
|
32
33
|
max-width: 100%;
|
|
33
34
|
}
|
|
34
|
-
.v-select
|
|
35
|
+
.v-select .v-select__selection {
|
|
35
36
|
margin-top: var(--v-input-chips-margin-top);
|
|
36
37
|
margin-bottom: var(--v-input-chips-margin-bottom);
|
|
37
38
|
}
|
|
38
|
-
.v-select
|
|
39
|
+
.v-select .v-select__selection:first-child {
|
|
39
40
|
margin-inline-start: 0;
|
|
40
41
|
}
|
|
41
42
|
.v-select--selected .v-field .v-field__input > input {
|
|
@@ -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":"
|
|
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":"47b61dc64fd800e9601dcf03dd85bcc8"},"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":"
|
|
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":"e9cc780a190137022ec57dcc82e38e3e"},"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":"
|
|
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":"7c22bb9cb8950facce7b659bb496efef"},"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}}]}
|