@vendure/admin-ui 2.1.5 → 2.1.7
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/core/common/utilities/custom-field-default-value.d.ts +1 -1
- package/core/common/version.d.ts +1 -1
- package/core/components/app-shell/app-shell.component.d.ts +1 -0
- package/core/shared/components/order-state-label/order-state-label.component.d.ts +1 -1
- package/core/shared/dynamic-form-inputs/default-form-inputs.d.ts +1 -1
- package/esm2022/catalog/components/collection-detail/collection-detail.component.mjs +2 -2
- package/esm2022/catalog/components/collection-list/collection-list.component.mjs +3 -3
- package/esm2022/catalog/components/product-detail/product-detail.component.mjs +2 -2
- package/esm2022/core/common/introspection-result.mjs +1 -1
- package/esm2022/core/common/version.mjs +2 -2
- package/esm2022/core/components/app-shell/app-shell.component.mjs +4 -3
- package/esm2022/core/shared/components/chart/chart.component.mjs +1 -1
- package/esm2022/core/shared/components/form-field/form-field.component.mjs +1 -1
- package/esm2022/core/shared/components/page-header-tabs/page-header-tabs.component.mjs +2 -2
- package/esm2022/login/components/login/login.component.mjs +4 -5
- package/esm2022/order/components/order-payment-card/order-payment-card.component.mjs +3 -3
- package/esm2022/order/components/refund-order-dialog/refund-order-dialog.component.mjs +2 -2
- package/esm2022/order/order.routes.mjs +1 -1
- package/esm2022/settings/settings.routes.mjs +4 -4
- package/fesm2022/vendure-admin-ui-catalog.mjs +5 -5
- package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-core.mjs +6 -5
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-login.mjs +2 -3
- package/fesm2022/vendure-admin-ui-login.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-order.mjs +3 -3
- package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-settings.mjs +3 -3
- package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
- package/login/components/login/login.component.d.ts +0 -1
- package/package.json +8 -8
- package/static/i18n-messages/en.json +3 -3
- package/static/i18n-messages/pt_BR.json +2 -2
- package/static/i18n-messages/uk.json +166 -166
- package/static/styles/global/_sass-overrides.scss +5 -0
- package/static/styles/theme/dark.scss +5 -4
- package/static/styles/theme/default.scss +7 -2
- package/static/theme.min.css +1 -1
|
@@ -16,7 +16,6 @@ export declare class LoginComponent implements OnInit {
|
|
|
16
16
|
errorMessage: string | undefined;
|
|
17
17
|
brand: string | undefined;
|
|
18
18
|
hideVendureBranding: boolean | undefined;
|
|
19
|
-
hideVersion: boolean | undefined;
|
|
20
19
|
customImageUrl: string | undefined;
|
|
21
20
|
imageUrl: string;
|
|
22
21
|
imageUnsplashUrl: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vendure/admin-ui",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@angular/animations": "^16.2.2",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@ng-select/ng-select": "^11.1.1",
|
|
24
24
|
"@ngx-translate/core": "^15.0.0",
|
|
25
25
|
"@ngx-translate/http-loader": "^8.0.0",
|
|
26
|
-
"@vendure/common": "^2.1.
|
|
26
|
+
"@vendure/common": "^2.1.7",
|
|
27
27
|
"@webcomponents/custom-elements": "^1.6.0",
|
|
28
28
|
"apollo-angular": "^5.0.0",
|
|
29
29
|
"apollo-upload-client": "^17.0.0",
|
|
@@ -71,6 +71,12 @@
|
|
|
71
71
|
"esm": "./esm2022/catalog/vendure-admin-ui-catalog.mjs",
|
|
72
72
|
"default": "./fesm2022/vendure-admin-ui-catalog.mjs"
|
|
73
73
|
},
|
|
74
|
+
"./dashboard": {
|
|
75
|
+
"types": "./dashboard/index.d.ts",
|
|
76
|
+
"esm2022": "./esm2022/dashboard/vendure-admin-ui-dashboard.mjs",
|
|
77
|
+
"esm": "./esm2022/dashboard/vendure-admin-ui-dashboard.mjs",
|
|
78
|
+
"default": "./fesm2022/vendure-admin-ui-dashboard.mjs"
|
|
79
|
+
},
|
|
74
80
|
"./core": {
|
|
75
81
|
"types": "./core/index.d.ts",
|
|
76
82
|
"esm2022": "./esm2022/core/vendure-admin-ui-core.mjs",
|
|
@@ -83,12 +89,6 @@
|
|
|
83
89
|
"esm": "./esm2022/customer/vendure-admin-ui-customer.mjs",
|
|
84
90
|
"default": "./fesm2022/vendure-admin-ui-customer.mjs"
|
|
85
91
|
},
|
|
86
|
-
"./dashboard": {
|
|
87
|
-
"types": "./dashboard/index.d.ts",
|
|
88
|
-
"esm2022": "./esm2022/dashboard/vendure-admin-ui-dashboard.mjs",
|
|
89
|
-
"esm": "./esm2022/dashboard/vendure-admin-ui-dashboard.mjs",
|
|
90
|
-
"default": "./fesm2022/vendure-admin-ui-dashboard.mjs"
|
|
91
|
-
},
|
|
92
92
|
"./login": {
|
|
93
93
|
"types": "./login/index.d.ts",
|
|
94
94
|
"esm2022": "./esm2022/login/vendure-admin-ui-login.mjs",
|
|
@@ -523,9 +523,9 @@
|
|
|
523
523
|
"shipping-methods": "Shipping methods",
|
|
524
524
|
"stock-locations": "Stock locations",
|
|
525
525
|
"system": "System",
|
|
526
|
-
"system-status": "System
|
|
526
|
+
"system-status": "System status",
|
|
527
527
|
"tax-categories": "Tax categories",
|
|
528
|
-
"tax-rates": "Tax
|
|
528
|
+
"tax-rates": "Tax rates",
|
|
529
529
|
"zones": "Zones"
|
|
530
530
|
},
|
|
531
531
|
"order": {
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
"seller": "Seller",
|
|
738
738
|
"shipping-calculator": "Shipping calculator",
|
|
739
739
|
"shipping-eligibility-checker": "Shipping eligibility checker",
|
|
740
|
-
"shipping-method": "Shipping
|
|
740
|
+
"shipping-method": "Shipping method",
|
|
741
741
|
"tax-category": "Tax category",
|
|
742
742
|
"tax-rate": "Tax rate",
|
|
743
743
|
"test-address": "Test address",
|
|
@@ -477,7 +477,7 @@
|
|
|
477
477
|
},
|
|
478
478
|
"error": {
|
|
479
479
|
"403-forbidden": "No momento, você não está autorizado a acessar \"{ path }\". Você não tem permissão ou sua sessão expirou.",
|
|
480
|
-
"could-not-connect-to-server": "Não foi possível ao servidor
|
|
480
|
+
"could-not-connect-to-server": "Não foi possível conectar ao servidor Vendure no link { url }",
|
|
481
481
|
"facet-value-form-values-do-not-match": "O número de valores no formulário de etiqueta não corresponde ao número real de valores",
|
|
482
482
|
"health-check-failed": "Falha na verificação de integridade do sistema",
|
|
483
483
|
"no-default-shipping-zone-set": "Este canal não possui zona de entrega padrão. Isso pode causar erros ao calcular as despesas de envio do pedido.",
|
|
@@ -792,4 +792,4 @@
|
|
|
792
792
|
"job-state-pending": "Pendente",
|
|
793
793
|
"job-state-running": "Em execução"
|
|
794
794
|
}
|
|
795
|
-
}
|
|
795
|
+
}
|