@marimo-team/frontend 0.19.7-dev26 → 0.19.7-dev27
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/index.html
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
<marimo-server-token data-token="{{ server_token }}" hidden></marimo-server-token>
|
|
67
67
|
<!-- /TODO -->
|
|
68
68
|
<title>{{ title }}</title>
|
|
69
|
-
<script type="module" crossorigin src="./assets/index-
|
|
69
|
+
<script type="module" crossorigin src="./assets/index-CPfohPCM.js"></script>
|
|
70
70
|
<link rel="modulepreload" crossorigin href="./assets/preload-helper-DItdS47A.js">
|
|
71
71
|
<link rel="modulepreload" crossorigin href="./assets/clsx-D8GwTfvk.js">
|
|
72
72
|
<link rel="modulepreload" crossorigin href="./assets/cn-BKtXLv3a.js">
|
package/package.json
CHANGED
|
@@ -7,6 +7,7 @@ import swiperCssScrollbar from "swiper/css/scrollbar?inline";
|
|
|
7
7
|
import swiperCssVirtual from "swiper/css/virtual?inline";
|
|
8
8
|
import swiperCss from "swiper/css?inline";
|
|
9
9
|
import { z } from "zod";
|
|
10
|
+
import slidesCss from "@/components/slides/slides.css?inline";
|
|
10
11
|
import type {
|
|
11
12
|
IStatelessPlugin,
|
|
12
13
|
IStatelessPluginProps,
|
|
@@ -32,6 +33,7 @@ export class CarouselPlugin implements IStatelessPlugin<Data> {
|
|
|
32
33
|
swiperCssNavigation,
|
|
33
34
|
swiperCssPagination,
|
|
34
35
|
swiperCssScrollbar,
|
|
36
|
+
slidesCss,
|
|
35
37
|
];
|
|
36
38
|
|
|
37
39
|
render(props: IStatelessPluginProps<Data>): JSX.Element {
|