@storm-software/config-tools 1.45.1 → 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 +12 -0
- package/index.cjs +14 -1
- package/index.js +14 -1
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
- package/utilities/logger.cjs +5 -1
- package/utilities/logger.js +5 -1
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,7 +5584,8 @@ 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
|
|
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");
|
|
5588
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");
|
|
@@ -5595,6 +5596,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5595
5596
|
foreground: LightColorSchema,
|
|
5596
5597
|
background: DarkColorSchema,
|
|
5597
5598
|
brand: BrandColorSchema,
|
|
5599
|
+
accent: AccentColorSchema,
|
|
5598
5600
|
help: HelpColorSchema,
|
|
5599
5601
|
success: SuccessColorSchema,
|
|
5600
5602
|
info: InfoColorSchema,
|
|
@@ -5606,6 +5608,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5606
5608
|
foreground: DarkColorSchema,
|
|
5607
5609
|
background: LightColorSchema,
|
|
5608
5610
|
brand: BrandColorSchema,
|
|
5611
|
+
accent: AccentColorSchema,
|
|
5609
5612
|
help: HelpColorSchema,
|
|
5610
5613
|
success: SuccessColorSchema,
|
|
5611
5614
|
info: InfoColorSchema,
|
|
@@ -5621,6 +5624,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5621
5624
|
dark: DarkColorSchema,
|
|
5622
5625
|
light: LightColorSchema,
|
|
5623
5626
|
brand: BrandColorSchema,
|
|
5627
|
+
accent: AccentColorSchema,
|
|
5624
5628
|
help: HelpColorSchema,
|
|
5625
5629
|
success: SuccessColorSchema,
|
|
5626
5630
|
info: InfoColorSchema,
|
package/utilities/logger.js
CHANGED
|
@@ -5569,7 +5569,8 @@ 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
|
|
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");
|
|
5573
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");
|
|
@@ -5580,6 +5581,7 @@ var DarkThemeColorConfigSchema = z.object({
|
|
|
5580
5581
|
foreground: LightColorSchema,
|
|
5581
5582
|
background: DarkColorSchema,
|
|
5582
5583
|
brand: BrandColorSchema,
|
|
5584
|
+
accent: AccentColorSchema,
|
|
5583
5585
|
help: HelpColorSchema,
|
|
5584
5586
|
success: SuccessColorSchema,
|
|
5585
5587
|
info: InfoColorSchema,
|
|
@@ -5591,6 +5593,7 @@ var LightThemeColorConfigSchema = z.object({
|
|
|
5591
5593
|
foreground: DarkColorSchema,
|
|
5592
5594
|
background: LightColorSchema,
|
|
5593
5595
|
brand: BrandColorSchema,
|
|
5596
|
+
accent: AccentColorSchema,
|
|
5594
5597
|
help: HelpColorSchema,
|
|
5595
5598
|
success: SuccessColorSchema,
|
|
5596
5599
|
info: InfoColorSchema,
|
|
@@ -5606,6 +5609,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
5606
5609
|
dark: DarkColorSchema,
|
|
5607
5610
|
light: LightColorSchema,
|
|
5608
5611
|
brand: BrandColorSchema,
|
|
5612
|
+
accent: AccentColorSchema,
|
|
5609
5613
|
help: HelpColorSchema,
|
|
5610
5614
|
success: SuccessColorSchema,
|
|
5611
5615
|
info: InfoColorSchema,
|