vite-plugin-react-deck 1.1.2 → 1.1.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.
- package/index.cjs +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
- package/themes/green.d.ts +0 -1
package/index.cjs
CHANGED
|
@@ -206,8 +206,7 @@ __export(green_exports, {
|
|
|
206
206
|
var colors = {
|
|
207
207
|
primary: "#FFFFFF",
|
|
208
208
|
secondary: "#F49676",
|
|
209
|
-
tertiary: "#042F3B"
|
|
210
|
-
fontFamily: 'Bitter,"Helvetica Neue",Helvetica,Arial,sans-serif'
|
|
209
|
+
tertiary: "#042F3B"
|
|
211
210
|
};
|
|
212
211
|
var themeTokens = {
|
|
213
212
|
colors
|
|
@@ -243,6 +242,7 @@ function createIndexFile({ entrypoint }) {
|
|
|
243
242
|
</style>
|
|
244
243
|
|
|
245
244
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
245
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css">
|
|
246
246
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
247
247
|
</head>
|
|
248
248
|
<body>
|
package/index.mjs
CHANGED
|
@@ -185,8 +185,7 @@ __export(green_exports, {
|
|
|
185
185
|
var colors = {
|
|
186
186
|
primary: "#FFFFFF",
|
|
187
187
|
secondary: "#F49676",
|
|
188
|
-
tertiary: "#042F3B"
|
|
189
|
-
fontFamily: 'Bitter,"Helvetica Neue",Helvetica,Arial,sans-serif'
|
|
188
|
+
tertiary: "#042F3B"
|
|
190
189
|
};
|
|
191
190
|
var themeTokens = {
|
|
192
191
|
colors
|
|
@@ -222,6 +221,7 @@ function createIndexFile({ entrypoint }) {
|
|
|
222
221
|
</style>
|
|
223
222
|
|
|
224
223
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
224
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.8/dist/katex.min.css">
|
|
225
225
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
226
226
|
</head>
|
|
227
227
|
<body>
|
package/package.json
CHANGED