@genesislcap/foundation-utils 14.5.0 → 14.6.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.
@@ -12,4 +12,14 @@ export declare enum FontWeight {
12
12
  Black = 900
13
13
  }
14
14
  export declare const getFontMixin: (family: string, style?: FontStyle, weight?: FontWeight) => string;
15
+ export declare const TypeRampValues: {
16
+ readonly minusOne: -1;
17
+ readonly minusTwo: -2;
18
+ readonly plusOne: 1;
19
+ readonly plusTwo: 2;
20
+ readonly plusThree: 3;
21
+ readonly plusFour: 4;
22
+ readonly plusFive: 5;
23
+ readonly plusSix: 6;
24
+ };
15
25
  //# sourceMappingURL=typography.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/styles/typography.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,mDAEzB,CAAC;AAEF,oBAAY,SAAS;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED,oBAAY,UAAU;IACpB,IAAI,MAAM;IACV,KAAK,MAAM;IACX,OAAO,MAAM;IACb,MAAM,MAAM;IACZ,IAAI,MAAM;IACV,KAAK,MAAM;CACZ;AAED,eAAO,MAAM,YAAY,WACf,MAAM,UACP,SAAS,WACR,UAAU,WAKnB,CAAC"}
1
+ {"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/styles/typography.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,mDAEzB,CAAC;AAEF,oBAAY,SAAS;IACnB,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;AAED,oBAAY,UAAU;IACpB,IAAI,MAAM;IACV,KAAK,MAAM;IACX,OAAO,MAAM;IACb,MAAM,MAAM;IACZ,IAAI,MAAM;IACV,KAAK,MAAM;CACZ;AAED,eAAO,MAAM,YAAY,WACf,MAAM,UACP,SAAS,WACR,UAAU,WAKnB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;CASjB,CAAC"}
@@ -21,3 +21,13 @@ export const getFontMixin = (family, style = FontStyle.Normal, weight = FontWeig
21
21
  font-style: ${style};
22
22
  font-weight: ${weight};
23
23
  `;
24
+ export const TypeRampValues = {
25
+ minusOne: -1,
26
+ minusTwo: -2,
27
+ plusOne: 1,
28
+ plusTwo: 2,
29
+ plusThree: 3,
30
+ plusFour: 4,
31
+ plusFive: 5,
32
+ plusSix: 6,
33
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.5.0",
4
+ "version": "14.6.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -88,5 +88,5 @@
88
88
  "publishConfig": {
89
89
  "access": "public"
90
90
  },
91
- "gitHead": "0b69be3bb6826011ac8571a7bbb414cdb147c29a"
91
+ "gitHead": "69dd0f17940b6867b2ac30a50c4812d33bb26072"
92
92
  }