@reuters-graphics/graphics-components 1.1.6 → 1.1.7
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/components/Video/stories/videos/silent-video.mp4 +0 -0
- package/dist/components/Video/stories/videos/sound-video.mp4 +0 -0
- package/dist/docs/docs-components/CopyColourTable/ImportSnippet.d.ts +1 -2
- package/dist/docs/docs-components/CopyColourTable/Table.d.ts +1 -2
- package/dist/docs/docs-components/CopyTable/Table.d.ts +1 -2
- package/dist/docs/docs-components/MdxTheme/Theme.d.ts +1 -2
- package/dist/docs/docs-components/Mermaid/Mermaid.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/CSSVariables/VariableTable.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/Customiser/ColourPicker.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/Customiser/Customiser.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/Customiser/Key.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/Customiser/Value.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/NewTheme/NewTheme.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/ThemeBuilder.d.ts +1 -2
- package/dist/docs/docs-components/ThemeBuilder/ThemeSwitch/Switch.d.ts +1 -2
- package/package.json +13 -17
|
File without changes
|
|
File without changes
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export default function Mermaid(props: any):
|
|
2
|
-
import React from 'react';
|
|
1
|
+
export default function Mermaid(props: any): JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reuters-graphics/graphics-components",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://reuters-graphics.github.io/graphics-components",
|
|
@@ -12,21 +12,6 @@
|
|
|
12
12
|
"registry": "https://registry.npmjs.org/",
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"start": "storybook dev -p 3000",
|
|
17
|
-
"new": "node ./bin/newComponent/index.cjs",
|
|
18
|
-
"lint": "eslint --fix",
|
|
19
|
-
"lint:check": "eslint",
|
|
20
|
-
"format": "prettier . --write",
|
|
21
|
-
"format:check": "prettier . --check",
|
|
22
|
-
"build:package": "rimraf ./dist && svelte-package -i ./src && publint",
|
|
23
|
-
"build:chromatic": "storybook build -o docs",
|
|
24
|
-
"build:docs": "storybook build -o docs && touch ./docs/.nojekyll",
|
|
25
|
-
"build": "npm-run-all build:package build:docs",
|
|
26
|
-
"changeset:version": "changeset version",
|
|
27
|
-
"changeset:publish": "git add --all && changeset publish",
|
|
28
|
-
"knip": "knip"
|
|
29
|
-
},
|
|
30
15
|
"license": "MIT",
|
|
31
16
|
"files": [
|
|
32
17
|
"dist"
|
|
@@ -133,5 +118,16 @@
|
|
|
133
118
|
"types": "./dist/index.d.ts",
|
|
134
119
|
"bugs": {
|
|
135
120
|
"url": "https://github.com/reuters-graphics/graphics-components/issues"
|
|
121
|
+
},
|
|
122
|
+
"scripts": {
|
|
123
|
+
"start": "storybook dev -p 3000",
|
|
124
|
+
"new": "node ./bin/newComponent/index.cjs",
|
|
125
|
+
"lint": "eslint --fix",
|
|
126
|
+
"format": "prettier . --write",
|
|
127
|
+
"build": "rimraf ./dist && svelte-package -i ./src && publint",
|
|
128
|
+
"build:docs": "storybook build -o docs",
|
|
129
|
+
"changeset:version": "changeset version",
|
|
130
|
+
"changeset:publish": "git add --all && changeset publish",
|
|
131
|
+
"knip": "knip"
|
|
136
132
|
}
|
|
137
|
-
}
|
|
133
|
+
}
|