@fastkit/vui 0.16.26 → 0.16.28
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/dist/after-effects/display-flow.scss +3 -3
- package/dist/after-effects/spacing.scss +4 -5
- package/dist/after-effects/text.scss +3 -2
- package/dist/after-effects.scss +3 -3
- package/dist/vui.css +1 -1
- package/dist/vui.mjs +0 -1
- package/dist/vui.mjs.map +1 -1
- package/package.json +25 -25
- package/src/components/VAvatar/VAvatar.scss +1 -1
- package/src/components/VBreadcrumbs/VBreadcrumbs.scss +1 -0
- package/src/components/VButton/VButton.scss +6 -1
- package/src/components/VCard/VCard.scss +2 -1
- package/src/components/VCheckable/VCheckable.scss +1 -0
- package/src/components/VChip/VChip.scss +1 -1
- package/src/components/VControlField/VControlField.scss +5 -0
- package/src/components/VDataTable/VDataTable.scss +37 -34
- package/src/components/VFormControl/VFormControl.scss +3 -0
- package/src/components/VIcon/VIcon.scss +1 -0
- package/src/components/VListTile/VListTile.scss +1 -0
- package/src/components/VNavigation/VNavigation.scss +1 -0
- package/src/components/VOption/VOption.scss +2 -1
- package/src/components/VOptionGroup/VOptionGroup.scss +1 -0
- package/src/components/VPagination/VPagination.tsx +3 -1
- package/src/components/VRadio/VRadio.scss +3 -0
- package/src/components/VSelect/VSelect.scss +1 -0
- package/src/components/VSwitch/VSwitch.scss +2 -0
- package/src/components/VTabs/VTab.scss +3 -0
- package/src/components/VTabs/VTabs.tsx +0 -1
- package/src/components/VTextField/VTextField.scss +3 -0
- package/src/components/VTextarea/VTextarea.scss +1 -0
- package/src/components/VToolbar/VToolbarTitle.scss +3 -0
- package/src/components/VTooltip/VTooltip.scss +1 -0
- package/src/styles/core/functions.scss +1 -0
- package/src/styles/elevation.scss +1 -0
- package/src/styles/index.scss +0 -1
- package/src/styles/variables.scss +1 -0
|
@@ -234,7 +234,6 @@ $props-map: (
|
|
|
234
234
|
('top', 'left'),
|
|
235
235
|
if($direction == 'x', ('left'), ('top'))
|
|
236
236
|
);
|
|
237
|
-
|
|
238
237
|
$suffix: if($direction == 'all', '', '-' + $direction);
|
|
239
238
|
|
|
240
239
|
@for $i from 1 through 10 {
|
|
@@ -305,6 +304,7 @@ $props-map: (
|
|
|
305
304
|
$value: map-get($value-info, value);
|
|
306
305
|
|
|
307
306
|
.#{$selector}#{$breakpoint-suffix} {
|
|
307
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
308
308
|
#{$prop}: unquote($value);
|
|
309
309
|
}
|
|
310
310
|
}
|
|
@@ -339,8 +339,8 @@ $props-map: (
|
|
|
339
339
|
@include grid-spacing($breakpoint-suffix, 'y');
|
|
340
340
|
}
|
|
341
341
|
|
|
342
|
-
@include display-flow
|
|
342
|
+
@include display-flow;
|
|
343
343
|
|
|
344
|
-
@include mq-each
|
|
344
|
+
@include mq-each {
|
|
345
345
|
@include display-flow($breakpoint-suffix: '--' + $mq-each-target);
|
|
346
346
|
}
|
|
@@ -23,7 +23,6 @@ $property-map: (
|
|
|
23
23
|
has-auto: false,
|
|
24
24
|
)
|
|
25
25
|
);
|
|
26
|
-
|
|
27
26
|
$sides-map: (
|
|
28
27
|
(
|
|
29
28
|
selector: '',
|
|
@@ -83,7 +82,7 @@ $sides-map: (
|
|
|
83
82
|
$sides-props: map-get($sides-info, props);
|
|
84
83
|
$base-selector: '.' + #{$prop-selector}#{$sides-selector};
|
|
85
84
|
|
|
86
|
-
@if
|
|
85
|
+
@if $has-auto {
|
|
87
86
|
#{$base-selector}-auto#{$breakpoint-suffix} {
|
|
88
87
|
@each $sides-prop in $sides-props {
|
|
89
88
|
$prop-suffix: if($sides-prop == 'all', '', '-' + $sides-prop);
|
|
@@ -118,7 +117,7 @@ $sides-map: (
|
|
|
118
117
|
}
|
|
119
118
|
}
|
|
120
119
|
|
|
121
|
-
@if
|
|
120
|
+
@if $has-negative {
|
|
122
121
|
@for $i from 1 through 10 {
|
|
123
122
|
$base-value: if(
|
|
124
123
|
$i == 1,
|
|
@@ -148,8 +147,8 @@ $sides-map: (
|
|
|
148
147
|
}
|
|
149
148
|
}
|
|
150
149
|
|
|
151
|
-
@include spacing
|
|
150
|
+
@include spacing;
|
|
152
151
|
|
|
153
|
-
@include mq-each
|
|
152
|
+
@include mq-each {
|
|
154
153
|
@include spacing($breakpoint-suffix: '--' + $mq-each-target);
|
|
155
154
|
}
|
|
@@ -69,6 +69,7 @@ $props-map: (
|
|
|
69
69
|
$value: map-get($value-info, value);
|
|
70
70
|
|
|
71
71
|
.#{$selector}#{$breakpoint-suffix} {
|
|
72
|
+
/* stylelint-disable-next-line scss/function-unquote-no-unquoted-strings-inside */
|
|
72
73
|
#{$prop}: unquote($value);
|
|
73
74
|
}
|
|
74
75
|
}
|
|
@@ -83,8 +84,8 @@ $props-map: (
|
|
|
83
84
|
}
|
|
84
85
|
}
|
|
85
86
|
|
|
86
|
-
@include text
|
|
87
|
+
@include text;
|
|
87
88
|
|
|
88
|
-
@include mq-each
|
|
89
|
+
@include mq-each {
|
|
89
90
|
@include text($breakpoint-suffix: '--' + $mq-each-target);
|
|
90
91
|
}
|
package/dist/after-effects.scss
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
@import './after-effects/display-flow
|
|
2
|
-
@import './after-effects/text
|
|
3
|
-
@import './after-effects/spacing
|
|
1
|
+
@import './after-effects/display-flow';
|
|
2
|
+
@import './after-effects/text';
|
|
3
|
+
@import './after-effects/spacing';
|
package/dist/vui.css
CHANGED