renusify 2.2.6 → 2.3.0
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/components/app/style.scss +6 -4
- package/components/app/toast/style.scss +4 -3
- package/components/avatar/style.scss +2 -2
- package/components/bar/bottomNavigationCircle.vue +7 -5
- package/components/bar/scss/bottomNav.scss +15 -12
- package/components/bar/scss/toolbar.scss +32 -30
- package/components/bar/toolbar/index.vue +2 -2
- package/components/bar/toolbar/laptop.vue +1 -1
- package/components/bar/toolbar/mobile.vue +1 -1
- package/components/breadcrumb/bredcrumbItem.vue +1 -1
- package/components/breadcrumb/style.scss +6 -6
- package/components/button/index.vue +1 -1
- package/components/button/style.scss +41 -36
- package/components/calendar/index.vue +4 -3
- package/components/card/index.vue +1 -1
- package/components/card/style.scss +14 -11
- package/components/chart/chart.vue +3 -4
- package/components/chart/worldMap.vue +2 -2
- package/components/chat/MessageList.vue +122 -119
- package/components/chat/chatInput.vue +3 -3
- package/components/chat/chatMsg.vue +23 -21
- package/components/chat/index.vue +2 -2
- package/components/chip/style.scss +21 -16
- package/components/codeEditor/highlightCss.vue +1 -1
- package/components/codeEditor/highlightHtml.vue +1 -1
- package/components/codeEditor/highlightJs.vue +1 -1
- package/components/codeEditor/index.vue +6 -6
- package/components/container/style.scss +12 -10
- package/components/content/index.vue +17 -14
- package/components/cropper/index.vue +2 -2
- package/components/float/index.vue +456 -454
- package/components/form/camInput/index.vue +2 -2
- package/components/form/checkInput/index.vue +2 -2
- package/components/form/checkboxInput/index.vue +5 -4
- package/components/form/colorInput/Alpha.vue +1 -1
- package/components/form/colorInput/Preview.vue +1 -1
- package/components/form/colorInput/Saturation.vue +1 -1
- package/components/form/colorInput/index.vue +2 -2
- package/components/form/colorInput/picker.vue +10 -8
- package/components/form/dateInput/index.vue +2 -2
- package/components/form/fileInput/index.vue +0 -3
- package/components/form/fileInput/single.vue +3 -3
- package/components/form/groupInput/index.vue +5 -4
- package/components/form/input/index.vue +31 -29
- package/components/form/jsonInput/JsonView.vue +5 -4
- package/components/form/jsonInput/index.vue +35 -33
- package/components/form/numberInput/index.vue +11 -8
- package/components/form/radioInput/index.vue +6 -4
- package/components/form/rangeInput/index.vue +11 -10
- package/components/form/ratingInput/index.vue +5 -5
- package/components/form/selectInput/index.vue +8 -6
- package/components/form/switchInput/index.vue +9 -7
- package/components/form/telInput/index.vue +2 -2
- package/components/form/text-editor/style.scss +10 -7
- package/components/form/textArea/index.vue +2 -2
- package/components/form/timeInput/timepicker.vue +4 -3
- package/components/form/unitInput/index.vue +8 -6
- package/components/icon/style.scss +5 -4
- package/components/img/index.vue +2 -2
- package/components/index.js +0 -2
- package/components/list/index.vue +1 -1
- package/components/list/style.scss +6 -5
- package/components/map/index.vue +3 -3
- package/components/map/route.vue +2 -2
- package/components/menu/index.vue +4 -3
- package/components/modal/style.scss +19 -15
- package/components/nestable/index.vue +4 -4
- package/components/notify/index.vue +55 -53
- package/components/notify/notification.vue +5 -3
- package/components/progress/style.scss +8 -5
- package/components/searchBox/index.vue +15 -12
- package/components/skeleton/index.vue +5 -3
- package/components/slider/index.vue +18 -15
- package/components/swiper/index.vue +2 -2
- package/components/table/crud/index.vue +2 -2
- package/components/table/style.scss +87 -82
- package/components/tabs/index.vue +2 -2
- package/components/timeline/index.vue +64 -61
- package/components/tree/index.vue +4 -4
- package/components/tree/tree-element.vue +2 -2
- package/directive/animate/style.scss +72 -41
- package/directive/drag/index.js +1 -1
- package/directive/ripple/style.scss +6 -4
- package/directive/skeleton/style.scss +0 -2
- package/directive/sortable/index.js +1 -1
- package/directive/sortable/style.scss +7 -3
- package/directive/title/style.scss +4 -2
- package/index.js +10 -10
- package/package.json +1 -1
- package/style/app.scss +64 -56
- package/style/colors.scss +26 -22
- package/style/functions/index.scss +8 -8
- package/style/mixins/container.scss +24 -19
- package/style/mixins/index.scss +19 -15
- package/style/mixins/utilities.scss +26 -21
- package/style/style.scss +5 -6
- package/style/transitions.scss +14 -13
- package/style/variables/base.scss +26 -24
- package/style/variables/utilities.scss +35 -34
- package/components/html2pdf/index.js +0 -4
- package/components/html2pdf/index.vue +0 -280
- package/components/html2pdf/pageBreak.js +0 -1
- package/components/html2pdf/pageBreak.vue +0 -12
- package/style/_include.scss +0 -3
- package/style/variables/index.scss +0 -3
|
@@ -1,28 +1,33 @@
|
|
|
1
|
+
@use "sass:list";
|
|
2
|
+
@use "sass:meta";
|
|
3
|
+
@use "../variables/base";
|
|
4
|
+
|
|
5
|
+
@use "sass:map";
|
|
1
6
|
@mixin build-utility($utility, $breakpointName) {
|
|
2
|
-
$values: map
|
|
7
|
+
$values: map.get($utility, values);
|
|
3
8
|
|
|
4
|
-
@if type-of($values) == "string" or type-of(nth($values, 1)) != "list" {
|
|
5
|
-
$values: zip($values, $values)
|
|
9
|
+
@if meta.type-of($values) == "string" or meta.type-of(list.nth($values, 1)) != "list" {
|
|
10
|
+
$values: list.zip($values, $values)
|
|
6
11
|
}
|
|
7
12
|
|
|
8
13
|
@each $value in $values {
|
|
9
|
-
$properties: map
|
|
14
|
+
$properties: map.get($utility, property);
|
|
10
15
|
|
|
11
|
-
@if type-of($properties) == 'string' {
|
|
12
|
-
$properties: append((), $properties)
|
|
16
|
+
@if meta.type-of($properties) == 'string' {
|
|
17
|
+
$properties: list.append((), $properties)
|
|
13
18
|
}
|
|
14
19
|
|
|
15
|
-
@if type-of($properties) == 'map' {
|
|
20
|
+
@if meta.type-of($properties) == 'map' {
|
|
16
21
|
@each $dir in $properties {
|
|
17
|
-
$mixin: nth($dir, 1);
|
|
22
|
+
$mixin: list.nth($dir, 1);
|
|
18
23
|
|
|
19
24
|
@if $mixin == 'ltr' {
|
|
20
25
|
.app-ltr {
|
|
21
|
-
@include build-utility-body($utility, nth($dir, 2), $value, $breakpointName)
|
|
26
|
+
@include build-utility-body($utility, list.nth($dir, 2), $value, $breakpointName)
|
|
22
27
|
}
|
|
23
28
|
} @else if $mixin == 'rtl' {
|
|
24
29
|
.app-rtl {
|
|
25
|
-
@include build-utility-body($utility, nth($dir, 2), $value, $breakpointName)
|
|
30
|
+
@include build-utility-body($utility, list.nth($dir, 2), $value, $breakpointName)
|
|
26
31
|
}
|
|
27
32
|
} @else {
|
|
28
33
|
@error 'Only RTL and LTR are supported'
|
|
@@ -30,7 +35,7 @@
|
|
|
30
35
|
}
|
|
31
36
|
|
|
32
37
|
} @else {
|
|
33
|
-
.#{
|
|
38
|
+
.#{base.$prefix}app {
|
|
34
39
|
@include build-utility-body($utility, $properties, $value, $breakpointName)
|
|
35
40
|
}
|
|
36
41
|
}
|
|
@@ -38,23 +43,23 @@
|
|
|
38
43
|
}
|
|
39
44
|
|
|
40
45
|
@mixin build-utility-body($utility, $properties, $value, $breakpointName) {
|
|
41
|
-
$property-class: map
|
|
42
|
-
$property-class: if($property-class, $property-class, nth($properties, 1));
|
|
46
|
+
$property-class: map.get($utility, class);
|
|
47
|
+
$property-class: if($property-class, $property-class, list.nth($properties, 1));
|
|
43
48
|
|
|
44
|
-
$property-class-modifier: if(nth($value, 1), "-" + nth($value, 1), "");
|
|
49
|
+
$property-class-modifier: if(list.nth($value, 1), "-" + list.nth($value, 1), "");
|
|
45
50
|
|
|
46
|
-
$value: nth($value, 2);
|
|
51
|
+
$value: list.nth($value, 2);
|
|
47
52
|
|
|
48
53
|
.#{$property-class + $breakpointName + $property-class-modifier} {
|
|
49
|
-
@for $i from 1 through length($properties) {
|
|
50
|
-
$property: nth($properties, $i);
|
|
54
|
+
@for $i from 1 through list.length($properties) {
|
|
55
|
+
$property: list.nth($properties, $i);
|
|
51
56
|
$val: $value;
|
|
52
|
-
@if type-of($value) == 'list' and length($properties) == length($value) {
|
|
53
|
-
$val: nth($value, $i)
|
|
57
|
+
@if meta.type-of($value) == 'list' and list.length($properties) == list.length($value) {
|
|
58
|
+
$val: list.nth($value, $i)
|
|
54
59
|
}
|
|
55
60
|
@if ($val != false) {
|
|
56
|
-
$unimportant: map
|
|
57
|
-
#{$property}: $val if(index($unimportant, $property), null, !important)
|
|
61
|
+
$unimportant: map.get($utility, unimportant);
|
|
62
|
+
#{$property}: $val if(list.index($unimportant, $property), null, !important)
|
|
58
63
|
}
|
|
59
64
|
}
|
|
60
65
|
}
|
package/style/style.scss
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
//vuetify - MIT License - https://github.com/vuetifyjs/vuetify
|
|
2
2
|
//Some functions, mixins, variables and classes are inspired or copied
|
|
3
3
|
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
7
|
-
@
|
|
8
|
-
@
|
|
9
|
-
@import './transitions';
|
|
4
|
+
@use "base";
|
|
5
|
+
@use "app";
|
|
6
|
+
@use 'colors';
|
|
7
|
+
@use 'animation';
|
|
8
|
+
@use 'transitions';
|
package/style/transitions.scss
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "mixins";
|
|
2
|
+
|
|
2
3
|
/* counter-up */
|
|
3
4
|
.counter-up {
|
|
4
5
|
&-enter-active {
|
|
@@ -83,10 +84,10 @@
|
|
|
83
84
|
}
|
|
84
85
|
|
|
85
86
|
&-enter-from {
|
|
86
|
-
@include rtl() {
|
|
87
|
+
@include mixins.rtl() {
|
|
87
88
|
transform: translateX(-30px);
|
|
88
89
|
}
|
|
89
|
-
@include ltr() {
|
|
90
|
+
@include mixins.ltr() {
|
|
90
91
|
transform: translateX(30px);
|
|
91
92
|
}
|
|
92
93
|
|
|
@@ -94,10 +95,10 @@
|
|
|
94
95
|
}
|
|
95
96
|
|
|
96
97
|
&-leave-to {
|
|
97
|
-
@include rtl() {
|
|
98
|
+
@include mixins.rtl() {
|
|
98
99
|
transform: translateX(30px);
|
|
99
100
|
}
|
|
100
|
-
@include ltr() {
|
|
101
|
+
@include mixins.ltr() {
|
|
101
102
|
transform: translateX(-30px);
|
|
102
103
|
}
|
|
103
104
|
|
|
@@ -119,10 +120,10 @@
|
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
&-enter-from {
|
|
122
|
-
@include rtl() {
|
|
123
|
+
@include mixins.rtl() {
|
|
123
124
|
transform: translateX(30px);
|
|
124
125
|
}
|
|
125
|
-
@include ltr() {
|
|
126
|
+
@include mixins.ltr() {
|
|
126
127
|
transform: translateX(-30px);
|
|
127
128
|
}
|
|
128
129
|
|
|
@@ -130,10 +131,10 @@
|
|
|
130
131
|
}
|
|
131
132
|
|
|
132
133
|
&-leave-to {
|
|
133
|
-
@include rtl() {
|
|
134
|
+
@include mixins.rtl() {
|
|
134
135
|
transform: translateX(-30px);
|
|
135
136
|
}
|
|
136
|
-
@include ltr() {
|
|
137
|
+
@include mixins.ltr() {
|
|
137
138
|
transform: translateX(30px);
|
|
138
139
|
}
|
|
139
140
|
|
|
@@ -155,10 +156,10 @@
|
|
|
155
156
|
}
|
|
156
157
|
|
|
157
158
|
&-enter-from, &-leave-to {
|
|
158
|
-
@include rtl() {
|
|
159
|
+
@include mixins.rtl() {
|
|
159
160
|
transform: translateX(-60%);
|
|
160
161
|
}
|
|
161
|
-
@include ltr() {
|
|
162
|
+
@include mixins.ltr() {
|
|
162
163
|
transform: translateX(60%);
|
|
163
164
|
}
|
|
164
165
|
|
|
@@ -182,10 +183,10 @@
|
|
|
182
183
|
}
|
|
183
184
|
|
|
184
185
|
&-enter-from, &-leave-to {
|
|
185
|
-
@include rtl() {
|
|
186
|
+
@include mixins.rtl() {
|
|
186
187
|
transform: translateX(60%);
|
|
187
188
|
}
|
|
188
|
-
@include ltr() {
|
|
189
|
+
@include mixins.ltr() {
|
|
189
190
|
transform: translateX(-60%);
|
|
190
191
|
}
|
|
191
192
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:math";
|
|
1
3
|
$prefix: 'r-' !default;
|
|
2
4
|
$body-font-family: IRANSans, 'Roboto', sans-serif !default;
|
|
3
5
|
$font-size-root: 16px !default;
|
|
@@ -7,12 +9,12 @@ $line-height-root: 1.5rem !default;
|
|
|
7
9
|
$spacer: 4px !default;
|
|
8
10
|
$spacers: ();
|
|
9
11
|
@for $i from 0 through 24 {
|
|
10
|
-
$spacers: map
|
|
12
|
+
$spacers: map.merge($spacers, ($i: $spacer * $i))
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
$negative-spacers: ();
|
|
14
16
|
@for $i from 1 through 24 {
|
|
15
|
-
$negative-spacers: map
|
|
17
|
+
$negative-spacers: map.merge($negative-spacers, ("n" + $i: -$spacer * $i))
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
$borders: (
|
|
@@ -85,13 +87,13 @@ $grid-gutter: $spacer * 6 !default;
|
|
|
85
87
|
$form-grid-gutter: $spacer * 2 !default;
|
|
86
88
|
$grid-columns: 12 !default;
|
|
87
89
|
|
|
88
|
-
$container-padding-x: div($grid-gutter, 2) !default;
|
|
90
|
+
$container-padding-x: math.div($grid-gutter, 2) !default;
|
|
89
91
|
|
|
90
92
|
$grid-gutters: (
|
|
91
|
-
'xs': div($grid-gutter, 12),
|
|
92
|
-
'sm': div($grid-gutter, 6),
|
|
93
|
-
'md': div($grid-gutter, 3),
|
|
94
|
-
'lg': div($grid-gutter * 2, 3),
|
|
93
|
+
'xs': math.div($grid-gutter, 12),
|
|
94
|
+
'sm': math.div($grid-gutter, 6),
|
|
95
|
+
'md': math.div($grid-gutter, 3),
|
|
96
|
+
'lg': math.div($grid-gutter * 2, 3),
|
|
95
97
|
'xl': $grid-gutter
|
|
96
98
|
) !default;
|
|
97
99
|
|
|
@@ -106,25 +108,25 @@ $box-shadows: (
|
|
|
106
108
|
) !default;
|
|
107
109
|
|
|
108
110
|
$container-max-widths: (
|
|
109
|
-
'md': map
|
|
110
|
-
'lg': map
|
|
111
|
-
'xl': map
|
|
111
|
+
'md': map.get($grid-breakpoints, 'md')-60,
|
|
112
|
+
'lg': map.get($grid-breakpoints, 'lg')-80,
|
|
113
|
+
'xl': map.get($grid-breakpoints, 'xl')-120
|
|
112
114
|
) !default;
|
|
113
115
|
|
|
114
116
|
$display-breakpoints: (
|
|
115
117
|
'print-only': 'only print',
|
|
116
118
|
'screen-only': 'only screen',
|
|
117
|
-
'xs-only': 'only screen and (max-width: #{map
|
|
118
|
-
'sm-only': 'only screen and (min-width: #{map
|
|
119
|
-
'sm-and-down': 'only screen and (max-width: #{map
|
|
120
|
-
'sm-and-up': 'only screen and (min-width: #{map
|
|
121
|
-
'md-only': 'only screen and (min-width: #{map
|
|
122
|
-
'md-and-down': 'only screen and (max-width: #{map
|
|
123
|
-
'md-and-up': 'only screen and (min-width: #{map
|
|
124
|
-
'lg-only': 'only screen and (min-width: #{map
|
|
125
|
-
'lg-and-down': 'only screen and (max-width: #{map
|
|
126
|
-
'lg-and-up': 'only screen and (min-width: #{map
|
|
127
|
-
'xl-only': 'only screen and (min-width: #{map
|
|
119
|
+
'xs-only': 'only screen and (max-width: #{map.get($grid-breakpoints, 'sm') - 1})',
|
|
120
|
+
'sm-only': 'only screen and (min-width: #{map.get($grid-breakpoints, 'sm')}) and (max-width: #{map.get($grid-breakpoints, 'md') - 1})',
|
|
121
|
+
'sm-and-down': 'only screen and (max-width: #{map.get($grid-breakpoints, 'md') - 1})',
|
|
122
|
+
'sm-and-up': 'only screen and (min-width: #{map.get($grid-breakpoints, 'sm')})',
|
|
123
|
+
'md-only': 'only screen and (min-width: #{map.get($grid-breakpoints, 'md')}) and (max-width: #{map.get($grid-breakpoints, 'lg') - 1})',
|
|
124
|
+
'md-and-down': 'only screen and (max-width: #{map.get($grid-breakpoints, 'lg') - 1})',
|
|
125
|
+
'md-and-up': 'only screen and (min-width: #{map.get($grid-breakpoints, 'md')})',
|
|
126
|
+
'lg-only': 'only screen and (min-width: #{map.get($grid-breakpoints, 'lg')}) and (max-width: #{map.get($grid-breakpoints, 'xl') - 1})',
|
|
127
|
+
'lg-and-down': 'only screen and (max-width: #{map.get($grid-breakpoints, 'xl') - 1})',
|
|
128
|
+
'lg-and-up': 'only screen and (min-width: #{map.get($grid-breakpoints, 'lg')})',
|
|
129
|
+
'xl-only': 'only screen and (min-width: #{map.get($grid-breakpoints, 'xl')})'
|
|
128
130
|
) !default;
|
|
129
131
|
|
|
130
132
|
$font-weights: (
|
|
@@ -254,8 +256,8 @@ $transition: (
|
|
|
254
256
|
'swing': cubic-bezier(0.25, 0.8, 0.5, 1),
|
|
255
257
|
'wave': cubic-bezier(.175, .885, .275, 1.275)
|
|
256
258
|
) !default;
|
|
257
|
-
$primary-transition: 0.3s map
|
|
258
|
-
$secondary-transition: 0.2s map
|
|
259
|
+
$primary-transition: 0.3s map.get($transition, 'swing') !default;
|
|
260
|
+
$secondary-transition: 0.2s map.get($transition, 'ease-in-out') !default;
|
|
259
261
|
|
|
260
262
|
$z-index: (
|
|
261
263
|
'low':1,
|
|
@@ -273,7 +275,7 @@ $toolbar-content-padding-x: 16px !default;
|
|
|
273
275
|
$toolbar-height: 80px !default;
|
|
274
276
|
|
|
275
277
|
//modal
|
|
276
|
-
$border-modal: map
|
|
278
|
+
$border-modal: map.get($borders, 'md') !default;
|
|
277
279
|
|
|
278
280
|
//bottom navigation
|
|
279
281
|
$bottom-nav-btn-min-width: 56px !default;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "base";
|
|
2
3
|
|
|
3
4
|
$utilities: () !default;
|
|
4
|
-
$utilities: map
|
|
5
|
+
$utilities: map.merge(
|
|
5
6
|
(
|
|
6
7
|
// Display utilities
|
|
7
8
|
"overflow": (
|
|
@@ -145,196 +146,196 @@ $utilities: map-merge(
|
|
|
145
146
|
responsive: true,
|
|
146
147
|
property: border-radius,
|
|
147
148
|
class: br,
|
|
148
|
-
values:
|
|
149
|
+
values: base.$borders
|
|
149
150
|
),
|
|
150
151
|
"rounded-top-left": (
|
|
151
152
|
responsive: true,
|
|
152
153
|
property: border-top-left-radius,
|
|
153
154
|
class: br-tl,
|
|
154
|
-
values:
|
|
155
|
+
values: base.$borders
|
|
155
156
|
),
|
|
156
157
|
"rounded-top-right": (
|
|
157
158
|
responsive: true,
|
|
158
159
|
property: border-top-right-radius,
|
|
159
160
|
class: br-tr,
|
|
160
|
-
values:
|
|
161
|
+
values: base.$borders
|
|
161
162
|
),
|
|
162
163
|
"rounded-bottom-right": (
|
|
163
164
|
responsive: true,
|
|
164
165
|
property: border-bottom-right-radius,
|
|
165
166
|
class: br-br,
|
|
166
|
-
values:
|
|
167
|
+
values: base.$borders
|
|
167
168
|
),
|
|
168
169
|
"rounded-bottom-left": (
|
|
169
170
|
responsive: true,
|
|
170
171
|
property: border-bottom-left-radius,
|
|
171
172
|
class: br-bl,
|
|
172
|
-
values:
|
|
173
|
+
values: base.$borders
|
|
173
174
|
),
|
|
174
175
|
// Margin utilities
|
|
175
176
|
"margin": (
|
|
176
177
|
responsive: true,
|
|
177
178
|
property: margin,
|
|
178
179
|
class: ma,
|
|
179
|
-
values: map
|
|
180
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
180
181
|
),
|
|
181
182
|
"margin-x": (
|
|
182
183
|
responsive: true,
|
|
183
184
|
property: margin-right margin-left,
|
|
184
185
|
class: mx,
|
|
185
|
-
values: map
|
|
186
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
186
187
|
),
|
|
187
188
|
"margin-y": (
|
|
188
189
|
responsive: true,
|
|
189
190
|
property: margin-top margin-bottom,
|
|
190
191
|
class: my,
|
|
191
|
-
values: map
|
|
192
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
192
193
|
),
|
|
193
194
|
"margin-top": (
|
|
194
195
|
responsive: true,
|
|
195
196
|
property: margin-top,
|
|
196
197
|
class: mt,
|
|
197
|
-
values: map
|
|
198
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
198
199
|
),
|
|
199
200
|
"margin-right": (
|
|
200
201
|
responsive: true,
|
|
201
202
|
property: margin-right,
|
|
202
203
|
class: mr,
|
|
203
|
-
values: map
|
|
204
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
204
205
|
),
|
|
205
206
|
"margin-bottom": (
|
|
206
207
|
responsive: true,
|
|
207
208
|
property: margin-bottom,
|
|
208
209
|
class: mb,
|
|
209
|
-
values: map
|
|
210
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
210
211
|
),
|
|
211
212
|
"margin-left": (
|
|
212
213
|
responsive: true,
|
|
213
214
|
property: margin-left,
|
|
214
215
|
class: ml,
|
|
215
|
-
values: map
|
|
216
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
216
217
|
),
|
|
217
218
|
"margin-start": (
|
|
218
219
|
responsive: true,
|
|
219
220
|
property: (ltr: margin-left, rtl: margin-right),
|
|
220
221
|
class: ms,
|
|
221
|
-
values: map
|
|
222
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
222
223
|
),
|
|
223
224
|
"margin-end": (
|
|
224
225
|
responsive: true,
|
|
225
226
|
property: (ltr: margin-right, rtl: margin-left),
|
|
226
227
|
class: me,
|
|
227
|
-
values: map
|
|
228
|
+
values: map.merge(base.$spacers, (auto: auto))
|
|
228
229
|
),
|
|
229
230
|
// Negative margin utilities
|
|
230
231
|
"negative-margin": (
|
|
231
232
|
responsive: true,
|
|
232
233
|
property: margin,
|
|
233
234
|
class: ma,
|
|
234
|
-
values:
|
|
235
|
+
values: base.$negative-spacers
|
|
235
236
|
),
|
|
236
237
|
"negative-margin-x": (
|
|
237
238
|
responsive: true,
|
|
238
239
|
property: margin-right margin-left,
|
|
239
240
|
class: mx,
|
|
240
|
-
values:
|
|
241
|
+
values: base.$negative-spacers
|
|
241
242
|
),
|
|
242
243
|
"negative-margin-y": (
|
|
243
244
|
responsive: true,
|
|
244
245
|
property: margin-top margin-bottom,
|
|
245
246
|
class: my,
|
|
246
|
-
values:
|
|
247
|
+
values: base.$negative-spacers
|
|
247
248
|
),
|
|
248
249
|
"negative-margin-top": (
|
|
249
250
|
responsive: true,
|
|
250
251
|
property: margin-top,
|
|
251
252
|
class: mt,
|
|
252
|
-
values:
|
|
253
|
+
values: base.$negative-spacers
|
|
253
254
|
),
|
|
254
255
|
"negative-margin-right": (
|
|
255
256
|
responsive: true,
|
|
256
257
|
property: margin-right,
|
|
257
258
|
class: mr,
|
|
258
|
-
values:
|
|
259
|
+
values: base.$negative-spacers
|
|
259
260
|
),
|
|
260
261
|
"negative-margin-bottom": (
|
|
261
262
|
responsive: true,
|
|
262
263
|
property: margin-bottom,
|
|
263
264
|
class: mb,
|
|
264
|
-
values:
|
|
265
|
+
values: base.$negative-spacers
|
|
265
266
|
),
|
|
266
267
|
"negative-margin-left": (
|
|
267
268
|
responsive: true,
|
|
268
269
|
property: margin-left,
|
|
269
270
|
class: ml,
|
|
270
|
-
values:
|
|
271
|
+
values: base.$negative-spacers
|
|
271
272
|
),
|
|
272
273
|
"negative-margin-start": (
|
|
273
274
|
responsive: true,
|
|
274
275
|
property: (ltr: margin-left, rtl: margin-right),
|
|
275
276
|
class: ms,
|
|
276
|
-
values:
|
|
277
|
+
values: base.$negative-spacers
|
|
277
278
|
),
|
|
278
279
|
"negative-margin-end": (
|
|
279
280
|
responsive: true,
|
|
280
281
|
property: (ltr: margin-right, rtl: margin-left),
|
|
281
282
|
class: me,
|
|
282
|
-
values:
|
|
283
|
+
values: base.$negative-spacers
|
|
283
284
|
),
|
|
284
285
|
// Padding utilities
|
|
285
286
|
"padding": (
|
|
286
287
|
responsive: true,
|
|
287
288
|
property: padding,
|
|
288
289
|
class: pa,
|
|
289
|
-
values:
|
|
290
|
+
values: base.$spacers
|
|
290
291
|
),
|
|
291
292
|
"padding-x": (
|
|
292
293
|
responsive: true,
|
|
293
294
|
property: padding-right padding-left,
|
|
294
295
|
class: px,
|
|
295
|
-
values:
|
|
296
|
+
values: base.$spacers
|
|
296
297
|
),
|
|
297
298
|
"padding-y": (
|
|
298
299
|
responsive: true,
|
|
299
300
|
property: padding-top padding-bottom,
|
|
300
301
|
class: py,
|
|
301
|
-
values:
|
|
302
|
+
values: base.$spacers
|
|
302
303
|
),
|
|
303
304
|
"padding-top": (
|
|
304
305
|
responsive: true,
|
|
305
306
|
property: padding-top,
|
|
306
307
|
class: pt,
|
|
307
|
-
values:
|
|
308
|
+
values: base.$spacers
|
|
308
309
|
),
|
|
309
310
|
"padding-right": (
|
|
310
311
|
responsive: true,
|
|
311
312
|
property: padding-right,
|
|
312
313
|
class: pr,
|
|
313
|
-
values:
|
|
314
|
+
values: base.$spacers
|
|
314
315
|
),
|
|
315
316
|
"padding-bottom": (
|
|
316
317
|
responsive: true,
|
|
317
318
|
property: padding-bottom,
|
|
318
319
|
class: pb,
|
|
319
|
-
values:
|
|
320
|
+
values: base.$spacers
|
|
320
321
|
),
|
|
321
322
|
"padding-left": (
|
|
322
323
|
responsive: true,
|
|
323
324
|
property: padding-left,
|
|
324
325
|
class: pl,
|
|
325
|
-
values:
|
|
326
|
+
values: base.$spacers
|
|
326
327
|
),
|
|
327
328
|
"padding-start": (
|
|
328
329
|
responsive: true,
|
|
329
330
|
property: (ltr: padding-left, rtl: padding-right),
|
|
330
331
|
class: ps,
|
|
331
|
-
values:
|
|
332
|
+
values: base.$spacers
|
|
332
333
|
),
|
|
333
334
|
"padding-end": (
|
|
334
335
|
responsive: true,
|
|
335
336
|
property: (ltr: padding-right, rtl: padding-left),
|
|
336
337
|
class: pe,
|
|
337
|
-
values:
|
|
338
|
+
values: base.$spacers
|
|
338
339
|
),
|
|
339
340
|
"position": (
|
|
340
341
|
property: position,
|