@dfds-ui/colors 2.0.29-alpha.87e7918e → 2.0.29-alpha.9a0ea182
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/colors.d.ts +1 -1
- package/colors.d.ts +1 -1
- package/package.json +6 -2
package/cjs/colors.d.ts
CHANGED
|
@@ -96,6 +96,6 @@ export interface Colors {
|
|
|
96
96
|
dark: string;
|
|
97
97
|
};
|
|
98
98
|
}
|
|
99
|
-
export
|
|
99
|
+
export type ColorPalette = Colors;
|
|
100
100
|
export { hydro2 };
|
|
101
101
|
export { legacyColorPalette, legacyColors, legacyColors as colors, legacyColorPalette as colorPalette };
|
package/colors.d.ts
CHANGED
|
@@ -96,6 +96,6 @@ export interface Colors {
|
|
|
96
96
|
dark: string;
|
|
97
97
|
};
|
|
98
98
|
}
|
|
99
|
-
export
|
|
99
|
+
export type ColorPalette = Colors;
|
|
100
100
|
export { hydro2 };
|
|
101
101
|
export { legacyColorPalette, legacyColors, legacyColors as colors, legacyColorPalette as colorPalette };
|
package/package.json
CHANGED
|
@@ -3,12 +3,16 @@
|
|
|
3
3
|
"description": "Shared colors within DFDS",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
|
-
"version": "2.0.29-alpha.
|
|
6
|
+
"version": "2.0.29-alpha.9a0ea182",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./cjs/index.js",
|
|
9
9
|
"module": "./index.js",
|
|
10
10
|
"typings": "./index.d.ts",
|
|
11
|
-
"
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
13
|
+
"react-syntax-highlighter": "^15.6.6"
|
|
14
|
+
},
|
|
15
|
+
"gitHead": "9a0ea1821df447249363a38ea548ce565163e1c3",
|
|
12
16
|
"esnext": "",
|
|
13
17
|
"publishConfig": {
|
|
14
18
|
"access": "public"
|