@storm-software/config-tools 1.62.1 → 1.64.0
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/CHANGELOG.md +30 -16
- package/README.md +1 -1
- package/index.cjs +30 -4
- package/index.js +30 -4
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
- package/utilities/logger.cjs +12 -0
- package/utilities/logger.js +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.64.0",
|
|
4
4
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
package/utilities/logger.cjs
CHANGED
|
@@ -5558,6 +5558,8 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
5558
5558
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
|
|
5559
5559
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
5560
5560
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
5561
|
+
var Brand2ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
|
|
5562
|
+
var Brand3ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
5561
5563
|
var AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
5562
5564
|
var HelpColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
|
|
5563
5565
|
var SuccessColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -5569,6 +5571,8 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5569
5571
|
foreground: LightColorSchema,
|
|
5570
5572
|
background: DarkColorSchema,
|
|
5571
5573
|
brand: BrandColorSchema,
|
|
5574
|
+
brand2: Brand2ColorSchema,
|
|
5575
|
+
brand3: Brand3ColorSchema,
|
|
5572
5576
|
accent: AccentColorSchema,
|
|
5573
5577
|
help: HelpColorSchema,
|
|
5574
5578
|
success: SuccessColorSchema,
|
|
@@ -5581,6 +5585,8 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5581
5585
|
foreground: DarkColorSchema,
|
|
5582
5586
|
background: LightColorSchema,
|
|
5583
5587
|
brand: BrandColorSchema,
|
|
5588
|
+
brand2: Brand2ColorSchema,
|
|
5589
|
+
brand3: Brand3ColorSchema,
|
|
5584
5590
|
accent: AccentColorSchema,
|
|
5585
5591
|
help: HelpColorSchema,
|
|
5586
5592
|
success: SuccessColorSchema,
|
|
@@ -5597,6 +5603,8 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5597
5603
|
dark: DarkColorSchema,
|
|
5598
5604
|
light: LightColorSchema,
|
|
5599
5605
|
brand: BrandColorSchema,
|
|
5606
|
+
brand2: Brand2ColorSchema,
|
|
5607
|
+
brand3: Brand3ColorSchema,
|
|
5600
5608
|
accent: AccentColorSchema,
|
|
5601
5609
|
help: HelpColorSchema,
|
|
5602
5610
|
success: SuccessColorSchema,
|
|
@@ -5690,6 +5698,8 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5690
5698
|
background: "#f4f4f5",
|
|
5691
5699
|
foreground: "#1d232a",
|
|
5692
5700
|
brand: "#1fb2a6",
|
|
5701
|
+
brand2: "#7434DB",
|
|
5702
|
+
brand3: "#00C2CE",
|
|
5693
5703
|
help: "#8250df",
|
|
5694
5704
|
success: "#087f5b",
|
|
5695
5705
|
info: "#0550ae",
|
|
@@ -5700,6 +5710,8 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5700
5710
|
background: "#22272E",
|
|
5701
5711
|
foreground: "#fcfcf5",
|
|
5702
5712
|
brand: "#1fb2a6",
|
|
5713
|
+
brand2: "#7434DB",
|
|
5714
|
+
brand3: "#00C2CE",
|
|
5703
5715
|
help: "#8256D0",
|
|
5704
5716
|
success: "#087f5b",
|
|
5705
5717
|
info: "#316DCA",
|
package/utilities/logger.js
CHANGED
|
@@ -5542,6 +5542,8 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
5542
5542
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#22272E").describe("The dark background color of the workspace");
|
|
5543
5543
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
5544
5544
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
5545
|
+
var Brand2ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#7434DB").describe("The secondary brand specific color of the workspace");
|
|
5546
|
+
var Brand3ColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#00C2CE").describe("The tertiary brand specific color of the workspace");
|
|
5545
5547
|
var AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).optional().describe("The secondary brand specific color of the workspace");
|
|
5546
5548
|
var HelpColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#8256D0").describe("The second brand specific color of the workspace");
|
|
5547
5549
|
var SuccessColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#087f5b").describe("The success color of the workspace");
|
|
@@ -5553,6 +5555,8 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5553
5555
|
foreground: LightColorSchema,
|
|
5554
5556
|
background: DarkColorSchema,
|
|
5555
5557
|
brand: BrandColorSchema,
|
|
5558
|
+
brand2: Brand2ColorSchema,
|
|
5559
|
+
brand3: Brand3ColorSchema,
|
|
5556
5560
|
accent: AccentColorSchema,
|
|
5557
5561
|
help: HelpColorSchema,
|
|
5558
5562
|
success: SuccessColorSchema,
|
|
@@ -5565,6 +5569,8 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5565
5569
|
foreground: DarkColorSchema,
|
|
5566
5570
|
background: LightColorSchema,
|
|
5567
5571
|
brand: BrandColorSchema,
|
|
5572
|
+
brand2: Brand2ColorSchema,
|
|
5573
|
+
brand3: Brand3ColorSchema,
|
|
5568
5574
|
accent: AccentColorSchema,
|
|
5569
5575
|
help: HelpColorSchema,
|
|
5570
5576
|
success: SuccessColorSchema,
|
|
@@ -5581,6 +5587,8 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5581
5587
|
dark: DarkColorSchema,
|
|
5582
5588
|
light: LightColorSchema,
|
|
5583
5589
|
brand: BrandColorSchema,
|
|
5590
|
+
brand2: Brand2ColorSchema,
|
|
5591
|
+
brand3: Brand3ColorSchema,
|
|
5584
5592
|
accent: AccentColorSchema,
|
|
5585
5593
|
help: HelpColorSchema,
|
|
5586
5594
|
success: SuccessColorSchema,
|
|
@@ -5674,6 +5682,8 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5674
5682
|
background: "#f4f4f5",
|
|
5675
5683
|
foreground: "#1d232a",
|
|
5676
5684
|
brand: "#1fb2a6",
|
|
5685
|
+
brand2: "#7434DB",
|
|
5686
|
+
brand3: "#00C2CE",
|
|
5677
5687
|
help: "#8250df",
|
|
5678
5688
|
success: "#087f5b",
|
|
5679
5689
|
info: "#0550ae",
|
|
@@ -5684,6 +5694,8 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5684
5694
|
background: "#22272E",
|
|
5685
5695
|
foreground: "#fcfcf5",
|
|
5686
5696
|
brand: "#1fb2a6",
|
|
5697
|
+
brand2: "#7434DB",
|
|
5698
|
+
brand3: "#00C2CE",
|
|
5687
5699
|
help: "#8256D0",
|
|
5688
5700
|
success: "#087f5b",
|
|
5689
5701
|
info: "#316DCA",
|