@cnc_cbz/usefultools-plugin-official 1.0.9 → 1.1.1
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/dist/base-converter.mjs +150 -0
- package/dist/case-converter.mjs +150 -0
- package/dist/chmod-calculator.mjs +150 -0
- package/dist/color-converter.mjs +150 -0
- package/dist/cron-expression.mjs +150 -0
- package/dist/cyber-chef.mjs +150 -0
- package/dist/docker-parser.mjs +150 -0
- package/dist/hash-generator.mjs +150 -0
- package/dist/html-entity.mjs +150 -0
- package/dist/image-compressor.mjs +150 -0
- package/dist/ip-subnet.mjs +150 -0
- package/dist/js-runner.mjs +150 -0
- package/dist/json-diff.mjs +150 -0
- package/dist/json-formatter.mjs +150 -0
- package/dist/json-yaml.mjs +150 -0
- package/dist/jwt-parser.mjs +150 -0
- package/dist/lorem-ipsum.mjs +150 -0
- package/dist/markdown-preview.mjs +150 -0
- package/dist/password-generator.mjs +150 -0
- package/dist/qr-generator.mjs +150 -0
- package/dist/regex-tester.mjs +150 -0
- package/dist/sql-formatter.mjs +150 -0
- package/dist/text-diff.mjs +381 -131
- package/dist/text-splitter.mjs +3158 -0
- package/dist/text-stats.mjs +150 -0
- package/dist/timestamp-converter.mjs +150 -0
- package/dist/translator.mjs +150 -0
- package/dist/url-codec.mjs +150 -0
- package/dist/uuid-generator.mjs +150 -0
- package/package.json +1 -1
- package/plugin.json +2 -1
package/dist/uuid-generator.mjs
CHANGED
|
@@ -303,6 +303,10 @@ export {
|
|
|
303
303
|
position: relative;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
+
.sticky {
|
|
307
|
+
position: sticky;
|
|
308
|
+
}
|
|
309
|
+
|
|
306
310
|
.inset-0 {
|
|
307
311
|
inset: calc(var(--spacing) * 0);
|
|
308
312
|
}
|
|
@@ -315,6 +319,10 @@ export {
|
|
|
315
319
|
inset-inline-end: var(--spacing);
|
|
316
320
|
}
|
|
317
321
|
|
|
322
|
+
.top-0 {
|
|
323
|
+
top: calc(var(--spacing) * 0);
|
|
324
|
+
}
|
|
325
|
+
|
|
318
326
|
.top-1\\/2 {
|
|
319
327
|
top: 50%;
|
|
320
328
|
}
|
|
@@ -327,6 +335,10 @@ export {
|
|
|
327
335
|
left: calc(var(--spacing) * 2);
|
|
328
336
|
}
|
|
329
337
|
|
|
338
|
+
.z-10 {
|
|
339
|
+
z-index: 10;
|
|
340
|
+
}
|
|
341
|
+
|
|
330
342
|
.z-50 {
|
|
331
343
|
z-index: 50;
|
|
332
344
|
}
|
|
@@ -359,6 +371,10 @@ export {
|
|
|
359
371
|
margin-top: calc(var(--spacing) * 3);
|
|
360
372
|
}
|
|
361
373
|
|
|
374
|
+
.mt-4 {
|
|
375
|
+
margin-top: calc(var(--spacing) * 4);
|
|
376
|
+
}
|
|
377
|
+
|
|
362
378
|
.mr-1 {
|
|
363
379
|
margin-right: calc(var(--spacing) * 1);
|
|
364
380
|
}
|
|
@@ -475,6 +491,10 @@ export {
|
|
|
475
491
|
height: calc(var(--spacing) * 10);
|
|
476
492
|
}
|
|
477
493
|
|
|
494
|
+
.h-11 {
|
|
495
|
+
height: calc(var(--spacing) * 11);
|
|
496
|
+
}
|
|
497
|
+
|
|
478
498
|
.h-12 {
|
|
479
499
|
height: calc(var(--spacing) * 12);
|
|
480
500
|
}
|
|
@@ -491,6 +511,10 @@ export {
|
|
|
491
511
|
height: 100%;
|
|
492
512
|
}
|
|
493
513
|
|
|
514
|
+
.max-h-28 {
|
|
515
|
+
max-height: calc(var(--spacing) * 28);
|
|
516
|
+
}
|
|
517
|
+
|
|
494
518
|
.max-h-36 {
|
|
495
519
|
max-height: calc(var(--spacing) * 36);
|
|
496
520
|
}
|
|
@@ -511,6 +535,10 @@ export {
|
|
|
511
535
|
max-height: 200px;
|
|
512
536
|
}
|
|
513
537
|
|
|
538
|
+
.max-h-\\[420px\\] {
|
|
539
|
+
max-height: 420px;
|
|
540
|
+
}
|
|
541
|
+
|
|
514
542
|
.max-h-full {
|
|
515
543
|
max-height: 100%;
|
|
516
544
|
}
|
|
@@ -531,6 +559,22 @@ export {
|
|
|
531
559
|
min-height: 200px;
|
|
532
560
|
}
|
|
533
561
|
|
|
562
|
+
.min-h-\\[260px\\] {
|
|
563
|
+
min-height: 260px;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.min-h-\\[320px\\] {
|
|
567
|
+
min-height: 320px;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.min-h-full {
|
|
571
|
+
min-height: 100%;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.w-1 {
|
|
575
|
+
width: calc(var(--spacing) * 1);
|
|
576
|
+
}
|
|
577
|
+
|
|
534
578
|
.w-1\\.5 {
|
|
535
579
|
width: calc(var(--spacing) * 1.5);
|
|
536
580
|
}
|
|
@@ -595,6 +639,10 @@ export {
|
|
|
595
639
|
width: calc(var(--spacing) * 32);
|
|
596
640
|
}
|
|
597
641
|
|
|
642
|
+
.w-56 {
|
|
643
|
+
width: calc(var(--spacing) * 56);
|
|
644
|
+
}
|
|
645
|
+
|
|
598
646
|
.w-72 {
|
|
599
647
|
width: calc(var(--spacing) * 72);
|
|
600
648
|
}
|
|
@@ -635,6 +683,10 @@ export {
|
|
|
635
683
|
flex-shrink: 0;
|
|
636
684
|
}
|
|
637
685
|
|
|
686
|
+
.table-fixed {
|
|
687
|
+
table-layout: fixed;
|
|
688
|
+
}
|
|
689
|
+
|
|
638
690
|
.border-collapse {
|
|
639
691
|
border-collapse: collapse;
|
|
640
692
|
}
|
|
@@ -654,6 +706,10 @@ export {
|
|
|
654
706
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
655
707
|
}
|
|
656
708
|
|
|
709
|
+
.scale-\\[0\\.98\\] {
|
|
710
|
+
scale: .98;
|
|
711
|
+
}
|
|
712
|
+
|
|
657
713
|
.transform {
|
|
658
714
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
659
715
|
}
|
|
@@ -674,6 +730,10 @@ export {
|
|
|
674
730
|
cursor: pointer;
|
|
675
731
|
}
|
|
676
732
|
|
|
733
|
+
.touch-none {
|
|
734
|
+
touch-action: none;
|
|
735
|
+
}
|
|
736
|
+
|
|
677
737
|
.resize {
|
|
678
738
|
resize: both;
|
|
679
739
|
}
|
|
@@ -682,6 +742,10 @@ export {
|
|
|
682
742
|
resize: none;
|
|
683
743
|
}
|
|
684
744
|
|
|
745
|
+
.resize-y {
|
|
746
|
+
resize: vertical;
|
|
747
|
+
}
|
|
748
|
+
|
|
685
749
|
.appearance-none {
|
|
686
750
|
appearance: none;
|
|
687
751
|
}
|
|
@@ -722,6 +786,10 @@ export {
|
|
|
722
786
|
align-items: center;
|
|
723
787
|
}
|
|
724
788
|
|
|
789
|
+
.items-stretch {
|
|
790
|
+
align-items: stretch;
|
|
791
|
+
}
|
|
792
|
+
|
|
725
793
|
.justify-between {
|
|
726
794
|
justify-content: space-between;
|
|
727
795
|
}
|
|
@@ -786,6 +854,12 @@ export {
|
|
|
786
854
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
787
855
|
}
|
|
788
856
|
|
|
857
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
858
|
+
--tw-space-y-reverse: 0;
|
|
859
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
860
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
861
|
+
}
|
|
862
|
+
|
|
789
863
|
.gap-x-6 {
|
|
790
864
|
column-gap: calc(var(--spacing) * 6);
|
|
791
865
|
}
|
|
@@ -808,6 +882,10 @@ export {
|
|
|
808
882
|
overflow: hidden;
|
|
809
883
|
}
|
|
810
884
|
|
|
885
|
+
.overflow-x-auto {
|
|
886
|
+
overflow-x: auto;
|
|
887
|
+
}
|
|
888
|
+
|
|
811
889
|
.overflow-y-auto {
|
|
812
890
|
overflow-y: auto;
|
|
813
891
|
}
|
|
@@ -847,6 +925,11 @@ export {
|
|
|
847
925
|
border-width: 4px;
|
|
848
926
|
}
|
|
849
927
|
|
|
928
|
+
.border-t-2 {
|
|
929
|
+
border-top-style: var(--tw-border-style);
|
|
930
|
+
border-top-width: 2px;
|
|
931
|
+
}
|
|
932
|
+
|
|
850
933
|
.border-r {
|
|
851
934
|
border-right-style: var(--tw-border-style);
|
|
852
935
|
border-right-width: 1px;
|
|
@@ -876,6 +959,16 @@ export {
|
|
|
876
959
|
border-color: var(--color-black);
|
|
877
960
|
}
|
|
878
961
|
|
|
962
|
+
.border-black\\/30 {
|
|
963
|
+
border-color: #0000004d;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
967
|
+
.border-black\\/30 {
|
|
968
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
969
|
+
}
|
|
970
|
+
}
|
|
971
|
+
|
|
879
972
|
.border-coral-red {
|
|
880
973
|
border-color: var(--color-coral-red);
|
|
881
974
|
}
|
|
@@ -1118,6 +1211,16 @@ export {
|
|
|
1118
1211
|
}
|
|
1119
1212
|
}
|
|
1120
1213
|
|
|
1214
|
+
.bg-primary\\/30 {
|
|
1215
|
+
background-color: #f9b11f4d;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1219
|
+
.bg-primary\\/30 {
|
|
1220
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
1221
|
+
}
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1121
1224
|
.bg-transparent {
|
|
1122
1225
|
background-color: #0000;
|
|
1123
1226
|
}
|
|
@@ -1266,6 +1369,10 @@ export {
|
|
|
1266
1369
|
padding-block: calc(var(--spacing) * 3);
|
|
1267
1370
|
}
|
|
1268
1371
|
|
|
1372
|
+
.py-4 {
|
|
1373
|
+
padding-block: calc(var(--spacing) * 4);
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1269
1376
|
.py-6 {
|
|
1270
1377
|
padding-block: calc(var(--spacing) * 6);
|
|
1271
1378
|
}
|
|
@@ -1274,6 +1381,10 @@ export {
|
|
|
1274
1381
|
padding-block: calc(var(--spacing) * 8);
|
|
1275
1382
|
}
|
|
1276
1383
|
|
|
1384
|
+
.pt-3 {
|
|
1385
|
+
padding-top: calc(var(--spacing) * 3);
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1277
1388
|
.pr-1 {
|
|
1278
1389
|
padding-right: calc(var(--spacing) * 1);
|
|
1279
1390
|
}
|
|
@@ -1298,6 +1409,14 @@ export {
|
|
|
1298
1409
|
padding-right: calc(var(--spacing) * 11);
|
|
1299
1410
|
}
|
|
1300
1411
|
|
|
1412
|
+
.pb-1 {
|
|
1413
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
.pb-2 {
|
|
1417
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1301
1420
|
.pl-1\\.5 {
|
|
1302
1421
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1303
1422
|
}
|
|
@@ -1338,6 +1457,10 @@ export {
|
|
|
1338
1457
|
vertical-align: middle;
|
|
1339
1458
|
}
|
|
1340
1459
|
|
|
1460
|
+
.align-top {
|
|
1461
|
+
vertical-align: top;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1341
1464
|
.font-mono {
|
|
1342
1465
|
font-family: var(--font-mono);
|
|
1343
1466
|
}
|
|
@@ -1399,6 +1522,11 @@ export {
|
|
|
1399
1522
|
line-height: calc(var(--spacing) * 6);
|
|
1400
1523
|
}
|
|
1401
1524
|
|
|
1525
|
+
.leading-7 {
|
|
1526
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
1527
|
+
line-height: calc(var(--spacing) * 7);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1402
1530
|
.leading-none {
|
|
1403
1531
|
--tw-leading: 1;
|
|
1404
1532
|
line-height: 1;
|
|
@@ -1429,6 +1557,10 @@ export {
|
|
|
1429
1557
|
letter-spacing: var(--tracking-widest);
|
|
1430
1558
|
}
|
|
1431
1559
|
|
|
1560
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
1561
|
+
overflow-wrap: anywhere;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1432
1564
|
.break-all {
|
|
1433
1565
|
word-break: break-all;
|
|
1434
1566
|
}
|
|
@@ -1625,6 +1757,10 @@ export {
|
|
|
1625
1757
|
opacity: .7;
|
|
1626
1758
|
}
|
|
1627
1759
|
|
|
1760
|
+
.opacity-100 {
|
|
1761
|
+
opacity: 1;
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1628
1764
|
.shadow-hard {
|
|
1629
1765
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
1630
1766
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1868,6 +2004,11 @@ export {
|
|
|
1868
2004
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1869
2005
|
}
|
|
1870
2006
|
|
|
2007
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
2008
|
+
--tw-translate-x: 2px;
|
|
2009
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2010
|
+
}
|
|
2011
|
+
|
|
1871
2012
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
1872
2013
|
--tw-translate-x: 4px;
|
|
1873
2014
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1878,6 +2019,11 @@ export {
|
|
|
1878
2019
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1879
2020
|
}
|
|
1880
2021
|
|
|
2022
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
2023
|
+
--tw-translate-y: 2px;
|
|
2024
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2025
|
+
}
|
|
2026
|
+
|
|
1881
2027
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
1882
2028
|
--tw-translate-y: 4px;
|
|
1883
2029
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1954,6 +2100,10 @@ export {
|
|
|
1954
2100
|
.xl\\:grid-cols-3 {
|
|
1955
2101
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1956
2102
|
}
|
|
2103
|
+
|
|
2104
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
2105
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
2106
|
+
}
|
|
1957
2107
|
}
|
|
1958
2108
|
}
|
|
1959
2109
|
|
package/package.json
CHANGED
package/plugin.json
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
{ "id": "ip-subnet", "version": "1.0.0", "author": "UsefulTools", "icon": "lan", "title": "IP/子网<br/>计算器", "subtitle": "IP子网计算器", "description": "子网掩码计算、IP 范围查询", "bgColor": "bg-vibrant-purple", "categories": ["转换解析"], "requires": [], "bundle": "dist/ip-subnet.mjs" },
|
|
28
28
|
{ "id": "text-stats", "version": "1.0.0", "author": "UsefulTools", "icon": "analytics", "title": "文本<br/>统计", "subtitle": "文本统计", "description": "字数、字符数、行数、词频统计", "bgColor": "bg-neon-green", "textColor": "text-black", "categories": ["文本处理"], "requires": [], "bundle": "dist/text-stats.mjs" },
|
|
29
29
|
{ "id": "chmod-calculator", "version": "1.0.0", "author": "UsefulTools", "icon": "security", "title": "Chmod<br/>计算器", "subtitle": "Chmod权限计算器", "description": "Unix文件权限计算,八进制/符号互转", "bgColor": "bg-coral-red", "categories": ["转换解析"], "requires": [], "bundle": "dist/chmod-calculator.mjs" },
|
|
30
|
-
{ "id": "docker-parser", "version": "1.0.0", "author": "UsefulTools", "icon": "directions_boat", "title": "Docker<br/>解析器", "subtitle": "Docker命令解析", "description": "解析 Docker/Compose 命令,逐参数中文说明", "bgColor": "bg-electric-blue", "categories": ["编码开发"], "requires": [], "bundle": "dist/docker-parser.mjs" }
|
|
30
|
+
{ "id": "docker-parser", "version": "1.0.0", "author": "UsefulTools", "icon": "directions_boat", "title": "Docker<br/>解析器", "subtitle": "Docker命令解析", "description": "解析 Docker/Compose 命令,逐参数中文说明", "bgColor": "bg-electric-blue", "categories": ["编码开发"], "requires": [], "bundle": "dist/docker-parser.mjs" },
|
|
31
|
+
{ "id": "text-splitter", "version": "1.0.0", "author": "UsefulTools", "icon": "view_column", "title": "文本<br/>分割", "subtitle": "文本分割", "description": "按分隔符拆列,支持列顺序重排与导出", "bgColor": "bg-hot-pink", "categories": ["文本处理"], "requires": [], "bundle": "dist/text-splitter.mjs" }
|
|
31
32
|
]
|
|
32
33
|
}
|