@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.
@@ -1530,10 +1530,6 @@
1530
1530
  height: 10px;
1531
1531
  }
1532
1532
 
1533
- .h-\[125px\]{
1534
- height: 125px;
1535
- }
1536
-
1537
1533
  .h-\[13px\]{
1538
1534
  height: 13px;
1539
1535
  }
@@ -1574,10 +1570,6 @@
1574
1570
  height: 6px;
1575
1571
  }
1576
1572
 
1577
- .h-\[80px\]{
1578
- height: 80px;
1579
- }
1580
-
1581
1573
  .h-\[calc\(100\%\+12px\)\]{
1582
1574
  height: calc(100% + 12px);
1583
1575
  }
@@ -1784,10 +1776,6 @@
1784
1776
  width: 10px;
1785
1777
  }
1786
1778
 
1787
- .w-\[125px\]{
1788
- width: 125px;
1789
- }
1790
-
1791
1779
  .w-\[13px\]{
1792
1780
  width: 13px;
1793
1781
  }
@@ -1868,10 +1856,6 @@
1868
1856
  width: 800px;
1869
1857
  }
1870
1858
 
1871
- .w-\[80px\]{
1872
- width: 80px;
1873
- }
1874
-
1875
1859
  .w-\[calc\(100\%\+12px\)\]{
1876
1860
  width: calc(100% + 12px);
1877
1861
  }
@@ -2523,6 +2507,10 @@
2523
2507
  overflow: hidden;
2524
2508
  }
2525
2509
 
2510
+ .overflow-clip{
2511
+ overflow: clip;
2512
+ }
2513
+
2526
2514
  .overflow-visible{
2527
2515
  overflow: visible;
2528
2516
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-presets",
3
- "version": "1.0.104-alpha.6",
3
+ "version": "1.0.104-alpha.8",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Wangsit VueJS Component Library Presets",
6
6
  "main": "index.js",
@@ -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
  ? {
@@ -2327,6 +2327,7 @@ const _ = {
2327
2327
  // Shape
2328
2328
  "rounded-lg",
2329
2329
  "shadow-panel",
2330
+ "overflow-clip",
2330
2331
  // Color
2331
2332
  "bg-grayscale-100"
2332
2333
  ]
@@ -2340,8 +2341,7 @@ const _ = {
2340
2341
  // Misc
2341
2342
  "overflow-auto",
2342
2343
  {
2343
- "rounded-lg": !e.filter,
2344
- "rounded-br-lg rounded-bl-lg": e.filter
2344
+ "rounded-lg": !e.filter
2345
2345
  }
2346
2346
  ]
2347
2347
  }),
@@ -2574,11 +2574,7 @@ const _ = {
2574
2574
  { "rounded-full": e.rounded },
2575
2575
  { "rounded-lg": !e.rounded },
2576
2576
  e.class,
2577
- {
2578
- "w-[30px] h-[30px]": e.size === "small",
2579
- "w-[80px] h-[80px]": e.size === "medium",
2580
- "w-[125px] h-[125px]": !e.size && !e.width
2581
- }
2577
+ "w-max h-max"
2582
2578
  ],
2583
2579
  style: !e.size && e.width ? {
2584
2580
  width: `${e.width}px`,