@vendure/admin-ui 1.6.1 → 1.6.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/bundles/vendure-admin-ui-catalog.umd.js +6 -1
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +4 -4
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-dashboard.umd.js.map +1 -1
- package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +13 -10
- package/catalog/vendure-admin-ui-catalog.metadata.json +1 -1
- package/core/common/version.d.ts +1 -1
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/esm2015/catalog/components/product-variants-editor/product-variants-editor.component.js +7 -2
- package/esm2015/core/common/generated-types.js +1 -1
- package/esm2015/core/common/introspection-result.js +1 -1
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/components/main-nav/main-nav.component.js +2 -2
- package/esm2015/core/shared/components/address-form/address-form.component.js +2 -2
- package/esm2015/core/shared/components/formatted-address/formatted-address.component.js +2 -2
- package/esm2015/dashboard/components/dashboard-widget/dashboard-widget.component.js +1 -1
- package/fesm2015/vendure-admin-ui-catalog.js +6 -1
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +4 -4
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.js.map +1 -1
- package/package.json +2 -2
- package/static/i18n-messages/cs.json +683 -682
- package/static/i18n-messages/de.json +683 -682
- package/static/i18n-messages/en.json +684 -683
- package/static/i18n-messages/es.json +683 -682
- package/static/i18n-messages/fr.json +683 -682
- package/static/i18n-messages/it.json +683 -682
- package/static/i18n-messages/pl.json +683 -682
- package/static/i18n-messages/pt_BR.json +683 -682
- package/static/i18n-messages/pt_PT.json +683 -682
- package/static/i18n-messages/ru.json +683 -682
- package/static/i18n-messages/uk.json +683 -682
- package/static/i18n-messages/zh_Hans.json +683 -682
- package/static/i18n-messages/zh_Hant.json +683 -682
- package/static/styles/global/_utilities.scss +9 -0
- package/static/theme.min.css +1 -1
|
@@ -7,6 +7,7 @@ $space-1: math.div($space-unit, 2);
|
|
|
7
7
|
$space-2: $space-unit;
|
|
8
8
|
$space-3: $space-unit * 2;
|
|
9
9
|
$space-4: $space-unit * 3;
|
|
10
|
+
$space-5: $space-unit * 4;
|
|
10
11
|
|
|
11
12
|
/////////////// layout ///////////////
|
|
12
13
|
.flex {
|
|
@@ -66,6 +67,14 @@ $space-4: $space-unit * 3;
|
|
|
66
67
|
.mx4 { margin-left: $space-4; margin-right: $space-4 }
|
|
67
68
|
.my4 { margin-top: $space-4; margin-bottom: $space-4 }
|
|
68
69
|
|
|
70
|
+
.m5 { margin: $space-5 }
|
|
71
|
+
.mt5 { margin-top: $space-5 }
|
|
72
|
+
.mr5 { margin-right: $space-5 }
|
|
73
|
+
.mb5 { margin-bottom: $space-5 }
|
|
74
|
+
.ml5 { margin-left: $space-5 }
|
|
75
|
+
.mx5 { margin-left: $space-5; margin-right: $space-5 }
|
|
76
|
+
.my5 { margin-top: $space-5; margin-bottom: $space-5 }
|
|
77
|
+
|
|
69
78
|
.mxn1 { margin-left: -$space-1; margin-right: -$space-1; }
|
|
70
79
|
.mxn2 { margin-left: -$space-2; margin-right: -$space-2; }
|
|
71
80
|
.mxn3 { margin-left: -$space-3; margin-right: -$space-3; }
|