@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.
@@ -1534,10 +1534,6 @@
1534
1534
  height: 10px;
1535
1535
  }
1536
1536
 
1537
- .h-\[125px\]{
1538
- height: 125px;
1539
- }
1540
-
1541
1537
  .h-\[13px\]{
1542
1538
  height: 13px;
1543
1539
  }
@@ -1578,10 +1574,6 @@
1578
1574
  height: 6px;
1579
1575
  }
1580
1576
 
1581
- .h-\[80px\]{
1582
- height: 80px;
1583
- }
1584
-
1585
1577
  .h-\[calc\(100\%\+12px\)\]{
1586
1578
  height: calc(100% + 12px);
1587
1579
  }
@@ -1788,10 +1780,6 @@
1788
1780
  width: 10px;
1789
1781
  }
1790
1782
 
1791
- .w-\[125px\]{
1792
- width: 125px;
1793
- }
1794
-
1795
1783
  .w-\[13px\]{
1796
1784
  width: 13px;
1797
1785
  }
@@ -1872,10 +1860,6 @@
1872
1860
  width: 800px;
1873
1861
  }
1874
1862
 
1875
- .w-\[80px\]{
1876
- width: 80px;
1877
- }
1878
-
1879
1863
  .w-\[calc\(100\%\+12px\)\]{
1880
1864
  width: calc(100% + 12px);
1881
1865
  }
@@ -2527,6 +2511,10 @@
2527
2511
  overflow: hidden;
2528
2512
  }
2529
2513
 
2514
+ .overflow-clip{
2515
+ overflow: clip;
2516
+ }
2517
+
2530
2518
  .overflow-visible{
2531
2519
  overflow: visible;
2532
2520
  }
@@ -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 }: {
@@ -104,7 +104,6 @@ exports.default = {
104
104
  'overflow-auto',
105
105
  {
106
106
  'rounded-lg': !props.filter,
107
- 'rounded-br-lg rounded-bl-lg': props.filter,
108
107
  },
109
108
  ],
110
109
  });
@@ -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
  ? {
@@ -2361,8 +2361,7 @@ const A = {
2361
2361
  // Misc
2362
2362
  "overflow-auto",
2363
2363
  {
2364
- "rounded-lg": !e.filter,
2365
- "rounded-br-lg rounded-bl-lg": e.filter
2364
+ "rounded-lg": !e.filter
2366
2365
  }
2367
2366
  ]
2368
2367
  }),
@@ -2595,11 +2594,7 @@ const A = {
2595
2594
  { "rounded-full": e.rounded },
2596
2595
  { "rounded-lg": !e.rounded },
2597
2596
  e.class,
2598
- {
2599
- "w-[30px] h-[30px]": e.size === "small",
2600
- "w-[80px] h-[80px]": e.size === "medium",
2601
- "w-[125px] h-[125px]": !e.size && !e.width
2602
- }
2597
+ "w-max h-max"
2603
2598
  ],
2604
2599
  style: !e.size && e.width ? {
2605
2600
  width: `${e.width}px`,