@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.
Files changed (65) hide show
  1. package/LICENSE.md +42 -42
  2. package/core/common/version.d.ts +1 -1
  3. package/fesm2022/vendure-admin-ui-catalog.mjs +257 -257
  4. package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
  5. package/fesm2022/vendure-admin-ui-core.mjs +4140 -4140
  6. package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
  7. package/fesm2022/vendure-admin-ui-customer.mjs +119 -119
  8. package/fesm2022/vendure-admin-ui-customer.mjs.map +1 -1
  9. package/fesm2022/vendure-admin-ui-dashboard.mjs +58 -58
  10. package/fesm2022/vendure-admin-ui-dashboard.mjs.map +1 -1
  11. package/fesm2022/vendure-admin-ui-login.mjs +2 -2
  12. package/fesm2022/vendure-admin-ui-login.mjs.map +1 -1
  13. package/fesm2022/vendure-admin-ui-marketing.mjs +35 -35
  14. package/fesm2022/vendure-admin-ui-marketing.mjs.map +1 -1
  15. package/fesm2022/vendure-admin-ui-order.mjs +186 -186
  16. package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
  17. package/fesm2022/vendure-admin-ui-react.mjs +8 -8
  18. package/fesm2022/vendure-admin-ui-react.mjs.map +1 -1
  19. package/fesm2022/vendure-admin-ui-settings.mjs +441 -441
  20. package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
  21. package/fesm2022/vendure-admin-ui-system.mjs +6 -6
  22. package/fesm2022/vendure-admin-ui-system.mjs.map +1 -1
  23. package/fesm2022/vendure-admin-ui.mjs.map +1 -1
  24. package/package.json +13 -9
  25. package/static/fonts/fonts.scss +253 -253
  26. package/static/i18n-messages/ar.json +813 -813
  27. package/static/i18n-messages/cs.json +813 -813
  28. package/static/i18n-messages/de.json +813 -813
  29. package/static/i18n-messages/en.json +817 -817
  30. package/static/i18n-messages/es.json +813 -813
  31. package/static/i18n-messages/fa.json +813 -813
  32. package/static/i18n-messages/fr.json +813 -813
  33. package/static/i18n-messages/he.json +813 -813
  34. package/static/i18n-messages/hr.json +813 -813
  35. package/static/i18n-messages/it.json +813 -813
  36. package/static/i18n-messages/ja.json +818 -818
  37. package/static/i18n-messages/nb.json +811 -811
  38. package/static/i18n-messages/ne.json +813 -813
  39. package/static/i18n-messages/pl.json +813 -813
  40. package/static/i18n-messages/pt_BR.json +813 -813
  41. package/static/i18n-messages/pt_PT.json +814 -814
  42. package/static/i18n-messages/ru.json +813 -813
  43. package/static/i18n-messages/sv.json +806 -806
  44. package/static/i18n-messages/tr.json +814 -814
  45. package/static/i18n-messages/uk.json +813 -813
  46. package/static/i18n-messages/zh_Hans.json +813 -813
  47. package/static/i18n-messages/zh_Hant.json +813 -813
  48. package/static/index.html +14 -14
  49. package/static/polyfills.ts +66 -66
  50. package/static/styles/_mixins.scss +60 -60
  51. package/static/styles/_variables.scss +11 -11
  52. package/static/styles/component/prosemirror.scss +513 -513
  53. package/static/styles/global/_buttons.scss +147 -147
  54. package/static/styles/global/_clarity.scss +140 -140
  55. package/static/styles/global/_forms.scss +187 -187
  56. package/static/styles/global/_global.scss +41 -41
  57. package/static/styles/global/_overrides.scss +165 -165
  58. package/static/styles/global/_sass-overrides.scss +7 -7
  59. package/static/styles/global/_utilities.scss +155 -155
  60. package/static/styles/rtl.scss +143 -143
  61. package/static/styles/styles.scss +19 -19
  62. package/static/styles/theme/dark.scss +591 -591
  63. package/static/styles/theme/default.scss +254 -254
  64. package/static/styles/ui-extension-theme.scss +13 -13
  65. package/static/vendure-ui-config.json +289 -289
@@ -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";