@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.
Files changed (36) hide show
  1. package/dist/after-effects/display-flow.scss +3 -3
  2. package/dist/after-effects/spacing.scss +4 -5
  3. package/dist/after-effects/text.scss +3 -2
  4. package/dist/after-effects.scss +3 -3
  5. package/dist/vui.css +1 -1
  6. package/dist/vui.mjs +0 -1
  7. package/dist/vui.mjs.map +1 -1
  8. package/package.json +25 -25
  9. package/src/components/VAvatar/VAvatar.scss +1 -1
  10. package/src/components/VBreadcrumbs/VBreadcrumbs.scss +1 -0
  11. package/src/components/VButton/VButton.scss +6 -1
  12. package/src/components/VCard/VCard.scss +2 -1
  13. package/src/components/VCheckable/VCheckable.scss +1 -0
  14. package/src/components/VChip/VChip.scss +1 -1
  15. package/src/components/VControlField/VControlField.scss +5 -0
  16. package/src/components/VDataTable/VDataTable.scss +37 -34
  17. package/src/components/VFormControl/VFormControl.scss +3 -0
  18. package/src/components/VIcon/VIcon.scss +1 -0
  19. package/src/components/VListTile/VListTile.scss +1 -0
  20. package/src/components/VNavigation/VNavigation.scss +1 -0
  21. package/src/components/VOption/VOption.scss +2 -1
  22. package/src/components/VOptionGroup/VOptionGroup.scss +1 -0
  23. package/src/components/VPagination/VPagination.tsx +3 -1
  24. package/src/components/VRadio/VRadio.scss +3 -0
  25. package/src/components/VSelect/VSelect.scss +1 -0
  26. package/src/components/VSwitch/VSwitch.scss +2 -0
  27. package/src/components/VTabs/VTab.scss +3 -0
  28. package/src/components/VTabs/VTabs.tsx +0 -1
  29. package/src/components/VTextField/VTextField.scss +3 -0
  30. package/src/components/VTextarea/VTextarea.scss +1 -0
  31. package/src/components/VToolbar/VToolbarTitle.scss +3 -0
  32. package/src/components/VTooltip/VTooltip.scss +1 -0
  33. package/src/styles/core/functions.scss +1 -0
  34. package/src/styles/elevation.scss +1 -0
  35. package/src/styles/index.scss +0 -1
  36. 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 ($has-auto) {
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 ($has-negative) {
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
  }
@@ -1,3 +1,3 @@
1
- @import './after-effects/display-flow.scss';
2
- @import './after-effects/text.scss';
3
- @import './after-effects/spacing.scss';
1
+ @import './after-effects/display-flow';
2
+ @import './after-effects/text';
3
+ @import './after-effects/spacing';
package/dist/vui.css CHANGED
@@ -2216,7 +2216,7 @@
2216
2216
  margin:0;
2217
2217
  white-space:nowrap;
2218
2218
  }
2219
- @media screen and (min-width:320px){
2219
+ @media screen and (width >= 320px){
2220
2220
  .v-data-table__controls__pagination{
2221
2221
  flex:0 0 50%;
2222
2222
  width:50%;
package/dist/vui.mjs CHANGED
@@ -3520,7 +3520,6 @@ var VTabs = defineComponent({
3520
3520
  if (isPromise(result)) {
3521
3521
  result = await result;
3522
3522
  }
3523
- console.log(result);
3524
3523
  if (result === false) {
3525
3524
  return;
3526
3525
  }