@fewangsit/wangsvue-presets 1.0.104-alpha.6 → 1.0.104-alpha.8

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.
@@ -38,7 +38,6 @@ declare namespace _default {
38
38
  }): {
39
39
  class: (string | {
40
40
  'rounded-lg': boolean;
41
- 'rounded-br-lg rounded-bl-lg': any;
42
41
  })[];
43
42
  };
44
43
  function virtualScroller({ props }: {
@@ -87,6 +87,7 @@ exports.default = {
87
87
  // Shape
88
88
  'rounded-lg',
89
89
  'shadow-panel',
90
+ 'overflow-clip',
90
91
  // Color
91
92
  'bg-grayscale-100',
92
93
  ],
@@ -104,7 +105,6 @@ exports.default = {
104
105
  'overflow-auto',
105
106
  {
106
107
  'rounded-lg': !props.filter,
107
- 'rounded-br-lg rounded-bl-lg': props.filter,
108
108
  },
109
109
  ],
110
110
  });
@@ -10,11 +10,7 @@ exports.default = {
10
10
  { 'rounded-full': props.rounded },
11
11
  { 'rounded-lg': !props.rounded },
12
12
  props.class,
13
- {
14
- 'w-[30px] h-[30px]': props.size === 'small',
15
- 'w-[80px] h-[80px]': props.size === 'medium',
16
- 'w-[125px] h-[125px]': !props.size && !props.width,
17
- },
13
+ 'w-max h-max',
18
14
  ],
19
15
  style: !props.size && props.width
20
16
  ? {
@@ -3428,6 +3428,7 @@ const T = {
3428
3428
  // Shape
3429
3429
  "rounded-lg",
3430
3430
  "shadow-panel",
3431
+ "overflow-clip",
3431
3432
  // Color
3432
3433
  "bg-grayscale-100"
3433
3434
  ]
@@ -3441,8 +3442,7 @@ const T = {
3441
3442
  // Misc
3442
3443
  "overflow-auto",
3443
3444
  {
3444
- "rounded-lg": !e.filter,
3445
- "rounded-br-lg rounded-bl-lg": e.filter
3445
+ "rounded-lg": !e.filter
3446
3446
  }
3447
3447
  ]
3448
3448
  }),
@@ -3756,11 +3756,7 @@ const T = {
3756
3756
  { "rounded-full": e.rounded },
3757
3757
  { "rounded-lg": !e.rounded },
3758
3758
  e.class,
3759
- {
3760
- "w-[30px] h-[30px]": e.size === "small",
3761
- "w-[80px] h-[80px]": e.size === "medium",
3762
- "w-[125px] h-[125px]": !e.size && !e.width
3763
- }
3759
+ "w-max h-max"
3764
3760
  ],
3765
3761
  style: !e.size && e.width ? {
3766
3762
  width: `${e.width}px`,