@reuters-graphics/graphics-components 1.0.2 → 1.0.4
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.
|
@@ -2,8 +2,8 @@ interface EndNote {
|
|
|
2
2
|
Title: String;
|
|
3
3
|
Text: String;
|
|
4
4
|
}
|
|
5
|
-
type
|
|
6
|
-
export declare const getEndNotesPropsFromDoc: (
|
|
5
|
+
type EndNotes = EndNote[];
|
|
6
|
+
export declare const getEndNotesPropsFromDoc: (endNotes: EndNotes) => {
|
|
7
7
|
title: String;
|
|
8
8
|
text: String;
|
|
9
9
|
}[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reuters-graphics/graphics-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://reuters-graphics.github.io/graphics-components",
|
|
@@ -266,7 +266,6 @@
|
|
|
266
266
|
"./scss/colours/primary/violet": "./dist/scss/colours/primary/_violet.scss",
|
|
267
267
|
"./scss/colours/primary/yellow": "./dist/scss/colours/primary/_yellow.scss",
|
|
268
268
|
"./scss/colours/primary/zinc": "./dist/scss/colours/primary/_zinc.scss",
|
|
269
|
-
"./scss/colours/thematic/grey": "./dist/scss/colours/thematic/_grey.scss",
|
|
270
269
|
"./scss/colours/thematic/nord": "./dist/scss/colours/thematic/_nord.scss",
|
|
271
270
|
"./scss/colours/thematic/tr": "./dist/scss/colours/thematic/_tr.scss",
|
|
272
271
|
"./scss/fonts/font-faces": "./dist/scss/fonts/_font-faces.scss",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--grey-50: #f9fafb;
|
|
3
|
-
--grey-100: #f3f4f6;
|
|
4
|
-
--grey-200: #e5e7eb;
|
|
5
|
-
--grey-300: #d1d5db;
|
|
6
|
-
--grey-400: #9ca3af;
|
|
7
|
-
--grey-500: #6b7280;
|
|
8
|
-
--grey-600: #4b5563;
|
|
9
|
-
--grey-700: #374151;
|
|
10
|
-
--grey-800: #1f2937;
|
|
11
|
-
--grey-900: #111827;
|
|
12
|
-
--grey-950: #030712;
|
|
13
|
-
}
|