@empathyco/x-components 3.0.0-alpha.21 → 3.0.0-alpha.25
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/CHANGELOG.md +47 -0
- package/core/index.js +3 -1
- package/core/index.js.map +1 -1
- package/design-system/badge-default.css +46 -0
- package/design-system/base.css +4 -1
- package/design-system/button-primary.css +11 -2
- package/design-system/button-secondary.css +12 -3
- package/design-system/button-tertiary.css +11 -2
- package/design-system/default-theme.css +150 -42
- package/design-system/dropdown-default.css +68 -33
- package/design-system/dropdown-l.css +1 -1
- package/design-system/dropdown-m.css +1 -1
- package/design-system/dropdown-s.css +1 -1
- package/design-system/dropdown-xl.css +1 -1
- package/design-system/full-theme.css +2564 -194
- package/design-system/list-default.css +1 -0
- package/design-system/list-gap.css +61 -1
- package/design-system/list-padding.css +54 -1
- package/design-system/row-padding.css +2 -0
- package/design-system/utilities-background-color.css +20 -0
- package/design-system/utilities-border-color.css +20 -0
- package/design-system/utilities-border-radius.css +981 -0
- package/design-system/utilities-border-width.css +333 -0
- package/design-system/{shadow-shadow.css → utilities-box-shadow.css} +32 -23
- package/design-system/utilities-font-color.css +20 -0
- package/design-system/utilities-margin.css +435 -0
- package/design-system/utilities-padding.css +406 -0
- package/docs/API-reference/api/x-components.baseresultimage.animation.md +13 -0
- package/docs/API-reference/api/x-components.baseresultimage.md +1 -0
- package/docs/API-reference/api/x-components.capitalize.md +30 -0
- package/docs/API-reference/api/x-components.crossfade.md +15 -0
- package/docs/API-reference/api/x-components.md +10 -1
- package/docs/API-reference/api/{x-components.urlstate.filters.md → x-components.params.filters.md} +2 -2
- package/docs/API-reference/api/x-components.params.md +25 -0
- package/docs/API-reference/api/{x-components.urlstate.page.md → x-components.params.page.md} +2 -2
- package/docs/API-reference/api/{x-components.urlstate.query.md → x-components.params.query.md} +2 -2
- package/docs/API-reference/api/{x-components.urlstate.relatedtags.md → x-components.params.relatedtags.md} +2 -2
- package/docs/API-reference/api/x-components.params.scroll.md +11 -0
- package/docs/API-reference/api/{x-components.urlstate.sort.md → x-components.params.sort.md} +2 -2
- package/docs/API-reference/api/x-components.setquery.md +13 -0
- package/docs/API-reference/api/x-components.setqueryfromurl.md +13 -0
- package/docs/API-reference/api/x-components.setsearchextraparams.md +1 -1
- package/docs/API-reference/api/x-components.setsearchqueryfromurl.md +13 -0
- package/docs/API-reference/api/x-components.translatefromleft.md +15 -0
- package/docs/API-reference/api/x-components.translatefromright.md +1 -1
- package/docs/API-reference/api/x-components.updatestoreurl.md +13 -0
- package/docs/API-reference/api/x-components.updateurl.md +13 -0
- package/docs/API-reference/api/x-components.urlactions.md +2 -1
- package/docs/API-reference/api/x-components.urlactions.updatestorefromurl.md +17 -0
- package/docs/API-reference/api/x-components.urlactions.updateurl.md +1 -1
- package/docs/API-reference/api/x-components.urlgetters.md +2 -2
- package/docs/API-reference/api/x-components.urlgetters.urlmappedparamnames.md +3 -1
- package/docs/API-reference/api/x-components.urlgetters.urlparams.md +2 -0
- package/docs/API-reference/api/x-components.urlmutations.md +4 -1
- package/docs/API-reference/api/x-components.urlmutations.setextraparams.md +24 -0
- package/docs/API-reference/api/x-components.urlmutations.setparams.md +24 -0
- package/docs/API-reference/api/x-components.urlmutations.setquery.md +24 -0
- package/docs/API-reference/api/x-components.urlmutations.seturlconfig.md +3 -1
- package/docs/API-reference/api/x-components.urlparamkey.md +3 -1
- package/docs/API-reference/api/x-components.urlstate.md +1 -5
- package/docs/API-reference/api/x-components.urlstate.params.md +11 -0
- package/docs/API-reference/api/x-components.urlxevents.md +1 -0
- package/docs/API-reference/api/x-components.urlxevents.paramsloadedfromurl.md +13 -0
- package/docs/API-reference/api/x-types.banner.md +2 -2
- package/docs/API-reference/api/x-types.historyquery.md +2 -2
- package/docs/API-reference/api/x-types.nextqueries.md +2 -2
- package/docs/API-reference/api/x-types.nextquery.md +2 -2
- package/docs/API-reference/api/x-types.promoted.md +2 -2
- package/docs/API-reference/api/x-types.relatedtag.md +2 -2
- package/docs/API-reference/api/x-types.result.md +2 -2
- package/docs/API-reference/api/x-types.suggestion.md +2 -2
- package/docs/API-reference/components/common/animations/x-components.cross-fade.md +30 -0
- package/docs/API-reference/components/common/animations/x-components.translate-from-left.md +30 -0
- package/docs/API-reference/components/common/animations/x-components.translate-from-right.md +6 -5
- package/docs/API-reference/components/common/result/x-components.base-result-image.md +7 -6
- package/docs/API-reference/components/url/x-components.url-handler.md +86 -0
- package/docs/sidebar.json +1 -1
- package/js/components/animations/cross-fade.vue.js +58 -0
- package/js/components/animations/cross-fade.vue.js.map +1 -0
- package/js/components/animations/cross-fade.vue_rollup-plugin-vue=script.js +23 -0
- package/js/components/animations/cross-fade.vue_rollup-plugin-vue=script.js.map +1 -0
- package/js/components/animations/translate-from-left.vue.js +58 -0
- package/js/components/animations/translate-from-left.vue.js.map +1 -0
- package/js/components/animations/translate-from-left.vue_rollup-plugin-vue=script.js +23 -0
- package/js/components/animations/translate-from-left.vue_rollup-plugin-vue=script.js.map +1 -0
- package/js/components/animations/translate-from-right.vue.js +2 -2
- package/js/components/animations/translate-from-right.vue.js.map +1 -1
- package/js/components/animations/translate-from-right.vue_rollup-plugin-vue=script.js +2 -2
- package/js/components/animations/translate-from-right.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/components/base-dropdown.vue.js +2 -2
- package/js/components/base-dropdown.vue.js.map +1 -1
- package/js/components/base-rating.vue.js +1 -1
- package/js/components/column-picker/base-column-picker-list.vue.js +1 -1
- package/js/components/layouts/multi-column-max-width-layout.vue.js +1 -1
- package/js/components/layouts/single-column-layout.vue.js +1 -1
- package/js/components/modals/base-modal.vue.js +1 -1
- package/js/components/result/base-result-image.vue.js +40 -30
- package/js/components/result/base-result-image.vue.js.map +1 -1
- package/js/components/result/base-result-image.vue_rollup-plugin-vue=script.js +3 -0
- package/js/components/result/base-result-image.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/components/sliding-panel.vue.js +1 -1
- package/js/index.js +6 -4
- package/js/index.js.map +1 -1
- package/js/utils/string.js +16 -1
- package/js/utils/string.js.map +1 -1
- package/js/x-modules/extra-params/components/extra-params.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/extra-params/components/extra-params.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/extra-params/components/renderless-extra-param.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/extra-params/components/renderless-extra-param.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/extra-params/components/snippet-config-extra-params.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/extra-params/components/snippet-config-extra-params.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/clear-filters.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/clear-filters.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/facets/facets-provider.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/facets/facets-provider.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/filters/all-filter.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/filters/all-filter.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/filters/base-filter.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/filters/base-filter.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/filters/hierarchical-filter.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/filters/hierarchical-filter.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/filters/number-range-filter.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/filters/number-range-filter.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/filters/renderless-filter.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/filters/renderless-filter.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/filters/simple-filter.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/filters/simple-filter.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/lists/exclude-filters-with-no-results.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/lists/exclude-filters-with-no-results.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/lists/filters-list.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/lists/filters-list.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/lists/filters-search.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/lists/filters-search.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/lists/selected-filters-list.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/lists/selected-filters-list.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/lists/selected-filters.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/lists/selected-filters.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/lists/sliced-filters.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/lists/sliced-filters.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/facets/components/lists/sorted-filters.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/facets/components/lists/sorted-filters.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/related-tags/components/related-tags.vue.js +1 -1
- package/js/x-modules/search/components/banner.vue.js +1 -1
- package/js/x-modules/search/components/partial-query-button.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/search/components/partial-query-button.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/search/components/promoted.vue.js +1 -1
- package/js/x-modules/search/components/sort-list.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/search/components/sort-list.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/search/components/sort.mixin.js +2 -0
- package/js/x-modules/search/components/sort.mixin.js.map +1 -1
- package/js/x-modules/search/components/spellcheck-button.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/search/components/spellcheck-button.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/search/components/spellcheck.vue_rollup-plugin-vue=script.js +2 -0
- package/js/x-modules/search/components/spellcheck.vue_rollup-plugin-vue=script.js.map +1 -1
- package/js/x-modules/search/wiring.js +11 -1
- package/js/x-modules/search/wiring.js.map +1 -1
- package/js/x-modules/search-box/wiring.js +11 -1
- package/js/x-modules/search-box/wiring.js.map +1 -1
- package/js/x-modules/url/store/actions/update-store-from-url.action.js +76 -0
- package/js/x-modules/url/store/actions/update-store-from-url.action.js.map +1 -0
- package/js/x-modules/url/store/actions/update-url.action.js +22 -5
- package/js/x-modules/url/store/actions/update-url.action.js.map +1 -1
- package/js/x-modules/url/store/getters/{url-param-names.getter.js → url-mapped-param-names.getter.js} +4 -4
- package/js/x-modules/url/store/getters/url-mapped-param-names.getter.js.map +1 -0
- package/js/x-modules/url/store/getters/url-params.getter.js +5 -4
- package/js/x-modules/url/store/getters/url-params.getter.js.map +1 -1
- package/js/x-modules/url/store/module.js +22 -7
- package/js/x-modules/url/store/module.js.map +1 -1
- package/js/x-modules/url/wiring.js +41 -2
- package/js/x-modules/url/wiring.js.map +1 -1
- package/package.json +5 -5
- package/report/tsdoc-metadata.json +1 -1
- package/report/x-adapter.api.json +1 -1
- package/report/x-components.api.json +749 -107
- package/report/x-components.api.md +72 -14
- package/report/x-types.api.json +51 -23
- package/search/index.js +1 -1
- package/search-box/index.js +1 -1
- package/types/components/animations/cross-fade.vue.d.ts +10 -0
- package/types/components/animations/cross-fade.vue.d.ts.map +1 -0
- package/types/components/animations/index.d.ts +2 -0
- package/types/components/animations/index.d.ts.map +1 -1
- package/types/components/animations/translate-from-left.vue.d.ts +10 -0
- package/types/components/animations/translate-from-left.vue.d.ts.map +1 -0
- package/types/components/animations/translate-from-right.vue.d.ts +2 -2
- package/types/components/result/base-result-image.vue.d.ts +7 -0
- package/types/components/result/base-result-image.vue.d.ts.map +1 -1
- package/types/utils/string.d.ts +13 -0
- package/types/utils/string.d.ts.map +1 -1
- package/types/x-modules/search/wiring.d.ts +13 -2
- package/types/x-modules/search/wiring.d.ts.map +1 -1
- package/types/x-modules/search-box/wiring.d.ts +11 -0
- package/types/x-modules/search-box/wiring.d.ts.map +1 -1
- package/types/x-modules/url/components/index.d.ts +2 -0
- package/types/x-modules/url/components/index.d.ts.map +1 -0
- package/types/x-modules/url/events.types.d.ts +5 -0
- package/types/x-modules/url/events.types.d.ts.map +1 -1
- package/types/x-modules/url/store/actions/update-store-from-url.action.d.ts +11 -0
- package/types/x-modules/url/store/actions/update-store-from-url.action.d.ts.map +1 -0
- package/types/x-modules/url/store/actions/update-url.action.d.ts.map +1 -1
- package/types/x-modules/url/store/getters/{url-param-names.getter.d.ts → url-mapped-param-names.getter.d.ts} +1 -1
- package/types/x-modules/url/store/getters/url-mapped-param-names.getter.d.ts.map +1 -0
- package/types/x-modules/url/store/getters/url-params.getter.d.ts.map +1 -1
- package/types/x-modules/url/store/module.d.ts.map +1 -1
- package/types/x-modules/url/store/types.d.ts +44 -5
- package/types/x-modules/url/store/types.d.ts.map +1 -1
- package/types/x-modules/url/wiring.d.ts +33 -0
- package/types/x-modules/url/wiring.d.ts.map +1 -1
- package/url/index.js +1 -1
- package/design-system/list-background.css +0 -20
- package/design-system/list-border.css +0 -44
- package/design-system/row-background.css +0 -20
- package/js/x-modules/url/store/getters/url-param-names.getter.js.map +0 -1
- package/types/x-modules/url/store/getters/url-param-names.getter.d.ts.map +0 -1
|
@@ -0,0 +1,435 @@
|
|
|
1
|
+
@use 'sass:string';
|
|
2
|
+
.x-margin--auto {
|
|
3
|
+
margin: auto !important; }
|
|
4
|
+
|
|
5
|
+
.x-margin--00 {
|
|
6
|
+
margin: 0 !important; }
|
|
7
|
+
|
|
8
|
+
.x-margin--01 {
|
|
9
|
+
margin: var(--x-size-base-01) !important; }
|
|
10
|
+
|
|
11
|
+
.x-margin--02 {
|
|
12
|
+
margin: var(--x-size-base-02) !important; }
|
|
13
|
+
|
|
14
|
+
.x-margin--03 {
|
|
15
|
+
margin: var(--x-size-base-03) !important; }
|
|
16
|
+
|
|
17
|
+
.x-margin--04 {
|
|
18
|
+
margin: var(--x-size-base-04) !important; }
|
|
19
|
+
|
|
20
|
+
.x-margin--05 {
|
|
21
|
+
margin: var(--x-size-base-05) !important; }
|
|
22
|
+
|
|
23
|
+
.x-margin--06 {
|
|
24
|
+
margin: var(--x-size-base-06) !important; }
|
|
25
|
+
|
|
26
|
+
.x-margin--07 {
|
|
27
|
+
margin: var(--x-size-base-07) !important; }
|
|
28
|
+
|
|
29
|
+
.x-margin--08 {
|
|
30
|
+
margin: var(--x-size-base-08) !important; }
|
|
31
|
+
|
|
32
|
+
.x-margin--09 {
|
|
33
|
+
margin: var(--x-size-base-09) !important; }
|
|
34
|
+
|
|
35
|
+
.x-margin--10 {
|
|
36
|
+
margin: var(--x-size-base-10) !important; }
|
|
37
|
+
|
|
38
|
+
.x-margin--11 {
|
|
39
|
+
margin: var(--x-size-base-11) !important; }
|
|
40
|
+
|
|
41
|
+
.x-margin--12 {
|
|
42
|
+
margin: var(--x-size-base-12) !important; }
|
|
43
|
+
|
|
44
|
+
.x-margin--13 {
|
|
45
|
+
margin: var(--x-size-base-13) !important; }
|
|
46
|
+
|
|
47
|
+
.x-margin--top-auto {
|
|
48
|
+
-webkit-margin-before: auto !important;
|
|
49
|
+
margin-top: auto !important; }
|
|
50
|
+
|
|
51
|
+
.x-margin--bottom-auto {
|
|
52
|
+
-webkit-margin-after: auto !important;
|
|
53
|
+
margin-bottom: auto !important; }
|
|
54
|
+
|
|
55
|
+
[dir="ltr"] .x-margin--right-auto{
|
|
56
|
+
margin-right: auto !important; }
|
|
57
|
+
|
|
58
|
+
[dir="rtl"] .x-margin--right-auto{
|
|
59
|
+
margin-left: auto !important; }
|
|
60
|
+
|
|
61
|
+
.x-margin--right-auto {
|
|
62
|
+
-webkit-margin-end: auto !important; }
|
|
63
|
+
|
|
64
|
+
[dir="ltr"] .x-margin--left-auto{
|
|
65
|
+
margin-left: auto !important; }
|
|
66
|
+
|
|
67
|
+
[dir="rtl"] .x-margin--left-auto{
|
|
68
|
+
margin-right: auto !important; }
|
|
69
|
+
|
|
70
|
+
.x-margin--left-auto {
|
|
71
|
+
-webkit-margin-start: auto !important; }
|
|
72
|
+
|
|
73
|
+
.x-margin--top-00 {
|
|
74
|
+
-webkit-margin-before: 0 !important;
|
|
75
|
+
margin-top: 0 !important; }
|
|
76
|
+
|
|
77
|
+
.x-margin--bottom-00 {
|
|
78
|
+
-webkit-margin-after: 0 !important;
|
|
79
|
+
margin-bottom: 0 !important; }
|
|
80
|
+
|
|
81
|
+
[dir="ltr"] .x-margin--right-00{
|
|
82
|
+
margin-right: 0 !important; }
|
|
83
|
+
|
|
84
|
+
[dir="rtl"] .x-margin--right-00{
|
|
85
|
+
margin-left: 0 !important; }
|
|
86
|
+
|
|
87
|
+
.x-margin--right-00 {
|
|
88
|
+
-webkit-margin-end: 0 !important; }
|
|
89
|
+
|
|
90
|
+
[dir="ltr"] .x-margin--left-00{
|
|
91
|
+
margin-left: 0 !important; }
|
|
92
|
+
|
|
93
|
+
[dir="rtl"] .x-margin--left-00{
|
|
94
|
+
margin-right: 0 !important; }
|
|
95
|
+
|
|
96
|
+
.x-margin--left-00 {
|
|
97
|
+
-webkit-margin-start: 0 !important; }
|
|
98
|
+
|
|
99
|
+
.x-margin--top-01 {
|
|
100
|
+
-webkit-margin-before: var(--x-size-base-01) !important;
|
|
101
|
+
margin-top: var(--x-size-base-01) !important; }
|
|
102
|
+
|
|
103
|
+
.x-margin--bottom-01 {
|
|
104
|
+
-webkit-margin-after: var(--x-size-base-01) !important;
|
|
105
|
+
margin-bottom: var(--x-size-base-01) !important; }
|
|
106
|
+
|
|
107
|
+
[dir="ltr"] .x-margin--right-01{
|
|
108
|
+
margin-right: var(--x-size-base-01) !important; }
|
|
109
|
+
|
|
110
|
+
[dir="rtl"] .x-margin--right-01{
|
|
111
|
+
margin-left: var(--x-size-base-01) !important; }
|
|
112
|
+
|
|
113
|
+
.x-margin--right-01 {
|
|
114
|
+
-webkit-margin-end: var(--x-size-base-01) !important; }
|
|
115
|
+
|
|
116
|
+
[dir="ltr"] .x-margin--left-01{
|
|
117
|
+
margin-left: var(--x-size-base-01) !important; }
|
|
118
|
+
|
|
119
|
+
[dir="rtl"] .x-margin--left-01{
|
|
120
|
+
margin-right: var(--x-size-base-01) !important; }
|
|
121
|
+
|
|
122
|
+
.x-margin--left-01 {
|
|
123
|
+
-webkit-margin-start: var(--x-size-base-01) !important; }
|
|
124
|
+
|
|
125
|
+
.x-margin--top-02 {
|
|
126
|
+
-webkit-margin-before: var(--x-size-base-02) !important;
|
|
127
|
+
margin-top: var(--x-size-base-02) !important; }
|
|
128
|
+
|
|
129
|
+
.x-margin--bottom-02 {
|
|
130
|
+
-webkit-margin-after: var(--x-size-base-02) !important;
|
|
131
|
+
margin-bottom: var(--x-size-base-02) !important; }
|
|
132
|
+
|
|
133
|
+
[dir="ltr"] .x-margin--right-02{
|
|
134
|
+
margin-right: var(--x-size-base-02) !important; }
|
|
135
|
+
|
|
136
|
+
[dir="rtl"] .x-margin--right-02{
|
|
137
|
+
margin-left: var(--x-size-base-02) !important; }
|
|
138
|
+
|
|
139
|
+
.x-margin--right-02 {
|
|
140
|
+
-webkit-margin-end: var(--x-size-base-02) !important; }
|
|
141
|
+
|
|
142
|
+
[dir="ltr"] .x-margin--left-02{
|
|
143
|
+
margin-left: var(--x-size-base-02) !important; }
|
|
144
|
+
|
|
145
|
+
[dir="rtl"] .x-margin--left-02{
|
|
146
|
+
margin-right: var(--x-size-base-02) !important; }
|
|
147
|
+
|
|
148
|
+
.x-margin--left-02 {
|
|
149
|
+
-webkit-margin-start: var(--x-size-base-02) !important; }
|
|
150
|
+
|
|
151
|
+
.x-margin--top-03 {
|
|
152
|
+
-webkit-margin-before: var(--x-size-base-03) !important;
|
|
153
|
+
margin-top: var(--x-size-base-03) !important; }
|
|
154
|
+
|
|
155
|
+
.x-margin--bottom-03 {
|
|
156
|
+
-webkit-margin-after: var(--x-size-base-03) !important;
|
|
157
|
+
margin-bottom: var(--x-size-base-03) !important; }
|
|
158
|
+
|
|
159
|
+
[dir="ltr"] .x-margin--right-03{
|
|
160
|
+
margin-right: var(--x-size-base-03) !important; }
|
|
161
|
+
|
|
162
|
+
[dir="rtl"] .x-margin--right-03{
|
|
163
|
+
margin-left: var(--x-size-base-03) !important; }
|
|
164
|
+
|
|
165
|
+
.x-margin--right-03 {
|
|
166
|
+
-webkit-margin-end: var(--x-size-base-03) !important; }
|
|
167
|
+
|
|
168
|
+
[dir="ltr"] .x-margin--left-03{
|
|
169
|
+
margin-left: var(--x-size-base-03) !important; }
|
|
170
|
+
|
|
171
|
+
[dir="rtl"] .x-margin--left-03{
|
|
172
|
+
margin-right: var(--x-size-base-03) !important; }
|
|
173
|
+
|
|
174
|
+
.x-margin--left-03 {
|
|
175
|
+
-webkit-margin-start: var(--x-size-base-03) !important; }
|
|
176
|
+
|
|
177
|
+
.x-margin--top-04 {
|
|
178
|
+
-webkit-margin-before: var(--x-size-base-04) !important;
|
|
179
|
+
margin-top: var(--x-size-base-04) !important; }
|
|
180
|
+
|
|
181
|
+
.x-margin--bottom-04 {
|
|
182
|
+
-webkit-margin-after: var(--x-size-base-04) !important;
|
|
183
|
+
margin-bottom: var(--x-size-base-04) !important; }
|
|
184
|
+
|
|
185
|
+
[dir="ltr"] .x-margin--right-04{
|
|
186
|
+
margin-right: var(--x-size-base-04) !important; }
|
|
187
|
+
|
|
188
|
+
[dir="rtl"] .x-margin--right-04{
|
|
189
|
+
margin-left: var(--x-size-base-04) !important; }
|
|
190
|
+
|
|
191
|
+
.x-margin--right-04 {
|
|
192
|
+
-webkit-margin-end: var(--x-size-base-04) !important; }
|
|
193
|
+
|
|
194
|
+
[dir="ltr"] .x-margin--left-04{
|
|
195
|
+
margin-left: var(--x-size-base-04) !important; }
|
|
196
|
+
|
|
197
|
+
[dir="rtl"] .x-margin--left-04{
|
|
198
|
+
margin-right: var(--x-size-base-04) !important; }
|
|
199
|
+
|
|
200
|
+
.x-margin--left-04 {
|
|
201
|
+
-webkit-margin-start: var(--x-size-base-04) !important; }
|
|
202
|
+
|
|
203
|
+
.x-margin--top-05 {
|
|
204
|
+
-webkit-margin-before: var(--x-size-base-05) !important;
|
|
205
|
+
margin-top: var(--x-size-base-05) !important; }
|
|
206
|
+
|
|
207
|
+
.x-margin--bottom-05 {
|
|
208
|
+
-webkit-margin-after: var(--x-size-base-05) !important;
|
|
209
|
+
margin-bottom: var(--x-size-base-05) !important; }
|
|
210
|
+
|
|
211
|
+
[dir="ltr"] .x-margin--right-05{
|
|
212
|
+
margin-right: var(--x-size-base-05) !important; }
|
|
213
|
+
|
|
214
|
+
[dir="rtl"] .x-margin--right-05{
|
|
215
|
+
margin-left: var(--x-size-base-05) !important; }
|
|
216
|
+
|
|
217
|
+
.x-margin--right-05 {
|
|
218
|
+
-webkit-margin-end: var(--x-size-base-05) !important; }
|
|
219
|
+
|
|
220
|
+
[dir="ltr"] .x-margin--left-05{
|
|
221
|
+
margin-left: var(--x-size-base-05) !important; }
|
|
222
|
+
|
|
223
|
+
[dir="rtl"] .x-margin--left-05{
|
|
224
|
+
margin-right: var(--x-size-base-05) !important; }
|
|
225
|
+
|
|
226
|
+
.x-margin--left-05 {
|
|
227
|
+
-webkit-margin-start: var(--x-size-base-05) !important; }
|
|
228
|
+
|
|
229
|
+
.x-margin--top-06 {
|
|
230
|
+
-webkit-margin-before: var(--x-size-base-06) !important;
|
|
231
|
+
margin-top: var(--x-size-base-06) !important; }
|
|
232
|
+
|
|
233
|
+
.x-margin--bottom-06 {
|
|
234
|
+
-webkit-margin-after: var(--x-size-base-06) !important;
|
|
235
|
+
margin-bottom: var(--x-size-base-06) !important; }
|
|
236
|
+
|
|
237
|
+
[dir="ltr"] .x-margin--right-06{
|
|
238
|
+
margin-right: var(--x-size-base-06) !important; }
|
|
239
|
+
|
|
240
|
+
[dir="rtl"] .x-margin--right-06{
|
|
241
|
+
margin-left: var(--x-size-base-06) !important; }
|
|
242
|
+
|
|
243
|
+
.x-margin--right-06 {
|
|
244
|
+
-webkit-margin-end: var(--x-size-base-06) !important; }
|
|
245
|
+
|
|
246
|
+
[dir="ltr"] .x-margin--left-06{
|
|
247
|
+
margin-left: var(--x-size-base-06) !important; }
|
|
248
|
+
|
|
249
|
+
[dir="rtl"] .x-margin--left-06{
|
|
250
|
+
margin-right: var(--x-size-base-06) !important; }
|
|
251
|
+
|
|
252
|
+
.x-margin--left-06 {
|
|
253
|
+
-webkit-margin-start: var(--x-size-base-06) !important; }
|
|
254
|
+
|
|
255
|
+
.x-margin--top-07 {
|
|
256
|
+
-webkit-margin-before: var(--x-size-base-07) !important;
|
|
257
|
+
margin-top: var(--x-size-base-07) !important; }
|
|
258
|
+
|
|
259
|
+
.x-margin--bottom-07 {
|
|
260
|
+
-webkit-margin-after: var(--x-size-base-07) !important;
|
|
261
|
+
margin-bottom: var(--x-size-base-07) !important; }
|
|
262
|
+
|
|
263
|
+
[dir="ltr"] .x-margin--right-07{
|
|
264
|
+
margin-right: var(--x-size-base-07) !important; }
|
|
265
|
+
|
|
266
|
+
[dir="rtl"] .x-margin--right-07{
|
|
267
|
+
margin-left: var(--x-size-base-07) !important; }
|
|
268
|
+
|
|
269
|
+
.x-margin--right-07 {
|
|
270
|
+
-webkit-margin-end: var(--x-size-base-07) !important; }
|
|
271
|
+
|
|
272
|
+
[dir="ltr"] .x-margin--left-07{
|
|
273
|
+
margin-left: var(--x-size-base-07) !important; }
|
|
274
|
+
|
|
275
|
+
[dir="rtl"] .x-margin--left-07{
|
|
276
|
+
margin-right: var(--x-size-base-07) !important; }
|
|
277
|
+
|
|
278
|
+
.x-margin--left-07 {
|
|
279
|
+
-webkit-margin-start: var(--x-size-base-07) !important; }
|
|
280
|
+
|
|
281
|
+
.x-margin--top-08 {
|
|
282
|
+
-webkit-margin-before: var(--x-size-base-08) !important;
|
|
283
|
+
margin-top: var(--x-size-base-08) !important; }
|
|
284
|
+
|
|
285
|
+
.x-margin--bottom-08 {
|
|
286
|
+
-webkit-margin-after: var(--x-size-base-08) !important;
|
|
287
|
+
margin-bottom: var(--x-size-base-08) !important; }
|
|
288
|
+
|
|
289
|
+
[dir="ltr"] .x-margin--right-08{
|
|
290
|
+
margin-right: var(--x-size-base-08) !important; }
|
|
291
|
+
|
|
292
|
+
[dir="rtl"] .x-margin--right-08{
|
|
293
|
+
margin-left: var(--x-size-base-08) !important; }
|
|
294
|
+
|
|
295
|
+
.x-margin--right-08 {
|
|
296
|
+
-webkit-margin-end: var(--x-size-base-08) !important; }
|
|
297
|
+
|
|
298
|
+
[dir="ltr"] .x-margin--left-08{
|
|
299
|
+
margin-left: var(--x-size-base-08) !important; }
|
|
300
|
+
|
|
301
|
+
[dir="rtl"] .x-margin--left-08{
|
|
302
|
+
margin-right: var(--x-size-base-08) !important; }
|
|
303
|
+
|
|
304
|
+
.x-margin--left-08 {
|
|
305
|
+
-webkit-margin-start: var(--x-size-base-08) !important; }
|
|
306
|
+
|
|
307
|
+
.x-margin--top-09 {
|
|
308
|
+
-webkit-margin-before: var(--x-size-base-09) !important;
|
|
309
|
+
margin-top: var(--x-size-base-09) !important; }
|
|
310
|
+
|
|
311
|
+
.x-margin--bottom-09 {
|
|
312
|
+
-webkit-margin-after: var(--x-size-base-09) !important;
|
|
313
|
+
margin-bottom: var(--x-size-base-09) !important; }
|
|
314
|
+
|
|
315
|
+
[dir="ltr"] .x-margin--right-09{
|
|
316
|
+
margin-right: var(--x-size-base-09) !important; }
|
|
317
|
+
|
|
318
|
+
[dir="rtl"] .x-margin--right-09{
|
|
319
|
+
margin-left: var(--x-size-base-09) !important; }
|
|
320
|
+
|
|
321
|
+
.x-margin--right-09 {
|
|
322
|
+
-webkit-margin-end: var(--x-size-base-09) !important; }
|
|
323
|
+
|
|
324
|
+
[dir="ltr"] .x-margin--left-09{
|
|
325
|
+
margin-left: var(--x-size-base-09) !important; }
|
|
326
|
+
|
|
327
|
+
[dir="rtl"] .x-margin--left-09{
|
|
328
|
+
margin-right: var(--x-size-base-09) !important; }
|
|
329
|
+
|
|
330
|
+
.x-margin--left-09 {
|
|
331
|
+
-webkit-margin-start: var(--x-size-base-09) !important; }
|
|
332
|
+
|
|
333
|
+
.x-margin--top-10 {
|
|
334
|
+
-webkit-margin-before: var(--x-size-base-10) !important;
|
|
335
|
+
margin-top: var(--x-size-base-10) !important; }
|
|
336
|
+
|
|
337
|
+
.x-margin--bottom-10 {
|
|
338
|
+
-webkit-margin-after: var(--x-size-base-10) !important;
|
|
339
|
+
margin-bottom: var(--x-size-base-10) !important; }
|
|
340
|
+
|
|
341
|
+
[dir="ltr"] .x-margin--right-10{
|
|
342
|
+
margin-right: var(--x-size-base-10) !important; }
|
|
343
|
+
|
|
344
|
+
[dir="rtl"] .x-margin--right-10{
|
|
345
|
+
margin-left: var(--x-size-base-10) !important; }
|
|
346
|
+
|
|
347
|
+
.x-margin--right-10 {
|
|
348
|
+
-webkit-margin-end: var(--x-size-base-10) !important; }
|
|
349
|
+
|
|
350
|
+
[dir="ltr"] .x-margin--left-10{
|
|
351
|
+
margin-left: var(--x-size-base-10) !important; }
|
|
352
|
+
|
|
353
|
+
[dir="rtl"] .x-margin--left-10{
|
|
354
|
+
margin-right: var(--x-size-base-10) !important; }
|
|
355
|
+
|
|
356
|
+
.x-margin--left-10 {
|
|
357
|
+
-webkit-margin-start: var(--x-size-base-10) !important; }
|
|
358
|
+
|
|
359
|
+
.x-margin--top-11 {
|
|
360
|
+
-webkit-margin-before: var(--x-size-base-11) !important;
|
|
361
|
+
margin-top: var(--x-size-base-11) !important; }
|
|
362
|
+
|
|
363
|
+
.x-margin--bottom-11 {
|
|
364
|
+
-webkit-margin-after: var(--x-size-base-11) !important;
|
|
365
|
+
margin-bottom: var(--x-size-base-11) !important; }
|
|
366
|
+
|
|
367
|
+
[dir="ltr"] .x-margin--right-11{
|
|
368
|
+
margin-right: var(--x-size-base-11) !important; }
|
|
369
|
+
|
|
370
|
+
[dir="rtl"] .x-margin--right-11{
|
|
371
|
+
margin-left: var(--x-size-base-11) !important; }
|
|
372
|
+
|
|
373
|
+
.x-margin--right-11 {
|
|
374
|
+
-webkit-margin-end: var(--x-size-base-11) !important; }
|
|
375
|
+
|
|
376
|
+
[dir="ltr"] .x-margin--left-11{
|
|
377
|
+
margin-left: var(--x-size-base-11) !important; }
|
|
378
|
+
|
|
379
|
+
[dir="rtl"] .x-margin--left-11{
|
|
380
|
+
margin-right: var(--x-size-base-11) !important; }
|
|
381
|
+
|
|
382
|
+
.x-margin--left-11 {
|
|
383
|
+
-webkit-margin-start: var(--x-size-base-11) !important; }
|
|
384
|
+
|
|
385
|
+
.x-margin--top-12 {
|
|
386
|
+
-webkit-margin-before: var(--x-size-base-12) !important;
|
|
387
|
+
margin-top: var(--x-size-base-12) !important; }
|
|
388
|
+
|
|
389
|
+
.x-margin--bottom-12 {
|
|
390
|
+
-webkit-margin-after: var(--x-size-base-12) !important;
|
|
391
|
+
margin-bottom: var(--x-size-base-12) !important; }
|
|
392
|
+
|
|
393
|
+
[dir="ltr"] .x-margin--right-12{
|
|
394
|
+
margin-right: var(--x-size-base-12) !important; }
|
|
395
|
+
|
|
396
|
+
[dir="rtl"] .x-margin--right-12{
|
|
397
|
+
margin-left: var(--x-size-base-12) !important; }
|
|
398
|
+
|
|
399
|
+
.x-margin--right-12 {
|
|
400
|
+
-webkit-margin-end: var(--x-size-base-12) !important; }
|
|
401
|
+
|
|
402
|
+
[dir="ltr"] .x-margin--left-12{
|
|
403
|
+
margin-left: var(--x-size-base-12) !important; }
|
|
404
|
+
|
|
405
|
+
[dir="rtl"] .x-margin--left-12{
|
|
406
|
+
margin-right: var(--x-size-base-12) !important; }
|
|
407
|
+
|
|
408
|
+
.x-margin--left-12 {
|
|
409
|
+
-webkit-margin-start: var(--x-size-base-12) !important; }
|
|
410
|
+
|
|
411
|
+
.x-margin--top-13 {
|
|
412
|
+
-webkit-margin-before: var(--x-size-base-13) !important;
|
|
413
|
+
margin-top: var(--x-size-base-13) !important; }
|
|
414
|
+
|
|
415
|
+
.x-margin--bottom-13 {
|
|
416
|
+
-webkit-margin-after: var(--x-size-base-13) !important;
|
|
417
|
+
margin-bottom: var(--x-size-base-13) !important; }
|
|
418
|
+
|
|
419
|
+
[dir="ltr"] .x-margin--right-13{
|
|
420
|
+
margin-right: var(--x-size-base-13) !important; }
|
|
421
|
+
|
|
422
|
+
[dir="rtl"] .x-margin--right-13{
|
|
423
|
+
margin-left: var(--x-size-base-13) !important; }
|
|
424
|
+
|
|
425
|
+
.x-margin--right-13 {
|
|
426
|
+
-webkit-margin-end: var(--x-size-base-13) !important; }
|
|
427
|
+
|
|
428
|
+
[dir="ltr"] .x-margin--left-13{
|
|
429
|
+
margin-left: var(--x-size-base-13) !important; }
|
|
430
|
+
|
|
431
|
+
[dir="rtl"] .x-margin--left-13{
|
|
432
|
+
margin-right: var(--x-size-base-13) !important; }
|
|
433
|
+
|
|
434
|
+
.x-margin--left-13 {
|
|
435
|
+
-webkit-margin-start: var(--x-size-base-13) !important; }
|