@bcgov/design-tokens 3.1.1-pr470 → 3.1.1
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/cjs/index.d.ts +2 -0
- package/cjs/index.js +1 -0
- package/cjs-prefixed/index.d.ts +2 -0
- package/cjs-prefixed/index.js +1 -0
- package/css/variables.css +1 -0
- package/css-prefixed/variables.css +1 -0
- package/js/index.d.ts +2 -0
- package/js/index.js +1 -0
- package/js-prefixed/index.d.ts +2 -0
- package/js-prefixed/index.js +1 -0
- package/package.json +1 -1
package/cjs/index.d.ts
CHANGED
|
@@ -188,6 +188,8 @@ export const typographyLineHeightsAuto : string;
|
|
|
188
188
|
export const typographyFontWeightsRegular : number;
|
|
189
189
|
/** System token, used to generate text styles */
|
|
190
190
|
export const typographyFontWeightsBold : number;
|
|
191
|
+
/** DEPRECATED - will be removed in next major version. */
|
|
192
|
+
export const typographyFontWeightsItalic : string;
|
|
191
193
|
/** System token, used to generate text styles */
|
|
192
194
|
export const typographyFontWeightsItalicWeight : number;
|
|
193
195
|
/** System token, used to generate text styles */
|
package/cjs/index.js
CHANGED
|
@@ -114,6 +114,7 @@ module.exports = {
|
|
|
114
114
|
"typographyLineHeightsAuto": "AUTO",
|
|
115
115
|
"typographyFontWeightsRegular": 400,
|
|
116
116
|
"typographyFontWeightsBold": 700,
|
|
117
|
+
"typographyFontWeightsItalic": "Italic", // DEPRECATED - will be removed in next major version.
|
|
117
118
|
"typographyFontWeightsItalicWeight": 400,
|
|
118
119
|
"typographyFontWeightsItalicStyle": "italic",
|
|
119
120
|
"typographyFontSizeLabel": "0.75rem",
|
package/cjs-prefixed/index.d.ts
CHANGED
|
@@ -188,6 +188,8 @@ export const bcdsTypographyLineHeightsAuto : string;
|
|
|
188
188
|
export const bcdsTypographyFontWeightsRegular : number;
|
|
189
189
|
/** System token, used to generate text styles */
|
|
190
190
|
export const bcdsTypographyFontWeightsBold : number;
|
|
191
|
+
/** DEPRECATED - will be removed in next major version. */
|
|
192
|
+
export const bcdsTypographyFontWeightsItalic : string;
|
|
191
193
|
/** System token, used to generate text styles */
|
|
192
194
|
export const bcdsTypographyFontWeightsItalicWeight : number;
|
|
193
195
|
/** System token, used to generate text styles */
|
package/cjs-prefixed/index.js
CHANGED
|
@@ -114,6 +114,7 @@ module.exports = {
|
|
|
114
114
|
"bcdsTypographyLineHeightsAuto": "AUTO",
|
|
115
115
|
"bcdsTypographyFontWeightsRegular": 400,
|
|
116
116
|
"bcdsTypographyFontWeightsBold": 700,
|
|
117
|
+
"bcdsTypographyFontWeightsItalic": "Italic", // DEPRECATED - will be removed in next major version.
|
|
117
118
|
"bcdsTypographyFontWeightsItalicWeight": 400,
|
|
118
119
|
"bcdsTypographyFontWeightsItalicStyle": "italic",
|
|
119
120
|
"bcdsTypographyFontSizeLabel": "0.75rem",
|
package/css/variables.css
CHANGED
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
--typography-line-heights-auto: AUTO; /* System token, used to generate type styles */
|
|
115
115
|
--typography-font-weights-regular: 400; /* System token, used to generate text styles */
|
|
116
116
|
--typography-font-weights-bold: 700; /* System token, used to generate text styles */
|
|
117
|
+
--typography-font-weights-italic: Italic; /* DEPRECATED - will be removed in next major version. */
|
|
117
118
|
--typography-font-weights-italic-weight: 400; /* System token, used to generate text styles */
|
|
118
119
|
--typography-font-weights-italic-style: italic; /* System token, used to generate text styles */
|
|
119
120
|
--typography-font-size-label: 0.75rem;
|
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
--bcds-typography-line-heights-auto: AUTO; /* System token, used to generate type styles */
|
|
115
115
|
--bcds-typography-font-weights-regular: 400; /* System token, used to generate text styles */
|
|
116
116
|
--bcds-typography-font-weights-bold: 700; /* System token, used to generate text styles */
|
|
117
|
+
--bcds-typography-font-weights-italic: Italic; /* DEPRECATED - will be removed in next major version. */
|
|
117
118
|
--bcds-typography-font-weights-italic-weight: 400; /* System token, used to generate text styles */
|
|
118
119
|
--bcds-typography-font-weights-italic-style: italic; /* System token, used to generate text styles */
|
|
119
120
|
--bcds-typography-font-size-label: 0.75rem;
|
package/js/index.d.ts
CHANGED
|
@@ -188,6 +188,8 @@ export const typographyLineHeightsAuto : string;
|
|
|
188
188
|
export const typographyFontWeightsRegular : number;
|
|
189
189
|
/** System token, used to generate text styles */
|
|
190
190
|
export const typographyFontWeightsBold : number;
|
|
191
|
+
/** DEPRECATED - will be removed in next major version. */
|
|
192
|
+
export const typographyFontWeightsItalic : string;
|
|
191
193
|
/** System token, used to generate text styles */
|
|
192
194
|
export const typographyFontWeightsItalicWeight : number;
|
|
193
195
|
/** System token, used to generate text styles */
|
package/js/index.js
CHANGED
|
@@ -113,6 +113,7 @@ export const typographyLineHeightsXxsparse = "3.375rem"; // Largest line height
|
|
|
113
113
|
export const typographyLineHeightsAuto = "AUTO"; // System token, used to generate type styles
|
|
114
114
|
export const typographyFontWeightsRegular = 400; // System token, used to generate text styles
|
|
115
115
|
export const typographyFontWeightsBold = 700; // System token, used to generate text styles
|
|
116
|
+
export const typographyFontWeightsItalic = "Italic"; // DEPRECATED - will be removed in next major version.
|
|
116
117
|
export const typographyFontWeightsItalicWeight = 400; // System token, used to generate text styles
|
|
117
118
|
export const typographyFontWeightsItalicStyle = "italic"; // System token, used to generate text styles
|
|
118
119
|
export const typographyFontSizeLabel = "0.75rem";
|
package/js-prefixed/index.d.ts
CHANGED
|
@@ -188,6 +188,8 @@ export const bcdsTypographyLineHeightsAuto : string;
|
|
|
188
188
|
export const bcdsTypographyFontWeightsRegular : number;
|
|
189
189
|
/** System token, used to generate text styles */
|
|
190
190
|
export const bcdsTypographyFontWeightsBold : number;
|
|
191
|
+
/** DEPRECATED - will be removed in next major version. */
|
|
192
|
+
export const bcdsTypographyFontWeightsItalic : string;
|
|
191
193
|
/** System token, used to generate text styles */
|
|
192
194
|
export const bcdsTypographyFontWeightsItalicWeight : number;
|
|
193
195
|
/** System token, used to generate text styles */
|
package/js-prefixed/index.js
CHANGED
|
@@ -113,6 +113,7 @@ export const bcdsTypographyLineHeightsXxsparse = "3.375rem"; // Largest line hei
|
|
|
113
113
|
export const bcdsTypographyLineHeightsAuto = "AUTO"; // System token, used to generate type styles
|
|
114
114
|
export const bcdsTypographyFontWeightsRegular = 400; // System token, used to generate text styles
|
|
115
115
|
export const bcdsTypographyFontWeightsBold = 700; // System token, used to generate text styles
|
|
116
|
+
export const bcdsTypographyFontWeightsItalic = "Italic"; // DEPRECATED - will be removed in next major version.
|
|
116
117
|
export const bcdsTypographyFontWeightsItalicWeight = 400; // System token, used to generate text styles
|
|
117
118
|
export const bcdsTypographyFontWeightsItalicStyle = "italic"; // System token, used to generate text styles
|
|
118
119
|
export const bcdsTypographyFontSizeLabel = "0.75rem";
|