@getcommunity/gc-validators 0.0.45 → 0.0.46

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/index.d.cts CHANGED
@@ -1,5 +1,11 @@
1
1
  import * as v from 'valibot';
2
2
 
3
+ type WebSafeFontSerif = "Arial" | "Arial Black" | "Verdana" | "Trebuchet MS" | "Tahoma" | "Geneva" | "Helvetica" | "Segoe UI" | "Impact" | "MS Serif" | "serif";
4
+ type WebSafeFontSans = "Times New Roman" | "Georgia" | "Garamond" | "Palatino" | "Book Antiqua" | "MS Sans Serif" | "sans-serif";
5
+ type WebSafeFontMono = "Courier New" | "Lucida Console" | "Monaco" | "Consolas" | "Lucida Sans Unicode" | "monospace";
6
+ type WebSafeFontDisplay = "Comic Sans MS" | "Brush Script MT" | "cursive";
7
+ type WebSafeFont = WebSafeFontSerif | WebSafeFontSans | WebSafeFontMono | WebSafeFontDisplay;
8
+
3
9
  declare const LIMIT_MIN_VALUE = 1;
4
10
  declare const LIMIT_MIN_NAME = 2;
5
11
  declare const LIMIT_MAX_DESCRIPTION = 1024;
@@ -971,11 +977,6 @@ type ComponentBrandStyleguideColor = {
971
977
  __component: string;
972
978
  } & BrandStyleguideColor;
973
979
 
974
- type WebSafeFontSerif = "Arial" | "Arial Black" | "Verdana" | "Trebuchet MS" | "Tahoma" | "Geneva" | "Helvetica" | "Segoe UI" | "Impact" | "MS Serif";
975
- type WebSafeFontSans = "Times New Roman" | "Georgia" | "Garamond" | "Palatino" | "Book Antiqua" | "MS Sans Serif";
976
- type WebSafeFontMono = "Courier New" | "Lucida Console" | "Monaco" | "Consolas" | "Lucida Sans Unicode";
977
- type WebSafeFontDisplay = "Comic Sans MS";
978
- type WebSafeFont = WebSafeFontSerif | WebSafeFontSans | WebSafeFontMono | WebSafeFontDisplay;
979
980
  type BrandStyleguideFont = {
980
981
  id: number;
981
982
  title: string;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,11 @@
1
1
  import * as v from 'valibot';
2
2
 
3
+ type WebSafeFontSerif = "Arial" | "Arial Black" | "Verdana" | "Trebuchet MS" | "Tahoma" | "Geneva" | "Helvetica" | "Segoe UI" | "Impact" | "MS Serif" | "serif";
4
+ type WebSafeFontSans = "Times New Roman" | "Georgia" | "Garamond" | "Palatino" | "Book Antiqua" | "MS Sans Serif" | "sans-serif";
5
+ type WebSafeFontMono = "Courier New" | "Lucida Console" | "Monaco" | "Consolas" | "Lucida Sans Unicode" | "monospace";
6
+ type WebSafeFontDisplay = "Comic Sans MS" | "Brush Script MT" | "cursive";
7
+ type WebSafeFont = WebSafeFontSerif | WebSafeFontSans | WebSafeFontMono | WebSafeFontDisplay;
8
+
3
9
  declare const LIMIT_MIN_VALUE = 1;
4
10
  declare const LIMIT_MIN_NAME = 2;
5
11
  declare const LIMIT_MAX_DESCRIPTION = 1024;
@@ -971,11 +977,6 @@ type ComponentBrandStyleguideColor = {
971
977
  __component: string;
972
978
  } & BrandStyleguideColor;
973
979
 
974
- type WebSafeFontSerif = "Arial" | "Arial Black" | "Verdana" | "Trebuchet MS" | "Tahoma" | "Geneva" | "Helvetica" | "Segoe UI" | "Impact" | "MS Serif";
975
- type WebSafeFontSans = "Times New Roman" | "Georgia" | "Garamond" | "Palatino" | "Book Antiqua" | "MS Sans Serif";
976
- type WebSafeFontMono = "Courier New" | "Lucida Console" | "Monaco" | "Consolas" | "Lucida Sans Unicode";
977
- type WebSafeFontDisplay = "Comic Sans MS";
978
- type WebSafeFont = WebSafeFontSerif | WebSafeFontSans | WebSafeFontMono | WebSafeFontDisplay;
979
980
  type BrandStyleguideFont = {
980
981
  id: number;
981
982
  title: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@getcommunity/gc-validators",
3
3
  "description": "Schema Validator for GetCommunity types",
4
- "version": "0.0.45",
4
+ "version": "0.0.46",
5
5
  "author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
6
6
  "contributors": [],
7
7
  "main": "dist/index.js",