@cnc_cbz/usefultools-plugin-official 1.0.7 → 1.0.9
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 +16 -0
- package/dist/case-converter.mjs +16 -0
- package/dist/chmod-calculator.mjs +16 -0
- package/dist/color-converter.mjs +16 -0
- package/dist/cron-expression.mjs +16 -0
- package/dist/cyber-chef.mjs +16 -0
- package/dist/docker-parser.mjs +16 -0
- package/dist/hash-generator.mjs +16 -0
- package/dist/html-entity.mjs +16 -0
- package/dist/image-compressor.mjs +16 -0
- package/dist/ip-subnet.mjs +16 -0
- package/dist/js-runner.mjs +16 -0
- package/dist/json-diff.mjs +16 -0
- package/dist/json-formatter.mjs +16 -0
- package/dist/json-yaml.mjs +16 -0
- package/dist/jwt-parser.mjs +16 -0
- package/dist/lorem-ipsum.mjs +16 -0
- package/dist/markdown-preview.mjs +16 -0
- package/dist/password-generator.mjs +16 -0
- package/dist/qr-generator.mjs +16 -0
- package/dist/regex-tester.mjs +16 -0
- package/dist/sql-formatter.mjs +16 -0
- package/dist/text-diff.mjs +16 -0
- package/dist/text-stats.mjs +16 -0
- package/dist/timestamp-converter.mjs +16 -0
- package/dist/translator.mjs +247 -96
- package/dist/url-codec.mjs +16 -0
- package/dist/uuid-generator.mjs +16 -0
- package/package.json +1 -1
package/dist/url-codec.mjs
CHANGED
|
@@ -333,6 +333,10 @@ export {
|
|
|
333
333
|
top: 50%;
|
|
334
334
|
}
|
|
335
335
|
|
|
336
|
+
.right-2 {
|
|
337
|
+
right: calc(var(--spacing) * 2);
|
|
338
|
+
}
|
|
339
|
+
|
|
336
340
|
.left-2 {
|
|
337
341
|
left: calc(var(--spacing) * 2);
|
|
338
342
|
}
|
|
@@ -565,6 +569,10 @@ export {
|
|
|
565
569
|
width: calc(var(--spacing) * 5);
|
|
566
570
|
}
|
|
567
571
|
|
|
572
|
+
.w-7 {
|
|
573
|
+
width: calc(var(--spacing) * 7);
|
|
574
|
+
}
|
|
575
|
+
|
|
568
576
|
.w-8 {
|
|
569
577
|
width: calc(var(--spacing) * 8);
|
|
570
578
|
}
|
|
@@ -1300,6 +1308,10 @@ export {
|
|
|
1300
1308
|
padding-right: calc(var(--spacing) * 6);
|
|
1301
1309
|
}
|
|
1302
1310
|
|
|
1311
|
+
.pr-11 {
|
|
1312
|
+
padding-right: calc(var(--spacing) * 11);
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1303
1315
|
.pl-1\\.5 {
|
|
1304
1316
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1305
1317
|
}
|
|
@@ -1603,6 +1615,10 @@ export {
|
|
|
1603
1615
|
color: var(--color-gray-600);
|
|
1604
1616
|
}
|
|
1605
1617
|
|
|
1618
|
+
.accent-electric-blue {
|
|
1619
|
+
accent-color: var(--color-electric-blue);
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1606
1622
|
.accent-primary {
|
|
1607
1623
|
accent-color: var(--color-primary);
|
|
1608
1624
|
}
|
package/dist/uuid-generator.mjs
CHANGED
|
@@ -319,6 +319,10 @@ export {
|
|
|
319
319
|
top: 50%;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
+
.right-2 {
|
|
323
|
+
right: calc(var(--spacing) * 2);
|
|
324
|
+
}
|
|
325
|
+
|
|
322
326
|
.left-2 {
|
|
323
327
|
left: calc(var(--spacing) * 2);
|
|
324
328
|
}
|
|
@@ -551,6 +555,10 @@ export {
|
|
|
551
555
|
width: calc(var(--spacing) * 5);
|
|
552
556
|
}
|
|
553
557
|
|
|
558
|
+
.w-7 {
|
|
559
|
+
width: calc(var(--spacing) * 7);
|
|
560
|
+
}
|
|
561
|
+
|
|
554
562
|
.w-8 {
|
|
555
563
|
width: calc(var(--spacing) * 8);
|
|
556
564
|
}
|
|
@@ -1286,6 +1294,10 @@ export {
|
|
|
1286
1294
|
padding-right: calc(var(--spacing) * 6);
|
|
1287
1295
|
}
|
|
1288
1296
|
|
|
1297
|
+
.pr-11 {
|
|
1298
|
+
padding-right: calc(var(--spacing) * 11);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1289
1301
|
.pl-1\\.5 {
|
|
1290
1302
|
padding-left: calc(var(--spacing) * 1.5);
|
|
1291
1303
|
}
|
|
@@ -1589,6 +1601,10 @@ export {
|
|
|
1589
1601
|
color: var(--color-gray-600);
|
|
1590
1602
|
}
|
|
1591
1603
|
|
|
1604
|
+
.accent-electric-blue {
|
|
1605
|
+
accent-color: var(--color-electric-blue);
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1592
1608
|
.accent-primary {
|
|
1593
1609
|
accent-color: var(--color-primary);
|
|
1594
1610
|
}
|