@storm-software/config-tools 1.45.0 → 1.46.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 +24 -0
- package/index.cjs +17 -4
- package/index.js +17 -4
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
- package/utilities/logger.cjs +8 -4
- package/utilities/logger.js +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.46.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.",
|
|
6
6
|
"repository": {
|
package/utilities/logger.cjs
CHANGED
|
@@ -5584,8 +5584,9 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
5584
5584
|
// packages/config/src/schema.ts
|
|
5585
5585
|
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");
|
|
5586
5586
|
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");
|
|
5587
|
-
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The
|
|
5588
|
-
var AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).
|
|
5587
|
+
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");
|
|
5588
|
+
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");
|
|
5589
|
+
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");
|
|
5589
5590
|
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");
|
|
5590
5591
|
var InfoColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#316DCA").describe("The informational color of the workspace");
|
|
5591
5592
|
var WarningColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#fcc419").describe("The warning color of the workspace");
|
|
@@ -5596,6 +5597,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5596
5597
|
background: DarkColorSchema,
|
|
5597
5598
|
brand: BrandColorSchema,
|
|
5598
5599
|
accent: AccentColorSchema,
|
|
5600
|
+
help: HelpColorSchema,
|
|
5599
5601
|
success: SuccessColorSchema,
|
|
5600
5602
|
info: InfoColorSchema,
|
|
5601
5603
|
warning: WarningColorSchema,
|
|
@@ -5607,6 +5609,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5607
5609
|
background: LightColorSchema,
|
|
5608
5610
|
brand: BrandColorSchema,
|
|
5609
5611
|
accent: AccentColorSchema,
|
|
5612
|
+
help: HelpColorSchema,
|
|
5610
5613
|
success: SuccessColorSchema,
|
|
5611
5614
|
info: InfoColorSchema,
|
|
5612
5615
|
warning: WarningColorSchema,
|
|
@@ -5622,6 +5625,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5622
5625
|
light: LightColorSchema,
|
|
5623
5626
|
brand: BrandColorSchema,
|
|
5624
5627
|
accent: AccentColorSchema,
|
|
5628
|
+
help: HelpColorSchema,
|
|
5625
5629
|
success: SuccessColorSchema,
|
|
5626
5630
|
info: InfoColorSchema,
|
|
5627
5631
|
warning: WarningColorSchema,
|
|
@@ -5699,7 +5703,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5699
5703
|
background: "#f4f4f5",
|
|
5700
5704
|
foreground: "#1d232a",
|
|
5701
5705
|
brand: "#1fb2a6",
|
|
5702
|
-
|
|
5706
|
+
help: "#8250df",
|
|
5703
5707
|
success: "#087f5b",
|
|
5704
5708
|
info: "#0550ae",
|
|
5705
5709
|
warning: "#e3b341",
|
|
@@ -5709,7 +5713,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5709
5713
|
background: "#22272E",
|
|
5710
5714
|
foreground: "#fcfcf5",
|
|
5711
5715
|
brand: "#1fb2a6",
|
|
5712
|
-
|
|
5716
|
+
help: "#8256D0",
|
|
5713
5717
|
success: "#087f5b",
|
|
5714
5718
|
info: "#316DCA",
|
|
5715
5719
|
warning: "#F3D371",
|
package/utilities/logger.js
CHANGED
|
@@ -5569,8 +5569,9 @@ var z = /* @__PURE__ */ Object.freeze({
|
|
|
5569
5569
|
// packages/config/src/schema.ts
|
|
5570
5570
|
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");
|
|
5571
5571
|
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");
|
|
5572
|
-
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The
|
|
5573
|
-
var AccentColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).
|
|
5572
|
+
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");
|
|
5573
|
+
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");
|
|
5574
|
+
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");
|
|
5574
5575
|
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");
|
|
5575
5576
|
var InfoColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#316DCA").describe("The informational color of the workspace");
|
|
5576
5577
|
var WarningColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#fcc419").describe("The warning color of the workspace");
|
|
@@ -5581,6 +5582,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5581
5582
|
background: DarkColorSchema,
|
|
5582
5583
|
brand: BrandColorSchema,
|
|
5583
5584
|
accent: AccentColorSchema,
|
|
5585
|
+
help: HelpColorSchema,
|
|
5584
5586
|
success: SuccessColorSchema,
|
|
5585
5587
|
info: InfoColorSchema,
|
|
5586
5588
|
warning: WarningColorSchema,
|
|
@@ -5592,6 +5594,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5592
5594
|
background: LightColorSchema,
|
|
5593
5595
|
brand: BrandColorSchema,
|
|
5594
5596
|
accent: AccentColorSchema,
|
|
5597
|
+
help: HelpColorSchema,
|
|
5595
5598
|
success: SuccessColorSchema,
|
|
5596
5599
|
info: InfoColorSchema,
|
|
5597
5600
|
warning: WarningColorSchema,
|
|
@@ -5607,6 +5610,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5607
5610
|
light: LightColorSchema,
|
|
5608
5611
|
brand: BrandColorSchema,
|
|
5609
5612
|
accent: AccentColorSchema,
|
|
5613
|
+
help: HelpColorSchema,
|
|
5610
5614
|
success: SuccessColorSchema,
|
|
5611
5615
|
info: InfoColorSchema,
|
|
5612
5616
|
warning: WarningColorSchema,
|
|
@@ -5684,7 +5688,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5684
5688
|
background: "#f4f4f5",
|
|
5685
5689
|
foreground: "#1d232a",
|
|
5686
5690
|
brand: "#1fb2a6",
|
|
5687
|
-
|
|
5691
|
+
help: "#8250df",
|
|
5688
5692
|
success: "#087f5b",
|
|
5689
5693
|
info: "#0550ae",
|
|
5690
5694
|
warning: "#e3b341",
|
|
@@ -5694,7 +5698,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
5694
5698
|
background: "#22272E",
|
|
5695
5699
|
foreground: "#fcfcf5",
|
|
5696
5700
|
brand: "#1fb2a6",
|
|
5697
|
-
|
|
5701
|
+
help: "#8256D0",
|
|
5698
5702
|
success: "#087f5b",
|
|
5699
5703
|
info: "#316DCA",
|
|
5700
5704
|
warning: "#F3D371",
|