@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.
- package/fixedasset/dropdown/index.d.ts +0 -1
- package/fixedasset/dropdown/index.js +1 -1
- package/fixedasset/image/index.js +1 -5
- package/fixedasset/index.es.js +3 -7
- package/fixedasset/index.system.js +2 -2
- package/fixedasset/style.css +4 -16
- package/globalsettings/dropdown/index.d.ts +0 -1
- package/globalsettings/dropdown/index.js +0 -1
- package/globalsettings/image/index.js +1 -5
- package/globalsettings/index.es.js +2 -7
- package/globalsettings/index.system.js +2 -2
- package/globalsettings/style.css +4 -16
- package/package.json +1 -1
- package/supplyasset/dropdown/index.d.ts +0 -1
- package/supplyasset/dropdown/index.js +1 -1
- package/supplyasset/image/index.js +1 -5
- package/supplyasset/index.es.js +3 -7
- package/supplyasset/index.system.js +2 -2
- package/supplyasset/style.css +4 -16
- package/wangsvue/dropdown/index.d.ts +0 -1
- package/wangsvue/dropdown/index.js +0 -1
- package/wangsvue/image/index.js +1 -5
- package/wangsvue/index.es.js +28 -33
- package/wangsvue/index.system.js +2 -2
- package/wangsvue/style.css +4 -16
package/fixedasset/style.css
CHANGED
|
@@ -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
|
}
|
|
@@ -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`,
|