@vendure/admin-ui 3.2.0 → 3.2.2
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/LICENSE.md +42 -42
- package/core/common/version.d.ts +1 -1
- package/fesm2022/vendure-admin-ui-catalog.mjs +257 -257
- package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-core.mjs +4140 -4140
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-customer.mjs +119 -119
- package/fesm2022/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-dashboard.mjs +58 -58
- package/fesm2022/vendure-admin-ui-dashboard.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-login.mjs +2 -2
- package/fesm2022/vendure-admin-ui-login.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-marketing.mjs +35 -35
- package/fesm2022/vendure-admin-ui-marketing.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-order.mjs +186 -186
- package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-react.mjs +8 -8
- package/fesm2022/vendure-admin-ui-react.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-settings.mjs +441 -441
- package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-system.mjs +6 -6
- package/fesm2022/vendure-admin-ui-system.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui.mjs.map +1 -1
- package/package.json +13 -9
- package/static/fonts/fonts.scss +253 -253
- package/static/i18n-messages/ar.json +813 -813
- package/static/i18n-messages/cs.json +813 -813
- package/static/i18n-messages/de.json +813 -813
- package/static/i18n-messages/en.json +817 -817
- package/static/i18n-messages/es.json +813 -813
- package/static/i18n-messages/fa.json +813 -813
- package/static/i18n-messages/fr.json +813 -813
- package/static/i18n-messages/he.json +813 -813
- package/static/i18n-messages/hr.json +813 -813
- package/static/i18n-messages/it.json +813 -813
- package/static/i18n-messages/ja.json +818 -818
- package/static/i18n-messages/nb.json +811 -811
- package/static/i18n-messages/ne.json +813 -813
- package/static/i18n-messages/pl.json +813 -813
- package/static/i18n-messages/pt_BR.json +813 -813
- package/static/i18n-messages/pt_PT.json +814 -814
- package/static/i18n-messages/ru.json +813 -813
- package/static/i18n-messages/sv.json +806 -806
- package/static/i18n-messages/tr.json +814 -814
- package/static/i18n-messages/uk.json +813 -813
- package/static/i18n-messages/zh_Hans.json +813 -813
- package/static/i18n-messages/zh_Hant.json +813 -813
- package/static/index.html +14 -14
- package/static/polyfills.ts +66 -66
- package/static/styles/_mixins.scss +60 -60
- package/static/styles/_variables.scss +11 -11
- package/static/styles/component/prosemirror.scss +513 -513
- package/static/styles/global/_buttons.scss +147 -147
- package/static/styles/global/_clarity.scss +140 -140
- package/static/styles/global/_forms.scss +187 -187
- package/static/styles/global/_global.scss +41 -41
- package/static/styles/global/_overrides.scss +165 -165
- package/static/styles/global/_sass-overrides.scss +7 -7
- package/static/styles/global/_utilities.scss +155 -155
- package/static/styles/rtl.scss +143 -143
- package/static/styles/styles.scss +19 -19
- package/static/styles/theme/dark.scss +591 -591
- package/static/styles/theme/default.scss +254 -254
- package/static/styles/ui-extension-theme.scss +13 -13
- package/static/vendure-ui-config.json +289 -289
package/static/styles/rtl.scss
CHANGED
|
@@ -1,143 +1,143 @@
|
|
|
1
|
-
// This file contains overrides to handle specific layout/display issues when in a right-to-left language.
|
|
2
|
-
.app-container[dir="rtl"] {
|
|
3
|
-
.nav-group-header {
|
|
4
|
-
font-size: 20px !important;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.nav-link {
|
|
8
|
-
font-size: 16px !important;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.nav-link span {
|
|
12
|
-
margin-inline-end: 6px !important;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.section-header {
|
|
16
|
-
padding-inline-end: 16px !important;
|
|
17
|
-
padding-inline-start: 32px !important;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.dropdown-content-wrapper {
|
|
21
|
-
direction: rtl !important;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.dropdown-item {
|
|
25
|
-
padding-inline-end: 12px !important;
|
|
26
|
-
padding-inline-start: 12px !important;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.dropdown-item clr-icon {
|
|
30
|
-
margin-inline-start: 6px !important;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.login-wrapper-inner {
|
|
34
|
-
flex-direction: row-reverse;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.login-wrapper-form {
|
|
38
|
-
direction: rtl;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.dropdown-menu .dropdown-header {
|
|
42
|
-
text-align: end;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.button-small {
|
|
46
|
-
font-size: 14px;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.flex .button-small {
|
|
50
|
-
margin-inline-start: 6px !important;
|
|
51
|
-
margin-inline-end: 6px !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.page-title h1 {
|
|
55
|
-
font-size: 26px;
|
|
56
|
-
margin-inline-end: 32px;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.table thead tr th {
|
|
60
|
-
text-align: end !important;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.table thead tr th:first-child {
|
|
64
|
-
padding-inline-end: 48px !important;
|
|
65
|
-
padding-inline-start: 8px !important;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.table tbody tr td {
|
|
69
|
-
text-align: end !important;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.is-warning {
|
|
73
|
-
transform: rotate(360deg) scaleX(-1);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.modal-content {
|
|
77
|
-
direction: rtl;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
vdr-timeline-entry .entry .entry-body {
|
|
81
|
-
margin-right: 20px;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
vdr-timeline-entry .entry .entry-body .name {
|
|
85
|
-
margin-right: 12px;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.visible-toggle.clr-control-label {
|
|
89
|
-
margin-right: 30px;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.clr-toggle-wrapper {
|
|
93
|
-
margin-right: 0;
|
|
94
|
-
margin-left: 0.6rem;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.clr-toggle-wrapper input[type=checkbox]:checked + label::before {
|
|
98
|
-
right: -42px !important;
|
|
99
|
-
left: 0 !important;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
.clr-toggle-wrapper input[type=checkbox]:not(:checked) + label {
|
|
104
|
-
&::before {
|
|
105
|
-
right: -2.1rem !important;
|
|
106
|
-
}
|
|
107
|
-
&::after {
|
|
108
|
-
right: -25px;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.header-title-row .ml-3 {
|
|
113
|
-
margin-right: 24px;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.calendar-button {
|
|
117
|
-
border: 1px solid var(--color-weight-200) !important;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.selected-datetime {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.input-wrapper input:not([type=checkbox]):not([type=radio]) {
|
|
126
|
-
border-bottom-left-radius: 0px !important;
|
|
127
|
-
border-bottom-right-radius: 4px !important;
|
|
128
|
-
border-top-left-radius: 0px !important;
|
|
129
|
-
border-top-right-radius: 4px !important;
|
|
130
|
-
border-inline-end: 1px solid var(--color-weight-300) !important;
|
|
131
|
-
border-inline-start: 0px !important;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.clr-toggle-wrapper .clr-control-label {
|
|
135
|
-
margin-right: 42px;
|
|
136
|
-
margin-left: 0px;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
vdr-ab-left > clr-checkbox-wrapper {
|
|
140
|
-
margin-inline-end: 16px;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
}
|
|
1
|
+
// This file contains overrides to handle specific layout/display issues when in a right-to-left language.
|
|
2
|
+
.app-container[dir="rtl"] {
|
|
3
|
+
.nav-group-header {
|
|
4
|
+
font-size: 20px !important;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.nav-link {
|
|
8
|
+
font-size: 16px !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.nav-link span {
|
|
12
|
+
margin-inline-end: 6px !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.section-header {
|
|
16
|
+
padding-inline-end: 16px !important;
|
|
17
|
+
padding-inline-start: 32px !important;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.dropdown-content-wrapper {
|
|
21
|
+
direction: rtl !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.dropdown-item {
|
|
25
|
+
padding-inline-end: 12px !important;
|
|
26
|
+
padding-inline-start: 12px !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.dropdown-item clr-icon {
|
|
30
|
+
margin-inline-start: 6px !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.login-wrapper-inner {
|
|
34
|
+
flex-direction: row-reverse;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.login-wrapper-form {
|
|
38
|
+
direction: rtl;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.dropdown-menu .dropdown-header {
|
|
42
|
+
text-align: end;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.button-small {
|
|
46
|
+
font-size: 14px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.flex .button-small {
|
|
50
|
+
margin-inline-start: 6px !important;
|
|
51
|
+
margin-inline-end: 6px !important;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.page-title h1 {
|
|
55
|
+
font-size: 26px;
|
|
56
|
+
margin-inline-end: 32px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.table thead tr th {
|
|
60
|
+
text-align: end !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.table thead tr th:first-child {
|
|
64
|
+
padding-inline-end: 48px !important;
|
|
65
|
+
padding-inline-start: 8px !important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.table tbody tr td {
|
|
69
|
+
text-align: end !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.is-warning {
|
|
73
|
+
transform: rotate(360deg) scaleX(-1);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.modal-content {
|
|
77
|
+
direction: rtl;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
vdr-timeline-entry .entry .entry-body {
|
|
81
|
+
margin-right: 20px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
vdr-timeline-entry .entry .entry-body .name {
|
|
85
|
+
margin-right: 12px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.visible-toggle.clr-control-label {
|
|
89
|
+
margin-right: 30px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.clr-toggle-wrapper {
|
|
93
|
+
margin-right: 0;
|
|
94
|
+
margin-left: 0.6rem;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.clr-toggle-wrapper input[type=checkbox]:checked + label::before {
|
|
98
|
+
right: -42px !important;
|
|
99
|
+
left: 0 !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
.clr-toggle-wrapper input[type=checkbox]:not(:checked) + label {
|
|
104
|
+
&::before {
|
|
105
|
+
right: -2.1rem !important;
|
|
106
|
+
}
|
|
107
|
+
&::after {
|
|
108
|
+
right: -25px;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.header-title-row .ml-3 {
|
|
113
|
+
margin-right: 24px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.calendar-button {
|
|
117
|
+
border: 1px solid var(--color-weight-200) !important;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.selected-datetime {
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.input-wrapper input:not([type=checkbox]):not([type=radio]) {
|
|
126
|
+
border-bottom-left-radius: 0px !important;
|
|
127
|
+
border-bottom-right-radius: 4px !important;
|
|
128
|
+
border-top-left-radius: 0px !important;
|
|
129
|
+
border-top-right-radius: 4px !important;
|
|
130
|
+
border-inline-end: 1px solid var(--color-weight-300) !important;
|
|
131
|
+
border-inline-start: 0px !important;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.clr-toggle-wrapper .clr-control-label {
|
|
135
|
+
margin-right: 42px;
|
|
136
|
+
margin-left: 0px;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
vdr-ab-left > clr-checkbox-wrapper {
|
|
140
|
+
margin-inline-end: 16px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
@import "global/sass-overrides";
|
|
2
|
-
@import "global/clarity";
|
|
3
|
-
@import "@cds/core/global.min.css";
|
|
4
|
-
@import "@clr/icons/clr-icons.min.css";
|
|
5
|
-
@import "@ng-select/ng-select/themes/default.theme.css";
|
|
6
|
-
@import '@angular/cdk/overlay-prebuilt.css';
|
|
7
|
-
@import "global/buttons";
|
|
8
|
-
@import "global/forms";
|
|
9
|
-
@import "global/overrides";
|
|
10
|
-
@import "global/utilities";
|
|
11
|
-
@import "fonts";
|
|
12
|
-
@import "global/global";
|
|
13
|
-
|
|
14
|
-
@import "component/prosemirror";
|
|
15
|
-
|
|
16
|
-
@import 'theme/default';
|
|
17
|
-
@import 'theme/dark';
|
|
18
|
-
|
|
19
|
-
@import "rtl";
|
|
1
|
+
@import "global/sass-overrides";
|
|
2
|
+
@import "global/clarity";
|
|
3
|
+
@import "@cds/core/global.min.css";
|
|
4
|
+
@import "@clr/icons/clr-icons.min.css";
|
|
5
|
+
@import "@ng-select/ng-select/themes/default.theme.css";
|
|
6
|
+
@import '@angular/cdk/overlay-prebuilt.css';
|
|
7
|
+
@import "global/buttons";
|
|
8
|
+
@import "global/forms";
|
|
9
|
+
@import "global/overrides";
|
|
10
|
+
@import "global/utilities";
|
|
11
|
+
@import "fonts";
|
|
12
|
+
@import "global/global";
|
|
13
|
+
|
|
14
|
+
@import "component/prosemirror";
|
|
15
|
+
|
|
16
|
+
@import 'theme/default';
|
|
17
|
+
@import 'theme/dark';
|
|
18
|
+
|
|
19
|
+
@import "rtl";
|